diff --git a/CMakeLists.txt b/CMakeLists.txt index 0b0da92d..3d86d397 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -108,7 +108,6 @@ target_link_libraries(cmvr_es PRIVATE cmvr_es::proto service ${GLOG_LIBRARIES} - gflags jsoncpp cmvr_es::utils cmvr_es::service diff --git a/README.md b/README.md index 4e1597a9..03b74a5e 100644 --- a/README.md +++ b/README.md @@ -43,4 +43,9 @@ sudo apt-get install -y libx11-dev liblapack-dev libzbar-dev libpthread-stubs0-d sudo apt-get install -y \ libusb-1.0-0-dev libudev-dev \ libglu1-mesa-dev + +# Matplot++ +sudo apt install gnuplot-qt ``` + + diff --git a/cmvr-es/common/CMakeLists.txt b/cmvr-es/common/CMakeLists.txt index 38902ace..3bdc2226 100644 --- a/cmvr-es/common/CMakeLists.txt +++ b/cmvr-es/common/CMakeLists.txt @@ -6,7 +6,6 @@ file(GLOB SRC ${CMAKE_CURRENT_SOURCE_DIR}/utils/ffmpeg/src/CameraCapture.cpp ${CMAKE_CURRENT_SOURCE_DIR}/utils/ffmpeg/src/VideoFrameEncoder.cpp ${CMAKE_CURRENT_SOURCE_DIR}/utils/ffmpeg/src/VideoWriter.cpp - ${CMAKE_CURRENT_SOURCE_DIR}/curve/src/s_curve.cpp ) @@ -18,6 +17,7 @@ target_include_directories(common PUBLIC ${CMAKE_CURRENT_SOURCE_DIR}) target_link_libraries(common PUBLIC cmvr_es::proto + glog opencv_core opencv_imgproc opencv_highgui @@ -31,18 +31,33 @@ target_link_libraries(common PUBLIC add_library(cmvr_es::common ALIAS common) install(TARGETS common LIBRARY DESTINATION lib) -add_executable(image_display_test - utils/visualization/image_display_test.cpp -) - -target_link_libraries(image_display_test - PRIVATE - cmvr_es::common - cmvr_es::perception - cmvr_es::device::realsense_camera - cmvr_es::proto - glog - gtest - gtest_main - pthread -) +#add_executable(image_display_test +# utils/visualization/image_display_test.cpp +#) +# +#target_link_libraries(image_display_test +# PRIVATE +# cmvr_es::common +# cmvr_es::perception +# cmvr_es::device::realsense_camera +# cmvr_es::proto +# glog +# gtest +# gtest_main +# pthread +#) +# +#add_executable(s_curve_test +# curve/src/s_curve_test.cpp +#) +# +#target_link_libraries(s_curve_test +# PRIVATE +# cmvr_es::common +# cmvr_es::proto +# glog +# gtest +# gtest_main +# pthread +# Matplot++::matplot +#) diff --git a/cmvr-es/common/curve/include/s_curve.h b/cmvr-es/common/curve/include/s_curve.h index 666fb437..bc796ada 100644 --- a/cmvr-es/common/curve/include/s_curve.h +++ b/cmvr-es/common/curve/include/s_curve.h @@ -3,9 +3,9 @@ // /** * @file s_curve.h - * @brief 标准 7 段式 S 曲线轨迹生成器(用于平滑运动控制) - * - * 实现标准 7 段式 S 曲线速度剖面: + * @brief 严格点到点位置 S 曲线轨迹生成器 + * + * 实现标准 7 段式位置 S 曲线速度剖面: * 1. 加加速度上升段(加速度逐渐增大) * 2. 匀加速段 * 3. 加加速度下降段(加速度逐渐降到 0) @@ -13,17 +13,14 @@ * 5. 加加速度下降段(减速度逐渐增大) * 6. 匀减速段 * 7. 加加速度上升段(减速度逐渐降到 0) - * - * 特性: - * - 支持摇杆等实时增量更新 - * - 支持生成完整轨迹(用于 MoveIt 路径再参数化) - * - 支持配置 max_velocity / max_acceleration / max_jerk + * + * 本类只负责严格点到点 profile 规划与采样,不负责实时目标跟踪。 */ #pragma once -#include #include +#include #include @@ -61,42 +58,19 @@ struct SCurveProfile double p0; // 初始位置 double v0; // 初始速度 double a0; // 初始加速度 + double vf; // 终止速度 SCurveProfile() : t1(0), t2(0), t3(0), t4(0), t5(0), t6(0), t7(0) , total_time(0) , j_max(50.0), a_max(10.0), v_max(3.0) , distance(0), direction(1.0), v_cruise(0), a_limit(0) - , p0(0), v0(0), a0(0) + , p0(0), v0(0), a0(0), vf(0) {} }; /** - * @brief 实时增量 S 曲线控制的状态量 - */ -struct SCurveState -{ - double position; - double velocity; - double acceleration; - double jerk; - - // 目标跟踪 - double target_position; - bool is_moving; - - SCurveState() - : position(0), velocity(0), acceleration(0), jerk(0) - , target_position(0), is_moving(false) - {} -}; - -/** - * @brief S 曲线轨迹生成器 - * - * 提供两种工作模式: - * 1. 实时模式:根据目标变化持续更新位置 - * 2. 轨迹模式:针对给定位移生成完整轨迹 + * @brief 严格点到点位置 S 曲线规划器 */ class SCurve { @@ -121,68 +95,6 @@ public: */ void getConstraints(double& max_velocity, double& max_acceleration, double& max_jerk) const; - /** - * @brief 使用当前状态初始化生成器 - * @param position 当前位置 - * @param velocity 当前速度(默认 0) - * @param acceleration 当前加速度(默认 0) - */ - void initialize(double position, double velocity = 0.0, double acceleration = 0.0); - - /** - * @brief 重置为初始状态 - */ - void reset(); - - // ==================== 实时模式 ==================== - - /** - * @brief 更新目标位置(实时模式) - * @param target_position 新目标位置 - */ - void setTarget(double target_position); - - /** - * @brief 使用 S 曲线剖面计算下一步位置(实时模式) - * @param dt 时间步长(秒) - * @return 更新后的位置 - * - * 本方法通过以下步骤实现实时 S 曲线控制: - * 1. 根据位置误差计算期望速度 - * 2. 限制加速度变化(加加速度限制) - * 3. 限制加速度 - * 4. 限制速度 - * 5. 积分得到新的位置 - */ - double update(double dt); - - /** - * @brief 获取当前状态 - */ - const SCurveState& getState() const { return state_; } - - /** - * @brief 获取当前位置 - */ - double getPosition() const { return state_.position; } - - /** - * @brief 获取当前速度 - */ - double getVelocity() const { return state_.velocity; } - - /** - * @brief 获取当前加速度 - */ - double getAcceleration() const { return state_.acceleration; } - - /** - * @brief 是否处于运动状态 - */ - bool isMoving() const { return state_.is_moving; } - - // ==================== 轨迹模式 ==================== - /** * @brief 计算点到点运动的完整 S 曲线剖面 * @param start_position 起始位置 @@ -217,6 +129,14 @@ public: * @return 时刻 t 的加速度 */ double getAccelerationAtTime(const SCurveProfile& profile, double t) const; + + /** + * @brief 给定剖面下,获取时刻 t 的加加速度 + * @param profile S 曲线剖面 + * @param t 从起点开始的时间 + * @return 时刻 t 的加加速度 + */ + double getJerkAtTime(const SCurveProfile& profile, double t) const; /** * @brief 按固定时间间隔生成轨迹点 @@ -232,71 +152,16 @@ public: std::vector& accelerations) const; private: - // 运动约束 double max_velocity_; double max_acceleration_; double max_jerk_; - - // 实时状态 - SCurveState state_; - - // 实时模式的位置跟踪增益 - double position_gain_; - - // 小量阈值 + static constexpr double EPSILON = 1e-9; static constexpr double VELOCITY_THRESHOLD = 1e-6; - static constexpr double POSITION_THRESHOLD = 1e-7; - - /** - * @brief 在最大减速度约束下,计算减速到 0 的时间 - */ - double calculateStoppingTime(double velocity, double acceleration) const; - - /** - * @brief 按 S 曲线减速剖面计算制动距离 - */ - double calculateStoppingDistance(double velocity, double acceleration) const; - - /** - * @brief 计算带加加速度限制的加速度更新 - */ - double computeJerkLimitedAcceleration(double current_acc, double desired_acc, double dt) const; - - /** - * @brief 判断所处的段并计算对应加加速度 - */ + double computeSegmentJerk(const SCurveProfile& profile, double t) const; - - /** - * @brief 计算短距离剖面(可能达不到最大速度) - */ void calculateShortProfile(SCurveProfile& profile) const; - - /** - * @brief 计算长距离剖面(可达到最大速度) - */ void calculateLongProfile(SCurveProfile& profile) const; - - /** - * @brief 将数值夹紧到指定范围 - */ - static double clamp(double value, double min_val, double max_val) - { - return std::max(min_val, std::min(max_val, value)); - } - - /** - * @brief 符号函数 - */ - static double sign(double value) - { - if (value > EPSILON) return 1.0; - if (value < -EPSILON) return -1.0; - return 0.0; - } }; -} // namespace - - +} // namespace cmvr diff --git a/cmvr-es/common/curve/src/s_curve.cpp b/cmvr-es/common/curve/src/s_curve.cpp index 0a89b8be..ae0bed89 100644 --- a/cmvr-es/common/curve/src/s_curve.cpp +++ b/cmvr-es/common/curve/src/s_curve.cpp @@ -15,15 +15,11 @@ namespace cmvr { - SCurve::SCurve(double max_velocity, double max_acceleration, double max_jerk) - : max_velocity_(max_velocity) - , max_acceleration_(max_acceleration) - , max_jerk_(max_jerk) - , position_gain_(10.0) // 位置跟踪增益 -{ - reset(); -} + : max_velocity_(std::abs(max_velocity)) + , max_acceleration_(std::abs(max_acceleration)) + , max_jerk_(std::abs(max_jerk)) +{} void SCurve::setConstraints(double max_velocity, double max_acceleration, double max_jerk) { @@ -39,201 +35,8 @@ void SCurve::getConstraints(double& max_velocity, double& max_acceleration, doub max_jerk = max_jerk_; } -void SCurve::initialize(double position, double velocity, double acceleration) -{ - state_.position = position; - state_.velocity = velocity; - state_.acceleration = acceleration; - state_.jerk = 0.0; - state_.target_position = position; - state_.is_moving = false; -} - -void SCurve::reset() -{ - state_ = SCurveState(); -} - -void SCurve::setTarget(double target_position) -{ - state_.target_position = target_position; -} - -double SCurve::update(double dt) -{ - if (dt <= 0.0 || dt > 0.1) { - return state_.position; - } - - // 计算位置误差 - double position_error = state_.target_position - state_.position; - - // 判断是否已足够接近目标 - if (std::abs(position_error) < POSITION_THRESHOLD && - std::abs(state_.velocity) < VELOCITY_THRESHOLD) { - state_.velocity = 0.0; - state_.acceleration = 0.0; - state_.jerk = 0.0; - state_.is_moving = false; - state_.position = state_.target_position; - return state_.position; - } - - state_.is_moving = true; - - // ==================== S 曲线实时算法 ==================== - // 通过加加速度限制实现实时 S 曲线控制 - - // Step 1:根据位置误差计算期望速度 - // 使用比例控制并施加速度上限 - double desired_velocity = position_gain_ * position_error; - desired_velocity = clamp(desired_velocity, -max_velocity_, max_velocity_); - - // Step 2:根据当前速度估算制动距离(考虑 S 曲线减速剖面) - double stopping_distance = calculateStoppingDistance(state_.velocity, state_.acceleration); - - // Step 3:判断是否需要开始减速 - double direction = sign(position_error); - double velocity_direction = sign(state_.velocity); - - // 如果正在远离目标,或距离不足以刹停,则需要减速 - bool need_decelerate = false; - if (velocity_direction != 0 && velocity_direction != direction) { - // 运动方向错误:必须减速 - need_decelerate = true; - } else if (std::abs(position_error) <= std::abs(stopping_distance) * 1.1) { - // 接近目标:提前开始减速(留 10% 裕量) - need_decelerate = true; - } - - // Step 4:计算期望加速度 - double desired_acceleration; - if (need_decelerate) { - // 减速:加速度方向应与速度相反 - if (std::abs(state_.velocity) < VELOCITY_THRESHOLD) { - desired_acceleration = 0.0; - } else { - desired_acceleration = -sign(state_.velocity) * max_acceleration_; - } - } else { - // 朝目标方向加速 - double velocity_error = desired_velocity - state_.velocity; - desired_acceleration = clamp(velocity_error / dt, -max_acceleration_, max_acceleration_); - } - - // Step 5:施加加加速度限制(S 曲线平滑性的关键) - double new_acceleration = computeJerkLimitedAcceleration( - state_.acceleration, desired_acceleration, dt); - - // Step 6:更新加加速度 - state_.jerk = (new_acceleration - state_.acceleration) / dt; - - // Step 7:更新加速度 - state_.acceleration = new_acceleration; - - // Step 8:在加速度限制下更新速度 - double new_velocity = state_.velocity + state_.acceleration * dt; - new_velocity = clamp(new_velocity, -max_velocity_, max_velocity_); - state_.velocity = new_velocity; - - // Step 9:更新位置 - // 使用梯形积分提高精度 - double avg_velocity = (state_.velocity + new_velocity) * 0.5; - state_.position += avg_velocity * dt; - - // Step 10:非常接近目标且速度很小则直接夹紧到目标 - if (std::abs(state_.target_position - state_.position) < POSITION_THRESHOLD * 10 && - std::abs(state_.velocity) < VELOCITY_THRESHOLD * 10) { - state_.position = state_.target_position; - } - - return state_.position; -} - -double SCurve::calculateStoppingTime(double velocity, double acceleration) const -{ - // 将加速度减到 0 所需时间 - double t_jerk = std::abs(acceleration) / max_jerk_; - - // 加加速度阶段的速度变化量 - double v_change_jerk = 0.5 * std::abs(acceleration) * t_jerk; - - // 加加速度阶段结束后的剩余速度 - double v_remaining = std::abs(velocity) - v_change_jerk; - - if (v_remaining <= 0) { - // 仅靠加加速度阶段即可停止 - return std::sqrt(2.0 * std::abs(velocity) / max_jerk_); - } - - // 需要进入匀减速阶段 - // 匀减速阶段持续时间 - double t_const = v_remaining / max_acceleration_; - - // 最后一个加加速度阶段:将加速度带回到 0 - double t_jerk_final = max_acceleration_ / max_jerk_; - - return t_jerk + t_const + t_jerk_final; -} - -double SCurve::calculateStoppingDistance(double velocity, double acceleration) const -{ - double v = std::abs(velocity); - double a = std::abs(acceleration); - - if (v < VELOCITY_THRESHOLD) { - return 0.0; - } - - // 简化版 S 曲线制动距离估算 - // 完整推导需要考虑 7 个阶段;实时控制中使用近似即可获得平滑减速效果 - - // 将加速度减到 0 的时间(加加速度阶段 1) - double t1 = a / max_jerk_; - double d1 = v * t1 + 0.5 * a * t1 * t1 - (1.0/6.0) * max_jerk_ * t1 * t1 * t1; - double v1 = v + a * t1 - 0.5 * max_jerk_ * t1 * t1; - - if (v1 <= 0) { - // 在第一段加加速度阶段内停止 - return std::abs(d1); - } - - // 匀减速阶段 - double t2 = (v1 - max_acceleration_ * max_acceleration_ / (2.0 * max_jerk_)) / max_acceleration_; - if (t2 < 0) t2 = 0; - double d2 = v1 * t2 - 0.5 * max_acceleration_ * t2 * t2; - double v2 = v1 - max_acceleration_ * t2; - - // 最后一个加加速度阶段 - double t3 = max_acceleration_ / max_jerk_; - double d3 = v2 * t3 - 0.5 * max_acceleration_ * t3 * t3 + (1.0/6.0) * max_jerk_ * t3 * t3 * t3; - - double total_distance = d1 + d2 + d3; - - // 增加安全裕量 - return std::abs(total_distance) * 1.2; -} - -double SCurve::computeJerkLimitedAcceleration(double current_acc, double desired_acc, double dt) const -{ - double acc_change = desired_acc - current_acc; - double max_acc_change = max_jerk_ * dt; - - // 按加加速度上限夹紧加速度变化量 - acc_change = clamp(acc_change, -max_acc_change, max_acc_change); - - double new_acc = current_acc + acc_change; - - // 同时夹紧加速度本身 - new_acc = clamp(new_acc, -max_acceleration_, max_acceleration_); - - return new_acc; -} - -// ==================== 轨迹模式实现 ==================== - SCurveProfile SCurve::calculateProfile(double start_position, double end_position, - double start_velocity, double end_velocity [[maybe_unused]]) + double start_velocity, double end_velocity) { SCurveProfile profile; profile.j_max = max_jerk_; @@ -242,6 +45,7 @@ SCurveProfile SCurve::calculateProfile(double start_position, double end_positio profile.p0 = start_position; profile.v0 = start_velocity; profile.a0 = 0.0; // Assume starting from zero acceleration + profile.vf = end_velocity; double displacement = end_position - start_position; profile.distance = std::abs(displacement); @@ -252,33 +56,129 @@ SCurveProfile SCurve::calculateProfile(double start_position, double end_positio profile.total_time = 0.0; return profile; } - - // 达到最大加速度所需时间(加加速度阶段) - double t_j = profile.a_max / profile.j_max; - - // 单个加加速度阶段获得的速度增量 - double v_j = 0.5 * profile.j_max * t_j * t_j; - - // 加速阶段(含两个加加速度段)的位移 - // 假设能够达到最大加速度 - double d_acc = v_j * t_j + profile.a_max * t_j * t_j + v_j; - - // 判断是否能达到最大速度 - double v_acc = 2 * v_j; // Velocity gained during full acceleration phase - - if (v_acc >= profile.v_max) { - // 达不到最大加速度:三角形剖面 - calculateShortProfile(profile); - } else { - // 判断是否能在半程之前达到最大速度 - double d_to_vmax = d_acc + (profile.v_max - v_acc) * (profile.v_max - v_acc) / (2.0 * profile.a_max); - - if (2.0 * d_to_vmax > profile.distance) { - // 达不到最大速度:梯形加速度剖面 - calculateShortProfile(profile); + + const double start_speed = profile.direction * start_velocity; + const double end_speed = profile.direction * end_velocity; + if (start_speed < -VELOCITY_THRESHOLD || end_speed < -VELOCITY_THRESHOLD) { + profile.total_time = 0.0; + return profile; + } + + if (std::abs(start_speed) > VELOCITY_THRESHOLD || + std::abs(end_speed) > VELOCITY_THRESHOLD) { + auto calc_transition = [&](double v_from, double v_to, + double& t_j, double& t_a, + double& duration, double& distance) { + t_j = 0.0; + t_a = 0.0; + duration = 0.0; + distance = 0.0; + + const double dv = std::abs(v_to - v_from); + if (dv <= 1e-12 || profile.a_max <= 1e-12 || profile.j_max <= 1e-12) { + return; + } + + const double dv_switch = profile.a_max * profile.a_max / profile.j_max; + if (dv < dv_switch) { + t_j = std::sqrt(dv / profile.j_max); + t_a = 0.0; + } else { + t_j = profile.a_max / profile.j_max; + t_a = dv / profile.a_max - t_j; + } + + duration = 2.0 * t_j + t_a; + distance = 0.5 * (v_from + v_to) * duration; + }; + + const double v_cap = std::max({profile.v_max, start_speed, end_speed}); + const double v_peak_min = std::max(start_speed, end_speed); + + double acc_tj = 0.0, acc_ta = 0.0, acc_duration = 0.0, acc_distance = 0.0; + double dec_tj = 0.0, dec_ta = 0.0, dec_duration = 0.0, dec_distance = 0.0; + calc_transition(start_speed, v_peak_min, + acc_tj, acc_ta, acc_duration, acc_distance); + calc_transition(v_peak_min, end_speed, + dec_tj, dec_ta, dec_duration, dec_distance); + const double d_min = acc_distance + dec_distance; + if (profile.distance + EPSILON < d_min) { + profile.total_time = 0.0; + return profile; + } + + calc_transition(start_speed, v_cap, + acc_tj, acc_ta, acc_duration, acc_distance); + calc_transition(v_cap, end_speed, + dec_tj, dec_ta, dec_duration, dec_distance); + const double d_cap = acc_distance + dec_distance; + + double v_peak = v_cap; + double t4 = 0.0; + + if (profile.distance > d_cap + EPSILON) { + t4 = (profile.distance - d_cap) / std::max(v_peak, EPSILON); } else { - // 可达到最大速度:完整 S 曲线 + double lo = v_peak_min; + double hi = v_cap; + for (int iter = 0; iter < 80; ++iter) { + const double mid = 0.5 * (lo + hi); + double mid_acc_tj = 0.0, mid_acc_ta = 0.0, mid_acc_duration = 0.0, mid_acc_distance = 0.0; + double mid_dec_tj = 0.0, mid_dec_ta = 0.0, mid_dec_duration = 0.0, mid_dec_distance = 0.0; + calc_transition(start_speed, mid, + mid_acc_tj, mid_acc_ta, mid_acc_duration, mid_acc_distance); + calc_transition(mid, end_speed, + mid_dec_tj, mid_dec_ta, mid_dec_duration, mid_dec_distance); + const double d_mid = mid_acc_distance + mid_dec_distance; + if (d_mid < profile.distance) { + lo = mid; + } else { + hi = mid; + } + } + v_peak = hi; + calc_transition(start_speed, v_peak, + acc_tj, acc_ta, acc_duration, acc_distance); + calc_transition(v_peak, end_speed, + dec_tj, dec_ta, dec_duration, dec_distance); + } + + profile.t1 = acc_tj; + profile.t2 = acc_ta; + profile.t3 = acc_tj; + profile.t4 = t4; + profile.t5 = dec_tj; + profile.t6 = dec_ta; + profile.t7 = dec_tj; + profile.v_cruise = v_peak; + profile.a_limit = std::max(profile.j_max * profile.t1, profile.j_max * profile.t5); + profile.total_time = profile.t1 + profile.t2 + profile.t3 + profile.t4 + + profile.t5 + profile.t6 + profile.t7; + return profile; + } + + const double j = profile.j_max; + const double a = profile.a_max; + const double v = profile.v_max; + const double t_j_a = a / j; + + if (v < a * t_j_a) { + const double t_j_v = std::sqrt(v / j); + const double s_min = 2.0 * j * t_j_v * t_j_v * t_j_v; + if (profile.distance > s_min + EPSILON) { calculateLongProfile(profile); + } else { + calculateShortProfile(profile); + } + } else { + const double t_a_v = v / a - t_j_a; + const double s_half_v = + a * (t_j_a * t_j_a + 1.5 * t_j_a * t_a_v + 0.5 * t_a_v * t_a_v); + const double s_min = 2.0 * s_half_v; + if (profile.distance > s_min + EPSILON) { + calculateLongProfile(profile); + } else { + calculateShortProfile(profile); } } @@ -287,24 +187,16 @@ SCurveProfile SCurve::calculateProfile(double start_position, double end_positio void SCurve::calculateShortProfile(SCurveProfile& profile) const { - // 短距离情况下,可能达不到最大速度,甚至达不到最大加速度 - // 使用对称剖面:t1=t3=t5=t7,t2=t6,t4=0 - - double j = profile.j_max; - double a = profile.a_max; - // double v = profile.v_max; // 短剖面不会达到最大速度,因此不使用 - double d = profile.distance; - - // 达到最大加速度所需时间 - double t_j = a / j; - - // 判断是否能达到最大加速度 - // 纯加加速度剖面(t1=t3,无匀加速)的位移 - double d_jerk_only = j * t_j * t_j * t_j / 3.0; - - if (d < 2.0 * d_jerk_only) { - // 极短距离:纯加加速度剖面 - double t1 = std::cbrt(d * 1.5 / j); + // 短距离:无巡航段(t4 = 0),与 moveL_SCurveLocal 中的 SCurveProfile1D 保持一致。 + const double j = profile.j_max; + const double a = profile.a_max; + const double v = profile.v_max; + const double d = profile.distance; + const double t_j_a = a / j; + + if (v < a * t_j_a) { + // 达不到 a_max:极短距离时只有 4 个 jerk 段。 + const double t1 = std::cbrt(d / (2.0 * j)); profile.t1 = t1; profile.t2 = 0.0; profile.t3 = t1; @@ -312,45 +204,35 @@ void SCurve::calculateShortProfile(SCurveProfile& profile) const profile.t5 = t1; profile.t6 = 0.0; profile.t7 = t1; - profile.v_cruise = j * t1 * t1; // 峰值速度 - profile.a_limit = j * t1; // 峰值加速度 + profile.v_cruise = j * t1 * t1; + profile.a_limit = j * t1; } else { - // 需要匀加速阶段 - // 在位移约束下求解 t1 与 t2 - // d = 2 * (v_j * t_j + 0.5 * a * t_j^2 + a * t_a * t_j + 0.5 * a * t_a^2) - - profile.t1 = t_j; - profile.t3 = t_j; - profile.t5 = t_j; - profile.t7 = t_j; - - // t1 结束时速度 - double v1 = 0.5 * j * t_j * t_j; - - // 4 个加加速度段覆盖的位移 - double d_jerk = 4.0 * (v1 * t_j / 2.0 + j * t_j * t_j * t_j / 6.0); - - // 匀加速/匀减速阶段的剩余位移 - double d_const = d - d_jerk; - - // 求解 t2(匀加速时间) - // 使用一元二次方程 - double A = a; - double B = 2.0 * v1 + a * t_j; - double C = -d_const / 2.0; - - double discriminant = B * B - 4.0 * A * C; - if (discriminant < 0) discriminant = 0; - - double t2 = (-B + std::sqrt(discriminant)) / (2.0 * A); - if (t2 < 0) t2 = 0; - - profile.t2 = t2; - profile.t6 = t2; - profile.t4 = 0.0; // No cruise phase - - profile.v_cruise = v1 + a * (t_j + t2); - profile.a_limit = a; + // 能达到 a_max,但达不到 v_max:求无巡航的匀加速持续时间。 + const double D = t_j_a * t_j_a + 4.0 * (d / a); + double t2 = (-3.0 * t_j_a + std::sqrt(std::max(0.0, D))) * 0.5; + + if (t2 < 0.0) { + const double t1 = std::cbrt(d / (2.0 * j)); + profile.t1 = t1; + profile.t2 = 0.0; + profile.t3 = t1; + profile.t4 = 0.0; + profile.t5 = t1; + profile.t6 = 0.0; + profile.t7 = t1; + profile.v_cruise = j * t1 * t1; + profile.a_limit = j * t1; + } else { + profile.t1 = t_j_a; + profile.t2 = t2; + profile.t3 = t_j_a; + profile.t4 = 0.0; + profile.t5 = t_j_a; + profile.t6 = t2; + profile.t7 = t_j_a; + profile.v_cruise = a * (t2 + t_j_a); + profile.a_limit = a; + } } profile.total_time = profile.t1 + profile.t2 + profile.t3 + profile.t4 + @@ -359,46 +241,43 @@ void SCurve::calculateShortProfile(SCurveProfile& profile) const void SCurve::calculateLongProfile(SCurveProfile& profile) const { - // 含巡航段的完整 7 段式 S 曲线 - double j = profile.j_max; - double a = profile.a_max; - double v = profile.v_max; - double d = profile.distance; - - // 加加速度段持续时间 - double t_j = a / j; - - // 加速阶段加加速度段获得的速度增量 - double v_j = 0.5 * j * t_j * t_j; - - // 匀加速达到最大速度所需时间 - double t_a = (v - 2.0 * v_j) / a; - if (t_a < 0) t_a = 0; - - profile.t1 = t_j; - profile.t2 = t_a; - profile.t3 = t_j; - profile.t5 = t_j; - profile.t6 = t_a; - profile.t7 = t_j; - - // 加速阶段(t1+t2+t3)覆盖的位移 - double d_acc = v_j * t_j + 0.5 * a * t_j * t_j + // t1 - (v_j + 0.5 * a * t_j) * t_a + 0.5 * a * t_a * t_a + // t2 - (v_j + a * t_j + a * t_a) * t_j + 0.5 * a * t_j * t_j - j * t_j * t_j * t_j / 6.0; // t3 - - // 减速阶段对称 - double d_dec = d_acc; - - // 巡航段位移 - double d_cruise = d - d_acc - d_dec; - if (d_cruise < 0) d_cruise = 0; - - // 巡航段时间 - profile.t4 = d_cruise / v; - - profile.v_cruise = v; - profile.a_limit = a; + // 含巡航段的完整 7 段式 S 曲线;与 SCurveProfile1D 的 full-profile 公式一致。 + const double j = profile.j_max; + const double a = profile.a_max; + const double v = profile.v_max; + const double d = profile.distance; + const double t_j_a = a / j; + + if (v < a * t_j_a) { + // 达不到 a_max,但可以达到 v_max 并进入巡航。 + const double t_j_v = std::sqrt(v / j); + const double s_min = 2.0 * j * t_j_v * t_j_v * t_j_v; + profile.t1 = t_j_v; + profile.t2 = 0.0; + profile.t3 = t_j_v; + profile.t4 = std::max(0.0, (d - s_min) / v); + profile.t5 = t_j_v; + profile.t6 = 0.0; + profile.t7 = t_j_v; + profile.v_cruise = v; + profile.a_limit = j * t_j_v; + } else { + // 能达到 a_max 和 v_max。 + const double t_a = v / a - t_j_a; + const double s_half = + a * (t_j_a * t_j_a + 1.5 * t_j_a * t_a + 0.5 * t_a * t_a); + const double s_min = 2.0 * s_half; + + profile.t1 = t_j_a; + profile.t2 = t_a; + profile.t3 = t_j_a; + profile.t4 = std::max(0.0, (d - s_min) / v); + profile.t5 = t_j_a; + profile.t6 = t_a; + profile.t7 = t_j_a; + profile.v_cruise = v; + profile.a_limit = a; + } profile.total_time = profile.t1 + profile.t2 + profile.t3 + profile.t4 + profile.t5 + profile.t6 + profile.t7; @@ -509,7 +388,7 @@ double SCurve::getPositionAtTime(const SCurveProfile& profile, double t) const double SCurve::getVelocityAtTime(const SCurveProfile& profile, double t) const { if (t <= 0) return profile.v0; - if (t >= profile.total_time) return 0.0; // 假设末端静止 + if (t >= profile.total_time) return profile.vf; double j = profile.j_max * profile.direction; double v = profile.v0; @@ -616,6 +495,14 @@ double SCurve::getAccelerationAtTime(const SCurveProfile& profile, double t) con return a + j * (t - t_end6); } +double SCurve::getJerkAtTime(const SCurveProfile& profile, double t) const +{ + if (t <= 0.0 || t >= profile.total_time) { + return 0.0; + } + return computeSegmentJerk(profile, t); +} + void SCurve::generateTrajectory(const SCurveProfile& profile, double dt, std::vector& positions, std::vector& velocities, @@ -647,9 +534,9 @@ void SCurve::generateTrajectory(const SCurveProfile& profile, double dt, if (positions.empty() || std::abs(positions.back() - (profile.p0 + profile.distance * profile.direction)) > EPSILON) { positions.push_back(profile.p0 + profile.distance * profile.direction); - velocities.push_back(0.0); + velocities.push_back(profile.vf); accelerations.push_back(0.0); } } -} // namespace el_a3_hardware +} diff --git a/cmvr-es/common/utils/math/qp_solver.h b/cmvr-es/common/math/include/qp_solver.h similarity index 100% rename from cmvr-es/common/utils/math/qp_solver.h rename to cmvr-es/common/math/include/qp_solver.h diff --git a/cmvr-es/common/utils/math/support_functions.h b/cmvr-es/common/math/include/support_functions.h similarity index 100% rename from cmvr-es/common/utils/math/support_functions.h rename to cmvr-es/common/math/include/support_functions.h diff --git a/cmvr-es/common/utils/visualization/image_display_test.cpp b/cmvr-es/common/utils/visualization/image_display_test.cpp deleted file mode 100644 index 78319116..00000000 --- a/cmvr-es/common/utils/visualization/image_display_test.cpp +++ /dev/null @@ -1,373 +0,0 @@ -#include "common/utils/visualization/image_display.h" -#include "common/utils/image/image_process.h" -#include "devices/camera/realsense_camera/include/realsense_camera.h" -#include "perception/include/tag_relative_target_3d.h" - -#include - -#include -#include -#include -#include - -namespace { - -cv::Mat makeBlankImage(int width = 160, int height = 120) { - return cv::Mat(height, width, CV_8UC3, cv::Scalar(0, 0, 0)); -} - -constexpr const char* kRsSerial = "243122074587"; -constexpr double kTagSizeM = 0.01975; -constexpr int kRsWidth = 1280; -constexpr int kRsHeight = 720; -constexpr int kRsFps = 30; -constexpr int kTargetU = -1; // negative means image center -constexpr int kTargetV = -1; // negative means image center -constexpr int kDisplayFrames = 1200; -constexpr const char* kTrackingWindowName = "ImageDisplayTagTrackingTest"; - -int countNonZeroPixelsInRoi(const cv::Mat& image, const cv::Rect& roi) { - const cv::Rect image_rect(0, 0, image.cols, image.rows); - const cv::Rect clipped = roi & image_rect; - if (clipped.width <= 0 || clipped.height <= 0) { - return 0; - } - - cv::Mat gray; - cv::cvtColor(image(clipped), gray, cv::COLOR_BGR2GRAY); - return cv::countNonZero(gray); -} - -bool projectTargetToPixel(const Eigen::Vector3d& p_c, - const cmvr::device::Rs2Intrinsics& intrinsics, - cmvr::common::Pixel& pixel_out) { - Eigen::Vector2d uv = Eigen::Vector2d::Zero(); - if (!cmvr::ImageProcess::projectCameraPointToPixel(intrinsics, p_c, uv)) { - return false; - } - - pixel_out.u = static_cast(std::lround(uv.x())); - pixel_out.v = static_cast(std::lround(uv.y())); - return true; -} - -} // namespace - -TEST(OpenCvImageCvDisplayTest, RenderFailsWithoutImage) { - cmvr::common::OpenCvImageCvDisplay display; - - cv::Mat rendered; - EXPECT_FALSE(display.render(rendered)); -} - -TEST(OpenCvImageCvDisplayTest, RenderPointChangesCenterRegion) { - cmvr::common::OpenCvImageCvDisplay display; - display.setImage(makeBlankImage()); - display.showPoint(cmvr::common::Pixel{60, 40}, - cmvr::common::Color::red(), - 5, - -1, - "target"); - - cv::Mat rendered; - ASSERT_TRUE(display.render(rendered)); - ASSERT_FALSE(rendered.empty()); - - const cv::Vec3b center = rendered.at(40, 60); - EXPECT_GT(static_cast(center[2]), 150); - EXPECT_LT(static_cast(center[1]), 80); - EXPECT_LT(static_cast(center[0]), 80); -} - -TEST(OpenCvImageCvDisplayTest, RenderCircleChangesExpectedArcRegion) { - cmvr::common::OpenCvImageCvDisplay display; - display.setImage(makeBlankImage()); - display.showCircle(cmvr::common::Pixel{60, 40}, - 12, - cmvr::common::Color::yellow(), - 2); - - cv::Mat rendered; - ASSERT_TRUE(display.render(rendered)); - ASSERT_FALSE(rendered.empty()); - - EXPECT_GT(countNonZeroPixelsInRoi(rendered, cv::Rect(58, 26, 5, 5)), 0); - EXPECT_EQ(countNonZeroPixelsInRoi(rendered, cv::Rect(59, 39, 3, 3)), 0); -} - -TEST(OpenCvImageCvDisplayTest, RenderCrossChangesHorizontalAndVerticalArms) { - cmvr::common::OpenCvImageCvDisplay display; - display.setImage(makeBlankImage()); - display.showCross(cmvr::common::Pixel{60, 40}, - 10, - cmvr::common::Color::blue(), - 2); - - cv::Mat rendered; - ASSERT_TRUE(display.render(rendered)); - ASSERT_FALSE(rendered.empty()); - - EXPECT_GT(countNonZeroPixelsInRoi(rendered, cv::Rect(49, 39, 5, 3)), 0); - EXPECT_GT(countNonZeroPixelsInRoi(rendered, cv::Rect(59, 29, 3, 5)), 0); -} - -TEST(OpenCvImageCvDisplayTest, RenderTextChangesRequestedRegion) { - cmvr::common::OpenCvImageCvDisplay display; - display.setImage(makeBlankImage()); - - cmvr::common::TextOverlay overlay; - overlay.text = "tracked tag: 7"; - overlay.position_px = cmvr::common::Pixel{10, 30}; - overlay.color = cmvr::common::Color::white(); - overlay.draw_background = true; - - display.showText(overlay); - - cv::Mat rendered; - ASSERT_TRUE(display.render(rendered)); - ASSERT_FALSE(rendered.empty()); - - EXPECT_GT(countNonZeroPixelsInRoi(rendered, cv::Rect(5, 5, 120, 35)), 0); -} - -TEST(OpenCvImageCvDisplayTest, ClearOverlaysRemovesAllRenderedGeometry) { - cmvr::common::OpenCvImageCvDisplay display; - display.setImage(makeBlankImage()); - display.showPoint(cmvr::common::Pixel{60, 40}, - cmvr::common::Color::red(), - 5, - -1, - "target"); - display.showCircle(cmvr::common::Pixel{60, 40}, - 12, - cmvr::common::Color::yellow(), - 2); - display.showCross(cmvr::common::Pixel{60, 40}, - 10, - cmvr::common::Color::blue(), - 2); - display.showText("tracked tag: 7", - cmvr::common::Pixel{10, 30}, - cmvr::common::Color::white(), - 0.7, - 2); - - display.clearOverlays(); - - cv::Mat rendered; - ASSERT_TRUE(display.render(rendered)); - ASSERT_FALSE(rendered.empty()); - EXPECT_EQ(countNonZeroPixelsInRoi(rendered, cv::Rect(0, 0, rendered.cols, rendered.rows)), 0); -} - -TEST(OpenCvImageCvDisplayTest, ShowDisplaysWindowIfHighGuiIsAvailable) { - constexpr const char* kWindowName = "OpenCvImageCvDisplayTest"; - cmvr::common::OpenCvImageCvDisplay display(kWindowName); - - bool window_enabled = true; - try { - cv::namedWindow(kWindowName, cv::WINDOW_NORMAL); - cv::imshow(kWindowName, cv::Mat(120, 160, CV_8UC3, cv::Scalar(20, 20, 20))); - cv::waitKey(1); - } catch (const cv::Exception& e) { - window_enabled = false; - std::cout << "[OpenCvImageCvDisplayTest] window disabled: " << e.what() << "\n"; - } - - if (!window_enabled) { - GTEST_SKIP() << "OpenCV highgui is not available, skip windowed test."; - } - - for (int frame = 0; frame < 1200; ++frame) { - cv::Mat image(240, 320, CV_8UC3, cv::Scalar(20, 20, 20)); - display.setImage(image); - display.clearOverlays(); - - const int center_u = 80 + frame; - const int center_v = 120; - - display.showPoint(cmvr::common::Pixel{center_u, center_v}, - cmvr::common::Color::red(), - 5, - -1, - "target"); - display.showCircle(cmvr::common::Pixel{center_u, center_v}, - 18, - cmvr::common::Color::yellow(), - 2); - display.showCross(cmvr::common::Pixel{center_u, center_v}, - 10, - cmvr::common::Color::blue(), - 2); - display.showText("tracked tag: 7", - cmvr::common::Pixel{20, 30}, - cmvr::common::Color::white(), - 0.8, - 2); - - const int key = display.show(30); - if (key == 27 || key == 'q' || key == 'Q') { - break; - } - } - - display.close(); -} - -TEST(OpenCvImageCvDisplayTest, ShowTrackingImageWithActiveTagAndTargetPoint) { - const std::string serial = kRsSerial; - if (serial.empty()) { - GTEST_SKIP() << "kRsSerial is empty, please set it in image_display_test.cpp"; - } - - cmvr::config::RealSenseCameraConfig cam_cfg; - cam_cfg.set_id("image_display_test"); - cam_cfg.set_serialnumber(serial); - cam_cfg.set_width(kRsWidth); - cam_cfg.set_height(kRsHeight); - cam_cfg.set_fps(kRsFps); - cam_cfg.set_codec("H265"); - cam_cfg.set_camera_mode(cmvr::config::CAMERA_MODE_PHOTO); - cam_cfg.set_stream_mode(cmvr::config::STREAM_MODE_RGBD); - cam_cfg.set_align_mode(cmvr::config::ALIGN_MODE_COLOR); - cam_cfg.set_buffer_size(30); - cam_cfg.set_sync(true); - cam_cfg.set_enable(true); - - auto camera = std::make_shared(cam_cfg); - auto perception = std::make_shared(camera); - perception->setTagSize(kTagSizeM); - - cmvr::perception::TagRelativeTarget3D tracker(perception); - tracker.setTargetPointMethod(cmvr::perception::TagRelativeTarget3D::TargetPointMethod::TAG_PLANE); - tracker.setActiveTagSwitchPolicy(4, 1.2); - tracker.setTrackingCandidateScoreWeights(1.0, 2.0, 0.08); - - cmvr::perception::AprilTagPerception::Options opt; - opt.depth_policy = cmvr::perception::AprilTagPerception::DepthPolicy::NONE; - opt.detect_tags = true; - - ASSERT_NO_THROW(camera->init()); - ASSERT_NO_THROW(camera->start()); - struct CameraStopGuard { - std::shared_ptr cam; - ~CameraStopGuard() { - if (!cam) return; - try { - cam->stop(); - } catch (...) { - } - } - } stop_guard{camera}; - - cmvr::common::OpenCvImageCvDisplay display(kTrackingWindowName); - bool window_enabled = true; - try { - cv::namedWindow(kTrackingWindowName, cv::WINDOW_NORMAL); - cv::resizeWindow(kTrackingWindowName, kRsWidth, kRsHeight); - cv::imshow(kTrackingWindowName, - cv::Mat(kRsHeight, kRsWidth, CV_8UC3, cv::Scalar(20, 20, 20))); - cv::waitKey(1); - } catch (const cv::Exception& e) { - window_enabled = false; - std::cout << "[OpenCvImageCvDisplayTest] window disabled: " << e.what() << "\n"; - } - if (!window_enabled) { - GTEST_SKIP() << "OpenCV highgui is not available, skip windowed test."; - } - - bool target_uv_initialized = false; - int target_u = kTargetU; - int target_v = kTargetV; - bool target_locked = false; - - for (int frame = 0; frame < kDisplayFrames; ++frame) { - const bool update_ok = perception->update(opt); - const cv::Mat& color = perception->color(); - - cv::Mat display_image = color.empty() - ? cv::Mat(kRsHeight, kRsWidth, CV_8UC3, cv::Scalar(20, 20, 20)) - : color; - display.setImage(display_image); - display.clearOverlays(); - - if (!target_uv_initialized && !display_image.empty()) { - target_u = (kTargetU >= 0) ? kTargetU : (display_image.cols / 2); - target_v = (kTargetV >= 0) ? kTargetV : (display_image.rows / 2); - target_uv_initialized = true; - } - - if (target_uv_initialized) { - const cmvr::common::Pixel selected_px{target_u, target_v}; - display.showCross(selected_px, 10, cmvr::common::Color::yellow(), 2); - display.showCircle(selected_px, 14, cmvr::common::Color::yellow(), 2); - } - - bool tracker_ok = false; - if (target_uv_initialized && !color.empty()) { - if (!target_locked) { - tracker_ok = tracker.startTrackingFromPixel(target_u, target_v); - target_locked = tracker_ok; - } else { - tracker_ok = tracker.track(); - } - } - - if (tracker_ok) { - cmvr::common::Pixel target_px{}; - if (projectTargetToPixel(tracker.lastTargetInCamera(), perception->intrinsics(), target_px)) { - display.showPoint(target_px, - cmvr::common::Color::red(), - 5, - -1, - "target"); - display.showCircle(target_px, 18, cmvr::common::Color::red(), 2); - } - } - - display.showText("active tag: " + std::to_string(tracker.activeTagId()), - cmvr::common::Pixel{20, 30}, - cmvr::common::Color::white(), - 0.8, - 2); - display.showText("perception: " + - std::string(cmvr::perception::AprilTagPerception::statusToString( - perception->lastStatus())), - cmvr::common::Pixel{20, 60}, - cmvr::common::Color::white(), - 0.7, - 2); - display.showText("tracker: " + - std::string(cmvr::perception::TagRelativeTarget3D::statusToString( - tracker.lastStatus())), - cmvr::common::Pixel{20, 90}, - cmvr::common::Color::white(), - 0.7, - 2); - display.showText("tags: " + std::to_string(perception->tags().size()) + - " frame_ok: " + std::string(update_ok ? "true" : "false"), - cmvr::common::Pixel{20, 120}, - cmvr::common::Color::white(), - 0.7, - 2); - - if (tracker_ok) { - const Eigen::Vector3d& p_c_target = tracker.lastTargetInCamera(); - display.showText("target_c: [" + - std::to_string(p_c_target.x()) + ", " + - std::to_string(p_c_target.y()) + ", " + - std::to_string(p_c_target.z()) + "]", - cmvr::common::Pixel{20, 150}, - cmvr::common::Color::white(), - 0.6, - 2); - } - - const int key = display.show(1); - if (key == 27 || key == 'q' || key == 'Q') { - break; - } - } - - display.close(); -} diff --git a/cmvr-es/controller/src/ibvs_controller.cpp b/cmvr-es/controller/src/ibvs_controller.cpp index 91979e99..31b31d2c 100644 --- a/cmvr-es/controller/src/ibvs_controller.cpp +++ b/cmvr-es/controller/src/ibvs_controller.cpp @@ -1,7 +1,7 @@ #include "controller/include/ibvs_controller.h" #include "common/utils/image/image_process.h" -#include "common/utils/math/support_functions.h" +#include "common/math/include/support_functions.h" #include #include diff --git a/cmvr-es/devices/robot/humanoid_robot/src/humanoid_robot.cpp b/cmvr-es/devices/robot/humanoid_robot/src/humanoid_robot.cpp index e745d671..08e4631a 100644 --- a/cmvr-es/devices/robot/humanoid_robot/src/humanoid_robot.cpp +++ b/cmvr-es/devices/robot/humanoid_robot/src/humanoid_robot.cpp @@ -7,7 +7,7 @@ #include "motor/ti5_motor/ti5_motor.h" #include "../../../../utils/base/include/abstract_interpolation.h" #include "data_center/include/motors_info.h" -#include "common/utils/math/support_functions.h" +#include "common/math/include/support_functions.h" using namespace std; using namespace cmvr::device; diff --git a/cmvr-es/ik_solver/CMakeLists.txt b/cmvr-es/ik_solver/CMakeLists.txt index 8aceeb72..14c85883 100644 --- a/cmvr-es/ik_solver/CMakeLists.txt +++ b/cmvr-es/ik_solver/CMakeLists.txt @@ -20,6 +20,7 @@ target_link_libraries(ik_solver PUBLIC pinocchio_default pinocchio_parsers pinocchio_collision + cmvr_es::planner cmvr_es::common ) @@ -46,6 +47,7 @@ target_link_libraries(srs_ik_test gtest_main pthread glog + matplot ) diff --git a/cmvr-es/ik_solver/include/joints_limit_analyzer.h b/cmvr-es/ik_solver/include/joints_limit_analyzer.h index 7f4d379c..090003cc 100644 --- a/cmvr-es/ik_solver/include/joints_limit_analyzer.h +++ b/cmvr-es/ik_solver/include/joints_limit_analyzer.h @@ -7,7 +7,7 @@ #include #include -#include "common/utils/math/support_functions.h" +#include "common/math/include/support_functions.h" namespace cmvr { class JointsLimitAnalyzer { diff --git a/cmvr-es/ik_solver/include/opt_psi_selector.h b/cmvr-es/ik_solver/include/opt_psi_selector.h index d462b300..4df61654 100644 --- a/cmvr-es/ik_solver/include/opt_psi_selector.h +++ b/cmvr-es/ik_solver/include/opt_psi_selector.h @@ -7,7 +7,7 @@ #include #include -#include "common/utils/math/support_functions.h" +#include "common/math/include/support_functions.h" namespace cmvr { class OptPsiSelector { diff --git a/cmvr-es/ik_solver/include/pinocchio_dls_ik_solver.h b/cmvr-es/ik_solver/include/pinocchio_dls_ik_solver.h index a93ffea8..70800170 100644 --- a/cmvr-es/ik_solver/include/pinocchio_dls_ik_solver.h +++ b/cmvr-es/ik_solver/include/pinocchio_dls_ik_solver.h @@ -1,14 +1,16 @@ -// Created by lgv on 11/28/25. #pragma once #include "ik_solver/include/pinocchio_ik_base.h" + #include #include #include #include #include +#include "cartesian_space_planner/include/cartesian_twist_limiter.h" + namespace cmvr { /** @@ -16,26 +18,35 @@ namespace cmvr { * * 提供以下能力: * - 位姿 IK(`ik`) - * - 正运动学 FK(`fk`) + * - 正运动学 FK(`fk`,继承自基类) * - 末端 twist 到关节速度的微分 IK(`ik` 重载) * - 直线 MoveL(S 曲线标量规划 + 局部系微分 IK) + * - speedL(基于 CartesianTwistLimiter + DLS 微分 IK) * * 求解链路由 URDF 中 `base_frame_name -> flange_frame_name` 自动提取, * 并支持可选 TCP frame。 */ class PinocchioDlsIKSolver : public PinocchioIKBase { public: - /** - * @brief 构造 `PinocchioDlsIKSolver`。 - * @param urdf_path URDF 文件路径。 - * @param base_frame_name 机械臂基座 frame 名称。 - * @param flange_frame_name 机械臂法兰 frame 名称。 - * @param tcp_frame_name TCP frame 名称;为空表示不使用 TCP。 - * @param max_iters IK 最大迭代次数。 - * @param pos_eps 平移收敛阈值(m)。 - * @param rot_eps 旋转收敛阈值(rad)。 - * @param damping DLS 阻尼系数,建议默认值大于 `1e-6` 以提升稳定性。 - */ + struct SpeedLConfig { + double linear_velocity_max{0.25}; + double linear_acceleration_max{0.8}; + double linear_jerk_max{4.0}; + + double angular_velocity_max{1.0}; + double angular_acceleration_max{3.0}; + double angular_jerk_max{15.0}; + + std::vector joint_velocity_max; ///< size=chain_v_dof_,为空则仅用 URDF limit + std::vector joint_acceleration_max; ///< size=chain_v_dof_,为空则不做 joint accel 限制 + + double linear_target_replan_threshold{1e-4}; + double angular_target_replan_threshold{1e-4}; + + double linear_reverse_cos_threshold{-0.8660254037844386}; // cos(150deg) + double linear_reverse_switch_speed_threshold{1e-3}; + }; + PinocchioDlsIKSolver(const std::string &urdf_path, const std::string &base_frame_name, const std::string &flange_frame_name, @@ -43,85 +54,32 @@ public: int max_iters = 100, double pos_eps = 1e-6, double rot_eps = 1e-6, - double damping = 1e-4); // 建议默认比 1e-6 大点更稳 + double damping = 1e-4); ~PinocchioDlsIKSolver() override = default; - /** - * @brief 初始化求解器(加载 URDF、提取链路、缓存限位与基座位姿)。 - * @return 成功返回 `true`,失败返回 `false`。 - */ bool init() override; - /** - * @brief 位姿 IK 求解。 - * @param target_pose base 坐标系下目标位姿。 - * @param joints_angle 输出关节角(链空间)。 - * @param is_tcp 为 `true` 时以 TCP 为末端,否则以 flange 为末端。 - * @return 成功返回 `true`,失败返回 `false`。 - */ bool ik(const Eigen::Matrix4d &target_pose, std::vector &joints_angle, bool is_tcp = true) override; - /** - * @brief 位姿 IK 求解(显式指定 base_link 与 ee_link)。 - * - * 约束:`base_link` 与 `ee_link` 必须位于初始化单一链(base->tip) - * 对应分支内,且 `base_link` 需是 `ee_link` 的祖先(或同一 link)。 - * - * @param base_link 基座 frame 名称(目标位姿参考系)。 - * @param ee_link 末端 frame 名称。 - * @param target_pose `ee_link` 在 `base_link` 下的目标位姿。 - * @param joints_angle 输出关节角(链空间)。 - * @return 成功返回 `true`,失败返回 `false`。 - */ bool ik(const std::string& base_link, const std::string& ee_link, const Eigen::Matrix4d& target_pose, std::vector& joints_angle); - /** - * @brief 生成 MoveL 关节轨迹(局部系微分 IK + S 曲线标量规划)。 - * - * 该接口仅跟踪平移直线,姿态保持起点姿态。 - * - * @param target_pose_base base 坐标系下目标位姿(平移有效,姿态仅用于接口一致性)。 - * @param q_start 起始关节角(链空间)。 - * @param q_traj 输出关节轨迹序列。 - * @param t_traj 输出时间戳序列(秒)。 - * @param dt 控制周期(秒)。 - * @param v_tcp_max TCP 线速度上限(m/s)。 - * @param a_tcp_max TCP 线加速度上限(m/s^2)。 - * @param j_tcp_max TCP 线加加速度上限(m/s^3)。 - * @param qd_max 关节速度上限(rad/s),长度应等于 `chain_dof_`。 - * @param is_tcp 为 `true` 时以 TCP 为末端,否则以 flange 为末端。 - * @return 成功返回 `true`,失败返回 `false`。 - */ bool moveL_SCurveLocal(const Eigen::Matrix4d& target_pose_base, const std::vector& q_start, std::vector>& q_traj, std::vector& t_traj, double dt, - double v_tcp_max, // m/s - double a_tcp_max, // m/s^2 - double j_tcp_max, // m/s^3 - const std::vector& qd_max, // rad/s, size=chain_dof + double v_tcp_max, + double a_tcp_max, + double j_tcp_max, + const std::vector& qd_max, bool is_tcp = true); - /** - * @brief 用 DLS 微分逆解将末端局部坐标系 twist 映射为关节速度。 - * - * 当前关节状态取自内部 `cur_joints_angle_`(调用前需先 `update_joints_state`)。 - * - * @param base_link 基坐标系 frame 名称。 - * @param ee_link 末端 frame 名称。 - * @param target_vel 末端期望速度 [vx vy vz wx wy wz]^T,单位 m/s 与 rad/s,坐标系为 `ee_link` 局部系。 - * @param joints_vel 输出的关节速度,size=chain_v_dof_,单位 rad/s。 - * @param damping DLS 阻尼系数,<=0 时使用成员 damping_。 - * @param qdot_abs_max 关节速度绝对值限幅;同时会叠加 URDF velocityLimit。 - * @return 成功返回 `true`,失败返回 `false`。 - */ bool ik(const std::string& base_link, const std::string& ee_link, const Eigen::Matrix& target_vel, @@ -129,118 +87,192 @@ public: double damping = -1.0, double qdot_abs_max = std::numeric_limits::infinity()); - /** - * @brief 配置关节限位避障 null-space 项。 - * - * @param enable 是否启用。 - * @param gain 避障增益(rad/s 量纲)。 - * @param margin_ratio 在上下限附近触发的边界带占总行程比例 (0, 0.5)。 - * @param max_push 每关节最大推回速度(rad/s),<=0 表示不额外限幅。 - */ void setJointLimitAvoidance(bool enable, double gain = 0.2, double margin_ratio = 0.15, double max_push = 0.25); - /** - * @brief 设置 IK 最大迭代次数。 - * @param iters 最大迭代次数。 - */ void setMaxIters(int iters) { max_iters_ = iters; } - /** - * @brief 设置 DLS 阻尼系数。 - * @param d 阻尼系数。 - */ void setDamping(double d) { damping_ = d; } - /** - * @brief 设置 IK 收敛阈值。 - * @param pos_eps 平移阈值(m)。 - * @param rot_eps 旋转阈值(rad)。 - */ void setEps(double pos_eps, double rot_eps) { pos_eps_ = pos_eps; rot_eps_ = rot_eps; } -private: - /** - * @brief 计算阻尼伪逆。 - * @param J 输入雅可比矩阵。 - * @param lambda 阻尼系数。 - * @return 阻尼伪逆矩阵。 - */ - Eigen::MatrixXd dampedPseudoInverse(const Eigen::MatrixXd &J, double lambda); + // ==================== speedL ==================== /** - * @brief 将链关节向量组装为 full-model `q`。 - * @param q_chain 输入链关节向量。 - * @param q_full 输出 full-model 关节向量。 - * @param context 调用上下文(用于日志)。 - * @return 组装成功返回 `true`。 + * @brief 配置 speedL task-space / joint-space 限幅参数。 + * + * 调用后会重置 speedL 内部运行态,但保留本次配置。 */ + bool configureSpeedL(const SpeedLConfig& config); + + /** + * @brief 重置 speedL 运行状态(不清除配置)。 + */ + void resetSpeedL(); + + /** + * @brief speedL 单步(推荐:真机/仿真闭环版本) + * + * 输入为测得关节状态与目标末端 twist,输出关节速度命令。 + * 使用注意: + * 1) 这是 speedL 的首选接口,真机和 MuJoCo 闭环都应优先使用这个版本。 + * 2) q_measured / qdot_measured 必须与本次控制周期对齐;如果时间戳漂移,task-space limiter + * 的 synchronize 会基于错误状态工作。 + * 3) 返回的 qdot_cmd 仍然是 solver 侧命令值,不等于驱动器最终实际执行速度。 + * + * 流程: + * 1) 用 q_measured / qdot_measured 计算当前 measured twist(base) + * 2) 同步到 CartesianTwistLimiter + * 3) task-space 限幅得到 command twist(base) + * 4) 用 DLS 微分 IK 解出 qdot + * 5) 做 joint velocity / joint acceleration 限幅 + * 6) 回算 executed twist(base) + * + * @param target_twist 目标末端 twist(Base 或 Tool 系) + * @param dt 控制周期 + * @param q_measured 当前测得关节位置,size=chain_dof_ + * @param qdot_measured 当前测得关节速度,size=chain_v_dof_ + * @param qdot_cmd 输出关节速度命令,size=chain_v_dof_ + * @param input_frame target_twist 的输入坐标系 + * @param is_tcp true: TCP;false: flange + */ + bool speedLStep(const Eigen::Matrix& target_twist, + double dt, + const std::vector& q_measured, + const std::vector& qdot_measured, + std::vector& qdot_cmd, + CartesianFrame input_frame = CartesianFrame::Tool, + bool is_tcp = true); + + /** + * @brief speedL 单步(半闭环版本:有 q,无 qd) + * + * 使用测得 q_measured 更新当前姿态, + * 并用上一拍命令速度作为 qdot_measured 的近似反馈。 + * + * 使用注意: + * 1) 只有在能拿到真实 q、但暂时拿不到真实 qd 时再用这个版本。 + * 2) 这里的 qdot_measured 是 speedl_prev_qdot_cmd_ 的近似值;下游存在饱和、延迟或丢包时, + * 这个近似会偏乐观。 + * 3) 一旦能拿到真实 qdot,应切回带 q_measured/qdot_measured 的闭环版本。 + */ + bool speedLStep(const Eigen::Matrix& target_twist, + double dt, + const std::vector& q_measured, + std::vector& qdot_cmd, + CartesianFrame input_frame = CartesianFrame::Tool, + bool is_tcp = true); + + /** + * @brief speedL 单步(开环退化版本:无 q,无 qd) + * + * 使用内部 cur_joints_angle_ 与上一拍命令速度作为近似反馈, + * 并在每拍后用本次 qdot_cmd 做一次内部姿态推进。 + * + * 使用注意: + * 1) 只有在当前周期既拿不到真实 q、也拿不到真实 qd 时,才应使用这个版本。 + * 2) 该版本依赖内部预测状态,会随时间累计漂移;不适合长时间连续运行。 + * 3) 仅当 chain_dof_ == chain_v_dof_ 时才允许使用,因为内部使用简单的 q += qdot * dt + * 欧拉推进。 + * 4) 一旦恢复真实 q 或 qd,请立即切回上面两个 overload。 + */ + bool speedLStep(const Eigen::Matrix& target_twist, + double dt, + std::vector& qdot_cmd, + CartesianFrame input_frame = CartesianFrame::Tool, + bool is_tcp = true); + + const Eigen::Matrix& getSpeedLMeasuredTwistBase() const { + return speedl_twist_measured_base_; + } + + const Eigen::Matrix& getSpeedLCommandTwistBase() const { + return speedl_twist_command_base_; + } + + const Eigen::Matrix& getSpeedLExecutedTwistBase() const { + return speedl_twist_executed_base_; + } + + const std::vector& getSpeedLPrevQdotCmd() const { + return speedl_prev_qdot_cmd_; + } + + bool isSpeedLConfigured() const { return speedl_configured_; } + +private: + Eigen::MatrixXd dampedPseudoInverse(const Eigen::MatrixXd &J, double lambda); + bool buildFullQFromChain(const Eigen::VectorXd& q_chain, Eigen::VectorXd& q_full, const char* context) const; - /** - * @brief 从 full Jacobian 中提取当前链对应列。 - * @param J_full full-model Jacobian。 - * @return 链空间 Jacobian。 - */ + Eigen::MatrixXd extractChainJacobian(const Eigen::Matrix& J_full) const; - /** - * @brief 获取 base 在 world 下位姿(固定基座时优先使用缓存)。 - * @return base 在 world 下的位姿。 - */ + const pinocchio::SE3& getBasePoseWorld() const; - /** - * @brief 计算关节限位避障的二级速度项(未投影)。 - * @param q_chain 当前链关节位置。 - * @return 二级目标速度向量。 - */ + Eigen::VectorXd computeJointLimitAvoidanceVelocity(const Eigen::VectorXd& q_chain) const; - /** - * @brief 将二级目标速度投影到任务零空间。 - * @param J_pinv 任务雅可比伪逆。 - * @param J 任务雅可比。 - * @param secondary 二级目标速度。 - * @return 零空间投影结果 `N * secondary`,其中 `N = I - J_pinv * J`。 - */ + Eigen::VectorXd projectToNullspace(const Eigen::MatrixXd& J_pinv, const Eigen::MatrixXd& J, const Eigen::VectorXd& secondary) const; + // ==================== speedL helpers ==================== + bool resolveSpeedLEeFrame(bool is_tcp, pinocchio::FrameIndex& ee_id) const; + + bool buildJacobianBaseAtQ(const std::vector& q_chain, + pinocchio::FrameIndex ee_id, + Eigen::MatrixXd& J_base, + Eigen::Matrix3d& base_R_ee, + Eigen::VectorXd* q_full_out = nullptr); + + bool computeMeasuredTwistBase(const std::vector& q_chain, + const std::vector& qdot_chain, + pinocchio::FrameIndex ee_id, + Eigen::Matrix& twist_base, + Eigen::MatrixXd* J_base_out = nullptr, + Eigen::Matrix3d* base_R_ee_out = nullptr, + Eigen::VectorXd* q_full_out = nullptr); + + Eigen::VectorXd applyJointVelocityLimits(const Eigen::VectorXd& qdot_des) const; + + Eigen::VectorXd applyJointAccelerationLimits(const Eigen::VectorXd& qdot_des, + const Eigen::VectorXd& qdot_reference, + double dt) const; + private: - /** @brief 当前链在 full-model `q` 中的起始索引。 */ int chain_q_start_{0}; - /** @brief 当前链关节位置自由度数量。 */ int chain_dof_{0}; - /** @brief 当前链在 full-model `v` 中的起始索引。 */ int chain_v_start_{0}; - /** @brief 当前链关节速度自由度数量。 */ int chain_v_dof_{0}; - /** @brief 是否启用 null-space 关节限位避障。 */ bool limit_avoidance_enabled_{false}; - /** @brief 限位避障增益。 */ double limit_avoidance_gain_{0.2}; - /** @brief 限位触发边界比例(占关节行程比例)。 */ double limit_avoidance_margin_ratio_{0.15}; - /** @brief 每关节最大推回速度(rad/s),<=0 表示不额外限幅。 */ double limit_avoidance_max_push_{0.25}; - /** @brief 是否启用基座位姿缓存。 */ bool base_pose_cached_{false}; - /** @brief 缓存的 base 在 world 下位姿。 */ pinocchio::SE3 oM_base_cached_; - /** @brief 求解器是否已完成初始化。 */ bool initialized_{false}; - /** @brief IK 最大迭代次数。 */ int max_iters_; - /** @brief IK 平移收敛阈值(m)。 */ double pos_eps_; - /** @brief IK 旋转收敛阈值(rad)。 */ double rot_eps_; - /** @brief DLS 阻尼系数。 */ double damping_; + + // ==================== speedL state ==================== + bool speedl_configured_{false}; + bool speedl_last_is_tcp_{true}; + + SpeedLConfig speedl_config_; + CartesianTwistLimiter speedl_twist_limiter_; + + std::vector speedl_prev_qdot_cmd_; ///< size=chain_v_dof_ + + Eigen::Matrix speedl_twist_measured_base_{Eigen::Matrix::Zero()}; + Eigen::Matrix speedl_twist_command_base_{Eigen::Matrix::Zero()}; + Eigen::Matrix speedl_twist_executed_base_{Eigen::Matrix::Zero()}; }; } // namespace cmvr diff --git a/cmvr-es/ik_solver/include/pinocchio_qp_ik_solver.h b/cmvr-es/ik_solver/include/pinocchio_qp_ik_solver.h index e783c0c4..ef1f5b2d 100644 --- a/cmvr-es/ik_solver/include/pinocchio_qp_ik_solver.h +++ b/cmvr-es/ik_solver/include/pinocchio_qp_ik_solver.h @@ -8,7 +8,7 @@ #pragma once #include "ik_solver/include/pinocchio_ik_base.h" -#include "common/utils/math/qp_solver.h" +#include "common/math/include/qp_solver.h" #include #include diff --git a/cmvr-es/ik_solver/src/bias_srs_ik_slover.cpp b/cmvr-es/ik_solver/src/bias_srs_ik_slover.cpp index e5460fea..40a40fd2 100644 --- a/cmvr-es/ik_solver/src/bias_srs_ik_slover.cpp +++ b/cmvr-es/ik_solver/src/bias_srs_ik_slover.cpp @@ -4,7 +4,7 @@ #include "ik_solver/include/bias_srs_ik_slover.h" #include -#include "common/utils/math/support_functions.h" +#include "common/math/include/support_functions.h" #include "common/consts/constant.h" using namespace cmvr; using namespace Eigen; diff --git a/cmvr-es/ik_solver/src/lawba_ik_solver.cpp b/cmvr-es/ik_solver/src/lawba_ik_solver.cpp index 31d9d8cb..83b2f37d 100644 --- a/cmvr-es/ik_solver/src/lawba_ik_solver.cpp +++ b/cmvr-es/ik_solver/src/lawba_ik_solver.cpp @@ -3,7 +3,7 @@ // #include "ik_solver/include/lawba_ik_solver.h" -#include "common/utils/math/support_functions.h" +#include "common/math/include/support_functions.h" using namespace cmvr; diff --git a/cmvr-es/ik_solver/src/pinocchio_dls_ik_solver.cpp b/cmvr-es/ik_solver/src/pinocchio_dls_ik_solver.cpp index 589d1f75..8503333c 100644 --- a/cmvr-es/ik_solver/src/pinocchio_dls_ik_solver.cpp +++ b/cmvr-es/ik_solver/src/pinocchio_dls_ik_solver.cpp @@ -2,6 +2,7 @@ #include "ik_solver/include/pinocchio_dls_ik_solver.h" #include "ik_solver/include/urdf_parser.h" +#include "common/curve/include/s_curve.h" #include #include @@ -21,6 +22,19 @@ static inline double clampd(double x, double lo, double hi) { return std::max(lo, std::min(hi, x)); } +static inline double clamp01(double x) { + return std::max(0.0, std::min(1.0, x)); +} + +namespace { + +static inline double smoothstep01(double x) { + x = clamp01(x); + return x * x * (3.0 - 2.0 * x); +} + +} // namespace + Eigen::MatrixXd PinocchioDlsIKSolver::dampedPseudoInverse(const Eigen::MatrixXd &J, double lambda) { const int m = J.rows(); const int n = J.cols(); @@ -54,8 +68,8 @@ PinocchioDlsIKSolver::PinocchioDlsIKSolver(const std::string &urdf_path, } bool PinocchioDlsIKSolver::buildFullQFromChain(const Eigen::VectorXd& q_chain, - Eigen::VectorXd& q_full, - const char* context) const { + Eigen::VectorXd& q_full, + const char* context) const { if (q_chain.size() != chain_dof_) { if (context != nullptr) { std::cerr << "[PinocchioDlsIKSolver] " << context << " chain q size mismatch\n"; @@ -100,10 +114,10 @@ Eigen::VectorXd PinocchioDlsIKSolver::computeJointLimitAvoidanceVelocity( double push = 0.0; if (q_chain[i] < lo + margin) { - const double s = (lo + margin - q_chain[i]) / margin; // 0..1+ + const double s = (lo + margin - q_chain[i]) / margin; push += limit_avoidance_gain_ * s * s; } else if (q_chain[i] > hi - margin) { - const double s = (q_chain[i] - (hi - margin)) / margin; // 0..1+ + const double s = (q_chain[i] - (hi - margin)) / margin; push -= limit_avoidance_gain_ * s * s; } @@ -139,9 +153,6 @@ bool PinocchioDlsIKSolver::init() { chain_v_start_ = chain_info.v_start; chain_v_dof_ = chain_info.v_dof; - // limits already cached in IKSolver base class. - - // cache base pose (PELVIS_S fixed) { Eigen::VectorXd q0 = pinocchio::neutral(model_); updateKinematics(q0); @@ -149,7 +160,6 @@ bool PinocchioDlsIKSolver::init() { base_pose_cached_ = true; } - // init current joints cur_joints_angle_.assign(chain_dof_, 0.0); initialized_ = true; @@ -282,9 +292,9 @@ bool PinocchioDlsIKSolver::ik(const std::string& base_link, } void PinocchioDlsIKSolver::setJointLimitAvoidance(bool enable, - double gain, - double margin_ratio, - double max_push) { + double gain, + double margin_ratio, + double max_push) { limit_avoidance_enabled_ = enable; limit_avoidance_gain_ = std::max(0.0, gain); limit_avoidance_margin_ratio_ = std::clamp(margin_ratio, 1e-3, 0.49); @@ -298,7 +308,6 @@ bool PinocchioDlsIKSolver::ik(const std::string& base_link, double damping, double qdot_abs_max) { - // 1) 基本状态与输入合法性检查。 if (!initialized_) return false; if (!model_.existFrame(base_link)) { std::cerr << "[PinocchioDlsIKSolver] base frame not found: " << base_link << "\n"; @@ -352,38 +361,36 @@ bool PinocchioDlsIKSolver::ik(const std::string& base_link, return false; } - // 2) 组装整机 q(内部当前状态)。 + const Eigen::Map q_chain(cur_joints_angle_.data(), chain_dof_); + Eigen::VectorXd q_full; - if (!buildFullQFromInput(cur_joints_angle_, q_full, "ik(velocity)")) { + if (!buildFullQFromChain(q_chain, q_full, "ik(velocity)")) { return false; } - // 3) 在当前关节角下更新位姿。 updateKinematics(q_full); const pinocchio::SE3 &oM_base = (base_id == base_frame_id_) ? getBasePoseWorld() : data_->oMf[base_id]; const pinocchio::SE3 &oM_ee = data_->oMf[ee_id]; - // 4) ee 局部系 twist -> base 系 twist。 const pinocchio::SE3 base_M_ee = oM_base.inverse() * oM_ee; - const Eigen::Matrix3d R_be = base_M_ee.rotation(); // ee -> base + const Eigen::Matrix3d R_be = base_M_ee.rotation(); + Eigen::Matrix twist_base; twist_base.head<3>() = R_be * target_vel.head<3>(); twist_base.tail<3>() = R_be * target_vel.tail<3>(); - // 5) 计算 Jacobian,并从 world 表达转到 base 表达。 Eigen::Matrix J_world(6, model_.nv); pinocchio::computeFrameJacobian(model_, *data_, q_full, ee_id, pinocchio::ReferenceFrame::LOCAL_WORLD_ALIGNED, J_world); Eigen::MatrixXd J = extractChainJacobian(J_world); - const Eigen::Matrix3d R_bo = oM_base.rotation().transpose(); // world -> base + const Eigen::Matrix3d R_bo = oM_base.rotation().transpose(); J.topRows(3) = R_bo * J.topRows(3); J.bottomRows(3) = R_bo * J.bottomRows(3); - // 6) DLS 逆解:qdot = J^T (J J^T + lambda^2 I)^-1 * twist_base。 const double lambda = (damping > 0.0) ? damping : damping_; Eigen::Matrix A = J * J.transpose(); A.diagonal().array() += (lambda * lambda); @@ -394,241 +401,44 @@ bool PinocchioDlsIKSolver::ik(const std::string& base_link, } Eigen::VectorXd qdot = J.transpose() * ldlt.solve(twist_base); - // 6.1) null-space 关节限位避障:在主任务零空间叠加“离限位推回”速度。 - const Eigen::VectorXd q_chain = q_full.segment(chain_q_start_, chain_dof_); const Eigen::VectorXd qdot_avoid = computeJointLimitAvoidanceVelocity(q_chain); if (qdot_avoid.size() == chain_v_dof_ && qdot_avoid.squaredNorm() > 1e-16) { const Eigen::Matrix A_inv = ldlt.solve(Eigen::Matrix::Identity()); - const Eigen::MatrixXd J_pinv = J.transpose() * A_inv; // n x 6 + const Eigen::MatrixXd J_pinv = J.transpose() * A_inv; qdot += projectToNullspace(J_pinv, J, qdot_avoid); } - // 7) 关节速度限幅:取调用者限幅与 URDF velocityLimit 的更严格值。 - joints_vel.resize(chain_v_dof_); + double gamma = 1.0; for (int i = 0; i < chain_v_dof_; ++i) { - double vel_limit = qdot_abs_max; + double vel_limit = std::numeric_limits::infinity(); + if (std::isfinite(qdot_abs_max) && qdot_abs_max > 0.0) { + vel_limit = std::min(vel_limit, qdot_abs_max); + } if (joint_vel_limits_.size() == chain_v_dof_) { - vel_limit = std::min(vel_limit, std::abs(joint_vel_limits_[i])); + const double urdf_limit = std::abs(joint_vel_limits_[i]); + if (std::isfinite(urdf_limit) && urdf_limit > 0.0) { + vel_limit = std::min(vel_limit, urdf_limit); + } } - double qi = qdot[i]; - if (std::isfinite(vel_limit) && vel_limit > 0.0) { - qi = clampd(qi, -vel_limit, vel_limit); + const double qi_abs = std::abs(qdot[i]); + if (std::isfinite(vel_limit) && vel_limit > 0.0 && qi_abs > vel_limit) { + gamma = std::min(gamma, vel_limit / qi_abs); } - joints_vel[i] = qi; + } + + joints_vel.resize(chain_v_dof_); + const Eigen::VectorXd qdot_limited = gamma * qdot; + for (int i = 0; i < chain_v_dof_; ++i) { + joints_vel[i] = qdot_limited[i]; } return true; } -// ===== 小工具 ===== -static inline double clamp01(double x) { return std::max(0.0, std::min(1.0, x)); } - // ============================================================================ -// S-curve profile (7 segments), with EXACT per-segment integration sampling -// - compute(): your original -// - jerk_at(): your original -// - sample(tau): new; returns s, sd, sdd exactly under the piecewise-constant jerk -// ============================================================================ -namespace { - -struct SCurveProfile1D { - double L{0.0}; - double v_max{0.0}; - double a_max{0.0}; - double j_max{0.0}; - - double t_j{0.0}; // jerk phase duration - double t_a{0.0}; // constant accel duration - double t_v{0.0}; // cruise duration - double T{0.0}; // total duration - - double v_peak{0.0}; - double a_peak{0.0}; - - bool valid{false}; - - static double cbrt_pos(double x) { return std::cbrt(std::max(0.0, x)); } - - static double half_dist_a_reached(double a, double t_j, double t_a) { - return a * (t_j*t_j + 1.5*t_j*t_a + 0.5*t_a*t_a); - } - - void compute(double L_, double v_max_, double a_max_, double j_max_) { - L = std::max(0.0, L_); - v_max = std::max(0.0, v_max_); - a_max = std::max(0.0, a_max_); - j_max = std::max(0.0, j_max_); - - valid = false; - t_j = t_a = t_v = T = 0.0; - v_peak = a_peak = 0.0; - - if (L <= 1e-12) { valid = true; return; } - if (v_max <= 1e-12 || a_max <= 1e-12 || j_max <= 1e-12) return; - - const double j = j_max; - const double t_j_a = a_max / j; - - // Case X:达不到 a_max - if (v_max < a_max * t_j_a) { - const double t_j_v = std::sqrt(v_max / j); - const double s_half_v = j * std::pow(t_j_v, 3); - const double s_min = 2.0 * s_half_v; - - if (L > s_min + 1e-12) { - t_j = t_j_v; - t_a = 0.0; - t_v = (L - s_min) / v_max; - v_peak = v_max; - a_peak = j * t_j; - T = 4.0*t_j + t_v; - valid = true; - return; - } else { - t_a = 0.0; - t_v = 0.0; - t_j = cbrt_pos(L / (2.0*j)); - v_peak = j * t_j * t_j; - a_peak = j * t_j; - T = 4.0*t_j; - valid = true; - return; - } - } - - // Case Y:能达到 a_max - const double t_a_v = v_max / a_max - t_j_a; - const double s_half_v = half_dist_a_reached(a_max, t_j_a, t_a_v); - const double s_min = 2.0 * s_half_v; - - if (L > s_min + 1e-12) { - t_j = t_j_a; - t_a = t_a_v; - t_v = (L - s_min) / v_max; - v_peak = v_max; - a_peak = a_max; - T = 4.0*t_j + 2.0*t_a + t_v; - valid = true; - return; - } else { - const double tj = t_j_a; - const double D = tj*tj + 4.0 * (L / a_max); - double t_a_sol = (-3.0*tj + std::sqrt(std::max(0.0, D))) * 0.5; - - if (t_a_sol < 0.0) { - t_a = 0.0; - t_v = 0.0; - t_j = cbrt_pos(L / (2.0*j)); - v_peak = j * t_j * t_j; - a_peak = j * t_j; - T = 4.0*t_j; - valid = true; - return; - } - - t_j = tj; - t_a = t_a_sol; - t_v = 0.0; - v_peak = a_max * (t_a + t_j); - a_peak = a_max; - T = 4.0*t_j + 2.0*t_a; - valid = true; - return; - } - } - - // 7 段 jerk 指令: [+j, 0, -j, 0, -j, 0, +j] - double jerk_at(double t) const { - const double j = j_max; - const double d1 = t_j; - const double d2 = t_a; - const double d3 = t_j; - const double d4 = t_v; - const double d5 = t_j; - const double d6 = t_a; - const double d7 = t_j; - - if (t < 0.0) return 0.0; - if (t < d1) return +j; - t -= d1; - if (t < d2) return 0.0; - t -= d2; - if (t < d3) return -j; - t -= d3; - if (t < d4) return 0.0; - t -= d4; - if (t < d5) return -j; - t -= d5; - if (t < d6) return 0.0; - t -= d6; - if (t < d7) return +j; - return 0.0; - } - - // ===== 新增:解析采样(按段常 jerk 精确积分)===== - void sample(double tau, double& s, double& sd, double& sdd, double& j_out) const { - if (!valid) { s=sd=sdd=j_out=0.0; return; } - - tau = std::min(std::max(0.0, tau), T); - - auto advance = [&](double dt, double jerk, - double& s, double& v, double& a) { - // constant jerk exact integration - s += v*dt + 0.5*a*dt*dt + (1.0/6.0)*jerk*dt*dt*dt; - v += a*dt + 0.5*jerk*dt*dt; - a += jerk*dt; - }; - - // segments - const double segT[7] = {t_j, t_a, t_j, t_v, t_j, t_a, t_j}; - const double segJ[7] = {+j_max, 0.0, -j_max, 0.0, -j_max, 0.0, +j_max}; - - double s_acc = 0.0; - double v_acc = 0.0; - double a_acc = 0.0; - - double rem = tau; - int k_last = 0; - for (int k = 0; k < 7; ++k) { - const double dt = std::min(rem, segT[k]); - if (dt > 0.0) { - advance(dt, segJ[k], s_acc, v_acc, a_acc); - k_last = k; - } - rem -= dt; - if (rem <= 1e-15) { k_last = k; break; } - } - - s = std::min(std::max(0.0, s_acc), L); - sd = v_acc; - sdd = a_acc; - - // current jerk - j_out = jerk_at(tau); - - // force perfect stop at end - if (tau >= T - 1e-12) { sd = 0.0; sdd = 0.0; j_out = 0.0; } - if (tau <= 1e-12) { /* sd already ~0 */ } - } -}; - -static inline double smoothstep01(double x) { - x = clamp01(x); - return x*x*(3.0 - 2.0*x); -} - -} // namespace - -// ============================================================================ -// MoveL with tau time-scaling (anti-wobble + correct stop): -// - tau: profile time (S-curve runs fully => sd->0) -// - t : real time (control dt) -// - gamma_tot scales BOTH dq and tau-step (time scaling) -// - gamma_lim keeps q_next inside limits (avoid clamp chattering) -// - posture/feedback fades out near end (avoid nullspace leakage stop wiggle) -// - add final hold sample => diff-speed == 0 +// MoveL with tau time-scaling // ============================================================================ bool PinocchioDlsIKSolver::moveL_SCurveLocal(const Eigen::Matrix4d& target_pose_base, const std::vector& q_start, @@ -650,7 +460,6 @@ bool PinocchioDlsIKSolver::moveL_SCurveLocal(const Eigen::Matrix4d& target_pose_ const pinocchio::FrameIndex ee_id = (is_tcp && has_tcp_) ? tcp_frame_id_ : flange_frame_id_; - // start FK (base) Eigen::Matrix4d T0_base; if (!fk(q_start, T0_base, is_tcp)) return false; @@ -665,111 +474,91 @@ bool PinocchioDlsIKSolver::moveL_SCurveLocal(const Eigen::Matrix4d& target_pose_ std::cerr << "dp(base)= " << dp.transpose() << "\n"; - // profile - SCurveProfile1D prof; - prof.compute(L, v_tcp_max, a_tcp_max, j_tcp_max); - if (!prof.valid) { + SCurve curve(v_tcp_max, a_tcp_max, j_tcp_max); + const SCurveProfile prof = curve.calculateProfile(0.0, L); + if (prof.total_time <= 0.0) { std::cerr << "[moveL_SCurveLocal] invalid profile\n"; return false; } - // ---------------- tuning ---------------- - const double Kp_perp0 = 1.0; // 1/s - const double Kp_rot0 = 1.0; // 1/s - const double k_posture0 = 1.0; // 1/s + const double Kp_perp0 = 1.0; + const double Kp_rot0 = 1.0; + const double k_posture0 = 1.0; const double eps_dq = 1e-9; - // speed limits Eigen::VectorXd qd_lim(chain_dof_); for (int i = 0; i < chain_dof_; ++i) qd_lim[i] = std::max(1e-6, std::abs(qd_max[i])); - // posture reference Eigen::VectorXd q_ref = Eigen::Map(q_start.data(), chain_dof_); - - // state Eigen::VectorXd q_chain = Eigen::Map(q_start.data(), chain_dof_); - double t = 0.0; // real time - double tau = 0.0; // profile time + double t = 0.0; + double tau = 0.0; - // output q_traj.clear(); t_traj.clear(); - q_traj.reserve((size_t)(prof.T / dt_real) + 10); - t_traj.reserve((size_t)(prof.T / dt_real) + 10); + q_traj.reserve((size_t)(prof.total_time / dt_real) + 10); + t_traj.reserve((size_t)(prof.total_time / dt_real) + 10); q_traj.push_back(q_start); t_traj.push_back(0.0); - // logs A/B/C const double log_period = 0.05; double next_log_t = 0.0; const double sigma_min_th = 1e-4; const double cond_th = 1e4; - // gamma smoothing (optional but helps remove kinks) double gamma_prev = 1.0; - const double gamma_tau = 0.03; // 30ms low-pass + const double gamma_tau = 0.03; - // stuck detection int stuck_cnt = 0; - while (tau < prof.T - 1e-12) { + while (tau < prof.total_time - 1e-12) { const double step_real = dt_real; - // ===== sample profile at tau (exact) ===== - double s=0.0, sd=0.0, sdd=0.0, j_now=0.0; - prof.sample(tau, s, sd, sdd, j_now); + const double s = curve.getPositionAtTime(prof, tau); + const double sd = curve.getVelocityAtTime(prof, tau); - // ===== end-fade (avoid nullspace leakage at stop) ===== - const double w_end = smoothstep01(sd / std::max(1e-6, 0.15 * prof.v_peak)); + const double w_end = smoothstep01(sd / std::max(1e-6, 0.15 * prof.v_cruise)); const double Kp_perp = Kp_perp0 * w_end; const double Kp_rot = Kp_rot0 * w_end; const double k_posture = k_posture0 * w_end; - // desired pose in base const Eigen::Vector3d p_des_base = p0 + dir_base * s; Eigen::Matrix4d T_des_base = Eigen::Matrix4d::Identity(); T_des_base.block<3,3>(0,0) = R_fixed; T_des_base.block<3,1>(0,3) = p_des_base; - // build q_full Eigen::VectorXd q_full; if (!buildFullQFromChain(q_chain, q_full, "moveL_SCurveLocal")) { return false; } updateKinematics(q_full); - const pinocchio::SE3& oM_base = getBasePoseWorld(); // world<-base + const pinocchio::SE3& oM_base = getBasePoseWorld(); const Eigen::Matrix3d R_ob = oM_base.rotation(); const pinocchio::SE3 &oM_cur = data_->oMf[ee_id]; const pinocchio::SE3 oM_des = oM_base * matrix4ToSE3(T_des_base); - // current position in base pinocchio::SE3 base_M_cur = oM_base.inverse() * oM_cur; const Eigen::Vector3d p_cur_base = base_M_cur.translation(); - // perpendicular error only const Eigen::Vector3d e_base = p_des_base - p_cur_base; const Eigen::Vector3d e_perp = e_base - dir_base * (dir_base.dot(e_base)); - // rotation error (LOCAL) pinocchio::SE3 dM = oM_cur.inverse() * oM_des; Eigen::Matrix err6 = pinocchio::log6(dM).toVector(); - // Jacobian (LOCAL) Eigen::Matrix J_full(6, model_.nv); pinocchio::computeFrameJacobian(model_, *data_, q_full, ee_id, pinocchio::ReferenceFrame::LOCAL, J_full); - // !!! use v_start/v_dof (more correct) Eigen::MatrixXd J = extractChainJacobian(J_full); Eigen::MatrixXd J_pinv = dampedPseudoInverse(J, damping_); - // C) singular monitor double sigma_min = 0.0, sigma_max = 0.0, cond = 0.0; { Eigen::JacobiSVD svd(J, Eigen::ComputeThinU | Eigen::ComputeThinV); @@ -779,29 +568,23 @@ bool PinocchioDlsIKSolver::moveL_SCurveLocal(const Eigen::Matrix4d& target_pose_ cond = (sigma_min > 1e-12) ? (sigma_max / sigma_min) : 1e12; } - // feedforward linear vel along line (ds/dtau = sd) - const Eigen::Vector3d v_base_ff = dir_base * sd; // base - const Eigen::Vector3d v_world_ff = R_ob * v_base_ff; // world + const Eigen::Vector3d v_base_ff = dir_base * sd; + const Eigen::Vector3d v_world_ff = R_ob * v_base_ff; const Eigen::Vector3d v_local_ff = oM_cur.rotation().transpose() * v_world_ff; - // perpendicular feedback vel const Eigen::Vector3d v_base_fb = Kp_perp * e_perp; const Eigen::Vector3d v_world_fb = R_ob * v_base_fb; const Eigen::Vector3d v_local_fb = oM_cur.rotation().transpose() * v_world_fb; - // desired LOCAL twist Eigen::Matrix xi = Eigen::Matrix::Zero(); xi.head<3>() = v_local_ff + v_local_fb; xi.tail<3>() = Kp_rot * err6.tail<3>(); - // task dq const Eigen::VectorXd dq_task = J_pinv * xi; - // nullspace posture const Eigen::VectorXd dq_posture = -k_posture * (q_chain - q_ref); const Eigen::VectorXd dq_raw = dq_task + projectToNullspace(J_pinv, J, dq_posture); - // ---------------- gamma_speed (joint speed) ---------------- double gamma_speed = 1.0; for (int i = 0; i < chain_dof_; ++i) { const double denom = std::max(eps_dq, std::abs(dq_raw[i])); @@ -809,7 +592,6 @@ bool PinocchioDlsIKSolver::moveL_SCurveLocal(const Eigen::Matrix4d& target_pose_ } gamma_speed = clamp01(gamma_speed); - // ---------------- gamma_lim (keep q_next within limits) ---------------- double gamma_lim = 1.0; for (int i = 0; i < chain_dof_; ++i) { const double dqi = dq_raw[i]; @@ -819,7 +601,7 @@ bool PinocchioDlsIKSolver::moveL_SCurveLocal(const Eigen::Matrix4d& target_pose_ const double margin = joint_pos_upper_limits_[i] - q_chain[i]; const double g = margin / (dqi * step_real); gamma_lim = std::min(gamma_lim, g); - } else { // dqi < 0 + } else { const double margin = q_chain[i] - joint_pos_lower_limits_[i]; const double g = margin / ((-dqi) * step_real); gamma_lim = std::min(gamma_lim, g); @@ -827,10 +609,8 @@ bool PinocchioDlsIKSolver::moveL_SCurveLocal(const Eigen::Matrix4d& target_pose_ } gamma_lim = clamp01(gamma_lim); - // total gamma double gamma_target = std::min(gamma_speed, gamma_lim); - // optional gamma smoothing to remove kinks const double alpha = step_real / (gamma_tau + step_real); const double gamma_tot = gamma_prev + alpha * (gamma_target - gamma_prev); gamma_prev = gamma_tot; @@ -841,18 +621,12 @@ bool PinocchioDlsIKSolver::moveL_SCurveLocal(const Eigen::Matrix4d& target_pose_ return false; } - // apply dq (real time) q_chain += (gamma_tot * dq_raw) * step_real; - - // (理论上 gamma_lim 已保证不越界,这里只是数值保险) q_chain = q_chain.cwiseMax(joint_pos_lower_limits_).cwiseMin(joint_pos_upper_limits_); - // ---- advance profile time (time scaling) ---- - // IMPORTANT: tau advances by gamma_tot*dt_real => if slowed by limits, profile slows too - tau = std::min(prof.T, tau + gamma_tot * step_real); + tau = std::min(prof.total_time, tau + gamma_tot * step_real); t += step_real; - // log A/B/C if (t >= next_log_t) { next_log_t += log_period; @@ -866,7 +640,7 @@ bool PinocchioDlsIKSolver::moveL_SCurveLocal(const Eigen::Matrix4d& target_pose_ std::cerr << "[MoveL ABC] t=" << t - << " tau=" << tau << "/" << prof.T + << " tau=" << tau << "/" << prof.total_time << " s=" << s << "/" << L << " sd=" << sd << " gamma_speed=" << gamma_speed @@ -892,21 +666,413 @@ bool PinocchioDlsIKSolver::moveL_SCurveLocal(const Eigen::Matrix4d& target_pose_ } } - // save std::vector q_out(chain_dof_); Eigen::Map(q_out.data(), chain_dof_) = q_chain; q_traj.push_back(std::move(q_out)); t_traj.push_back(t); } - // ---- ensure end stop for finite difference velocity ---- - if (!q_traj.empty() && !t_traj.empty()) { - t_traj.push_back(t_traj.back() + dt_real); - q_traj.push_back(q_traj.back()); // hold => diff-speed becomes 0 - } - return !q_traj.empty(); } +// ==================== speedL ==================== + +bool PinocchioDlsIKSolver::configureSpeedL(const SpeedLConfig& config) +{ + if (!initialized_) { + std::cerr << "[PinocchioDlsIKSolver] configureSpeedL failed: solver not initialized\n"; + return false; + } + + if (!config.joint_velocity_max.empty() && + static_cast(config.joint_velocity_max.size()) != chain_v_dof_) { + std::cerr << "[PinocchioDlsIKSolver] configureSpeedL failed: joint_velocity_max size mismatch\n"; + return false; + } + + if (!config.joint_acceleration_max.empty() && + static_cast(config.joint_acceleration_max.size()) != chain_v_dof_) { + std::cerr << "[PinocchioDlsIKSolver] configureSpeedL failed: joint_acceleration_max size mismatch\n"; + return false; + } + + speedl_config_ = config; + + speedl_twist_limiter_.setLinearConstraints(config.linear_velocity_max, + config.linear_acceleration_max, + config.linear_jerk_max); + speedl_twist_limiter_.setAngularConstraints(config.angular_velocity_max, + config.angular_acceleration_max, + config.angular_jerk_max); + speedl_twist_limiter_.setLinearTargetReplanThreshold(config.linear_target_replan_threshold); + speedl_twist_limiter_.setAngularTargetReplanThreshold(config.angular_target_replan_threshold); + speedl_twist_limiter_.setLinearReverseSwitchPolicy(config.linear_reverse_cos_threshold, + config.linear_reverse_switch_speed_threshold); + + speedl_twist_limiter_.reset(); + speedl_prev_qdot_cmd_.assign(chain_v_dof_, 0.0); + speedl_twist_measured_base_.setZero(); + speedl_twist_command_base_.setZero(); + speedl_twist_executed_base_.setZero(); + + speedl_configured_ = true; + return true; +} + +void PinocchioDlsIKSolver::resetSpeedL() +{ + speedl_twist_limiter_.reset(); + speedl_prev_qdot_cmd_.assign(chain_v_dof_, 0.0); + speedl_twist_measured_base_.setZero(); + speedl_twist_command_base_.setZero(); + speedl_twist_executed_base_.setZero(); +} + +bool PinocchioDlsIKSolver::resolveSpeedLEeFrame(bool is_tcp, pinocchio::FrameIndex& ee_id) const +{ + if (is_tcp && has_tcp_) { + ee_id = tcp_frame_id_; + return true; + } + ee_id = flange_frame_id_; + return true; +} + +bool PinocchioDlsIKSolver::buildJacobianBaseAtQ(const std::vector& q_chain_std, + pinocchio::FrameIndex ee_id, + Eigen::MatrixXd& J_base, + Eigen::Matrix3d& base_R_ee, + Eigen::VectorXd* q_full_out) +{ + if (static_cast(q_chain_std.size()) != chain_dof_) { + std::cerr << "[PinocchioDlsIKSolver] buildJacobianBaseAtQ: q size mismatch\n"; + return false; + } + + const Eigen::Map q_chain(q_chain_std.data(), chain_dof_); + + Eigen::VectorXd q_full; + if (!buildFullQFromChain(q_chain, q_full, "speedL.buildJacobianBaseAtQ")) { + return false; + } + + updateKinematics(q_full); + + const pinocchio::SE3& oM_base = getBasePoseWorld(); + const pinocchio::SE3& oM_ee = data_->oMf[ee_id]; + const pinocchio::SE3 base_M_ee = oM_base.inverse() * oM_ee; + base_R_ee = base_M_ee.rotation(); + + Eigen::Matrix J_world(6, model_.nv); + pinocchio::computeFrameJacobian(model_, *data_, q_full, + ee_id, + pinocchio::ReferenceFrame::LOCAL_WORLD_ALIGNED, + J_world); + + J_base = extractChainJacobian(J_world); + + const Eigen::Matrix3d R_bo = oM_base.rotation().transpose(); + J_base.topRows(3) = R_bo * J_base.topRows(3); + J_base.bottomRows(3) = R_bo * J_base.bottomRows(3); + + if (q_full_out != nullptr) { + *q_full_out = q_full; + } + + return true; +} + +bool PinocchioDlsIKSolver::computeMeasuredTwistBase(const std::vector& q_chain, + const std::vector& qdot_chain, + pinocchio::FrameIndex ee_id, + Eigen::Matrix& twist_base, + Eigen::MatrixXd* J_base_out, + Eigen::Matrix3d* base_R_ee_out, + Eigen::VectorXd* q_full_out) +{ + if (static_cast(qdot_chain.size()) != chain_v_dof_) { + std::cerr << "[PinocchioDlsIKSolver] computeMeasuredTwistBase: qdot size mismatch\n"; + return false; + } + + Eigen::MatrixXd J_base; + Eigen::Matrix3d base_R_ee = Eigen::Matrix3d::Identity(); + if (!buildJacobianBaseAtQ(q_chain, ee_id, J_base, base_R_ee, q_full_out)) { + return false; + } + + const Eigen::Map qdot(qdot_chain.data(), chain_v_dof_); + twist_base = J_base * qdot; + + if (J_base_out != nullptr) { + *J_base_out = J_base; + } + if (base_R_ee_out != nullptr) { + *base_R_ee_out = base_R_ee; + } + + return true; +} + +Eigen::VectorXd PinocchioDlsIKSolver::applyJointVelocityLimits(const Eigen::VectorXd& qdot_des) const +{ + if (qdot_des.size() != chain_v_dof_) { + return Eigen::VectorXd::Zero(chain_v_dof_); + } + + double gamma = 1.0; + for (int i = 0; i < chain_v_dof_; ++i) { + double limit_i = std::numeric_limits::infinity(); + + if (!speedl_config_.joint_velocity_max.empty()) { + const double cfg_lim = std::abs(speedl_config_.joint_velocity_max[i]); + if (cfg_lim > 0.0) { + limit_i = std::min(limit_i, cfg_lim); + } + } + + if (joint_vel_limits_.size() == chain_v_dof_) { + const double urdf_lim = std::abs(joint_vel_limits_[i]); + if (std::isfinite(urdf_lim) && urdf_lim > 0.0) { + limit_i = std::min(limit_i, urdf_lim); + } + } + + const double qi = std::abs(qdot_des[i]); + if (std::isfinite(limit_i) && limit_i > 0.0 && qi > limit_i) { + gamma = std::min(gamma, limit_i / qi); + } + } + + return gamma * qdot_des; +} + +Eigen::VectorXd PinocchioDlsIKSolver::applyJointAccelerationLimits(const Eigen::VectorXd& qdot_des, + const Eigen::VectorXd& qdot_reference, + double dt) const +{ + if (qdot_des.size() != chain_v_dof_ || qdot_reference.size() != chain_v_dof_ || dt <= 0.0) { + return qdot_des; + } + + if (speedl_config_.joint_acceleration_max.empty()) { + return qdot_des; + } + + double gamma = 1.0; + for (int i = 0; i < chain_v_dof_; ++i) { + const double amax = std::abs(speedl_config_.joint_acceleration_max[i]); + if (amax <= 0.0) { + continue; + } + + const double delta = qdot_des[i] - qdot_reference[i]; + const double max_delta = amax * dt; + const double abs_delta = std::abs(delta); + + if (abs_delta > max_delta) { + gamma = std::min(gamma, max_delta / abs_delta); + } + } + + return qdot_reference + gamma * (qdot_des - qdot_reference); +} + +bool PinocchioDlsIKSolver::speedLStep(const Eigen::Matrix& target_twist, + double dt, + const std::vector& q_measured, + const std::vector& qdot_measured, + std::vector& qdot_cmd, + CartesianFrame input_frame, + bool is_tcp) +{ + if (!initialized_) { + std::cerr << "[PinocchioDlsIKSolver] speedLStep failed: solver not initialized\n"; + return false; + } + if (!speedl_configured_) { + std::cerr << "[PinocchioDlsIKSolver] speedLStep failed: speedL not configured\n"; + return false; + } + if (dt <= 0.0) { + std::cerr << "[PinocchioDlsIKSolver] speedLStep failed: invalid dt\n"; + return false; + } + if (static_cast(q_measured.size()) != chain_dof_) { + std::cerr << "[PinocchioDlsIKSolver] speedLStep failed: q_measured size mismatch\n"; + return false; + } + if (static_cast(qdot_measured.size()) != chain_v_dof_) { + std::cerr << "[PinocchioDlsIKSolver] speedLStep failed: qdot_measured size mismatch\n"; + return false; + } + + pinocchio::FrameIndex ee_id = flange_frame_id_; + if (!resolveSpeedLEeFrame(is_tcp, ee_id)) { + return false; + } + speedl_last_is_tcp_ = is_tcp; + + cur_joints_angle_ = q_measured; + + Eigen::MatrixXd J_base; + Eigen::Matrix3d base_R_ee = Eigen::Matrix3d::Identity(); + Eigen::VectorXd q_full; + if (!computeMeasuredTwistBase(q_measured, + qdot_measured, + ee_id, + speedl_twist_measured_base_, + &J_base, + &base_R_ee, + &q_full)) { + return false; + } + + // 1) 用 measured twist 同步 task-space limiter + speedl_twist_limiter_.synchronize(speedl_twist_measured_base_, dt, true); + + // 2) 设置目标 twist + speedl_twist_limiter_.setTargetTwist(target_twist, input_frame); + + // 3) task-space 限幅得到命令 twist(base) + const Eigen::Matrix twist_cmd_base = + speedl_twist_limiter_.update(dt, base_R_ee); + speedl_twist_command_base_ = twist_cmd_base; + + // 4) DLS 微分 IK:qdot_des = J^T (J J^T + λ²I)^-1 * twist_cmd_base + const double lambda = damping_; + Eigen::Matrix A = J_base * J_base.transpose(); + A.diagonal().array() += (lambda * lambda); + + Eigen::LDLT> ldlt(A); + if (ldlt.info() != Eigen::Success) { + std::cerr << "[PinocchioDlsIKSolver] speedLStep failed: LDLT decomposition failed\n"; + return false; + } + + Eigen::VectorXd qdot_des = J_base.transpose() * ldlt.solve(twist_cmd_base); + + // 4.1) null-space joint-limit avoidance + const Eigen::Map q_chain(q_measured.data(), chain_dof_); + const Eigen::VectorXd qdot_avoid = computeJointLimitAvoidanceVelocity(q_chain); + if (qdot_avoid.size() == chain_v_dof_ && qdot_avoid.squaredNorm() > 1e-16) { + const Eigen::Matrix A_inv = + ldlt.solve(Eigen::Matrix::Identity()); + const Eigen::MatrixXd J_pinv = J_base.transpose() * A_inv; + qdot_des += projectToNullspace(J_pinv, J_base, qdot_avoid); + } + + // 5) joint velocity limit(整体缩放) + qdot_des = applyJointVelocityLimits(qdot_des); + + // 6) joint acceleration limit(相对 measured qdot 整体缩放) + const Eigen::Map qdot_meas_vec(qdot_measured.data(), chain_v_dof_); + qdot_des = applyJointAccelerationLimits(qdot_des, qdot_meas_vec, dt); + + // 7) 输出 + qdot_cmd.resize(chain_v_dof_); + for (int i = 0; i < chain_v_dof_; ++i) { + qdot_cmd[i] = qdot_des[i]; + } + + speedl_prev_qdot_cmd_.assign(qdot_cmd.begin(), qdot_cmd.end()); + + // 8) 回算 executed twist(base) + speedl_twist_executed_base_ = J_base * qdot_des; + + return true; +} + +bool PinocchioDlsIKSolver::speedLStep(const Eigen::Matrix& target_twist, + double dt, + const std::vector& q_measured, + std::vector& qdot_cmd, + CartesianFrame input_frame, + bool is_tcp) +{ + if (!initialized_) { + std::cerr << "[PinocchioDlsIKSolver] speedLStep(q-only) failed: solver not initialized\n"; + return false; + } + if (!speedl_configured_) { + std::cerr << "[PinocchioDlsIKSolver] speedLStep(q-only) failed: speedL not configured\n"; + return false; + } + if (dt <= 0.0) { + std::cerr << "[PinocchioDlsIKSolver] speedLStep(q-only) failed: invalid dt\n"; + return false; + } + if (static_cast(q_measured.size()) != chain_dof_) { + std::cerr << "[PinocchioDlsIKSolver] speedLStep(q-only) failed: q_measured size mismatch\n"; + return false; + } + + std::vector qdot_measured(chain_v_dof_, 0.0); + if (static_cast(speedl_prev_qdot_cmd_.size()) == chain_v_dof_) { + qdot_measured = speedl_prev_qdot_cmd_; + } + + return speedLStep(target_twist, + dt, + q_measured, + qdot_measured, + qdot_cmd, + input_frame, + is_tcp); +} + +bool PinocchioDlsIKSolver::speedLStep(const Eigen::Matrix& target_twist, + double dt, + std::vector& qdot_cmd, + CartesianFrame input_frame, + bool is_tcp) +{ + if (!initialized_) { + std::cerr << "[PinocchioDlsIKSolver] speedLStep(open-loop) failed: solver not initialized\n"; + return false; + } + if (!speedl_configured_) { + std::cerr << "[PinocchioDlsIKSolver] speedLStep(open-loop) failed: speedL not configured\n"; + return false; + } + if (dt <= 0.0) { + std::cerr << "[PinocchioDlsIKSolver] speedLStep(open-loop) failed: invalid dt\n"; + return false; + } + if (static_cast(cur_joints_angle_.size()) != chain_dof_) { + std::cerr << "[PinocchioDlsIKSolver] speedLStep(open-loop) failed: current joints not initialized\n"; + return false; + } + if (chain_dof_ != chain_v_dof_) { + std::cerr << "[PinocchioDlsIKSolver] speedLStep(open-loop) failed: internal q += qdot * dt propagation requires chain_dof == chain_v_dof_\n"; + return false; + } + + std::vector q_measured = cur_joints_angle_; + const bool ok = speedLStep(target_twist, + dt, + q_measured, + qdot_cmd, + input_frame, + is_tcp); + if (!ok) { + return false; + } + if (static_cast(qdot_cmd.size()) != chain_v_dof_) { + std::cerr << "[PinocchioDlsIKSolver] speedLStep(open-loop) failed: qdot_cmd size mismatch after closed-loop solve\n"; + return false; + } + + Eigen::Map q_chain(cur_joints_angle_.data(), chain_dof_); + const Eigen::Map qdot_cmd_vec(qdot_cmd.data(), chain_v_dof_); + q_chain += qdot_cmd_vec * dt; + + if (joint_pos_lower_limits_.size() == chain_dof_ && + joint_pos_upper_limits_.size() == chain_dof_) { + q_chain = q_chain.cwiseMax(joint_pos_lower_limits_).cwiseMin(joint_pos_upper_limits_); + } + + return true; +} } // namespace cmvr diff --git a/cmvr-es/ik_solver/src/srs_ik_test.cpp b/cmvr-es/ik_solver/src/srs_ik_test.cpp index 9359db10..4ee03407 100644 --- a/cmvr-es/ik_solver/src/srs_ik_test.cpp +++ b/cmvr-es/ik_solver/src/srs_ik_test.cpp @@ -7,18 +7,26 @@ #include "ik_solver/include/bias_srs_ik_slover.h" #include "ik_solver/include/joints_limit_analyzer.h" #include "ik_solver/include/opt_psi_selector.h" -#include -#include -#include +#include +#include +#include +#include #include +#include +#include +#include +#include +#include +#include +#include #include "ik_solver/include/lawba_ik_solver.h" #include "simulate/mujoco/mujoco_viewer/include/mujoco_viewer.h" -#include "common/utils/math/support_functions.h" #include "planner/joint_space_planner/include/toppra_bspline.h" #include "planner/joint_space_planner/include/joint_space_planner_creator.h" -#include "common/utils/math/support_functions.h" +#include "common/math/include/support_functions.h" #include "ik_solver/include/pinocchio_qp_ik_solver.h" +#include using namespace cmvr; @@ -81,56 +89,118 @@ static std::filesystem::path find_project_root() { class DualArmViewer : public MuJocoViewer { public: using Vec7 = std::vector; + enum class ControlMode { + PositionHold, + VelocityHold + }; explicit DualArmViewer(const char *model_path) : MuJocoViewer(model_path), - q_cmd_(7, 0.0) {} + q_cmd_(7, 0.0), + qd_cmd_(7, 0.0), + q_meas_(7, 0.0), + qd_meas_(7, 0.0) {} void moveJ(const Vec7 &q_target) { std::lock_guard lk(mtx_); q_cmd_ = q_target; - traj_active_ = false; + qd_cmd_.assign(7, 0.0); + control_mode_ = ControlMode::PositionHold; } - // 设置整条轨迹(t 单调递增,q.size == t.size) - void setTrajectory(std::vector t, std::vector q) { + void speedJ(const Vec7 &qd_target) { std::lock_guard lk(mtx_); - traj_t_ = std::move(t); - traj_q_ = std::move(q); - traj_active_ = false; - traj_done_ = false; - traj_idx_ = 0; - traj_t0_sim_ = -1.0; + qd_cmd_ = qd_target; + control_mode_ = ControlMode::VelocityHold; } - void startTrajectory() { + Vec7 getQ() const { std::lock_guard lk(mtx_); - traj_active_ = true; - traj_done_ = false; - traj_idx_ = 0; - traj_t0_sim_ = -1.0; + return q_meas_; } - bool trajDone() const { + Vec7 getQd() const { std::lock_guard lk(mtx_); - return traj_done_; + return qd_meas_; + } + + void getJointState(Vec7& q, Vec7& qd) const { + std::lock_guard lk(mtx_); + q = q_meas_; + qd = qd_meas_; + } + + bool getTcpTwistState(Eigen::Vector3d& position, + Eigen::Vector3d& linear_velocity, + Eigen::Vector3d& angular_velocity) const { + std::lock_guard lk(mtx_); + if (tcp_site_id_ < 0) { + return false; + } + position = tcp_pos_meas_; + linear_velocity = tcp_vel_meas_; + angular_velocity = tcp_omega_meas_; + return true; + } + + bool getTcpLinearState(Eigen::Vector3d& position, Eigen::Vector3d& velocity) const { + std::lock_guard lk(mtx_); + if (tcp_site_id_ < 0) { + return false; + } + position = tcp_pos_meas_; + velocity = tcp_vel_meas_; + return true; } protected: + static constexpr int kLeftPositionActuatorGroup = 0; + static constexpr int kLeftVelocityActuatorGroup = 1; + static constexpr int kRightPositionActuatorGroup = 2; + static constexpr int kRightVelocityActuatorGroup = 3; + void initOnce(mjModel *m, mjData *d) override { UNUSED_VARIABLE(d); - const char *act_names[7] = { + const char *pos_act_names[7] = { "R_SHOULDER_P_pos","R_SHOULDER_R_pos","R_SHOULDER_Y_pos", "R_ELBOW_R_pos","R_WRIST_P_pos","R_WRIST_Y_pos","R_WRIST_R_pos" }; + const char *vel_act_names[7] = { + "R_SHOULDER_P_vel","R_SHOULDER_R_vel","R_SHOULDER_Y_vel", + "R_ELBOW_R_vel","R_WRIST_P_vel","R_WRIST_Y_vel","R_WRIST_R_vel" + }; + const char *joint_names[7] = { + "R_SHOULDER_P","R_SHOULDER_R","R_SHOULDER_Y", + "R_ELBOW_R","R_WRIST_P","R_WRIST_Y","R_WRIST_R" + }; for (int i = 0; i < 7; ++i) { - int act_id = mj_name2id(m, mjOBJ_ACTUATOR, act_names[i]); - right_act_ids_[i] = act_id; - if (act_id < 0) { - std::cerr << "[DualArmViewer] actuator not found: " << act_names[i] << "\n"; + const int pos_act_id = mj_name2id(m, mjOBJ_ACTUATOR, pos_act_names[i]); + right_pos_act_ids_[i] = pos_act_id; + if (pos_act_id < 0) { + std::cerr << "[DualArmViewer] position actuator not found: " + << pos_act_names[i] << "\n"; } + + const int vel_act_id = mj_name2id(m, mjOBJ_ACTUATOR, vel_act_names[i]); + right_vel_act_ids_[i] = vel_act_id; + if (vel_act_id < 0) { + std::cerr << "[DualArmViewer] velocity actuator not found: " + << vel_act_names[i] << "\n"; + } + + const int joint_id = mj_name2id(m, mjOBJ_JOINT, joint_names[i]); + right_qpos_ids_[i] = (joint_id >= 0) ? m->jnt_qposadr[joint_id] : -1; + right_qvel_ids_[i] = (joint_id >= 0) ? m->jnt_dofadr[joint_id] : -1; + if (joint_id < 0) { + std::cerr << "[DualArmViewer] joint not found: " << joint_names[i] << "\n"; + } + } + + tcp_site_id_ = mj_name2id(m, mjOBJ_SITE, "R_FINGER_TIP_SITE"); + if (tcp_site_id_ < 0) { + std::cerr << "[DualArmViewer] tcp site not found: R_FINGER_TIP_SITE\n"; } act_ids_inited_ = true; } @@ -139,68 +209,93 @@ protected: return std::max(lo, std::min(hi, x)); } - // 线性插值采样(调用前已持锁) - Vec7 sampleTrajUnlocked(double t) { - Vec7 out = q_cmd_; - - if (traj_t_.empty() || traj_q_.empty()) return out; - if (traj_t_.size() != traj_q_.size()) return out; - - const double T = traj_t_.back(); - if (t <= 0.0) return traj_q_.front(); - if (t >= T) return traj_q_.back(); - - // 利用 traj_idx_ 单调推进,O(1) 均摊 - while (traj_idx_ + 1 < traj_t_.size() && traj_t_[traj_idx_ + 1] < t) { - traj_idx_++; - } - - size_t i = traj_idx_; - size_t j = i + 1; - if (j >= traj_t_.size()) return traj_q_.back(); - - double t0 = traj_t_[i], t1 = traj_t_[j]; - double u = (t - t0) / std::max(1e-12, (t1 - t0)); - - out.resize(7); - for (int k = 0; k < 7; ++k) { - out[k] = (1.0 - u) * traj_q_[i][k] + u * traj_q_[j][k]; - } - return out; - } - void controlCallback(mjModel *m, mjData *d) override { if (!act_ids_inited_) return; Vec7 q_local(7, 0.0); + Vec7 qd_local(7, 0.0); + ControlMode mode_local = ControlMode::PositionHold; { std::lock_guard lk(mtx_); - - if (traj_active_ && !traj_t_.empty()) { - if (traj_t0_sim_ < 0.0) traj_t0_sim_ = d->time; // 用仿真时间对齐 - const double t = d->time - traj_t0_sim_; - - q_local = sampleTrajUnlocked(t); - - if (t >= traj_t_.back()) { - traj_active_ = false; - traj_done_ = true; - q_cmd_ = traj_q_.back(); // 结束后保持终点 - } - } else { + mode_local = control_mode_; + if (control_mode_ == ControlMode::PositionHold) { q_local = q_cmd_; + } else { + qd_local = qd_cmd_; } } - // 写 ctrl(同时按 ctrlrange clamp 一下更稳) - for (int i = 0; i < 7; ++i) { - int act_id = right_act_ids_[i]; - if (act_id < 0) continue; + int disable_mask = (1 << kLeftVelocityActuatorGroup); + if (mode_local == ControlMode::PositionHold) { + disable_mask |= (1 << kRightVelocityActuatorGroup); + } else { + disable_mask |= (1 << kRightPositionActuatorGroup); + } + m->opt.disableactuator = disable_mask; - double lo = m->actuator_ctrlrange[2*act_id + 0]; - double hi = m->actuator_ctrlrange[2*act_id + 1]; - d->ctrl[act_id] = clamp(q_local[i], lo, hi); + Vec7 q_meas(7, 0.0); + Vec7 qd_meas(7, 0.0); + for (int i = 0; i < 7; ++i) { + const int qpos_id = right_qpos_ids_[i]; + if (qpos_id >= 0) { + q_meas[i] = d->qpos[qpos_id]; + } + const int qvel_id = right_qvel_ids_[i]; + if (qvel_id >= 0) { + qd_meas[i] = d->qvel[qvel_id]; + } + } + + Eigen::Vector3d tcp_pos = Eigen::Vector3d::Zero(); + Eigen::Vector3d tcp_vel = Eigen::Vector3d::Zero(); + Eigen::Vector3d tcp_omega = Eigen::Vector3d::Zero(); + if (tcp_site_id_ >= 0) { + const mjtNum* site_xpos = d->site_xpos + 3 * tcp_site_id_; + tcp_pos = Eigen::Vector3d(site_xpos[0], site_xpos[1], site_xpos[2]); + + mjtNum site_vel[6] = {0, 0, 0, 0, 0, 0}; + mj_objectVelocity(m, d, mjOBJ_SITE, tcp_site_id_, site_vel, 0); + tcp_omega = Eigen::Vector3d(site_vel[0], site_vel[1], site_vel[2]); + tcp_vel = Eigen::Vector3d(site_vel[3], site_vel[4], site_vel[5]); + } + + { + std::lock_guard lk(mtx_); + q_meas_ = q_meas; + qd_meas_ = qd_meas; + tcp_pos_meas_ = tcp_pos; + tcp_vel_meas_ = tcp_vel; + tcp_omega_meas_ = tcp_omega; + } + + for (int i = 0; i < 7; ++i) { + const int pos_act_id = right_pos_act_ids_[i]; + const int vel_act_id = right_vel_act_ids_[i]; + + if (mode_local == ControlMode::PositionHold) { + if (pos_act_id >= 0) { + const double lo = m->actuator_ctrlrange[2 * pos_act_id + 0]; + const double hi = m->actuator_ctrlrange[2 * pos_act_id + 1]; + d->ctrl[pos_act_id] = clamp(q_local[i], lo, hi); + } + if (vel_act_id >= 0) { + const double lo = m->actuator_ctrlrange[2 * vel_act_id + 0]; + const double hi = m->actuator_ctrlrange[2 * vel_act_id + 1]; + d->ctrl[vel_act_id] = clamp(0.0, lo, hi); + } + } else { + if (pos_act_id >= 0) { + const double lo = m->actuator_ctrlrange[2 * pos_act_id + 0]; + const double hi = m->actuator_ctrlrange[2 * pos_act_id + 1]; + d->ctrl[pos_act_id] = clamp(q_meas[i], lo, hi); + } + if (vel_act_id >= 0) { + const double lo = m->actuator_ctrlrange[2 * vel_act_id + 0]; + const double hi = m->actuator_ctrlrange[2 * vel_act_id + 1]; + d->ctrl[vel_act_id] = clamp(qd_local[i], lo, hi); + } + } } } @@ -209,28 +304,32 @@ protected: UNUSED_VARIABLE(d); std::lock_guard lk(mtx_); q_cmd_.assign(7, 0.0); - traj_active_ = false; - traj_done_ = false; - traj_idx_ = 0; - traj_t0_sim_ = -1.0; - traj_t_.clear(); - traj_q_.clear(); + qd_cmd_.assign(7, 0.0); + q_meas_.assign(7, 0.0); + qd_meas_.assign(7, 0.0); + tcp_pos_meas_.setZero(); + tcp_vel_meas_.setZero(); + tcp_omega_meas_.setZero(); + control_mode_ = ControlMode::PositionHold; } private: - std::array right_act_ids_{}; + std::array right_pos_act_ids_{}; + std::array right_vel_act_ids_{}; + std::array right_qpos_ids_{}; + std::array right_qvel_ids_{}; + int tcp_site_id_{-1}; bool act_ids_inited_{false}; mutable std::mutex mtx_; Vec7 q_cmd_; - - // trajectory - std::vector traj_t_; - std::vector traj_q_; - bool traj_active_{false}; - bool traj_done_{false}; - size_t traj_idx_{0}; - double traj_t0_sim_{-1.0}; + Vec7 qd_cmd_; + Vec7 q_meas_; + Vec7 qd_meas_; + Eigen::Vector3d tcp_pos_meas_{Eigen::Vector3d::Zero()}; + Eigen::Vector3d tcp_vel_meas_{Eigen::Vector3d::Zero()}; + Eigen::Vector3d tcp_omega_meas_{Eigen::Vector3d::Zero()}; + ControlMode control_mode_{ControlMode::PositionHold}; }; @@ -1017,6 +1116,60 @@ static void write_qtraj_csv(const std::string& path, } } +static void write_twist_trace_csv( + const std::string& path, + const std::vector& t, + const std::vector>& twist) +{ + using Twist = Eigen::Matrix; + const size_t N = std::min(t.size(), twist.size()); + std::vector acceleration(N, Twist::Zero()); + std::vector jerk(N, Twist::Zero()); + + auto safe_dt = [](double dt) { + return (dt > 1e-9) ? dt : 1e-9; + }; + + if (N >= 2) { + const double dt0 = safe_dt(t[1] - t[0]); + acceleration[0] = (twist[1] - twist[0]) / dt0; + + for (size_t i = 1; i + 1 < N; ++i) { + const double dt_c = safe_dt(t[i + 1] - t[i - 1]); + acceleration[i] = (twist[i + 1] - twist[i - 1]) / dt_c; + } + + const double dtn = safe_dt(t[N - 1] - t[N - 2]); + acceleration[N - 1] = (twist[N - 1] - twist[N - 2]) / dtn; + } + + if (N >= 2) { + const double dt0 = safe_dt(t[1] - t[0]); + jerk[0] = (acceleration[1] - acceleration[0]) / dt0; + + for (size_t i = 1; i + 1 < N; ++i) { + const double dt_c = safe_dt(t[i + 1] - t[i - 1]); + jerk[i] = (acceleration[i + 1] - acceleration[i - 1]) / dt_c; + } + + const double dtn = safe_dt(t[N - 1] - t[N - 2]); + jerk[N - 1] = (acceleration[N - 1] - acceleration[N - 2]) / dtn; + } + + std::ofstream os(path); + os << "t," + "vx,vy,vz,wx,wy,wz," + "ax,ay,az,alphax,alphay,alphaz," + "jx,jy,jz,jalphax,jalphay,jalphaz\n"; + for (size_t i = 0; i < N; ++i) { + os << std::setprecision(15) << t[i]; + for (int k = 0; k < 6; ++k) os << "," << twist[i][k]; + for (int k = 0; k < 6; ++k) os << "," << acceleration[i][k]; + for (int k = 0; k < 6; ++k) os << "," << jerk[i][k]; + os << "\n"; + } +} + static void print_tcp_speed_stats(cmvr::PinocchioDlsIKSolver& solver, const std::vector& t, const std::vector>& q, @@ -1096,6 +1249,7 @@ TEST(SRS_IK_TEST, MOVEL_S_CURVE_LOCAL_RUN_MUJOCO) { // std::vector q_start = {-0.424743, 0.759386, 1.80129, 2.03728, -1.34668, 0.0560845, -0.26}; std::vector q_start = {0.25, 1.00, M_PI / 2, M_PI / 2, -M_PI / 2, 0, 0}; // std::vector q_start = {0, 1.00, M_PI / 2, M_PI / 2, -M_PI / 2, 0, 0}; + // viewer.moveJ(q_start); // 起点位姿(base下) @@ -1106,15 +1260,15 @@ TEST(SRS_IK_TEST, MOVEL_S_CURVE_LOCAL_RUN_MUJOCO) { // 目标位姿:base X 方向走 0.25m,姿态保持起点 Eigen::Matrix4d Tg = T0; - Tg(0,3) += 0.1; - // Tg(2,3) += 0.3; + // Tg(0,3) += 0.2; + Tg(2,3) += 0.2; Eigen::Vector3d dp_check = Tg.block<3,1>(0,3) - T0.block<3,1>(0,3); std::cerr << "dp(base)=" << dp_check.transpose() << "\n"; // 轨迹生成参数(生成 dt 不必极小,1ms~2ms 足够;真正平滑靠 S 曲线 + MuJoCo 伺服滤波) const double dt_gen = 0.002; - const double v_tcp = 1.0; - const double a_tcp = 10.0; + const double v_tcp = 0.2; + const double a_tcp = 5.0; const double j_tcp = 100.00; std::vector qd_max(7, 3.0); @@ -1145,17 +1299,13 @@ TEST(SRS_IK_TEST, MOVEL_S_CURVE_LOCAL_RUN_MUJOCO) { // 正确的 TCP 速度统计(用 t_traj) print_tcp_speed_stats(solver, t_traj, q_traj, true); - // 把轨迹交给 viewer:在 controlCallback 内用 d->time 插值执行(不会线程抖) - std::vector q7; - q7.reserve(q_traj.size()); - for (auto& qi : q_traj) q7.push_back(qi); - - viewer.setTrajectory(t_traj, std::move(q7)); - viewer.startTrajectory(); - - // 可选:等轨迹跑完再退出线程 - while (!viewer.trajDone()) { - std::this_thread::sleep_for(1ms); + // 直接按采样时刻逐点下发位置目标,不在 viewer 内做轨迹缓存和插值。 + const auto t0 = std::chrono::steady_clock::now(); + for (size_t i = 0; i < q_traj.size(); ++i) { + std::this_thread::sleep_until( + t0 + std::chrono::duration_cast( + std::chrono::duration(t_traj[i]))); + viewer.moveJ(q_traj[i]); } std::cerr << "trajectory finished in MuJoCo.\n"; }); @@ -1163,3 +1313,531 @@ TEST(SRS_IK_TEST, MOVEL_S_CURVE_LOCAL_RUN_MUJOCO) { viewer.run(); ctrl_thread.join(); } + + +TEST(SRS_IK_TEST, SPEEDJ_RUN_MUJOCO) { + std::cerr.setf(std::ios::unitbuf); + + const auto project_root = find_project_root(); + const auto model_path = (project_root / "model/xiaoyan_description/dual_arm.xml").string(); + + DualArmViewer viewer(model_path.c_str()); + bool ctrl_ok = true; + std::string failure_msg; + double joint_delta = 0.0; + double settle_drift = 0.0; + + std::thread ctrl_thread([&]() { + using namespace std::chrono_literals; + + auto fail = [&](const std::string& msg) { + ctrl_ok = false; + failure_msg = msg; + std::cerr << msg << "\n"; + }; + + std::this_thread::sleep_for(3s); + + std::vector q_start = {0.25, 1.00, M_PI / 2, M_PI / 2, -M_PI / 2, 0, 0}; + viewer.moveJ(q_start); + std::this_thread::sleep_for(2s); + + const auto q0 = viewer.getQ(); + if (q0.size() != 7) { + fail("invalid q0 size"); + return; + } + + std::vector qd_cmd(7, 0.0); + qd_cmd[0] = 0.2; // 只测 0 号关节 + + viewer.speedJ(qd_cmd); + std::this_thread::sleep_for(2s); + + const auto q1 = viewer.getQ(); + if (q1.size() != 7) { + fail("invalid q1 size"); + return; + } + + viewer.speedJ(std::vector(7, 0.0)); + std::this_thread::sleep_for(1s); + + const auto q2 = viewer.getQ(); + if (q2.size() != 7) { + fail("invalid q2 size"); + return; + } + + viewer.moveJ(q2); // 切回位置保持 + + joint_delta = q1[0] - q0[0]; + settle_drift = std::abs(q2[0] - q1[0]); + + std::cerr << "q0[0]=" << q0[0] + << " q1[0]=" << q1[0] + << " q2[0]=" << q2[0] + << " joint_delta=" << joint_delta + << " settle_drift=" << settle_drift << "\n"; + }); + + viewer.run(); + ctrl_thread.join(); + + ASSERT_TRUE(ctrl_ok) << failure_msg; + EXPECT_GT(joint_delta, 0.1); + EXPECT_LT(settle_drift, 0.05); +} + +TEST(SRS_IK_TEST, SPEEDL_RUN_MUJOCO) { + std::cerr.setf(std::ios::unitbuf); + + const auto project_root = find_project_root(); + const auto model_path = (project_root / "model/xiaoyan_description/dual_arm.xml").string(); + const auto urdf_path = (project_root / "model/xiaoyan_description/dual_arm.urdf").string(); + + DualArmViewer viewer(model_path.c_str()); + bool ctrl_ok = true; + std::string failure_msg; + bool has_exec_samples = false; + double max_exec_linear_yz = 0.0; + double min_exec_vx = std::numeric_limits::infinity(); + double max_exec_vx = -std::numeric_limits::infinity(); + double min_abs_vx_before_reverse = std::numeric_limits::infinity(); + bool saw_negative_after_reverse = false; + double final_exec_linear_speed = std::numeric_limits::infinity(); + std::vector tcp_time; + std::vector tcp_position; + std::vector tcp_velocity; + std::vector tcp_angular_velocity; + std::vector cmd_tcp_position; + std::vector cmd_tcp_velocity; + std::vector cmd_tcp_angular_velocity; + bool tcp_trace_ok = false; + + std::thread ctrl_thread([&]() { + using namespace std::chrono_literals; + std::this_thread::sleep_for(3s); + + auto fail = [&](const std::string& msg) { + ctrl_ok = false; + failure_msg = msg; + std::cerr << msg << "\n"; + }; + + cmvr::PinocchioDlsIKSolver solver( + urdf_path, + "PELVIS_S", + "R_WRIST_R_S", + "R_FINGER_TIP_FIXED" + ); + if (!solver.init()) { + fail("speedL test: solver.init() failed"); + return; + } + + const double dt = 0.002; + const double segment_time = 1.5; + const double stop_time = 1.0; + const double settle_time = 1.0; + const double total_time = 2.0 * segment_time + stop_time; + const double linear_speed_cmd = 0.15; + const double max_q_ref_tracking_error = 0.15; + + std::vector q_start = {0.25, 1.00, M_PI / 2, M_PI / 2, -M_PI / 2, 0, 0}; + viewer.moveJ(q_start); + std::this_thread::sleep_for(1s); + + const std::vector q_init = viewer.getQ(); + solver.update_joints_state(q_init); + std::vector q_ref = q_init; + + cmvr::PinocchioDlsIKSolver::SpeedLConfig speedl_config; + speedl_config.linear_velocity_max = 0.55; + speedl_config.linear_acceleration_max = 0.80; + speedl_config.linear_jerk_max = 3.30; + speedl_config.angular_velocity_max = 1.00; + speedl_config.angular_acceleration_max = 3.00; + speedl_config.angular_jerk_max = 12.0; + speedl_config.joint_acceleration_max = std::vector(7, 8.0); + speedl_config.linear_target_replan_threshold = 1e-4; + speedl_config.angular_target_replan_threshold = 1e-4; + speedl_config.linear_reverse_cos_threshold = -0.8660254037844386; + speedl_config.linear_reverse_switch_speed_threshold = 1e-3; + // speedl_config.qdot_measurement_lowpass_alpha = 0.5; + if (!solver.configureSpeedL(speedl_config)) { + fail("speedL test: configureSpeedL() failed"); + return; + } + + std::vector> q_traj; + std::vector t_traj; + std::vector> twist_cmd_traj; + std::vector tcp_pos_traj; + std::vector tcp_vel_traj; + std::vector tcp_omega_traj; + + const size_t reserve_count = + static_cast(std::ceil((total_time + settle_time) / dt)) + 8; + q_traj.reserve(reserve_count); + t_traj.reserve(reserve_count); + twist_cmd_traj.reserve(reserve_count); + tcp_pos_traj.reserve(reserve_count); + tcp_vel_traj.reserve(reserve_count); + tcp_omega_traj.reserve(reserve_count); + + auto record_sample = [&](double t_sample, + const std::vector& q_sample) -> bool { + q_traj.push_back(q_sample); + t_traj.push_back(t_sample); + twist_cmd_traj.push_back(solver.getSpeedLCommandTwistBase()); + const auto twist_exec = solver.getSpeedLExecutedTwistBase(); + + Eigen::Vector3d tcp_pos = Eigen::Vector3d::Zero(); + Eigen::Vector3d tcp_vel = Eigen::Vector3d::Zero(); + Eigen::Vector3d tcp_omega = Eigen::Vector3d::Zero(); + if (!viewer.getTcpTwistState(tcp_pos, tcp_vel, tcp_omega)) { + fail("speedL test: failed to read TCP state from MuJoCo"); + return false; + } + tcp_pos_traj.push_back(tcp_pos); + tcp_vel_traj.push_back(tcp_vel); + tcp_omega_traj.push_back(tcp_omega); + + has_exec_samples = true; + max_exec_linear_yz = std::max(max_exec_linear_yz, + std::hypot(twist_exec[1], twist_exec[2])); + min_exec_vx = std::min(min_exec_vx, twist_exec[0]); + max_exec_vx = std::max(max_exec_vx, twist_exec[0]); + final_exec_linear_speed = twist_exec.head<3>().norm(); + if (t_sample >= segment_time && !saw_negative_after_reverse) { + min_abs_vx_before_reverse = + std::min(min_abs_vx_before_reverse, std::abs(twist_exec[0])); + if (twist_exec[0] < -1e-4) { + saw_negative_after_reverse = true; + } + } + return true; + }; + + const auto t0 = std::chrono::steady_clock::now(); + const size_t active_steps = static_cast(std::ceil(total_time / dt)); + for (size_t i = 0; i < active_steps; ++i) { + const double t = static_cast(i) * dt; + std::this_thread::sleep_until( + t0 + std::chrono::duration_cast( + std::chrono::duration(t))); + + std::vector q_meas; + std::vector qd_meas; + viewer.getJointState(q_meas, qd_meas); + Eigen::Matrix target_twist = + Eigen::Matrix::Zero(); + if (t < segment_time) { + target_twist[5] = -linear_speed_cmd; + } else if (t < 2.0 * segment_time) { + target_twist[5] = linear_speed_cmd; + } else { + target_twist.setZero(); + } + + std::vector qd_cmd; + if (!solver.speedLStep(target_twist, + dt, + q_meas, + qd_cmd, + cmvr::CartesianFrame::Base, + true)) { + viewer.moveJ(q_meas); + fail("speedL test: speedLStep() failed"); + return; + } + + if (q_ref.size() != q_meas.size()) { + q_ref = q_meas; + } + for (size_t j = 0; j < q_ref.size() && j < qd_cmd.size(); ++j) { + q_ref[j] += qd_cmd[j] * dt; + q_ref[j] = std::max(q_meas[j] - max_q_ref_tracking_error, + std::min(q_ref[j], q_meas[j] + max_q_ref_tracking_error)); + } + viewer.moveJ(q_ref); + if (!record_sample(t, q_meas)) { + return; + } + } + + const size_t settle_steps = static_cast(std::ceil(settle_time / dt)); + for (size_t i = 0; i < settle_steps; ++i) { + const double t = total_time + static_cast(i) * dt; + std::this_thread::sleep_until( + t0 + std::chrono::duration_cast( + std::chrono::duration(t))); + + std::vector q_meas; + std::vector qd_meas; + viewer.getJointState(q_meas, qd_meas); + const Eigen::Matrix target_twist = + Eigen::Matrix::Zero(); + + std::vector qd_cmd; + if (!solver.speedLStep(target_twist, + dt, + q_meas, + qd_cmd, + cmvr::CartesianFrame::Base, + true)) { + viewer.moveJ(q_meas); + fail("speedL test: speedLStep() failed during stop phase"); + return; + } + + if (q_ref.size() != q_meas.size()) { + q_ref = q_meas; + } + for (size_t j = 0; j < q_ref.size() && j < qd_cmd.size(); ++j) { + q_ref[j] += qd_cmd[j] * dt; + q_ref[j] = std::max(q_meas[j] - max_q_ref_tracking_error, + std::min(q_ref[j], q_meas[j] + max_q_ref_tracking_error)); + } + viewer.moveJ(q_ref); + if (!record_sample(t, q_meas)) { + return; + } + } + + viewer.moveJ(viewer.getQ()); + + std::cerr << "speedL samples=" << q_traj.size() + << " T=" << (t_traj.empty() ? 0.0 : t_traj.back()) << "s\n"; + + if (!tcp_pos_traj.empty() && + tcp_pos_traj.size() == t_traj.size() && + tcp_vel_traj.size() == t_traj.size() && + tcp_omega_traj.size() == t_traj.size()) { + tcp_time = t_traj; + tcp_position = std::move(tcp_pos_traj); + tcp_velocity = std::move(tcp_vel_traj); + tcp_angular_velocity = std::move(tcp_omega_traj); + cmd_tcp_position.assign(tcp_time.size(), Eigen::Vector3d::Zero()); + cmd_tcp_velocity.assign(tcp_time.size(), Eigen::Vector3d::Zero()); + cmd_tcp_angular_velocity.assign(tcp_time.size(), Eigen::Vector3d::Zero()); + if (!tcp_time.empty() && twist_cmd_traj.size() == tcp_time.size()) { + cmd_tcp_position[0] = tcp_position[0]; + cmd_tcp_velocity[0] = twist_cmd_traj[0].head<3>(); + cmd_tcp_angular_velocity[0] = twist_cmd_traj[0].tail<3>(); + for (size_t i = 1; i < tcp_time.size(); ++i) { + const double dt_sample = std::max(1e-9, tcp_time[i] - tcp_time[i - 1]); + cmd_tcp_velocity[i] = twist_cmd_traj[i].head<3>(); + cmd_tcp_angular_velocity[i] = twist_cmd_traj[i].tail<3>(); + cmd_tcp_position[i] = cmd_tcp_position[i - 1] + + 0.5 * (cmd_tcp_velocity[i - 1] + + cmd_tcp_velocity[i]) * dt_sample; + } + } + tcp_trace_ok = true; + } else { + std::cerr << "failed to collect TCP state from MuJoCo\n"; + } + + std::cerr << "speedL exec stats: max|vyz|=" << max_exec_linear_yz + << " max_vx=" << max_exec_vx + << " min_vx=" << min_exec_vx << "\n"; + + std::cerr << "speedL finished in MuJoCo.\n"; + }); + + viewer.run(); + ctrl_thread.join(); + if (tcp_trace_ok && + !tcp_time.empty() && + tcp_position.size() == tcp_time.size() && + tcp_velocity.size() == tcp_time.size() && + tcp_angular_velocity.size() == tcp_time.size() && + cmd_tcp_angular_velocity.size() == tcp_time.size()) { + std::vector tcp_x; + std::vector tcp_y; + std::vector tcp_z; + std::vector tcp_vx; + std::vector tcp_vy; + std::vector tcp_vz; + std::vector tcp_wx; + std::vector tcp_wy; + std::vector tcp_wz; + std::vector tcp_speed; + std::vector cmd_x; + std::vector cmd_y; + std::vector cmd_z; + std::vector cmd_vx; + std::vector cmd_vy; + std::vector cmd_vz; + std::vector cmd_wx; + std::vector cmd_wy; + std::vector cmd_wz; + std::vector cmd_speed; + tcp_x.reserve(tcp_time.size()); + tcp_y.reserve(tcp_time.size()); + tcp_z.reserve(tcp_time.size()); + tcp_vx.reserve(tcp_time.size()); + tcp_vy.reserve(tcp_time.size()); + tcp_vz.reserve(tcp_time.size()); + tcp_wx.reserve(tcp_time.size()); + tcp_wy.reserve(tcp_time.size()); + tcp_wz.reserve(tcp_time.size()); + tcp_speed.reserve(tcp_time.size()); + cmd_x.reserve(tcp_time.size()); + cmd_y.reserve(tcp_time.size()); + cmd_z.reserve(tcp_time.size()); + cmd_vx.reserve(tcp_time.size()); + cmd_vy.reserve(tcp_time.size()); + cmd_vz.reserve(tcp_time.size()); + cmd_wx.reserve(tcp_time.size()); + cmd_wy.reserve(tcp_time.size()); + cmd_wz.reserve(tcp_time.size()); + cmd_speed.reserve(tcp_time.size()); + for (size_t i = 0; i < tcp_time.size(); ++i) { + tcp_x.push_back(tcp_position[i].x()); + tcp_y.push_back(tcp_position[i].y()); + tcp_z.push_back(tcp_position[i].z()); + tcp_vx.push_back(tcp_velocity[i].x()); + tcp_vy.push_back(tcp_velocity[i].y()); + tcp_vz.push_back(tcp_velocity[i].z()); + tcp_wx.push_back(tcp_angular_velocity[i].x()); + tcp_wy.push_back(tcp_angular_velocity[i].y()); + tcp_wz.push_back(tcp_angular_velocity[i].z()); + tcp_speed.push_back(tcp_velocity[i].norm()); + cmd_x.push_back(cmd_tcp_position[i].x()); + cmd_y.push_back(cmd_tcp_position[i].y()); + cmd_z.push_back(cmd_tcp_position[i].z()); + cmd_vx.push_back(cmd_tcp_velocity[i].x()); + cmd_vy.push_back(cmd_tcp_velocity[i].y()); + cmd_vz.push_back(cmd_tcp_velocity[i].z()); + cmd_wx.push_back(cmd_tcp_angular_velocity[i].x()); + cmd_wy.push_back(cmd_tcp_angular_velocity[i].y()); + cmd_wz.push_back(cmd_tcp_angular_velocity[i].z()); + cmd_speed.push_back(cmd_tcp_velocity[i].norm()); + } + + using namespace matplot; + auto fig = figure(true); + fig->size(1600, 1450); + fig->font_size(16); + + auto ax_pos = subplot(fig, std::array{0.08f, 0.75f, 0.88f, 0.17f}); + hold(ax_pos, on); + auto line_x = plot(ax_pos, tcp_time, tcp_x); + line_x->line_width(2.0); + line_x->display_name("tcp x"); + auto line_y = plot(ax_pos, tcp_time, tcp_y); + line_y->line_width(2.0); + line_y->display_name("tcp y"); + auto line_z = plot(ax_pos, tcp_time, tcp_z); + line_z->line_width(2.0); + line_z->display_name("tcp z"); + auto cmd_line_x = plot(ax_pos, tcp_time, cmd_x); + cmd_line_x->line_width(2.0); + cmd_line_x->line_style("--"); + cmd_line_x->display_name("cmd x"); + auto cmd_line_y = plot(ax_pos, tcp_time, cmd_y); + cmd_line_y->line_width(2.0); + cmd_line_y->line_style("--"); + cmd_line_y->display_name("cmd y"); + auto cmd_line_z = plot(ax_pos, tcp_time, cmd_z); + cmd_line_z->line_width(2.0); + cmd_line_z->line_style("--"); + cmd_line_z->display_name("cmd z"); + title(ax_pos, "TCP Position"); + xlabel(ax_pos, "time [s]"); + ylabel(ax_pos, "position [m]"); + legend(ax_pos, std::vector{"tcp x", "tcp y", "tcp z", "cmd x", "cmd y", "cmd z"}); + grid(ax_pos, on); + + auto ax_vel = subplot(fig, std::array{0.08f, 0.52f, 0.88f, 0.17f}); + hold(ax_vel, on); + auto line_vx = plot(ax_vel, tcp_time, tcp_vx); + line_vx->line_width(2.0); + line_vx->display_name("tcp vx"); + auto line_vy = plot(ax_vel, tcp_time, tcp_vy); + line_vy->line_width(2.0); + line_vy->display_name("tcp vy"); + auto line_vz = plot(ax_vel, tcp_time, tcp_vz); + line_vz->line_width(2.0); + line_vz->display_name("tcp vz"); + auto cmd_line_vx = plot(ax_vel, tcp_time, cmd_vx); + cmd_line_vx->line_width(2.0); + cmd_line_vx->line_style("--"); + cmd_line_vx->display_name("cmd vx"); + auto cmd_line_vy = plot(ax_vel, tcp_time, cmd_vy); + cmd_line_vy->line_width(2.0); + cmd_line_vy->line_style("--"); + cmd_line_vy->display_name("cmd vy"); + auto cmd_line_vz = plot(ax_vel, tcp_time, cmd_vz); + cmd_line_vz->line_width(2.0); + cmd_line_vz->line_style("--"); + cmd_line_vz->display_name("cmd vz"); + title(ax_vel, "TCP Velocity"); + xlabel(ax_vel, "time [s]"); + ylabel(ax_vel, "velocity [m/s]"); + legend(ax_vel, std::vector{"tcp vx", "tcp vy", "tcp vz", "cmd vx", "cmd vy", "cmd vz"}); + grid(ax_vel, on); + + auto ax_ang = subplot(fig, std::array{0.08f, 0.29f, 0.88f, 0.17f}); + hold(ax_ang, on); + auto line_wx = plot(ax_ang, tcp_time, tcp_wx); + line_wx->line_width(2.0); + line_wx->display_name("tcp wx"); + auto line_wy = plot(ax_ang, tcp_time, tcp_wy); + line_wy->line_width(2.0); + line_wy->display_name("tcp wy"); + auto line_wz = plot(ax_ang, tcp_time, tcp_wz); + line_wz->line_width(2.0); + line_wz->display_name("tcp wz"); + auto cmd_line_wx = plot(ax_ang, tcp_time, cmd_wx); + cmd_line_wx->line_width(2.0); + cmd_line_wx->line_style("--"); + cmd_line_wx->display_name("cmd wx"); + auto cmd_line_wy = plot(ax_ang, tcp_time, cmd_wy); + cmd_line_wy->line_width(2.0); + cmd_line_wy->line_style("--"); + cmd_line_wy->display_name("cmd wy"); + auto cmd_line_wz = plot(ax_ang, tcp_time, cmd_wz); + cmd_line_wz->line_width(2.0); + cmd_line_wz->line_style("--"); + cmd_line_wz->display_name("cmd wz"); + title(ax_ang, "TCP Angular Velocity"); + xlabel(ax_ang, "time [s]"); + ylabel(ax_ang, "omega [rad/s]"); + legend(ax_ang, std::vector{"tcp wx", "tcp wy", "tcp wz", "cmd wx", "cmd wy", "cmd wz"}); + grid(ax_ang, on); + + auto ax_speed = subplot(fig, std::array{0.08f, 0.06f, 0.88f, 0.17f}); + hold(ax_speed, on); + auto line_speed = plot(ax_speed, tcp_time, tcp_speed); + line_speed->line_width(2.0); + line_speed->display_name("speed norm"); + auto cmd_line_speed = plot(ax_speed, tcp_time, cmd_speed); + cmd_line_speed->line_width(2.0); + cmd_line_speed->line_style("--"); + cmd_line_speed->display_name("cmd speed norm"); + title(ax_speed, "TCP Speed Norm"); + xlabel(ax_speed, "time [s]"); + ylabel(ax_speed, "speed [m/s]"); + legend(ax_speed, std::vector{"speed norm", "cmd speed norm"}); + grid(ax_speed, on); + + show(fig); + } + + ASSERT_TRUE(ctrl_ok) << failure_msg; + ASSERT_TRUE(has_exec_samples) << "speedL test did not record any executed twist sample"; + ASSERT_TRUE(tcp_trace_ok) << "speedL test failed to build TCP trace"; + EXPECT_GT(max_exec_vx, 0.03) << "speedL never accelerated to a meaningful +X command"; + EXPECT_LT(min_exec_vx, -0.03) << "speedL never switched to a meaningful -X command"; + EXPECT_LT(max_exec_linear_yz, 1e-3) << "speedL introduced unintended lateral linear twist"; + ASSERT_TRUE(std::isfinite(min_abs_vx_before_reverse)) + << "speedL never reached the reverse phase"; + EXPECT_LT(min_abs_vx_before_reverse, 0.01) + << "speedL changed sign before decelerating close enough to zero"; + EXPECT_LT(final_exec_linear_speed, 0.02) + << "speedL did not settle close enough to zero during stop phase"; +} diff --git a/cmvr-es/planner/CMakeLists.txt b/cmvr-es/planner/CMakeLists.txt index 3eb13754..65a400c5 100644 --- a/cmvr-es/planner/CMakeLists.txt +++ b/cmvr-es/planner/CMakeLists.txt @@ -1,8 +1,13 @@ + add_library(planner STATIC joint_space_planner/src/joint_space_planner.cpp joint_space_planner/src/joint_space_planner_creator.cpp - joint_space_planner/src/toppra_bspline.cpp + joint_space_planner/src/toppra_bspline.cpp + + s_curve_planner/src/s_curve_position_planner.cpp + s_curve_planner/src/s_curve_velocity_planner.cpp + cartesian_space_planner/src/cartesian_twist_limiter.cpp ) target_include_directories(planner PUBLIC ${CMAKE_CURRENT_SOURCE_DIR}) @@ -12,6 +17,7 @@ target_link_libraries(planner PUBLIC tinyxml2 fcl toppra + cmvr_es::common ) add_library(cmvr_es::planner ALIAS planner) @@ -46,4 +52,17 @@ target_link_libraries(joint_space_planner_test ) +add_executable(cartesian_twist_limiter_test + ${CMAKE_CURRENT_SOURCE_DIR}/cartesian_space_planner/src/cartesian_twist_limiter_test.cpp +) +target_link_libraries(cartesian_twist_limiter_test + PRIVATE + cmvr_es::planner + gtest + gtest_main + pthread + glog + cmvr_es::proto + matplot +) diff --git a/cmvr-es/planner/cartesian_space_planner/include/cartesian_twist_limiter.h b/cmvr-es/planner/cartesian_space_planner/include/cartesian_twist_limiter.h new file mode 100644 index 00000000..c62bdeea --- /dev/null +++ b/cmvr-es/planner/cartesian_space_planner/include/cartesian_twist_limiter.h @@ -0,0 +1,242 @@ +#pragma once + +#include +#include +#include "planner/s_curve_planner/include/s_curve_velocity_planner.h" +namespace cmvr +{ + +enum class CartesianFrame +{ + Base = 0, + Tool = 1 +}; + +/** + * @brief 6维末端 twist 在线限幅器(基于 SCurveVelocityPlanner1D) + * + * 线速度部分: + * - 模长使用 SCurveVelocityPlanner1D 做 jerk-limited 速度规划 + * - 运动中锁定当前方向,不做方向插值 + * - 若目标方向与当前方向不共线,则采用“先减速到0,再切方向”的 switch policy + * + * 角速度部分: + * - 与线速度独立 + * - 模长使用 SCurveVelocityPlanner1D 做 jerk-limited 速度规划 + * - 运动中锁定当前旋转轴,不做方向插值 + * + * 接口语义: + * - setTargetTwist(...):设置目标 twist + * - synchronizeToMeasuredTwistBase(...):用测量 twist 同步当前状态 + * - update(dt, base_R_tool):根据当前目标与当前状态生成下一拍命令 twist + */ +class CartesianTwistLimiter +{ +public: + using Twist = Eigen::Matrix; + + CartesianTwistLimiter(); + + void setLinearConstraints(double max_velocity, + double max_acceleration, + double max_jerk); + + void setAngularConstraints(double max_velocity, + double max_acceleration, + double max_jerk); + + void setLinearTargetReplanThreshold(double threshold); + void setAngularTargetReplanThreshold(double threshold); + + /** + * @brief 设置线速度方向最大转动角速度(rad/s) + */ + void setLinearDirectionRateLimit(double max_rate_rad_s); + + /** + * @brief 设置角速度方向最大转动角速度(rad/s) + */ + void setAngularDirectionRateLimit(double max_rate_rad_s); + + /** + * @brief 设置线速度反向切换策略 + * + * @param cos_threshold 近反向判定阈值,范围 [-1, 1] + * @param switch_speed_threshold 线速度模长低于该阈值后,允许切到目标方向 + */ + void setLinearReverseSwitchPolicy(double cos_threshold, + double switch_speed_threshold); + + /** + * @brief 初始化当前 twist 状态 + * + * 注意: + * - 初始 twist 视为 base 坐标系下 + */ + void initialize(const Twist& initial_twist = Twist::Zero()); + + void reset(); + + /** + * @brief 设置目标 twist + * + * @param target_twist 目标 twist + * @param frame 输入目标的坐标系(Base 或 Tool) + */ + void setTargetTwist(const Twist& target_twist, CartesianFrame frame); + + /** + * @brief 平滑停下 + */ + void stop(); + + /** + * @brief 急停 + * + * 使用更大的减速度/jerk 约束把当前线速度/角速度平滑拉回 0。 + * 当前运动停止后,会自动恢复到常规约束。 + * + * @param emergency_acceleration 急停减速度幅值 + * @param emergency_jerk 急停 jerk 幅值 + */ + void emergencyStop(double emergency_acceleration, + double emergency_jerk); + + /** + * @brief 急停(分别指定线速度/角速度减速度与 jerk) + * + * @param emergency_linear_acceleration 线速度急停减速度幅值 + * @param emergency_linear_jerk 线速度急停 jerk 幅值 + * @param emergency_angular_acceleration 角速度急停减速度幅值 + * @param emergency_angular_jerk 角速度急停 jerk 幅值 + */ + void emergencyStop(double emergency_linear_acceleration, + double emergency_linear_jerk, + double emergency_angular_acceleration, + double emergency_angular_jerk); + + /** + * @brief 用测得的 base-frame twist 同步当前状态 + * + * 作用: + * - 更新当前执行方向 + * - 用测得模长与模长加速度同步两个 planner + * - keep_target=true 时: + * - 若测量状态仍贴着当前 profile,则保持当前 profile + * - 否则由 planner 内部从测量状态重规划到当前目标 + * - keep_target=false 时: + * - 清掉旧 profile,仅覆盖状态 + * + * @param measured_twist_base 当前测得实际 twist(base 系) + * @param dt 与上一次测量同步的时间间隔 + * @param keep_target 是否保留当前目标模长 + */ + void synchronize(const Twist& measured_twist_base, + double dt, + bool keep_target = true); + + /** + * @brief 更新一步,返回 base 坐标系下的执行 twist 命令 + */ + Twist update(double dt, const Eigen::Matrix3d& base_R_tool); + + const Twist& getTwistBase() const { return twist_base_; } + const Twist& getCommandedTwistBase() const { return twist_base_; } + const Twist& getTargetTwistBase() const { return target_twist_base_; } + const Twist& getAccelerationBase() const { return acceleration_base_; } + const Twist& getJerkBase() const { return jerk_base_; } + + bool isMoving() const; + +private: + static constexpr double EPSILON = 1e-12; + static constexpr double DEFAULT_LINEAR_DIR_RATE_LIMIT = 3.14159265358979323846; // 180 deg/s + static constexpr double DEFAULT_ANGULAR_DIR_RATE_LIMIT = 3.14159265358979323846; // 180 deg/s + static constexpr double DEFAULT_LINEAR_REVERSE_COS_THRESHOLD = -0.8660254037844386; // cos(150 deg) + static constexpr double DEFAULT_LINEAR_REVERSE_SWITCH_SPEED_THRESHOLD = 1e-3; + static constexpr double AXIS_LOCK_COS_THRESHOLD = 0.999; + static constexpr double DEFAULT_ANGULAR_SWITCH_SPEED_THRESHOLD = 1e-3; + + // 模长 planner + SCurveVelocityPlanner1D linear_norm_planner_; + SCurveVelocityPlanner1D angular_norm_planner_; + + // 常规约束缓存。急停结束后恢复到这里。 + double linear_max_velocity_; + double linear_max_acceleration_; + double linear_max_jerk_; + double angular_max_velocity_; + double angular_max_acceleration_; + double angular_max_jerk_; + + // 方向变化率限制(rad/s) + double linear_direction_rate_limit_; + double angular_direction_rate_limit_; + + // 线速度 reverse policy + double linear_reverse_cos_threshold_; + double linear_reverse_switch_speed_threshold_; + double angular_switch_speed_threshold_; + bool emergency_stop_active_; + + // 目标/当前状态 + Twist target_twist_input_; + Twist target_twist_base_; + + Twist twist_base_; + Twist acceleration_base_; + Twist jerk_base_; + + Twist prev_twist_base_; + Twist prev_acceleration_base_; + + CartesianFrame input_frame_; + + // 当前执行方向 + Eigen::Vector3d current_linear_dir_base_; + Eigen::Vector3d current_angular_dir_base_; + + // 最近一次非零目标方向(目标变0时用于平滑停下) + Eigen::Vector3d last_target_linear_dir_base_; + Eigen::Vector3d last_target_angular_dir_base_; + + // 测量同步用缓存 + bool has_measured_sync_; + Twist last_measured_twist_base_; + Twist last_measured_acceleration_base_; + double prev_measured_linear_norm_; + double prev_measured_angular_norm_; + + static Twist transformTwistToolToBase(const Twist& twist_tool, + const Eigen::Matrix3d& base_R_tool); + + static Eigen::Vector3d chooseDirection(const Eigen::Vector3d& target_vec, + const Eigen::Vector3d& fallback); + + static Eigen::Vector3d rotateDirectionToward(const Eigen::Vector3d& current_dir, + const Eigen::Vector3d& target_dir, + double max_rate_rad_s, + double dt); + + static Eigen::Vector3d rotateAroundAxis(const Eigen::Vector3d& v, + const Eigen::Vector3d& axis_unit, + double angle_rad); + + static Eigen::Vector3d chooseOrthogonalUnit(const Eigen::Vector3d& v); + + void applyLinearConstraints(double max_velocity, + double max_acceleration, + double max_jerk); + void applyAngularConstraints(double max_velocity, + double max_acceleration, + double max_jerk); + void restoreNominalConstraints(); + static bool isZeroTwist(const Twist& twist); + + static double clamp(double value, double lo, double hi) + { + return std::max(lo, std::min(hi, value)); + } +}; + +} // namespace cmvr diff --git a/cmvr-es/planner/cartesian_space_planner/src/cartesian_twist_limiter.cpp b/cmvr-es/planner/cartesian_space_planner/src/cartesian_twist_limiter.cpp new file mode 100644 index 00000000..a4ecf10b --- /dev/null +++ b/cmvr-es/planner/cartesian_space_planner/src/cartesian_twist_limiter.cpp @@ -0,0 +1,537 @@ +#include "../include/cartesian_twist_limiter.h" + +#include +#include + +namespace cmvr +{ + +CartesianTwistLimiter::CartesianTwistLimiter() + : linear_norm_planner_(1.0, 1.0, 5.0) + , angular_norm_planner_(1.0, 1.0, 5.0) + , linear_max_velocity_(1.0) + , linear_max_acceleration_(1.0) + , linear_max_jerk_(5.0) + , angular_max_velocity_(1.0) + , angular_max_acceleration_(1.0) + , angular_max_jerk_(5.0) + , linear_direction_rate_limit_(DEFAULT_LINEAR_DIR_RATE_LIMIT) + , angular_direction_rate_limit_(DEFAULT_ANGULAR_DIR_RATE_LIMIT) + , linear_reverse_cos_threshold_(DEFAULT_LINEAR_REVERSE_COS_THRESHOLD) + , linear_reverse_switch_speed_threshold_(DEFAULT_LINEAR_REVERSE_SWITCH_SPEED_THRESHOLD) + , angular_switch_speed_threshold_(DEFAULT_ANGULAR_SWITCH_SPEED_THRESHOLD) + , emergency_stop_active_(false) + , target_twist_input_(Twist::Zero()) + , target_twist_base_(Twist::Zero()) + , twist_base_(Twist::Zero()) + , acceleration_base_(Twist::Zero()) + , jerk_base_(Twist::Zero()) + , prev_twist_base_(Twist::Zero()) + , prev_acceleration_base_(Twist::Zero()) + , input_frame_(CartesianFrame::Base) + , current_linear_dir_base_(Eigen::Vector3d::Zero()) + , current_angular_dir_base_(Eigen::Vector3d::Zero()) + , last_target_linear_dir_base_(Eigen::Vector3d::Zero()) + , last_target_angular_dir_base_(Eigen::Vector3d::Zero()) + , has_measured_sync_(false) + , last_measured_twist_base_(Twist::Zero()) + , last_measured_acceleration_base_(Twist::Zero()) + , prev_measured_linear_norm_(0.0) + , prev_measured_angular_norm_(0.0) +{ +} + +void CartesianTwistLimiter::applyLinearConstraints(double max_velocity, + double max_acceleration, + double max_jerk) +{ + linear_norm_planner_.setConstraints(max_velocity, max_acceleration, max_jerk); +} + +void CartesianTwistLimiter::applyAngularConstraints(double max_velocity, + double max_acceleration, + double max_jerk) +{ + angular_norm_planner_.setConstraints(max_velocity, max_acceleration, max_jerk); +} + +void CartesianTwistLimiter::setLinearConstraints(double max_velocity, + double max_acceleration, + double max_jerk) +{ + linear_max_velocity_ = std::abs(max_velocity); + linear_max_acceleration_ = std::abs(max_acceleration); + linear_max_jerk_ = std::abs(max_jerk); + + if (!emergency_stop_active_) { + applyLinearConstraints(linear_max_velocity_, linear_max_acceleration_, linear_max_jerk_); + } +} + +void CartesianTwistLimiter::setAngularConstraints(double max_velocity, + double max_acceleration, + double max_jerk) +{ + angular_max_velocity_ = std::abs(max_velocity); + angular_max_acceleration_ = std::abs(max_acceleration); + angular_max_jerk_ = std::abs(max_jerk); + + if (!emergency_stop_active_) { + applyAngularConstraints(angular_max_velocity_, angular_max_acceleration_, angular_max_jerk_); + } +} + +void CartesianTwistLimiter::setLinearTargetReplanThreshold(double threshold) +{ + linear_norm_planner_.setTargetReplanThreshold(threshold); +} + +void CartesianTwistLimiter::setAngularTargetReplanThreshold(double threshold) +{ + angular_norm_planner_.setTargetReplanThreshold(threshold); +} + +void CartesianTwistLimiter::setLinearDirectionRateLimit(double max_rate_rad_s) +{ + linear_direction_rate_limit_ = std::max(0.0, max_rate_rad_s); +} + +void CartesianTwistLimiter::setAngularDirectionRateLimit(double max_rate_rad_s) +{ + angular_direction_rate_limit_ = std::max(0.0, max_rate_rad_s); +} + +void CartesianTwistLimiter::setLinearReverseSwitchPolicy(double cos_threshold, + double switch_speed_threshold) +{ + linear_reverse_cos_threshold_ = clamp(cos_threshold, -1.0, 1.0); + linear_reverse_switch_speed_threshold_ = std::max(0.0, switch_speed_threshold); +} + +void CartesianTwistLimiter::initialize(const Twist& initial_twist) +{ + restoreNominalConstraints(); + emergency_stop_active_ = false; + + const Eigen::Vector3d v0 = initial_twist.head<3>(); + const Eigen::Vector3d w0 = initial_twist.tail<3>(); + + const double v0_norm = v0.norm(); + const double w0_norm = w0.norm(); + + linear_norm_planner_.initialize(v0_norm, 0.0); + angular_norm_planner_.initialize(w0_norm, 0.0); + + target_twist_input_ = initial_twist; + target_twist_base_ = initial_twist; + twist_base_ = initial_twist; + acceleration_base_.setZero(); + jerk_base_.setZero(); + prev_twist_base_ = initial_twist; + prev_acceleration_base_.setZero(); + + // current_linear_dir_base_ = + // (v0_norm > EPSILON) ? (v0 / v0_norm) : Eigen::Vector3d::Zero(); + // current_angular_dir_base_ = + // (w0_norm > EPSILON) ? (w0 / w0_norm) : Eigen::Vector3d::Zero(); + current_linear_dir_base_.setZero(); + current_angular_dir_base_.setZero(); + if (v0_norm > EPSILON) { + current_linear_dir_base_ = v0 / v0_norm; + } else { + + } + + if (w0_norm > EPSILON) { + current_angular_dir_base_ = w0 / w0_norm; + } else { + + } + + last_target_linear_dir_base_ = current_linear_dir_base_; + last_target_angular_dir_base_ = current_angular_dir_base_; + + has_measured_sync_ = false; + last_measured_twist_base_ = initial_twist; + last_measured_acceleration_base_.setZero(); + prev_measured_linear_norm_ = v0_norm; + prev_measured_angular_norm_ = w0_norm; +} + +void CartesianTwistLimiter::reset() +{ + restoreNominalConstraints(); + emergency_stop_active_ = false; + + linear_norm_planner_.reset(); + angular_norm_planner_.reset(); + + target_twist_input_.setZero(); + target_twist_base_.setZero(); + twist_base_.setZero(); + acceleration_base_.setZero(); + jerk_base_.setZero(); + prev_twist_base_.setZero(); + prev_acceleration_base_.setZero(); + + input_frame_ = CartesianFrame::Base; + + current_linear_dir_base_.setZero(); + current_angular_dir_base_.setZero(); + last_target_linear_dir_base_.setZero(); + last_target_angular_dir_base_.setZero(); + + has_measured_sync_ = false; + last_measured_twist_base_.setZero(); + last_measured_acceleration_base_.setZero(); + prev_measured_linear_norm_ = 0.0; + prev_measured_angular_norm_ = 0.0; +} + +void CartesianTwistLimiter::setTargetTwist(const Twist& target_twist, CartesianFrame frame) +{ + if (emergency_stop_active_ && !isZeroTwist(target_twist)) { + restoreNominalConstraints(); + emergency_stop_active_ = false; + } + + target_twist_input_ = target_twist; + input_frame_ = frame; +} + +void CartesianTwistLimiter::stop() +{ + target_twist_input_.setZero(); +} + +void CartesianTwistLimiter::emergencyStop(double emergency_acceleration, + double emergency_jerk) +{ + emergencyStop(emergency_acceleration, + emergency_jerk, + emergency_acceleration, + emergency_jerk); +} + +void CartesianTwistLimiter::emergencyStop(double emergency_linear_acceleration, + double emergency_linear_jerk, + double emergency_angular_acceleration, + double emergency_angular_jerk) +{ + const double linear_stop_acceleration = + std::max(std::abs(emergency_linear_acceleration), linear_max_acceleration_); + const double linear_stop_jerk = + std::max(std::abs(emergency_linear_jerk), linear_max_jerk_); + const double angular_stop_acceleration = + std::max(std::abs(emergency_angular_acceleration), angular_max_acceleration_); + const double angular_stop_jerk = + std::max(std::abs(emergency_angular_jerk), angular_max_jerk_); + + applyLinearConstraints(linear_max_velocity_, linear_stop_acceleration, linear_stop_jerk); + applyAngularConstraints(angular_max_velocity_, angular_stop_acceleration, angular_stop_jerk); + + emergency_stop_active_ = true; + target_twist_input_.setZero(); + target_twist_base_.setZero(); + linear_norm_planner_.setTargetVelocity(0.0); + angular_norm_planner_.setTargetVelocity(0.0); +} + +void CartesianTwistLimiter::synchronize(const Twist& measured_twist_base, + double dt, + bool keep_target) +{ + const Eigen::Vector3d v_meas = measured_twist_base.head<3>(); + const Eigen::Vector3d w_meas = measured_twist_base.tail<3>(); + + const double v_norm = v_meas.norm(); + const double w_norm = w_meas.norm(); + + double v_acc = 0.0; + double w_acc = 0.0; + + if (dt > EPSILON && has_measured_sync_) { + v_acc = (v_norm - prev_measured_linear_norm_) / dt; + w_acc = (w_norm - prev_measured_angular_norm_) / dt; + + acceleration_base_ = (measured_twist_base - last_measured_twist_base_) / dt; + jerk_base_ = (acceleration_base_ - last_measured_acceleration_base_) / dt; + last_measured_acceleration_base_ = acceleration_base_; + } else { + acceleration_base_.setZero(); + jerk_base_.setZero(); + last_measured_acceleration_base_.setZero(); + } + + prev_measured_linear_norm_ = v_norm; + prev_measured_angular_norm_ = w_norm; + last_measured_twist_base_ = measured_twist_base; + has_measured_sync_ = true; + + // 用测得模长/模长加速度同步 planner 当前状态。 + // keep_target=true: + // - 若测量值仍贴着当前 profile,则继续沿旧 profile 走 + // - 否则从测量状态重规划到当前目标 + // keep_target=false: + // - 仅覆盖状态并清掉旧 profile,不保留当前目标 + if (keep_target) { + linear_norm_planner_.synchronizeAndReplan(v_norm, v_acc); + angular_norm_planner_.synchronizeAndReplan(w_norm, w_acc); + } else { + linear_norm_planner_.overwriteState(v_norm, v_acc, false); + angular_norm_planner_.overwriteState(w_norm, w_acc, false); + target_twist_input_.setZero(); + target_twist_base_.setZero(); + } + + if (v_norm > EPSILON) { + current_linear_dir_base_ = v_meas / v_norm; + last_target_linear_dir_base_ = current_linear_dir_base_; + } + + if (w_norm > EPSILON) { + current_angular_dir_base_ = w_meas / w_norm; + last_target_angular_dir_base_ = current_angular_dir_base_; + } + + twist_base_ = measured_twist_base; + prev_twist_base_ = measured_twist_base; + prev_acceleration_base_ = acceleration_base_; +} + +CartesianTwistLimiter::Twist +CartesianTwistLimiter::transformTwistToolToBase(const Twist& twist_tool, + const Eigen::Matrix3d& base_R_tool) +{ + Twist twist_base; + twist_base.head<3>() = base_R_tool * twist_tool.head<3>(); + twist_base.tail<3>() = base_R_tool * twist_tool.tail<3>(); + return twist_base; +} + +Eigen::Vector3d CartesianTwistLimiter::chooseDirection(const Eigen::Vector3d& target_vec, + const Eigen::Vector3d& fallback) +{ + const double n = target_vec.norm(); + if (n > EPSILON) { + return target_vec / n; + } + return fallback; +} + +Eigen::Vector3d CartesianTwistLimiter::rotateAroundAxis(const Eigen::Vector3d& v, + const Eigen::Vector3d& axis_unit, + double angle_rad) +{ + const double c = std::cos(angle_rad); + const double s = std::sin(angle_rad); + return c * v + s * (axis_unit.cross(v)) + (1.0 - c) * axis_unit.dot(v) * axis_unit; +} + +Eigen::Vector3d CartesianTwistLimiter::chooseOrthogonalUnit(const Eigen::Vector3d& v) +{ + Eigen::Vector3d ref; + if (std::abs(v.x()) < 0.8) { + ref = Eigen::Vector3d::UnitX(); + } else if (std::abs(v.y()) < 0.8) { + ref = Eigen::Vector3d::UnitY(); + } else { + ref = Eigen::Vector3d::UnitZ(); + } + + Eigen::Vector3d ortho = ref - ref.dot(v) * v; + const double n = ortho.norm(); + if (n > EPSILON) { + return ortho / n; + } + return Eigen::Vector3d::UnitX(); +} + +void CartesianTwistLimiter::restoreNominalConstraints() +{ + applyLinearConstraints(linear_max_velocity_, linear_max_acceleration_, linear_max_jerk_); + applyAngularConstraints(angular_max_velocity_, angular_max_acceleration_, angular_max_jerk_); +} + +bool CartesianTwistLimiter::isZeroTwist(const Twist& twist) +{ + return twist.head<3>().squaredNorm() <= EPSILON && twist.tail<3>().squaredNorm() <= EPSILON; +} + +Eigen::Vector3d CartesianTwistLimiter::rotateDirectionToward(const Eigen::Vector3d& current_dir, + const Eigen::Vector3d& target_dir, + double max_rate_rad_s, + double dt) +{ + if (dt <= 0.0) { + return current_dir; + } + + const double cur_n = current_dir.norm(); + const double tgt_n = target_dir.norm(); + + if (tgt_n <= EPSILON) { + return current_dir; + } + if (cur_n <= EPSILON) { + return target_dir; + } + + const Eigen::Vector3d u = current_dir / cur_n; + const Eigen::Vector3d v = target_dir / tgt_n; + + const double dot_uv = clamp(u.dot(v), -1.0, 1.0); + const double angle = std::acos(dot_uv); + + if (angle <= 1e-9) { + return v; + } + + const double max_step = std::max(0.0, max_rate_rad_s) * dt; + if (max_step <= 0.0) { + return u; + } + if (angle <= max_step) { + return v; + } + + Eigen::Vector3d axis = u.cross(v); + const double axis_n = axis.norm(); + + if (axis_n > EPSILON) { + axis /= axis_n; + return rotateAroundAxis(u, axis, max_step).normalized(); + } + + if (dot_uv > 0.0) { + return v; + } + + const Eigen::Vector3d ortho_axis = chooseOrthogonalUnit(u); + return rotateAroundAxis(u, ortho_axis, max_step).normalized(); +} + +CartesianTwistLimiter::Twist +CartesianTwistLimiter::update(double dt, const Eigen::Matrix3d& base_R_tool) +{ + if (emergency_stop_active_ && isZeroTwist(target_twist_input_) && + !linear_norm_planner_.isMoving() && !angular_norm_planner_.isMoving()) { + restoreNominalConstraints(); + emergency_stop_active_ = false; + } + + if (input_frame_ == CartesianFrame::Base) { + target_twist_base_ = target_twist_input_; + } else { + target_twist_base_ = transformTwistToolToBase(target_twist_input_, base_R_tool); + } + + // ==================== 线速度:方向锁定 + 标量 planner ==================== + const Eigen::Vector3d v_des = target_twist_base_.head<3>(); + const double v_des_norm = v_des.norm(); + const Eigen::Vector3d v_target_dir = + chooseDirection(v_des, + current_linear_dir_base_.norm() > EPSILON + ? current_linear_dir_base_ + : last_target_linear_dir_base_); + + if (v_des_norm > EPSILON) { + last_target_linear_dir_base_ = v_target_dir; + } + + const double v_cur_norm = linear_norm_planner_.getVelocity(); + const bool has_current_linear_dir = current_linear_dir_base_.norm() > EPSILON; + if (!has_current_linear_dir) { + if (v_des_norm > EPSILON) { + current_linear_dir_base_ = v_target_dir; + linear_norm_planner_.setTargetVelocity(v_des_norm); + } else { + linear_norm_planner_.setTargetVelocity(0.0); + } + } else if (v_des_norm <= EPSILON) { + linear_norm_planner_.setTargetVelocity(0.0); + } else { + const double dir_dot = + clamp(current_linear_dir_base_.dot(v_target_dir), -1.0, 1.0); + const bool axis_aligned = dir_dot >= AXIS_LOCK_COS_THRESHOLD; + const bool reverse_aligned = dir_dot <= -AXIS_LOCK_COS_THRESHOLD; + const bool same_axis = axis_aligned || reverse_aligned; + const bool must_switch_axis = + !same_axis || dir_dot < linear_reverse_cos_threshold_; + + if (must_switch_axis && v_cur_norm > linear_reverse_switch_speed_threshold_) { + linear_norm_planner_.setTargetVelocity(0.0); + } else { + current_linear_dir_base_ = v_target_dir; + linear_norm_planner_.setTargetVelocity(v_des_norm); + } + } + + const double v_exec_norm = linear_norm_planner_.update(dt); + twist_base_.head<3>() = current_linear_dir_base_ * v_exec_norm; + + // ==================== 角速度:方向锁定 + 标量 planner ==================== + const Eigen::Vector3d w_des = target_twist_base_.tail<3>(); + const double w_des_norm = w_des.norm(); + const Eigen::Vector3d w_target_dir = + chooseDirection(w_des, + current_angular_dir_base_.norm() > EPSILON + ? current_angular_dir_base_ + : last_target_angular_dir_base_); + + if (w_des_norm > EPSILON) { + last_target_angular_dir_base_ = w_target_dir; + } + + const double w_cur_norm = angular_norm_planner_.getVelocity(); + const bool has_current_angular_dir = current_angular_dir_base_.norm() > EPSILON; + if (!has_current_angular_dir) { + if (w_des_norm > EPSILON) { + current_angular_dir_base_ = w_target_dir; + angular_norm_planner_.setTargetVelocity(w_des_norm); + } else { + angular_norm_planner_.setTargetVelocity(0.0); + } + } else if (w_des_norm <= EPSILON) { + angular_norm_planner_.setTargetVelocity(0.0); + } else { + const double dir_dot = + clamp(current_angular_dir_base_.dot(w_target_dir), -1.0, 1.0); + const bool axis_aligned = dir_dot >= AXIS_LOCK_COS_THRESHOLD; + const bool reverse_aligned = dir_dot <= -AXIS_LOCK_COS_THRESHOLD; + const bool same_axis = axis_aligned || reverse_aligned; + // 角速度与线速度一致:反向同轴也必须先减速到 0,再切方向。 + const bool must_switch_axis = !same_axis || reverse_aligned; + + if (must_switch_axis && w_cur_norm > angular_switch_speed_threshold_) { + angular_norm_planner_.setTargetVelocity(0.0); + } else { + current_angular_dir_base_ = w_target_dir; + angular_norm_planner_.setTargetVelocity(w_des_norm); + } + } + + const double w_exec_norm = angular_norm_planner_.update(dt); + twist_base_.tail<3>() = current_angular_dir_base_ * w_exec_norm; + + // ==================== 对最终 twist 做差分得到 acc / jerk ==================== + if (dt > EPSILON) { + acceleration_base_ = (twist_base_ - prev_twist_base_) / dt; + jerk_base_ = (acceleration_base_ - prev_acceleration_base_) / dt; + } else { + acceleration_base_.setZero(); + jerk_base_.setZero(); + } + + prev_twist_base_ = twist_base_; + prev_acceleration_base_ = acceleration_base_; + + return twist_base_; +} + +bool CartesianTwistLimiter::isMoving() const +{ + return linear_norm_planner_.isMoving() || angular_norm_planner_.isMoving(); +} + +} // namespace cmvr diff --git a/cmvr-es/planner/cartesian_space_planner/src/cartesian_twist_limiter_test.cpp b/cmvr-es/planner/cartesian_space_planner/src/cartesian_twist_limiter_test.cpp new file mode 100644 index 00000000..2878a823 --- /dev/null +++ b/cmvr-es/planner/cartesian_space_planner/src/cartesian_twist_limiter_test.cpp @@ -0,0 +1,732 @@ +// +// Created by lgv on 2026/3/10. +// + +#include "gtest/gtest.h" + +#include +#include + +#include "planner/cartesian_space_planner/include/cartesian_twist_limiter.h" + +namespace cmvr +{ +namespace +{ + +using Twist = CartesianTwistLimiter::Twist; + +constexpr double kDt = 0.01; +constexpr double kComponentEps = 1e-8; +constexpr double kDirectionEps = 1e-6; +constexpr double kSwitchSpeedUpperBound = 0.05; + +Twist makeTwist(double vx, double vy, double vz, double wx, double wy, double wz) +{ + Twist twist = Twist::Zero(); + twist << vx, vy, vz, wx, wy, wz; + return twist; +} + +Eigen::Vector3d normalizedOrZero(const Eigen::Vector3d& value) +{ + const double norm = value.norm(); + if (norm <= kComponentEps) { + return Eigen::Vector3d::Zero(); + } + return value / norm; +} + +CartesianTwistLimiter makeLimiter() +{ + CartesianTwistLimiter limiter; + limiter.setLinearConstraints(1.0, 1.0, 5.0); + limiter.setAngularConstraints(1.0, 1.0, 5.0); + limiter.initialize(); + return limiter; +} + +Twist linearTargetAtTime(double t) +{ + if (t < 1.0) { + return makeTwist(0.0, 0.0, 0.0, 0.0, 0.0, 0.0); + } + if (t < 3.5) { + return makeTwist(0.8, 0.0, 0.0, 0.0, 0.0, 0.0); + } + if (t < 6.0) { + return makeTwist(-0.8, 0.6, 0.2, 0.0, 0.0, 0.0); + } + if (t < 8.5) { + return makeTwist(-0.7, 0.0, 0.0, 0.0, 0.0, 0.0); + } + return makeTwist(-0.7, 0.0, 0.0, 0.0, 0.0, 0.0); +} + +Twist angularTargetAtTime(double t) +{ + if (t < 1.0) { + return makeTwist(0.0, 0.0, 0.0, 0.0, 0.0, 0.0); + } + if (t < 3.5) { + return makeTwist(0.0, 0.0, 0.0, 0.8, 0.0, 0.0); + } + if (t < 6.0) { + return makeTwist(0.0, 0.0, 0.0, -0.8, 0, 0); + } + if (t < 8.5) { + return makeTwist(0.0, 0.0, 0.0, -0.6, 0.0, 0.0); + } + return makeTwist(0.0, 0.0, 0.0, -0.6, 0.0, 0.0); +} + +Twist synchronizeTargetAtTime(double t) +{ + if (t < 1.0) { + return makeTwist(0.0, 0.0, 0.0, 0.0, 0.0, 0.0); + } + if (t < 3.5) { + return makeTwist(0.8, 0.0, 0.0, 0.0, 0.0, 0.0); + } + if (t < 6.0) { + return makeTwist(0.0, 0.7, 0.0, 0.0, 0.0, 0.0); + } + if (t < 8.0) { + return makeTwist(0.0, 0.0, 0.0, 0.0, 0.0, 0.0); + } + return makeTwist(-0.6, 0.0, 0.0, 0.0, 0.0, 0.0); +} + +} // namespace + +TEST(CARTESIAN_TWIST_LIMITER_TEST, LinearDirectionRemainsLockedForFixedTarget) +{ + CartesianTwistLimiter limiter = makeLimiter(); + const Eigen::Matrix3d base_R_tool = Eigen::Matrix3d::Identity(); + + const Eigen::Vector3d expected_dir = normalizedOrZero(Eigen::Vector3d(0.8, 0.6, 0.0)); + limiter.setTargetTwist(makeTwist(0.8, 0.6, 0.0, 0.0, 0.0, 0.0), CartesianFrame::Base); + + double max_speed = 0.0; + for (int i = 0; i < 400; ++i) { + const Twist twist = limiter.update(kDt, base_R_tool); + const Eigen::Vector3d linear = twist.head<3>(); + max_speed = std::max(max_speed, linear.norm()); + + if (linear.norm() > kComponentEps) { + const Eigen::Vector3d dir = linear.normalized(); + EXPECT_LT(dir.cross(expected_dir).norm(), kDirectionEps) << "step=" << i; + } + } + + EXPECT_GT(max_speed, 0.5); +} + +TEST(CARTESIAN_TWIST_LIMITER_TEST, LinearReverseStopsBeforeSwitchingDirection) +{ + CartesianTwistLimiter limiter = makeLimiter(); + const Eigen::Matrix3d base_R_tool = Eigen::Matrix3d::Identity(); + + limiter.setTargetTwist(makeTwist(0.8, 0.0, 0.0, 0.0, 0.0, 0.0), CartesianFrame::Base); + + double speed_before_switch = 0.0; + for (int i = 0; i < 200; ++i) { + const Twist twist = limiter.update(kDt, base_R_tool); + if (twist.head<3>().norm() > 0.2) { + speed_before_switch = twist.head<3>().norm(); + break; + } + } + ASSERT_GT(speed_before_switch, 0.2); + + limiter.setTargetTwist(makeTwist(-0.8, 0.0, 0.0, 0.0, 0.0, 0.0), CartesianFrame::Base); + + bool negative_x_seen = false; + double speed_when_negative_x_appears = 0.0; + for (int i = 0; i < 500; ++i) { + const Twist twist = limiter.update(kDt, base_R_tool); + EXPECT_NEAR(twist.y(), 0.0, kComponentEps); + EXPECT_NEAR(twist.z(), 0.0, kComponentEps); + + if (!negative_x_seen && twist.x() < -kComponentEps) { + negative_x_seen = true; + speed_when_negative_x_appears = twist.head<3>().norm(); + break; + } + + if (!negative_x_seen) { + EXPECT_GE(twist.x(), -kComponentEps); + } + } + + ASSERT_TRUE(negative_x_seen); + EXPECT_LT(speed_when_negative_x_appears, kSwitchSpeedUpperBound); +} + +TEST(CARTESIAN_TWIST_LIMITER_TEST, LinearNonCollinearSwitchStopsBeforeChangingAxis) +{ + CartesianTwistLimiter limiter = makeLimiter(); + const Eigen::Matrix3d base_R_tool = Eigen::Matrix3d::Identity(); + + limiter.setTargetTwist(makeTwist(0.8, 0.0, 0.0, 0.0, 0.0, 0.0), CartesianFrame::Base); + + for (int i = 0; i < 200; ++i) { + if (limiter.update(kDt, base_R_tool).head<3>().norm() > 0.2) { + break; + } + } + + limiter.setTargetTwist(makeTwist(0.0, 0.8, 0.0, 0.0, 0.0, 0.0), CartesianFrame::Base); + + bool y_seen = false; + double speed_when_y_appears = 0.0; + for (int i = 0; i < 500; ++i) { + const Twist twist = limiter.update(kDt, base_R_tool); + EXPECT_NEAR(twist.z(), 0.0, kComponentEps); + + if (!y_seen && std::abs(twist.y()) > kComponentEps) { + y_seen = true; + speed_when_y_appears = twist.head<3>().norm(); + break; + } + + if (!y_seen) { + EXPECT_NEAR(twist.y(), 0.0, kComponentEps); + EXPECT_GE(twist.x(), -kComponentEps); + } + } + + ASSERT_TRUE(y_seen); + EXPECT_LT(speed_when_y_appears, kSwitchSpeedUpperBound); +} + +TEST(CARTESIAN_TWIST_LIMITER_TEST, AngularNonCollinearSwitchStopsBeforeChangingAxis) +{ + CartesianTwistLimiter limiter = makeLimiter(); + const Eigen::Matrix3d base_R_tool = Eigen::Matrix3d::Identity(); + + limiter.setTargetTwist(makeTwist(0.0, 0.0, 0.0, 0.8, 0.0, 0.0), CartesianFrame::Base); + + for (int i = 0; i < 200; ++i) { + if (limiter.update(kDt, base_R_tool).tail<3>().norm() > 0.2) { + break; + } + } + + limiter.setTargetTwist(makeTwist(0.0, 0.0, 0.0, 0.0, 0.0, 0.8), CartesianFrame::Base); + + bool z_seen = false; + double speed_when_z_appears = 0.0; + for (int i = 0; i < 500; ++i) { + const Twist twist = limiter.update(kDt, base_R_tool); + EXPECT_NEAR(twist(4), 0.0, kComponentEps); + + if (!z_seen && std::abs(twist(5)) > kComponentEps) { + z_seen = true; + speed_when_z_appears = twist.tail<3>().norm(); + break; + } + + if (!z_seen) { + EXPECT_NEAR(twist(5), 0.0, kComponentEps); + EXPECT_GE(twist(3), -kComponentEps); + } + } + + ASSERT_TRUE(z_seen); + EXPECT_LT(speed_when_z_appears, kSwitchSpeedUpperBound); +} + +TEST(CARTESIAN_TWIST_LIMITER_TEST, StopKeepsCurrentLinearDirection) +{ + CartesianTwistLimiter limiter = makeLimiter(); + const Eigen::Matrix3d base_R_tool = Eigen::Matrix3d::Identity(); + + limiter.setTargetTwist(makeTwist(0.8, 0.6, 0.0, 0.0, 0.0, 0.0), CartesianFrame::Base); + + Eigen::Vector3d moving_dir = Eigen::Vector3d::Zero(); + for (int i = 0; i < 300; ++i) { + const Twist twist = limiter.update(kDt, base_R_tool); + if (twist.head<3>().norm() > 0.2) { + moving_dir = twist.head<3>().normalized(); + break; + } + } + ASSERT_GT(moving_dir.norm(), 0.5); + + limiter.stop(); + + double final_speed = 0.0; + for (int i = 0; i < 400; ++i) { + const Twist twist = limiter.update(kDt, base_R_tool); + final_speed = twist.head<3>().norm(); + if (final_speed > kComponentEps) { + EXPECT_LT(twist.head<3>().normalized().cross(moving_dir).norm(), kDirectionEps) + << "step=" << i; + } + } + + EXPECT_LT(final_speed, 1e-4); +} + +TEST(CARTESIAN_TWIST_LIMITER_TEST, SynchronizeWithoutKeepingTargetClearsOldCommand) +{ + CartesianTwistLimiter limiter = makeLimiter(); + const Eigen::Matrix3d base_R_tool = Eigen::Matrix3d::Identity(); + + limiter.setTargetTwist(makeTwist(0.8, 0.0, 0.0, 0.0, 0.0, 0.0), CartesianFrame::Base); + for (int i = 0; i < 80; ++i) { + limiter.update(kDt, base_R_tool); + } + + limiter.synchronize(Twist::Zero(), kDt, false); + + EXPECT_NEAR(limiter.getTargetTwistBase().norm(), 0.0, kComponentEps); + + for (int i = 0; i < 50; ++i) { + const Twist twist = limiter.update(kDt, base_R_tool); + EXPECT_NEAR(twist.norm(), 0.0, kComponentEps) << "step=" << i; + } + + EXPECT_FALSE(limiter.isMoving()); +} + +TEST(CARTESIAN_TWIST_LIMITER_TEST, SynchronizeKeepingTargetContinuesTowardExistingCommand) +{ + CartesianTwistLimiter limiter = makeLimiter(); + const Eigen::Matrix3d base_R_tool = Eigen::Matrix3d::Identity(); + + limiter.setTargetTwist(makeTwist(0.8, 0.0, 0.0, 0.0, 0.0, 0.0), CartesianFrame::Base); + for (int i = 0; i < 120; ++i) { + limiter.update(kDt, base_R_tool); + } + + ASSERT_GT(limiter.getTwistBase().x(), 0.2); + + const Twist measured_twist = makeTwist(0.15, 0.0, 0.0, 0.0, 0.0, 0.0); + limiter.synchronize(measured_twist, kDt, true); + + EXPECT_NEAR(limiter.getTwistBase().x(), 0.15, kComponentEps); + EXPECT_NEAR(limiter.getTwistBase().y(), 0.0, kComponentEps); + EXPECT_NEAR(limiter.getTwistBase().z(), 0.0, kComponentEps); + + double max_resumed_speed = measured_twist.x(); + for (int i = 0; i < 200; ++i) { + const Twist twist = limiter.update(kDt, base_R_tool); + EXPECT_NEAR(twist.y(), 0.0, kComponentEps); + EXPECT_NEAR(twist.z(), 0.0, kComponentEps); + max_resumed_speed = std::max(max_resumed_speed, twist.head<3>().norm()); + if (max_resumed_speed > 0.4) { + break; + } + } + + EXPECT_GT(max_resumed_speed, 0.4); + EXPECT_GT(limiter.getTargetTwistBase().x(), 0.7); +} + +TEST(CARTESIAN_TWIST_LIMITER_TEST, EmergencyStopStopsFasterThanNormalStopAndAcceptsNewTarget) +{ + CartesianTwistLimiter normal_limiter = makeLimiter(); + CartesianTwistLimiter emergency_limiter = makeLimiter(); + const Eigen::Matrix3d base_R_tool = Eigen::Matrix3d::Identity(); + + const Twist forward_twist = makeTwist(0.8, 0.0, 0.0, 0.0, 0.0, 0.0); + normal_limiter.setTargetTwist(forward_twist, CartesianFrame::Base); + emergency_limiter.setTargetTwist(forward_twist, CartesianFrame::Base); + + for (int i = 0; i < 250; ++i) { + normal_limiter.update(kDt, base_R_tool); + emergency_limiter.update(kDt, base_R_tool); + } + + const double start_speed = normal_limiter.getTwistBase().head<3>().norm(); + ASSERT_GT(start_speed, 0.2); + ASSERT_NEAR(emergency_limiter.getTwistBase().head<3>().norm(), start_speed, 1e-3); + + normal_limiter.stop(); + emergency_limiter.emergencyStop(3.0, 20.0); + + int normal_stop_steps = -1; + int emergency_stop_steps = -1; + for (int i = 0; i < 500; ++i) { + const double normal_speed = normal_limiter.update(kDt, base_R_tool).head<3>().norm(); + const double emergency_speed = emergency_limiter.update(kDt, base_R_tool).head<3>().norm(); + + if (normal_stop_steps < 0 && normal_speed < 1e-3) { + normal_stop_steps = i; + } + if (emergency_stop_steps < 0 && emergency_speed < 1e-3) { + emergency_stop_steps = i; + } + + if (normal_stop_steps >= 0 && emergency_stop_steps >= 0) { + break; + } + } + + ASSERT_GE(normal_stop_steps, 0); + ASSERT_GE(emergency_stop_steps, 0); + EXPECT_LT(emergency_stop_steps, normal_stop_steps); + + const Twist restart_twist = makeTwist(-0.4, 0.0, 0.0, 0.0, 0.0, 0.0); + emergency_limiter.setTargetTwist(restart_twist, CartesianFrame::Base); + + double restarted_speed = 0.0; + double restarted_x = 0.0; + for (int i = 0; i < 300; ++i) { + const Twist twist = emergency_limiter.update(kDt, base_R_tool); + restarted_speed = twist.head<3>().norm(); + restarted_x = twist.x(); + if (restarted_speed > 0.2) { + break; + } + } + + EXPECT_GT(restarted_speed, 0.2); + EXPECT_LT(restarted_x, -0.2); +} + +TEST(CARTESIAN_TWIST_LIMITER_TEST, PlotLinearVelocityComponentsAndNorm) +{ + CartesianTwistLimiter limiter = makeLimiter(); + const Eigen::Matrix3d base_R_tool = Eigen::Matrix3d::Identity(); + + std::vector time; + std::vector vx; + std::vector vy; + std::vector vz; + std::vector speed; + std::vector target_speed; + std::vector ax; + std::vector ay; + std::vector az; + std::vector accel; + std::vector jx; + std::vector jy; + std::vector jz; + std::vector jerk; + + constexpr double kEmergencyTime = 8.5; + constexpr double kRestartTime = 10.0; + constexpr double kTotalTime = 14.0; + const int steps = static_cast(kTotalTime / kDt); + + time.reserve(steps + 1); + vx.reserve(steps + 1); + vy.reserve(steps + 1); + vz.reserve(steps + 1); + speed.reserve(steps + 1); + target_speed.reserve(steps + 1); + ax.reserve(steps + 1); + ay.reserve(steps + 1); + az.reserve(steps + 1); + accel.reserve(steps + 1); + jx.reserve(steps + 1); + jy.reserve(steps + 1); + jz.reserve(steps + 1); + jerk.reserve(steps + 1); + + bool emergency_stop_called = false; + bool restart_called = false; + for (int i = 0; i <= steps; ++i) { + const double t = i * kDt; + if (t < kEmergencyTime) { + limiter.setTargetTwist(linearTargetAtTime(t), CartesianFrame::Base); + } else if (!emergency_stop_called) { + limiter.emergencyStop(10.0, 50.0); + emergency_stop_called = true; + } else if (t >= kRestartTime && !restart_called) { + limiter.setTargetTwist(makeTwist(0.0, -0.6, 0.0, 0.0, 0.0, 0.0), CartesianFrame::Base); + restart_called = true; + } + + const Twist twist = limiter.update(kDt, base_R_tool); + const Twist target = limiter.getTargetTwistBase(); + const Twist acceleration = limiter.getAccelerationBase(); + const Twist current_jerk = limiter.getJerkBase(); + + time.push_back(t); + vx.push_back(twist.x()); + vy.push_back(twist.y()); + vz.push_back(twist.z()); + speed.push_back(twist.head<3>().norm()); + target_speed.push_back(target.head<3>().norm()); + ax.push_back(acceleration.x()); + ay.push_back(acceleration.y()); + az.push_back(acceleration.z()); + accel.push_back(acceleration.head<3>().norm()); + jx.push_back(current_jerk.x()); + jy.push_back(current_jerk.y()); + jz.push_back(current_jerk.z()); + jerk.push_back(current_jerk.head<3>().norm()); + } + + using namespace matplot; + + auto configure_axes = [](const axes_handle& axes) { + axes->line_width(1.5f); + grid(axes, on); + }; + + auto style_line = [](const auto& line, std::initializer_list color, double width) { + line->line_width(width); + line->color(color); + }; + + auto fig = figure(true); + fig->size(1600, 1200); + fig->font_size(16); + + auto ax_v = subplot(fig, std::array{0.07f, 0.69f, 0.88f, 0.24f}); + hold(ax_v, on); + style_line(plot(ax_v, time, vx), {0.86f, 0.16f, 0.16f}, 3.0); + style_line(plot(ax_v, time, vy), {0.16f, 0.47f, 0.80f}, 3.0); + style_line(plot(ax_v, time, vz), {0.12f, 0.62f, 0.42f}, 3.0); + style_line(plot(ax_v, time, speed), {0.10f, 0.10f, 0.10f}, 3.5); + auto line_target_speed = plot(ax_v, time, target_speed); + line_target_speed->line_width(2.5); + line_target_speed->line_style("--"); + line_target_speed->color({0.80f, 0.55f, 0.10f}); + title(ax_v, "CartesianTwistLimiter Linear Velocity With Emergency Stop And Restart"); + xlabel(ax_v, "time [s]"); + ylabel(ax_v, "velocity [m/s]"); + legend(ax_v, {"vx", "vy", "vz", "speed", "target speed"}); + configure_axes(ax_v); + + auto ax_a = subplot(fig, std::array{0.07f, 0.38f, 0.88f, 0.24f}); + hold(ax_a, on); + style_line(plot(ax_a, time, ax), {0.86f, 0.16f, 0.16f}, 3.0); + style_line(plot(ax_a, time, ay), {0.16f, 0.47f, 0.80f}, 3.0); + style_line(plot(ax_a, time, az), {0.12f, 0.62f, 0.42f}, 3.0); + style_line(plot(ax_a, time, accel), {0.10f, 0.10f, 0.10f}, 3.5); + title(ax_a, "CartesianTwistLimiter Linear Acceleration"); + xlabel(ax_a, "time [s]"); + ylabel(ax_a, "acceleration [m/s^2]"); + legend(ax_a, {"ax", "ay", "az", "acc norm"}); + configure_axes(ax_a); + + auto ax_j = subplot(fig, std::array{0.07f, 0.07f, 0.88f, 0.24f}); + hold(ax_j, on); + style_line(plot(ax_j, time, jx), {0.86f, 0.16f, 0.16f}, 3.0); + style_line(plot(ax_j, time, jy), {0.16f, 0.47f, 0.80f}, 3.0); + style_line(plot(ax_j, time, jz), {0.12f, 0.62f, 0.42f}, 3.0); + style_line(plot(ax_j, time, jerk), {0.10f, 0.10f, 0.10f}, 3.5); + title(ax_j, "CartesianTwistLimiter Linear Jerk"); + xlabel(ax_j, "time [s]"); + ylabel(ax_j, "jerk [m/s^3]"); + legend(ax_j, {"jx", "jy", "jz", "jerk norm"}); + configure_axes(ax_j); + + show(fig); + cla(); +} + +TEST(CARTESIAN_TWIST_LIMITER_TEST, PlotAngularVelocityComponentsAndNorm) +{ + CartesianTwistLimiter limiter = makeLimiter(); + const Eigen::Matrix3d base_R_tool = Eigen::Matrix3d::Identity(); + + std::vector time; + std::vector wx; + std::vector wy; + std::vector wz; + std::vector omega; + std::vector target_omega; + + constexpr double kEmergencyTime = 8.5; + constexpr double kRestartTime = 10.0; + constexpr double kTotalTime = 14.0; + const int steps = static_cast(kTotalTime / kDt); + + time.reserve(steps + 1); + wx.reserve(steps + 1); + wy.reserve(steps + 1); + wz.reserve(steps + 1); + omega.reserve(steps + 1); + target_omega.reserve(steps + 1); + + bool emergency_stop_called = false; + bool restart_called = false; + for (int i = 0; i <= steps; ++i) { + const double t = i * kDt; + if (t < kEmergencyTime) { + limiter.setTargetTwist(angularTargetAtTime(t), CartesianFrame::Base); + } else if (!emergency_stop_called) { + limiter.emergencyStop(10.0, 50.0); + emergency_stop_called = true; + } else if (t >= kRestartTime && !restart_called) { + limiter.setTargetTwist(makeTwist(0.0, 0.0, 0.0, 0.0, 0.0, -0.5), CartesianFrame::Base); + restart_called = true; + } + + const Twist twist = limiter.update(kDt, base_R_tool); + const Twist target = limiter.getTargetTwistBase(); + + time.push_back(t); + wx.push_back(twist(3)); + wy.push_back(twist(4)); + wz.push_back(twist(5)); + omega.push_back(twist.tail<3>().norm()); + target_omega.push_back(target.tail<3>().norm()); + } + + using namespace matplot; + + auto configure_axes = [](const axes_handle& axes) { + axes->line_width(1.5f); + grid(axes, on); + }; + + auto style_line = [](const auto& line, std::initializer_list color, double width) { + line->line_width(width); + line->color(color); + }; + + auto fig = figure(true); + fig->size(1600, 520); + fig->font_size(16); + + auto ax = subplot(fig, std::array{0.07f, 0.14f, 0.88f, 0.74f}); + hold(ax, on); + style_line(plot(ax, time, wx), {0.86f, 0.16f, 0.16f}, 3.0); + style_line(plot(ax, time, wy), {0.16f, 0.47f, 0.80f}, 3.0); + style_line(plot(ax, time, wz), {0.12f, 0.62f, 0.42f}, 3.0); + style_line(plot(ax, time, omega), {0.10f, 0.10f, 0.10f}, 3.5); + auto line_target_omega = plot(ax, time, target_omega); + line_target_omega->line_width(2.5); + line_target_omega->line_style("--"); + line_target_omega->color({0.80f, 0.55f, 0.10f}); + title(ax, "CartesianTwistLimiter Angular Velocity With Emergency Stop And Restart"); + xlabel(ax, "time [s]"); + ylabel(ax, "angular velocity [rad/s]"); + legend(ax, {"wx", "wy", "wz", "omega", "target omega"}); + configure_axes(ax); + + show(fig); + cla(); +} + +TEST(CARTESIAN_TWIST_LIMITER_TEST, PlotSynchronizeTrackingWithMeasuredTwist) +{ + CartesianTwistLimiter limiter = makeLimiter(); + const Eigen::Matrix3d base_R_tool = Eigen::Matrix3d::Identity(); + + Twist measured_twist = Twist::Zero(); + + std::vector time; + std::vector target_speed; + std::vector commanded_speed; + std::vector measured_speed; + std::vector commanded_vx; + std::vector commanded_vy; + std::vector measured_vx; + std::vector measured_vy; + std::vector tracking_error; + std::vector acc_norm; + std::vector jerk_norm; + + constexpr double kTotalTime = 10.0; + constexpr double kTrackingTau = 0.08; + const double alpha = kDt / (kTrackingTau + kDt); + const int steps = static_cast(kTotalTime / kDt); + + time.reserve(steps + 1); + target_speed.reserve(steps + 1); + commanded_speed.reserve(steps + 1); + measured_speed.reserve(steps + 1); + commanded_vx.reserve(steps + 1); + commanded_vy.reserve(steps + 1); + measured_vx.reserve(steps + 1); + measured_vy.reserve(steps + 1); + tracking_error.reserve(steps + 1); + acc_norm.reserve(steps + 1); + jerk_norm.reserve(steps + 1); + + for (int i = 0; i <= steps; ++i) { + const double t = i * kDt; + const Twist target = synchronizeTargetAtTime(t); + + limiter.synchronize(measured_twist, kDt, true); + limiter.setTargetTwist(target, CartesianFrame::Base); + const Twist commanded = limiter.update(kDt, base_R_tool); + + measured_twist += alpha * (commanded - measured_twist); + + time.push_back(t); + target_speed.push_back(target.head<3>().norm()); + commanded_speed.push_back(commanded.head<3>().norm()); + measured_speed.push_back(measured_twist.head<3>().norm()); + commanded_vx.push_back(commanded.x()); + commanded_vy.push_back(commanded.y()); + measured_vx.push_back(measured_twist.x()); + measured_vy.push_back(measured_twist.y()); + tracking_error.push_back((commanded.head<3>() - measured_twist.head<3>()).norm()); + acc_norm.push_back(limiter.getAccelerationBase().head<3>().norm()); + jerk_norm.push_back(limiter.getJerkBase().head<3>().norm()); + } + + using namespace matplot; + + auto configure_axes = [](const axes_handle& axes) { + axes->line_width(1.5f); + grid(axes, on); + }; + + auto style_line = [](const auto& line, std::initializer_list color, double width) { + line->line_width(width); + line->color(color); + }; + + auto fig = figure(true); + fig->size(1600, 1200); + fig->font_size(16); + + auto ax_speed = subplot(fig, std::array{0.07f, 0.69f, 0.88f, 0.24f}); + hold(ax_speed, on); + auto line_target = plot(ax_speed, time, target_speed); + line_target->line_width(2.5); + line_target->line_style("--"); + line_target->color({0.80f, 0.55f, 0.10f}); + style_line(plot(ax_speed, time, commanded_speed), {0.10f, 0.10f, 0.10f}, 3.5); + style_line(plot(ax_speed, time, measured_speed), {0.55f, 0.12f, 0.72f}, 3.0); + title(ax_speed, "Synchronize: target / commanded / measured speed"); + xlabel(ax_speed, "time [s]"); + ylabel(ax_speed, "speed [m/s]"); + legend(ax_speed, {"target speed", "commanded speed", "measured speed"}); + configure_axes(ax_speed); + + auto ax_components = subplot(fig, std::array{0.07f, 0.38f, 0.88f, 0.24f}); + hold(ax_components, on); + style_line(plot(ax_components, time, commanded_vx), {0.86f, 0.16f, 0.16f}, 3.0); + auto line_measured_vx = plot(ax_components, time, measured_vx); + line_measured_vx->line_width(2.5); + line_measured_vx->line_style("--"); + line_measured_vx->color({0.86f, 0.16f, 0.16f}); + style_line(plot(ax_components, time, commanded_vy), {0.16f, 0.47f, 0.80f}, 3.0); + auto line_measured_vy = plot(ax_components, time, measured_vy); + line_measured_vy->line_width(2.5); + line_measured_vy->line_style("--"); + line_measured_vy->color({0.16f, 0.47f, 0.80f}); + title(ax_components, "Synchronize: commanded vs measured components"); + xlabel(ax_components, "time [s]"); + ylabel(ax_components, "velocity [m/s]"); + legend(ax_components, {"cmd vx", "meas vx", "cmd vy", "meas vy"}); + configure_axes(ax_components); + + auto ax_dynamics = subplot(fig, std::array{0.07f, 0.07f, 0.88f, 0.24f}); + hold(ax_dynamics, on); + style_line(plot(ax_dynamics, time, tracking_error), {0.10f, 0.10f, 0.10f}, 3.5); + style_line(plot(ax_dynamics, time, acc_norm), {0.12f, 0.62f, 0.42f}, 3.0); + style_line(plot(ax_dynamics, time, jerk_norm), {0.55f, 0.12f, 0.72f}, 3.0); + title(ax_dynamics, "Synchronize: tracking error / acceleration / jerk"); + xlabel(ax_dynamics, "time [s]"); + ylabel(ax_dynamics, "norm"); + legend(ax_dynamics, {"|cmd - meas|", "acc norm", "jerk norm"}); + configure_axes(ax_dynamics); + + show(fig); + cla(); +} + +} // namespace cmvr diff --git a/cmvr-es/planner/s_curve_planner/include/s_curve_position_planner.h b/cmvr-es/planner/s_curve_planner/include/s_curve_position_planner.h new file mode 100644 index 00000000..551abaa0 --- /dev/null +++ b/cmvr-es/planner/s_curve_planner/include/s_curve_position_planner.h @@ -0,0 +1,100 @@ +// +// Created by lgv on 2026/3/10. +// + +#pragma once + +#include "s_curve_velocity_planner.h" + +#include +#include + +namespace cmvr +{ + +struct SCurvePositionPlannerState +{ + double position; + double velocity; + double acceleration; + double jerk; + double target_position; + bool is_moving; + + SCurvePositionPlannerState() + : position(0.0) + , velocity(0.0) + , acceleration(0.0) + , jerk(0.0) + , target_position(0.0) + , is_moving(false) + {} +}; + +/** + * @brief 单轴位置跟踪规划器 + * + * 结构: + * - 外环:position_error -> desired_velocity + * - 内环:SCurveVelocityPlanner1D 负责 jerk-limited 速度规划 + * + * 这个类用于高频变化目标的位置跟踪,不承担严格点到点 profile 语义。 + */ +class SCurvePositionPlanner1D +{ +public: + SCurvePositionPlanner1D(double max_velocity = 3.0, + double max_acceleration = 10.0, + double max_jerk = 50.0); + + void setConstraints(double max_velocity, double max_acceleration, double max_jerk); + void getConstraints(double& max_velocity, double& max_acceleration, double& max_jerk) const; + + void setPositionGain(double position_gain); + double getPositionGain() const { return position_gain_; } + + void initialize(double position, double velocity = 0.0, double acceleration = 0.0); + void reset(); + + void setTarget(double target_position); + double update(double dt); + + const SCurvePositionPlannerState& getState() const { return state_; } + double getPosition() const { return state_.position; } + double getVelocity() const { return state_.velocity; } + double getAcceleration() const { return state_.acceleration; } + double getJerk() const { return state_.jerk; } + double getTargetPosition() const { return state_.target_position; } + bool isMoving() const { return state_.is_moving; } + +private: + double max_velocity_; + double max_acceleration_; + double max_jerk_; + + SCurvePositionPlannerState state_; + SCurveVelocityPlanner1D velocity_planner_; + double position_gain_; + + static constexpr double EPSILON = 1e-9; + static constexpr double VELOCITY_THRESHOLD = 1e-6; + static constexpr double ACCELERATION_THRESHOLD = 1e-6; + static constexpr double POSITION_THRESHOLD = 1e-7; + + double computeDesiredVelocity(double position_error) const; + double computePlannerStoppingDistance(double velocity, double acceleration) const; + + static double clamp(double value, double min_val, double max_val) + { + return std::max(min_val, std::min(max_val, value)); + } + + static double sign(double value) + { + if (value > EPSILON) return 1.0; + if (value < -EPSILON) return -1.0; + return 0.0; + } +}; + +} // namespace cmvr diff --git a/cmvr-es/planner/s_curve_planner/include/s_curve_velocity_planner.h b/cmvr-es/planner/s_curve_planner/include/s_curve_velocity_planner.h new file mode 100644 index 00000000..f9e59774 --- /dev/null +++ b/cmvr-es/planner/s_curve_planner/include/s_curve_velocity_planner.h @@ -0,0 +1,240 @@ +// +// Created by lgv on 2026/3/9. +// + +#pragma once + +#include +#include +#include + +namespace cmvr +{ + +/** + * @brief 单次速度切换的 S 曲线剖面参数 + * + * 本类表示从任意 (v0, a0) 连续规划到 (vf, 0) 的 3 段 jerk-limited profile: + * + * seg1: jerk = j1, duration = t1 + * seg2: jerk = j2, duration = t2 (当前实现 j2 = 0) + * seg3: jerk = j3, duration = t3 + * + * 其中 j1/j3 为 ±j_max,j2 为 0。 + */ +struct SCurveVelocityProfile +{ + double t1; + double t2; + double t3; + + double total_time; + + double j1; + double j2; + double j3; + + double v0; + double a0; + double vf; + + bool valid; + + SCurveVelocityProfile() + : t1(0.0), t2(0.0), t3(0.0) + , total_time(0.0) + , j1(0.0), j2(0.0), j3(0.0) + , v0(0.0), a0(0.0), vf(0.0) + , valid(false) + {} +}; + +/** + * @brief S 曲线速度规划器状态 + */ +struct SCurveVelocityPlannerState +{ + double velocity; + double acceleration; + double jerk; + + double target_velocity; + + double elapsed_time; + bool has_active_profile; + bool is_moving; + + SCurveVelocityPlannerState() + : velocity(0.0) + , acceleration(0.0) + , jerk(0.0) + , target_velocity(0.0) + , elapsed_time(0.0) + , has_active_profile(false) + , is_moving(false) + {} +}; + +/** + * @brief 单轴速度型 S 曲线规划器 + * + * 语义: + * - setTargetVelocity(v): 设置新目标并重规划 + * - update(dt): 只采样当前 active profile + * - overwriteState(v,a): 仅覆盖当前状态并清掉旧 profile + * - synchronizeAndReplan(v,a): 用测量状态同步,并按当前目标重规划 + * + * 数学目标: + * - 从任意 (v0, a0) 连续规划到 (vf, 0) + * - 满足 |v| <= v_max, |a| <= a_max, |j| <= j_max + */ +class SCurveVelocityPlanner1D +{ +public: + SCurveVelocityPlanner1D(double max_velocity = 1.0, + double max_acceleration = 1.0, + double max_jerk = 5.0); + + void setConstraints(double max_velocity, double max_acceleration, double max_jerk); + void getConstraints(double& max_velocity, double& max_acceleration, double& max_jerk) const; + + /** + * @brief 设置目标变化阈值 + * + * 目标变化量小于该阈值时,不触发重规划。 + */ + void setTargetReplanThreshold(double threshold); + + /** + * @brief 设置同步反馈时的重规划阈值 + * + * 测量速度与当前 profile 采样状态的偏差小于该阈值时, + * synchronizeAndReplan() 只对齐当前状态,不打断现有 profile。 + */ + void setSynchronizeReplanThreshold(double threshold); + + void initialize(double velocity = 0.0, double acceleration = 0.0); + void reset(); + + /** + * @brief 仅覆盖当前状态,并清掉旧 profile + * + * 注意: + * - 这个接口不会自动重规划 + * - 用于初始化、调试、或显式中断旧轨迹 + */ + void overwriteState(double velocity, + double acceleration = 0.0, + bool keep_target_velocity = true); + + /** + * @brief 用测量状态同步,并按当前目标重新规划 + * + * 这是闭环场景真正该用的接口。 + */ + void synchronizeAndReplan(double velocity, + double acceleration = 0.0); + + /** + * @brief 设置目标速度,并立即重规划 + */ + void setTargetVelocity(double target_velocity); + + /** + * @brief 平滑停下 + */ + void stop() { setTargetVelocity(0.0); } + + /** + * @brief 更新一步(只采样) + * @param dt 时间步长 + * @return 当前采样后的速度 + */ + double update(double dt); + + /** + * @brief 计算单次速度切换剖面 + */ + SCurveVelocityProfile calculateProfile(double start_velocity, + double end_velocity, + double start_acceleration = 0.0) const; + + /** + * @brief 给定剖面下,获取时刻 t 的速度 + */ + double getVelocityAtTime(const SCurveVelocityProfile& profile, double t) const; + + /** + * @brief 给定剖面下,获取时刻 t 的加速度 + */ + double getAccelerationAtTime(const SCurveVelocityProfile& profile, double t) const; + + /** + * @brief 给定剖面下,获取时刻 t 的 jerk + */ + double getJerkAtTime(const SCurveVelocityProfile& profile, double t) const; + + /** + * @brief 按固定时间间隔生成轨迹点 + */ + void generateTrajectory(const SCurveVelocityProfile& profile, double dt, + std::vector& velocities, + std::vector& accelerations, + std::vector& jerks) const; + + const SCurveVelocityPlannerState& getState() const { return state_; } + const SCurveVelocityProfile& getActiveProfile() const { return active_profile_; } + + double getVelocity() const { return state_.velocity; } + double getAcceleration() const { return state_.acceleration; } + double getJerk() const { return state_.jerk; } + double getTargetVelocity() const { return state_.target_velocity; } + bool hasActiveProfile() const { return state_.has_active_profile; } + bool isMoving() const { return state_.is_moving; } + +private: + double max_velocity_; + double max_acceleration_; + double max_jerk_; + + double target_replan_threshold_; + double synchronize_replan_threshold_; + + SCurveVelocityPlannerState state_; + SCurveVelocityProfile active_profile_; + + static constexpr double EPSILON = 1e-9; + static constexpr double VELOCITY_THRESHOLD = 1e-6; + static constexpr double ACCELERATION_THRESHOLD = 1e-6; + static constexpr double DEFAULT_TARGET_REPLAN_THRESHOLD = 1e-9; + static constexpr double DEFAULT_SYNCHRONIZE_REPLAN_THRESHOLD = 5e-2; + +private: + void updateIsMovingFlag(); + + /** + * @brief 判断 profile 是否满足速度上限 + */ + bool isVelocityLimitSatisfied(const SCurveVelocityProfile& profile) const; + + /** + * @brief 计算完整剖面终点状态 + */ + void integrateWholeProfile(const SCurveVelocityProfile& profile, + double& v_end, + double& a_end) const; + + static double clamp(double value, double min_val, double max_val) + { + return std::max(min_val, std::min(max_val, value)); + } + + static double sign(double value) + { + if (value > EPSILON) return 1.0; + if (value < -EPSILON) return -1.0; + return 0.0; + } +}; + +} // namespace cmvr diff --git a/cmvr-es/planner/s_curve_planner/src/s_curve_position_planner.cpp b/cmvr-es/planner/s_curve_planner/src/s_curve_position_planner.cpp new file mode 100644 index 00000000..b379f059 --- /dev/null +++ b/cmvr-es/planner/s_curve_planner/src/s_curve_position_planner.cpp @@ -0,0 +1,191 @@ +// +// Created by lgv on 2026/3/10. +// + +#include "../include/s_curve_position_planner.h" + +#include +#include + +namespace cmvr +{ + +SCurvePositionPlanner1D::SCurvePositionPlanner1D(double max_velocity, + double max_acceleration, + double max_jerk) + : max_velocity_(std::abs(max_velocity)) + , max_acceleration_(std::abs(max_acceleration)) + , max_jerk_(std::abs(max_jerk)) + , velocity_planner_(max_velocity_, max_acceleration_, max_jerk_) + , position_gain_(1.0) +{ + velocity_planner_.setTargetReplanThreshold(std::max(1e-3, 0.02 * max_velocity_)); + reset(); +} + +void SCurvePositionPlanner1D::setConstraints(double max_velocity, + double max_acceleration, + double max_jerk) +{ + max_velocity_ = std::abs(max_velocity); + max_acceleration_ = std::abs(max_acceleration); + max_jerk_ = std::abs(max_jerk); + velocity_planner_.setConstraints(max_velocity_, max_acceleration_, max_jerk_); + velocity_planner_.setTargetReplanThreshold(std::max(1e-3, 0.02 * max_velocity_)); +} + +void SCurvePositionPlanner1D::getConstraints(double& max_velocity, + double& max_acceleration, + double& max_jerk) const +{ + max_velocity = max_velocity_; + max_acceleration = max_acceleration_; + max_jerk = max_jerk_; +} + +void SCurvePositionPlanner1D::setPositionGain(double position_gain) +{ + position_gain_ = std::max(0.0, position_gain); +} + +void SCurvePositionPlanner1D::initialize(double position, double velocity, double acceleration) +{ + state_.position = position; + velocity_planner_.initialize(velocity, acceleration); + state_.velocity = velocity_planner_.getVelocity(); + state_.acceleration = velocity_planner_.getAcceleration(); + state_.jerk = 0.0; + state_.target_position = position; + state_.is_moving = false; +} + +void SCurvePositionPlanner1D::reset() +{ + state_ = SCurvePositionPlannerState(); + velocity_planner_.reset(); +} + +void SCurvePositionPlanner1D::setTarget(double target_position) +{ + state_.target_position = target_position; +} + +double SCurvePositionPlanner1D::update(double dt) +{ + if (dt <= 0.0 || dt > 0.1) { + return state_.position; + } + + const double position_error = state_.target_position - state_.position; + if (std::abs(position_error) < POSITION_THRESHOLD && + std::abs(velocity_planner_.getVelocity()) < VELOCITY_THRESHOLD && + std::abs(velocity_planner_.getAcceleration()) < ACCELERATION_THRESHOLD) { + velocity_planner_.overwriteState(0.0, 0.0, false); + state_.position = state_.target_position; + state_.velocity = 0.0; + state_.acceleration = 0.0; + state_.jerk = 0.0; + state_.is_moving = false; + return state_.position; + } + + velocity_planner_.setTargetVelocity(computeDesiredVelocity(position_error)); + + const double old_velocity = velocity_planner_.getVelocity(); + const double new_velocity = velocity_planner_.update(dt); + + state_.velocity = new_velocity; + state_.acceleration = velocity_planner_.getAcceleration(); + state_.jerk = velocity_planner_.getJerk(); + state_.position += 0.5 * (old_velocity + new_velocity) * dt; + + const double updated_error = state_.target_position - state_.position; + if (std::abs(updated_error) < POSITION_THRESHOLD && + std::abs(state_.velocity) < VELOCITY_THRESHOLD && + std::abs(state_.acceleration) < ACCELERATION_THRESHOLD) { + velocity_planner_.overwriteState(0.0, 0.0, false); + state_.position = state_.target_position; + state_.velocity = 0.0; + state_.acceleration = 0.0; + state_.jerk = 0.0; + state_.is_moving = false; + return state_.position; + } + + state_.is_moving = velocity_planner_.isMoving() || + std::abs(updated_error) > POSITION_THRESHOLD; + return state_.position; +} + +double SCurvePositionPlanner1D::computeDesiredVelocity(double position_error) const +{ + if (std::abs(position_error) <= POSITION_THRESHOLD) { + return 0.0; + } + + const double proportional_velocity = + clamp(position_gain_ * position_error, -max_velocity_, max_velocity_); + const double current_velocity = velocity_planner_.getVelocity(); + const double current_acceleration = velocity_planner_.getAcceleration(); + const double stopping_distance = + computePlannerStoppingDistance(current_velocity, current_acceleration); + + if (std::abs(current_velocity) > VELOCITY_THRESHOLD && + sign(current_velocity) != sign(position_error)) { + return 0.0; + } + + if (std::abs(current_velocity) > VELOCITY_THRESHOLD && + sign(current_velocity) == sign(position_error) && + std::abs(position_error) <= std::abs(stopping_distance) * 1.05) { + return 0.0; + } + + double low = 0.0; + double high = max_velocity_; + for (int i = 0; i < 40; ++i) { + const double mid = 0.5 * (low + high); + const double distance = + std::abs(computePlannerStoppingDistance(sign(position_error) * mid, 0.0)); + if (distance <= std::abs(position_error)) { + low = mid; + } else { + high = mid; + } + } + + return sign(position_error) * + std::min(std::abs(proportional_velocity), low); +} + +double SCurvePositionPlanner1D::computePlannerStoppingDistance(double velocity, + double acceleration) const +{ + if (std::abs(velocity) <= VELOCITY_THRESHOLD && + std::abs(acceleration) <= ACCELERATION_THRESHOLD) { + return 0.0; + } + + const auto profile = velocity_planner_.calculateProfile(velocity, 0.0, acceleration); + if (!profile.valid || profile.total_time <= EPSILON) { + return 0.0; + } + + const int steps = std::max(16, static_cast(std::ceil(profile.total_time / 0.002))); + const double dt = profile.total_time / static_cast(steps); + + double distance = 0.0; + double previous_time = 0.0; + double previous_velocity = velocity_planner_.getVelocityAtTime(profile, 0.0); + for (int i = 1; i <= steps; ++i) { + const double t = (i == steps) ? profile.total_time : i * dt; + const double current_velocity = velocity_planner_.getVelocityAtTime(profile, t); + distance += 0.5 * (previous_velocity + current_velocity) * (t - previous_time); + previous_time = t; + previous_velocity = current_velocity; + } + + return distance; +} + +} // namespace cmvr diff --git a/cmvr-es/planner/s_curve_planner/src/s_curve_velocity_planner.cpp b/cmvr-es/planner/s_curve_planner/src/s_curve_velocity_planner.cpp new file mode 100644 index 00000000..b6748195 --- /dev/null +++ b/cmvr-es/planner/s_curve_planner/src/s_curve_velocity_planner.cpp @@ -0,0 +1,562 @@ +// +// Created by lgv on 2026/3/9. +// + +#include "../include/s_curve_velocity_planner.h" + +#include +#include + +namespace cmvr +{ + +SCurveVelocityPlanner1D::SCurveVelocityPlanner1D(double max_velocity, + double max_acceleration, + double max_jerk) + : max_velocity_(std::abs(max_velocity)) + , max_acceleration_(std::abs(max_acceleration)) + , max_jerk_(std::abs(max_jerk)) + , target_replan_threshold_(DEFAULT_TARGET_REPLAN_THRESHOLD) + , synchronize_replan_threshold_(DEFAULT_SYNCHRONIZE_REPLAN_THRESHOLD) +{ + reset(); +} + +void SCurveVelocityPlanner1D::setConstraints(double max_velocity, + double max_acceleration, + double max_jerk) +{ + max_velocity_ = std::abs(max_velocity); + max_acceleration_ = std::abs(max_acceleration); + max_jerk_ = std::abs(max_jerk); + + state_.velocity = clamp(state_.velocity, -max_velocity_, max_velocity_); + state_.acceleration = clamp(state_.acceleration, -max_acceleration_, max_acceleration_); + state_.target_velocity = clamp(state_.target_velocity, -max_velocity_, max_velocity_); + + if (state_.has_active_profile) { + active_profile_ = calculateProfile(state_.velocity, + state_.target_velocity, + state_.acceleration); + state_.elapsed_time = 0.0; + state_.has_active_profile = active_profile_.valid && active_profile_.total_time > EPSILON; + } + + updateIsMovingFlag(); +} + +void SCurveVelocityPlanner1D::getConstraints(double& max_velocity, + double& max_acceleration, + double& max_jerk) const +{ + max_velocity = max_velocity_; + max_acceleration = max_acceleration_; + max_jerk = max_jerk_; +} + +void SCurveVelocityPlanner1D::setTargetReplanThreshold(double threshold) +{ + target_replan_threshold_ = std::max(0.0, threshold); +} + +void SCurveVelocityPlanner1D::setSynchronizeReplanThreshold(double threshold) +{ + synchronize_replan_threshold_ = std::max(0.0, threshold); +} + +void SCurveVelocityPlanner1D::initialize(double velocity, double acceleration) +{ + state_ = SCurveVelocityPlannerState(); + state_.velocity = clamp(velocity, -max_velocity_, max_velocity_); + state_.acceleration = clamp(acceleration, -max_acceleration_, max_acceleration_); + state_.jerk = 0.0; + state_.target_velocity = state_.velocity; + state_.elapsed_time = 0.0; + state_.has_active_profile = false; + + active_profile_ = SCurveVelocityProfile(); + active_profile_.v0 = state_.velocity; + active_profile_.a0 = state_.acceleration; + active_profile_.vf = state_.velocity; + active_profile_.valid = false; + + updateIsMovingFlag(); +} + +void SCurveVelocityPlanner1D::reset() +{ + state_ = SCurveVelocityPlannerState(); + active_profile_ = SCurveVelocityProfile(); +} + +void SCurveVelocityPlanner1D::overwriteState(double velocity, + double acceleration, + bool keep_target_velocity) +{ + state_.velocity = clamp(velocity, -max_velocity_, max_velocity_); + state_.acceleration = clamp(acceleration, -max_acceleration_, max_acceleration_); + state_.jerk = 0.0; + state_.elapsed_time = 0.0; + state_.has_active_profile = false; + + if (!keep_target_velocity) { + state_.target_velocity = state_.velocity; + } else { + state_.target_velocity = clamp(state_.target_velocity, -max_velocity_, max_velocity_); + } + + active_profile_ = SCurveVelocityProfile(); + active_profile_.v0 = state_.velocity; + active_profile_.a0 = state_.acceleration; + active_profile_.vf = state_.target_velocity; + active_profile_.valid = false; + + updateIsMovingFlag(); +} + + void SCurveVelocityPlanner1D::synchronizeAndReplan(double velocity, + double acceleration) +{ + const double measured_velocity = clamp(velocity, -max_velocity_, max_velocity_); + const double measured_acceleration = + clamp(acceleration, -max_acceleration_, max_acceleration_); + + if (!state_.has_active_profile && + std::abs(measured_velocity - state_.target_velocity) <= VELOCITY_THRESHOLD) { + state_.velocity = state_.target_velocity; + state_.acceleration = 0.0; + state_.jerk = 0.0; + updateIsMovingFlag(); + return; + } + + // 如果测量值已经基本落在当前采样状态上,就继续沿现有 profile 走。 + // 否则每拍都从同一目标重规划,会把已经进入的 jerk phase 反复打断。 + if (state_.has_active_profile && + std::abs(measured_velocity - state_.velocity) <= synchronize_replan_threshold_) { + state_.velocity = measured_velocity; + state_.acceleration = measured_acceleration; + state_.jerk = getJerkAtTime(active_profile_, state_.elapsed_time); + updateIsMovingFlag(); + return; + } + + state_.velocity = measured_velocity; + state_.acceleration = measured_acceleration; + state_.jerk = 0.0; + + active_profile_ = calculateProfile(state_.velocity, + state_.target_velocity, + state_.acceleration); + + state_.elapsed_time = 0.0; + state_.has_active_profile = active_profile_.total_time > EPSILON; + + updateIsMovingFlag(); +} + +void SCurveVelocityPlanner1D::setTargetVelocity(double target_velocity) +{ + const double new_target = clamp(target_velocity, -max_velocity_, max_velocity_); + + const bool same_target = + std::abs(new_target - state_.target_velocity) <= target_replan_threshold_; + + if (same_target && + state_.has_active_profile) { + return; + } + + if (same_target && + !state_.has_active_profile && + std::abs(state_.velocity - new_target) <= VELOCITY_THRESHOLD && + std::abs(state_.acceleration) <= ACCELERATION_THRESHOLD) { + return; + } + + state_.target_velocity = new_target; + + active_profile_ = calculateProfile(state_.velocity, + state_.target_velocity, + state_.acceleration); + + state_.elapsed_time = 0.0; + state_.has_active_profile = active_profile_.valid && active_profile_.total_time > EPSILON; + + updateIsMovingFlag(); +} + +double SCurveVelocityPlanner1D::getVelocityAtTime(const SCurveVelocityProfile& profile, double t) const +{ + if (!profile.valid) { + return profile.v0; + } + + if (t <= 0.0) { + return profile.v0; + } + if (t >= profile.total_time) { + return profile.vf; + } + + double v = profile.v0; + double a = profile.a0; + + auto process_segment = [&](double dt, double jerk) { + v += a * dt + 0.5 * jerk * dt * dt; + a += jerk * dt; + }; + + // seg1 + if (t <= profile.t1) { + process_segment(t, profile.j1); + return v; + } + process_segment(profile.t1, profile.j1); + + // seg2 + const double t_after_1 = t - profile.t1; + if (t_after_1 <= profile.t2) { + process_segment(t_after_1, profile.j2); + return v; + } + process_segment(profile.t2, profile.j2); + + // seg3 + const double t_after_2 = t_after_1 - profile.t2; + process_segment(t_after_2, profile.j3); + return v; +} + +double SCurveVelocityPlanner1D::getAccelerationAtTime(const SCurveVelocityProfile& profile, double t) const +{ + if (!profile.valid) { + return profile.a0; + } + + if (t <= 0.0) { + return profile.a0; + } + if (t >= profile.total_time) { + return 0.0; + } + + double a = profile.a0; + + auto process_segment = [&](double dt, double jerk) { + a += jerk * dt; + }; + + // seg1 + if (t <= profile.t1) { + process_segment(t, profile.j1); + return a; + } + process_segment(profile.t1, profile.j1); + + // seg2 + const double t_after_1 = t - profile.t1; + if (t_after_1 <= profile.t2) { + process_segment(t_after_1, profile.j2); + return a; + } + process_segment(profile.t2, profile.j2); + + // seg3 + const double t_after_2 = t_after_1 - profile.t2; + process_segment(t_after_2, profile.j3); + return a; +} + +double SCurveVelocityPlanner1D::getJerkAtTime(const SCurveVelocityProfile& profile, double t) const +{ + if (!profile.valid) { + return 0.0; + } + + if (t <= 0.0 || t >= profile.total_time) { + return 0.0; + } + + if (t <= profile.t1) { + return profile.j1; + } + if (t <= profile.t1 + profile.t2) { + return profile.j2; + } + return profile.j3; +} + +void SCurveVelocityPlanner1D::integrateWholeProfile(const SCurveVelocityProfile& profile, + double& v_end, + double& a_end) const +{ + double v = profile.v0; + double a = profile.a0; + + auto process_segment = [&](double dt, double jerk) { + v += a * dt + 0.5 * jerk * dt * dt; + a += jerk * dt; + }; + + process_segment(profile.t1, profile.j1); + process_segment(profile.t2, profile.j2); + process_segment(profile.t3, profile.j3); + + v_end = v; + a_end = a; +} + +bool SCurveVelocityPlanner1D::isVelocityLimitSatisfied(const SCurveVelocityProfile& profile) const +{ + if (!profile.valid) { + return true; + } + + std::vector check_times; + check_times.reserve(8); + + check_times.push_back(0.0); + check_times.push_back(profile.t1); + check_times.push_back(profile.t1 + profile.t2); + check_times.push_back(profile.total_time); + + // seg1 内部若 acceleration 过零,则 velocity 可能在段内出现极值 + if (std::abs(profile.j1) > EPSILON && profile.t1 > EPSILON) { + const double tz = -profile.a0 / profile.j1; + if (tz > EPSILON && tz < profile.t1 - EPSILON) { + check_times.push_back(tz); + } + } + + for (double t : check_times) { + const double v = getVelocityAtTime(profile, t); + if (std::abs(v) > max_velocity_ + 1e-7) { + return false; + } + } + + return true; +} + +SCurveVelocityProfile SCurveVelocityPlanner1D::calculateProfile(double start_velocity, + double end_velocity, + double start_acceleration) const +{ + SCurveVelocityProfile best; + best.v0 = clamp(start_velocity, -max_velocity_, max_velocity_); + best.a0 = clamp(start_acceleration, -max_acceleration_, max_acceleration_); + best.vf = clamp(end_velocity, -max_velocity_, max_velocity_); + + if (max_jerk_ <= EPSILON || max_acceleration_ <= EPSILON) { + // 退化情况:这里不做特殊退化规划,直接返回 invalid + return best; + } + + const double v0 = best.v0; + const double a0 = best.a0; + const double vf = best.vf; + + // 目标方向坐标:尽量统一到“signed frame 下 Δv >= 0” + double s = sign(vf - v0); + if (std::abs(vf - v0) <= VELOCITY_THRESHOLD) { + s = 1.0; + } + + const double dv = s * (vf - v0); // >= 0 + const double a0s = s * a0; // signed frame 下的初始 acceleration + const double j = max_jerk_; + const double amax = max_acceleration_; + + auto normalize_nonnegative = [](double x) { + return (x < 0.0 && x > -1e-10) ? 0.0 : x; + }; + + auto try_candidate = [&](double t1, double t2, double t3, + double j1s, double j2s, double j3s) { + t1 = normalize_nonnegative(t1); + t2 = normalize_nonnegative(t2); + t3 = normalize_nonnegative(t3); + + if (t1 < 0.0 || t2 < 0.0 || t3 < 0.0) { + return; + } + + SCurveVelocityProfile cand; + cand.t1 = t1; + cand.t2 = t2; + cand.t3 = t3; + cand.total_time = t1 + t2 + t3; + + cand.j1 = s * j1s; + cand.j2 = s * j2s; + cand.j3 = s * j3s; + + cand.v0 = v0; + cand.a0 = a0; + cand.vf = vf; + cand.valid = true; + + double vend = 0.0; + double aend = 0.0; + integrateWholeProfile(cand, vend, aend); + + if (std::abs(vend - vf) > 1e-5) { + return; + } + if (std::abs(aend) > 1e-5) { + return; + } + if (!isVelocityLimitSatisfied(cand)) { + return; + } + + if (!best.valid || cand.total_time < best.total_time) { + best = cand; + } + }; + + // ---------------- UDU 三角形(无平台) ---------------- + { + // Δv = (2A^2 - a0^2)/(2j) + const double A2 = 0.5 * (2.0 * j * dv + a0s * a0s); + if (A2 >= -1e-10) { + const double A = std::sqrt(std::max(0.0, A2)); + if (A <= amax + 1e-10 && A >= a0s - 1e-10) { + const double t1 = (A - a0s) / j; + const double t2 = 0.0; + const double t3 = A / j; + try_candidate(t1, t2, t3, +j, 0.0, -j); + } + } + } + + // ---------------- UDU 梯形(有平台) ---------------- + { + const double A = amax; + if (A > EPSILON && A >= a0s - 1e-10) { + const double base = (2.0 * A * A - a0s * a0s) / (2.0 * j); + const double t1 = (A - a0s) / j; + const double t2 = (dv - base) / A; + const double t3 = A / j; + try_candidate(t1, t2, t3, +j, 0.0, -j); + } + } + + // ---------------- DUD 三角形(无平台) ---------------- + { + // Δv = (a0^2 - 2B^2)/(2j) + const double B2 = 0.5 * (a0s * a0s - 2.0 * j * dv); + if (B2 >= -1e-10) { + const double B = std::sqrt(std::max(0.0, B2)); + if (B <= amax + 1e-10 && B >= -a0s - 1e-10) { + const double t1 = (a0s + B) / j; + const double t2 = 0.0; + const double t3 = B / j; + try_candidate(t1, t2, t3, -j, 0.0, +j); + } + } + } + + // ---------------- DUD 梯形(有平台) ---------------- + { + const double B = amax; + if (B > EPSILON && B >= -a0s - 1e-10) { + const double base = (a0s * a0s - 2.0 * B * B) / (2.0 * j); + const double t1 = (a0s + B) / j; + const double t2 = (base - dv) / B; + const double t3 = B / j; + try_candidate(t1, t2, t3, -j, 0.0, +j); + } + } + + // 已到终点附近 + if (!best.valid && + std::abs(vf - v0) <= VELOCITY_THRESHOLD && + std::abs(a0) <= ACCELERATION_THRESHOLD) { + best.valid = false; + best.total_time = 0.0; + best.v0 = v0; + best.a0 = a0; + best.vf = vf; + } + + return best; +} + +void SCurveVelocityPlanner1D::generateTrajectory(const SCurveVelocityProfile& profile, double dt, + std::vector& velocities, + std::vector& accelerations, + std::vector& jerks) const +{ + velocities.clear(); + accelerations.clear(); + jerks.clear(); + + if (!profile.valid || profile.total_time <= 0.0 || dt <= 0.0) { + velocities.push_back(profile.v0); + accelerations.push_back(profile.a0); + jerks.push_back(0.0); + return; + } + + const int num_points = static_cast(std::ceil(profile.total_time / dt)) + 1; + velocities.reserve(num_points); + accelerations.reserve(num_points); + jerks.reserve(num_points); + + for (double t = 0.0; t <= profile.total_time; t += dt) { + velocities.push_back(getVelocityAtTime(profile, t)); + accelerations.push_back(getAccelerationAtTime(profile, t)); + jerks.push_back(getJerkAtTime(profile, t)); + } + + if (velocities.empty() || std::abs(velocities.back() - profile.vf) > VELOCITY_THRESHOLD) { + velocities.push_back(profile.vf); + accelerations.push_back(0.0); + jerks.push_back(0.0); + } +} + +double SCurveVelocityPlanner1D::update(double dt) +{ + if (dt <= 0.0) { + return state_.velocity; + } + + if (!state_.has_active_profile || !active_profile_.valid) { + state_.jerk = 0.0; + updateIsMovingFlag(); + return state_.velocity; + } + + state_.elapsed_time += dt; + + if (state_.elapsed_time >= active_profile_.total_time) { + state_.elapsed_time = active_profile_.total_time; + state_.velocity = active_profile_.vf; + state_.acceleration = 0.0; + state_.jerk = 0.0; + state_.has_active_profile = false; + updateIsMovingFlag(); + return state_.velocity; + } + + state_.velocity = getVelocityAtTime(active_profile_, state_.elapsed_time); + state_.acceleration = getAccelerationAtTime(active_profile_, state_.elapsed_time); + state_.jerk = getJerkAtTime(active_profile_, state_.elapsed_time); + + updateIsMovingFlag(); + return state_.velocity; +} + +void SCurveVelocityPlanner1D::updateIsMovingFlag() +{ + state_.is_moving = + state_.has_active_profile || + std::abs(state_.velocity) > VELOCITY_THRESHOLD || + std::abs(state_.target_velocity) > VELOCITY_THRESHOLD || + std::abs(state_.acceleration) > ACCELERATION_THRESHOLD; +} + +} // namespace cmvr diff --git a/data/ik_movel_scurve.csv b/data/ik_movel_scurve.csv index 9e5a053e..61bd7747 100644 --- a/data/ik_movel_scurve.csv +++ b/data/ik_movel_scurve.csv @@ -1,169 +1,547 @@ t,q1,q2,q3,q4,q5,q6,q7 0,0.25,1,1.5707963267949,1.5707963267949,-1.5707963267949,0,0 0.002,0.25,1,1.5707963267949,1.5707963267949,-1.5707963267949,0,0 -0.004,0.250001842320363,1.00000035621738,1.57079547429742,1.57079444210524,-1.57079668301227,3.34430494936117e-07,1.42912469251269e-07 -0.006,0.250009211599068,1.00000178109261,1.57079206431392,1.57078690333631,-1.57079810788309,1.67216263610067e-06,7.14561905387093e-07 -0.008,0.250025792451452,1.0000049871135,1.57078439190875,1.57076994101371,-1.57080131385445,4.68215140661819e-06,2.00076916853545e-06 -0.01,0.25005526942355,1.00001068691258,1.57077075230822,1.57073978540339,-1.57080701340708,1.00336083670537e-05,4.28734398236013e-06 -0.012,0.250101326918013,1.00001959342197,1.57074944107367,1.5706926662341,-1.57081591909138,1.83962760218046e-05,7.8600730098651e-06 -0.014,0.250167649092643,1.00003242008538,1.57071875433882,1.57062481231678,-1.57082874357675,3.04408038203672e-05,1.3004703478399e-05 -0.016,0.250257919731615,1.00004988112752,1.57067698911111,1.57053245106106,-1.57084619971424,4.68392258226527e-05,2.00069223188819e-05 -0.018,0.250375822089508,1.00007269188062,1.57062244363736,1.57041180788839,-1.57086900061264,6.8265540079134e-05,2.91523307867103e-05 -0.02,0.25052503870832,1.00010156916829,1.57055341783365,1.57025910554178,-1.57089785972805,9.53963898036617e-05,4.07264145527739e-05 -0.022,0.250709251207703,1.00013723174661,1.57046821377978,1.57007056329152,-1.57093349096721,0.000128911846446335,5.50145092939761e-05 -0.024,0.25093214004874,1.00018040080262,1.57036513627856,1.56984239603644,-1.5709766088048,0.000169496294800861,7.23017618654089e-05 -0.026,0.251197384271681,1.00023180051036,1.57024249348038,1.56957081330007,-1.57102792841521,0.000217839420297711,9.28730871779383e-05 -0.028,0.251508661208166,1.00029215864445,1.57009859757347,1.56925201812088,-1.57108816581923,0.000274637298630594,0.000117013120891842 -0.03,0.251869646168614,1.00036220725132,1.56993176554023,1.56888220583562,-1.57115803804603,0.000340593587825559,0.000145006167898724 -0.032,0.252284012105614,1.00044268337735,1.56974031997957,1.56845756275503,-1.5712382633105,0.000416420822772189,0.000177136146195836 -0.034,0.252755429254375,1.00053432985264,1.56952258999442,1.56797426473065,-1.57132956120555,0.000502841812073582,0.000213686525014057 -0.036,0.253287564751547,1.00063789612751,1.56927691214216,1.56742847561208,-1.57143265290722,0.000600591136810968,0.000254940254750321 -0.038,0.253884082234046,1.00075413915643,1.56900163144327,1.56681634559378,-1.571548261389,0.000710416750429909,0.000301179684129656 -0.04,0.254548641419916,1.00088382432053,1.56869510244007,1.56613400945109,-1.57167711163798,0.000833081678402873,0.000352686456771557 -0.042,0.255284897673769,1.00102772637452,1.56835569029184,1.56537758466548,-1.57181993086087,0.00096936581556545,0.000409741374578847 -0.044,0.256096501559966,1.00118663039675,1.56798177188531,1.56454316943985,-1.57197744866114,0.00112006781800965,0.000472624208638559 -0.046,0.25698709838616,1.00136133272898,1.56757173694767,1.5636268406016,-1.57215039717532,0.00128600708927412,0.000541613444858038 -0.048,0.257960327706088,1.00155264235986,1.56712398963253,1.56262465129037,-1.57233951158172,0.00146802596391654,0.000616986357907511 -0.05,0.25901982283555,1.00176138210273,1.56663694990973,1.56153262858032,-1.57254553040044,0.00166699193133438,0.000699018857582903 -0.052,0.260169210372693,1.0019883896871,1.5661090548831,1.56034677099537,-1.57276919568873,0.00188379993879461,0.000787985203963878 -0.054,0.261412109710082,1.00223451898233,1.5655387602637,1.55906304586521,-1.57301125333204,0.00211937482346646,0.000884157781179529 -0.056,0.262752132550084,1.00250064125313,1.56492454189639,1.55767738653966,-1.57327245334267,0.0023746738510965,0.000987806843381478 -0.058,0.264192882428002,1.00278764644405,1.56426489733812,1.55618568945554,-1.57355355016504,0.00265068936227716,0.00109920022985152 -0.06,0.265737954247884,1.00309644448937,1.56355834748601,1.55458381105016,-1.57385530298695,0.00294845152742228,0.00121860304593726 -0.062,0.267390933836477,1.00342796664498,1.56280343825317,1.55286756451418,-1.57417847605577,0.00326903121175137,0.00134627730627171 -0.064,0.269155397521335,1.00378316683865,1.5619987422898,1.55103271637648,-1.57452383899889,0.00361354295180039,0.00148248153649196 -0.066,0.271034911739794,1.00416302303465,1.5611428607472,1.54907498291238,-1.57489216714748,0.00398314804522704,0.00162747032942876 -0.068,0.273033032686143,1.00456853860907,1.56023442508162,1.54699002636592,-1.57528424186254,0.0043790577559646,0.00178149385149385 -0.07,0.275153306005132,1.00500074373146,1.5592720988951,1.54477345097585,-1.57570085086258,0.00480253663710795,0.00194479729474488 -0.0720000000000001,0.277399266540752,1.00546069674887,1.55825457980963,1.5424207987938,-1.57614278855189,0.00525490597429168,0.00211762026986112 -0.0740000000000001,0.279774438150143,1.00594948556802,1.55718060137111,1.53992754528202,-1.5766108563487,0.00573754735275206,0.00230019613501494 -0.0760000000000001,0.282282333593441,1.00646822903136,1.55604893497889,1.53728909467663,-1.57710586301241,0.00625190635175666,0.00249275125537641 -0.0780000000000001,0.28492645451149,1.00701807828284,1.5548583918365,1.53450077510092,-1.57762862496925,0.00679949637064798,0.00269550418774032 -0.0800000000000001,0.287710291504475,1.00760021811934,1.55360782491869,1.53155783341149,-1.57817996663587,0.00738190259138794,0.00290866478451633 -0.0820000000000001,0.290636961340257,1.00821579201921,1.55229629365924,1.5284558144833,-1.57876064876227,0.0080007093413499,0.00313240550072555 -0.0840000000000001,0.293704335855572,1.00886487094147,1.55092524192205,1.52519573812858,-1.5793704003301,0.00865645872516008,0.00336648940686858 -0.0860000000000001,0.296908573121487,1.00954717080892,1.54949689362425,1.52178041113848,-1.58000861146009,0.00934935295292093,0.00361054168475044 -0.0880000000000001,0.300245837642274,1.01026240719637,1.54801347594706,1.51821261851234,-1.58067467243228,0.0100796063044685,0.00386418116996403 -0.0900000000000001,0.303712301919588,1.01101029304587,1.54647721672544,1.51449512663298,-1.58136797317742,0.0108474415190109,0.00412702031074811 -0.0920000000000001,0.307304147961211,1.01179053649422,1.54489034191344,1.51063068636732,-1.58208790279819,0.0116530862970873,0.00439866516278821 -0.0940000000000001,0.311017568729452,1.01260283881528,1.54325507312735,1.50662203609744,-1.58283384912085,0.0124967699139056,0.00467871542248941 -0.0960000000000001,0.31484876952446,1.01344689247894,1.54157362526907,1.5024719046872,-1.583605198278,0.0133787199429329,0.00496676450076238 -0.0980000000000001,0.318793969297783,1.01432237932795,1.5398482042319,1.49818301438949,-1.58440133432277,0.0142991590884302,0.00526239963889535 -0.1,0.322849401891661,1.015228968873,1.53808100469095,1.4937580836989,-1.58522163887456,0.0152583021254375,0.00556520206763711 -0.102,0.32701131719969,1.0161663167061,1.53627420798018,1.48919983015459,-1.58606549079628,0.0162563529455337,0.00587474721019104 -0.104,0.331275982244604,1.01713406303155,1.53442998005796,1.48451097309827,-1.58693226590272,0.0172935017065123,0.00619060492941906 -0.106,0.335639682169149,1.01813183131323,1.53255046956309,1.47969423639167,-1.58782133669963,0.0183699220839392,0.00651233981917903 -0.108,0.340098721136147,1.01915922703648,1.53063780596284,1.47475235109838,-1.58873207215267,0.0194857686223861,0.00683951153936941 -0.11,0.34464942313408,1.0202158365824,1.52869409779455,1.46968805813435,-1.58966383748541,0.0206411741839657,0.00717167519393315 -0.112,0.349288132684715,1.02130122621178,1.52672143100214,1.46450411089169,-1.59061599400533,0.0218362474916401,0.0075083817507786 -0.114,0.354011215449523,1.02241494115569,1.5247218673686,1.45920327784012,-1.59158789895642,0.0230710707646193,0.00784917850230876 -0.116,0.358815058731886,1.02355650480918,1.52269744304558,1.45378834511041,-1.59257890539705,0.0243456974430299,0.00819360956501266 -0.118,0.363696071872331,1.02472541802433,1.52065016718065,1.44826211906423,-1.59358836210158,0.0256601499989021,0.008541216416363 -0.12,0.368650686534288,1.02592115849861,1.51858202064295,1.44262742885442,-1.59461561348388,0.0270144178304039,0.00889153846708243 -0.122,0.373675356878174,1.0271431802541,1.51649495484737,1.43688712898005,-1.59565999954108,0.028408455236147,0.0092441136666864 -0.124,0.378766559621848,1.02839091320318,1.5143908906776,1.43104410184024,-1.59672085581554,0.029842179466293,0.0095984791400826 -0.126,0.383920793985801,1.02966376279578,1.51227171750777,1.42510126029066,-1.5977975133731,0.0313154688471123,0.00995417185290487 -0.128,0.389132439035416,1.0309605766285,1.51014016859368,1.41906403208699,-1.59888885015124,0.0328275393694689,0.0103105827840801 -0.13,0.394393098808599,1.03227945999131,1.5080000631315,1.41294118320728,-1.59999314805991,0.0343767034910838,0.0106669203107345 -0.132,0.399694836020666,1.033618566465,1.5058549654811,1.40674111753033,-1.60110876649478,0.0359612723489954,0.0110224379770385 -0.134,0.405030176915752,1.03497610371369,1.50370818616009,1.40047186364808,-1.60223414483986,0.0375795633954864,0.011376435455188 -0.136,0.410392110969218,1.03635033828429,1.50156278538738,1.39414106653408,-1.60336780395946,0.0392299073945067,0.0117282589581785 -0.138,0.415774086150845,1.03773959945933,1.49942157876802,1.38775598354351,-1.60450834678907,0.0409106547468421,0.0120773011659201 -0.14,0.421170000430154,1.03914228222015,1.49728714473416,1.38132348422386,-1.60565445813446,0.0426201811283066,0.0124230007266122 -0.142,0.42657419016316,1.04055684938462,1.49516183338634,1.37485005343265,-1.60680490378529,0.0443568924387481,0.0127648413940003 -0.144,0.43198141594933,1.04198183298805,1.49304777641304,1.36834179728575,-1.60795852904412,0.0461192290709096,0.0131023508586034 -0.146,0.437386846492176,1.04341583497793,1.49094689780066,1.36180445149229,-1.60911425676545,0.0479056695173839,0.0134350993275664 -0.148,0.442786040939981,1.04485752729382,1.4888609250818,1.35524339166883,-1.61027108499168,0.0497147333412469,0.0137626979037592 -0.15,0.448174930126541,1.04630565140208,1.48679140090333,1.34866364526346,-1.61142808426523,0.0515449835416281,0.0140847968103465 -0.152,0.453549797077296,1.04775901735317,1.48473969472809,1.34206990475832,-1.61258439468812,0.0533950283496603,0.0144010835024751 -0.154,0.458907257094704,1.04921650242608,1.48270701451423,1.33546654185659,-1.61373922279214,0.0552635224931243,0.0147112807031349 -0.156,0.464244237688956,1.05067704942034,1.48069441824316,1.32885762239553,-1.61489183827549,0.0571491679698173,0.0150151443957416 -0.158,0.469557958576464,1.05213966465222,1.47870282519217,1.32224692176043,-1.61604157065429,0.0590507143704104,0.0153124618016734 -0.16,0.474845911929095,1.05360341570695,1.47673302686921,1.3156379406061,-1.61718780587073,0.0609669587914467,0.0156030493669124 -0.162,0.480105843021937,1.05506742899422,1.47478569754699,1.30903392072057,-1.61832998289332,0.0628967453783252,0.0158867507781568 -0.164,0.485335731396195,1.05653088714955,1.47286140434986,1.30243786089249,-1.61946759033905,0.0648389645367334,0.0161634350252857 -0.166,0.490533772626531,1.05799302631962,1.47096061686153,1.29585253266698,-1.62060016314195,0.0667925518491565,0.0164329945239143 -0.168,0.495698360758408,1.05945313336497,1.4690837162338,1.28928049589621,-1.62172727928815,0.0687564867308961,0.0166953433089443 -0.17,0.50082807146055,1.06091054300935,1.46723100378656,1.2827241140101,-1.62284855663301,0.0707297908575757,0.016950415307515 -0.172,0.505921645920092,1.06236463496105,1.4654027090981,1.27618556894938,-1.62396364981244,0.0727115263934614,0.0171981626975632 -0.174,0.510977975493128,1.06381483102725,1.46359899759148,1.26966687571855,-1.62507224725731,0.0747007940471486,0.0174385543562951 -0.176,0.515996087110802,1.06526059223957,1.46181997762848,1.26316989652938,-1.62617406831665,0.0766967309783177,0.0176715744012447 -0.178,0.520975129430561,1.06670141600493,1.46006570712712,1.25669635451767,-1.62726886049336,0.0786985085763708,0.0178972208252095 -0.18,0.525914359713424,1.06813683329348,1.4583361997222,1.25024784702624,-1.62835639679346,0.0807053301288722,0.018115504225208 -0.182,0.530813131400832,1.06956640587183,1.45663143049105,1.24382585845659,-1.62943647318829,0.0827164283948316,0.0183264466246588 -0.184,0.535670882358609,1.07098972358797,1.45495134126864,1.23743177269962,-1.63050890618749,0.084731063095021,0.0185300803872241 -0.186,0.540487123750597,1.07240640171113,1.45329584557758,1.2310668851637,-1.6315735305189,0.0867485183286836,0.0187264472201739 -0.188,0.54526142950029,1.07381607832826,1.45166483319964,1.22473241442463,-1.63263019691059,0.0887680999231974,0.0189155972646791 -0.19,0.549993426295309,1.07521841179622,1.45005817441603,1.21842951352881,-1.63367876996873,0.0907891327204559,0.0190975882701343 -0.192,0.55468278408642,1.07661307824739,1.44847572394389,1.21215928098644,-1.63471912614449,0.0928109578009326,0.0192724848494072 -0.194,0.559329207029992,1.07799976914393,1.4469173245969,1.2059227714976,-1.63575115178179,0.0948329296435486,0.0194403578118137 -0.196,0.563932424820101,1.0793781888748,1.44538281069794,1.19972100645986,-1.63677474123723,0.096854413216551,0.0196012835706063 -0.198,0.56849218435373,1.08074805238733,1.44387201127166,1.19355498431187,-1.63778979506226,0.0988747809915702,0.0197553436218292 -0.2,0.573008241669545,1.08210908284378,1.4423847530452,1.18742569077398,-1.6387962182374,0.10089340986981,0.0199026240915238 -0.202,0.57748035409739,1.08346100929107,1.44092086328537,1.18133410905379,-1.63979391844655,0.102909678005867,0.0200432153484704 -0.204,0.581908272551671,1.08480356433026,1.43948017250095,1.17528123009259,-1.6407828043792,0.104922961510877,0.0201772116799003 -0.206,0.586291733897091,1.08613648176994,1.43806251703955,1.16926806293759,-1.64176278404674,0.106932631012464,0.0203047110279236 -0.208,0.590630453309381,1.08745949424521,1.43666774160949,1.16329564533564,-1.64273376309773,0.108938048044185,0.0204258147847799 -0.21,0.594924116546526,1.08877233078131,1.43529570175815,1.15736505465657,-1.64369564311545,0.110938561231623,0.020540627645439 -0.212,0.59917237203715,1.09007471427752,1.43394626634078,1.15147741926967,-1.6446483198792,0.112933502235891,0.0206492575165592 -0.214,0.603374822681679,1.09136635888301,1.43261932001573,1.14563393051492,-1.6455916815681,0.114922181407675,0.0207518154813593 -0.216,0.607531017248159,1.09264696723191,1.43131476580591,1.13983585543318,-1.64652560688365,0.116903883095872,0.0208484158205918 -0.218,0.611640441227448,1.09391622749866,1.43003252777044,1.13408455044681,-1.64744996306321,0.118877860543898,0.0209391760905339 -0.22,0.615702506990877,1.09517381022828,1.42877255383642,1.12838147621652,-1.64836460375254,0.120843330293354,0.0210242172597587 -0.222,0.619716543066404,1.0964193648871,1.42753481884801,1.12272821394221,-1.64926936669954,0.122799465998217,0.0211036639074507 -0.224,0.623681782314903,1.09765251606879,1.42631932789977,1.117126483429,-1.65016407122443,0.124745391532273,0.0211776444872216 -0.226,0.627597348744652,1.09887285927698,1.42512612003332,1.11157816330648,-1.65104851541256,0.126680173246775,0.0212462916618221 -0.228,0.631462242646331,1.10007995618832,1.42395527239265,1.10608531387447,-1.65192247296484,0.12860281120284,0.0213097427159108 -0.23,0.635275323659058,1.1012733292778,1.42280690495391,1.10065020315785,-1.65278568962571,0.130512229161623,0.0213681400562343 -0.232,0.63903529128488,1.10245245565926,1.42168118597271,1.09527533689436,-1.65363787909004,0.132407263061863,0.0214216318113319 -0.234,0.642736496313849,1.10361545093439,1.42057957825489,1.08996946544768,-1.6544777729133,0.134284534660412,0.0214703177474029 -0.236,0.646372093974725,1.10476004924951,1.41950386936223,1.08474313656344,-1.65530383140351,0.136139993161554,0.0215143104730273 -0.238,0.64993532926834,1.10588400622119,1.41845578486969,1.07960686203962,-1.65611453450217,0.137969559783451,0.0215537551641745 -0.24,0.653419530807091,1.10698509841652,1.41743699292,1.07457111972711,-1.65690838059529,0.139769129987341,0.021588827953406 -0.242,0.65681810545678,1.10806112300992,1.41644910860526,1.06964635415541,-1.65768388547656,0.141534576296102,0.0216197341763527 -0.244,0.66012453378391,1.10910989761547,1.41549369817407,1.06484297577424,-1.65843958146359,0.143261751708139,0.0216467064714335 -0.246,0.663332366311344,1.11012926029438,1.41457228306306,1.06017135880129,-1.65917401666846,0.144946493713076,0.0216700027291523 -0.248,0.666435220584072,1.11111706973783,1.41368634375261,1.05564183766743,-1.65988575442362,0.146584628915491,0.021689903887829 -0.25,0.669426779044936,1.1120712056256,1.41283732344721,1.05126470205371,-1.6605733728641,0.148171978271759,0.0217067115733034 -0.252,0.67230080954945,1.11298957599929,1.41202662518981,1.04705015855001,-1.66123546948518,0.14970437454984,0.0217207455592956 -0.254,0.675054918669169,1.11387129484519,1.41125452047699,1.04300281446194,-1.66187148961923,0.151179673697358,0.0217323335474792 -0.256,0.677689677898528,1.11471641371178,1.41052042673693,1.03912289958477,-1.66248153408414,0.152597336038527,0.0217417933709644 -0.258,0.680205902287652,1.11552507078587,1.40982371167993,1.03541023116908,-1.66306575878394,0.153956995337513,0.021749428991169 -0.26,0.682604636308303,1.11629748610458,1.409163698156,1.03186423250805,-1.66362437149318,0.155258452986939,0.0217555293641079 -0.262,0.6848871405047,1.11703395696748,1.40853966853826,1.02848395102939,-1.66415762881832,0.156501672096117,0.021760367528145 -0.264,0.687054878865238,1.11773485354077,1.40795086867556,1.02526807592404,-1.66466583332293,0.157686771493156,0.0217641998988518 -0.266,0.689109506857087,1.11840061464581,1.40739651145443,1.02221495533837,-1.66514933080505,0.158814019655678,0.0217672657566141 -0.268,0.69105286007145,1.11903174372432,1.40687578000731,1.01932261315163,-1.66560850771546,0.159883828585304,0.0217697869126982 -0.27,0.692886943432767,1.11962880497315,1.40638783060117,1.01658876535531,-1.66604378870713,0.160896747641634,0.0217719675396166 -0.272,0.694613920930365,1.12019241964189,1.40593179523737,1.01401083604683,-1.66645563430673,0.161853457351795,0.0217739941518242 -0.274,0.696236105835983,1.12072326248695,1.40550678399123,1.01158597304523,-1.66684453870013,0.162754763212052,0.0217760357230159 -0.276,0.697755951375101,1.12122205837642,1.40511188711695,1.00931106313328,-1.66721102762474,0.163601589498198,0.0217782439265824 -0.278,0.699176041824194,1.1216895790402,1.40474617694125,1.00718274692639,-1.66755565636225,0.164394973101665,0.0217807534861179 -0.28,0.700499084009816,1.12212663996054,1.40440870956698,1.00519743336615,-1.66787900782608,0.165136057408306,0.0217836826232383 -0.282,0.701727899188819,1.12253409739859,1.40409852640559,1.0033513138334,-1.66818169073876,0.165826086236788,0.0217871335903862 -0.284,0.702865415292041,1.12291284555272,1.40381465555585,1.00164037587392,-1.66846433789473,0.166466397853349,0.0217911932767349 -0.286,0.703914659516474,1.12326381384506,1.40355611304421,1.00006041652778,-1.66872760450488,0.167058419079344,0.0217959338757838 -0.288,0.704878751253193,1.12358796433277,1.40332190394086,0.998607055252488,-1.66897216661964,0.167603659507635,0.0218014136037348 -0.29,0.705760915577555,1.12388618284817,1.40311081459325,0.997275755681831,-1.66919854164349,0.168103687680765,0.0218075720469102 -0.292,0.706564561572463,1.12415883183593,1.40292053773514,0.996061876400101,-1.66940634032113,0.168560049436762,0.0218137901125297 -0.294,0.707293148791385,1.12440641878883,1.40274898596643,0.99496062434672,-1.66959538456491,0.168974376736195,0.0218195552112768 -0.296,0.707950166012334,1.12462967417806,1.4025944533599,0.99396705898098,-1.66976584321932,0.169348396413619,0.0218245415369336 -0.298,0.708539132867538,1.12482951105172,1.40245554382415,0.993076106285733,-1.66991816912845,0.169683918845492,0.021828572963982 -0.3,0.709063601048548,1.12500698884725,1.40233110622867,0.992282571967934,-1.67005304212536,0.169982827411263,0.0218315899641012 -0.302,0.709527155063088,1.12516328141069,1.40222017658937,0.99158115384138,-1.67017131818006,0.170247068779264,0.0218336205413285 -0.304,0.709933412552451,1.12529964907496,1.40212192729088,0.990966453390331,-1.67027398467105,0.170478644022542,0.0218347550442238 -0.306,0.710286024196073,1.12541741457677,1.4020356231342,0.990432986520877,-1.67036212158804,0.170679600553607,0.0218351246401672 -0.308,0.710588673238204,1.12551794256296,1.4019605839001,0.989975193511789,-1.67043686839195,0.170852024857835,0.0218348832072312 -0.31,0.710845074674242,1.12560262243324,1.40189615307419,0.989587448179387,-1.67049939622162,0.170998036000298,0.0218341923946644 -0.312,0.711058974134028,1.12567285427472,1.40184167236362,0.989264066272617,-1.67055088512486,0.171119779878176,0.0218332096110777 -0.314,0.711234146497942,1.12573003765657,1.40179646163219,0.988999313115664,-1.67059250598918,0.171219424189395,0.0218320787114413 -0.316,0.711374394280274,1.12577556306379,1.40175980387856,0.988787410516486,-1.67062540684716,0.171299154086923,0.0218309231648644 -0.318,0.711483545813478,1.12581080575691,1.40173093487695,0.988622542960711,-1.67065070322715,0.171361168486807,0.0218298414922057 -0.32,0.711565453266935,1.12583712184677,1.4017090370887,0.988498863111629,-1.67066947221106,0.171407676996329,0.0218289047650134 -0.322,0.71162399053454,1.12585584637196,1.40169323743674,0.988410496638348,-1.67068274984787,0.171440897426766,0.021828155955454 -0.324,0.711663051026769,1.12586829316129,1.40168260851534,0.988351546395683,-1.67069153155464,0.171463053853064,0.0218276109217672 -0.326,0.711686545404481,1.12587575625676,1.40167617278701,0.988316095980698,-1.67069677511968,0.171476375180642,0.0218272608067261 -0.328,0.711698399293412,1.12587951266435,1.40167290929865,0.988298212692149,-1.67069940590607,0.171483094177588,0.021827075618881 -0.33,0.711702551019825,1.12588082619303,1.40167176243318,0.988291949920128,-1.67070032384003,0.171485446928849,0.0218270087591687 -0.332,0.711702949409042,1.12588095213593,1.40167165220097,0.988291348994029,-1.67070041175885,0.171485672667813,0.0218270022495337 -0.334,0.711702949409042,1.12588095213593,1.40167165220097,0.988291348994029,-1.67070041175885,0.171485672667813,0.0218270022495337 +0.004,0.25000047042195,0.999999643059012,1.57079655522309,1.57079724068573,-1.57079596985391,-1.30973721143836e-06,4.82598248142038e-07 +0.006,0.250002352119835,0.999998215295479,1.57079746893306,1.57080089623876,-1.57079454209152,-6.54868491622439e-06,2.41299125801426e-06 +0.008,0.250006586030861,0.999995002831306,1.57079952475507,1.57080912114056,-1.57079132964004,-1.83363069831887e-05,6.75637568596772e-06 +0.01,0.250014113346931,0.999989291798997,1.57080317944813,1.57082374281808,-1.57078561867083,-3.92920384698955e-05,1.44779486252094e-05 +0.012,0.25002587578704,0.999980368352981,1.57080888962368,1.57084658816104,-1.570776695436,-7.20352548050359e-05,2.65429080714911e-05 +0.014,0.250042815970618,0.999967518685138,1.57081711164106,1.57087948314138,-1.57076384632562,-0.000119185229528684,4.39164535541204e-05 +0.016,0.250065877891993,0.999950029044509,1.57082830147452,1.57092425232965,-1.5707463579404,-0.000183361080548634,6.75637869166764e-05 +0.018,0.250096007496088,0.999927185761162,1.57084291455164,1.57098271830821,-1.5707235171799,-0.000267181704862094,9.84501132239856e-05 +0.02,0.250134153355467,0.999898275274187,1.570861405563,1.57105670098111,-1.57069461134612,-0.000373265701722758,0.000137540641784734 +0.022,0.250181267448461,0.999862584163762,1.57088422824305,1.57114801678116,-1.57065892826264,-0.00050423128435177,0.00018580058735287 +0.024,0.250238306037392,0.999819399187298,1.57091183512237,1.57125847777549,-1.57061575640899,-0.000662696180567743,0.000244195171776534 +0.026,0.250306230644415,0.999768007319777,1.57094467725243,1.5713898906728,-1.57056438507031,-0.000851277523241454,0.000313689626812957 +0.028,0.250386009127344,0.999707695798416,1.57098320390151,1.57154405572967,-1.5705041045026,-0.0010725917297323,0.000395249197883043 +0.03,0.250478616872607,0.999637752170651,1.57102786221273,1.57172276553403,-1.57043420611487,-0.00132925436411946,0.000489839144531641 +0.032,0.250585038074371,0.999557464346465,1.57107909683867,1.57192780370559,-1.57035398266535,-0.00162387999348339,0.000598424744928135 +0.034,0.250706267118671,0.999466120654551,1.57113734954332,1.57216094348961,-1.57026272847384,-0.00195908203141728,0.00072197130036424 +0.036,0.250843310069524,0.999363009902274,1.57120305877169,1.57242394624786,-1.5701597396497,-0.00233747256989253,0.000861444140564823 +0.038,0.25099718625673,0.999247421439378,1.57127665918684,1.57271855984787,-1.57004431433571,-0.00276166219960709,0.0010178086300883 +0.04,0.251168929965533,0.999118645225347,1.57135858117314,1.57304651695034,-1.56991575296774,-0.00323425981877845,0.0011920301760154 +0.042,0.251359592228325,0.998975971900352,1.57144925030474,1.57340953319513,-1.5697733585504,-0.00375787243033101,0.00138507423714958 +0.044,0.251570242718595,0.998818692859658,1.5715490867781,1.57380930528595,-1.56961643694885,-0.00433510492741253,0.00159790633497738 +0.046,0.251801971747353,0.998646100331404,1.57165850480715,1.57424750897407,-1.56944429719675,-0.0049685598671558,0.00183149206666271 +0.048,0.252055499984317,0.998457778919316,1.57177772745776,1.57472505784035,-1.56925654240594,-0.00565976745880769,0.00208640259738799 +0.05,0.252330161960637,0.998254355835669,1.57190631321648,1.57524020644808,-1.56905381705993,-0.00640643167306516,0.00236179878779658 +0.052,0.252625171204899,0.998036551188815,1.57204376048817,1.57579097026807,-1.56883685873587,-0.00720591555188081,0.00265671598977199 +0.054,0.252939742373786,0.997805085101871,1.57218956708213,1.57637536373045,-1.56860640519761,-0.00805558200416776,0.00297018961259649 +0.056,0.253273089233422,0.997560677628197,1.57234323076536,1.57699140228548,-1.56836319408827,-0.00895279403244094,0.0033012551216505 +0.058,0.253624422740584,0.997304048671724,1.57250424979362,1.57763710435995,-1.56810796263798,-0.00989491494798889,0.00364894803594106 +0.06,0.253992949223688,0.997035917912167,1.57267212342084,1.5783104932092,-1.56784144738653,-0.0108793085746444,0.00401230392437078 +0.062,0.254377868663495,0.996757004735117,1.57284635238723,1.57900959866477,-1.56756438392099,-0.0119033394412278,0.00439035840069514 +0.064,0.25477837307352,0.996468028167002,1.5730264393861,1.57973245877761,-1.56727750662821,-0.0129643729627431,0.00478214711714979 +0.066,0.25519364498011,0.996169706814893,1.57321188950975,1.58047712135703,-1.56698154846202,-0.0140597756104065,0.00518670575676088 +0.068,0.25562285600223,0.995862758811123,1.57340221067413,1.58124164540536,-1.56667724072532,-0.0151869150705921,0.00560307002438021 +0.07,0.256065165530977,0.995547901762665,1.57359691402226,1.58202410244853,-1.56636531286683,-0.0163431603927744,0.00603027563651297 +0.0720000000000001,0.256519719508883,0.995225852705231,1.57379551430601,1.58282257776265,-1.56604649229253,-0.0175258821265462,0.00646735831002896 +0.0740000000000001,0.256985649309076,0.994897328062009,1.57399753024604,1.5836351714967,-1.56572150419184,-0.0187324524477844,0.00691335374986928 +0.0760000000000001,0.257462070714391,0.994563043606989,1.57420248486925,1.58445999969163,-1.56539107137852,-0.0199602452740281,0.00736729763587812 +0.0780000000000001,0.257948082996526,0.994223714432794,1.57440990582331,1.58529519519592,-1.56505591414624,-0.0212066363691233,0.00782822560890514 +0.0800000000000001,0.258442768095387,0.993880054922939,1.57461932566765,1.58613890847775,-1.56471675013891,-0.0224690034371797,0.00829517325633661 +0.0820000000000001,0.25894518989871,0.993532778728442,1.57483028214013,1.58698930833416,-1.56437429423587,-0.0237447262058671,0.00876717609722456 +0.0840000000000001,0.259454393622146,0.993182598748703,1.57504231839865,1.58784458249719,-1.56402925845179,-0.0250311864990688,0.00924326956719108 +0.0860000000000001,0.259969405289927,0.992830227116568,1.57525498323697,1.58870293813725,-1.56368235185161,-0.0263257682988902,0.00972248900329144 +0.0880000000000001,0.260489231316283,0.9924763751875,1.57546783127372,1.58956260226394,-1.56333428048042,-0.0276258577970037,0.0102038696290235 +0.0900000000000001,0.261012858187775,0.992121753532774,1.57568042311382,1.5904218220245,-1.56298574730837,-0.0289288434352961,0.010686446539673 +0.0920000000000001,0.261539293116413,0.991767044398554,1.57589234193789,1.59127893145011,-1.56263742514831,-0.0302322171314552,0.0111692921788712 +0.0940000000000001,0.26206826540447,0.991412432143538,1.57610347297143,1.59213348235848,-1.56228949602713,-0.0315352999553912,0.0116521558609447 +0.0960000000000001,0.262599775628729,0.991057916464163,1.57631381254385,1.59298547524946,-1.56194196032547,-0.0328380914940666,0.0121350381449214 +0.0980000000000001,0.26313382436409,0.990703497061623,1.5765233569802,1.59383491061208,-1.5615948184307,-0.0341405913192268,0.0126179395848887 +0.1,0.263670412183494,0.990349173641918,1.57673210260126,1.59468178892469,-1.56124807073686,-0.0354427989874131,0.0131008607300459 +0.102,0.26420953965784,0.989994945915897,1.57694004572354,1.59552611065498,-1.56090171764465,-0.0367447140399751,0.0135838021247549 +0.104,0.26475120735591,0.989640813599312,1.57714718265939,1.59636787626012,-1.56055575956143,-0.0380463360030837,0.0140667643085924 +0.106,0.26529541584429,0.989286776412861,1.57735350971706,1.59720708618682,-1.56021019690123,-0.0393476643877437,0.0145497478164011 +0.108,0.265842165687293,0.988932834082236,1.57755902320072,1.59804374087143,-1.55986503008467,-0.0406486986898065,0.0150327531783412 +0.11,0.266391457446878,0.988578986338176,1.57776371941057,1.59887784074,-1.55952025953902,-0.0419494383899835,0.0155157809199423 +0.112,0.26694329168258,0.988225232916509,1.57796759464288,1.59970938620838,-1.55917588569813,-0.0432498829538583,0.0159988315621542 +0.114,0.267497668951425,0.987871573558206,1.57817064519004,1.60053837768231,-1.55883190900246,-0.0445500318319001,0.0164819056213988 +0.116,0.268054589807858,0.987518008009427,1.57837286734064,1.60136481555748,-1.55848832989906,-0.0458498844594769,0.0169650036096216 +0.118,0.268614054803667,0.987164536021568,1.57857425737952,1.60218870021964,-1.55814514884153,-0.0471494402568679,0.0174481260343425 +0.12,0.269176064487903,0.986811157351316,1.57877481158786,1.60301003204465,-1.55780236629004,-0.0484486986292776,0.017931273398708 +0.122,0.26974061940681,0.986457871760693,1.57897452624321,1.60382881139859,-1.55745998271133,-0.0497476589668481,0.0184144462015419 +0.124,0.270307720103742,0.986104679017106,1.57917339761955,1.60464503863785,-1.55711799857864,-0.0510463206446732,0.0188976449373969 +0.126,0.270877367119095,0.985751578893398,1.5793714219874,1.60545871410915,-1.55677641437178,-0.0523446830228112,0.019380870096606 +0.128,0.271449560990227,0.9853985711679,1.57956859561384,1.6062698381497,-1.55643523057704,-0.0536427454462986,0.0198641221653337 +0.13,0.272024302251384,0.985045655624473,1.57976491476258,1.60707841108723,-1.55609444768725,-0.0549405072451638,0.0203474016256274 +0.132,0.272601591433626,0.984692832052567,1.57996037569404,1.60788443324009,-1.55575406620173,-0.0562379677344403,0.0208307089554687 +0.134,0.273181429064756,0.984340100247267,1.5801549746654,1.6086879049173,-1.55541408662628,-0.0575351262141809,0.0213140446288245 +0.136,0.273763815669239,0.983987460009341,1.58034870793068,1.60948882641869,-1.5550745094732,-0.0588319819694711,0.0217974091156985 +0.138,0.274348751768133,0.983634911145294,1.58054157174079,1.61028719803492,-1.55473533526125,-0.0601285342704432,0.0222808028821822 +0.14,0.274936237879016,0.983282453467419,1.58073356234361,1.61108302004757,-1.55439656451566,-0.0614247823722904,0.0227642263905066 +0.142,0.275526274515908,0.982930086793845,1.58092467598404,1.61187629272925,-1.55405819776811,-0.0627207255152808,0.0232476800990929 +0.144,0.276118862189203,0.982577810948587,1.58111490890407,1.61266701634365,-1.55372023555674,-0.0640163629247713,0.0237311644626041 +0.146,0.276714001405596,0.982225625761601,1.58130425734287,1.61345519114562,-1.55338267842611,-0.0653116938112225,0.024214679931996 +0.148,0.277311692668004,0.981873531068833,1.58149271753681,1.61424081738124,-1.55304552692725,-0.0666067173702129,0.0246982269545687 +0.15,0.277911936475503,0.981521526712269,1.58168028571956,1.61502389528794,-1.55270878161758,-0.0679014327824531,0.0251818059740175 +0.152,0.278514733323249,0.981169612539986,1.58186695812217,1.61580442509453,-1.55237244306095,-0.0691958392138011,0.0256654174304842 +0.154,0.27912008370241,0.980817788406207,1.5820527309731,1.61658240702127,-1.55203651182763,-0.0704899358152766,0.0261490617606084 +0.156,0.279727988100092,0.98046605417135,1.58223760049831,1.61735784128,-1.55170098849429,-0.0717837217230759,0.0266327393975787 +0.158,0.280338446999268,0.980114409702077,1.58242156292131,1.61813072807417,-1.551365873644,-0.0730771960585872,0.0271164507711838 +0.16,0.280951460878711,0.979762854871352,1.58260461446327,1.61890106759892,-1.55103116786622,-0.0743703579284058,0.0276001963078635 +0.162,0.281567030212918,0.979411389558486,1.58278675134304,1.61966886004119,-1.5506968717568,-0.075663206424349,0.0280839764307602 +0.164,0.282185155472041,0.979060013649194,1.58296796977723,1.62043410557973,-1.55036298591798,-0.0769557406234719,0.02856779155977 +0.166,0.28280583712182,0.978708727035644,1.58314826598031,1.62119680438525,-1.55002951095837,-0.0782479595880829,0.0290516421115937 +0.168,0.283429075623506,0.978357529616511,1.58332763616464,1.62195695662045,-1.54969644749294,-0.0795398623657591,0.0295355284997882 +0.17,0.284054871433801,0.978006421297028,1.58350607654057,1.62271456244007,-1.54936379614306,-0.0808314479893627,0.0300194511348173 +0.172,0.284683225004777,0.977655401989038,1.58368358331648,1.62346962199104,-1.54903155753642,-0.0821227154770566,0.0305034104241034 +0.174,0.285314136783819,0.977304471611047,1.58386015269888,1.62422213541247,-1.5486997323071,-0.0834136638323206,0.030987406772078 +0.176,0.285947607213544,0.976953630088275,1.58403578089245,1.62497210283579,-1.54836832109552,-0.0847042920439679,0.0314714405802334 +0.178,0.286583636731742,0.976602877352713,1.58421046410015,1.62571952438478,-1.54803732454846,-0.0859945990861612,0.0319555122471737 +0.18,0.287222225771302,0.976252213343167,1.58438419852324,1.62646440017566,-1.54770674331902,-0.0872845839184297,0.0324396221686657 +0.182,0.287863374760144,0.97590163800532,1.5845569803614,1.62720673031715,-1.54737657806668,-0.0885742454856857,0.0329237707376901 +0.184,0.288507084121155,0.975551151291778,1.58472880581277,1.62794651491056,-1.54704682945723,-0.0898635827182415,0.0334079583444932 +0.186,0.289153354272115,0.975200753162125,1.58489967107404,1.62868375404986,-1.54671749816281,-0.0911525945318267,0.033892185376637 +0.188,0.289802185625634,0.974850443582977,1.58506957234051,1.62941844782171,-1.54638858486189,-0.0924412798276051,0.0343764522190514 +0.19,0.290453578589085,0.974500222528032,1.58523850580615,1.6301505963056,-1.54606009023927,-0.0937296374921925,0.0348607592540846 +0.192,0.291107533564534,0.974150089978124,1.58540646766371,1.63088019957388,-1.54573201498608,-0.0950176663976742,0.0353451068615543 +0.194,0.291764050948672,0.973800045921278,1.58557345410477,1.6316072576918,-1.54540435979976,-0.0963053654016227,0.0358294954187993 +0.196,0.292423131132757,0.973450090352759,1.5857394613198,1.63233177071767,-1.54507712538411,-0.0975927333471159,0.03631392530073 +0.198,0.293084774502535,0.973100223275128,1.58590448549825,1.63305373870282,-1.54475031244922,-0.0988797690627548,0.0367983968798798 +0.2,0.293748981438185,0.972750444698293,1.58606852282864,1.63377316169178,-1.5444239217115,-0.100166471362683,0.0372829105264564 +0.202,0.294415752314247,0.972400754639564,1.58623156949858,1.63449003972224,-1.54409795389372,-0.101452839046602,0.0377674666083925 +0.204,0.295085087499557,0.972051153123704,1.5863936216949,1.63520437282521,-1.54377240972491,-0.102738870899796,0.038252065491397 +0.206,0.295756987357185,0.971701640182982,1.5865546756037,1.63591616102504,-1.54344728994046,-0.104024565693144,0.0387367075390062 +0.208,0.296431452244367,0.971352215857228,1.58671472741044,1.6366254043395,-1.54312259528206,-0.105309922183144,0.0392213931126348 +0.21,0.297108482512437,0.971002880193886,1.58687377329997,1.63733210277985,-1.54279832649772,-0.106594939111928,0.0397061225716272 +0.212,0.297788078506771,0.970653633248063,1.58703180945667,1.63803625635091,-1.54247448434176,-0.107879615207285,0.0401908962733081 +0.214,0.298470240566714,0.970304475082586,1.58718883206446,1.63873786505112,-1.54215106957482,-0.10916394918268,0.0406757145730338 +0.216,0.299154969025521,0.969955405768056,1.58734483730694,1.63943692887261,-1.54182808296385,-0.110447939737272,0.0411605778242434 +0.218,0.29984226421029,0.969606425382896,1.58749982136741,1.64013344780127,-1.54150552528214,-0.111731585555937,0.0416454863785097 +0.22,0.3005321264419,0.969257534013409,1.58765378042898,1.64082742181683,-1.54118339730925,-0.113014885309286,0.04213044058559 +0.222,0.301224556034948,0.968908731753829,1.58780671067464,1.6415188508929,-1.54086169983111,-0.114297837653685,0.0426154407934776 +0.224,0.301919553297684,0.968560018706372,1.58795860828732,1.64220773499704,-1.54054043363992,-0.115580441231278,0.0431004873484523 +0.226,0.302617118531949,0.968211394981292,1.58810946944998,1.64289407409085,-1.54021959953422,-0.116862694670006,0.0435855805951317 +0.228,0.303317252033112,0.967862860696935,1.58825929034571,1.64357786813002,-1.53989919831888,-0.118144596583632,0.0440707208765224 +0.23,0.304019954090006,0.967514415979785,1.58840806715775,1.6442591170644,-1.53957923080508,-0.119426145571755,0.0445559085340702 +0.232,0.304725224984871,0.967166060964527,1.58855579606963,1.64493782083805,-1.53925969781032,-0.120707340219838,0.0450411439077118 +0.234,0.305433064993284,0.96681779579409,1.5887024732652,1.64561397938933,-1.53894060015842,-0.121988179099229,0.0455264273359255 +0.236,0.306143474384104,0.966469620619707,1.58884809492874,1.64628759265094,-1.53862193867954,-0.123268660767179,0.0460117591557821 +0.238,0.306856453419405,0.966121535600963,1.58899265724502,1.64695866055001,-1.53830371421017,-0.124548783766869,0.0464971397029957 +0.24,0.30757200235442,0.965773540905851,1.58913615639938,1.64762718300816,-1.53798592759311,-0.12582854662743,0.0469825693119748 +0.242,0.308290121437475,0.965425636710822,1.58927858857782,1.64829315994152,-1.53766857967752,-0.127107947863965,0.047468048315873 +0.244,0.309010810909931,0.965077823200839,1.58941994996707,1.64895659126086,-1.53735167131887,-0.128386985977575,0.0479535770466399 +0.246,0.309734071006122,0.96473010056943,1.58956023675469,1.64961747687163,-1.53703520337899,-0.129665659455379,0.0484391558350722 +0.248,0.310459901953295,0.964382469018738,1.58969944512909,1.65027581667399,-1.53671917672604,-0.130943966770539,0.048924785010864 +0.25,0.31118830397155,0.964034928759578,1.58983757127968,1.65093161056293,-1.53640359223453,-0.132221906382283,0.0494104649026581 +0.252,0.311919277273779,0.963687480011482,1.58997461139693,1.65158485842826,-1.53608845078532,-0.13349947673593,0.0498961958380963 +0.254,0.312652822065607,0.963340123002759,1.59011056167242,1.65223556015477,-1.53577375326561,-0.134776676262912,0.0503819781438705 +0.256,0.313388938545334,0.962992857970542,1.59024541829896,1.65288371562221,-1.53545950056896,-0.1360535033808,0.0508678121457733 +0.258,0.31412762690387,0.962645685160841,1.59037917747063,1.65352932470537,-1.53514569359531,-0.137329956493328,0.0513536981687488 +0.26,0.314868887324684,0.962298604828597,1.59051183538291,1.65417238727418,-1.53483233325094,-0.13860603399042,0.051839636536943 +0.262,0.315612719983738,0.961951617237731,1.59064338823272,1.65481290319372,-1.53451942044849,-0.139881734248211,0.0523256275737547 +0.264,0.316359125049433,0.961604722661196,1.59077383221852,1.65545087232433,-1.534206956107,-0.141157055629075,0.0528116716018859 +0.266,0.317108102682548,0.961257921381031,1.59090316354039,1.65608629452163,-1.53389494115187,-0.142431996481649,0.0532977689433926 +0.268,0.317859653036183,0.960911213688412,1.59103137840012,1.6567191696366,-1.53358337651488,-0.143706555140862,0.0537839199197351 +0.27,0.3186137762557,0.9605645998837,1.59115847300127,1.65734949751566,-1.53327226313419,-0.144980729927958,0.0542701248518287 +0.272,0.319370472478667,0.960218080276496,1.59128444354927,1.65797727800068,-1.53296160195437,-0.146254519150522,0.0547563840600941 +0.274,0.320129741834796,0.95987165518569,1.5914092862515,1.6586025109291,-1.53265139392637,-0.147527921102509,0.0552426978645079 +0.276,0.320891584445894,0.959525324939513,1.59153299731737,1.65922519613393,-1.53234164000754,-0.14880093406427,0.0557290665846529 +0.278,0.321656000425796,0.959179089875588,1.59165557295841,1.65984533344388,-1.53203234116164,-0.150073556302579,0.0562154905397685 +0.28,0.322422989880316,0.958832950340979,1.59177700938833,1.66046292268334,-1.53172349835885,-0.151345786070659,0.0567019700488009 +0.282,0.323192552907185,0.958486906692245,1.59189730282316,1.66107796367251,-1.53141511257575,-0.15261762160821,0.0571885054304539 +0.284,0.323964689595999,0.958140959295485,1.59201644948126,1.66169045622742,-1.53110718479536,-0.153889061141441,0.0576750970032382 +0.286,0.324739400028158,0.957795108526396,1.59213444558344,1.66230040016,-1.53079971600712,-0.155160102883092,0.0581617450855226 +0.288,0.325516684276815,0.957449354770314,1.59225128735308,1.66290779527813,-1.5304927072069,-0.156430745032465,0.0586484499955835 +0.29,0.326296542406816,0.957103698422271,1.59236697101614,1.66351264138571,-1.53018615939702,-0.157700985775455,0.059135212051655 +0.292,0.327078974474646,0.956758139887043,1.5924814928013,1.66411493828273,-1.52988007358625,-0.158970823284575,0.0596220315719796 +0.294,0.327863980528374,0.956412679579197,1.59259484894003,1.66471468576528,-1.5295744507898,-0.160240255718988,0.0601089088748571 +0.296,0.328651560607598,0.956067317923144,1.59270703566668,1.66531188362568,-1.52926929202935,-0.161509281224534,0.0605958442786957 +0.298,0.329441714743389,0.955722055353186,1.59281804921854,1.66590653165247,-1.52896459833304,-0.162777897933763,0.061082838102061 +0.3,0.330234442958236,0.955376892313565,1.59292788583597,1.6664986296305,-1.52866037073551,-0.164046103965962,0.0615698906637263 +0.302,0.331029745265994,0.955031829258514,1.59303654176244,1.66708817734099,-1.52835661027784,-0.165313897427187,0.0620570022827223 +0.304,0.331827621671827,0.954686866652304,1.59314401324465,1.66767517456159,-1.52805331800762,-0.166581276410293,0.0625441732783867 +0.306,0.332628072172154,0.954342004969292,1.5932502965326,1.6682596210664,-1.52775049497894,-0.167848238994966,0.063031403970414 +0.308,0.333431096754597,0.953997244693971,1.59335538787968,1.66884151662608,-1.52744814225239,-0.16911478324775,0.0635186946789048 +0.31,0.334236695397927,0.953652586321016,1.59345928354276,1.66942086100786,-1.52714626089506,-0.170380907222085,0.0640060457244159 +0.312,0.335044868072007,0.953308030355334,1.59356197978227,1.66999765397563,-1.52684485198055,-0.171646608958332,0.0644934574280089 +0.314,0.335855614737744,0.95296357731211,1.5936634728623,1.67057189528999,-1.52654391658902,-0.172911886483809,0.0649809301113006 +0.316,0.336668935347032,0.952619227716857,1.59376375905067,1.67114358470826,-1.52624345580712,-0.174176737812823,0.0654684640965115 +0.318,0.337484829842701,0.952274982105459,1.59386283461903,1.67171272198463,-1.52594347072807,-0.175441160946701,0.0659560597065153 +0.32,0.338303298158464,0.951930841024221,1.59396069584294,1.6722793068701,-1.52564396245162,-0.176705153873823,0.0664437172648883 +0.322,0.339124340218865,0.951586805029915,1.59405733900198,1.67284333911265,-1.52534493208409,-0.177968714569655,0.0669314370959582 +0.324,0.339947955939224,0.951242874689827,1.5941527603798,1.67340481845719,-1.52504638073836,-0.179231840996784,0.0674192195248532 +0.326,0.34077414522559,0.950899050581803,1.59424695626424,1.6739637446457,-1.52474830953388,-0.18049453110495,0.0679070648775512 +0.328,0.341602907974683,0.950555333294294,1.59433992294741,1.67452011741722,-1.52445071959667,-0.18175678283108,0.0683949734809281 +0.33,0.342434244073849,0.950211723426402,1.59443165672576,1.67507393650796,-1.52415361205937,-0.183018594099322,0.0688829456628071 +0.332,0.343268153401002,0.949868221587929,1.59452215390022,1.6756252016513,-1.52385698806118,-0.184279962821081,0.069370981752007 +0.334,0.344104635824578,0.949524828399416,1.59461141077621,1.67617391257789,-1.52356084874794,-0.18554088689505,0.0698590820783912 +0.336,0.344943691203482,0.949181544492193,1.59469942366383,1.67672006901567,-1.52326519527207,-0.186801364207251,0.0703472469729158 +0.338,0.345785319387035,0.948838370508422,1.59478618887784,1.67726367068995,-1.52297002879264,-0.188061392631064,0.0708354767676782 +0.34,0.346629520214928,0.948495307101141,1.59487170273784,1.67780471732343,-1.52267535047535,-0.189320970027268,0.0713237717959655 +0.342,0.347476293517167,0.948152354934307,1.59495596156831,1.6783432086363,-1.52238116149254,-0.190580094244071,0.0718121323923024 +0.344,0.348325639114026,0.947809514682845,1.59503896169872,1.67887914434624,-1.52208746302317,-0.191838763117154,0.0723005588924998 +0.346,0.349177556815994,0.947466787032685,1.59512069946362,1.67941252416852,-1.52179425625291,-0.193096974469698,0.0727890516337023 +0.348,0.350032046423729,0.947124172680809,1.59520117120271,1.67994334781601,-1.52150154237405,-0.194354726112429,0.0732776109544367 +0.35,0.350889107728003,0.946781672335295,1.59528037326097,1.68047161499928,-1.5212093225856,-0.19561201584365,0.0737662371946591 +0.352,0.351748740509659,0.946439286715355,1.5953583019887,1.68099732542658,-1.52091759809321,-0.19686884144928,0.0742549306958032 +0.354,0.352610944539556,0.946097016551382,1.59543495374166,1.68152047880399,-1.52062637010927,-0.198125200702894,0.0747436918008276 +0.356,0.353475719578523,0.94575486258499,1.59551032488114,1.68204107483538,-1.52033563985285,-0.199381091365754,0.0752325208542634 +0.358,0.354343065377309,0.945412825569056,1.59558441177404,1.68255911322251,-1.52004540854973,-0.200636511186854,0.0757214182022613 +0.36,0.355212981676535,0.945070906267762,1.59565721079299,1.68307459366507,-1.51975567743242,-0.201891457902957,0.0762103841926393 +0.362,0.356085468206646,0.944729105456634,1.5957287183164,1.68358751586073,-1.51946644774018,-0.203145929238629,0.0766994191749294 +0.364,0.356960524687859,0.944387423922587,1.59579893072861,1.6840978795052,-1.51917772071898,-0.204399922906287,0.0771885235004247 +0.366,0.35783815083012,0.944045862463961,1.59586784441992,1.68460568429225,-1.51888949762157,-0.205653436606227,0.0776776975222266 +0.368,0.358718346333053,0.943704421890561,1.59593545578674,1.6851109299138,-1.51860177970743,-0.206906468026673,0.0781669415952909 +0.37,0.359601110885912,0.943363103023703,1.59600176123164,1.68561361605995,-1.51831456824285,-0.208159014843814,0.0786562560764751 +0.372,0.360486444167536,0.943021906696245,1.59606675716345,1.68611374241903,-1.51802786450087,-0.209411074721842,0.0791456413245844 +0.374,0.361374345846298,0.942680833752633,1.59613043999738,1.68661130867764,-1.51774166976134,-0.210662645312993,0.0796350977004183 +0.376,0.36226481558006,0.942339885048933,1.59619280615507,1.68710631452072,-1.51745598531088,-0.211913724257591,0.0801246255668166 +0.378,0.363157853016126,0.941999061452876,1.59625385206475,1.68759875963159,-1.51717081244295,-0.213164309184085,0.0806142252887057 +0.38,0.364053457791195,0.941658363843892,1.59631357416123,1.688088643692,-1.51688615245782,-0.214414397709093,0.0811038972331446 +0.382,0.364951629531313,0.941317793113149,1.59637196888611,1.68857596638216,-1.51660200666258,-0.215663987437443,0.08159364176937 +0.384,0.365852367851828,0.940977350163588,1.59642903268779,1.68906072738083,-1.51631837637116,-0.216913075962212,0.082083459268843 +0.386,0.366755672357344,0.940637035909964,1.5964847620216,1.68954292636532,-1.51603526290435,-0.218161660864773,0.0825733501052936 +0.388,0.367661542641671,0.940296851278877,1.59653915334987,1.69002256301158,-1.5157526675898,-0.219409739714834,0.0830633146547665 +0.39,0.368569978287785,0.939956797208814,1.59659220314207,1.69049963699421,-1.515470591762,-0.220657310070483,0.0835533532956665 +0.392,0.369480978867779,0.939616874650179,1.59664390787484,1.69097414798655,-1.51518903676233,-0.221904369478227,0.0840434664088029 +0.394,0.370394543942817,0.939277084565332,1.59669426403216,1.69144609566067,-1.51490800393909,-0.223150915473041,0.0845336543774348 +0.396,0.371310673063087,0.938937427928622,1.59674326810536,1.6919154796875,-1.51462749464742,-0.224396945578406,0.0850239175873156 +0.398,0.372229365767761,0.938597905726425,1.59679091659329,1.69238229973678,-1.51434751024941,-0.225642457306357,0.0855142564267376 +0.4,0.373150621584946,0.938258518957171,1.59683720600238,1.69284655547717,-1.51406805211405,-0.226887448157526,0.0860046712865763 +0.402,0.374074440031639,0.937919268631384,1.59688213284672,1.6933082465763,-1.51378912161725,-0.228131915621184,0.0864951625603347 +0.404,0.375000820613682,0.937580155771713,1.59692569364819,1.69376737270078,-1.51351072014188,-0.229375857175288,0.086985730644187 +0.406,0.375929762825722,0.937241181412965,1.59696788493653,1.69422393351626,-1.51323284907771,-0.230619270286527,0.0874763759370227 +0.408,0.376861266151158,0.936902346602134,1.59700870324946,1.69467792868748,-1.51295550982152,-0.231862152410366,0.0879670988404902 +0.41,0.377795330062107,0.936563652398441,1.59704814513274,1.69512935787833,-1.51267870377702,-0.233104500991088,0.0884578997590401 +0.412,0.37873195401935,0.936225099873356,1.59708620714031,1.69557822075187,-1.51240243235489,-0.234346313461847,0.0889487790999687 +0.414,0.379671137472297,0.935886690110636,1.59712288583434,1.69602451697037,-1.51212669697282,-0.235587587244708,0.0894397372734609 +0.416,0.380612879858934,0.935548424206352,1.59715817778535,1.6964682461954,-1.51185149905546,-0.236828319750696,0.089930774692633 +0.418,0.38155718060579,0.935210303268921,1.59719207957232,1.69690940808782,-1.5115768400345,-0.238068508379842,0.0904218917735756 +0.42,0.382504039127882,0.934872328419132,1.59722458778275,1.69734800230787,-1.51130272134862,-0.239308150521231,0.090913088935396 +0.422,0.383453454828683,0.934534500790182,1.5972556990128,1.69778402851517,-1.51102914444351,-0.240547243553046,0.0914043666002606 +0.424,0.38440542710007,0.934196821527698,1.59728540986734,1.69821748636881,-1.51075611077192,-0.24178578484262,0.0918957251934366 +0.426,0.385359955322286,0.933859291789768,1.59731371696009,1.69864837552736,-1.51048362179361,-0.243023771746481,0.0923871651433344 +0.428,0.386317038863895,0.933521912746971,1.59734061691368,1.69907669564892,-1.51021167897542,-0.244261201610398,0.0928786868815489 +0.43,0.387276677081741,0.933184685582401,1.59736610635976,1.69950244639119,-1.50994028379122,-0.245498071769434,0.0933702908429011 +0.432,0.388238869320904,0.932847611491693,1.59739018193913,1.69992562741147,-1.50966943772197,-0.246734379547992,0.0938619774654791 +0.434,0.389203614914658,0.932510691683054,1.59741284030178,1.70034623836673,-1.50939914225568,-0.247970122259861,0.0943537471906794 +0.436,0.390170913184431,0.932173927377284,1.59743407810701,1.70076427891365,-1.50912939888748,-0.249205297208272,0.0948456004632477 +0.438,0.391140763439758,0.931837319807807,1.59745389202356,1.70117974870866,-1.50886020911956,-0.25043990168594,0.0953375377313192 +0.44,0.392113164978246,0.931500870220689,1.59747227872965,1.70159264740799,-1.50859157446123,-0.251673932975118,0.0958295594464589 +0.442,0.393088117085527,0.931164579874666,1.59748923491312,1.70200297466769,-1.50832349642891,-0.252907388347646,0.0963216660637022 +0.444,0.394065619035216,0.930828450041171,1.59750475727152,1.70241073014369,-1.50805597654615,-0.254140265064998,0.0968138580415941 +0.446,0.395045670088874,0.930492482004351,1.59751884251218,1.70281591349184,-1.50778901634361,-0.25537256037834,0.0973061358422294 +0.448,0.396028269495965,0.930156677061093,1.59753148735235,1.70321852436796,-1.50752261735909,-0.25660427152857,0.0977984999312916 +0.45,0.397013416493813,0.929821036521048,1.59754268851926,1.70361856242784,-1.50725678113756,-0.257835395746379,0.0982909507780924 +0.452,0.398001110307561,0.929485561706649,1.59755244275026,1.70401602732735,-1.5069915092311,-0.259065930252294,0.0987834888556103 +0.454,0.398991350150136,0.929150253953137,1.59756074679286,1.70441091872241,-1.506726803199,-0.260295872256736,0.0992761146405295 +0.456,0.399984135222199,0.928815114608577,1.59756759740488,1.70480323626908,-1.50646266460768,-0.261525218960066,0.099768828613278 +0.458,0.400979464712113,0.928480145033881,1.59757299135453,1.70519297962359,-1.50619909503075,-0.262753967552641,0.100261631258066 +0.46,0.401977337795896,0.928145346602827,1.59757692542049,1.70558014844233,-1.50593609604903,-0.263982115214864,0.100754523062923 +0.462,0.402977753637188,0.927810720702078,1.59757939639205,1.70596474238199,-1.5056736692505,-0.265209659117237,0.101247504519738 +0.464,0.403980711387202,0.927476268731201,1.59758040106917,1.70634676109951,-1.50541181623034,-0.266436596420413,0.101740576124292 +0.466,0.404986210184694,0.927141992102685,1.59757993626258,1.70672620425215,-1.50515053859098,-0.267662924275251,0.1022337383763 +0.468,0.405994249155913,0.926807892241959,1.5975779987939,1.70710307149753,-1.50488983794201,-0.268888639822866,0.102726991779444 +0.47,0.40700482741457,0.926473970587407,1.59757458549574,1.7074773624937,-1.50462971590028,-0.270113740194684,0.103220336841414 +0.472,0.408017944061793,0.926140228590386,1.59756969321177,1.7078490768991,-1.50437017408986,-0.271338222512494,0.103713774073937 +0.474,0.409033598186093,0.925806667715241,1.59756331879685,1.70821821437268,-1.50411121414204,-0.272562083888507,0.104207303992821 +0.476,0.410051788863317,0.925473289439324,1.59755545911709,1.7085847745739,-1.50385283769538,-0.273785321425403,0.104700927117986 +0.478,0.411072515156616,0.925140095253,1.59754611105,1.70894875716276,-1.50359504639568,-0.275007932216388,0.1051946439735 +0.48,0.412095776116403,0.924807086659672,1.59753527148455,1.70931016179987,-1.50333784189597,-0.276229913345252,0.105688455087614 +0.482,0.413121570780314,0.924474265175787,1.59752293732127,1.70966898814644,-1.50308122585658,-0.277451261886419,0.106182360992797 +0.484,0.414149898173172,0.924141632330849,1.59750910547238,1.71002523586438,-1.50282519994509,-0.278671974905004,0.106676362225771 +0.486,0.415180757306943,0.923809189667436,1.59749377286185,1.71037890461627,-1.50256976583636,-0.279892049456867,0.107170459327546 +0.488,0.416214147180705,0.92347693874121,1.59747693642552,1.71072999406544,-1.50231492521251,-0.28111148258867,0.107664652843451 +0.49,0.417250066780603,0.923144881120924,1.59745859311121,1.71107850387601,-1.50206067976296,-0.282330271337933,0.108158943323168 +0.492,0.418288515079815,0.92281301838844,1.59743873987878,1.71142443371289,-1.50180703118444,-0.283548412733088,0.10865333132077 +0.494,0.419329491038513,0.922481352138732,1.59741737370027,1.71176778324186,-1.50155398118094,-0.284765903793536,0.109147817394746 +0.496,0.420372993603824,0.922149883979901,1.59739449155999,1.71210855212956,-1.50130153146376,-0.285982741529702,0.10964240210804 +0.498,0.421419021709794,0.921818615533179,1.59737009045458,1.71244674004356,-1.50104968375153,-0.287198922943095,0.110137086028081 +0.5,0.422467574277348,0.921487548432941,1.59734416739316,1.71278234665239,-1.50079843977016,-0.288414445026361,0.110631869726815 +0.502,0.423518650214258,0.92115668432671,1.59731671939742,1.71311537162556,-1.50054780125289,-0.289629304763342,0.111126753780736 +0.504,0.424572248415098,0.920826024875166,1.5972877435017,1.71344581463362,-1.50029776994026,-0.290843499129133,0.111621738770918 +0.506,0.425628367761213,0.920495571752151,1.59725723675307,1.71377367534816,-1.50004834758017,-0.292057025090136,0.112116825283045 +0.508,0.426687007120678,0.920165326644675,1.5972251962115,1.71409895344188,-1.4997995359278,-0.293269879604124,0.112612013907443 +0.51,0.427748165348264,0.919835291252921,1.59719161894989,1.7144216485886,-1.49955133674569,-0.294482059620294,0.113107305239111 +0.512,0.428811841285401,0.91950546729025,1.59715650205419,1.71474176046331,-1.49930375180371,-0.295693562079326,0.113602699877745 +0.514,0.429878033760137,0.919175856483205,1.59711984262351,1.71505928874217,-1.49905678287905,-0.296904383913441,0.114098198427777 +0.516,0.430946741587108,0.918846460571513,1.59708163777022,1.7153742331026,-1.49881043175625,-0.298114522046459,0.114593801498395 +0.518,0.432017963567498,0.918517281308088,1.59704188462004,1.71568659322327,-1.4985647002272,-0.29932397339386,0.115089509703578 +0.52,0.433091698489001,0.918188320459035,1.59700058031211,1.71599636878415,-1.49831959009112,-0.300532734862839,0.115585323662122 +0.522,0.434167945125789,0.917859579803647,1.59695772199916,1.71630355946653,-1.49807510315458,-0.301740803352369,0.116081243997667 +0.524,0.435246702238473,0.917531061134412,1.59691330684755,1.71660816495307,-1.49783124123149,-0.302948175753255,0.116577271338728 +0.526,0.436327968574069,0.917202766257005,1.59686733203737,1.71691018492781,-1.49758800614312,-0.304154848948199,0.117073406318718 +0.528,0.437411742865961,0.916874696990294,1.59681979476258,1.71720961907622,-1.4973453997181,-0.305360819811854,0.11756964957598 +0.53,0.438498023833864,0.916546855166338,1.59677069223108,1.71750646708523,-1.49710342379238,-0.306566085210889,0.118066001753808 +0.532,0.439586810183794,0.916219242630379,1.59672002166479,1.71780072864327,-1.49686208020928,-0.307770642004043,0.118562463500479 +0.534,0.440678100608024,0.915891861240847,1.5966677802998,1.71809240344026,-1.4966213708195,-0.308974487042191,0.119059035469273 +0.536,0.441771893785058,0.915564712869354,1.59661396538643,1.71838149116769,-1.49638129748104,-0.3101776171684,0.119555718318503 +0.538,0.442868188379589,0.915237799400688,1.59655857418932,1.71866799151864,-1.49614186205929,-0.311380029217989,0.120052512711538 +0.54,0.443966983042466,0.91491112273281,1.59650160398758,1.71895190418777,-1.49590306642699,-0.312581720018594,0.120549419316826 +0.542,0.445068276410662,0.91458468477685,1.59644305207483,1.71923322887141,-1.49566491246421,-0.313782686390222,0.121046438807922 +0.544,0.446172067107234,0.914258487457099,1.59638291575934,1.71951196526756,-1.49542740205841,-0.314982925145319,0.12154357186351 +0.546,0.447278353741294,0.913932532711005,1.59632119236409,1.7197881130759,-1.49519053710435,-0.316182433088826,0.122040819167425 +0.548,0.448387134907968,0.913606822489161,1.59625787922691,1.72006167199787,-1.49495431950419,-0.31738120701824,0.122538181408677 +0.55,0.449498409188369,0.913281358755302,1.59619297370056,1.72033264173665,-1.4947187511674,-0.31857924372368,0.123035659281475 +0.552,0.450612175149558,0.912956143486296,1.59612647315281,1.72060102199721,-1.49448383401081,-0.319776539987942,0.123533253485245 +0.554,0.451728431344509,0.91263117867213,1.59605837496658,1.72086681248635,-1.4942495699586,-0.320973092586567,0.124030964724659 +0.556,0.452847176312079,0.912306466315906,1.59598867653998,1.72113001291272,-1.49401596094226,-0.322168898287895,0.124528793709649 +0.558,0.453968408576972,0.911982008433825,1.59591737528648,1.72139062298681,-1.49378300890066,-0.323363953853137,0.125026741155429 +0.56,0.455092126649704,0.91165780705518,1.59584446863492,1.72164864242107,-1.49355071577996,-0.324558256036426,0.125524807782522 +0.562,0.456218329026572,0.911333864222342,1.5957699540297,1.72190407092982,-1.49331908353368,-0.325751801584889,0.126022994316769 +0.564,0.457347014189618,0.911010181990748,1.59569382893082,1.72215690822939,-1.49308811412265,-0.326944587238701,0.12652130148936 +0.566,0.458478180606598,0.910686762428884,1.59561609081397,1.72240715403807,-1.49285780951502,-0.328136609731153,0.127019730036845 +0.568,0.459611826730947,0.910363607618278,1.59553673717068,1.72265480807615,-1.49262817168628,-0.329327865788713,0.127518280701155 +0.57,0.460747951001747,0.910040719653478,1.59545576550837,1.72289987006599,-1.4923992026192,-0.330518352131086,0.128016954229621 +0.572,0.461886551843691,0.909718100642041,1.59537317335046,1.723142339732,-1.49217090430386,-0.331708065471283,0.128515751374993 +0.574,0.463027627667057,0.909395752704516,1.59528895823648,1.72338221680068,-1.49194327873766,-0.332897002515675,0.129014672895453 +0.576,0.464171176867667,0.909073677974424,1.59520311772215,1.72361950100065,-1.49171632792528,-0.334085159964064,0.129513719554636 +0.578,0.46531719782686,0.908751878598245,1.59511564937949,1.72385419206267,-1.49149005387869,-0.335272534509743,0.130012892121643 +0.58,0.466465688911458,0.908430356735398,1.59502655079689,1.72408628971968,-1.49126445861714,-0.336459122839557,0.13051219137106 +0.582,0.467616648473732,0.908109114558218,1.59493581957926,1.7243157937068,-1.49103954416714,-0.337644921633971,0.131011618082973 +0.584,0.468770074851372,0.907788154251945,1.59484345334806,1.72454270376138,-1.49081531256249,-0.338829927567129,0.131511173042979 +0.586,0.469925966367455,0.907467478014693,1.59474944974146,1.72476701962301,-1.49059176584422,-0.34001413730692,0.132010857042206 +0.588,0.471084321330411,0.907147088057438,1.59465380641438,1.72498874103356,-1.49036890606064,-0.341197547515043,0.132510670877323 +0.59,0.472245138033991,0.906826986603992,1.59455652103862,1.72520786773716,-1.49014673526726,-0.342380154847064,0.133010615350555 +0.592,0.473408414757241,0.906507175890978,1.59445759130295,1.72542439948029,-1.48992525552685,-0.34356195595249,0.133510691269697 +0.594,0.47457414976446,0.906187658167812,1.59435701491321,1.72563833601175,-1.4897044689094,-0.344742947474824,0.134010899448123 +0.596,0.47574234130518,0.905868435696676,1.59425478959237,1.72584967708271,-1.48948437749209,-0.345923126051633,0.134511240704803 +0.598,0.476912987614126,0.905549510752494,1.5941509130807,1.72605842244674,-1.48926498335933,-0.347102488314612,0.13501171586431 +0.6,0.478086086911188,0.905230885622905,1.59404538313576,1.72626457185978,-1.48904628860268,-0.348281030889647,0.135512325756834 +0.602,0.479261637401393,0.904912562608241,1.59393819753261,1.72646812508025,-1.48882829532091,-0.349458750396881,0.136013071218192 +0.604,0.480439637274868,0.904594544021494,1.59382935406381,1.72666908186899,-1.48861100561995,-0.350635643450775,0.136513953089834 +0.606,0.481620084706813,0.904276832188293,1.59371885053956,1.72686744198932,-1.48839442161287,-0.351811706660177,0.13701497221886 +0.608,0.482802977857471,0.903959429446877,1.59360668478781,1.72706320520708,-1.48817854541989,-0.352986936628383,0.137516129458023 +0.61,0.483988314872094,0.90364233814806,1.5934928546543,1.72725637129059,-1.48796337916836,-0.3541613299532,0.138017425665739 +0.612,0.485176093880918,0.903325560655206,1.5933773580027,1.72744694001076,-1.48774892499274,-0.355334883227016,0.138518861706095 +0.614,0.486366312999127,0.903009099344198,1.59326019271468,1.72763491114102,-1.4875351850346,-0.356507593036861,0.139020438448859 +0.616,0.487558970326826,0.902692956603405,1.59314135669003,1.7278202844574,-1.48732216144258,-0.357679455964469,0.139522156769481 +0.618,0.488754063949011,0.902377134833652,1.59302084784673,1.72800305973853,-1.4871098563724,-0.358850468586351,0.140024017549106 +0.62,0.489951591935539,0.902061636448187,1.59289866412103,1.72818323676566,-1.48689827198684,-0.36002062747385,0.140526021674575 +0.622,0.491151552341097,0.901746463872645,1.59277480346758,1.72836081532269,-1.4866874104557,-0.361189929193213,0.141028170038431 +0.624,0.492353943205176,0.901431619545019,1.59264926385951,1.72853579519617,-1.48647727395584,-0.362358370305652,0.141530463538927 +0.626,0.493558762552036,0.901117105915622,1.59252204328849,1.72870817617534,-1.48626786467109,-0.363525947367411,0.142032903080027 +0.628,0.494766008390683,0.900802925447048,1.59239313976488,1.72887795805214,-1.48605918479229,-0.364692656929829,0.142535489571409 +0.63,0.495975678714836,0.900489080614146,1.59226255131776,1.72904514062123,-1.48585123651724,-0.365858495539406,0.143038223928472 +0.632,0.497187771502897,0.900175573903971,1.59213027599509,1.72920972368,-1.48564402205071,-0.36702345973787,0.143541107072334 +0.634,0.498402284717928,0.899862407815755,1.59199631186372,1.72937170702861,-1.48543754360439,-0.368187546062236,0.144044139929837 +0.636,0.499619216307615,0.899549584860865,1.59186065700957,1.72953109046998,-1.48523180339688,-0.369350751044879,0.144547323433548 +0.638,0.500838564204245,0.899237107562765,1.59172330953764,1.72968787380984,-1.4850268036537,-0.370513071213592,0.145050658521758 +0.64,0.502060326324677,0.898924978456973,1.59158426757215,1.72984205685669,-1.48482254660723,-0.371674503091655,0.145554146138485 +0.642,0.503284500570311,0.898613200091027,1.59144352925663,1.72999363942192,-1.4846190344967,-0.372835043197899,0.146057787233472 +0.644,0.504511084827061,0.898301775024437,1.59130109275397,1.73014262131969,-1.48441626956818,-0.373994688046771,0.146561582762187 +0.646,0.50574007696533,0.897990705828645,1.59115695624656,1.73028900236709,-1.48421425407455,-0.3751534341484,0.147065533685819 +0.648,0.506971474839979,0.897679995086986,1.59101111793635,1.73043278238403,-1.4840129902755,-0.37631127800866,0.147569640971281 +0.65,0.508205276290301,0.89736964539464,1.59086357604494,1.73057396119335,-1.48381248043744,-0.377468216129236,0.148073905591203 +0.652,0.509441479139993,0.897059659358588,1.59071432881369,1.73071253862077,-1.48361272683357,-0.37862424500769,0.148578328523931 +0.654,0.51068008119713,0.896750039597571,1.59056337450377,1.73084851449496,-1.4834137317438,-0.379779361137527,0.149082910753522 +0.656,0.511921080254135,0.896440788742039,1.59041071139629,1.73098188864751,-1.4832154974547,-0.380933561008256,0.149587653269741 +0.658,0.513164474087757,0.896131909434109,1.59025633779236,1.73111266091297,-1.48301802625956,-0.382086841105458,0.150092557068056 +0.66,0.514410260459039,0.895823404327517,1.59010025201319,1.73124083112886,-1.48282132045828,-0.383239197910851,0.15059762314963 +0.662,0.515658437113297,0.89551527608757,1.58994245240019,1.73136639913569,-1.48262538235739,-0.384390627902356,0.151102852521318 +0.664,0.516909001780089,0.895207527391094,1.58978293731502,1.73148936477694,-1.48243021427003,-0.385541127554157,0.151608246195661 +0.666,0.51816195217319,0.894900160926391,1.58962170513971,1.73160972789914,-1.48223581851586,-0.386690693336772,0.152113805190873 +0.668,0.519417285990568,0.894593179393185,1.58945875427673,1.7317274883518,-1.48204219742113,-0.387839321717115,0.15261953053084 +0.67,0.520675000914355,0.894286585502574,1.58929408314909,1.73184264598752,-1.48184935331856,-0.38898700915856,0.153125423245108 +0.672,0.521935094610826,0.893980381976974,1.5891276902004,1.7319552006619,-1.48165728854736,-0.390133752121008,0.153631484368872 +0.674,0.523197564730369,0.893674571550073,1.58895957389499,1.73206515223364,-1.48146600545321,-0.391279547060951,0.154137714942972 +0.676,0.524462408907462,0.893369156966773,1.58878973271797,1.73217250056449,-1.48127550638819,-0.392424390431536,0.154644116013877 +0.678,0.525729624760646,0.893064140983141,1.58861816517533,1.73227724551931,-1.48108579371077,-0.393568278682629,0.155150688633677 +0.68,0.526999209892505,0.892759526366351,1.58844486979399,1.73237938696605,-1.4808968697858,-0.394711208260885,0.155657433860071 +0.682,0.528271161889635,0.892455315894632,1.58826984512195,1.73247892477576,-1.48070873698442,-0.395853175609803,0.156164352756354 +0.684,0.529545478322624,0.892151512357212,1.58809308972831,1.73257585882264,-1.48052139768411,-0.396994177169802,0.156671446391406 +0.686,0.530822156746026,0.891848118554258,1.58791460220337,1.73267018898401,-1.48033485426858,-0.398134209378273,0.157178715839674 +0.688000000000001,0.532101194698337,0.891545137296824,1.58773438115874,1.73276191514032,-1.48014910912778,-0.399273268669656,0.157686162181166 +0.690000000000001,0.533382589701972,0.891242571406793,1.58755242522738,1.7328510371752,-1.47996416465785,-0.400411351475495,0.158193786501428 +0.692000000000001,0.53466633926324,0.890940423716815,1.58736873306373,1.73293755497542,-1.4797800232611,-0.401548454224505,0.158701589891533 +0.694000000000001,0.535952440872321,0.89063869707025,1.58718330334374,1.73302146843096,-1.47959668734595,-0.40268457334264,0.159209573448066 +0.696000000000001,0.537240892003244,0.890337394321109,1.586996134765,1.73310277743496,-1.47941415932693,-0.403819705253151,0.159717738273103 +0.698000000000001,0.538531690113862,0.890036518333992,1.58680722604678,1.73318148188375,-1.4792324416246,-0.404953846376654,0.1602260854742 +0.700000000000001,0.539824832645832,0.88973607198403,1.58661657593013,1.73325758167688,-1.47905153666555,-0.406086993131194,0.160734616164367 +0.702000000000001,0.541120317024588,0.889436058156818,1.58642418317797,1.73333107671711,-1.47887144688234,-0.407219141932305,0.161243331462059 +0.704000000000001,0.542418140659324,0.889136479748358,1.58623004657515,1.7334019669104,-1.47869217471346,-0.40835028919308,0.161752232491148 +0.706000000000001,0.543718300942968,0.888837339664992,1.58603416492852,1.73347025216597,-1.47851372260333,-0.409480431324229,0.16226132038091 +0.708000000000001,0.54502079525216,0.888538640823339,1.58583653706706,1.73353593239626,-1.47833609300219,-0.410609564734145,0.162770596266001 +0.710000000000001,0.546325620947233,0.888240386150234,1.5856371618419,1.73359900751695,-1.47815928836615,-0.411737685828969,0.163280061286435 +0.712000000000001,0.547632775372191,0.887942578582658,1.58543603812642,1.73365947744698,-1.47798331115705,-0.412864791012652,0.163789716587566 +0.714000000000001,0.548942255854684,0.887645221067672,1.58523316481633,1.73371734210856,-1.47780816384249,-0.413990876687015,0.164299563320064 +0.716000000000001,0.550254059705993,0.887348316562356,1.58502854082976,1.73377260142713,-1.47763384889577,-0.415115939251818,0.16480960263989 +0.718000000000001,0.551568184221004,0.887051868033737,1.58482216510729,1.73382525533145,-1.47746036879584,-0.416239975104821,0.165319835708274 +0.720000000000001,0.552884626678192,0.886755878458723,1.5846140366121,1.73387530375352,-1.47728772602725,-0.417362980641844,0.165830263691691 +0.722000000000001,0.554203384339596,0.886460350824033,1.58440415432997,1.73392274662865,-1.47711592308013,-0.418484952256834,0.166340887761837 +0.724000000000001,0.555524454450804,0.886165288126131,1.58419251726939,1.73396758389542,-1.47694496245012,-0.419605886341925,0.166851709095599 +0.726000000000001,0.556847834240929,0.885870693371153,1.58397912446164,1.73400981549571,-1.47677484663834,-0.420725779287503,0.167362728875035 +0.728000000000001,0.558173520922593,0.885576569574838,1.58376397496086,1.73404944137472,-1.47660557815134,-0.421844627482264,0.16787394828734 +0.730000000000001,0.559501511691904,0.885282919762457,1.58354706784411,1.73408646148093,-1.47643715950105,-0.422962427313284,0.168385368524824 +0.732000000000001,0.560831803728442,0.88498974696874,1.58332840221145,1.73412087576615,-1.47626959320474,-0.424079175166072,0.168896990784883 +0.734000000000001,0.562164394195236,0.884697054237806,1.58310797718603,1.73415268418549,-1.47610288178497,-0.42519486742464,0.169408816269966 +0.736000000000001,0.563499280238748,0.884404844623089,1.58288579191413,1.73418188669737,-1.47593702776951,-0.426309500471559,0.169920846187549 +0.738000000000001,0.564836458988852,0.884113121187264,1.58266184556526,1.73420848326357,-1.47577203369137,-0.427423070688025,0.170433081750106 +0.740000000000001,0.566175927558821,0.883821887002171,1.5824361373322,1.73423247384916,-1.47560790208866,-0.42853557445392,0.170945524175074 +0.742000000000001,0.567517683045306,0.883531145148745,1.58220866643111,1.73425385842254,-1.47544463550459,-0.429647008147871,0.171458174684822 +0.744000000000001,0.56886172252832,0.883240898716936,1.58197943210157,1.73427263695546,-1.47528223648741,-0.430757368147312,0.171971034506622 +0.746000000000001,0.570208043071218,0.882951150805634,1.58174843360665,1.73428880942298,-1.47512070759036,-0.431866650828549,0.172484104872614 +0.748000000000001,0.571556641720685,0.882661904522594,1.58151567023301,1.73430237580353,-1.47496005137162,-0.432974852566815,0.172997387019772 +0.750000000000001,0.572907515506717,0.882373162984358,1.58128114129091,1.73431333607884,-1.47480027039421,-0.434081969736338,0.173510882189869 +0.752000000000001,0.574260661442607,0.882084929316175,1.58104484611434,1.734321690234,-1.47464136722603,-0.435187998710394,0.174024591629444 +0.754000000000001,0.575616076524924,0.881797206651926,1.58080678406105,1.73432743825743,-1.47448334443972,-0.436292935861373,0.174538516589767 +0.756000000000001,0.576973757733505,0.881509998134041,1.58056695451263,1.73433058014092,-1.47432620461263,-0.437396777560839,0.175052658326798 +0.758000000000001,0.578333702031433,0.881223306913424,1.58032535687455,1.73433111587956,-1.4741699503268,-0.438499520179586,0.175567018101155 +0.760000000000001,0.579695906365026,0.880937136149367,1.58008199057628,1.73432904547181,-1.47401458416884,-0.439601160087703,0.176081597178075 +0.762000000000001,0.581060367663824,0.880651489009475,1.57983685507131,1.73432436891946,-1.47386010872993,-0.440701693654633,0.176596396827374 +0.764000000000001,0.582427082840568,0.88036636866958,1.5795899498372,1.73431708622767,-1.47370652660573,-0.441801117249229,0.177111418323409 +0.766000000000001,0.583796048791196,0.880081778313663,1.5793412743757,1.73430719740491,-1.47355384039632,-0.442899427239818,0.177626662945039 +0.768000000000001,0.585167262394818,0.879797721133767,1.57909082821277,1.73429470246301,-1.47340205270617,-0.443996619994258,0.178142131975585 +0.770000000000001,0.586540720513715,0.879514200329917,1.57883861089866,1.73427960141713,-1.47325116614405,-0.445092691879997,0.178657826702786 +0.772000000000001,0.587916419993315,0.879231219110036,1.57858462200795,1.73426189428578,-1.47310118332296,-0.446187639264133,0.179173748418762 +0.774000000000001,0.589294357662189,0.878948780689859,1.57832886113965,1.73424158109082,-1.47295210686012,-0.447281458513473,0.179689898419965 +0.776000000000001,0.590674530332033,0.878666888292853,1.57807132791721,1.73421866185741,-1.47280393937686,-0.44837414599459,0.180206278007144 +0.778000000000001,0.592056934797661,0.878385545150123,1.57781202198864,1.73419313661408,-1.47265668349856,-0.449465698073883,0.180722888485294 +0.780000000000001,0.593441567836988,0.878104754500334,1.5775509430265,1.73416500539268,-1.47251034185463,-0.450556111117633,0.181239731163617 +0.782000000000001,0.594828426211026,0.877824519589624,1.57728809072802,1.73413426822839,-1.47236491707839,-0.451645381492064,0.181756807355473 +0.784000000000001,0.596217506663866,0.87754484367151,1.57702346481513,1.7341009251597,-1.47222041180703,-0.452733505563398,0.182274118378338 +0.786000000000001,0.597608805922672,0.87726573000681,1.57675706503451,1.73406497622846,-1.47207682868156,-0.453820479697916,0.182791665553752 +0.788000000000001,0.599002320697671,0.876987181863549,1.57648889115765,1.73402642147981,-1.47193417034672,-0.45490630026201,0.183309450207279 +0.790000000000001,0.600398047682141,0.876709202516871,1.57621894298094,1.73398526096222,-1.47179243945091,-0.455990963622245,0.183827473668453 +0.792000000000001,0.601795983552404,0.876431795248953,1.57594722032567,1.73394149472746,-1.47165163864617,-0.457074466145414,0.184345737270735 +0.794000000000001,0.603196124967817,0.876154963348912,1.57567372303813,1.73389512283062,-1.47151177058802,-0.458156804198595,0.184864242351456 +0.796000000000001,0.604598468570761,0.875878710112718,1.57539845098963,1.73384614533009,-1.4713728379355,-0.459237974149207,0.185382990251778 +0.798000000000001,0.606003010986638,0.875603038843101,1.57512140407657,1.73379456228755,-1.471234843351,-0.460317972365066,0.185901982316635 +0.800000000000001,0.607409748823857,0.875327952849463,1.57484258222051,1.73374037376799,-1.47109778950029,-0.461396795214443,0.186421219894683 +0.802000000000001,0.608818678673833,0.875053455447783,1.57456198536819,1.73368357983966,-1.47096167905234,-0.462474439066119,0.186940704338253 +0.804000000000001,0.610229797110975,0.874779549960529,1.57427961349158,1.73362418057413,-1.47082651467933,-0.463550900289437,0.187460437003294 +0.806000000000001,0.611643100692684,0.874506239716561,1.57399546658798,1.73356217604621,-1.47069229905656,-0.464626175254363,0.187980419249321 +0.808000000000001,0.613058585959342,0.874233528051042,1.57370954468001,1.73349756633399,-1.47055903486235,-0.465700260331539,0.188500652439361 +0.810000000000001,0.614476249434314,0.873961418305345,1.57342184781567,1.73343035151884,-1.47042672477799,-0.466773151892335,0.189021137939902 +0.812000000000001,0.615896087623933,0.873689913826956,1.57313237606844,1.73336053168536,-1.47029537148767,-0.467844846308908,0.189541877120831 +0.814000000000001,0.617318097017503,0.873419017969381,1.57284112953726,1.73328810692141,-1.47016497767838,-0.468915339954255,0.190062871355384 +0.816000000000001,0.618742274087295,0.873148734092055,1.57254810834662,1.73321307731809,-1.47003554603984,-0.469984629202264,0.190584122020088 +0.818000000000001,0.620168615288535,0.872879065560241,1.57225331264657,1.73313544296973,-1.46990707926447,-0.471052710427774,0.191105630494703 +0.820000000000001,0.62159711705941,0.872610015744938,1.57195674261282,1.7330552039739,-1.46977958004723,-0.472119580006623,0.191627398162166 +0.822000000000001,0.623027775821061,0.872341588022787,1.57165839844673,1.73297236043136,-1.46965305108561,-0.473185234315705,0.192149426408529 +0.824000000000001,0.624460587977579,0.872073785775971,1.57135828037537,1.7328869124461,-1.46952749507954,-0.47424966973302,0.192671716622905 +0.826000000000001,0.625895549916005,0.871806612392117,1.5710563886516,1.7327988601253,-1.46940291473127,-0.475312882637732,0.193194270197405 +0.828000000000001,0.627332658006332,0.871540071264207,1.57075272355404,1.73270820357932,-1.46927931274535,-0.476374869410216,0.193717088527078 +0.830000000000001,0.628771908601495,0.871274165790472,1.57044728538719,1.73261494292173,-1.46915669182849,-0.477435626432114,0.19424017300985 +0.832000000000001,0.630213298037378,0.871008899374296,1.57014007448141,1.73251907826924,-1.46903505468952,-0.478495150086386,0.194763525046463 +0.834000000000001,0.631656822632812,0.870744275424124,1.56983109119298,1.73242060974174,-1.4689144040393,-0.479553436757363,0.195287146040414 +0.836000000000001,0.633102478689575,0.870480297353353,1.56952033590416,1.73231953746225,-1.46879474259064,-0.480610482830795,0.195811037397887 +0.838000000000001,0.634550262492392,0.870216968580243,1.56920780902321,1.73221586155694,-1.46867607305818,-0.48166628469391,0.196335200527698 +0.840000000000001,0.636000170308938,0.869954292527811,1.56889351098442,1.73210958215513,-1.46855839815836,-0.482720838735454,0.196859636841221 +0.842000000000001,0.637452198389838,0.869692272623734,1.56857744224815,1.73200069938921,-1.46844172060932,-0.483774141345754,0.197384347752331 +0.844000000000001,0.638906342968672,0.869430912300249,1.56825960330088,1.73188921339473,-1.46832604313078,-0.484826188916759,0.197909334677334 +0.846000000000001,0.640362600261975,0.869170214994053,1.56793999465524,1.73177512431028,-1.468211368444,-0.485876977842096,0.198434599034903 +0.848000000000001,0.641820966469242,0.868910184146201,1.56761861685004,1.73165843227758,-1.46809769927166,-0.486926504517117,0.19896014224601 +0.850000000000001,0.643281437772933,0.868650823202005,1.56729547045029,1.73153913744139,-1.4679850383378,-0.487974765338951,0.19948596573386 +0.852000000000001,0.644744010338476,0.868392135610934,1.56697055604728,1.73141723994954,-1.46787338836771,-0.48902175670655,0.200012070923822 +0.854000000000001,0.64620868031427,0.868134124826513,1.56664387425853,1.73129273995289,-1.46776275208785,-0.490067475020745,0.200538459243361 +0.856000000000001,0.647675443831696,0.867876794306219,1.56631542572793,1.73116563760535,-1.46765313222577,-0.491111916684285,0.201065132121969 +0.858000000000001,0.649144297005118,0.867620147511379,1.56598521112567,1.73103593306384,-1.46754453151001,-0.492155078101897,0.201592090991095 +0.860000000000001,0.65061523593189,0.867364187907071,1.56565323114831,1.73090362648827,-1.46743695267,-0.493196955680325,0.202119337284073 +0.862000000000001,0.652088256692368,0.867108918962015,1.56531948651884,1.73076871804157,-1.46733039843599,-0.494237545828382,0.202646872436052 +0.864000000000001,0.653563355349911,0.866854344148476,1.56498397798665,1.73063120788962,-1.46722487153896,-0.495276844957,0.203174697883929 +0.866000000000001,0.655040527950894,0.866600466942159,1.5646467063276,1.73049109620127,-1.46712037471049,-0.496314849479273,0.203702815066266 +0.868000000000001,0.656519770524717,0.866347290822102,1.56430767234401,1.73034838314831,-1.46701691068271,-0.497351555810508,0.20423122542323 +0.870000000000001,0.658001079083809,0.866094819270579,1.56396687686473,1.73020306890547,-1.46691448218819,-0.498386960368268,0.20475993039651 +0.872000000000001,0.659484449623645,0.865843055772988,1.56362432074513,1.73005515365041,-1.46681309195986,-0.499421059572424,0.205288931429246 +0.874000000000001,0.660969878122753,0.865592003817755,1.56328000486712,1.72990463756365,-1.46671274273087,-0.500453849845198,0.205818229965956 +0.876000000000001,0.662457360542723,0.865341666896222,1.56293393013922,1.72975152082862,-1.46661343723456,-0.501485327611209,0.20634782745246 +0.878000000000001,0.663946892828224,0.865092048502547,1.5625860974965,1.72959580363163,-1.4665151782043,-0.502515489297519,0.206877725335803 +0.880000000000001,0.665438470907013,0.864843152133601,1.56223650790071,1.72943748616182,-1.46641796837345,-0.50354433133368,0.207407925064179 +0.882000000000001,0.666932090689948,0.864594981288854,1.56188516234017,1.72927656861116,-1.46632181047522,-0.504571850151778,0.207938428086857 +0.884000000000001,0.668427748071,0.864347539470282,1.56153206182992,1.72911305117447,-1.46622670724262,-0.50559804218648,0.208469235854099 +0.886000000000001,0.669925438927274,0.864100830182251,1.56117720741164,1.72894693404934,-1.46613266140828,-0.506622903875073,0.209000349817084 +0.888000000000001,0.671425159119014,0.863854856931418,1.56082060015371,1.72877821743615,-1.46603967570445,-0.507646431657516,0.209531771427833 +0.890000000000001,0.672926904489625,0.863609623226621,1.56046224115124,1.72860690153805,-1.46594775286284,-0.508668621976478,0.210063502139123 +0.892000000000001,0.674430670865689,0.863365132578778,1.56010213152603,1.72843298656094,-1.46585689561452,-0.509689471277386,0.210595543404412 +0.894000000000001,0.675936454056978,0.863121388500776,1.55974027242666,1.72825647271344,-1.46576710668985,-0.510708976008465,0.211127896677758 +0.896000000000001,0.677444249856473,0.862878394507367,1.55937666502844,1.72807736020688,-1.46567838881836,-0.511727132620783,0.21166056341374 +0.898000000000001,0.678954054040382,0.862636154115063,1.55901131053346,1.7278956492553,-1.46559074472864,-0.512743937568295,0.212193545067371 +0.900000000000001,0.68046586236816,0.862394670842026,1.55864421017057,1.72771134007538,-1.46550417714826,-0.513759387307882,0.212726843094021 +0.902000000000001,0.681979670582525,0.862153948207967,1.55827536519544,1.72752443288647,-1.46541868880367,-0.514773478299397,0.213260458949336 +0.904000000000001,0.68349547440948,0.861913989734032,1.55790477689051,1.72733492791056,-1.46533428242004,-0.515786207005705,0.213794394089151 +0.906000000000001,0.685013269558333,0.861674798942701,1.55753244656506,1.72714282537223,-1.46525096072125,-0.516797569892724,0.214328649969407 +0.908000000000001,0.686533051721719,0.861436379357682,1.55715837555517,1.72694812549868,-1.4651687264297,-0.51780756342947,0.21486322804607 +0.910000000000001,0.68805481657562,0.861198734503797,1.55678256522375,1.72675082851966,-1.46508758226627,-0.518816184088091,0.215398129775046 +0.912000000000001,0.689578559779388,0.860961867906883,1.55640501696055,1.72655093466749,-1.46500753095015,-0.519823428343917,0.215933356612093 +0.914000000000001,0.691104276975769,0.86072578309368,1.55602573218213,1.72634844417699,-1.4649285751988,-0.520829292675493,0.216468910012739 +0.916000000000001,0.692631963790926,0.860490483591726,1.55564471233194,1.72614335728551,-1.46485071772781,-0.521833773564622,0.217004791432196 +0.918000000000001,0.694161615834466,0.860255972929249,1.55526195888024,1.7259356742329,-1.46477396125078,-0.522836867496405,0.217541002325271 +0.920000000000001,0.695693228699459,0.86002225463506,1.55487747332414,1.72572539526144,-1.46469830847925,-0.523838570959278,0.218077544146281 +0.922000000000001,0.697226797962472,0.859789332238447,1.55449125718762,1.72551252061588,-1.46462376212257,-0.524838880445057,0.218614418348965 +0.924000000000001,0.698762319183589,0.859557209269066,1.5541033120215,1.72529705054338,-1.46455032488778,-0.525837792448971,0.219151626386398 +0.926000000000001,0.70029978790644,0.859325889256835,1.55371363940345,1.72507898529349,-1.46447799947954,-0.526835303469702,0.219689169710901 +0.928000000000001,0.701839199658234,0.859095375731825,1.553322240938,1.72485832511816,-1.46440678859996,-0.527831410009425,0.220227049773952 +0.930000000000001,0.703380549949778,0.858865672224156,1.55292911825653,1.72463507027167,-1.46433669494857,-0.528826108573845,0.220765268026098 +0.932000000000001,0.704923834275515,0.858636782263888,1.55253427301724,1.72440922101062,-1.46426772122215,-0.529819395672234,0.221303825916866 +0.934000000000001,0.706469048113551,0.858408709380912,1.5521377069052,1.72418077759394,-1.46419987011463,-0.53081126781747,0.221842724894669 +0.936000000000001,0.708016186925684,0.858181457104846,1.5517394216323,1.72394974028283,-1.464133144317,-0.531801721526072,0.222381966406721 +0.938000000000001,0.709565246157439,0.857955028964927,1.55133941893729,1.72371610934073,-1.46406754651717,-0.532790753318239,0.222921551898944 +0.940000000000001,0.711116221238098,0.857729428489903,1.55093770058571,1.72347988503334,-1.4640030793999,-0.533778359717884,0.223461482815873 +0.942000000000001,0.712669107580733,0.857504659207926,1.55053426836993,1.72324106762854,-1.46393974564663,-0.534764537252671,0.224001760600571 +0.944000000000001,0.714223900582241,0.857280724646449,1.55012912410912,1.72299965739641,-1.46387754793543,-0.535749282454052,0.224542386694531 +0.946000000000001,0.715780595623377,0.857057628332111,1.54972226964928,1.72275565460918,-1.46381648894084,-0.536732591857301,0.225083362537588 +0.948000000000001,0.717339188068792,0.85683537379064,1.54931370686316,1.72250905954121,-1.46375657133378,-0.53771446200155,0.22562468956782 +0.950000000000001,0.718899673267065,0.85661396454674,1.54890343765031,1.72225987246896,-1.46369779778142,-0.538694889429823,0.226166369221463 +0.952000000000001,0.720462046550743,0.856393404123984,1.54849146393702,1.72200809367097,-1.46364017094711,-0.539673870689072,0.226708402932809 +0.954000000000001,0.722026303236377,0.856173696044713,1.54807778767637,1.72175372342785,-1.4635836934902,-0.540651402330209,0.227250792134119 +0.956000000000001,0.72359243862456,0.855954843829926,1.54766241084813,1.72149676202222,-1.46352836806596,-0.541627480908142,0.227793538255521 +0.958000000000001,0.725160447999967,0.855736850999173,1.54724533545882,1.72123720973869,-1.46347419732549,-0.542602102981809,0.228336642724924 +0.960000000000001,0.726730326631394,0.855519721070452,1.54682656354166,1.72097506686386,-1.46342118391554,-0.543575265114208,0.228880106967914 +0.962000000000001,0.7283020697718,0.8553034575601,1.54640609715655,1.72071033368628,-1.46336933047848,-0.544546963872433,0.229423932407666 +0.964000000000001,0.729875672658345,0.855088063982692,1.54598393839006,1.72044301049639,-1.46331863965209,-0.545517195827706,0.229968120464842 +0.966000000000001,0.731451130512437,0.85487354385093,1.54556008935541,1.72017309758653,-1.46326911406952,-0.546485957555409,0.230512672557499 +0.968000000000001,0.733028438539769,0.854659900675541,1.54513455219245,1.71990059525092,-1.46322075635914,-0.547453245635117,0.23105759010099 +0.970000000000001,0.734607591930368,0.854447137965172,1.54470732906763,1.7196255037856,-1.46317356914442,-0.548419056650628,0.231602874507869 +0.972000000000001,0.736188585858637,0.854235259226282,1.544278422174,1.71934782348839,-1.46312755504384,-0.549383387189995,0.232148527187791 +0.974000000000001,0.7377714154834,0.854024267963042,1.54384783373116,1.71906755465893,-1.46308271667073,-0.550346233845558,0.23269454954742 +0.976000000000001,0.739356075947947,0.853814167677228,1.54341556598525,1.71878469759857,-1.46303905663319,-0.551307593213976,0.233240942990322 +0.978000000000001,0.740942562380084,0.853604961868114,1.54298162120891,1.71849925261039,-1.46299657753396,-0.552267461896253,0.233787708916878 +0.980000000000001,0.74253086989218,0.853396654032375,1.5425460017013,1.71821121999916,-1.46295528197029,-0.553225836497772,0.234334848724176 +0.982000000000001,0.744120993581211,0.853189247663977,1.542108709788,1.7179206000713,-1.46291517253385,-0.554182713628324,0.234882363805919 +0.984000000000001,0.745712928528814,0.852982746254073,1.54166974782104,1.71762739313486,-1.46287625181059,-0.555138089902139,0.235430255552321 +0.986000000000001,0.747306669801336,0.852777153290908,1.54122911817886,1.71733159949949,-1.4628385223806,-0.556091961937912,0.235978525350012 +0.988000000000001,0.748902212449883,0.852572472259706,1.54078682326625,1.7170332194764,-1.46280198681805,-0.557044326358833,0.236527174581937 +0.990000000000001,0.750499551510374,0.852368706642572,1.54034286551436,1.71673225337834,-1.46276664769103,-0.557995179792617,0.237076204627253 +0.992000000000001,0.752098682003593,0.852165859918391,1.53989724738063,1.71642870151956,-1.46273250756142,-0.558944518871534,0.237625616861236 +0.994000000000001,0.753699598935238,0.851963935562724,1.53944997134879,1.71612256421578,-1.46269956898482,-0.55989234023243,0.238175412655175 +0.996000000000001,0.755302297295983,0.851762937047704,1.53900103992882,1.71581384178417,-1.46266783451038,-0.560838640516764,0.238725593376274 +0.998000000000001,0.756906772061525,0.85156286784194,1.53855045565687,1.7155025345433,-1.4626373066807,-0.561783416370628,0.239276160387549 +1,0.758513018192645,0.85136373141041,1.5380982210953,1.71518864281313,-1.46260798803172,-0.562726664444779,0.239827115047732 +1.002,0.760121030635263,0.851165531214365,1.53764433883257,1.71487216691494,-1.46257988109258,-0.56366838139466,0.240378458711165 +1.004,0.76172919481938,0.850968474709213,1.53718927241537,1.71455342542013,-1.46255302535324,-0.56460762397024,0.240929648748077 +1.006,0.763334277846886,0.850772968998806,1.53673395490576,1.71423306805792,-1.46252749178502,-0.565542516737705,0.241479597042579 +1.008,0.764933032822655,0.850579414161899,1.53627933296572,1.71391176514017,-1.46250334251824,-0.566471196624796,0.242027213011431 +1.01,0.766522199073563,0.850388203246982,1.53582636669269,1.71359020737919,-1.46248063087678,-0.567391812881454,0.242571403604126 +1.012,0.768098502436208,0.850199722302999,1.53537602938591,1.71326910560232,-1.4624594014561,-0.568302526976553,0.243111073314558 +1.014,0.769658655611943,0.850014350446767,1.53492930724412,1.71294919036331,-1.46243969024533,-0.569201512429837,0.243645124204465 +1.016,0.771199358587896,0.849832459967934,1.53448719899545,1.71263121145076,-1.46242152479363,-0.570086954578155,0.244172455938864 +1.018,0.772717299122628,0.849654416472253,1.53405071545996,1.71231593729341,-1.46240492442135,-0.570957050275173,0.24469196583363 +1.02,0.774209153295166,0.849480579063933,1.53362087904565,1.71200415426268,-1.46238990047625,-0.571810007523754,0.245202548915392 +1.022,0.775671586116195,0.849311300567766,1.53319872317847,1.71169666587236,-1.46237645663525,-0.572644045040266,0.245703097993917 +1.024,0.777101252200228,0.849146927791694,1.53278529166706,1.71139429187555,-1.46236458925177,-0.573457391750115,0.246192503747102 +1.026,0.778494796497713,0.848987801830413,1.53238163800274,1.711097867259,-1.46235428774923,-0.574248286213881,0.246669654818711 +1.028,0.779848855086078,0.848834258410554,1.53198882459542,1.71080824113483,-1.46234553506075,-0.575014975983496,0.247133437928979 +1.03,0.78116005601885,0.848686628277909,1.53160792194592,1.71052627552974,-1.4623383081153,-0.575755716887987,0.247582737998157 +1.032,0.782425020232096,0.848545237627096,1.53124000775516,1.71025284407179,-1.46233257837058,-0.576468772248378,0.248016438283103 +1.034,0.783640362507572,0.848410408573973,1.53088616597073,1.70998883057466,-1.46232831239258,-0.577152412021443,0.248433420526975 +1.036,0.7848026924921,0.848282459671025,1.53054748577114,1.70973512751965,-1.46232547248219,-0.577804911872101,0.248832565122065 +1.038,0.785908615772882,0.848161706465851,1.53022506048805,1.70949263443516,-1.46232401734862,-0.57842455217434,0.24921275128582 +1.04,0.78695473500859,0.848048462102792,1.52991998646666,1.70926225617395,-1.4623239028299,-0.579009616940665,0.249572857250063 +1.042,0.787937651116305,0.847943037967608,1.52963336186444,1.70904490108794,-1.46232508266035,-0.579558392680183,0.249911760463395 +1.044,0.788853964514537,0.847845744375028,1.52936628538811,1.70884147910071,-1.46232750928497,-0.580069167185563,0.250228337806779 +1.046,0.789700276422797,0.847756891298874,1.52911985496879,1.70865289967754,-1.4623311347206,-0.580540228249231,0.250521465822255 +1.048,0.790474531515875,0.847676635331512,1.52889476407133,1.70847977114713,-1.46233589722404,-0.580970607186103,0.250790469763278 +1.05,0.791179477875349,0.847604587113496,1.52869025955989,1.70832162230551,-1.4623416888769,-0.581361990782562,0.251036280427551 +1.052,0.791818305861189,0.84754031645905,1.52850544503333,1.7081778637077,-1.46234840719383,-0.58171628864015,0.251259974198561 +1.054,0.792394220156922,0.847483400874214,1.52833940991484,1.70804788416909,-1.4623559591194,-0.582035396968814,0.251462630091183 +1.056,0.792910438356313,0.847433424873286,1.52819123084624,1.70793105283471,-1.46236426018755,-0.58232119983247,0.251645329536891 +1.058,0.79337018963127,0.847389979322948,1.52805997300734,1.70782672114435,-1.46237323371983,-0.582575570339205,0.25180915617816 +1.06,0.793776713478906,0.847352660815312,1.52794469136149,1.7077342246939,-1.46238281006298,-0.582800371774751,0.251955195672332 +1.062,0.794133258545905,0.847321071071069,1.52784443182793,1.70765288499264,-1.46239292586635,-0.582997458678001,0.252084535505199 +1.064,0.7944430815285,0.847294816373726,1.52775823238202,1.7075820111171,-1.46240352339968,-0.583168677857466,0.252198264814529 +1.066,0.794709446146578,0.847273507035861,1.52768512408382,1.7075209012611,-1.46241454991172,-0.583315869347713,0.252297474223733 +1.068,0.794935621134677,0.847256582178173,1.52762398533234,1.70746886022957,-1.46242568999227,-0.583440857634691,0.252383050855421 +1.07,0.795124876564734,0.847242800968848,1.52757311565017,1.70742524724721,-1.46243558784952,-0.583545424258445,0.252455082111308 +1.072,0.79528048963571,0.847231324436233,1.52753114513836,1.70738937777344,-1.4624435007616,-0.583631368484945,0.252514124239224 +1.074,0.795405743378718,0.847221698745122,1.52749702203415,1.70736052646407,-1.46244927420063,-0.583700507250131,0.25256118338822 +1.076,0.795503924901395,0.847213705083353,1.5274698878575,1.70733794208708,-1.46245311274696,-0.583754667567952,0.252597540065297 +1.078,0.795578324099649,0.847207244726261,1.5274489817838,1.707320858976,-1.46245540452512,-0.583795680766422,0.252624614669369 +1.08,0.795632232709233,0.847202255186311,1.52743357092267,1.70730850546845,-1.46245659303338,-0.58382537835427,0.252643869376861 +1.082,0.795668943607795,0.847198653344747,1.52742290313086,1.70730010975261,-1.46245709017542,-0.583845589308781,0.252656741614279 +1.084,0.795691750307612,0.847196301672216,1.52741617913159,1.70729490350484,-1.46245722458809,-0.583858138579516,0.252664604579035 +1.086,0.79570394660047,0.847194993819697,1.52741254083593,1.70729212367106,-1.4624572196004,-0.583864846606945,0.25266875045968 +1.088,0.79570882633024,0.84719445593062,1.52741107280446,1.70729101272849,-1.4624571952486,-0.583867529655005,0.252670392078664 +1.09,0.795709683276719,0.847194360012352,1.52741081376797,1.70729081775968,-1.4624571887431,-0.583868000753386,0.252670678660393 diff --git a/data/ik_movel_scurve_tcp.csv b/data/ik_movel_scurve_tcp.csv index 6ca35b41..2eb2aafe 100644 --- a/data/ik_movel_scurve_tcp.csv +++ b/data/ik_movel_scurve_tcp.csv @@ -1,169 +1,547 @@ t,px,py,pz,vx,vy,vz,ax,ay,az,speed,acc -0,0.559809314390095,-0.292914056655931,0.00429163619695835,0,0,0,0.0499999733977186,5.51156342787351e-08,4.43482056633471e-08,0,0.0499999733977686 -0.002,0.559809314390095,-0.292914056655931,0.00429163619695835,9.99999467954371e-05,1.1023126855747e-10,8.86964113266941e-11,0.124999924931701,4.50216253167213e-07,3.45509211518991e-07,9.99999467955372e-05,0.12499992493299 -0.004,0.559809714389882,-0.29291405665549,0.00429163619731314,0.000499999699726805,1.80086501266885e-09,1.38203684607596e-09,0.299999780524474,2.51783663363092e-06,1.90865379057215e-06,0.000499999699731958,0.299999780541111 -0.006,0.559811314388894,-0.292914056648728,0.0042916362024865,0.00129999906889333,1.01815778030812e-08,7.72331157361528e-09,0.49999952015517,8.36266125792129e-06,6.30987709998587e-06,0.00129999906895614,0.499999520264919 -0.008,0.559814914386157,-0.292914056614764,0.00429163622820639,0.00249999778034748,3.5251510044354e-08,2.66215452460195e-08,0.699999088221714,2.04570457795761e-05,1.54041571165386e-05,0.00249999778073776,0.699999088690129 -0.01,0.559821314380015,-0.292914056507722,0.00429163630897268,0.00409999542178019,9.20097609213855e-08,6.93399400397698e-08,0.899998415099246,4.13012367361798e-05,3.10682677501228e-05,0.00409999542339895,0.899998416583154 -0.012,0.559831314367845,-0.292914056246725,0.00429163650556615,0.00609999144074447,2.00456456989073e-07,1.50894616246511e-07,1.09999742960165,7.33957374043914e-05,5.51777738083681e-05,0.00609999144590447,1.09999743343417 -0.014,0.559845714345778,-0.292914055705896,0.00429163691255115,0.00849998514018679,3.85592710538951e-07,2.90051035273242e-07,1.2999960579893,0.000119240478602123,8.96055313281962e-05,0.0084999851538816,1.29999606654604 -0.016,0.559865314308405,-0.292914054704354,0.00429163766577029,0.0112999756727017,6.77418371397564e-07,5.09316741559296e-07,1.49999422298374,0.000181333153354002,0.000136219124521886,0.0112999757044849,1.4999942401296 -0.018,0.559890914248469,-0.292914052996222,0.00429163894981811,0.0144999620321218,1.11092532395496e-06,8.34927533360785e-07,1.69999184224112,0.00026216611173635,0.000196876992139549,0.0144999620987171,1.69999187385645 -0.02,0.559923314156534,-0.292914050260653,0.00429164100548042,0.0180999430416662,1.72608281834297e-06,1.29682471011749e-06,1.8999888267146,0.000364221840187806,0.000273423240645942,0.0180999431704267,1.89998888129856 -0.022,0.559963314020635,-0.292914046091891,0.00429164413711695,0.0220999173389802,2.56781268470618e-06,1.92862049594455e-06,2.09998507891967,0.000489967604683227,0.000367681445186118,0.0220999175723123,2.09998516826742 -0.024,0.56001171382589,-0.292914039989402,0.0042916487199624,0.0264998833573449,3.68595323707588e-06,2.76755049086197e-06,2.29998049072754,0.000641850097377049,0.000481448277078743,0.0264998837582067,2.29998063067742 -0.026,0.560069313554065,-0.292914031348078,0.00429165520731892,0.0312998393018904,5.13521307421438e-06,3.85441360425953e-06,2.49997494087411,0.000822292078178631,0.000616488269288006,0.0312998399604707,2.49997515212063 -0.028,0.560136913183097,-0.29291401944855,0.00429166413761682,0.0364997831208413,6.9751215497904e-06,5.23350356801399e-06,2.69996829273255,0.00103369430376476,0.000774532239559976,0.0364997841625171,2.69996860170359 -0.03,0.560215312686548,-0.292914003447592,0.00429167614133319,0.0420997124728206,9.26999028927344e-06,6.95254256249944e-06,2.89996039135043,0.0012784471016547,0.000957282728780704,0.0420997140674938,2.89996083115247 -0.032,0.560305312032989,-0.292913982368589,0.00429169194778707,0.048099624686243,1.20889099564092e-05,9.06263448313681e-06,3.09995106013982,0.00155895799394678,0.00116643122678034,0.0480996270591626,3.09995167158681 -0.034,0.560407711185293,-0.292913955091952,0.00429171239187112,0.0544995167133799,1.55058222650606e-05,1.16182674696208e-05,3.29994009783812,0.00187770390208674,0.00140369367344906,0.0544995201575815,3.29994093059978 -0.036,0.560523310099842,-0.2929139203453,0.00429173842085695,0.0612993850775955,1.95997255647562e-05,1.4677409176933e-05,3.49992727462916,0.00223731853876696,0.00167087221576017,0.0612993899681467,3.49992838856759 -0.038,0.560652908725604,-0.29291387669305,0.00429177110150783,0.0684992258118965,2.44550964201284e-05,1.83017563326615e-05,3.69991232788274,0.00264072870168052,0.00196995390139287,0.0684992326222361,3.69991379469646 -0.04,0.56079730700309,-0.292913822524914,0.00429181162788228,0.0760990343891265,3.01626403714783e-05,2.25572247825045e-05,3.89989495749864,0.00309135651105352,0.0023032591398367,0.0760990437099621,3.89989686286844 -0.042,0.56095730486316,-0.292913756042488,0.00429186133040696,0.0840988056418911,3.68205224643425e-05,2.75147928920083e-05,4.09987482032081,0.00359332217453322,0.00267359079580281,0.0840988182033926,4.09987726674257 -0.044,0.561133702225657,-0.292913675242824,0.00429192168705385,0.0924985336704097,4.45359290696112e-05,3.32515879657158e-05,4.29985152399642,0.00414943474719153,0.00308271395389747,0.0924985503686031,4.29985463118794 -0.046,0.561327298997842,-0.292913577898772,0.00429199433675882,0.101298211737877,5.34182614531086e-05,3.98456487075982e-05,4.49982462345094,0.00476023793993806,0.00353062841896428,0.101298233659221,4.4998285264016 -0.048,0.561538895072609,-0.292913461569778,0.00429208106964868,0.110497832164214,6.35768808293635e-05,4.73741016415729e-05,4.69979361739091,0.00542759788502155,0.0040182681800005,0.110497860609679,4.6997984692289 -0.05,0.561769290326499,-0.292913323591249,0.00429218383316539,0.12009738620744,7.51286529931949e-05,5.59187214276002e-05,4.89975793999813,0.00615535560369306,0.00454798990395105,0.120097422724541,4.89976391708718 -0.052,0.562019284617439,-0.292913161055166,0.00429230474453439,0.130096863924206,8.81983032441357e-05,6.55660612573771e-05,5.0997169524225,0.00694700196673946,0.00512181379860171,0.130096910342877,5.09972425613762 -0.054,0.562289677782195,-0.292912970798036,0.00429244609741042,0.140496254017131,0.000102916660860153,7.6405976622007e-05,5.29966993568358,0.00780562950733475,0.00574138026530889,0.140496312487404,5.29967879389759 -0.056,0.562581269633507,-0.292912749388523,0.00429261036844088,0.15129554366694,0.000119420821273475,8.85315823186127e-05,5.49961608288517,0.00873441521193062,0.00640830756949011,0.151295616700051,5.49962675238459 -0.058,0.562894859956863,-0.292912493114751,0.00429280022373969,0.162494718348671,0.000137854321707875,0.000102039206899967,5.69955449053471,0.00973662749731428,0.00712419062631752,0.162494808861784,5.69956725958923 -0.06,0.563231248506902,-0.292912197971236,0.00429301852526848,0.174093761629079,0.000158367331262732,0.000117028344823883,5.89948414886353,0.0108156336560416,0.00789059960946968,0.174093872993876,5.89949933995976 -0.062,0.563591235003379,-0.292911859645426,0.00429326833711899,0.186092654944125,0.000181116856332042,0.000133601605337846,6.09940393155733,0.0119749074718733,0.00870907857723062,0.186092791039465,6.09942190430828 -0.064,0.563975619126678,-0.292911473503811,0.00429355293168983,0.198491377355309,0.000206266961150225,0.000151864659132805,6.29931258462611,0.0132180370121526,0.00958114429114307,0.198491542624217,6.29933373886932 -0.066,0.564385200512801,-0.292911034577581,0.00429387579575552,0.21128990528263,0.000233989004380652,0.000171926182502419,6.49920871424735,0.0145487329163141,0.0105082850034369,0.211290104793881,6.49923349334611 -0.068,0.564820778747809,-0.292910537547793,0.00429424063641984,0.224488212212298,0.000264461892815482,0.000193897799146553,6.69909077360974,0.0159708370313371,0.0114919593069071,0.224488451726861,6.69911966797334 -0.07,0.56528315336165,-0.29290997673001,0.00429465138695211,0.238086268377069,0.000297872352506001,0.000217894019730047,6.89895704867465,0.0174883313941443,0.0125335951504587,0.238086554419732,6.89899059951526 -0.0720000000000001,0.565773123821317,-0.292909346058383,0.00429511221249876,0.252084040406997,0.000334415218392059,0.000244032179748388,7.0988056425289,0.0191053476789049,0.0136345891296047,0.252084380343486,7.09884444587503 -0.0740000000000001,0.566291489523278,-0.292908639069136,0.0042956275156711,0.266481490947184,0.000374293743221621,0.000272432376248466,7.29863445856486,0.0208261771508788,0.014796305796913,0.266481893067128,7.29867916955324 -0.0760000000000001,0.566839049785106,-0.29290784888341,0.00429620194200375,0.281278578241256,0.000417719926995574,0.00030321740293604,7.49844118208552,0.0226552812308822,0.0160200773246035,0.281279051847366,7.49849251955626 -0.0780000000000001,0.567416603836243,-0.292906968189428,0.00429684038528284,0.296475255675527,0.000464914868145149,0.00033651268554688,7.69326379170681,0.0245802433615494,0.0172948895291874,0.296475811179413,7.6933224987878 -0.0800000000000001,0.568024950807808,-0.292905989223938,0.00429754799274594,0.312051633408083,0.000516040900441772,0.00037239696105279,7.80657881532115,0.0263271762758476,0.0184215440852953,0.312052282302758,7.80664494346439 -0.0820000000000001,0.568664810369875,-0.292904904025827,0.00429832997312705,0.327701570936811,0.00057022357324854,0.000410198861888061,7.74832860281349,0.027525988616911,0.0191341843740894,0.327702323782551,7.74840112115 -0.0840000000000001,0.569335757091555,-0.292903708329645,0.00429918878819349,0.343044947819337,0.000626144854909416,0.000448933698549147,7.57158478418422,0.0282752689630127,0.0195077700581789,0.343045813009308,7.57166270960464 -0.0860000000000001,0.570036990161153,-0.292902399446407,0.00430012570792125,0.357987910073548,0.000683324649100591,0.000488229942120777,7.37137318761875,0.0288619774503617,0.0197522572308733,0.357988895162796,7.37145615442109 -0.0880000000000001,0.570767708731849,-0.292900975031048,0.00430114170796198,0.372530440569812,0.000741592764710863,0.000527942727472641,7.17115326223649,0.0293644548468585,0.0199254662439779,0.372531552803908,7.17124106455072 -0.0900000000000001,0.571527111923432,-0.292899433075348,0.00430223747883114,0.386672523122494,0.000800782468488025,0.000567931807096688,6.97092551914246,0.0297843931879038,0.0200297169969734,0.386673769393548,6.97101792373769 -0.0920000000000001,0.572314398824339,-0.292897771901174,0.00430341343519036,0.400414142646382,0.000860730337462478,0.000608061595460535,6.77069054578342,0.0301234165424324,0.0200673501791343,0.400415529452661,6.77078729436455 -0.0940000000000001,0.573128768494017,-0.292895990153998,0.00430466972521298,0.413755285305628,0.000921276134657755,0.000648201207813225,6.57044900202045,0.0303830922920855,0.0200407243708053,0.413756818714645,6.57054981345413 -0.0960000000000001,0.573969419965562,-0.292894086796636,0.00430600624002161,0.426695938654464,0.00098226270663082,0.000688224492943756,6.37020161622925,0.0305649416054709,0.0199522131221277,0.426697624269449,6.3703061887066 -0.0980000000000001,0.574835552248635,-0.292892061103172,0.00430742262318476,0.439236091770545,0.00104353590107964,0.000728010060301736,6.16994918151148,0.0306704492220033,0.0198042019823249,0.439237934700189,6.17005719465434 -0.1,0.575726364332644,-0.292889912653031,0.00430891828026282,0.45137573538051,0.00110494450351883,0.000767441300873056,5.96969255203111,0.0307010727049194,0.0195990853390365,0.451377740211901,5.96980366894817 -0.102,0.576641055190157,-0.292887641325158,0.00431049238838825,0.463114861978669,0.00116634019189932,0.000806406401657882,5.76943263956573,0.0306582507089703,0.0193392632533151,0.463117032753331,5.76954650886239 -0.104,0.577578823780559,-0.292885247292264,0.00431214390586945,0.474453465938773,0.00122757750635471,0.000844798353886316,5.56917040976655,0.0305434104778956,0.0190271381263554,0.474455806131727,5.56928666751211 -0.106,0.578538869053912,-0.292882731015132,0.0043138715818038,0.485391543617735,0.0012885138338109,0.000882514954163304,5.36890687867497,0.0303579748943405,0.0186651113480082,0.485394056119512,5.36902515033267 -0.108,0.57952038995503,-0.292880093236928,0.00431567396568611,0.495929093453473,0.00134900940593208,0.000919458799278349,5.1686431093087,0.0301033685791429,0.0182555799574379,0.495931780554991,5.16876301163089 -0.11,0.580522585427726,-0.292877334977508,0.00431754941700091,0.50606611605497,0.00140892730812747,0.000955537273993056,4.96838020799805,0.029781023171832,0.0178009331320422,0.506068979435219,4.96850135088925 -0.112,0.58154465441925,-0.292874457527696,0.00431949611478208,0.515802614285465,0.0014681334986194,0.000990662531806518,4.76811932086096,0.029392382049076,0.0173035487015249,0.515805655001903,4.76824130921326 -0.114,0.582585795884868,-0.292871462443514,0.00432151206712814,0.525138593338414,0.00152649683632378,0.00102475146879916,4.5678616301531,0.0289389044186294,0.0167657896784495,0.525141811820019,4.56798406565932 -0.116,0.583645208792603,-0.292868351540351,0.00432359512065728,0.534074060806077,0.00158388911629392,0.00105772569052032,4.36760835072214,0.0284220686361247,0.0161900008278232,0.534077456848969,4.36773083367212 -0.118,0.584722092128092,-0.292865126887049,0.00432574296989022,0.542609026741303,0.00164018511086827,0.00108951147211045,4.16736072635787,0.0278433749043016,0.0155785052566303,0.542612599506858,4.1674828574263 -0.12,0.585815644899568,-0.292861790799907,0.00432795316654572,0.550743503711509,0.00169526261591113,0.00112003971154684,3.96712002594806,0.0272043475697814,0.0149336010406633,0.550747251726889,3.96724140798678 -0.122,0.586925066142938,-0.292858345836585,0.0043302231287364,0.558477506845095,0.0017490025011474,0.0011492458762731,3.76688753972501,0.0265065367745247,0.0142575579129358,0.558481428006112,3.76700777957585 -0.124,0.588049554926949,-0.292854794789903,0.00433255015005081,0.565811053870409,0.00180128876300923,0.00117706994319858,3.53708533862344,0.0255557283494761,0.0134253458289682,0.565815145446639,3.53720313635886 -0.126,0.58918831035842,-0.292851140681533,0.0043349314085092,0.572625848199589,0.0018512254145453,0.00120294725958897,3.2094859855123,0.0238896577207921,0.0121411166884012,0.572630104119529,3.20959785855804 -0.128,0.590340058319747,-0.292847389888244,0.00433736193908917,0.578648997812458,0.0018968473938924,0.00122563440995219,2.78101720087942,0.0214605917515914,0.0103842094307031,0.578653404793495,2.7811193898125 -0.13,0.59150290634967,-0.292843553291958,0.00433983394614901,0.583749917003106,0.00193706778155167,0.00124448409731179,2.33201049612552,0.0187851663079053,0.00849918868964238,0.583754457433425,2.33210164287949 -0.132,0.59267505798776,-0.292839641617118,0.00434233987547841,0.58797703979696,0.00197198805912402,0.00125963116471076,1.90736690201809,0.0161709208801319,0.00668790649943629,0.587981695919161,1.90744717507184 -0.134,0.593854814508858,-0.292835665339721,0.00434487247080785,0.591379384611179,0.0020017514650722,0.00127123572330953,1.50724616745923,0.0136369137024306,0.00496156059032887,0.591384138773005,1.50731602254449 -0.136,0.595040575526204,-0.292831634611258,0.00434742481837165,0.594006024466797,0.00202653571393374,0.00127947740707207,1.13156082520716,0.0111986669174002,0.00332859781404515,0.594010859338686,1.13162113397004 -0.138,0.596230838606725,-0.292827559196865,0.00434999038043614,0.595905627912007,0.0020465461327418,0.00128455011456571,0.780010843692835,0.00886839884514655,0.00179496988626793,0.595910526670971,0.780063322233123 -0.14,0.597424198037852,-0.292823448426727,0.00435256301882991,0.597126067841569,0.00206200930931433,0.00128665728661714,0.452116556103055,0.00665529550220034,0.000364406937784778,0.597131014322065,0.45216568429407 -0.142,0.598619342878091,-0.292819311159628,0.00435513700958261,0.59771409413642,0.0020731673147506,0.00128600774231685,0.147249351892253,0.00456580540389439,-0.000961303344218511,0.597719072949784,0.147323257891599 -0.144,0.599815054414398,-0.292815155757468,0.00435770704979918,0.597715065249138,0.0020802725309299,0.00128281207324027,-0.135340179480137,0.00260394424772547,-0.00218204085442736,0.597720061873783,0.135382812829588 -0.146,0.601010203139088,-0.292810990069504,0.00436026825787557,0.597172733418499,0.0020835830917415,0.00127727957889914,-0.396496804250246,0.000771599058951854,-0.00329908979215115,0.597177734263548,0.396511279964671 -0.148,0.602203745348072,-0.292806821425101,0.00436281616811478,0.596129078032137,0.00208335892716571,0.00126961571407166,-0.63713793364839,-0.000931176580287739,-0.00431489211808605,0.596134070477377,0.637153224803543 -0.15,0.603394719451216,-0.292802656633796,0.00436534672073186,0.594624181683905,0.00207985838542035,0.0012600200104268,-0.858233595635304,-0.0025058817555712,-0.00523282103672556,0.594629154099077,0.858253206540167 -0.152,0.604582242074808,-0.292798501991559,0.00436785624815648,0.592696143649595,0.00207333540014343,0.00124868442992476,-1.06078897545159,-0.00395530648858444,-0.00605697668062954,0.592701085395994,1.06081364143546 -0.154,0.605765504025815,-0.292794363292195,0.00437034145845155,0.590381025782099,0.00206403715946601,0.00123579210370428,-1.24582937224837,-0.00528329199833699,-0.00679200462712359,0.590385927199356,1.24585908884511 -0.156,0.606943766177936,-0.292790245842921,0.0043727994165713,0.587712826160602,0.00205220223215008,0.00122151641141627,-1.41438739407335,-0.00649451362133568,-0.00744293712513083,0.587717678541344,1.4144218877456 -0.158,0.608116355330457,-0.292786154483267,0.00437522752409722,0.584723476205806,0.00203805910498067,0.00120602035520376,-1.56749219931695,-0.00759428737950873,-0.00801505640676824,0.584728271760665,1.56753108717164 -0.16,0.609282660082759,-0.292782093606502,0.00437762349799212,0.581442857363334,0.00202182508263204,0.00118945618578919,-1.70616059021189,-0.00858840009873573,-0.00851377856842666,0.581447589178527,1.70620344760933 -0.162,0.61044212675991,-0.292778067182936,0.00437998534884038,0.577898833844958,0.00200370550458573,0.00117196524093005,-1.83138976599106,-0.00948296169714368,-0.00894455677493549,0.577903495834415,1.83143615958494 -0.164,0.611594255418139,-0.292774078784483,0.00438231135895584,0.57411729829937,0.00198389323584347,0.00115367795868945,-1.94415154979727,-0.0102842786092738,-0.00931280186560606,0.574121885153119,1.94420105525231 -0.166,0.612738595953108,-0.292770131609993,0.00438460006067513,0.570122227645769,0.00196256839014863,0.00113471403346763,-2.04538791484521,-0.0109987470138517,-0.00962381845395765,0.570126734776048,2.04544012684614 -0.168,0.613874744328722,-0.292766228510923,0.00438685021508971,0.565935746639989,0.00193989824778806,0.00111518268487362,-2.13600764745189,-0.0116327639396174,-0.00988275497635493,0.565940170126308,2.13606218542807 -0.17,0.615002338939668,-0.292762372017001,0.00438906079141463,0.561578197055961,0.00191603733439016,0.00109518301356221,-2.21688399747174,-0.012192654604698,-0.0100945658169232,0.561582533590143,2.21694050874886 -0.172,0.616121057116946,-0.292758564361585,0.00439123094714396,0.557068210650102,0.00189112762936927,0.00107480442160593,-2.28885318117461,-0.0126846143241876,-0.0102639837393226,0.557072457482114,2.28891134248924 -0.174,0.617230611782268,-0.292754807506484,0.00439336000910105,0.552422784331263,0.00186529887709341,0.00105412707860492,-2.35271361595512,-0.0131146631367207,-0.0103955012167867,0.552426939216494,2.35277313388592 -0.176,0.618330748254271,-0.292751103166077,0.00439544745545838,0.547657356186281,0.00183866897682239,0.00103322241673878,-2.40922577914026,-0.0134886117657273,-0.0104933592605036,0.547661417334758,2.40928638980715 -0.178,0.619421241207013,-0.292747452830577,0.00439749289876801,0.542785881214702,0.0018113444300305,0.0010121536415629,-2.45911259656728,-0.0138120372812633,-0.0105615424392247,0.542789847242613,2.45917406483324 -0.18,0.62050189177913,-0.292743857788357,0.00439949607002463,0.537820905800012,0.00178342082769733,0.000990976246981883,-2.50306028001801,-0.0140902669948373,-0.0106037790700841,0.537824775683788,2.50312239835738 -0.182,0.621572524830214,-0.292740319147266,0.00440145680375593,0.53277364009463,0.00175498336205115,0.000969738525282564,-2.54171954315596,-0.0143283695255847,-0.0106235454313749,0.532777413127744,2.54178213030774 -0.184,0.622632986339508,-0.292736837854908,0.00440337502412576,0.527654027627388,0.00172610734959499,0.000948482065256383,-2.57570713703414,-0.0145311520108326,-0.010624073308596,0.527657703379961,2.57577003652909 -0.186,0.623683140940723,-0.292733414717868,0.00440525073201696,0.522470811546493,0.00169685875400782,0.00092724223204818,-2.60560765735773,-0.0147031622328708,-0.0106083601469214,0.522474389827711,2.60567073598448 -0.188,0.624722869585694,-0.292730050419892,0.00440708399305395,0.517231596997958,0.00166729470066351,0.000906048624668698,-2.63197558438705,-0.0148486948813031,-0.010579181248041,0.517235077821281,2.63203873064685 -0.19,0.625752067328715,-0.292726745539065,0.00440887492651564,0.511942909208945,0.00163746397448261,0.000884925507056016,-2.65533752635133,-0.014971801420155,-0.0105391033773314,0.511946292760031,2.65540064893932 -0.192,0.62677064122253,-0.292723500563994,0.00441062369508217,0.506610246892552,0.00160740749498289,0.000863892211159372,-2.6761946458273,-0.0150763027374767,-0.0104904993069102,0.506613533499787,2.67625767216736 -0.194,0.627778508316285,-0.292720315909085,0.00441233049536027,0.501238130625636,0.0015771587635327,0.000842963509828375,-2.69502525702958,-0.0151658041576407,-0.0104355634064634,0.501241320733164,2.69508813188488 -0.196,0.628775593745033,-0.29271719192894,0.00441399554912149,0.495830145864434,0.00154674427835233,0.000822149957533518,-2.71228759101544,-0.0152437124693871,-0.0103763276148444,0.495833240007526,2.71235027518957 -0.198,0.629761828899743,-0.292714128931972,0.00441561909519041,0.490388980261574,0.00151618391365515,0.000801458199368998,-2.72842273402879,-0.015313254660837,-0.0103146776727486,0.490391979044205,2.7284852031684 -0.2,0.630737149666079,-0.292711127193286,0.00441720138191896,0.484916454928319,0.00148549125970898,0.000780891246842524,-2.74385775392988,-0.0153774979486099,-0.0102523696745779,0.484919359002783,2.74391999743582 -0.202,0.631701494719456,-0.292708186966933,0.00441874266017778,0.479413549245855,0.00145467392186072,0.000760448720670686,-2.75900903947551,-0.0154393712051282,-0.0101910467382657,0.479416359294281,2.7590710595279 -0.204,0.632654803863062,-0.292705308497598,0.00442024317680165,0.473880418770417,0.00142373377488847,0.000740127059889461,-2.77428588835864,-0.0155016878361502,-0.0101322558936773,0.473883135488015,2.77434769906029 -0.206,0.633597016394538,-0.292702492031833,0.00442170316841733,0.46831640569242,0.00139266717051611,0.000719919697095977,-2.79009439309306,-0.0155671697893433,-0.0100774650681548,0.468319029772318,2.79015601973201 -0.208,0.634528069485832,-0.292699737828916,0.00442312285559003,0.462720041198044,0.00136146509573109,0.000699817199616842,-2.80684168894179,-0.0156384730408409,-0.0100280804112007,0.462722573317576,2.80690316737457 -0.21,0.63544789655933,-0.29269704617145,0.0044245024372158,0.457089038936653,0.00133011327835275,0.000679807375451174,-2.82494064696159,-0.0157182148685652,-0.00998546400773899,0.457091479744957,2.8250020231189 -0.212,0.636356425641579,-0.292694417375803,0.00442584208509184,0.451420278610198,0.00129859223625683,0.000659875343585886,-2.84481511775986,-0.0158090031274205,-0.00995095225664318,0.451422628717008,2.844876447276 -0.214,0.637253577673771,-0.292691851802505,0.00442714193859015,0.445709778465613,0.00126687726584307,0.000640003566424601,-2.86690586023819,-0.0159134679600381,-0.00992587512703424,0.445712038431135,2.86696720820584 -0.216,0.638139264755441,-0.292689349866739,0.00442840209935753,0.439952655169245,0.00123493836441668,0.000620171843077749,-2.89167732679674,-0.0160342965363491,-0.00991157651959728,0.439954825495013,2.89173876764912 -0.218,0.639013388294448,-0.292686912049048,0.00442962262596246,0.434143069158427,0.00120274007969767,0.000600357260346212,-2.91962552304708,-0.0161742717032232,-0.00990943639991858,0.434145150279072,2.91968714057223 -0.22,0.639875837032075,-0.292684538906421,0.00443080352839892,0.428274153077057,0.00117024127760379,0.000580534097478074,-2.95128722165028,-0.0163363154739859,-0.00992089508721621,0.428276145352921,2.95134910914294 -0.222,0.640726484906756,-0.292682231083937,0.00443194476235237,0.422337920271825,0.00113739481780173,0.000560673679997347,-2.9872508911094,-0.0165235385304885,-0.00994748022235117,0.422339823982392,2.98731315166694 -0.224,0.641565188713162,-0.292679989327149,0.00443304622311891,0.416325149512619,0.00110414712348183,0.00054074417658867,-3.0281698084264,-0.0167392975314317,-0.00999083754442406,0.416326964850752,3.02823255539958 -0.226,0.642391785504806,-0.292677814495443,0.00443410773905872,0.41022524103812,0.001070437627676,0.000520710329819651,-3.07477797034659,-0.0169872622565736,-0.0100527665436792,0.410226968105153,3.07484132795871 -0.228,0.643206089677315,-0.292675707576639,0.00443512906443819,0.404026037631233,0.00103619807445554,0.000500533110413953,-3.12790961573549,-0.0172714952305364,-0.0101352621191542,0.404027676432987,3.1279737198858 -0.23,0.644007889655331,-0.292673669703145,0.00443610987150038,0.397713602575178,0.00100135164675386,0.000480169281343034,-3.24299114641546,-0.0178931514223379,-0.0103852196954926,0.397715153019074,3.24305713692883 -0.232,0.644796944087615,-0.292671702170052,0.00443704974156356,0.391054073045571,0.000964625468766188,0.000458992231631982,-3.48803197061653,-0.0192045270797081,-0.0109712057685257,0.391055532145621,3.48810209272312 -0.234,0.645572105947514,-0.29266981120127,0.00443794584042691,0.383761474692712,0.000924533538435023,0.000436284458268931,-3.81744986249071,-0.0209166987619191,-0.0117453952865748,0.38376283635172,3.81752523439308 -0.236,0.646331989986386,-0.292668004035898,0.00443879487939663,0.375784273595608,0.000880958673718512,0.000412010650485683,-4.15583939317176,-0.0225877199444557,-0.0124885191589083,0.375785532082782,4.1559195408527 -0.238,0.647075243041896,-0.292666287366575,0.00443959388302885,0.367138117120025,0.0008341826586572,0.000386330381633298,-4.48659888150487,-0.0241136120376905,-0.013150406701079,0.367139268063645,4.48668295325207 -0.24,0.647800542454866,-0.292664667305263,0.00444034020092317,0.357837878069589,0.00078450422556775,0.000359409023681367,-4.8101073447937,-0.0254859793130668,-0.0137282024480906,0.357838918513725,4.81019445211129 -0.242,0.648506594554174,-0.292663149349673,0.00444103151912358,0.34789768774085,0.000732238741404933,0.000331417571840936,-5.12672772421533,-0.0266965778372707,-0.0142191293791421,0.347898616189561,5.12681695100836 -0.244,0.64919213320583,-0.292661738350298,0.00444166587121053,0.337330967172727,0.000677717914218667,0.000302532506164798,-5.43680772863151,-0.0277373094041688,-0.0146204729130697,0.337331783621372,5.43689814091349 -0.246,0.649855918422865,-0.292660438478016,0.00444224164914823,0.326150456826324,0.000621289503788258,0.000272935680188657,-5.74068056843153,-0.0286002237413752,-0.0149295700793343,0.326151162779704,5.74077122463769 -0.248,0.650496735033135,-0.292659253192282,0.00444275761393129,0.314368244899001,0.000563317019253166,0.000242814225847461,-6.03838544029712,-0.0292761991003969,-0.0151431480219924,0.314368843376202,6.03847539834005 -0.25,0.651113391402461,-0.292658185209939,0.00444321290605162,0.301996915065135,0.000504184707386671,0.000212363088100688,-6.2815889930046,-0.0295358003749036,-0.0151497336680841,0.301997410600089,6.28167669933518 -0.252,0.651704722693396,-0.292657236453453,0.00444360706628369,0.289241888926983,0.000445173817753552,0.000182215291175125,-6.38575044342777,-0.0290196092260506,-0.0147757748718631,0.28924228890705,6.38583347629584 -0.254,0.652270358958169,-0.292656404514668,0.00444394176721633,0.276453913291424,0.000388106270482469,0.000153259988613236,-6.36131525394432,-0.0278534719178047,-0.0140882115565524,0.276454228199251,6.36139183305568 -0.256,0.652810538346561,-0.292655684028371,0.00444422010623814,0.263796627911206,0.000333759930082333,0.000125862444948915,-6.29038651493024,-0.0264768041588481,-0.0133063366714037,0.26379686907613,6.29045630991666 -0.258,0.653325545469814,-0.292655069474948,0.00444444521699612,0.251292367231703,0.000282199053847076,0.000100034641927621,-6.20872279795403,-0.0250742151867988,-0.012521394110801,0.251292545596062,6.20878605553548 -0.26,0.653815707815488,-0.292654555232156,0.00444462024480585,0.238961736719389,0.000233463069335138,7.57768685057113e-05,-6.11715776478726,-0.0236575990568421,-0.0117389371912316,0.238961862779577,6.11721477503746 -0.262,0.654281392416692,-0.292654135622671,0.00444474832447014,0.226823736172554,0.000187568657619708,5.30788931626946e-05,-6.01646532420729,-0.0222378222468344,-0.010963948533782,0.226823819936634,6.01651641120461 -0.264,0.654723002760178,-0.292653804957525,0.0044448325603785,0.21489587542256,0.0001445117803478,3.19210743705833e-05,-5.90736336019553,-0.0208247533904637,-0.0102008706273637,0.214895926383536,5.90740887339754 -0.266,0.655140975918382,-0.292653557575549,0.00444487600876763,0.203194282731772,0.000104269644057853,1.22754106532397e-05,-5.79051730298373,-0.0194272960739316,-0.00945363570151873,0.203194309855674,5.79055760935117 -0.268,0.655535779891105,-0.292653387878949,0.00444488166202112,0.191733806210625,6.68025960520734e-05,-5.89346843549165e-06,-5.66654353790357,-0.0180534238738983,-0.00872569482814055,0.191733817938655,5.66657901478665 -0.27,0.655907911143224,-0.292653290365165,0.00444485243489388,0.180528108580158,3.20559485622595e-05,-2.26273686593226e-05,-5.53601264977054,-0.0167102170399447,-0.00802004624170237,0.180528112844263,5.53604367855914 -0.272,0.656257892325426,-0.292653259655155,0.00444479115254648,0.169589755611543,-3.82721077052394e-08,-3.79736534023012e-05,-5.39945250146305,-0.0154039004676698,-0.00733926263686567,0.169589759862979,5.39947946199273 -0.274,0.656586270165671,-0.292653290518253,0.00444470054028027,0.158930298574306,-2.95596533084197e-05,-5.19844192067853e-05,-5.25735114796643,-0.0141398825773131,-0.0066855172856095,0.158930309825001,5.2573744136636 -0.276,0.656893613519723,-0.292653377893768,0.00444458321486965,0.148560351019677,-5.65978024169577e-05,-6.47157225447392e-05,-5.11015958893495,-0.0129227947336108,-0.00606060934077445,0.148560375896555,5.11017952267756 -0.278,0.657180511569749,-0.292653516909463,0.0044444416773901,0.138489660218566,-8.12508322428628e-05,-7.62268565698831e-05,-4.958294362839,-0.0117565308009604,-0.0054659880640781,0.138489705031404,4.95831131350211 -0.28,0.657447572160597,-0.292653702897097,0.00444427830744337,0.128727173568321,-0.000103623925620799,-8.65796748010516e-05,-4.80213998686751,-0.0106442868651191,-0.00490277600115329,0.128727244392346,4.80215428651842 -0.282,0.657695420264023,-0.292653931405166,0.00444409535869089,0.119281100271096,-0.000123827979703339,-9.58379605744963e-05,-4.64205124851152,-0.00958860089245171,-0.00437179127881631,0.119281203046274,4.64206321021519 -0.284,0.657924696561682,-0.292654198209016,0.00444389495560107,0.110158968574275,-0.000141978329190606,-0.000104066839916317,-4.47835535392903,-0.00859139197284529,-0.00387356898987056,0.110159109224346,4.47836527012007 -0.286,0.65813605613832,-0.292654499318482,0.00444367909133123,0.10136767885538,-0.00015819354759472,-0.000111332236533979,-4.31135515083225,-0.00747888871666101,-0.00329858683163069,0.101367863431133,4.31136289948541 -0.288,0.658330167277103,-0.292654830983206,0.00444344962665494,0.0929135479709463,-0.00017189388405725,-0.00011726118724284,-4.14133516891956,-0.00516546321341348,-0.0019710992612415,0.0929137809705469,4.14133885942367 -0.29,0.658507710330203,-0.292655186894019,0.00444321004658225,0.0848023381797013,-0.000178855400448374,-0.000119216633578945,-3.96855250228006,-0.00110280999957024,0.000437273408454563,0.08480261058838,3.96855267959885 -0.292,0.658669376629822,-0.292655546404808,0.00444297276012062,0.0770393379618261,-0.000176305124055531,-0.000115512093609021,-3.79323007748677,0.00311144602443968,0.00291497610424573,0.0770396262980098,3.79323247362093 -0.294,0.658815867682051,-0.292655892114515,0.00444274799820782,0.0696294178697542,-0.000166409616350616,-0.000107556729161962,-3.61557744982948,0.00616594225330557,0.00464983206018703,0.0696296997946369,3.61558569743514 -0.296,0.658947894301301,-0.292656212043273,0.00444254253320397,0.0625770281625082,-0.000151641355042309,-9.69127653682732e-05,-3.43579736439281,0.00809787469718824,0.00568232356220471,0.0625772869405185,3.43581160623574 -0.298,0.659066175794701,-0.292656498679935,0.00444236034714635,0.055886228412183,-0.000134018117561863,-8.48274349131427e-05,-3.25407695360435,0.00912359962926266,0.00616046968906352,0.0558864534810381,3.25409557503094 -0.3,0.65917143921495,-0.292656748115743,0.00444220322346432,0.0495607203480907,-0.000115146956525258,-7.22708866120191e-05,-3.07058759879685,0.00943726555582834,0.00621366078902562,0.0495609068049032,3.07060838816131 -0.302,0.659264418676093,-0.292656959267761,0.0044420712635999,0.0436038780169956,-9.62690553385492e-05,-5.99727917570402e-05,-2.88548622605355,0.00921074156529087,0.00595352606276577,0.0436040255319139,2.88550706860641 -0.304,0.659345854727018,-0.292657133191965,0.00444196333229729,0.0380187754438765,-7.83039902640947e-05,-4.8456782360956e-05,-2.69891650991893,0.0085941273056389,0.00547511430377261,0.0380188869619635,2.69893574644039 -0.306,0.659416493777869,-0.292657272483722,0.00444187743647045,0.0328082119773198,-6.18925461159935e-05,-3.80723345419498e-05,-2.51100998653608,0.00771658791379191,0.00485819388797853,0.0328082924477742,2.51102654312152 -0.308,0.659477087574927,-0.292657380762149,0.00444181104295913,0.0279747354977322,-4.7437638608927e-05,-2.90240068090419e-05,-2.3218870795344,0.00668735189446322,0.00416855671769161,0.0279747907747423,2.3219004517096 -0.31,0.65952839271986,-0.292657462234277,0.00444176134044322,0.0235206636591822,-3.51431385381406e-05,-2.13981076711833e-05,-2.13165804343468,0.00559678021289089,0.00345926595441553,0.0235206996470678,2.13166819758832 -0.312,0.659571170229564,-0.292657521334703,0.00444172545052844,0.0194481033239935,-2.50505177573634e-05,-1.51869429913798e-05,-1.94042382944959,0.00451746504440131,0.00277182454593016,0.019448125387101,1.94043106767479 -0.314,0.659606185133156,-0.292657562436348,0.00444170059267125,0.0157589683413839,-1.70732783605354e-05,-1.03108094874626e-05,-1.74827687830781,0.00350534936494062,0.00213726428915928,0.0157589809630688,1.74828169886849 -0.316,0.659634206102929,-0.292657589627817,0.00444168420729049,0.0124549958107622,-1.10291202976009e-05,-6.63788583474267e-06,-1.55530184532681,0.00260087700681976,0.0015771675406645,0.0124550024628311,1.55530481967222 -0.318,0.659656005116399,-0.292657606552829,0.00444167404112791,0.00953776096007663,-6.66977033325632e-06,-4.00213932480464e-06,-1.36157626250133,0.0018301916336616,0.00110463931231319,0.00953776413183495,1.36157794063965 -0.32,0.65967235714677,-0.292657616306898,0.00444166819873319,0.00700869076075694,-3.70835376295453e-06,-2.2193285854899e-06,-1.16717114195114,0.00120640369222213,0.000725247538239936,0.00700869209319589,1.1671719907526 -0.322,0.659684039879442,-0.292657621386244,0.00444166516381357,0.00486907639227207,-1.84415556436779e-06,-1.10114917184489e-06,-0.972151525127638,0.000730939860721368,0.000437947266125615,0.00486907686602096,0.972151898562607 -0.324,0.659691833452339,-0.29265762368352,0.00444166379413651,0.00312008466024638,-7.84594320069053e-07,-4.67539520987436e-07,-0.776576982282339,0.000394983445256569,0.00023600066258872,0.00312008479392567,0.776577118590922 -0.326,0.659696520218083,-0.292657624524621,0.00444166329365549,0.00176276846314271,-2.64221783341511e-07,-1.57146521490015e-07,-0.580502066020726,0.000181006279409423,0.00010790048542153,0.00176276848994946,0.580502104268468 -0.328,0.659698884526191,-0.292657624740408,0.00444166316555042,0.000798076396163471,-6.05692024313597e-08,-3.5937579301315e-08,-0.38397672320195,6.43856704063416e-05,3.83010342192013e-05,0.000798076399271029,0.383976730510315 -0.33,0.659699712523667,-0.292657624766898,0.00444166314990517,0.000226861570334913,-6.67910171614494e-09,-3.94238461320917e-09,-0.194553548701903,1.51281660809577e-05,8.97662673360332e-06,0.000226861570467489,0.194553549497163 -0.332,0.659699791972473,-0.292657624767124,0.00444166314978088,1.9862201355858e-05,-5.6538107529036e-11,-3.10723669016965e-11,-0.0567153925837282,1.66977542903623e-06,9.85596153302291e-07,1.98622013559628e-05,0.0567153926168722 -0.334,0.659699791972473,-0.292657624767124,0.00444166314978088,0,0,0,-0.009931100677929,2.8269053764518e-08,1.55361834508483e-08,0,0.00993110067798139 +0,0.559809314390095,-0.292914056655931,0.00429163619695835,0,0,0,-2.63539190470397e-08,1.86795023893183e-08,0.0499999791552658,0,0.0499999791552762 +0.002,0.559809314390095,-0.292914056655931,0.00429163619695835,-5.27078380940793e-11,3.73590047786365e-11,9.99999583105315e-05,-2.55427623496729e-07,1.76723219391661e-07,0.124999884896886,9.99999583105524e-05,0.124999884897271 +0.004,0.559809314389884,-0.292914056655782,0.0042920361967916,-1.02171049398692e-09,7.06892877566645e-10,0.000499999539587542,-1.48488860096663e-06,1.02245295563463e-06,0.299999433996979,0.000499999539589086,0.299999434002397 +0.006,0.559809314386008,-0.292914056653104,0.0042936361951167,-5.99226224196059e-09,4.12717082731717e-09,0.00129999769429845,-5.00186697616201e-06,3.43832948224154e-06,0.499998216783697,0.00129999769431881,0.499998216820538 +0.008,0.559809314365915,-0.292914056639273,0.00429723618756879,-2.10291783986349e-08,1.44602108065328e-08,0.00249999240672233,-1.23088275683081e-05,8.45479589117737e-06,0.699995739690193,0.00249999240685259,0.699995739849473 +0.01,0.559809314301891,-0.292914056595263,0.00430363616474359,-5.52275725151929e-08,3.79463543920266e-08,0.00409998065305922,-2.49193027324068e-05,1.71093902934238e-05,0.899991498596285,0.00409998065360679,0.899991499103903 +0.012,0.559809314145005,-0.292914056487488,0.00431363611018103,-1.20706389328262e-07,8.28977719802282e-08,0.00609995840110747,-4.4341134930459e-05,3.04341309098621e-05,1.0999849891823,0.00609995840286503,1.09998499049703 +0.014,0.559809313819066,-0.292914056263672,0.00432803599834802,-2.32592112237029e-07,1.59682878031475e-07,0.00849992060978841,-7.20702525436323e-05,4.94503847592309e-05,1.29997570688222,0.00849992061447067,1.29997570982053 +0.016,0.559809313214636,-0.292914055848756,0.00434763579262018,-4.08987399502791e-07,2.80699311017152e-07,0.0112998612286363,-0.00010958457058452,7.51633512374726e-05,1.49996314679785,0.0112998612395242,1.4999631526841 +0.018,0.559809312183116,-0.292914055140874,0.00437323544326257,-6.70930394575108e-07,4.60336282981366e-07,0.0144997731969798,-0.000158344372336305,0.000108560615358355,1.69994680364674,0.0144997732198097,1.69994681448777 +0.02,0.559809310530915,-0.292914054007411,0.0044056348854081,-1.04236488884801e-06,7.14941772450572e-07,0.0180996484432233,-0.000219812813784248,0.000150624648170838,1.89992617181771,0.0180996484873586,1.89992619050408 +0.022,0.559809308013656,-0.292914052281107,0.00444563403703546,-1.5501816497121e-06,1.06283487566472e-06,0.0220994778842506,-0.000295522363524813,0.000202376244234914,2.09990074540641,0.0220994779641774,2.099900775953 +0.024,0.559809304330188,-0.292914049756072,0.0044940327969451,-2.22445434294727e-06,1.52444674939023e-06,0.0264992514248489,-0.000387126351808486,0.000264907408509262,2.29987001800109,0.0264992515620629,2.29987006583918 +0.026,0.559809299115839,-0.29291404618332,0.00455163104273486,-3.09868705694605e-06,2.12246450970177e-06,0.031298957956255,-0.000496138317929162,0.000339199945909029,2.49983348153334,0.0312989581816094,2.49983355378012 +0.028,0.55980929193544,-0.292914041266214,0.00461922862877012,-4.20900761466391e-06,2.88124653302635e-06,0.0364985853509823,-0.000623858811832355,0.000426072475911975,2.69979062634834,0.0364985857073979,2.69979073204868 +0.03,0.559809282279809,-0.292914034658334,0.00469762538413879,-5.59412230427547e-06,3.82675441334967e-06,0.0420981204616484,-0.000771733545124052,0.000526422933022629,2.89974094256316,0.0420981210072577,2.89974109304104 +0.032,0.55980926955895,-0.292914025959196,0.00478762111061672,-7.29594179516013e-06,4.98693826511686e-06,0.048097549121235,-0.00094130906541645,0.000641194729256166,3.09968391953071,0.04809754993313,3.09968412877678 +0.034,0.559809253096041,-0.292914014710581,0.00489001558062373,-9.35935856594127e-06,6.39153333037434e-06,0.0544968561397712,-0.00113406957436002,0.000771261061960348,3.2996190451268,0.0544968573182731,3.29961933015324 +0.036,0.559809232121516,-0.292914000393063,0.0050056085351758,-1.18322200926002e-05,8.07198251295826e-06,0.0612960253017422,-0.00135149165469972,0.000917458508470358,3.4995458059097,0.0612960269752465,3.49954618713913 +0.038,0.559809205767161,-0.292913982422651,0.0051351996818307,-1.47653251847401e-05,1.00613673642558e-05,0.0684950393634101,-0.00159505035568497,0.00108058697059765,3.69946368715748,0.0684950416938411,3.69946418883203 +0.04,0.559809173060215,-0.292913960147593,0.00527958869262944,-1.82124215153401e-05,1.23943303953489e-05,0.0760938800503721,-0.00186621951225873,0.00126140530312679,3.89937217291219,0.0760938832392732,3.89937282351926 +0.042,0.559809132917475,-0.29291393284533,0.00543957520203218,-2.22302032337751e-05,1.51069885767629e-05,0.0840925280550588,-0.00216647180056872,0.00146062667516489,4.09927074607359,0.0840925323503454,4.09927157878629 +0.044,0.559809084139403,-0.292913899719639,0.00561595880484968,-2.6878308717615e-05,1.82368370960084e-05,0.0924909630346664,-0.00248362769933452,0.00166967401363238,4.27872692292541,0.0924909687380651,4.27872796952373 +0.046,0.55980902540424,-0.292913859897981,0.00580953905417085,-3.21647140311132e-05,2.17856846312925e-05,0.10120743574676,-0.00274913172781943,0.00184189907423415,4.34426804258366,0.101207443202659,4.34426930290136 +0.048,0.559808955480546,-0.2929138125769,0.00602078854783672,-3.78748356288927e-05,2.5604433392945e-05,0.109868035205001,-0.00290092068422342,0.00193541701762334,4.23678787821439,0.109868044716822,4.23678931340281 +0.05,0.559808873904898,-0.292913757480248,0.00624901119499086,-4.37683967680069e-05,2.95273527017858e-05,0.118154587259618,-0.0029728832104392,0.00197356798958825,4.04326623543778,0.118154599055762,4.04326781003144 +0.052,0.559808780406959,-0.292913694467489,0.00649340689687519,-4.97663684706495e-05,3.3498705351298e-05,0.126041100146752,-0.00301010266018364,0.00198718631133632,3.84325163507032,0.126041114423264,3.84325332759865 +0.054,0.559808674839424,-0.292913623485426,0.00675317559557786,-5.58088074087415e-05,3.74760979471311e-05,0.133527593799899,-0.00301813474212764,0.00198024868724999,3.64324675648873,0.133527610721797,3.64324854480007 +0.056,0.55980855717173,-0.292913544563098,0.00702751727207479,-6.183890743916e-05,4.1419700100298e-05,0.140614087172707,-0.00299854609198124,0.00195404343747429,3.44325110939336,0.140614106870739,3.44325296949019 +0.058,0.559808427483794,-0.292913457806626,0.00731563194426869,-6.78029917766664e-05,4.52922716970283e-05,0.147300598237473,-0.00295289934171272,0.00190987015785682,3.2432642025357,0.147300620805728,3.24326610913568 +0.06,0.559808285959763,-0.292913363394011,0.00761671966502468,-7.36505048060109e-05,4.90591807317253e-05,0.15358714398285,-0.00288275330689868,0.00184903496680544,3.04328554332714,0.153587169477169,3.04328747038806 +0.062,0.559808132881775,-0.292913261569903,0.00792998052020009,-7.93340050042612e-05,5.268841156425e-05,0.159473740410781,-0.00278966325734097,0.0017728460054156,2.84331463755536,0.159473768847915,2.84331655876383 +0.064,0.559807968623743,-0.292913152640365,0.00825461462666781,-8.48091578353748e-05,5.61505647533877e-05,0.164960402533071,-0.00267518104890562,0.00168260933658404,2.64335098915363,0.164960433890531,2.64335287837763 +0.066,0.559807793645143,-0.292913036967644,0.00858982213033238,-9.00347291998837e-05,5.94188489105862e-05,0.170047144367396,-0.00254085526230074,0.00157962513208653,2.44339409995359,0.170047178583939,2.44339593165927 +0.068,0.559807608484826,-0.292912914964969,0.00893480320413739,-9.49725788845778e-05,6.24690652817339e-05,0.174733978932886,-0.00238823143206001,0.00146518393945305,2.24344346956561,0.174734015909591,2.24344521919969 +0.07,0.559807413754828,-0.292912787091383,0.00928875804606392,-9.95876549281237e-05,6.52795846683984e-05,0.179020918245658,-0.0022188522755262,0.00134056322639853,2.04349859530758,0.179020957847521,2.04350023964747 +0.0720000000000001,0.559807210134206,-0.29291265384663,0.00965088687712003,-0.000103847987986683,6.7831318187328e-05,0.182907973314116,-0.00203425765121778,0.00120702442832354,1.84355897213297,0.182908015372126,1.84356048960812 +0.0740000000000001,0.559806998362876,-0.29291251576611,0.0100203899393204,-0.000107724685532995,7.01076823816926e-05,0.18639515413419,-0.00183598489189585,0.00106581003744832,1.64362409268547,0.186395198447824,1.64362546367708 +0.0760000000000001,0.559806779235464,-0.292912373415901,0.0103964674936568,-0.000111191927554266,7.20945583371212e-05,0.189482469684858,-0.0016255689225253,0.000918140882766315,1.44369344735103,0.189482516024944,1.44369465448249 +0.0780000000000001,0.559806553595166,-0.292912227387877,0.0107783198180598,-0.000114226961223096,7.37802459127578e-05,0.192169927923594,-0.00140454227415265,0.000765213854087009,1.24376652437842,0.192169976035495,1.24376755282312 +0.0800000000000001,0.559806322327619,-0.292912078294917,0.0111651472053512,-0.000116810096650877,7.51554137534693e-05,0.194457535782372,-0.00117443541003403,0.000608199858531666,1.04384281008479,0.19445758538943,1.04384364795276 +0.0820000000000001,0.559806086354779,-0.292911926766222,0.0115561499611893,-0.000118924702863232,7.62130453468845e-05,0.196345299163934,-0.000936776670124039,0.000448241926215287,0.843921789023954,0.196345349971136,0.843922427987754 +0.0840000000000001,0.559805846628808,-0.292911773442736,0.0119505284020069,-0.000120557203331373,7.69483814583304e-05,0.197833222938468,-0.000693092486181434,0.000286453628178806,0.644002944286473,0.197833274636281,0.644003380955815 +0.0860000000000001,0.559805604125966,-0.292911618972696,0.0123474828529432,-0.000121697072807958,7.73588598595997e-05,0.198921310941079,-0.000444907499730362,0.000123917771877036,0.444085757754682,0.198921363209406,0.444085997909017 +0.0880000000000001,0.559805359840516,-0.292911464007296,0.0127462136457712,-0.000122336833330294,7.74440525458386e-05,0.199609565969486,-0.000196202408486723,-3.67662289502135e-05,0.2461099028149,0.199609618481697,0.246109983768843 +0.0900000000000001,0.559805114778632,-0.292911309196486,0.0131459211168211,-0.000122481882441905,7.72117949437989e-05,0.199905750552339,4.69950467429924e-06,-0.00016523175189187,0.0870502566792038,0.199905802985723,0.0870504136206856 +0.0920000000000001,0.559804869912987,-0.292911155160117,0.0135458366479806,-0.000122318035311597,7.67831255382711e-05,0.199957766996203,9.82884745814871e-05,-0.000224601264670054,0.0130049113153743,0.199957819150585,0.0130072220198272 +0.0940000000000001,0.559804625506491,-0.292911002063983,0.0139457521848059,-0.000122088728543579,7.63133898851186e-05,0.199957770197601,0.000114519255189904,-0.000234676850868753,1.78492637337157e-06,0.199957822032016,0.000261134199416859 +0.0960000000000001,0.559804381558072,-0.292910849906557,0.014345667728771,-0.000121859958290837,7.58444181347961e-05,0.199957774135909,0.000114251323679593,-0.000234295319256894,2.15339465009512e-06,0.199957825652342,0.000260676617088583 +0.0980000000000001,0.559804138066658,-0.292910698686311,0.0147455832813496,-0.000121631723248861,7.53762086080911e-05,0.199957778811179,0.000113984127692035,-0.000233914620312303,2.52190282545861e-06,0.199957830011604,0.000260220658202657 +0.1,0.559803895031179,-0.292910548401723,0.0151454988440157,-0.000121404021780069,7.49087596535469e-05,0.19995778422352,0.000113717694982807,-0.000233534701993276,2.89047431822897e-06,0.199957835109901,0.000259766291171652 +0.102,0.559803652450571,-0.292910399051272,0.0155454144182437,-0.000121176852468929,7.4442069800118e-05,0.199957790373076,0.000113451942285181,-0.000233155553891473,3.25909698534188e-06,0.199957840947372,0.000259313472908523 +0.104,0.55980341032377,-0.292910250633443,0.015945330005508,-0.000120950214010929,7.3976137437981e-05,0.199957797259908,0.000113186841843582,-0.000232777203762468,3.62776302054168e-06,0.199957847524066,0.000258862218994065 +0.106,0.559803168649715,-0.292910103146723,0.0163452456072833,-0.000120724105101555,7.35109609850681e-05,0.199957804884129,0.000112922435291374,-0.0002323996099729,3.99648543425446e-06,0.199957854840089,0.000258412513248713 +0.108,0.559802927427349,-0.292909956589599,0.0167451612250445,-0.000120498524269763,7.30465389980894e-05,0.19995781324585,0.000112658736506344,-0.000232022758644978,4.36525815494803e-06,0.199957862895544,0.000257964352031809 +0.11,0.559802686655618,-0.292909810960567,0.0171450768602667,-0.00012027347015553,7.25828699504882e-05,0.199957822345161,0.000112395703855128,-0.000231646635900917,4.73407077428156e-06,0.199957871690513,0.000257517707343393 +0.112,0.559802446333469,-0.29290966625812,0.0175449925144252,-0.000120048941454343,7.21199524544857e-05,0.199957832182133,0.000112133330398834,-0.00023127124867961,5.1029180880846e-06,0.199957881225057,0.000257072585129518 +0.114,0.559802206459852,-0.292909522480757,0.0179449081889952,-0.000119824936833934,7.16577849557697e-05,0.199957842756834,0.000111871609198566,-0.000230896607389397,5.47182351512409e-06,0.199957891499236,0.000256628995051593 +0.116,0.559801967033721,-0.29290937962698,0.0183448238854525,-0.000119601455017548,7.11963660249281e-05,0.199957854069427,0.000111610554132113,-0.000230522646110787,5.840770575527e-06,0.199957902513206,0.000256186886402314 +0.118,0.559801728054032,-0.292909237695293,0.0187447396052729,-0.000119378494617406,7.07356943713266e-05,0.199957866119916,0.000111350151321687,-0.000230149364843779,6.20973367865262e-06,0.199957914266962,0.000255746255358152 +0.12,0.559801489519743,-0.292909096684202,0.0191446553499322,-0.000119156054412262,7.0275768565553e-05,0.199957878908361,0.000111090400767289,-0.00022977680175229,6.57873061582492e-06,0.199957926760556,0.00025530713946669 +0.122,0.559801251429814,-0.292908956592218,0.0195445711209064,-0.000118934133014337,6.98165871643174e-05,0.199957892434838,0.000110831288591024,-0.000229404925611237,6.94777022719472e-06,0.199957939994055,0.000254869507663381 +0.124,0.559801013783211,-0.292908817417854,0.0199444869196715,-0.000118712729257897,6.9358148863108e-05,0.199957906699442,0.000110572759281952,-0.000229033698256826,7.31685996513411e-06,0.199957953967547,0.000254433304565603 +0.126,0.559800776578897,-0.292908679159623,0.0203444027477041,-0.000118491841977209,6.89004523712901e-05,0.199957921702278,0.000110314882229118,-0.000228663116219666,7.68595716238443e-06,0.199957968681129,0.000253998558850271 +0.128,0.559800539815843,-0.292908541816044,0.0207443186064806,-0.000118271469728981,6.84434963982294e-05,0.199957937443271,0.000110057664370993,-0.000228293169091178,8.05507032602958e-06,0.199957984134717,0.000253565267137376 +0.13,0.559800303493018,-0.292908405385637,0.0211442344974772,-0.000118051611319725,6.79872796949254e-05,0.199957953922559,0.00010980104325764,-0.00022792387421866,8.42422789859575e-06,0.199958000328443,0.000253133421647552 +0.132,0.559800067609397,-0.292908269866925,0.0215441504221709,-0.00011783226555595,6.75318009013547e-05,0.199957971140183,0.000109544998072586,-0.000227555214254993,8.79339396436806e-06,0.199958017262337,0.000252702999417837 +0.134,0.559799832163956,-0.292908135258434,0.021944066382038,-0.000117613431327435,6.70770588379054e-05,0.199957989096135,0.000109289549632407,-0.00022718714062786,9.1625812839724e-06,0.199958034936387,0.000252273968972827 +0.136,0.559799597155672,-0.29290800155869,0.0223439823785554,-0.000117395107357421,6.66230523388433e-05,0.199958007790508,0.000109034739570468,-0.00022681966721505,9.53179722651409e-06,0.199958053350674,0.000251846363934668 +0.138,0.559799362583527,-0.292907868766224,0.0227438984132,-0.000117177292369153,6.61697801690452e-05,0.199958027223324,0.000108780512375617,-0.00022645279748601,9.90101403641751e-06,0.199958072505216,0.000251420165143711 +0.14,0.559799128446503,-0.292907736879569,0.0231438144874487,-0.000116959985307918,6.57172411488993e-05,0.199958047394564,0.000108526833353384,-0.000226086517562951,1.02702395199383e-05,0.199958092399984,0.00025099534816656 +0.142,0.559798894743585,-0.29290760589726,0.0235437306027782,-0.000116743185035739,6.52654340987934e-05,0.199958068304282,0.000108273751076027,-0.000225720803159746,1.06394866875026e-05,0.199958113035026,0.000250571915481619 +0.144,0.559798661473763,-0.292907475817833,0.0239436467606658,-0.000116526890303614,6.48143579362603e-05,0.199958089952511,0.000108021272482439,-0.000225355636929159,1.10087173751938e-05,0.199958134410365,0.000250149855612029 +0.146,0.559798428636024,-0.292907346639828,0.0243435629625883,-0.000116311099945809,6.43640115510768e-05,0.199958112339152,0.000107769335122576,-0.000224991025810084,1.13779502278199e-05,0.199958156525896,0.000249729151360474 +0.148,0.559798196229363,-0.292907218361787,0.0247434792100224,-0.000116095812963124,6.39143938330199e-05,0.199958135464312,0.000107517952874225,-0.000224626952455287,1.17472082408754e-05,0.199958179381718,0.000249309796961668 +0.15,0.559797964252772,-0.292907090982253,0.0251433955044455,-0.000115881028134312,6.34655037412556e-05,0.199958159327985,0.000107267139615175,-0.000224263389109191,1.21164614799718e-05,0.199958202977819,0.000248891774823431 +0.152,0.55979773270525,-0.292906964499772,0.0255433118473344,-0.000115666744404663,6.30173402765832e-05,0.199958183930157,0.000107016881467636,-0.00022390035658848,1.24857069128126e-05,0.199958227314176,0.000248475100315141 +0.154,0.559797501585795,-0.292906838912892,0.0259432282401662,-0.000115452960608442,6.25699023149017e-05,0.199958209270812,0.000106767171492716,-0.000223537854893152,1.28549289268864e-05,0.199958252390765,0.000248059772386621 +0.156,0.559797270893408,-0.292906714220163,0.0263431446844176,-0.000115239675718692,6.21231888570106e-05,0.199958235349873,0.000106517974995945,-0.000223175828512056,1.3224138797896e-05,0.199958278207502,0.000247645729372072 +0.158,0.559797040627092,-0.292906590420136,0.0267430611815657,-0.000115026888708458,6.16771990008535e-05,0.199958262167368,0.000106269340549581,-0.000222814287853534,1.35933391279264e-05,0.199958304764408,0.000247233004433403 +0.16,0.559796810785853,-0.292906467511367,0.0271429777330871,-0.000114814598356494,6.12319317055964e-05,0.19995828972323,0.000106021233459153,-0.000222453222509244,1.39625143044664e-05,0.199958332061409,0.00024682157514012 +0.162,0.559796581368698,-0.292906345492409,0.0275428943404586,-0.000114602803774622,6.07873861108165e-05,0.199958318017425,0.00010577363984687,-0.000222092608193058,1.4331685581348e-05,0.199958360098463,0.000246411417576486 +0.164,0.559796352374638,-0.292906224361822,0.0279428110051568,-0.000114391503797107,6.03435612728242e-05,0.199958347049972,0.000105526594407209,-0.000221732483068893,1.47008277912031e-05,0.199958388875582,0.00024600258232959 +0.166,0.559796123802683,-0.292906104118164,0.0283427277286585,-0.000114180697396993,5.9900456178541e-05,0.199958376820736,0.000105280027751231,-0.000221372788156149,1.50699175360813e-05,0.199958418392624,0.000245594987721393 +0.168,0.559795895651848,-0.292905984759997,0.0287426445124397,-0.000113970383686102,5.94580701201996e-05,0.199958407329642,0.000105033967634505,-0.000221013485290911,1.54390025070006e-05,0.199958448649507,0.000245188616856274 +0.17,0.559795667921149,-0.292905866285884,0.029142561357977,-0.000113760561526455,5.90164022373773e-05,0.199958438576746,0.000104788455690397,-0.00022065464039267,1.58080597223442e-05,0.199958479646279,0.00024478354831357 +0.172,0.559795440609602,-0.292905748694388,0.0295424782667467,-0.00011355122986334,5.85754515586289e-05,0.199958470561881,0.000104543429468862,-0.000220296236114192,1.61770449466636e-05,0.199958511382767,0.000244379739492449 +0.174,0.559795213716229,-0.292905631984078,0.0299423952402246,-0.000113342387808579,5.81352172929205e-05,0.199958503284926,0.000104298861214325,-0.000219938199597092,1.65459972112369e-05,0.199958543858841,0.000243977118017918 +0.176,0.559794987240051,-0.292905516153519,0.0303423122798864,-0.000113134034418483,5.76956987602406e-05,0.19995853674587,0.000104054806437936,-0.000219580544719155,1.69149208528729e-05,0.199958577074485,0.000243575723152896 +0.178,0.559794761180091,-0.292905401201283,0.030742229387208,-0.000112926168582827,5.72568951140439e-05,0.199958570944609,0.000103811258200803,-0.000219223306174852,1.72837889833577e-05,0.199958611029588,0.000243175584015106 +0.18,0.559794535535377,-0.292905287125939,0.0311421465636649,-0.000112718789385679,5.68188055355411e-05,0.199958605881026,0.000103568140175092,-0.000218866418044692,1.76526024700529e-05,0.199958645724024,0.0002427766112726 +0.182,0.559794310304934,-0.29290517392606,0.0315420638107321,-0.000112511896022127,5.63814294418651e-05,0.199958641555019,0.000103325507871954,-0.000218509880328676,1.80213673844909e-05,0.199958681157686,0.000242378831709076 +0.184,0.559794085487793,-0.292905061600221,0.031941981129885,-0.000112305487354192,5.59447660142264e-05,0.199958677966495,0.000103083389046965,-0.000218153703435142,1.83900715836072e-05,0.199958717330473,0.000241982268260974 +0.186,0.559793861082984,-0.292904950146996,0.0323418985225981,-0.000112099562465939,5.55088146281246e-05,0.199958715115305,0.000102841707372292,-0.000217797859608515,1.8758701189614e-05,0.199958754242229,0.000241586864907055 +0.188,0.559793637089543,-0.292904839564962,0.0327418159903462,-0.000111894120524703,5.50735745757924e-05,0.1999587530013,0.000102600476725723,-0.00021744236619603,1.91272601091086e-05,0.199958791892799,0.000241192646074783 +0.19,0.559793413506502,-0.292904729852698,0.0331417335346033,-0.000111689160559036,5.46390451633405e-05,0.199958791624346,0.000102359704046151,-0.000217087178094877,1.94957583063426e-05,0.199958830282042,0.000240799577444712 +0.192,0.5597931903329,-0.292904621008782,0.0335416511568436,-0.000111484681708518,5.42052258634129e-05,0.199958830984333,0.000102119396272471,-0.000216732288366161,1.98641892865114e-05,0.199958869409841,0.000240407657805439 +0.194,0.559792967567776,-0.292904513031795,0.0339415688585407,-0.000111280682973946,5.37721160098758e-05,0.199958871081103,0.000101879546465788,-0.000216377707418225,2.02325326631447e-05,0.199958909276031,0.000240016894475382 +0.196,0.559792745210169,-0.292904405920318,0.034341486641168,-0.000111077163522655,5.333971503374e-05,0.199958911914464,0.000101640106053846,-0.000216023407495491,2.06007893036042e-05,0.199958949880414,0.00023962724441209 +0.198,0.559792523259121,-0.292904299672934,0.0347414045061985,-0.000110874122549731,5.29080223798938e-05,0.19995895348426,0.000101401095853326,-0.000215669385128514,2.09689583405281e-05,0.199958991222827,0.000239238715796281 +0.2,0.559792301713678,-0.292904194288228,0.035141322455105,-0.000110671559139241,5.24770374932259e-05,0.199958995790297,0.000101162543619804,-0.000215315633378399,2.13370284982139e-05,0.199959033303068,0.000238851315662911 +0.202,0.559792080572885,-0.292904089764784,0.0355412404893597,-0.000110469472375252,5.20467598463802e-05,0.199959038832374,0.000100924421597703,-0.000214962141836805,2.1705008450279e-05,0.199959076120932,0.000238465026135332 +0.204,0.559791859835789,-0.292903986101189,0.0359411586104345,-0.000110267861452851,5.16171889258787e-05,0.199959082610331,0.000100686715909237,-0.000214608896625945,2.20729077377024e-05,0.19995911967625,0.000238079832257145 +0.206,0.559791639501439,-0.292903883296029,0.036341076819801,-0.000110066725511615,5.11883242598765e-05,0.199959127124005,0.000100449440432193,-0.000214255869990243,2.24406942680999e-05,0.199959163968853,0.000237695714449485 +0.208,0.559791419568887,-0.292903781347892,0.0367409951189305,-0.000109866063691122,5.07601654459177e-05,0.199959172373108,0.000100212567410995,-0.000213903075807486,2.28083602352158e-05,0.199959208998447,0.000237312675185347 +0.21,0.559791200037184,-0.292903680255367,0.0371409135092935,-0.000109665875241971,5.03327119566465e-05,0.199959218357446,9.99760829678563e-05,-0.000213550524486017,2.31759281904553e-05,0.199959254764832,0.000236930722620216 +0.212,0.559790980905386,-0.292903580017044,0.0375408319923603,-0.00010946615935925,4.99059633479737e-05,0.199959265076821,9.97400287361393e-05,-0.000213198143167446,2.35433773171367e-05,0.199959301267802,0.000236549809126598 +0.214,0.559790762172547,-0.292903480631514,0.0379407505696008,-0.000109266915127026,4.94799193839767e-05,0.199959312530955,9.95043908380565e-05,-0.000212845935321225,2.39107006763661e-05,0.199959348507074,0.000236169933703794 +0.216,0.559790543837725,-0.292903382097366,0.0383406692424841,-0.000109068141795898,4.90545796066888e-05,0.199959360719624,9.92691345791385e-05,-0.000212493946050163,2.42779017375905e-05,0.199959396482416,0.000235791125152837 +0.218,0.55979032589998,-0.292903284413195,0.0387405880124792,-0.00010886983858871,4.86299435997761e-05,0.199959409642562,9.90342807760668e-05,-0.000212142137190341,2.46449726945541e-05,0.199959445193557,0.000235413359475696 +0.22,0.559790108358371,-0.292903187577592,0.0391405068810544,-0.000108672004672794,4.82060110579274e-05,0.199959459299514,9.8799801673266e-05,-0.000211790484455632,2.50119161493423e-05,0.199959494640235,0.000235036605800223 +0.222,0.559789891211961,-0.292903091589151,0.0395404258496773,-0.000108474639382017,4.77827816619536e-05,0.199959509690227,9.85657042096299e-05,-0.000211438980907141,2.53787225609758e-05,0.19995954482219,0.000234660862208034 +0.224,0.559789674459813,-0.292902996446465,0.0399403449198153,-0.000108277741855955,4.73602551342988e-05,0.199959560814405,9.83320092018402e-05,-0.000211087605728188,2.57453806537522e-05,0.199959595739121,0.000234286119842249 +0.226,0.559789458100994,-0.29290290214813,0.0403402640929349,-0.000108081311345209,4.69384312390408e-05,0.19995961267175,9.80986888943213e-05,-0.000210736358918773,2.61118834887774e-05,0.199959647390723,0.000233912368617946 +0.228,0.559789242134568,-0.29290280869274,0.0407401833705023,-0.000107885347100378,4.65173096986237e-05,0.199959665261939,9.78657363481793e-05,-0.000210385240478894,2.6478239739669e-05,0.199959699776667,0.000233539608936139 +0.23,0.559789026559605,-0.292902716078892,0.0411401027539827,-0.000107689848399817,4.60968902771252e-05,0.199959718584708,9.76331446245204e-05,-0.000210034236530765,2.6844455477959e-05,0.199959752896683,0.000233167828471772 +0.232,0.559788811375174,-0.292902624305179,0.0415400222448411,-0.00010749481452188,4.56771727525007e-05,0.199959772639761,9.74009206622383e-05,-0.000209683340135491,2.7210500776198e-05,0.199959806750467,0.000232797022808968 +0.234,0.559788596580347,-0.292902533370201,0.0419399418445417,-0.000107300244717168,4.52581569165833e-05,0.199959827426712,9.71690852780149e-05,-0.000209332530476391,2.75763734763901e-05,0.199959861337628,0.000232427183916866 +0.236,0.559788382174196,-0.292902443272552,0.042339861554548,-0.000107106138180768,4.48398426305951e-05,0.199959882945254,9.69375898995927e-05,-0.000208981790206231,2.79420818080633e-05,0.199959916657855,0.000232058279122101 +0.238,0.559788168155794,-0.29290235401083,0.0427397813763227,-0.000106912494357569,4.44222297557583e-05,0.199959939195039,9.6706420649184e-05,-0.000208631115855562,2.83076175347507e-05,0.199959972710789,0.000231690300850958 +0.24,0.559787954524218,-0.292902265583633,0.0431397013113281,-0.000106719312498171,4.40053181671729e-05,0.199959996175725,9.64756538546218e-05,-0.000208280500485491,2.86729706852617e-05,0.199960029496086,0.000231323275778901 +0.242,0.559787741278544,-0.292902177989557,0.0435396213610256,-0.000106526591742151,4.35891077538164e-05,0.199960053886922,9.62452201269669e-05,-0.000207929937157125,2.90381369089099e-05,0.199960087013348,0.000230957170398745 +0.244,0.559787528417851,-0.292902091227202,0.0439395415268758,-0.000106334331617663,4.31735984185444e-05,0.199960112328272,9.60150986495378e-05,-0.000207579415462122,2.9403130534511e-05,0.199960145262212,0.000230591970756803 +0.246,0.559787315941218,-0.292902005295164,0.0443394618103387,-0.000106142531347553,4.27587900919679e-05,0.199960171499444,9.57853379944086e-05,-0.000207228900705939,2.97679254510075e-05,0.199960204242339,0.000230227664819308 +0.248,0.559787103847726,-0.292901920192041,0.0447393822128736,-0.000105951190265686,4.23446828157206e-05,0.199960231399974,9.55559034674766e-05,-0.000206878417174856,3.01325010082511e-05,0.199960263953262,0.00022986425950389 +0.25,0.559786892136457,-0.292901835916432,0.0451393027359386,-0.000105760307733683,4.19312764232685e-05,0.199960292029448,9.5326815885605e-05,-0.000206527971807831,3.0496879417641e-05,0.199960324394557,0.000229501774764725 +0.252,0.559786680806495,-0.292901752466936,0.0455392233809914,-0.000105569883002143,4.15185709284893e-05,0.199960353387492,9.5098075248062e-05,-0.000206177474398954,3.08610572860579e-05,0.199960385565848,0.000229140131191005 +0.254,0.559786469856925,-0.292901669842149,0.0459391441494886,-0.000105379915432691,4.11065665256726e-05,0.199960415473677,9.48696399216686e-05,-0.00020582695270388,3.12250286391147e-05,0.199960447466697,0.000228779337903898 +0.256,0.559786259286833,-0.29290158804067,0.0463390650428861,-0.000105190404442457,4.06952631176738e-05,0.199960478287606,9.46415099067898e-05,-0.000205476444886665,3.1588783672154e-05,0.199960510096704,0.000228419430116148 +0.258,0.559786049095307,-0.292901507061096,0.046738986062639,-0.000105001349393063,4.0284660746126e-05,0.199960541828812,9.44137129588184e-05,-0.000205125888497193,3.19523010480771e-05,0.199960573455392,0.00022806036233572 +0.26,0.559785839281436,-0.292901426902027,0.0471389072102013,-0.000104812749590621,3.9874759563685e-05,0.19996060609681,9.41862490777544e-05,-0.000204775276596569,3.23155825016075e-05,0.199960637542274,0.000227702130628935 +0.262,0.559785629844309,-0.292901347562058,0.0475388284870263,-0.000104624604396752,3.94655596397397e-05,0.199960671091142,9.39590905080222e-05,-0.000204424616123688,3.26786427778946e-05,0.199960702356883,0.000227344733961922 +0.264,0.559785420783018,-0.292901269039788,0.0479387498945659,-0.000104436913228589,3.90570610991902e-05,0.199960736811382,9.3732223371834e-05,-0.000204073875853527,3.30414758054065e-05,0.199960767898789,0.000226988139838864 +0.266,0.559785212096656,-0.292901191333814,0.0483386714342718,-0.000104249675503265,3.86492641363256e-05,0.199960803257045,9.35056754247653e-05,-0.000203723055786087,3.34040607674612e-05,0.199960834167502,0.000226632358835226 +0.268,0.559785003784316,-0.292901114442731,0.0487385931075941,-0.00010406289052689,3.82421688760459e-05,0.199960870427625,9.32794397279223e-05,-0.000203372176738048,3.37663902949536e-05,0.199960901162507,0.000226277407755786 +0.27,0.559784795845094,-0.292901038365138,0.0491385149159823,-0.000103876557744353,3.78357754293734e-05,0.199960938322606,9.30534815868355e-05,-0.000203021176259366,3.41284656785179e-05,0.199960968883285,0.000225923218405585 +0.272,0.559784588278085,-0.29290096309963,0.0495384368608845,-0.000103690676600543,3.74300841710084e-05,0.199961006941487,9.28278287570804e-05,-0.000202670037002805,3.44902908316902e-05,0.199961037329329,0.000225569789316138 +0.274,0.559784381082387,-0.292900888644801,0.0499383589437482,-0.000103505246429325,3.70250952813622e-05,0.199961076283769,9.2602488177551e-05,-0.000202318817948965,3.48518436332767e-05,0.199961106500132,0.000225217175005767 +0.276,0.559784174257099,-0.292900814999249,0.0503382811660196,-0.000103320266647833,3.66208088992126e-05,0.199961146348862,9.23774182148839e-05,-0.000201967477464482,3.52131214811923e-05,0.1999611763951,0.000224865322524089 +0.278,0.559783967801321,-0.292900742161566,0.0507382035291437,-0.000103135736756465,3.62172253715043e-05,0.199961217136255,9.21526396857607e-05,-0.000201615970446545,3.55741382532248e-05,0.199961247013716,0.000224514204122178 +0.28,0.559783761714152,-0.292900670130347,0.0511381260345646,-0.00010295165608909,3.58143450174264e-05,0.199961288645415,9.19281664679693e-05,-0.000201264303834048,3.59348809389481e-05,0.19996131835544,0.000224163831730417 +0.282,0.559783555994696,-0.292900598904186,0.0515380486837253,-0.000102768024090594,3.54121681561681e-05,0.199961360875779,9.17039430503585e-05,-0.000200912481096438,3.62953261195953e-05,0.199961390419706,0.000223814183932649 +0.284,0.559783350642056,-0.292900528481674,0.0519379714780677,-0.000102584840316888,3.50106950930406e-05,0.199961433826719,9.14800110662916e-05,-0.000200560495294821,3.66554842035071e-05,0.199961463205878,0.000223465275199048 +0.286,0.559783145655335,-0.292900458861405,0.0523378944190322,-0.000102402104046328,3.46099261749888e-05,0.199961507497716,9.12563982713443e-05,-0.000200208332551408,3.70153573556186e-05,0.199961536713431,0.000223117106759293 +0.288,0.55978294103364,-0.29290039004197,0.0527378175080586,-0.000102219814723803,3.4209861762835e-05,0.199961581888149,9.10330075210019e-05,-0.00019985596164118,3.73749165297199e-05,0.199961610941741,0.000222769607997687 +0.29,0.559782736776076,-0.292900322021958,0.0531377407465848,-0.000102037972016244,3.38105023284241e-05,0.199961656997382,9.08098596319461e-05,-0.000199503375625243,3.77341738619363e-05,0.199961685890164,0.000222422785184619 +0.292,0.559782532881752,-0.29290025479996,0.0535376641360481,-0.000101856575285275,3.3411848260334e-05,0.199961732824844,9.05870517486917e-05,-0.000199150598789721,3.80931228366465e-05,0.199961761558124,0.000222076700602005 +0.294,0.559782329349775,-0.292900188374565,0.0539375876778842,-0.00010167562380925,3.30138999332652e-05,0.199961809369873,9.03645006045117e-05,-0.000198797592970701,3.84517469947942e-05,0.199961837944953,0.000221731285089405 +0.296,0.559782126179256,-0.292900122744361,0.0543375113735276,-0.000101495117282857,3.26166578884512e-05,0.199961886631832,9.01421784438305e-05,-0.000198444326943159,3.88100545659075e-05,0.199961915050009,0.000221386502673337 +0.298,0.559781923369306,-0.292900057907934,0.0547374352244115,-0.000101315055095474,3.22201226254925e-05,0.199961964610092,8.99201407777993e-05,-0.000198090821523777,3.91680455430476e-05,0.199961992872656,0.000221042396569361 +0.3,0.559781720919036,-0.29289999386387,0.055137359231968,-0.000101135436719746,3.18242946023561e-05,0.199962043304014,8.96983459730548e-05,-0.00019773708365145,3.95256978188984e-05,0.199962071412253,0.00022069895402868 +0.302,0.559781518827559,-0.292899930610755,0.0555372833976276,-0.000100956261711582,3.14291742908867e-05,0.199962122712883,8.94768148462787e-05,-0.00019738306475392,3.98830014153306e-05,0.199962150668075,0.000220356140029228 +0.304,0.559781317093989,-0.292899868147173,0.0559372077228195,-0.000100777529460361,3.10347623433404e-05,0.19996220283602,8.92555543363648e-05,-0.000197028740545058,4.0239974977152e-05,0.19996223063944,0.000220013940846541 +0.306,0.559781115717441,-0.292899806471706,0.0563371322089717,-0.000100599239494237,3.06410593287065e-05,0.199962283672783,8.90345366877376e-05,-0.000196674138780439,4.0596608540111e-05,0.199962311325699,0.000219672370163356 +0.308,0.559780914697031,-0.292899745582936,0.0567370568575106,-0.00010042139131361,3.02480657882187e-05,0.199962365222454,8.88137341448213e-05,-0.000196319252521171,4.09528700048844e-05,0.199962392726131,0.000219331406426109 +0.31,0.559780714031876,-0.292899685479443,0.0571369816698615,-0.000100243984557657,2.98557823186218e-05,0.199962447484263,8.85931952798734e-05,-0.000195964054011677,4.13087728051708e-05,0.199962474839958,0.000218991048733181 +0.312,0.559780513721093,-0.292899626159806,0.0575369066474477,-0.00010006701853249,2.9464209572172e-05,0.199962530457545,8.83729617262573e-05,-0.000195608518965828,4.16643160944252e-05,0.199962557666511,0.000218651293826246 +0.314,0.559780313763802,-0.292899567622604,0.0579368317916917,-9.98904927107524e-05,2.90733482427585e-05,0.199962614141527,8.81529155227766e-05,-0.000195252661261413,4.20194768771531e-05,0.19996264120501,0.000218312103837281 +0.316,0.559780114159122,-0.292899509866413,0.0583367571040138,-9.97144068703991e-05,2.86831989271263e-05,0.199962698535453,8.7933077486113e-05,-0.000194896467020643,4.23742776978208e-05,0.199962725454694,0.000217973480918481 +0.318,0.559779914906174,-0.292899452889809,0.0587366825858335,-9.95387604008079e-05,2.82937623746759e-05,0.199962783638638,8.77135308829934e-05,-0.00019453990154905,4.27287085921768e-05,0.199962810414873,0.000217635427567828 +0.32,0.55977971600408,-0.292899396691364,0.0591366082385684,-9.93635527468672e-05,2.79050393209301e-05,0.199962869450287,8.74942202022665e-05,-0.000194182985663316,4.30827266223454e-05,0.199962896084747,0.000217297933315386 +0.322,0.559779517451963,-0.292899341269652,0.0595365340636346,-9.91887835199988e-05,2.75170304320227e-05,0.199962955969544,8.72751246272473e-05,-0.000193825702016204,4.3436350870285e-05,0.199962982463454,0.000216960979712257 +0.324,0.559779319248946,-0.292899286623242,0.0599364600624465,-9.90144522483582e-05,2.71297365128653e-05,0.199963043195691,8.70562649746241e-05,-0.000193468015913245,4.37896021526773e-05,0.19996306955027,0.000216624550107852 +0.326,0.559779121394154,-0.292899232750705,0.0603363862364174,-9.88405584601003e-05,2.67431583683697e-05,0.199963131127953,8.68376343055032e-05,-0.000193109930823887,4.41424353667119e-05,0.199963157344415,0.000216288637507122 +0.328,0.559778923886713,-0.292899179650609,0.0607363125869583,-9.86671017111362e-05,2.63572967895697e-05,0.199963219765432,8.66192256809838e-05,-0.000192751446748129,4.44948587488558e-05,0.199963245844987,0.000215953242476585 +0.33,0.559778726725747,-0.292899127321518,0.0611362391154791,-9.84940815573764e-05,2.59721525813772e-05,0.199963309107388,8.64010599177511e-05,-0.000192392563685972,4.48468822841774e-05,0.199963335051238,0.000215618377155526 +0.332,0.559778529910386,-0.292899075761998,0.0615361658233879,-9.83214974714652e-05,2.55877265348259e-05,0.199963399152961,8.61831161991233e-05,-0.000192033233065158,4.51984625976509e-05,0.199963424962305,0.00021528398254501 +0.334,0.559778333439758,-0.292899024970612,0.061936092712091,-9.81493490925799e-05,2.52040196491165e-05,0.199963489901238,8.59653806473125e-05,-0.000191673447946794,4.55496257031895e-05,0.199963515577267,0.000214950054011043 +0.336,0.55977813731299,-0.29289897494592,0.0623360197829929,-9.79776359488759e-05,2.48210327430387e-05,0.199963581351464,8.57478879567885e-05,-0.000191313225678113,4.59003733424556e-05,0.199963606895366,0.000214616623031375 +0.338,0.559777941529214,-0.292898925686481,0.0627359470374968,-9.78063575407528e-05,2.44387667464041e-05,0.199963673502732,8.55306173108693e-05,-0.000190952552381328,4.62506621543013e-05,0.199963698915688,0.000214283661318901 +0.34,0.55977774608756,-0.292898877190853,0.0631358744770038,-9.76355134796324e-05,2.40572225335134e-05,0.199963766354113,8.53135340150856e-05,-0.000190591424586994,4.66005155505544e-05,0.1999637916373,0.000213951158589573 +0.342,0.55977755098716,-0.292898829457591,0.0635358021029133,-9.74651034046924e-05,2.36764010480561e-05,0.199963859904794,8.5096658886119e-05,-0.00019022978331451,4.69499335242762e-05,0.199963885059384,0.000213619072349358 +0.344,0.559777356227146,-0.292898782485249,0.063935729916623,-9.72951268440879e-05,2.32963034002553e-05,0.199963954153847,8.4880026618439e-05,-0.000189867645911112,4.72988896313419e-05,0.199963979181005,0.000213287427765755 +0.346,0.559777161806652,-0.292898736272377,0.0643356579195287,-9.71255832982187e-05,2.29169304644117e-05,0.199964049100352,8.46636233342578e-05,-0.000189505026254588,4.76473816998779e-05,0.199964074001239,0.000212956232767888 +0.348,0.559776967724813,-0.292898690817527,0.0647355861130244,-9.69564723507509e-05,2.2538283295237e-05,0.199964144743374,8.44474351557877e-05,-0.000189141889650468,4.79954079951605e-05,0.199964169519143,0.000212625452177209 +0.35,0.559776773980763,-0.292898646119244,0.0651355144985022,-9.67877935575955e-05,2.21603629058098e-05,0.199964241081984,8.42314135107713e-05,-0.000188778232629305,4.83429737213603e-05,0.199964265733787,0.00021229506646385 +0.352,0.559776580573639,-0.292898602176075,0.0655354430773523,-9.66195466967078e-05,2.17831703647198e-05,0.199964338115269,8.40156000325719e-05,-0.000188414027435524,4.86900650006894e-05,0.199964362644249,0.000211965066020509 +0.354,0.559776387502576,-0.292898558986563,0.0659353718509632,-9.64517311574652e-05,2.14067067960677e-05,0.199964435842244,8.3800050232341e-05,-0.000188049274069124,4.90366670879982e-05,0.199964460249542,0.000211635471072234 +0.356,0.559776194766714,-0.292898516549248,0.0663353008207213,-9.62843464957785e-05,2.10309732684433e-05,0.199964534261937,8.35846530877759e-05,-0.000187683969060658,4.93827851874573e-05,0.199964558548685,0.000211306237359517 +0.358,0.55977600236519,-0.29289847486267,0.066735229988011,-9.61173925451141e-05,2.06559709198251e-05,0.199964633373385,8.33694710489218e-05,-0.000187318095062893,4.97284071560022e-05,0.199964657540713,0.000210977373002986 +0.36,0.559775810297144,-0.292898433925364,0.0671351593542148,-9.59508686115828e-05,2.02817008881917e-05,0.199964733175566,8.31545388102483e-05,-0.000186951659014722,5.00735321262713e-05,0.199964757224596,0.000210648899243986 +0.362,0.559775618561716,-0.292898393735866,0.0675350889207132,-9.57847743898731e-05,1.99081642837662e-05,0.199964833667514,8.29397384105589e-05,-0.000186584626221675,5.04181765781375e-05,0.199964857599365,0.000210320744291566 +0.364,0.559775427158046,-0.292898354292707,0.0679350186888849,-9.56191096579405e-05,1.9535362383305e-05,0.199964934848272,8.27251531165806e-05,-0.00018621697586707,5.07622980108757e-05,0.199964958664057,0.000209992914067556 +0.366,0.559775236085277,-0.292898315594417,0.0683349486601063,-9.54538737774068e-05,1.91632963802979e-05,0.199965036716706,8.25108106838889e-05,-0.000185848735706484,5.11058799446129e-05,0.199965060417533,0.000209665441616696 +0.368,0.559775045342551,-0.292898277639522,0.0687348788357517,-9.5289066415205e-05,1.8791967440479e-05,0.199965139271792,8.22966417235448e-05,-0.000185479871045446,5.14489596759037e-05,0.199965162858762,0.00020933827947545 +0.37,0.559774854929012,-0.292898240426547,0.0691348092171935,-9.51246872105126e-05,1.84213768961161e-05,0.199965242512544,8.20826878689118e-05,-0.000185110357597828,5.17915189901518e-05,0.199965265986756,0.000209011419728895 +0.372,0.559774664843802,-0.292898203954014,0.0695347398058019,-9.49607356637293e-05,1.80515260100877e-05,0.199965346437868,8.18689074866263e-05,-0.000184740216180312,5.21335448769311e-05,0.199965369800412,0.000208684862864649 +0.374,0.559774475086069,-0.292898168220443,0.069934670602945,-9.47972115805661e-05,1.76824160313948e-05,0.199965451046724,8.16553005766884e-05,-0.000184369425976216,5.24750338667945e-05,0.199965474298687,0.000208358591198899 +0.376,0.559774285654956,-0.29289813322435,0.0703346016099888,-9.46341144614226e-05,1.73140483061829e-05,0.199965556338003,8.1441950405825e-05,-0.00018399796269941,5.28159755514012e-05,0.199965579480467,0.00020803261483932 +0.378,0.559774096549611,-0.29289809896425,0.070734532828297,-9.44714437789428e-05,1.69464241805972e-05,0.199965662310626,8.12287598295213e-05,-0.000183625833288791,5.31563699307513e-05,0.199965685344667,0.000207706903444878 +0.38,0.559773907769181,-0.292898065438653,0.0711344642592313,-9.43091994221045e-05,1.65795449730277e-05,0.199965768963483,8.10157288477775e-05,-0.000183253003049888,5.34962048617804e-05,0.199965791890172,0.00020738142487251 +0.382,0.559773719312813,-0.29289803264607,0.0715343959041509,-9.41473808635517e-05,1.62134121683977e-05,0.199965876295446,8.08029615440019e-05,-0.000182879475452147,5.38354864160206e-05,0.199965899115848,0.00020705622601985 +0.384,0.559773531179658,-0.292898000585005,0.0719343277644131,-9.39859875759285e-05,1.58480270712191e-05,0.199965984305429,8.0590367712574e-05,-0.000182505281720591,5.41742137261103e-05,0.199966007020605,0.000206731300621851 +0.386,0.559773343368863,-0.292897969253961,0.0723342598413726,-9.38250193927014e-05,1.54833910415153e-05,0.199966092992301,8.03779057201303e-05,-0.000182130335119046,5.45123685774528e-05,0.199966115603307,0.000206406552770144 +0.388,0.55977315587958,-0.29289793865144,0.0727341921363823,-9.3664475953048e-05,1.51195057307429e-05,0.199966202354903,8.01656727111854e-05,-0.000181754642586407,5.48499457658779e-05,0.199966224862789,0.000206082026711378 +0.39,0.559772968710959,-0.292897908775939,0.0731341246507922,-9.35043567018567e-05,1.47563724711697e-05,0.199966312392084,7.99536617468454e-05,-0.000181378249225483,5.51869348830447e-05,0.199966334797894,0.000205757758299938 +0.392,0.559772781862153,-0.292897879625951,0.0735340573859506,-9.33446613060606e-05,1.4393992733841e-05,0.199966423102642,7.97418103770652e-05,-0.000181001089116783,5.55233333268678e-05,0.199966445407418,0.000205433666002921 +0.394,0.559772595332314,-0.292897851199968,0.0739339903432028,-9.31853894603484e-05,1.40323681147025e-05,0.199966534485417,7.95301255407387e-05,-0.000180623165729754,5.58591402299857e-05,0.199966556690192,0.000205109756993657 +0.396,0.559772409120595,-0.292897823496478,0.0743339235238923,-9.30265408038976e-05,1.3671500070922e-05,0.199966646539203,7.93186488712293e-05,-0.000180244475594948,5.61943477861426e-05,0.199966668645007,0.000204786043871073 +0.398,0.559772223226151,-0.292897796513967,0.0747338569293596,-9.28681148648635e-05,1.33113902123227e-05,0.199966759262808,7.91073734296432e-05,-0.000179864997895684,5.65289638015942e-05,0.199966781270664,0.000204462509393369 +0.4,0.559772037648136,-0.292897770250917,0.0751337905609435,-9.27101113101791e-05,1.29520400793392e-05,0.199966872655058,7.88962506437229e-05,-0.000179484749979197,5.68629770006379e-05,0.199966894565987,0.000204139148607285 +0.402,0.559771852385706,-0.292897744705807,0.0755337244199799,-9.25525298622886e-05,1.25934512124059e-05,0.199966986714716,7.86853429635136e-05,-0.000179103683273229,5.71963683013154e-05,0.19996700852973,0.00020381593928391 +0.404,0.559771667438016,-0.292897719877112,0.0759336585078024,-9.2395369938325e-05,1.22356253462463e-05,0.199967101440532,7.84746434501215e-05,-0.000178721780430546,5.7529127295286e-05,0.199967123160641,0.000203492862165348 +0.406,0.559771482804226,-0.292897695763306,0.076333592825742,-9.22386312884881e-05,1.18785640906838e-05,0.199967216831225,7.82640688368196e-05,-0.00017833907267617,5.78612583193582e-05,0.199967238457432,0.00020316991541119 +0.408,0.559771298483491,-0.292897672362856,0.0767335273751273,-9.20823136629777e-05,1.15222690555416e-05,0.199967332885565,7.80536885125471e-05,-0.000177955528785079,5.81927700471496e-05,0.199967354418869,0.000202847102521458 +0.41,0.559771114474971,-0.292897649674229,0.0771334621572843,-9.19264165344379e-05,1.11667419755434e-05,0.199967449602305,7.78435371717733e-05,-0.000177571152226719,5.8523659009213e-05,0.199967471043699,0.000202524440614866 +0.412,0.559770930777825,-0.292897627695888,0.0775333971735365,-9.17709395142906e-05,1.08119844466348e-05,0.199967566980201,7.76335384866655e-05,-0.000177185911776067,5.88538991846965e-05,0.199967588330673,0.000202201867150428 +0.414,0.559770747391213,-0.292897606426292,0.0779333324252051,-9.16158823804913e-05,1.04579983284392e-05,0.199967685017902,7.74237132739052e-05,-0.000176799783146996,5.91834740937269e-05,0.199967706278435,0.00020187936572059 +0.416,0.559770564314296,-0.292897585863895,0.0783332679136081,-9.1461244661195e-05,1.01047853140468e-05,0.199967803714097,7.72141239835377e-05,-0.000176412811442317,5.9512404552986e-05,0.199967824885669,0.000201557007516995 +0.418,0.559770381546234,-0.29289756600715,0.0787332036400614,-9.13070258845571e-05,9.75234708266991e-06,0.19996792306752,7.700469428773e-05,-0.000176024934211982,5.9840686225665e-05,0.199967944151104,0.000201234709070374 +0.42,0.559770199086192,-0.292897546854506,0.0791331396058782,-9.11532258840441e-05,9.40068557719886e-06,0.199968043076842,7.67954033698003e-05,-0.000175636141047652,6.0168306101338e-05,0.199968064073405,0.000200912451281511 +0.422,0.559770016933331,-0.292897528404408,0.0795330758123688,-9.09998442710779e-05,9.0498025184793e-06,0.199968163740745,7.65863206186878e-05,-0.000175246459704903,6.04952485674936e-05,0.199968184651249,0.000200590282028451 +0.424,0.559769835086815,-0.292897510655296,0.0799330122608412,-9.08468806015693e-05,8.69969973837924e-06,0.199968285057837,7.63774460343924e-05,-0.000174855841611476,6.08215049505145e-05,0.199968305883239,0.000200268157910436 +0.426,0.559769653545809,-0.292897493605609,0.0803329489526002,-9.06943344869403e-05,8.3503791520334e-06,0.199968407026765,7.61687588002324e-05,-0.00017446430064516,6.11471030059762e-05,0.199968427768018,0.000199946093292158 +0.428,0.559769472309477,-0.29289747725378,0.0807328858889482,-9.05422055663684e-05,8.0018425357986e-06,0.199968529646249,7.59602380995261e-05,-0.000174071840275403,6.1472012376218e-05,0.199968550304299,0.000199624075839023 +0.43,0.559769291376986,-0.292897461598239,0.0811328230711852,-9.03904935345422e-05,7.65409179093179e-06,0.199968652914814,7.57518908711673e-05,-0.000173678401521604,6.17962096424728e-05,0.199968673490604,0.000199302051298609 +0.432,0.559769110747503,-0.292897446637413,0.0815327605006075,-9.02391980028837e-05,7.30712892971219e-06,0.199968776831087,7.55437379318379e-05,-0.000173283994792106,6.21197390401895e-05,0.199968797325553,0.000198980052191786 +0.434,0.559768930420194,-0.292897432369723,0.0819326981785095,-9.00883185828149e-05,6.96095581176336e-06,0.19996890139377,7.53357515259622e-05,-0.000172888637434143,6.24425693443453e-05,0.199968921807844,0.000198658075290534 +0.436,0.559768750394229,-0.292897418793589,0.0823326361061826,-8.99378549967799e-05,6.61557437997561e-06,0.199969026601365,7.51279594091158e-05,-0.000172492284344905,6.27646719320029e-05,0.199969046935972,0.000198336084680104 +0.438,0.559768570668774,-0.292897405907426,0.082732574284915,-8.97878067451784e-05,6.27098667438374e-06,0.199969152452458,7.49203823979804e-05,-0.000172094935524391,6.30860728240145e-05,0.19996917270852,0.000198014098276261 +0.44,0.559768391243002,-0.292897393709643,0.0831325127159924,-8.9638173467188e-05,5.92719463787805e-06,0.199969278945656,7.47129580425109e-05,-0.000171696590972603,6.34067650814862e-05,0.199969299124089,0.000197692092176632 +0.442,0.55976821211608,-0.292897382198647,0.0835324514006976,-8.94889549130084e-05,5.58420031049333e-06,0.199969406079518,7.45057210371768e-05,-0.000171297212525623,6.37267330919066e-05,0.199969426181233,0.000197370043311757 +0.444,0.559768033287182,-0.292897371372841,0.0839323903403105,-8.93401505830393e-05,5.24200578777556e-06,0.199969533852588,7.42986921986599e-05,-0.000170896810591791,6.40459707837437e-05,0.199969553878491,0.000197047968541952 +0.446,0.559767854755478,-0.292897361230624,0.0843323295361079,-8.91917601442137e-05,4.90061306812617e-06,0.199969662263401,7.40918090769149e-05,-0.000170495395579451,6.436446948338e-05,0.199969682214392,0.000196725852439277 +0.448,0.559767676520141,-0.292897351770389,0.0847322689893641,-8.90437833467316e-05,4.56002420545775e-06,0.199969791310466,7.38851202441992e-05,-0.000170092929324683,6.46822300581772e-05,0.19996981118744,0.00019640368246306 +0.45,0.559767498580345,-0.292897342990527,0.0851322087013498,-8.88962196632369e-05,4.22024135082743e-06,0.199969920992322,7.36786395783006e-05,-0.000169689397949701,6.49992611817529e-05,0.19996994079617,0.000196081456698013 +0.452,0.559767320935263,-0.292897334889424,0.0855321486733334,-8.87490687884184e-05,3.88126661365895e-06,0.199970051307511,7.34723254458557e-05,-0.000169284794515611,6.53155472415956e-05,0.199970071039118,0.00019575915041725 +0.454,0.55976714358407,-0.292897327465461,0.0859320889065799,-8.86023303614535e-05,3.54310217276499e-06,0.199970182254511,7.32662264191219e-05,-0.000168879115552967,6.56310656863001e-05,0.199970201914757,0.00019543677337382 +0.456,0.559766966525941,-0.292897320717015,0.0863320294023514,-8.84560038827419e-05,3.20575015144708e-06,0.199970313831774,7.30602939258417e-05,-0.000168472361061766,6.59458234547605e-05,0.199970333421534,0.000195114311677496 +0.458,0.559766789760054,-0.29289731464246,0.086731970161907,-8.83100891857501e-05,2.86921272851792e-06,0.199970446037804,7.28545349049092e-05,-0.000168064492878095,6.62598370268496e-05,0.199970465557949,0.000194791742703346 +0.46,0.559766613285585,-0.292897309240164,0.0871319111865026,-8.81645857431223e-05,2.5334921799347e-06,0.199970578871122,7.26489979285815e-05,-0.000167655517940845,6.65730760449068e-05,0.199970598322514,0.000194469082504446 +0.462,0.559766437101711,-0.292897304508491,0.0875318524773914,-8.80194931940358e-05,2.19859065675454e-06,0.199970712330109,7.24436205468137e-05,-0.000167245432780571,6.68855240290588e-05,0.199970731713609,0.000194146301197147 +0.464,0.559766261207612,-0.292897300445802,0.0879317940358231,-8.7874811260935e-05,1.86451044881242e-06,0.199970846413218,7.22384305151812e-05,-0.000166834216580591,6.71972043980728e-05,0.19997086572968,0.000193823401436134 +0.466,0.559766085602466,-0.29289729705045,0.0883317358630443,-8.77305394719751e-05,1.53125379043217e-06,0.199970981118926,7.20334625281537e-05,-0.000166421858932564,6.75081136825017e-05,0.199971000369199,0.000193500388287297 +0.468,0.559765910285454,-0.292897294320786,0.0887316779602988,-8.75866774108224e-05,1.19882301308216e-06,0.199971116445673,7.18286749523677e-05,-0.000166008339019807,6.78182275962169e-05,0.1999711356306,0.000193177222166125 +0.47,0.559765735255756,-0.292897292255158,0.089131620328827,-8.74432247721656e-05,8.67220434352944e-07,0.199971252391837,7.16240539100354e-05,-0.000165593681128451,6.81275426697713e-05,0.199971271512258,0.000192853919841937 +0.472,0.559765560512555,-0.292897290851905,0.0895315629698661,-8.73001811951823e-05,5.36448288568358e-07,0.199971388955843,7.14196479734141e-05,-0.00016517784362513,6.84360623726121e-05,0.199971408012592,0.00019253046713277 +0.474,0.559765386055032,-0.292897290109364,0.0899315058846504,-8.7157546180272e-05,2.06509059852422e-07,0.199971526136086,7.12154363258221e-05,-0.000164760819570952,6.8743773694313e-05,0.199971545129991,0.000192206848105118 +0.476,0.55976521188237,-0.292897290025868,0.0903314490744105,-8.7015319449879e-05,-1.22594989715452e-07,0.199971663930938,7.10113842727899e-05,-0.000164342626313152,6.9050683573768e-05,0.199971682862822,0.000191883069659224 +0.478,0.559765037993754,-0.292897290599744,0.0907313925403741,-8.68735006431808e-05,-4.50861445400185e-07,0.19997180233882,7.08075612032565e-05,-0.000163923215279471,6.93567668574868e-05,0.199971821209501,0.00019155910925883 +0.48,0.559764864388367,-0.292897291829314,0.0911313362837657,-8.6732089205066e-05,-7.78287850833336e-07,0.199971941358005,7.06039463005403e-05,-0.000163502603817145,6.966203395381e-05,0.199971960168296,0.000191234980227932 +0.482,0.559764691065397,-0.292897293712896,0.0915312803058062,-8.65910848579786e-05,-1.10487186066876e-06,0.199972080986956,7.04005048701716e-05,-0.000163080767640044,6.996651088359e-05,0.199972099737665,0.000190910661057115 +0.484,0.559764518024028,-0.292897296248802,0.0919312246077136,-8.64504871855853e-05,-1.43061092139351e-06,0.199972221224049,7.01972646677262e-05,-0.000162657692870382,7.02701377988667e-05,0.199972239915978,0.000190586130877927 +0.486,0.559764345263448,-0.292897299435339,0.0923311691907023,-8.63102957993077e-05,-1.75550263215029e-06,0.199972362067507,6.99942118154161e-05,-0.000162233382977605,7.0572919036449e-05,0.199972380701454,0.000190261391620436 +0.488,0.559764172782845,-0.292897303270812,0.0927311140559836,-8.61705103383236e-05,-2.07954445330394e-06,0.199972503515725,6.97913671299232e-05,-0.000161807813675585,7.08748745456566e-05,0.199972522092482,0.000189936440248308 +0.49,0.559764000581407,-0.292897307753517,0.0931310592047652,-8.6031130330788e-05,-2.40273388685263e-06,0.199972645567006,6.95887167334596e-05,-0.000161381016189343,7.11759783056375e-05,0.199972664087359,0.00018961129125313 +0.492,0.559763828658324,-0.292897312881748,0.0935310046382516,-8.58921554713898e-05,-2.72506851806131e-06,0.199972788219638,6.93862675649192e-05,-0.000160952952354964,7.14762433268178e-05,0.199972806684371,0.000189285922240626 +0.494,0.559763657012785,-0.292897318653791,0.0939309503576438,-8.57535852605284e-05,-3.04654569627249e-06,0.199972931471979,6.91840404409837e-05,-0.000160523559722403,7.17756574661332e-05,0.199972949881867,0.000188960285992552 +0.496,0.559763485643982,-0.29289732506793,0.0943308963641395,-8.56154193096258e-05,-3.36716275695092e-06,0.199973075322268,6.89819937279916e-05,-0.000160092890333376,7.20742162133025e-05,0.199973093678083,0.000188634412652477 +0.498,0.559763314551108,-0.292897332122442,0.0947308426589329,-8.54776572856164e-05,-3.686917257606e-06,0.199973219768844,6.87801551821157e-05,-0.000159660954596202,7.23719147111011e-05,0.199973238071352,0.000188308322196331 +0.5,0.559763143733353,-0.2928973398156,0.0951307892432149,-8.53402986888974e-05,-4.00580657533572e-06,0.199973364809927,6.85785386814401e-05,-0.000159227690060815,7.26687323163176e-05,0.199973383059889,0.000187981961651232 +0.502,0.559762973189913,-0.292897348145669,0.0955307361181726,-8.52033431308906e-05,-4.32382801784925e-06,0.199973510443773,6.83771164691965e-05,-0.00015879310713561,7.29646865496591e-05,0.199973528641945,0.000187655339422339 +0.504,0.559762802919981,-0.292897357110912,0.09593068328499,-8.50667902230206e-05,-4.64097900387816e-06,0.199973656668673,6.81758885456851e-05,-0.000158357205820581,7.32597697783443e-05,0.199973674815806,0.000187328455612786 +0.506,0.559762632922752,-0.292897366709585,0.0963306307448473,-8.49306395767079e-05,-4.95725684113157e-06,0.199973803482852,6.79748757281828e-05,-0.000157919951421226,7.35539745430613e-05,0.199973821579692,0.000187001288653917 +0.508,0.559762463197423,-0.292897376939939,0.0967305784989214,-8.47948907201078e-05,-5.27265880956306e-06,0.199973950884571,6.77740918941793e-05,-0.000157481350876454,7.38472937314438e-05,0.199973968931857,0.000186673849795335 +0.51,0.559762293743189,-0.29289738780022,0.0971305265483856,-8.46595432091312e-05,-5.58718224463738e-06,0.199974098872027,6.75735023492052e-05,-0.000157041411125158,7.41397169351509e-05,0.199974116870494,0.000186346131312521 +0.512,0.55976212455925,-0.292897399288668,0.0975304748944095,-8.4524596710711e-05,-5.9008244540637e-06,0.199974247443439,6.73731070932603e-05,-0.000156600100942316,7.44312346132036e-05,0.199974265393818,0.00018601810627084 +0.514,0.559761955644802,-0.292897411403518,0.0979304235381593,-8.43900507807581e-05,-6.21358264840665e-06,0.199974396596966,6.7172961637496e-05,-0.000156157406450141,7.47218606433896e-05,0.19997441449998,0.000185689791917588 +0.516,0.559761786999047,-0.292897424142999,0.0983303724807974,-8.4255904864161e-05,-6.52545407986426e-06,0.199974546330882,6.69730382263367e-05,-0.000155713331118079,7.50116054340499e-05,0.199974564187251,0.000185361188728786 +0.518,0.559761618621183,-0.292897437505334,0.0987303217234828,-8.41221586278528e-05,-6.83643597287897e-06,0.199974696643387,6.67732952264188e-05,-0.000155267868007236,7.53004290865444e-05,0.199974714453826,0.000185032263163819 +0.52,0.559761450510412,-0.292897451488742,0.0991302712673709,-8.39888116832554e-05,-7.14652555189321e-06,0.199974847532598,6.65737742711024e-05,-0.00015482099630093,7.55883359376818e-05,0.199974865297815,0.00018470301796706 +0.522,0.559761282665936,-0.292897466091436,0.0995302211136132,-8.38558635307684e-05,-7.45571995808269e-06,0.199974998996731,6.63744822992883e-05,-0.000154372712529715,7.58753355284413e-05,0.199975016717429,0.000184373460172103 +0.524,0.559761115086958,-0.292897481311622,0.0999301712633578,-8.37233137540582e-05,-7.76401640201207e-06,0.19997515103394,6.61754123720825e-05,-0.00015392300628525,7.61613931643534e-05,0.199975168710819,0.0001840435678725 +0.526,0.559760947772681,-0.292897497147502,0.100330121717749,-8.35911618812801e-05,-8.07141198322369e-06,0.199975303642304,6.59765506116904e-05,-0.000153471853281406,7.64465279273762e-05,0.199975321276055,0.000183713327258524 +0.528,0.55976078072231,-0.29289751359727,0.100730072477927,-8.34594075516115e-05,-8.37790381513769e-06,0.199975456820052,6.5777931712585e-05,-0.000153019288212652,7.67307545626594e-05,0.199975474411365,0.000183382789708433 +0.53,0.559760613935051,-0.292897530659117,0.101130023545029,-8.33280501544297e-05,-8.6834891360743e-06,0.199975610565322,6.55795487358723e-05,-0.000152565279853966,7.70140323042012e-05,0.199975628114879,0.000183051913404565 +0.532,0.55976044741011,-0.292897548331227,0.101529974920188,-8.3197089356668e-05,-8.98816493455356e-06,0.199975764876181,6.53813392315072e-05,-0.000152109786571985,7.72963741624277e-05,0.199975782384659,0.000182720650582627 +0.534,0.559760281146694,-0.292897566611777,0.101929926604534,-8.30665247975037e-05,-9.29192828236224e-06,0.199975919750819,6.51833795273226e-05,-0.000151652836122285,7.75777792699772e-05,0.19997593721889,0.00018238905533775 +0.536,0.559760115144011,-0.29289758549894,0.102329878599192,-8.29363558385587e-05,-9.5947762790427e-06,0.199976075187298,6.49856904400003e-05,-0.000151194414627076,7.78582207386357e-05,0.199976092615629,0.000182057116073429 +0.538,0.55975994940127,-0.292897604990882,0.102729830905283,-8.28065820357437e-05,-9.89670594087055e-06,0.199976231183702,6.47881956417073e-05,-0.000150734515147466,7.81377081093825e-05,0.199976248572954,0.000181724807827211 +0.54,0.559759783917682,-0.292897625085764,0.103129783523926,-8.26772030559918e-05,-1.01977143396326e-05,0.199976387738131,6.45909228880192e-05,-0.000150273113397325,7.84162561273671e-05,0.199976405088962,0.000181392130906179 +0.542,0.559759618692458,-0.292897645781739,0.103529736456236,-8.25482183441916e-05,-1.04977983944598e-05,0.199976544848726,6.43939207511934e-05,-0.000149810195498867,7.86938431085459e-05,0.199976562161786,0.000181059086069471 +0.544,0.559759453724809,-0.292897667076957,0.103929689703321,-8.24196273729871e-05,-1.0796955121628e-05,0.199976702513503,6.41971198422908e-05,-0.00014934578573822,7.89704465015139e-05,0.199976719789438,0.000180725663187219 +0.546,0.559759289013948,-0.29289768896956,0.10432964326629,-8.22914298648225e-05,-1.10951815374127e-05,0.199976860730512,6.40005340390992e-05,-0.000148879870237595,7.92460966639318e-05,0.199976877969962,0.000180391873308423 +0.548,0.55975912455909,-0.292897711457683,0.104729597146243,-8.21636252368307e-05,-1.13924746025784e-05,0.19997701949789,6.38042396694515e-05,-0.000148412414302523,7.95207823200971e-05,0.19997703670149,0.000180057714468725 +0.55,0.559758960359447,-0.292897734539458,0.105129551344281,-8.20362129061446e-05,-1.16888311946228e-05,0.199977178813641,6.36081742833027e-05,-0.000147943417933005,7.9794469642902e-05,0.199977195982022,0.000179723154131422 +0.552,0.559758796414238,-0.292897758213008,0.105529505861498,-8.19091925396975e-05,-1.19842482743104e-05,0.199977338675768,6.3412324002865e-05,-0.000147472891537381,8.00671820511133e-05,0.199977355809554,0.000179388210915452 +0.554,0.559758632722677,-0.292897782476451,0.105929460698984,-8.17825636101332e-05,-1.22787227607723e-05,0.19997749908237,6.32167374003955e-05,-0.000147000786543394,8.03389160752842e-05,0.199977516182179,0.000179052865288659 +0.556,0.559758469283984,-0.292897807327899,0.106329415857827,-8.16563255900959e-05,-1.2572251420484e-05,0.199977660031433,6.30214075370005e-05,-0.000146527123767725,8.06096422251156e-05,0.199977677097881,0.000178717123486386 +0.558,0.559758306097375,-0.292897832765457,0.10672937133911,-8.15304779799852e-05,-1.28648312558432e-05,0.199977821520938,6.28263066571044e-05,-0.000146051930965951,8.08793865214596e-05,0.199977838554633,0.000178381014996392 +0.56,0.559758143162072,-0.292897858787224,0.107129327143911,-8.14050203634675e-05,-1.31564591443478e-05,0.199977983548979,6.2631434760707e-05,-0.00014557515262692,8.11481359538901e-05,0.199978000550524,0.000178044493459716 +0.562,0.559757980477294,-0.292897885391294,0.107529283273306,-8.12799522409424e-05,-1.34471318663509e-05,0.199978146113482,6.24368404200659e-05,-0.000145096771403397,8.1415880981428e-05,0.199978163083476,0.000177707562555206 +0.564,0.559757818042263,-0.292897912575752,0.107929239728365,-8.11552730017872e-05,-1.37368462299614e-05,0.199978309212503,6.22425028184991e-05,-0.000144616794234276,8.16826294103289e-05,0.199978326151537,0.000177370229404753 +0.566,0.559757655856202,-0.292897940338678,0.108329196510156,-8.10309822296684e-05,-1.4025599043288e-05,0.199978472844,6.20483942004312e-05,-0.000144135224589003,8.19483474134852e-05,0.199978489752663,0.000177032476777499 +0.568,0.559757493918334,-0.292897968678148,0.108729153619741,-8.09070794249855e-05,-1.43133871283174e-05,0.199978637005892,6.18545492603317e-05,-0.000143652048589792,8.22130427971523e-05,0.199978653884766,0.000176694314379975 +0.57,0.559757332227884,-0.292897997592227,0.10912911105818,-8.0783564032627e-05,-1.46002072376472e-05,0.199978801696171,6.16609679982005e-05,-0.000143167245419962,8.2476723367586e-05,0.199978818545832,0.000176355734335654 +0.572,0.559757170784078,-0.292898027078977,0.109529068826526,-8.06604355529927e-05,-1.48860561099973e-05,0.199978966912786,6.14676573529315e-05,-0.000142680846304532,8.27394038699358e-05,0.199978983733805,0.000176016776914553 +0.574,0.559757009586142,-0.292898057136451,0.109929026925831,-8.05376934032153e-05,-1.51709306228653e-05,0.199979132653787,6.12745965078431e-05,-0.000142192813079589,8.30010738958608e-05,0.199979149446731,0.000175677404741054 +0.576,0.559756848633304,-0.292898087762699,0.110328985357141,-8.04153371669613e-05,-1.54548273623156e-05,0.199979298917081,6.10817646462535e-05,-0.000141703111050662,8.3261684005742e-05,0.199979315682511,0.000175337564934638 +0.578,0.559756687924793,-0.292898118955761,0.110728944121499,-8.02933663446303e-05,-1.5737743067068e-05,0.199979465700523,6.08892242182079e-05,-0.000141211788790008,8.35212489447289e-05,0.199979482438994,0.000174997331249526 +0.58,0.559756527459839,-0.292898150713672,0.111128903219943,-8.01717802700885e-05,-1.60196745174756e-05,0.199979633002077,6.06969752237063e-05,-0.000140718801194817,8.37797869274181e-05,0.199979649714139,0.000174656681832151 +0.582,0.559756367237672,-0.292898183034459,0.111528862653507,-8.00505784437355e-05,-1.63006182718472e-05,0.19997980081967,6.05049690904912e-05,-0.000140224144795642,8.40372849433834e-05,0.199979817505868,0.00017431559691825 +0.584,0.559756207257525,-0.292898215916145,0.111928822423222,-7.99297603937265e-05,-1.65805710966582e-05,0.199979969151217,6.03132266352446e-05,-0.000139727847348059,8.42937403905396e-05,0.19997998581209,0.000173974111007082 +0.586,0.55975604751863,-0.292898249356743,0.112328782530112,-7.98093255371945e-05,-1.68595296612395e-05,0.199980137994632,6.01217756135419e-05,-0.000139229874157598,8.45491489320781e-05,0.199980154630714,0.00017363220998998 +0.588,0.559755888020223,-0.292898283354263,0.1127287429752,-7.96892732912723e-05,-1.71374905932886e-05,0.199980307347813,5.99305743920197e-05,-0.000138730211346471,8.48034906186789e-05,0.199980323959632,0.000173289864990155 +0.59,0.559755728761537,-0.292898317906706,0.113128703759503,-7.95696032396264e-05,-1.74144505066254e-05,0.199980477208594,5.97396368484659e-05,-0.000138228858914679,8.50567758586828e-05,0.199980493796675,0.000172947092392775 +0.592,0.55975556974181,-0.292898353012065,0.113528664884035,-7.94503147438785e-05,-1.76904060289473e-05,0.199980647574916,5.95490115551378e-05,-0.000137725806453881,8.53090176625159e-05,0.199980664139776,0.000172603913730568 +0.594,0.559755410960278,-0.29289838866833,0.113928626349803,-7.93314071934059e-05,-1.79653537324409e-05,0.199980818444665,5.93586707564597e-05,-0.000137221043555735,8.55601856725174e-05,0.199980834986816,0.000172260302916297 +0.596,0.559755252416181,-0.29289842487348,0.114328588157813,-7.92128800608526e-05,-1.82392902031703e-05,0.199980989815659,5.9168586696856e-05,-0.000136714591036924,8.58102781539637e-05,0.199981006335608,0.000171916272909103 +0.598,0.559755094108758,-0.292898461625491,0.114728550309066,-7.90947328466184e-05,-1.85122120965886e-05,0.199981161685778,5.89787871319025e-05,-0.000136206428080765,8.60593037804724e-05,0.199981178184028,0.000171571827959168 +0.6,0.55975493603725,-0.292898498922329,0.115128512804556,-7.8976964912325e-05,-1.87841159154933e-05,0.199981334052874,5.8789272061599e-05,-0.000135696537340024,8.63072400006381e-05,0.199981350529921,0.000171226950075428 +0.602,0.559754778200898,-0.292898536761954,0.115528475645277,-7.8859575758372e-05,-1.90549982459487e-05,0.199981506914738,5.86000414859455e-05,-0.000135184932692489,8.65541032943339e-05,0.199981523371073,0.000170881665740692 +0.604,0.559754620598947,-0.292898575142322,0.115928438832215,-7.87425647463812e-05,-1.93248556462633e-05,0.199981680269287,5.84111231605177e-05,-0.00013467157944369,8.67999066719859e-05,0.199981696705396,0.000170535971035429 +0.606,0.559754463230639,-0.292898614061377,0.116328402366354,-7.862593126573e-05,-1.95936845637234e-05,0.199981854114364,5.82224754519522e-05,-0.00013415646371584,8.70445980918898e-05,0.199981870530727,0.000170189821850401 +0.608,0.559754306095221,-0.29289865351706,0.116728366248673,-7.85096748445734e-05,-1.98614815011266e-05,0.199982028447679,5.80341261158245e-05,-0.00013363961673396,8.72881905644717e-05,0.199982044844771,0.00016984326647485 +0.61,0.55975414919194,-0.292898693507303,0.117128330480145,-7.83937947612667e-05,-2.01282430306593e-05,0.199982203267127,5.78460612743469e-05,-0.000133121045436946,8.75306979675194e-05,0.199982219645416,0.000169496320402131 +0.612,0.559753992520042,-0.292898734030032,0.117528295061741,-7.8278290599476e-05,-2.03939656828744e-05,0.199982378570471,5.76582809275194e-05,-0.00013260071166088,8.77721046885215e-05,0.199982394930424,0.000169148953452102 +0.614,0.559753836078777,-0.292898775083166,0.117928259994427,-7.81631616375566e-05,-2.06586458773028e-05,0.199982554355545,5.74708405864932e-05,-0.00013207859458908,8.80124315441599e-05,0.199982570697619,0.000168801187118634 +0.616,0.559753679867396,-0.292898816664615,0.118328225279163,-7.80484072371301e-05,-2.09222800612307e-05,0.199982730620197,5.72836708623292e-05,-0.00013155470116044,8.82516386357945e-05,0.199982746944846,0.000168452990673301 +0.618,0.559753523885149,-0.292898858772286,0.118728190916908,-7.79340269541073e-05,-2.11848646819446e-05,0.1999829073621,5.7096799510603e-05,-0.000131029041783303,8.84897120856375e-05,0.19998292366977,0.000168104382602012 +0.62,0.559753368131288,-0.292898901404074,0.119128156908612,-7.78200200390877e-05,-2.1446396228364e-05,0.199983084579046,5.69102542868904e-05,-0.000130501630335455,8.87266995985846e-05,0.199983100870182,0.000167755416558953 +0.622,0.559753212605068,-0.292898944557871,0.119528123255224,-7.77063859369597e-05,-2.17068712032864e-05,0.199983262268898,5.67239866189339e-05,-0.000129972425183533,8.89625725516984e-05,0.199983278543936,0.00016740603717026 +0.624,0.559753057305744,-0.292898988231559,0.119928089957687,-7.75931240926119e-05,-2.19662859290981e-05,0.199983440429336,5.6538038140097e-05,-0.000129441402041408,8.91973057914885e-05,0.199983456688708,0.000167056235081594 +0.626,0.559752902232572,-0.292899032423015,0.120328057016941,-7.74802337843993e-05,-2.2224636811452e-05,0.199983619058121,5.63524227281675e-05,-0.000128908599072996,8.94309331450626e-05,0.199983635302254,0.000166706071471597 +0.628,0.559752747384809,-0.292899077130106,0.12072802443392,-7.73677144016992e-05,-2.24819203253901e-05,0.199983798153069,5.61671056886758e-05,-0.000128374005869958,8.96634329283773e-05,0.199983814382383,0.000166355523951098 +0.63,0.559752592761714,-0.292899122350696,0.121127992209554,-7.72555653616446e-05,-2.27381328349318e-05,0.199983977711853,5.5982093960516e-05,-0.000127837591207269,8.98947886615597e-05,0.199983993926764,0.000166004571016546 +0.632,0.559752438362548,-0.292899168082638,0.121527960344767,-7.71437860258572e-05,-2.29932706902191e-05,0.199984157732223,5.57973944825818e-05,-0.000127299365493272,9.01250133550357e-05,0.199984173933141,0.000165653239383599 +0.634,0.55975228418657,-0.292899214323779,0.121927928840482,-7.70323757837143e-05,-2.32473302969049e-05,0.199984338211907,5.56130141937671e-05,-0.000126759339136306,9.03540966004645e-05,0.199984354399237,0.000165301543182377 +0.636,0.559752130233045,-0.292899261071959,0.122327897697615,-7.69213339690821e-05,-2.35003080467644e-05,0.19998451914861,5.54289669718599e-05,-0.000126217498258585,9.05820479388252e-05,0.199984535322751,0.000164949491223875 +0.638,0.559751976501234,-0.292899308325011,0.122727866917077,-7.68106599158268e-05,-2.37522002899393e-05,0.199984700540098,5.52452389390722e-05,-0.000125673835921214,9.0808860431224e-05,0.199984716701445,0.000164597079540935 +0.64,0.559751822990405,-0.29289935608076,0.123127836499775,-7.67003530133258e-05,-2.40030033904492e-05,0.199984882384051,5.50618300954042e-05,-0.000125128331307511,9.10345149957025e-05,0.199984898532992,0.000164244291680899 +0.642,0.559751669699822,-0.292899404337024,0.123527806446613,-7.65904125954452e-05,-2.42527136151693e-05,0.199985064678158,5.48787543186435e-05,-0.000124580994825818,9.12590272447721e-05,0.199985080815076,0.000163891159008101 +0.644,0.559751516628755,-0.292899453091614,0.123927776758488,-7.64808379960513e-05,-2.45013273697525e-05,0.19998524742016,5.46959769143207e-05,-0.000124031833415028,9.14823789638363e-05,0.199985263545433,0.000163537675328311 +0.646,0.55975136377647,-0.292899502342334,0.124327747436294,-7.6371628687788e-05,-2.47488409488294e-05,0.199985430607674,5.4513546454693e-05,-0.000123480826258459,9.17045640813629e-05,0.199985446721674,0.000163183848079068 +0.648,0.55975121114224,-0.292899552086978,0.124727718480919,-7.62627838102325e-05,-2.49952506747863e-05,0.199985614238417,5.43314837564423e-05,-0.000122927990703347,9.19255956077779e-05,0.199985630341511,0.000162829715203901 +0.65,0.559751058725335,-0.292899602323337,0.125127689893247,-7.61543027527622e-05,-2.52405529116428e-05,0.199985798310057,5.41497124917356e-05,-0.000122373292055222,9.21454527263998e-05,0.199985814402607,0.000162475224048233 +0.652,0.559750906525029,-0.29289965304919,0.125527661674159,-7.60461849602655e-05,-2.54847438430072e-05,0.199985982820228,5.39682742939362e-05,-0.000121816726844637,9.23641493150162e-05,0.19998599890259,0.000162120404786359 +0.654,0.559750754540595,-0.292899704262312,0.125927633824528,-7.59384296555864e-05,-2.57278198190214e-05,0.199986167766654,5.3787183040832e-05,-0.000121258340174402,9.25816680263924e-05,0.199986183839179,0.000161765297192779 +0.656,0.55975060277131,-0.292899755960469,0.126327606345226,-7.58310362281022e-05,-2.59697772037048e-05,0.1999863531469,5.36064317935291e-05,-0.000120698107758388,9.27980071258049e-05,0.199986369209934,0.000161409890876026 +0.658,0.55975045121645,-0.292899808141421,0.126727579237116,-7.57240039284123e-05,-2.62106122500549e-05,0.199986538958682,5.34260413687093e-05,-0.000120135991432679,9.3013189164659e-05,0.199986555012565,0.000161054188683264 +0.66,0.559750299875294,-0.292899860802918,0.12712755250106,-7.56173320626274e-05,-2.64503211694356e-05,0.199986725199656,5.32459840107968e-05,-0.00011957199813617,9.3227179448485e-05,0.199986741244722,0.000160698178395009 +0.662,0.559750148747122,-0.292899913942705,0.127527526137915,-7.55110199923691e-05,-2.66889002425996e-05,0.1999869118674,5.30662527808978e-05,-0.000119006145216094,9.34399797120066e-05,0.199986927903978,0.000160341883461497 +0.664,0.559749997831214,-0.292899967558519,0.12792750014853,-7.54050670515038e-05,-2.69263457502999e-05,0.199987098959575,5.2886868495694e-05,-0.000118438453489134,9.36515916899471e-05,0.199987114987989,0.00015998533917281 +0.666,0.559749847126854,-0.292900021648088,0.128327474533753,-7.52994725183864e-05,-2.71626540565561e-05,0.199987286473767,5.27078519718671e-05,-0.00011786889866916,9.38620032392422e-05,0.199987302494335,0.000159628539381442 +0.668,0.559749696633324,-0.292900076209135,0.128727449294425,-7.51942356436163e-05,-2.73978213449766e-05,0.199987474407588,5.25291962705232e-05,-0.000117297435653363,9.40712230335094e-05,0.199987490420625,0.000159271465977752 +0.67,0.559749546349911,-0.292900131239374,0.129127424431383,-7.50893557333043e-05,-2.76318437991696e-05,0.199987662758659,5.23508666971928e-05,-0.000116724088727871,9.42792510727485e-05,0.199987678764471,0.000158914138188323 +0.672,0.559749396275901,-0.292900186736511,0.12952739994546,-7.49848321768275e-05,-2.78647176998881e-05,0.199987851524592,5.21728840685575e-05,-0.000116148878709366,9.44860821527892e-05,0.199987867523482,0.000158556587936477 +0.674,0.559749246410583,-0.292900242698245,0.129927375837482,-7.488066419703e-05,-2.8096439314007e-05,0.199988040702988,5.19952969568748e-05,-0.0001155718021284,9.46916937222263e-05,0.199988056695253,0.000158198828101929 +0.676,0.559749096753245,-0.292900299122268,0.130327352108272,-7.4776850989e-05,-2.83270049084017e-05,0.199988230291367,5.18180498509934e-05,-0.000114992838168293,9.48960892505068e-05,0.199988246277299,0.000157840840327842 +0.678,0.559748947303179,-0.292900356006264,0.130727328758647,-7.46733919976261e-05,-2.85564106666802e-05,0.199988420287345,5.16411358120194e-05,-0.000114411986829043,9.50992791459714e-05,0.199988436267229,0.000157482642002882 +0.68,0.559748798059677,-0.29290041334791,0.131127305789421,-7.4570286445752e-05,-2.87846528557178e-05,0.199988610688484,5.14646172899979e-05,-0.000113829255049546,9.53012599391733e-05,0.199988626662603,0.0001571242701938 +0.682,0.559748649022033,-0.292900471144876,0.131527283201401,-7.44675335284661e-05,-2.90117276868784e-05,0.199988801492384,5.12884734682472e-05,-0.000113244628952014,9.55020246912185e-05,0.199988817461013,0.000156765717608489 +0.684,0.559748500189543,-0.292900529394821,0.13192726099539,-7.4365132551879e-05,-2.92376313715259e-05,0.199988992696583,5.11126765911917e-05,-0.000112658122414233,9.57015577895958e-05,0.199989008659991,0.000156406989669808 +0.686,0.559748351561503,-0.292900588095401,0.132327239172187,-7.42630828221013e-05,-2.94623601765353e-05,0.199989184298616,5.09372335977253e-05,-0.000112069738905651,9.58998609690286e-05,0.199989200257068,0.000156048106296902 +0.688000000000001,0.559748203137211,-0.292900647244262,0.132727217732585,-7.41613836174881e-05,-2.96859103271485e-05,0.199989376296027,5.07621653045298e-05,-0.000111479447201246,9.60969324947935e-05,0.199989392249784,0.000155689065157476 +0.690000000000001,0.559748054915968,-0.292900706839042,0.133127196677371,-7.40600341608832e-05,-2.99082779653403e-05,0.199989568686345,5.05874855893928e-05,-0.000110887264648252,9.62927914488486e-05,0.199989584635661,0.000155329909690439 +0.692000000000001,0.559747906897075,-0.292900766877374,0.13352717600733,-7.39590336751305e-05,-3.01294593857415e-05,0.199989761467192,5.04131805745267e-05,-0.000110293208593903,9.6487411810342e-05,0.199989777412315,0.000154970646496156 +0.694000000000001,0.559747759079834,-0.29290082735688,0.13392715572324,-7.38583814385851e-05,-3.03494507997159e-05,0.199989954635993,5.02392225043557e-05,-0.000109697261690966,9.66807710278682e-05,0.199989970577167,0.000154611255045943 +0.696000000000001,0.559747611463549,-0.292900888275177,0.134327135825874,-7.37580767851131e-05,-3.05682484325054e-05,0.199990148190276,5.00656530122434e-05,-0.0001090994135311,9.68728985917266e-05,0.19999016412774,0.000154251775114373 +0.698000000000001,0.559747464047526,-0.292900949629874,0.134727116316001,-7.36581188265361e-05,-3.07858484538403e-05,0.199990342127587,4.98924790370836e-05,-0.00010849966758375,9.70637823588526e-05,0.199990358061573,0.000153892219348662 +0.700000000000001,0.559747316831074,-0.292901011418571,0.135127097194385,-7.35585068689647e-05,-3.10022471028404e-05,0.199990536445406,4.97196658844067e-05,-0.000107898041196153,9.72534101861821e-05,0.199990552376142,0.000153532596742403 +0.702000000000001,0.559747169813499,-0.292901073638862,0.135527078461783,-7.34592401629985e-05,-3.12174406186249e-05,0.199990731141228,4.95472551875764e-05,-0.000107294517021073,9.74417994209497e-05,0.199990747068937,0.000153172935448142 +0.704000000000001,0.559747022994113,-0.292901136288333,0.13592706011895,-7.33603178482144e-05,-3.14314251709246e-05,0.199990926212604,4.93752261299107e-05,-0.000106689115875191,9.76289361853676e-05,0.199990942137502,0.000152813250676427 +0.706000000000001,0.559746876372228,-0.292901199364563,0.136327042166633,-7.32617392584788e-05,-3.16441970821257e-05,0.199991121656973,4.92035509558341e-05,-0.000106081813472381,9.78147909891368e-05,0.199991137579273,0.000152453513939498 +0.708000000000001,0.559746729947156,-0.292901262865122,0.136727024605577,-7.31635036443911e-05,-3.18557524248142e-05,0.199991317471768,4.90322712987101e-05,-0.000105472602873746,9.79993759753216e-05,0.199991333391676,0.000152093758179702 +0.710000000000001,0.559746583718213,-0.292901326787572,0.13712700743652,-7.3065610173284e-05,-3.20660874936207e-05,0.199991513654476,4.88614079752203e-05,-0.000104861539590439,9.81827171647741e-05,0.199991529572195,0.000151734062176086 +0.712000000000001,0.559746437684715,-0.292901391129472,0.137526990660195,-7.29680580124902e-05,-3.22751985831759e-05,0.199991710202636,4.8690940168683e-05,-0.000104248561172415,9.8364805883877e-05,0.19999172611836,0.000151374387521806 +0.714000000000001,0.559746291845981,-0.292901455888367,0.137926974277331,-7.28708464126093e-05,-3.24830817383104e-05,0.1999919071137,4.85208331846287e-05,-0.000103633688436355,9.85455952950964e-05,0.19999192302762,0.000151014724394408 +0.716000000000001,0.55974614620133,-0.292901521061799,0.13832695828865,-7.27739746797517e-05,-3.26897333369214e-05,0.199992104385017,4.8351114778633e-05,-0.000103016969954517,9.87251010109435e-05,0.19999212029732,0.000150655142522807 +0.718000000000001,0.559746000750082,-0.2929015866473,0.138726942694871,-7.26774419534947e-05,-3.28951496181284e-05,0.199992302014104,4.81818127062716e-05,-0.000102398350215749,9.89033421133766e-05,0.199992317924969,0.000150295642930076 +0.720000000000001,0.559745855491562,-0.292901652642397,0.139126927496707,-7.25812474289266e-05,-3.30993267377843e-05,0.199992499998386,4.80128992119688e-05,-0.000101777836158945,9.90802977857141e-05,0.199992515907989,0.000149936225887013 +0.722000000000001,0.559745710425092,-0.292901719044607,0.139526912694865,-7.24853903566468e-05,-3.33022609627642e-05,0.199992698335295,4.78443881735124e-05,-0.00010115544513134,9.92559767015732e-05,0.199992714243806,0.000149576931611798 +0.724000000000001,0.55974556555,-0.292901785851441,0.139926898290048,-7.23898698762326e-05,-3.35039485183097e-05,0.199992897022293,4.76762865297963e-05,-0.000100531184071828,9.94303563095488e-05,0.199992912929877,0.00014921777046987 +0.726000000000001,0.559745420865613,-0.292901853060401,0.140326884282954,-7.22946852105277e-05,-3.37043856990515e-05,0.19999309605672,4.75085942808206e-05,-9.99050356331742e-05,9.96034262013e-05,0.199993111963537,0.000148858742391716 +0.728000000000001,0.559745276371259,-0.292901920668984,0.140726870674275,-7.21998354991093e-05,-3.39035686608424e-05,0.199993295435997,4.73412836710096e-05,-9.92770067542724e-05,9.97752123976791e-05,0.199993311342201,0.000148499879524223 +0.730000000000001,0.559745132066271,-0.292901988674676,0.141126857464698,-7.21053200758436e-05,-3.41014937260686e-05,0.19999349515757,4.71743408225755e-05,-9.86471321295922e-05,9.99457201028563e-05,0.199993511063309,0.000148141223419804 +0.732000000000001,0.559744987949979,-0.292902057074959,0.141526844654905,-7.2011138135819e-05,-3.42981571893608e-05,0.199993695218878,4.7007862880033e-05,-9.80153701257684e-05,0.000100114912887639,0.199993711124298,0.00014778277212158 +0.734000000000001,0.559744844021718,-0.292902125867305,0.141926832245573,-7.19172886243235e-05,-3.44935552065717e-05,0.199993895617222,4.68418012711247e-05,-9.73817415594862e-05,0.000100282771670068,0.199993911522461,0.000147424530622665 +0.736000000000001,0.559744700280825,-0.292902195049179,0.142326820237374,-7.18237709307345e-05,-3.46876841555987e-05,0.199994096349965,4.66760935458054e-05,-9.67462672474272e-05,0.000100449348491849,0.199994112255157,0.000147066548023146 +0.738000000000001,0.559744556726635,-0.292902264618041,0.142726808630973,-7.17305842501403e-05,-3.48805402755614e-05,0.199994297414616,4.65108229708022e-05,-9.61089124951186e-05,0.000100614615597405,0.19999431331989,0.000146708829271552 +0.740000000000001,0.559744413358488,-0.29290233457134,0.143126797427032,-7.16377276388513e-05,-3.50721198055792e-05,0.199994498808427,4.63459964850088e-05,-9.54697154664785e-05,0.000100778546965885,0.199994514713908,0.000146351404127169 +0.742000000000001,0.559744270175724,-0.29290240490652,0.143526786626207,-7.15452002642002e-05,-3.52624191374273e-05,0.199994700528803,4.61815516383801e-05,-9.48286761615068e-05,0.000100941175557034,0.199994716434609,0.000145994295974563 +0.744000000000001,0.559744127177687,-0.292902475621017,0.143926776229147,-7.14530014322978e-05,-3.54514345102252e-05,0.199994902573129,4.60175092475978e-05,-9.41857598857342e-05,0.000101102458002766,0.199994918479373,0.000145637479849134 +0.746000000000001,0.559743984363718,-0.292902546712258,0.144326766236499,-7.13611302272098e-05,-3.56391621769702e-05,0.199995104938635,4.58539109460254e-05,-9.35410013336301e-05,0.000101262416854486,0.199995120845426,0.000145281028172146 +0.748000000000001,0.559743841733166,-0.292902618177666,0.144726756648902,-7.12695857885137e-05,-3.58255985155597e-05,0.199995307622797,4.56907151002994e-05,-9.2894435199664e-05,0.000101421065989982,0.199995323530238,0.000144924981159169 +0.750000000000001,0.559743699285375,-0.292902690014653,0.145126747466991,-7.11783673668086e-05,-3.60107399177689e-05,0.199995510622899,4.55279286493137e-05,-9.22460198504726e-05,0.000101578353367548,0.199995526531089,0.000144569299431841 +0.752000000000001,0.559743557019696,-0.292902762220625,0.145526738691394,-7.10874740739164e-05,-3.61945825949616e-05,0.19999571393621,4.5365579348644e-05,-9.1595737938821e-05,0.00010173432062055,0.199995729845242,0.000144214031877346 +0.754000000000001,0.559743414935479,-0.292902834792983,0.145926730322735,-7.09969050494141e-05,-3.63771228695242e-05,0.199995917560182,4.52036741371841e-05,-9.09436553842013e-05,0.000101888959075369,0.199995933470145,0.000143859238812123 +0.756000000000001,0.559743273032076,-0.292902907729117,0.146326722361634,-7.09066593773677e-05,-3.65583572164984e-05,0.199996121492046,4.50421644426768e-05,-9.02897721866135e-05,0.000102042227098642,0.199996137403024,0.000143504897653155 +0.758000000000001,0.559743131308841,-0.292902981026412,0.146726714808704,-7.08167363916434e-05,-3.67382819582706e-05,0.19999632572909,4.48810363873342e-05,-8.96340536515882e-05,0.000102194145507051,0.199996341641161,0.000143151019476402 +0.760000000000001,0.55974298976513,-0.292903054682245,0.147126707664551,-7.07271352318183e-05,-3.69168934311048e-05,0.199996530268628,4.47203871156709e-05,-8.89765240652539e-05,0.000102344735117277,0.199996546181865,0.000142797687883018 +0.762000000000001,0.559742848400301,-0.292903128693985,0.147526700929778,-7.06378548431807e-05,-3.70941880545317e-05,0.199996735108031,4.45601749943236e-05,-8.83171938359516e-05,0.000102493961234851,0.199996751022503,0.000142444894651205 +0.764000000000001,0.559742707213711,-0.292903203058997,0.147926694604983,-7.0548894531841e-05,-3.72701622064486e-05,0.199996940244473,4.44003583899288e-05,-8.76560490858934e-05,0.00010264179783892,0.199996956160245,0.000142092622715286 +0.766000000000001,0.559742566204722,-0.292903277774634,0.148326688690756,-7.0460253409621e-05,-3.74448122508752e-05,0.199997145675222,4.42409997525317e-05,-8.69931106317611e-05,0.00010278829697119,0.199997161592352,0.00014174096567588 +0.768000000000001,0.559742425372697,-0.292903352838246,0.148726683187684,-7.03719305328309e-05,-3.76181346489756e-05,0.199997351397661,4.40820574487688e-05,-8.63283992902363e-05,0.000102933430876084,0.199997367316203,0.000141389927168991 +0.770000000000001,0.559742284717,-0.292903428247173,0.149126678096347,-7.02839251798259e-05,-3.77901258480362e-05,0.199997557408946,4.39235314786401e-05,-8.56619011835313e-05,0.000103077187410538,0.199997573328949,0.000141039513954067 +0.772000000000001,0.559742144236997,-0.292903503998749,0.14952667341732,-7.01962364069163e-05,-3.79607822537098e-05,0.199997763706411,4.37654495977213e-05,-8.49936267199868e-05,0.000103219578717617,0.19999777962792,0.000140689774298452 +0.774000000000001,0.559742003932055,-0.292903580090302,0.149926669151172,-7.0108863381435e-05,-3.81301003549161e-05,0.19999797028726,4.36078048671184e-05,-8.43235897773908e-05,0.000103360582245915,0.199997986210315,0.000140340722530878 +0.776000000000001,0.559741863801543,-0.292903656519151,0.150326665298469,-7.00218051874479e-05,-3.82980766128193e-05,0.19999817714874,4.34505764701498e-05,-8.36517660696145e-05,0.00010350021187322,0.199998193073374,0.000139992372720642 +0.778000000000001,0.559741723844834,-0.292903733282608,0.150726661859767,-6.99350610755544e-05,-3.84647074191946e-05,0.199998384288108,4.32937852234971e-05,-8.29782111078092e-05,0.00010363844678285,0.199998400214352,0.000139644774371231 +0.780000000000001,0.559741584061299,-0.29290381037798,0.151126658835621,-6.98486300465539e-05,-3.86299894572506e-05,0.199998591702527,4.31374796994177e-05,-8.23029214225279e-05,0.000103775307791487,0.199998607630406,0.000139297981093476 +0.782000000000001,0.559741444450314,-0.292903887802566,0.151526656226577,-6.97625111567567e-05,-3.87939191048847e-05,0.199998799389339,4.29815766311847e-05,-8.1625865788748e-05,0.000103910777551896,0.199998815318874,0.000138951961435976 +0.784000000000001,0.559741305011254,-0.292903965553657,0.151926654033178,-6.96767037400291e-05,-3.89564929204056e-05,0.199999007345637,4.28260898965859e-05,-8.0947092778727e-05,0.000104044810961268,0.199999023276844,0.000138606740431785 +0.786000000000001,0.559741165743499,-0.292904043628538,0.15232665225596,-6.95912067971704e-05,-3.91177074759996e-05,0.199999215568583,4.26710611289848e-05,-8.0266578106336e-05,0.000104177475673817,0.199999231501473,0.000138262393500701 +0.788000000000001,0.559741026646427,-0.292904122024487,0.152726650895453,-6.95060194955132e-05,-3.92775592328309e-05,0.19999942405554,4.25164833894875e-05,-7.95843668743856e-05,0.000104308754342308,0.199999439990119,0.000137918958243779 +0.790000000000001,0.559740887719421,-0.292904200738775,0.153126649952182,-6.94211408636124e-05,-3.94360449434971e-05,0.1999996328036,4.23623497392e-05,-7.89004590828756e-05,0.000104438594925038,0.19999964873987,0.000137576419595914 +0.792000000000001,0.559740748961864,-0.292904279768667,0.153526649426667,-6.93365700965564e-05,-3.95931610691624e-05,0.19999984180992,4.22086324225468e-05,-7.82148200373366e-05,0.000104567032116476,0.199999857747877,0.00013723480218262 +0.794000000000001,0.55974061037314,-0.292904359111419,0.153926649319422,-6.92523063339223e-05,-3.97489042236465e-05,0.200000051071729,4.2055386950679e-05,-7.7527494840579e-05,0.000104694058977728,0.200000067011367,0.000136894170851279 +0.796000000000001,0.559740471952638,-0.292904438764283,0.154326649630954,-6.91683485487537e-05,-3.99032710485247e-05,0.200000260586155,4.19025716902332e-05,-7.68384973703905e-05,0.000104819663365729,0.200000276527463,0.000136554538630173 +0.798000000000001,0.559740333699746,-0.292904518724503,0.154726650361766,-6.90846960471613e-05,-4.0056258213128e-05,0.200000470350382,4.17501866412095e-05,-7.61478310962182e-05,0.000104943836606863,0.200000486293342,0.000136215928242633 +0.800000000000001,0.559740195613854,-0.292904598989316,0.155126651512356,-6.90013478021888e-05,-4.02078623729096e-05,0.200000680361502,4.15982734369713e-05,-7.54554960180619e-05,0.000105066580435853,0.200000696306092,0.00013587838149151 +0.802000000000001,0.559740057694355,-0.292904679555953,0.155526653083212,-6.89183029534134e-05,-4.03580801972003e-05,0.200000890616704,4.14467765663673e-05,-7.47615129526035e-05,0.00010518791046521,0.2000009065629,0.000135541933049303 +0.804000000000001,0.559739919940642,-0.292904760421637,0.155926655074822,-6.88355606959234e-05,-4.050690842472e-05,0.200001101113144,4.12957446016548e-05,-7.40658818998429e-05,0.000105307797204634,0.200001117060915,0.000135206603151987 +0.806000000000001,0.559739782352112,-0.292904841583586,0.156326657487665,-6.87531199750068e-05,-4.06543437247997e-05,0.200001311847893,4.114517060394e-05,-7.33686063292271e-05,0.000105426252797192,0.200001327797206,0.000134872429493866 +0.808000000000001,0.559739644928162,-0.292904923039012,0.156726660322214,-6.86709800135076e-05,-4.08003828500369e-05,0.200001522818155,4.09950129398561e-05,-7.26697139963316e-05,0.000105543254691476,0.20000153876897,0.000134539425556665 +0.810000000000001,0.559739507668192,-0.292905004785118,0.157126663578938,-6.85891399232474e-05,-4.0945022580785e-05,0.200001734020912,4.0845327120561e-05,-7.19692222483914e-05,0.000105658795948593,0.200001749973185,0.000134207640840343 +0.812000000000001,0.559739370571603,-0.292905086819102,0.157526667258298,-6.85075987050254e-05,-4.10882597390305e-05,0.200001945453339,4.06961131460548e-05,-7.12671172076184e-05,0.000105772906058843,0.200001961407023,0.00013387712006319 +0.814000000000001,0.559739233637797,-0.292905169138157,0.157926671360751,-6.84263554706632e-05,-4.12300910496155e-05,0.200002157112536,4.05473155051794e-05,-7.05634092823536e-05,0.000105885539919415,0.200002173067579,0.000133547845689294 +0.816000000000001,0.559739096866181,-0.292905251739466,0.158326675886748,-6.83454094430047e-05,-4.13705133761599e-05,0.200002368995498,4.039895501462e-05,-6.98581401059605e-05,0.000105996728755331,0.200002384951845,0.000133219900210774 +0.818000000000001,0.55973896025616,-0.29290533462021,0.158726680836733,-6.82647596506047e-05,-4.15095236100393e-05,0.200002581099451,4.02510941244216e-05,-6.91512923312042e-05,0.000106106472566592,0.200002597057039,0.000132893323119762 +0.820000000000001,0.559738823807142,-0.292905417777561,0.159126686211146,-6.8184405066507e-05,-4.16471185454847e-05,0.200002793421389,4.01036703845392e-05,-6.84428798358727e-05,0.00010621472798511,0.200002809380154,0.000132568098045836 +0.822000000000001,0.559738687518539,-0.292905501208685,0.159526692010418,-6.81043449690665e-05,-4.17832951293828e-05,0.200003005958363,3.99566352227154e-05,-6.77329199672005e-05,0.000106321514092844,0.200003021918236,0.000132244264543303 +0.824000000000001,0.559738551389762,-0.292905584910741,0.159926698234979,-6.80245785256161e-05,-4.19180502253535e-05,0.200003218707445,3.98100927223588e-05,-6.702141966408e-05,0.000106426808338389,0.200003234668353,0.000131921869716312 +0.826000000000001,0.559738415420225,-0.292905668880885,0.160326704885248,-6.79451045981771e-05,-4.20513808080391e-05,0.200003431665596,3.9664063700151e-05,-6.6308410151537e-05,0.000106530631538426,0.200003447627461,0.000131600982754727 +0.828000000000001,0.559738279609344,-0.292905753116265,0.160726711961641,-6.78659222708155e-05,-4.21832838659597e-05,0.200003644829971,3.95184301948958e-05,-6.55938810212308e-05,0.000106632983692956,0.200003660792712,0.000131281593392823 +0.830000000000001,0.559738143956536,-0.292905837614021,0.161126719464568,-6.77870308773975e-05,-4.2313756332124e-05,0.200003858197531,3.93732338399566e-05,-6.48778600287336e-05,0.000106733830107508,0.200003874161061,0.000130963730682744 +0.832000000000001,0.55973800846122,-0.29290592237129,0.161526727394431,-6.77084293354557e-05,-4.24427953060746e-05,0.200004071765292,3.92285370853784e-05,-6.41603541129409e-05,0.000106833195068212,0.200004087729522,0.00013064746737017 +0.834000000000001,0.559737873122819,-0.292906007385202,0.161926735751629,-6.7630116729056e-05,-4.25703977485758e-05,0.200004285530311,3.90842636033284e-05,-6.34413563349589e-05,0.000106931057758386,0.200004301495147,0.000130332791224469 +0.836000000000001,0.559737737940754,-0.292906092652881,0.162326744536553,-6.75520922810424e-05,-4.26965607314144e-05,0.200004499489523,3.89404342104882e-05,-6.27209187364918e-05,0.000107027412973859,0.200004515454866,0.00013001976077323 +0.838000000000001,0.55973760291445,-0.292906178171445,0.162726753749587,-6.7474354992214e-05,-4.28212814235218e-05,0.200004713639963,3.87970974791152e-05,-6.19990482564336e-05,0.000107122272857696,0.200004729605713,0.000129708434959744 +0.840000000000001,0.559737468043334,-0.292906263938007,0.163126763391113,-6.73969038911259e-05,-4.29445569244402e-05,0.200004927978614,3.86542187147398e-05,-6.12757136697616e-05,0.000107215611389044,0.200004943944664,0.000129398798432258 +0.842000000000001,0.559737333326834,-0.292906349949673,0.163526773461502,-6.73197381173551e-05,-4.30663842782008e-05,0.200005142502409,3.85117493451048e-05,-6.05509392626046e-05,0.000107307426833181,0.200005158468649,0.000129090878596291 +0.844000000000001,0.559737198764381,-0.292906436203544,0.163926783961122,-6.72428568937455e-05,-4.31867606814906e-05,0.200005357208321,3.83697518202552e-05,-5.98248013627955e-05,0.00010739773653734,0.200005373174638,0.000128784775987652 +0.846000000000001,0.559737064355406,-0.292906522696715,0.164326794890335,-6.71662591100741e-05,-4.3305683483652e-05,0.200005572093355,3.82282400179789e-05,-5.90972687453117e-05,0.000107486526623734,0.200005588059631,0.00012848050013003 +0.848000000000001,0.559736930099345,-0.292906609426278,0.164726806249496,-6.70899439336736e-05,-4.34231497564718e-05,0.200005787154428,3.80871445493369e-05,-5.83683310018123e-05,0.000107573772806235,0.200005803120542,0.000128178037274826 +0.850000000000001,0.559736795995631,-0.292906696389314,0.165126818038953,-6.70139105318767e-05,-4.35391568076593e-05,0.200006002388446,3.79465209254803e-05,-5.76380609906834e-05,0.000107659495901524,0.200006018354272,0.000127877486614665 +0.852000000000001,0.559736662043703,-0.292906783582905,0.165526830259049,-6.69381578499716e-05,-4.36537020004346e-05,0.200006217792412,3.78063691464092e-05,-5.69064240174554e-05,0.000107743687235984,0.200006233757821,0.000127578857110786 +0.854000000000001,0.559736528242999,-0.292906871004122,0.165926842910122,-6.68626850552911e-05,-4.37667825037291e-05,0.200006433363195,3.76666406398662e-05,-5.6173451307151e-05,0.000107826322523485,0.200006449328056,0.000127282160092404 +0.856000000000001,0.559736394592962,-0.292906958650035,0.166326855992502,-6.67874912874122e-05,-4.38783958056632e-05,0.200006649097702,3.75273770392148e-05,-5.54391740847925e-05,0.000107907419111264,0.200006665061877,0.000126987468475835 +0.858000000000001,0.559736261093034,-0.292907046517706,0.166726869506513,-6.67125755471342e-05,-4.39885392000682e-05,0.200006864992871,3.73885922222427e-05,-5.47035750031454e-05,0.000107986968325702,0.200006880956221,0.000126694803660853 +0.860000000000001,0.55973612774266,-0.292907134604192,0.167126883452474,-6.66379369185232e-05,-4.40972101056758e-05,0.200007081045575,3.72502514944805e-05,-5.396669916502e-05,0.000108064942411223,0.200007097007956,0.000126404183607628 +0.862000000000001,0.559735994541287,-0.292907222906546,0.167526897830696,-6.65635745411563e-05,-4.42044059967283e-05,0.200007297252641,3.71123617948221e-05,-5.32285396315224e-05,0.000108141353510893,0.200007313213905,0.000126115649974388 +0.864000000000001,0.559735861488362,-0.292907311421816,0.167926912641484,-6.64894874713439e-05,-4.43101242642018e-05,0.200007513610989,3.69749370010552e-05,-5.24891449749098e-05,0.000108216220706669,0.200007529570986,0.00012582927612628 +0.866000000000001,0.559735728583337,-0.292907400147043,0.16832692788514,-6.64156747931521e-05,-4.4414362576628e-05,0.200007730117524,3.68379493576043e-05,-5.17485221340763e-05,0.000108289504099912,0.2000077460761,0.000125545054678148 +0.868000000000001,0.559735595825663,-0.292907489079266,0.168726943561954,-6.63421356739135e-05,-4.45171183527382e-05,0.200007946769005,3.67014127422571e-05,-5.10066468228931e-05,0.000108361208894792,0.200007962726003,0.000125263016531351 +0.870000000000001,0.559735463214794,-0.292907578215517,0.169126959672216,-6.62688691421831e-05,-4.46183891639195e-05,0.200008163562359,3.6565375727271e-05,-5.02635641441706e-05,0.000108431352438543,0.200008179517617,0.000124983241973487 +0.872000000000001,0.559735330750186,-0.292907667552823,0.169526976216204,-6.61958741710044e-05,-4.47181726093148e-05,0.200008380494415,3.64297689237069e-05,-4.95192914451436e-05,0.000108499903506143,0.200008396447768,0.000124705723003822 +0.874000000000001,0.559735198431297,-0.292907757088207,0.169926993194193,-6.61231500664882e-05,-4.48164663297001e-05,0.200008597561973,3.6294585392671e-05,-4.87738668897286e-05,0.000108566856893422,0.200008613513254,0.000124430500424613 +0.876000000000001,0.559735066257586,-0.292907846818688,0.170327010606452,-6.60506958294337e-05,-4.49132680768738e-05,0.200008814761843,3.61598945231023e-05,-4.80272835390316e-05,0.000108632210865656,0.200008830710879,0.000124157622293682 +0.878000000000001,0.559734934228514,-0.292907936741279,0.170727028453241,-6.59785104883958e-05,-4.50085754638562e-05,0.200009032090817,3.60256546816373e-05,-4.72795240458179e-05,0.000108695975831186,0.200009048037435,0.000123887111319674 +0.880000000000001,0.559734802343544,-0.29290802685299,0.171127046734815,-6.59065932107072e-05,-4.5102386173057e-05,0.200009249545746,3.58918450515943e-05,-4.65306682073674e-05,0.000108758137912224,0.200009265489769,0.00012361901223989 +0.882000000000001,0.559734670602141,-0.292908117150824,0.171527065451424,-6.58349431081894e-05,-4.51946981366857e-05,0.200009467123369,3.57585142052308e-05,-4.57807333709148e-05,0.000108818679761535,0.200009483064615,0.000123353362139781 +0.884000000000001,0.559734539003772,-0.292908207631782,0.171927084603308,-6.57635591538863e-05,-4.52855091065407e-05,0.200009684820465,3.5625627448077e-05,-4.50296779030967e-05,0.000108877610052738,0.20000970075875,0.000123090175050334 +0.886000000000001,0.559734407547904,-0.29290829829286,0.172327104190705,-6.56924405983971e-05,-4.53748168482981e-05,0.200009902633809,3.54931778412393e-05,-4.42775503761705e-05,0.000108934927051107,0.200009918568946,0.000122829497565586 +0.888000000000001,0.559734276234009,-0.29290838913105,0.172727124213844,-6.56215864425213e-05,-4.54626193080454e-05,0.200010120560173,3.53612208958686e-05,-4.35243993623935e-05,0.000108990639430262,0.200010136491972,0.00012257140272723 +0.890000000000001,0.559734145061559,-0.292908480143338,0.173127144672946,-6.55509957148137e-05,-4.55489144457477e-05,0.200010338596367,3.52296802841323e-05,-4.27702248617656e-05,0.000109044709026285,0.200010354524634,0.000122315865995689 +0.892000000000001,0.559734014030026,-0.292908571326708,0.173527165568229,-6.54806677213848e-05,-4.56337002074924e-05,0.200010556739009,3.50985907004997e-05,-4.2015019935393e-05,0.000109097101144706,0.200010572663549,0.000122062895457673 +0.894000000000001,0.559733883138888,-0.292908662678139,0.173927186899902,-6.54106013520117e-05,-4.57169745254892e-05,0.200010774984771,3.49679799005464e-05,-4.12588192777452e-05,0.000109147881705018,0.200010790905384,0.000121812601430276 +0.896000000000001,0.559733752387621,-0.292908754194606,0.174327208668168,-6.53407958017826e-05,-4.57987354846034e-05,0.200010993330536,3.48377923731213e-05,-4.05016437055039e-05,0.000109197040298881,0.20001100924702,0.000121564997142745 +0.898000000000001,0.559733621775705,-0.29290884587308,0.174727230873224,-6.52712501825192e-05,-4.58789811003113e-05,0.200011211772932,3.47080697515878e-05,-3.97435140353508e-05,0.000109244517945695,0.200011227685082,0.000121320079603281 +0.900000000000001,0.55973349130262,-0.29290893771053,0.17512725351526,-6.52019635227762e-05,-4.59577095407448e-05,0.200011430308608,3.45787842803702e-05,-3.89844684312024e-05,0.000109290351074653,0.200011446216216,0.000121077916810593 +0.902000000000001,0.559733360967851,-0.292909029703919,0.175527276594459,-6.51329350453977e-05,-4.60349189740361e-05,0.200011648934337,3.44499498372563e-05,-3.82244895458239e-05,0.000109334534481586,0.200011664837192,0.000120838533072582 +0.904000000000001,0.55973323077088,-0.292909121850206,0.175927300110997,-6.50641637234272e-05,-4.61106074989281e-05,0.200011867646746,3.43215872389279e-05,-3.74636051347909e-05,0.00010937705602343,0.200011883544636,0.000120601962855699 +0.906000000000001,0.559733100711196,-0.292909214146349,0.176327324065046,-6.4995648696442e-05,-4.61847733945752e-05,0.200012086442561,3.41936479131277e-05,-3.67018707092548e-05,0.000109417893148778,0.200012102335269,0.000120368219278525 +0.908000000000001,0.559732970788285,-0.2929093065893,0.176727348456768,-6.49273891317747e-05,-4.62574149817651e-05,0.200012305318318,3.40661665543251e-05,-3.59392758608745e-05,0.000109457033714566,0.200012321205626,0.000120137327599305 +0.910000000000001,0.559732841001639,-0.292909399176009,0.177127373286319,-6.48593840302247e-05,-4.63285304980187e-05,0.200012524270696,3.39391154069446e-05,-3.5175834467438e-05,0.000109494524558329,0.200012540152381,0.000119909356571291 +0.912000000000001,0.559732711350749,-0.292909491903422,0.17752739855385,-6.47916326701469e-05,-4.63981183196349e-05,0.200012743296417,3.38124944709861e-05,-3.44115951012025e-05,0.00010953033272032,0.200012759172257,0.000119684319965414 +0.914000000000001,0.559732581835108,-0.292909584768482,0.177927424259505,-6.47241340523407e-05,-4.64661768784235e-05,0.200012962392026,3.36863592576009e-05,-3.36465473538272e-05,0.000109564432179687,0.200012978261795,0.000119462235655134 +0.916000000000001,0.559732452454213,-0.292909677768129,0.178327450403418,-6.46568872331165e-05,-4.65327045090502e-05,0.200013181554145,3.35606681334255e-05,-3.28807155114408e-05,0.000109596826405878,0.200013197417613,0.000119243130856022 +0.918000000000001,0.55973232320756,-0.2929097708993,0.178727476985721,-6.4589891379807e-05,-4.65976997404693e-05,0.200013400779332,3.34353933428843e-05,-3.21141585546414e-05,0.000109627511929444,0.200013416636268,0.000119027039278924 +0.920000000000001,0.559732194094647,-0.292909864158928,0.179127504006536,-6.4523145659745e-05,-4.66611611432688e-05,0.200013620064193,3.33105557026591e-05,-3.13468695445351e-05,0.000109656513036516,0.200013635914364,0.000118814015178301 +0.922000000000001,0.559732065114977,-0.292909957543944,0.179527531465978,-6.44566491569964e-05,-4.67230872186474e-05,0.200013839405384,3.31861829683255e-05,-3.0578848481122e-05,0.000109683814114581,0.200013855248554,0.000118604080002167 +0.924000000000001,0.559731936268051,-0.292910051051277,0.179927559364157,-6.43904009278717e-05,-4.67834765371932e-05,0.20001405879945,3.30622473843078e-05,-2.98101404672124e-05,0.000109709364856658,0.200014074635379,0.000118397218776572 +0.926000000000001,0.559731807553373,-0.292910144677851,0.180327587701176,-6.43244001674592e-05,-4.68423277805163e-05,0.200014278242844,3.29387420117122e-05,-2.90407906056167e-05,0.000109733184344707,0.200014294071293,0.000118193485398912 +0.928000000000001,0.55973167897045,-0.292910238420588,0.180727616477129,-6.42586459598248e-05,-4.68996396996157e-05,0.200014497732187,3.28156737894325e-05,-2.82708023657818e-05,0.000109755295130132,0.200014513552914,0.000117992929965154 +0.930000000000001,0.559731550518789,-0.292910332276409,0.181127645692105,-6.41931374723014e-05,-4.69554109899794e-05,0.200014717264024,3.2693021900787e-05,-2.75001757477078e-05,0.00010977567119208,0.200014733076784,0.000117795548866805 +0.932000000000001,0.5597314221979,-0.292910426242232,0.181527675346185,-6.41278738722217e-05,-4.70096404026065e-05,0.200014936834872,3.25708487958209e-05,-2.6728952384758e-05,0.000109794295183319,0.200014952639417,0.000117601378995608 +0.934000000000001,0.559731294007294,-0.292910520314971,0.181927705439444,-6.40628540771181e-05,-4.70623267995185e-05,0.200015156441205,3.24491336578525e-05,-2.59571600325081e-05,0.000109811165369122,0.200015172237287,0.000117410444475026 +0.936000000000001,0.559731165946484,-0.292910614491539,0.18232773597195,-6.39980773375903e-05,-4.71134690427366e-05,0.200015376079533,3.23277793423671e-05,-2.51848125687459e-05,0.000109826304300897,0.200015391866901,0.000117222767488764 +0.938000000000001,0.559731038014984,-0.292910708768847,0.182727766943762,-6.39335429597487e-05,-4.71630660497934e-05,0.200015595746422,3.22068621771976e-05,-2.44119308101531e-05,0.000109839668610556,0.200015611524823,0.00011703835754853 +0.940000000000001,0.559730910212312,-0.292910803143803,0.183127798354935,-6.38692498888815e-05,-4.72111167659772e-05,0.200015815438208,3.20864307346014e-05,-2.36385355734114e-05,0.000109851260032823,0.200015831207387,0.000116857257935229 +0.942000000000001,0.559730782537985,-0.292910897613314,0.183527830205515,-6.38051972368103e-05,-4.72576201920871e-05,0.200016035151462,3.19664086867455e-05,-2.28646719613312e-05,0.000109861101119102,0.200016050911163,0.000116679501401612 +0.944000000000001,0.559730654991523,-0.292910992174284,0.183927862495541,-6.37413842541345e-05,-4.73025754538225e-05,0.200016254882612,3.18468168503116e-05,-2.20903365044655e-05,0.000109869155440201,0.200016270632576,0.000116505081552355 +0.946000000000001,0.559730527572448,-0.292911086823616,0.184327895225045,-6.3677809969409e-05,-4.73459815381049e-05,0.200016474628084,3.17276621641937e-05,-2.13155465500492e-05,0.000109875436873907,0.20001649036805,0.000116334039297896 +0.948000000000001,0.559730400280283,-0.29291118155821,0.184727928394053,-6.36144736054777e-05,-4.73878376400227e-05,0.20001669438436,3.16088960561345e-05,-2.05403714870211e-05,0.000109879935011881,0.200016710114067,0.000116166386226513 +0.950000000000001,0.559730273114553,-0.292911276374967,0.185127962002583,-6.35513743851845e-05,-4.7428143024053e-05,0.200016914147824,3.14905948539667e-05,-1.97647974375936e-05,0.000109882634241609,0.200016929867009,0.000116002146919275 +0.952000000000001,0.559730146074786,-0.292911371270782,0.185527996050645,-6.34885112260619e-05,-4.74668968297731e-05,0.200017133914897,3.1372730802115e-05,-1.89888521573422e-05,0.000109883543236711,0.200017149623294,0.00011584134762031 +0.954000000000001,0.559730019160509,-0.292911466242554,0.185928030538242,-6.3425883461976e-05,-4.75040984326824e-05,0.200017353681997,3.12552345116401e-05,-1.82125738101835e-05,0.00010988263944578,0.200017369379339,0.000115683974606426 +0.956000000000001,0.559729892371252,-0.292911561287176,0.186328065465373,-6.33634902880153e-05,-4.75397471250138e-05,0.200017573445454,3.11382031270568e-05,-1.74359658655643e-05,0.000109879917664646,0.200017589131474,0.000115530069270456 +0.958000000000001,0.559729765706547,-0.292911656401542,0.186728100832024,-6.33013306494678e-05,-4.75738422961447e-05,0.200017793201668,3.10216158316834e-05,-1.66590699568481e-05,0.00010987538830165,0.200017808876095,0.000115379661184604 +0.960000000000001,0.559729639165929,-0.292911751582545,0.187128136638179,-6.32394038246886e-05,-4.76063834048412e-05,0.200018012947008,3.09054101754746e-05,-1.58819034312696e-05,0.000109869034009558,0.200018028609571,0.000115232737834818 +0.962000000000001,0.559729512748932,-0.292911846827076,0.187528172883812,-6.31777090087659e-05,-4.76373699098697e-05,0.200018232677804,3.07896139140062e-05,-1.51045009832984e-05,0.000109860853053645,0.200018248328231,0.000115089327518248 +0.964000000000001,0.559729386455093,-0.292911942132025,0.187928209568891,-6.31162453690325e-05,-4.76668014087744e-05,0.20001845239042,3.06742339861721e-05,-1.43268764907223e-05,0.000109850850638082,0.200018468028437,0.000114949455877482 +0.966000000000001,0.559729260283951,-0.292912037494282,0.188328246693374,-6.30550120728212e-05,-4.76946774158326e-05,0.200018672081206,3.05592981475477e-05,-1.35490403618821e-05,0.000109839018089253,0.200018687706539,0.000114813139896136 +0.968000000000001,0.559729134235045,-0.292912132910735,0.188728284257215,-6.29940081764424e-05,-4.77209975702219e-05,0.200018891746492,3.04447855814516e-05,-1.27710411690351e-05,0.000109825318977963,0.200018907358864,0.000114680360787072 +0.970000000000001,0.559729008307918,-0.292912228378272,0.18912832226036,-6.29332329304954e-05,-4.77457615805088e-05,0.200019111382482,3.03306685323079e-05,-1.1992910137204e-05,0.000109809753304213,0.200019126981615,0.000114551129492065 +0.972000000000001,0.559728882502113,-0.292912323893781,0.189528360702745,-6.28726855023131e-05,-4.77689692107707e-05,0.200019330985505,3.02169747556924e-05,-1.12146576747296e-05,0.000109792355762472,0.200019346571121,0.000114425501939126 +0.974000000000001,0.559728756817176,-0.292912419454149,0.189928399584302,-6.28123650314726e-05,-4.77906202112077e-05,0.200019550551905,3.01036764960294e-05,-1.04362941899527e-05,0.000109773100331889,0.200019566123724,0.000114303460715202 +0.976000000000001,0.559728631252653,-0.292912515056262,0.190328438904953,-6.2752270796329e-05,-4.78107143875306e-05,0.200019770077907,2.9990766814425e-05,-9.65787172457765e-06,0.000109751971399952,0.200019785635648,0.000114185006925346 +0.978000000000001,0.559728505808093,-0.292912610697006,0.190728478664614,-6.26924019642149e-05,-4.7829251698106e-05,0.200019989559791,2.98783012220305e-05,-8.87941109528611e-06,0.000109728965497213,0.200020005103173,0.000114070165663078 +0.980000000000001,0.559728380483045,-0.292912706373269,0.191128518863192,-6.26327575914409e-05,-4.78462320319117e-05,0.200020208993769,2.97662450243763e-05,-8.10092271041895e-06,0.000109704068745886,0.20002022452251,0.000113958926771945 +0.982000000000001,0.559728255277062,-0.292912802081934,0.191528559500589,-6.25733369841174e-05,-4.78616553889477e-05,0.200020428376066,2.96545635269929e-05,-7.32246555057436e-06,0.000109677295023758,0.200020443889882,0.000113851309537678 +0.984000000000001,0.559728130189697,-0.29291289781989,0.191928600576696,-6.25141393373329e-05,-4.7875521894114e-05,0.200020647702949,2.95432914243498e-05,-6.54403614630538e-06,0.000109648623514147,0.200020663201556,0.000113747312565244 +0.986000000000001,0.559728005220505,-0.292912993584022,0.1923286420914,-6.245516381842e-05,-4.78878315335329e-05,0.20002086697056,2.94324425942349e-05,-5.76563796705897e-06,0.00010961805248233,0.200020882453674,0.000113646947553592 +0.988000000000001,0.559727880369042,-0.292913089371216,0.192728684044579,-6.2396409566956e-05,-4.78985844459822e-05,0.200021086175159,2.93219892810725e-05,-4.98735427956198e-06,0.000109585604479712,0.200021101642493,0.000113550242039782 +0.990000000000001,0.559727755634867,-0.29291318517836,0.193128726436101,-6.23378758612957e-05,-4.79077809506511e-05,0.200021305312978,2.92119106681809e-05,-4.20919896160221e-06,0.000109551241342376,0.200021320764247,0.000113457161785582 +0.992000000000001,0.559727631017539,-0.29291328100234,0.193528769265831,-6.22795619242832e-05,-4.79154212418286e-05,0.200021524380124,2.91022483889236e-05,-3.4311546659449e-06,0.000109514923171683,0.200021539815041,0.00011336768534698 +0.994000000000001,0.559727506516619,-0.292913376840045,0.193928812533622,-6.22214668677401e-05,-4.79215055693149e-05,0.20002174337267,2.89929885655127e-05,-2.65327690374128e-06,0.000109476691600996,0.200021758790948,0.00011328185763037 +0.996000000000001,0.559727382131671,-0.292913472688362,0.194328856239321,-6.21635899700212e-05,-4.79260343494436e-05,0.200021962286891,2.88841034419423e-05,-1.87560383923987e-06,0.000109436572304222,0.20002197768824,0.000113199702645828 +0.998000000000001,0.559727257862259,-0.292913568544182,0.194728900382769,-6.21059304539723e-05,-4.79290079846719e-05,0.20002218111896,2.87756138357555e-05,-1.09815975790528e-06,0.000109394486177975,0.200022196503094,0.000113121154134059 +1,0.559727133707949,-0.292913664404394,0.195128944963797,-6.20484875146782e-05,-4.79304269884752e-05,0.200022399864835,6.47104314581583e-05,1.17001859593062e-05,-0.0248962396563058,0.200022415231465,0.0248963265032917 +1.002,0.559727009668309,-0.29291376026589,0.195528989982229,-6.18470887281397e-05,-4.78822072408347e-05,0.199922596160334,0.000208561473647326,6.05797356726379e-05,-0.124918854036565,0.199922611460676,0.124919042830152 +1.004,0.559726886319594,-0.292913855933223,0.195928635348438,-6.12142416200889e-05,-4.76881080457847e-05,0.199522724448689,0.000459439777888981,0.00014546347806843,-0.299958929307967,0.199522739538045,0.299959316434937 +1.006,0.559726764811343,-0.292913951018322,0.196327080880023,-6.00093296165837e-05,-4.73003533285609e-05,0.198722760443103,0.000743686244530916,0.000241945054268999,-0.500005546889836,0.198722775133022,0.500006158489317 +1.008,0.559726646282276,-0.292914045134637,0.196723526390211,-5.82394966419652e-05,-4.67203278287087e-05,0.19752270226113,0.00102349224928577,0.000337419873291944,-0.700052949590204,0.197522716372489,0.700053779090221 +1.01,0.559726531853356,-0.292914137899634,0.197117171689068,-5.59153606194406e-05,-4.59506738353932e-05,0.195922548644742,0.00129711919677477,0.00043125516352438,-0.900100815097448,0.195922562012248,0.900101853035709 +1.012,0.559726422620833,-0.292914228937332,0.19750721658479,-5.30510198548661e-05,-4.49953071746112e-05,0.19392229900074,0.00156282526503348,0.000522810704450815,-1.10014880104481,0.193922311477356,1.10015003531072 +1.014,0.559726319649277,-0.292914317880862,0.197892860885071,-4.96640595593067e-05,-4.38594310175899e-05,0.191521953440562,0.00181886569694533,0.000611439794628854,-1.30019654553948,0.191521964901829,1.30019796152887 +1.016,0.559726223964595,-0.292914404375056,0.198273304398552,-4.57755570670848e-05,-4.25495479960957e-05,0.188721512818582,0.00206349316800302,0.000696490178031526,-1.5002436680768,0.188721523166807,1.50024524885338 +1.018,0.559726136547048,-0.292914488079054,0.198647746936345,-4.14100868872946e-05,-4.10734703054638e-05,0.185520978768255,0.002294958015292,0.000777305032839679,-1.70028977063662,0.185520987936559,1.70029149711657 +1.02,0.559726058324248,-0.292914568668937,0.199015388313625,-3.65957250059168e-05,-3.9440327864737e-05,0.181920353736035,0.00251150856361848,0.000853224046970524,-1.90033443890278,0.181920361692227,1.90033629006723 +1.022,0.559725990164148,-0.292914645840366,0.199375428351289,-3.13640526328207e-05,-3.76605741175817e-05,0.177919641012644,0.0027113915071486,0.000923584472789506,-2.1003772436648,0.177919647762946,2.10037919680164 +1.024,0.559725932868037,-0.292914719311234,0.199727066877676,-2.57501589773223e-05,-3.5745989973579e-05,0.173518844761376,0.00289285265187011,0.000987722077738781,-2.30041774234613,0.173518850353986,2.30041977332231 +1.026,0.559725887163512,-0.292914788824326,0.200069503730335,-1.97926420253402e-05,-3.37096858066266e-05,0.16871797004326,0.00305413732498704,0.0010449723482353,-2.50045548068518,0.168717974571798,2.5004575642491 +1.028,0.559725853697469,-0.292914854149977,0.200401938757849,-1.35336096773741e-05,-3.15661005806378e-05,0.163517022838636,0.00319349088839793,0.0010946715374438,-2.70048999475615,0.16351702644553,2.7004921048705 +1.03,0.559725833029074,-0.292914915088728,0.200723571821689,-7.01867847174852e-06,-2.93309996568513e-05,0.157916010064235,0.00330915968238531,0.00113615756733298,-2.90052081296579,0.15791601294415,2.90052292317085 +1.032,0.559725825622755,-0.292914971473976,0.201033602798106,-2.96970947832875e-07,-2.70214703113058e-05,0.151914939586772,0.00339939158766622,0.00116877119787917,-3.10054745819577,0.151914941990249,3.10054954200276 +1.034,0.55972583184119,-0.292915023174609,0.201331231580036,6.57888787891636e-06,-2.46559148653347e-05,0.145513820231452,0.00346243698989834,0.00119185697075585,-3.30056945031797,0.145513822469026,3.30057148163242 +1.036,0.559725851938307,-0.292915070097635,0.201615658079031,1.35527770117605e-05,-2.22540424282824e-05,0.1387126617855,0.00349654961928624,0.00120476418424831,-3.50058630869085,0.138712664232718,3.50058826226534 +1.038,0.559725886052298,-0.292915112190779,0.201886082227178,2.05650863560613e-05,-1.98368581283414e-05,0.131511474996689,0.00349998735549306,0.00120684794102654,-3.70059755486033,0.13151147810069,3.70059940677611 +1.04,0.559725934198652,-0.292915149445068,0.202141703979018,2.75527264337327e-05,-1.74266506641762e-05,0.123910271566059,0.00347101347664135,0.0011974700987738,-3.90060271541342,0.123910275854811,3.90060444359073 +1.042,0.559725996263204,-0.292915181897382,0.202381723313443,3.44491402626268e-05,-1.50469777332462e-05,0.115909064135035,0.00340789761688053,0.00117600024163167,-4.10060132499494,0.115909070230998,4.10060290973083 +1.044,0.559726071995213,-0.292915209632978,0.202605340235558,4.11843169012549e-05,-1.27226496976496e-05,0.107507866266079,0.00329489877742839,0.00113709665294781,-4.2801538298609,0.107507874907371,4.28015524912587 +1.046,0.559726161000471,-0.29291523278798,0.202811754778507,4.76287353723403e-05,-1.0498591121455e-05,0.0987884488155912,0.00307491947182381,0.00106157932097672,-4.34575395964232,0.0987884608550388,4.34575517716166 +1.048,0.559726262510155,-0.292915251627343,0.203000494030821,5.34839947885501e-05,-8.47633241374268e-06,0.09012485042751,0.0027336183941462,0.00094485897925156,-4.23827163429507,0.0901248666959733,4.2382726211864 +1.05,0.55972637493645,-0.29291526669331,0.203172254180217,5.85632089489251e-05,-6.71915520444876e-06,0.0818353622784109,0.00235898493794462,0.000816859906105359,-4.04471370012322,0.0818353835088176,4.04471447052008 +1.052,0.55972649676299,-0.292915278503964,0.203327835479934,6.29199345403286e-05,-5.20889278932124e-06,0.0739459956270171,0.00201515260034313,0.000699331623860154,-3.84465549212696,0.073946022579457,3.84465608384504 +1.054,0.559726626616189,-0.292915287528881,0.203468038162725,6.66238193502977e-05,-3.92182870900814e-06,0.0664567403099031,0.00170527032078426,0.00059338974012224,-3.6446023173979,0.0664567738212738,3.64460276464259 +1.056,0.559726763258268,-0.292915294191279,0.203593662441174,6.97410158234656e-05,-2.83533382883227e-06,0.0593675863574255,0.00142758697224687,0.00049848331365454,-3.4445540629778,0.0593676273886264,3.44455439487709 +1.058,0.559726905580252,-0.292915298870217,0.203705508508155,7.23341672392851e-05,-1.92789545438998e-06,0.0526785240579918,0.00118034510637743,0.000414047972990827,-3.24451058548481,0.0526785737551517,3.2445108266075 +1.06,0.559727052594937,-0.29291530190286,0.203804376537406,7.44623962489754e-05,-1.17914193686896e-06,0.0463895440154862,0.000961782119224263,0.000339507880142697,-3.04447171429848,0.0463896037922676,3.04447188514757 +1.062,0.559727203429837,-0.292915303586784,0.203891066684217,7.61812957161822e-05,-5.69863933819192e-07,0.0405006372007979,0.000770131187988187,0.000274277423689683,-2.84443725456946,0.0405007088528734,2.84443737204967 +1.064,0.55972735732012,-0.292915304182316,0.203966379086209,7.75429210009281e-05,-8.20322421102303e-08,0.0350117949972084,0.000398973742932185,0.00021421258517007,-2.64440716362356,0.0350118808668982,2.64440720239729 +1.066,0.559727513601521,-0.292915303914913,0.204031113864205,7.77771906879109e-05,2.86986406861089e-07,0.0299230085463037,-0.00115535531142186,0.000141854781393613,-2.44438170280032,0.0299231096284446,2.4443819799601 +1.068,0.559727668428882,-0.292915303034371,0.204086071120394,7.29214997552407e-05,4.85386883464222e-07,0.0252342681860071,-0.00401650483705662,5.56669155216126e-05,-2.24435995451258,0.0252343735540246,2.24436354916703 +1.07,0.55972780528752,-0.292915301973366,0.20413205093695,6.17111713396845e-05,5.0965406894754e-07,0.0209455687282534,-0.00626615419968556,-1.15940174127971e-05,-2.04434003984142,0.0209456596429523,2.04434964311923 +1.072,0.559727915273568,-0.292915300995754,0.204169853395307,4.78568829564984e-05,4.39010813813034e-07,0.0170569080266414,-0.00686163004193217,-4.41210054602514e-05,-1.84432192848992,0.0170569751686306,1.84433469300511 +1.074,0.559727996715052,-0.292915300217322,0.204200278569056,3.42646511719557e-05,3.33170047106534e-07,0.0135682810142937,-0.00631623352231879,-5.29287308426162e-05,-1.64430670730048,0.0135683242834244,1.64431883930115 +1.076,0.559728052332172,-0.292915299663074,0.204224126519365,2.25919488672232e-05,2.27295890442569e-07,0.0104796811974395,-0.00517427409252313,-4.84691488333854e-05,-1.44429475571785,0.0104797055515784,1.44430402507772 +1.078,0.559728087082847,-0.292915299308139,0.204242197293846,1.35675548018632e-05,1.39293451772993e-07,0.00779110199142229,-0.00383122115282796,-3.79535396166641e-05,-1.24428593613682,0.00779111380604149,1.24429183496633 +1.08,0.559728106602392,-0.2929152991059,0.20425529092733,7.26706425591139e-06,7.54817319759126e-08,0.00550253745289219,-0.00255506633906055,-2.60802768270451e-05,-1.04427983641311,0.00550254225212326,1.04428296250737 +1.082,0.559728116151104,-0.292915299006212,0.204264207443657,3.34728944562101e-06,3.4972344464812e-08,0.00361398264576984,-0.00150598635645371,-1.56192385414311e-05,-0.844275922229352,0.00361398419607713,0.844277265532532 +1.084,0.559728119991549,-0.292915298966011,0.204269746857913,1.24311883009653e-06,1.30047778101883e-08,0.00212543376397478,-0.000754516962797601,-7.88577883548135e-06,-0.644273639664044,0.00212543412755078,0.644274081524305 +1.086,0.55972812112358,-0.292915298954193,0.204272709178713,3.29221594430606e-07,3.42922912288656e-09,0.00103688808711366,-0.000298867597336993,-3.12933359780664e-06,-0.444272481940274,0.00103688813938479,0.44427258247725 +1.088,0.559728121308436,-0.292915298952294,0.204273894410262,4.764844074856e-08,4.87443418961675e-10,0.000348343836213682,-8.15881945337436e-05,-8.50951253905661e-07,-0.233204047222351,0.000348343839472835,0.233204061496026 +1.09,0.559728121314173,-0.292915298952243,0.204274102554058,2.8688162956314e-09,2.54241072639161e-11,0.000104071898224256,-2.23898122264643e-05,-2.31009655848879e-07,-0.122135968994713,0.0001040718982638,0.122135971047168 diff --git a/data/ik_speedl_q.csv b/data/ik_speedl_q.csv new file mode 100644 index 00000000..36b681d9 --- /dev/null +++ b/data/ik_speedl_q.csv @@ -0,0 +1,6501 @@ +t,q1,q2,q3,q4,q5,q6,q7 +0,0.247857696122336,1.00149523173264,1.56993866918612,1.56900466115402,-1.57075478774546,-0.000548174473313651,0.000367117860668517 +0.002,0.247857696122336,1.00149523173264,1.56993866918612,1.56900466115402,-1.57075478774546,-0.000548174473313656,0.000367117860668521 +0.004,0.247857696122336,1.00149523173264,1.56993866918612,1.56900466115402,-1.57075478774546,-0.000548174473313649,0.000367117860668515 +0.006,0.247857696122336,1.00149523173264,1.56993866918612,1.56900466115402,-1.57075478774546,-0.000548174473313649,0.000367117860668515 +0.008,0.247811904686622,1.00156390847262,1.56994764379903,1.56894127397849,-1.57074940181015,-0.000538345884378494,0.000363787222082951 +0.01,0.24772150739533,1.00167957388464,1.5699475823378,1.56883156591022,-1.57074259135903,-0.000539872896441597,0.000357844959947366 +0.012,0.24758902532779,1.00182443531475,1.5699269754379,1.56868772489686,-1.57073562999425,-0.000554533838794175,0.000353263396413192 +0.014,0.247418237119085,1.00198500320122,1.56988023687621,1.56852013752409,-1.57072902151646,-0.000580698810460462,0.000353846146219989 +0.016,0.247214112471293,1.00215183923439,1.5698066450035,1.56833785522564,-1.57072331678336,-0.000616573763378565,0.00036191098700145 +0.018,0.246982818519511,1.00231858610418,1.56970922701456,1.56814792224509,-1.57071805274824,-0.000659111342048991,0.000379720519859158 +0.02,0.246731354527423,1.00248130145484,1.56959307618864,1.56795628739423,-1.57071349767165,-0.000706599259776488,0.000407232741546661 +0.022,0.246467327823624,1.00263757289631,1.56946443619849,1.56776750253855,-1.57070957058091,-0.000757220918156836,0.000443792350511136 +0.024,0.246198605351672,1.00278582099326,1.56932972831097,1.56758500576826,-1.57070609471935,-0.00080932064954176,0.000488136264938781 +0.026,0.245932862188022,1.00292502623588,1.56919479162058,1.56741188509542,-1.57070367634432,-0.000862640760683947,0.000537448622613455 +0.028,0.245677594736301,1.00305377085699,1.56906510681042,1.56724922723619,-1.57070037046059,-0.000913466697350936,0.00059227733268748 +0.03,0.245439381718661,1.00317075898173,1.56894465524869,1.56709884123451,-1.57069674875084,-0.000961747115555121,0.000649780888879961 +0.032,0.245223870685102,1.00327466492009,1.56883666893109,1.56696204564714,-1.57069266640493,-0.00100667123867846,0.000708145579905144 +0.034,0.245035618583793,1.00336415141199,1.5687435042762,1.56683991365766,-1.57068792601654,-0.00104738019921285,0.000765876888910216 +0.036,0.244877824432787,1.00343839396177,1.56866645680017,1.5667343430376,-1.57068400343259,-0.00108549557553735,0.000819380865370048 +0.038,0.244753019343494,1.00349584665899,1.56860703795831,1.56664426182973,-1.57067732086571,-0.00111542574832759,0.00087239704184226 +0.04,0.244662197386546,1.00353564927684,1.56856511251675,1.5665706770431,-1.57066936048027,-0.00113871148245777,0.000922092740414021 +0.042,0.244605317570054,1.00355741459847,1.5685405209568,1.56651391964022,-1.57066015995394,-0.00115521076671559,0.000967679090177388 +0.044,0.244581107344348,1.00356183518709,1.5685323535189,1.5664754778568,-1.57065215357216,-0.00116825219548464,0.00100523452244307 +0.046,0.244588265746671,1.00354862872997,1.56854071951123,1.56645223893125,-1.57064003267236,-0.00117008827883984,0.00104187433940202 +0.048,0.244624209921822,1.00351852486688,1.56856378470119,1.56644424209998,-1.5706261786627,-0.00116382749616695,0.0010744894595249 +0.05,0.244685856894845,1.0034727911175,1.56860014582299,1.56645054629048,-1.57061075149634,-0.00114998224864408,0.00110289473690152 +0.052,0.2447697289471,1.00341303774127,1.56864827064643,1.56646976072557,-1.57059369401926,-0.0011287081546356,0.00112741580244643 +0.054,0.244872078133358,1.00334113083041,1.5687064548734,1.56650017616717,-1.57057492903267,-0.00110020017508687,0.0011485506080391 +0.056,0.244989004223224,1.00325911882878,1.56877285772747,1.5665398352582,-1.5705543814492,-0.00106475013670204,0.00116691012238898 +0.058,0.245116562143125,1.00316916111183,1.56884555300127,1.56658659997861,-1.57053198058141,-0.00102274318292347,0.00118319547578186 +0.06,0.245250858606914,1.00307345870618,1.56892258397322,1.56663822192681,-1.57050765977451,-0.000974641734204659,0.00119817852491683 +0.062,0.245388138172787,1.00297418862619,1.569002018023,1.56669241269434,-1.57048135563156,-0.000920966013331113,0.00121268183653064 +0.064,0.24552485892088,1.00287344333488,1.56908199824743,1.56674691093704,-1.57045300717504,-0.000862273514434682,0.0012275581764623 +0.066,0.245657757780747,1.00277317666287,1.56916079008515,1.56679954341928,-1.57042255501551,-0.000799138579781302,0.00124367013887435 +0.068,0.245783905383371,1.00267515728619,1.56923682154187,1.56684827815019,-1.57038994055536,-0.000732132910194827,0.0012618705623574 +0.07,0.245900750222908,1.00258093059041,1.56930871611592,1.56689126850289,-1.57035510524669,-0.00066180763343445,0.00128298429640802 +0.072,0.246006151910032,1.00249178944992,1.56937531794876,1.5669268878452,-1.5703179899177,-0.000588677382264834,0.00130779177862958 +0.074,0.246098403381696,1.00240875414286,1.56943570906778,1.56695375470288,-1.57027853417868,-0.000513206681154057,0.00133701477845158 +0.076,0.246176242088177,1.00233256132362,1.5694892188592,1.56697074883315,-1.57023667591547,-0.000435798810018403,0.00137130456364735 +0.078,0.246238850386445,1.00226366170086,1.56953542612194,1.56697701882706,-1.57019235087551,-0.000356787206364025,0.00141123265365074 +0.08,0.246285845605575,1.00220222583121,1.5695741542213,1.56697198200825,-1.57014549234906,-0.000276429382346042,0.00145728423892086 +0.082,0.246317260492051,1.00214815724372,1.56960545999505,1.56695531747842,-1.57009603094621,-0.000194903267906502,0.00150985426800669 +0.084,0.246333514929997,1.00210111205202,1.56962961711392,1.56692695341149,-1.57004389482032,-0.00011230635389951,0.00156924563375597 +0.086,0.246335378446046,1.00206052773562,1.56964709249744,1.56688705816736,-1.56998902441702,-2.86779321771805e-05,0.00163564935008706 +0.088,0.24632392682474,1.00202565768313,1.56965852092364,1.56683602519332,-1.56993137939424,5.59876370731752e-05,0.00170913720993526 +0.09,0.246300495197687,1.00199560731802,1.56966467769872,1.56677444903692,-1.56987093610987,0.000141740677845643,0.00178967026835155 +0.092,0.246266628423082,1.00196937045758,1.56966644820633,1.56670309696447,-1.56980768473424,0.000228675857382334,0.00187711055036019 +0.094,0.246224029805277,1.00194586521542,1.56966479571617,1.56662287801514,-1.56974162684099,0.000316929882465933,0.00197123403245377 +0.096,0.246174509285999,1.00192396884489,1.56966072897296,1.56653481073945,-1.56967277348864,0.000406677317757477,0.00207174433511579 +0.098,0.246119932269814,1.00190255092251,1.56965527085324,1.56643999064931,-1.56960114371514,0.000498124914274824,0.0021782867327119 +0.1,0.246062170183338,1.00188050427056,1.56964942914505,1.56633955832509,-1.56952676332226,0.000591504800687844,0.00229046216255159 +0.102,0.246003054048444,1.00185677306274,1.569644169968,1.56623466862114,-1.56944966408682,0.000687067163331721,0.00240784070344427 +0.104,0.245944331592897,1.00183037760349,1.56964039489031,1.56612646232265,-1.56936988280077,0.000785072090074012,0.00252997477148186 +0.106,0.245887629582462,1.0018004353779,1.56963892105064,1.56601603942805,-1.56928746114746,0.000885782155918565,0.0026564107510513 +0.108,0.2458344207539,1.00176617808356,1.56964046606828,1.56590443659267,-1.56920244465456,0.000989453927762885,0.00278670057056132 +0.11,0.245785997665573,1.00172696445377,1.56964563553176,1.56579260609393,-1.56911488317206,0.00109633162545229,0.00292041062236002 +0.112,0.245743451449951,1.00168228886985,1.569654915959,1.56568140042121,-1.56902482957418,0.00120663911043391,0.00305713115362166 +0.114,0.245707658484602,1.00163178578643,1.56966866946652,1.56557155783446,-1.56893234075662,0.00132057545566874,0.00319648202768887 +0.116,0.245679271533655,1.00157523024017,1.56968713425699,1.56546369470442,-1.56883747601554,0.00143830798820981,0.00333811963517159 +0.118,0.245656851163602,1.00151665199903,1.56970792381461,1.56536810633935,-1.5687562206172,0.00153680856756508,0.00345913587014509 +0.12,0.245643852286704,1.00145144975137,1.56973695765955,1.56526801492907,-1.56865583320845,0.0016632080999936,0.00360473119016735 +0.122,0.245639632832154,1.00137895060353,1.56976982842692,1.56516881873323,-1.56855194942467,0.00179693014269968,0.00375461763893215 +0.124,0.245643633828511,1.00129962261355,1.56980632318388,1.5650718352466,-1.56844617144649,0.00193450701110679,0.00390594950786536 +0.126,0.245655213249581,1.00121415182518,1.56984663636674,1.56497750175463,-1.56833869498953,0.00207547044144343,0.00405823449880538 +0.128,0.245671617970465,1.00112769918955,1.56988814830222,1.56489653989747,-1.56824668930991,0.0021948708023956,0.00418697878856149 +0.13,0.245695589215337,1.00103598882469,1.56993703978361,1.56481040330347,-1.56813487714656,0.00234335761815068,0.00434105005870603 +0.132,0.245725604412575,1.00093883135834,1.56998835388356,1.56472446356736,-1.56802004045543,0.00249867970588795,0.00449880705339437 +0.134,0.245760413599958,1.00083712488306,1.57004160792082,1.56463970691648,-1.56790387126518,0.00265700026187375,0.00465738350728676 +0.136,0.245796710045289,1.00073650566098,1.5700939869251,1.56456729946707,-1.56780444985045,0.00279165077388608,0.00479101064633359 +0.138,0.245837108289246,1.0006326958491,1.57015192462343,1.56448769603323,-1.56768491525729,0.0029554317585977,0.00495085006024752 +0.14,0.245879868941967,1.00052561263554,1.57021028456584,1.56440641524117,-1.56756277323469,0.00312504831101233,0.00511439733385166 +0.142,0.245923662119574,1.00041622978533,1.57026861813475,1.56432443051297,-1.56743976764759,0.00329646782725738,0.00527874772182288 +0.144,0.245967352504961,1.00030556460694,1.57032696084056,1.5642418180743,-1.56731606639615,0.00346903758534724,0.00544361902287641 +0.146,0.246009982005979,1.00019450839548,1.57038524715833,1.56415842055483,-1.56719167011824,0.00364263961296747,0.00560907054650253 +0.148,0.246050761012133,1.00008380001766,1.57044326750117,1.56407399290392,-1.567066570205,0.00381720144260488,0.00577520938974389 +0.15,0.246089060565096,0.999974032794925,1.57050070652166,1.5639882488648,-1.56694077337118,0.00399263123145856,0.00594215070474485 +0.152,0.246124395165318,0.999865671769965,1.57055720187312,1.5639009014749,-1.56681429895417,0.00416880797182481,0.00611001424705575 +0.154,0.246156411051291,0.999759072361317,1.57061239087817,1.56381168466878,-1.56668718115906,0.00434559722511586,0.00627891363751129 +0.156,0.246184868926604,0.999654496842097,1.57066595379476,1.56372038037367,-1.56655946197026,0.00452285168949658,0.00644895253631737 +0.158,0.246209635194089,0.999552126722857,1.57071763604757,1.56362682622329,-1.56643119323645,0.00470042662105475,0.00662021275622685 +0.16,0.246230668639939,0.999452071739322,1.57076726588224,1.56353092893008,-1.56630243021382,0.00487817794358657,0.00679275207147164 +0.162,0.246248015356173,0.99935437598423,1.5708147538321,1.56343265970584,-1.56617323462292,0.00505597465299289,0.00696659569140034 +0.164,0.246261797515119,0.999259022949171,1.57086009310566,1.56333205843307,-1.56604366865917,0.00523369331803314,0.00714173862918634 +0.166,0.246269846352614,0.999170875225731,1.57090045200011,1.56324119150659,-1.56593293962788,0.00538334466006232,0.00729092219945146 +0.168,0.246276506791719,0.999084222054758,1.57094287180425,1.56313930820583,-1.56580166406122,0.00556148765265749,0.00746883409856237 +0.17,0.24628129474244,0.998997900288582,1.57098242005,1.56303287491785,-1.56566860089658,0.00574321993424586,0.00765124162206689 +0.172,0.246284124775897,0.998911930336418,1.57101932560852,1.56292358701563,-1.56553563409328,0.00592431608736371,0.00783484894980413 +0.174,0.246282683067344,0.998831372723296,1.57105155283459,1.5628242349179,-1.56542208646276,0.00607635160776681,0.007991898123335 +0.176,0.246281281991424,0.998750693684834,1.57108674839543,1.56271443174977,-1.56528849272398,0.00625606696792865,0.00817697752212602 +0.178,0.246279412023788,0.998668861426298,1.57112040952021,1.56260092996971,-1.5651535210841,0.00643877097419221,0.00836577593843492 +0.18,0.246276997882691,0.998585982204298,1.57115298159161,1.56248559264914,-1.56501897661942,0.00662042920108685,0.00855495120776375 +0.182,0.246274136742099,0.99850224317632,1.57118535314059,1.56236928746202,-1.56488497424974,0.00680066511916232,0.00874395767057052 +0.184,0.246271041131227,0.998417752805755,1.57121822733244,1.56225259781389,-1.56475143788235,0.00697968016984839,0.00893262652775636 +0.186,0.246268010222303,0.998332531357159,1.57125205699942,1.56213595072313,-1.56461828238173,0.00715773837861069,0.0091208499297007 +0.188,0.246265391882728,0.998246534738063,1.57128708739061,1.56201966620805,-1.5644854319364,0.00733507416652962,0.00930855355679646 +0.19,0.246263552485942,0.998159685194525,1.57132340742731,1.56190397796077,-1.56435282757976,0.00751189141881119,0.00949568930628097 +0.192,0.246262842226223,0.998071899724031,1.5713610081622,1.56178906328061,-1.56422041982858,0.0076883576805724,0.00968223758295056 +0.194,0.246263574372749,0.997983111215928,1.57139982123989,1.56167505361265,-1.56408817185528,0.00786461754594086,0.00986819673789796 +0.196,0.24626600410212,0.997893281734488,1.57143975401788,1.56156205299535,-1.56395605209067,0.0080407889458244,0.0100535818625213 +0.198,0.246270321927898,0.997802408030922,1.57148070362864,1.56145013771055,-1.5638240377969,0.00821697524593786,0.0102384143949444 +0.2,0.246276645432247,0.997710521517736,1.57152257120315,1.56133936597971,-1.56369210820413,0.00839325918220364,0.0104227232755972 +0.202,0.246285023482376,0.997617684046795,1.57156526036067,1.56122977134096,-1.56356024873302,0.00856971297514755,0.0106065375886729 +0.204,0.246295436574982,0.997523981904586,1.57160868116149,1.56112136830727,-1.56342844495816,0.00874639090242006,0.0107898903321651 +0.206,0.246307807260253,0.997429518876745,1.5716527432785,1.56101414407468,-1.56329668733599,0.00892333837604421,0.0109728132419003 +0.208,0.24632200461962,0.997334409943531,1.57169735823401,1.56090806431958,-1.56316496558479,0.00910058385518713,0.0111553418918911 +0.21,0.24633785707389,0.997238775568607,1.57174243324961,1.56080306630716,-1.5630332736261,0.00927814770782143,0.0113375111980861 +0.212,0.246355158026012,0.9971427373755,1.5717878752229,1.56069906663949,-1.56290160420968,0.00945603429882315,0.0115193604812742 +0.214,0.246373678828054,0.997046414606282,1.57183358672529,1.56059595661433,-1.56276995390033,0.00963424116564441,0.0117009287087966 +0.216,0.246390667303345,0.996954849549785,1.57187671606716,1.56050579609197,-1.56265746302695,0.00978481847621745,0.0118549598460803 +0.218,0.246410187252295,0.996862550484137,1.57192383279161,1.56040718490411,-1.5625246816092,0.00996450349373995,0.0120363915730201 +0.22,0.246431154637331,0.996768651780677,1.57196980313881,1.56030634115806,-1.56239031855793,0.0101483494281636,0.0122210441494261 +0.222,0.246452867796819,0.996673492108806,1.57201457789064,1.56020461787834,-1.56225622697073,0.0103321055335843,0.0124057349843578 +0.224,0.246474759077935,0.99657753711525,1.57205869186486,1.56010243626273,-1.562122552532,0.0105151941818698,0.0125900707055109 +0.226,0.24649637984271,0.996481191328669,1.57210259201664,1.55999997445242,-1.56198924878269,0.010697643487337,0.0127740094702142 +0.228,0.246517394089869,0.99638476348944,1.57214655088055,1.55989730218073,-1.56185624938375,0.0108795495257714,0.0129575566833881 +0.23,0.246537572112472,0.996288470306081,1.57219067661253,1.55979441232941,-1.5617234978789,0.0110609985845874,0.0131407310555732 +0.232,0.246556771094134,0.996192454181272,1.57223495758785,1.55969125314151,-1.56159094610369,0.0112420493834364,0.0133235696506793 +0.234,0.246574921027903,0.996096804156258,1.5722793025596,1.55958774408879,-1.56145855867209,0.011422745018668,0.0135061221448934 +0.236,0.246592003434958,0.996001575091829,1.57232358552215,1.55948380247066,-1.56132630589926,0.0116031094575189,0.0136884516387412 +0.238,0.246608040120322,0.995906801800139,1.57236767225641,1.55937935147812,-1.56119416717561,0.0117831613155646,0.0138706241584764 +0.24,0.24662307778246,0.995812508148595,1.57241144560153,1.55927433646366,-1.56106212431921,0.0119629101395741,0.0140527076268792 +0.242,0.246637183269131,0.995718711215148,1.57245481249553,1.55916872302019,-1.56093016541432,0.0121423683965404,0.0142347624626517 +0.244,0.246647846274043,0.995630343436182,1.57249503380686,1.55907481026892,-1.5608174306492,0.0122935830882209,0.0143895015379448 +0.246,0.246659595644536,0.995541804776228,1.57253860732339,1.55897115112216,-1.56068444897554,0.0124733980440437,0.0145719453898859 +0.248,0.246671670179163,0.99545213736634,1.5725805256319,1.55886419738571,-1.5605499289084,0.0126568781731565,0.014757869826132 +0.25,0.246683698674095,0.995361577885975,1.57262085851488,1.55875552639607,-1.56041572224229,0.0128398200068733,0.0149440667556938 +0.252,0.246695435920982,0.995270484810778,1.5726602629806,1.55864578944052,-1.5602819699456,0.0130217096289417,0.0151301121445488 +0.254,0.246704122806642,0.99518407107403,1.57269665791236,1.55854774554523,-1.56016777281743,0.013174671665945,0.0152885718992425 +0.256,0.246714198166339,0.995096926742702,1.57273691231826,1.5584401519521,-1.56003359428035,0.0133557317681494,0.0154744170470323 +0.258,0.246724832484013,0.995008208975625,1.5727762554621,1.55832964461965,-1.5598980895478,0.013540084089022,0.0156633557951481 +0.26,0.246735642246966,0.994918207124186,1.57281483534874,1.55821789623977,-1.55976306465635,0.013723630275381,0.0158521510202884 +0.262,0.246746411629773,0.994827296816217,1.57285327365103,1.55810558220126,-1.55962862948164,0.0139059481443235,0.0160403701155041 +0.264,0.246757041561792,0.994735776317677,1.5728920473489,1.557993104271,-1.55949470212472,0.0140871954122817,0.0162279538626771 +0.266,0.246767530593912,0.994643849422265,1.57293142281585,1.55788072043936,-1.55936119251805,0.0142675914179324,0.0164148966342579 +0.268,0.246777946178714,0.994551641416634,1.57297149479064,1.55776859456754,-1.55922802101709,0.0144473250691425,0.0166012170944862 +0.27,0.246788402358048,0.994459222988857,1.57301223351721,1.55765681736914,-1.55909512574619,0.0146265548388112,0.0167869502498914 +0.272,0.246799031209975,0.994366633562373,1.57305353964315,1.55754543712575,-1.55896245506431,0.0148054037437938,0.0169721495064492 +0.274,0.246809966455973,0.994273899254988,1.57309527995738,1.55743447135935,-1.55882997052458,0.0149839737499554,0.0171568762742078 +0.276,0.246821324917498,0.994181044793485,1.57313732050781,1.55732392661392,-1.55869763935245,0.0151623429322562,0.0173411988359381 +0.278,0.246833201009441,0.994088099227345,1.57317953917327,1.55721379944328,-1.55856543785691,0.0153405785119133,0.0175251821834062 +0.28,0.246845658107387,0.993995097359786,1.57322183863175,1.55710408727621,-1.5584333444558,0.0155187315400436,0.017708889273739 +0.282,0.246858731251042,0.993902077913816,1.5732641435251,1.5569947826018,-1.5583013437951,0.0156968477209692,0.0178923739014989 +0.284,0.2468724249353,0.993809080558762,1.57330640290736,1.55688587898638,-1.55816942062456,0.0158749605019583,0.0180756846860266 +0.286,0.246886720247605,0.993716142402925,1.57334858151439,1.55677736259131,-1.55803756449188,0.0160531005207558,0.018258860271677 +0.288,0.246901575348031,0.993623295326734,1.57339065985113,1.55666921727281,-1.55790576404461,0.0162312876997413,0.018441934923026 +0.29,0.246916933908992,0.993530563965602,1.5734326254662,1.55656141643011,-1.55777401200506,0.0164095400945006,0.0186249346526665 +0.292,0.246929997059847,0.993442877136083,1.57347193100792,1.55646644368142,-1.5576614584127,0.0165598546363868,0.0187804655006542 +0.294,0.24694535230774,0.993354627195385,1.57351486133217,1.55636244414296,-1.55752861964338,0.0167391837779399,0.0189636697999715 +0.296,0.246962030507864,0.993264884346377,1.5735564789632,1.55625586715118,-1.55739421060427,0.0169225140596968,0.0191502469060726 +0.298,0.246979467167361,0.99317390460859,1.57359686208546,1.55614821241516,-1.55726009196541,0.0171056015370047,0.0193369702794563 +0.3,0.246997228187238,0.993082067940326,1.57363664870596,1.55604002668731,-1.55712640761898,0.0172879013757942,0.0195234099200469 +0.302,0.247014989375008,0.992989695632879,1.57367637142487,1.55593160045466,-1.55699310700275,0.0174694797062835,0.0197094892950078 +0.304,0.247032527249006,0.992897019437952,1.57371637273722,1.55582310240266,-1.55686011955227,0.0176504700151813,0.0198951813910558 +0.306,0.247049710527689,0.992804188413843,1.57375681629864,1.55571461005089,-1.55672738522706,0.0178309934514291,0.0200804751588416 +0.308,0.247066478704258,0.992711288991192,1.57379773299682,1.55560614161054,-1.55659485288706,0.018011140206175,0.0202653810408532 +0.31,0.247082826560445,0.992618367413237,1.57383906215511,1.55549767183206,-1.55646248488605,0.0181909809881127,0.0204499253198518 +0.312,0.247098781831042,0.992525449597553,1.57388069748853,1.55538915905962,-1.5563302497352,0.0183705632944275,0.0206341512153919 +0.314,0.247114393655876,0.992432555218678,1.57392251427355,1.55528055388067,-1.55619812550817,0.018549925085302,0.0208181083823548 +0.316,0.247129717315626,0.992339706186932,1.57396439535524,1.55517181625476,-1.55606609297427,0.0187290910938851,0.0210018520726564 +0.318,0.247144810309403,0.992246929742679,1.57400623867497,1.55506291448432,-1.55593413949465,0.0189080848980041,0.0211854336869345 +0.32,0.247159723807819,0.992154258147665,1.57404796708498,1.55495383440538,-1.55580225256976,0.0190869228653423,0.0213689025665108 +0.322,0.247174504170282,0.992061725869725,1.57408952398664,1.55484457223669,-1.55567042432193,0.0192656242143825,0.0215522993604483 +0.324,0.247189188556765,0.991969366190001,1.57413087541274,1.55473513932533,-1.55553864569481,0.019444203489781,0.0217356602162313 +0.326,0.24720380923386,0.991877207630644,1.57417200161561,1.5546255523626,-1.55540691138993,0.0196226793570723,0.0219190120472811 +0.328,0.247218390770945,0.99178527141182,1.57421289785148,1.55451583702755,-1.5552752143372,0.0198010660991268,0.0221023780335932 +0.33,0.247232955061337,0.991693569627262,1.57425356634637,1.55440601816301,-1.55514355083692,0.0199793818030728,0.022285773569793 +0.332,0.247247518677111,0.991602104769335,1.57429401827746,1.554296124006,-1.55501191517655,0.0201576396109174,0.0224692119740142 +0.334,0.247262097687763,0.991510869880673,1.57433426718631,1.55418617736766,-1.55488030484438,0.020335855801126,0.022652700370581 +0.336,0.247276704611271,0.99141984970939,1.57437433229902,1.55407620104428,-1.55474871516461,0.0205140410811561,0.0228362452012349 +0.338,0.247288485889278,0.991333924605208,1.57441182202811,1.55397892827137,-1.55463631042234,0.0206641491415923,0.0229923581796318 +0.34,0.24730233162018,0.99124744008828,1.57445281140848,1.55387221877781,-1.554503591405,0.0208432490004864,0.0231763052976637 +0.342,0.247317330228525,0.991159454850748,1.57449244804608,1.55376265331365,-1.55436928306743,0.0210262768390317,0.0233637114158497 +0.344,0.2473329897351,0.991070204173195,1.57453085807978,1.55365181851056,-1.5542352528534,0.0212089796476482,0.023551327845863 +0.346,0.247348954875799,0.990980046140284,1.57456870964161,1.55354032872982,-1.55410165091627,0.0213908306000613,0.0237387031195013 +0.348,0.247364972658969,0.990889281297873,1.57460656419948,1.55342854513319,-1.55396842423621,0.0215719077271346,0.0239257475631932 +0.35,0.24737798679255,0.990803022451903,1.57464240614666,1.55332946508084,-1.55385467268483,0.0217242948693203,0.0240849088964377 +0.352,0.247392859810488,0.990715771846999,1.57468240855738,1.55322098383173,-1.55372083345878,0.0219052164621384,0.0242714672738303 +0.354,0.247408653537037,0.990626696940015,1.57472175331022,1.5531097587679,-1.55358558605295,0.0220896956849562,0.0244610319111874 +0.356,0.247424898511742,0.99053610328134,1.57476049762923,1.55299739705662,-1.5534507627987,0.0222735535516115,0.0246503728888144 +0.358,0.247441288507396,0.990444401068086,1.57479918700858,1.55288450687126,-1.55331648589013,0.0224563220706529,0.0248390761496356 +0.36,0.247457630188854,0.99035193823928,1.5748382405098,1.55277143259962,-1.55318268079928,0.0226381248793708,0.0250271009517529 +0.362,0.247470890419767,0.990263875399458,1.57487553743914,1.55267120651588,-1.55306843322998,0.02279107000872,0.0251869299111194 +0.364,0.247486039045889,0.990174767101435,1.57491706607474,1.55256162337277,-1.5529341629572,0.0229724393527836,0.0253739356956414 +0.366,0.247502167791411,0.990083845677487,1.57495792380725,1.5524493553401,-1.55279854139482,0.0231572655094459,0.0255637643477458 +0.368,0.247518828407177,0.989991478916374,1.57499809639477,1.55233601804044,-1.55266339475654,0.0233413868337332,0.0257532305665675 +0.37,0.247535724049351,0.989898134718705,1.57503807634568,1.55222223033017,-1.55252883897755,0.023524354381916,0.0259419602417235 +0.372,0.247552660027751,0.989804210960959,1.57507824636302,1.55210834884273,-1.55239479383027,0.0237063096373817,0.026129946713855 +0.374,0.247569531345655,0.989710009844664,1.57511880540385,1.55199459523085,-1.55226116992409,0.0238874594494496,0.0263172292706944 +0.376,0.247586300321945,0.989615746604487,1.57515980010196,1.55188110231777,-1.55212788793627,0.0240679815026871,0.0265038645994061 +0.378,0.247602979796496,0.989521568239856,1.57520116607788,1.55176793221458,-1.55199488630832,0.0242480233933383,0.0266899198611408 +0.38,0.247619608956751,0.989427573829984,1.57524277912104,1.55165510512354,-1.55186211383756,0.024427697266889,0.0268754756707129 +0.382,0.247636240277724,0.989333831359891,1.57528448884152,1.55154261011261,-1.55172953274099,0.024607094077668,0.0270606164119802 +0.384,0.247652923053603,0.989240389947119,1.57532615117517,1.55143042504531,-1.5515971109582,0.0247862806217788,0.0272454296664553 +0.386,0.247666688422737,0.989152179995292,1.57536536834823,1.55133144676889,-1.55148399969068,0.0249372052872058,0.0274024288330475 +0.388,0.24768266816732,0.989063591156218,1.57540785192667,1.55122313818616,-1.55135066357067,0.0251170850404105,0.0275871043045196 +0.39,0.247699915906201,0.988973755585277,1.57544872969996,1.55111212338841,-1.55121582030125,0.0253008197569915,0.0277750859550071 +0.392,0.247717910897775,0.988882960854123,1.57548809495431,1.55099998474474,-1.55108133280314,0.0254841596931246,0.0279631721003842 +0.394,0.24773626306442,0.988791601870278,1.57552659573004,1.55088732517637,-1.55094734226923,0.0256665929616763,0.0281509544104033 +0.396,0.247754679754302,0.988700000609114,1.57556478699128,1.55077449240661,-1.55081378633182,0.0258482122712282,0.028338378714842 +0.398,0.247769918983398,0.988613266545463,1.57560079634988,1.55067467885076,-1.55069976488427,0.0260010652182756,0.0284978429214064 +0.4,0.247787029598971,0.988525882120877,1.57564056226172,1.5505654068051,-1.55056568832123,0.0261825005737678,0.0286847999849464 +0.402,0.247805000052072,0.988437016630603,1.57567935293527,1.55045339307074,-1.55043023680538,0.0263674848814773,0.0288748145108773 +0.404,0.247823312064698,0.988346953450063,1.57571727534471,1.55034024828907,-1.55029524448286,0.0265518249608743,0.0290646586276332 +0.406,0.247841621751042,0.988256067548435,1.57575491695784,1.55022657073257,-1.55016082990948,0.0267350521131896,0.0292539219035755 +0.408,0.247856633031096,0.988169552146697,1.57579052478754,1.55012571134916,-1.55004609344335,0.0268891638234243,0.0294149607308226 +0.41,0.247873439791021,0.988081977364499,1.57583005165474,1.55001519683324,-1.54991141928397,0.0270715752163763,0.0296032717727223 +0.412,0.247891037147784,0.987992602605195,1.57586881174918,1.54990182199901,-1.54977546684355,0.0272572887297766,0.0297944228497772 +0.414,0.247908933042655,0.987901790792425,1.57590691455932,1.54978724686134,-1.54964005568365,0.0274421564111921,0.0299851980326023 +0.416,0.247926812649415,0.987809987019527,1.57594492985353,1.54967211654772,-1.54950528583297,0.0276257422805729,0.030175207531009 +0.418,0.247944491441146,0.987717556931639,1.57598327507642,1.54955679123223,-1.54937106901857,0.0278082095316991,0.0303644288088159 +0.42,0.247961888115509,0.987624768904735,1.57602216400565,1.5494414954027,-1.54923730435239,0.0279897742105463,0.0305528956786037 +0.422,0.247979003730305,0.98753180800951,1.5760616390246,1.54932635617578,-1.54910390811048,0.0281706278589143,0.0307406589485375 +0.424,0.247995891959889,0.987438798514137,1.57610162925952,1.54921143902842,-1.54897081044592,0.0283509212153583,0.0309277878863118 +0.426,0.248012639261779,0.987345825508743,1.57614199629399,1.54909676423278,-1.54883795894994,0.028530777733395,0.0311143615493159 +0.428,0.248029340805441,0.987252952177802,1.57618258020165,1.54898233286145,-1.54870531008183,0.0287102909662131,0.0313004685956581 +0.43,0.248046089533332,0.987160230753107,1.57622322363069,1.5488681331368,-1.54857283203707,0.0288895390313692,0.0314861962396559 +0.432,0.248059814148575,0.987072592353079,1.57626165388138,1.54876728378855,-1.5484596811979,0.0290404305276699,0.0316439856520406 +0.434,0.248075897202065,0.986984429548263,1.57630333442765,1.5486569296451,-1.54832630035554,0.0292203003687467,0.0318294762218721 +0.436,0.248093382667746,0.986894913095965,1.57634344925452,1.54854379771501,-1.54819141271196,0.0294039977240089,0.0320182415521447 +0.438,0.248111756236932,0.986804357281245,1.57638210388529,1.54842951773305,-1.54805688918093,0.0295872702660669,0.0322070712283325 +0.44,0.248130628018258,0.986713178727654,1.57641995273847,1.54831473685794,-1.54792286698144,0.0297696089561409,0.0323955599260753 +0.442,0.248149707725375,0.986621716964427,1.57645754462727,1.54819983171417,-1.54778928517814,0.0299511232311778,0.032583651967709 +0.444,0.248168796232182,0.986530205268705,1.57649523913975,1.5480850427759,-1.54765606320102,0.0301319875411913,0.0327713368642166 +0.446,0.248187778427735,0.986438779881025,1.57653321798523,1.54797050339729,-1.54752313260145,0.0303123590043515,0.0329586161189163 +0.448,0.248206602672027,0.98634750297239,1.57657153174064,1.54785627112359,-1.54739043534342,0.0304923578753054,0.0331455093622227 +0.45,0.248225266220008,0.986256388134686,1.5766101413393,1.54774234380933,-1.54725792841102,0.0306720788609841,0.0333320488808971 +0.452,0.248243793428133,0.986165423161182,1.5766489643782,1.54762868792713,-1.54712557598803,0.0308515875057581,0.0335182811332611 +0.454,0.248262224946999,0.986074586737228,1.57668790187517,1.54751524887219,-1.54699335275431,0.0310309342677758,0.0337042563943519 +0.456,0.248277381229691,0.985988738504224,1.5767247944233,1.54741520482455,-1.54688042511458,0.0311819772082779,0.0338623441091383 +0.458,0.248294740418764,0.985902208850042,1.5767650097407,1.54730547631817,-1.54674723004962,0.0313620828558438,0.0340482341202118 +0.46,0.248313321233846,0.985814136570119,1.5768037863038,1.54719278961827,-1.54661249883958,0.0315460456175332,0.0342374461530394 +0.462,0.248332604535381,0.985724810758688,1.57684125512957,1.54707875442286,-1.54647810946201,0.0317295836264781,0.034426745862404 +0.464,0.248352206294351,0.985634633657222,1.57687808355698,1.54696400135916,-1.54634420245312,0.031912169401339,0.03461571035672 +0.466,0.248371849722654,0.985543941249729,1.57691482433949,1.5468488984515,-1.54621071888454,0.0320938990522211,0.0348042701382153 +0.468,0.248391354779953,0.98545297311433,1.57695183363025,1.54673368633056,-1.54607757975455,0.0322749374480609,0.0349924040956684 +0.47,0.24841062926934,0.985361880220113,1.57698928359494,1.54661850702384,-1.54594471802698,0.0324554354847828,0.0351801060460388 +0.472,0.248429646684479,0.985270746252505,1.57702721040136,1.54650343446901,-1.54581207700783,0.0326355103524163,0.0353673906249259 +0.474,0.248448430272121,0.985179611363481,1.5770655568598,1.54638848941705,-1.54567961500987,0.032815256582737,0.0355542875405805 +0.476,0.248467030045538,0.985088493220353,1.57710421989374,1.54627366629248,-1.54554729751129,0.0329947420953881,0.0357408428167259 +0.478,0.248485511047297,0.984997402052597,1.57714307833965,1.54615894186914,-1.54541510047466,0.0331740218765623,0.035927108107866 +0.48,0.248503937859952,0.984906349879177,1.57718201948377,1.54604429290575,-1.5452830030238,0.0333531343630563,0.0361131399932805 +0.482,0.248522370943854,0.984815354158091,1.57722094635917,1.54592969569767,-1.54515099133611,0.0335321136815306,0.036298990438529 +0.484,0.248540858279739,0.984724437899267,1.57725978745647,1.54581513621063,-1.54501905184333,0.0337109837748302,0.0364847088298912 +0.486,0.248559437498777,0.984633627168402,1.57729849175261,1.54570060385,-1.54488717581089,0.0338897687001655,0.0366703353599672 +0.488,0.248578131990988,0.984542947958188,1.57733703050208,1.54558609736072,-1.54475535330677,0.0340684853623897,0.0368559055072089 +0.49,0.248596956056563,0.984452422832015,1.57737538821569,1.54547161609197,-1.54462357830103,0.0342471525907037,0.0370414453601355 +0.492,0.248615912765049,0.984362068568527,1.57741356326714,1.5453571648354,-1.54449184296078,0.034425782932307,0.0372269773954656 +0.494,0.248634999920241,0.984271894479934,1.57745155944112,1.54524274502098,-1.54436014297377,0.0346043911435971,0.0374125164620708 +0.496,0.248654208127236,0.984181902040941,1.57748938794219,1.54512836003626,-1.54422847201099,0.0347829857570508,0.0375980757074386 +0.498,0.248673526548234,0.984092085082827,1.57752706060477,1.54501400727228,-1.54409682711583,0.034961577465149,0.0377836624438333 +0.5,0.248692940513835,0.984002430935838,1.57756459343206,1.5448996844281,-1.54396520318338,0.0351401707133549,0.0379692838080788 +0.502,0.248712436719383,0.983912921665518,1.57760200099246,1.54478538252351,-1.5438335983472,0.0353187721650863,0.0381549423197355 +0.504,0.248732000267563,0.983823535788596,1.5776393007444,1.54467109301941,-1.54370200846446,0.0354973824475089,0.0383406412436087 +0.506,0.248751619330128,0.983734249680473,1.5776765078747,1.5445568014815,-1.5435704325007,0.0356760047359034,0.0385263799283555 +0.508,0.248771281706632,0.983645039157232,1.57771363981731,1.54444249515939,-1.54343886701928,0.0358546366145206,0.0387121590182949 +0.51,0.248790979073131,0.983555880544977,1.57775071112666,1.54432815692553,-1.54330731157684,0.0360332787324339,0.0388979757090615 +0.512,0.248810703193074,0.983466751811999,1.57778773796615,1.54421377295652,-1.54317576322992,0.0362119267190529,0.039083828917206 +0.514,0.248830449887354,0.983377633148132,1.5778247329432,1.544099326634,-1.54304422195049,0.0363905798489849,0.0392697145238681 +0.516,0.24885021501694,0.983288507618049,1.57786170960426,1.54398480608086,-1.54291268514791,0.036569232941553,0.0394556305426392 +0.518,0.248869998282199,0.983199361303258,1.57789867732182,1.54387019783408,-1.54278115310393,0.0367478849812462,0.0396415723554565 +0.52,0.248889799072567,0.983110183575657,1.5779356459028,1.54375549410643,-1.54264962350411,0.0369265309547264,0.0398275378645415 +0.522,0.248909620178738,0.983020966921596,1.57797262062126,1.54364068615522,-1.54251809688742,0.0371051703960133,0.0400135226922984 +0.524,0.248929463580412,0.982931706957258,1.57800960700762,1.54352577124496,-1.54238657117832,0.0372837991363338,0.0401995252902136 +0.526,0.248949334132024,0.982842402048484,1.5780466060588,1.5434107457275,-1.54225504714541,0.0374624177648252,0.0403855420760166 +0.528,0.248969235340143,0.98275305316924,1.57808361920638,1.54329561175379,-1.54212352292833,0.0376410232897145,0.0405715724819549 +0.53,0.248989173065413,0.982663663405721,1.57812064367366,1.5431803701373,-1.54199199950203,0.037819617523212,0.0407576140192483 +0.532,0.24900915132476,0.982574237734957,1.57815767757181,1.54306502690288,-1.54186047519564,0.0379981986682053,0.0409436672658747 +0.534,0.249029176037219,0.982484782481062,1.5781947153407,1.54294958603015,-1.54172895116103,0.0381767696471584,0.0411297308658958 +0.536,0.249049250873161,0.982395305074578,1.5782317529041,1.54283405593684,-1.54159742588372,0.0383553296380413,0.0413158064702886 +0.538,0.249069381060111,0.982305813515678,1.57826878312706,1.5427184421965,-1.54146590065576,0.0385338823717356,0.0415018936895535 +0.54,0.249089569290831,0.982216316163858,1.57830580096734,1.54260275404137,-1.54133437408011,0.0387124276434242,0.0416879950073843 +0.542,0.249109819596027,0.982126821252399,1.57834279889563,1.54248699712923,-1.54120284754845,0.0388909696020478,0.041874110708296 +0.544,0.249130133314721,0.982037336746973,1.57837977199822,1.54237118012591,-1.54107131974095,0.0390695082608556,0.0420602437837364 +0.546,0.249150513033152,0.981947869943334,1.57841671332622,1.54225530756837,-1.54093979210943,0.0392480477977361,0.0422463948543409 +0.548,0.249170958613679,0.98185842741955,1.57845361892494,1.54213938655847,-1.54080826337429,0.0394265880827362,0.0424325670841991 +0.55,0.249191471192682,0.981769014733732,1.57849048309765,1.54202341974114,-1.54067673501317,0.0396051330014776,0.0426187611124024 +0.552,0.249212049258065,0.98167963647864,1.57852730335515,1.54190741211525,-1.54054520575635,0.0397836820102589,0.0428049799858319 +0.554,0.249232692693648,0.981590296080117,1.57856407559521,1.54179136412226,-1.5404136770807,0.039962238487954,0.0429912241089058 +0.556,0.249253398890603,0.981500995947291,1.57860079897953,1.54167527856027,-1.54028214770426,0.0401408013223149,0.0431774961999834 +0.558,0.249274166822182,0.981411737358182,1.57863747104119,1.54155915376229,-1.54015061908525,0.0403193732898769,0.0433637962628575 +0.56,0.24929144933229,0.981327379279475,1.57867233396544,1.54145668711411,-1.54003829927438,0.0404696784721255,0.0435222655001606 +0.562,0.249307637747916,0.98124709575754,1.57870852365093,1.54135778371762,-1.5399248001285,0.0406210261933402,0.0436810254663319 +0.564,0.249327590697479,0.981164395057963,1.57874635534203,1.54124557537041,-1.5397892901678,0.0408056543437934,0.0438714046862085 +0.566,0.249349628414312,0.981078776933625,1.57878149110555,1.54112872490566,-1.53965243838011,0.0409938714165879,0.0440654490168728 +0.568,0.249372740261411,0.98099095074067,1.57881486438556,1.54100963945803,-1.53951630003018,0.0411808052419644,0.0442594084656062 +0.57,0.249396196398458,0.980901648428855,1.5788477550869,1.54088942386942,-1.53938097592007,0.041366014725334,0.0444527265573312 +0.572,0.249419495025542,0.980811428409807,1.57888109043127,1.54076876410041,-1.53924633654917,0.0415497548092777,0.0446452707788371 +0.574,0.249442342430631,0.980720662132425,1.57891538597876,1.54064809093364,-1.53911224558183,0.0417323404822297,0.0448369832324969 +0.576,0.249464613398551,0.980629569932516,1.5789508232407,1.54052765128681,-1.53897858637034,0.0419140344100524,0.0450278543434695 +0.578,0.249486312188439,0.98053826986565,1.57898734493175,1.54040755222916,-1.53884527049666,0.0420950458526521,0.0452179151984757 +0.58,0.249507524297334,0.980446824003754,1.57902475714602,1.54028781564473,-1.53871222824261,0.042275528768718,0.0454072361483958 +0.582,0.249528382019367,0.980355273668588,1.57906280301784,1.54016841053436,-1.53857940985041,0.0424556011933243,0.045595909933683 +0.584,0.249549030383153,0.980263661926845,1.57910122327413,1.54004928901924,-1.53844677579412,0.0426353475827598,0.0457840439775206 +0.586,0.249569610050344,0.980172043786135,1.57913978509785,1.53993039845777,-1.53831429880428,0.042814836289936,0.0459717443117565 +0.588,0.249590239831875,0.980080487490506,1.57917830356031,1.53981169949205,-1.53818195517111,0.0429941174775543,0.0461591129268061 +0.59,0.249611013873844,0.979989069628707,1.57921664042376,1.5396931634054,-1.53804972827083,0.0431732363610147,0.0463462378717114 +0.592,0.24963199574227,0.9798978678127,1.57925470502233,1.53957477876075,-1.53791760161207,0.0433522277738506,0.0465331961768434 +0.594,0.249653223930336,0.979806952765012,1.57929244146648,1.53945654133239,-1.53778556360102,0.0435311263919918,0.0467200486142205 +0.596,0.249674711261857,0.979716382027572,1.57932982486277,1.53933845682333,-1.53765360141746,0.0437099588994381,0.0469068459137993 +0.598,0.249696453343625,0.979626195499414,1.5793668484089,1.53922052948213,-1.53752170634471,0.0438887526284885,0.0470936253919479 +0.6,0.249718429264788,0.979536413620955,1.57940352191395,1.53910276513482,-1.53738986806175,0.0440675269766438,0.0472804178291239 +0.602,0.249740610132027,0.979447037374101,1.57943986220225,1.53898516128211,-1.53725808013315,0.044246301651187,0.0474672440810721 +0.604,0.249762959079495,0.97935805024512,1.57947589491239,1.5388677121789,-1.53712633434655,0.0444250880588765,0.0476541215173434 +0.606,0.249785438692713,0.979269420989212,1.57951164757816,1.53875040114321,-1.53699462618013,0.0446038977017376,0.047841060047385 +0.608,0.249808009758473,0.979181107284972,1.57954715326231,1.53863320764078,-1.53686294913908,0.0447827339195646,0.0480280679506 +0.61,0.249830637406615,0.979093059227232,1.57958244471547,1.53851610130621,-1.53673130019313,0.0449616005948116,0.0482151474509746 +0.612,0.249853288644386,0.97900522294662,1.5796175584917,1.53839905032683,-1.53659967411129,0.0451404942172006,0.0484023002320986 +0.614,0.249875937405471,0.978917543528422,1.57965252920555,1.53828201634689,-1.53646806890321,0.0453194128162566,0.0485895228572095 +0.616,0.24989856113564,0.978829967734578,1.57968739355552,1.5381649633073,-1.53633648018843,0.0454983482190145,0.0487768122172959 +0.618,0.24992114504545,0.97874244587497,1.57972218445913,1.53804785244818,-1.53620490667072,0.0456772950630782,0.0489641609649303 +0.62,0.249943678032357,0.978654933461452,1.57975693503588,1.53793065094724,-1.53607334454488,0.0458562430737925,0.0491515629939433 +0.622,0.249966156409625,0.978567392072224,1.57979167281764,1.53781332648599,-1.53594179300869,0.0460351860165839,0.0493390088995296 +0.624,0.249988579415183,0.978479790107153,1.57982642394827,1.53769585529333,-1.53581024869715,0.0462141138639941,0.0495264914556754 +0.626,0.250010952643458,0.978392102879101,1.57986120771083,1.53757821601267,-1.53567871122307,0.0463930215937906,0.0497140010295533 +0.628,0.250033283338828,0.978304312722778,1.57989604113417,1.53746039702045,-1.53554717761915,0.0465719011668446,0.0499015309834977 +0.63,0.250055583703036,0.978216408556644,1.57993093394753,1.53734238957046,-1.53541564789497,0.0467507501305647,0.0500890729676727 +0.632,0.250077866122155,0.978128385566535,1.57996589362564,1.53722419445619,-1.53528411947205,0.0469295633863845,0.0502766221911092 +0.634,0.250100146475197,0.978040244434171,1.58000092073127,1.53710581457151,-1.53515259274873,0.0471083416055317,0.0504641725538035 +0.636,0.250122439400083,0.977951990768016,1.58003601430502,1.53698726110756,-1.53502106552025,0.0472870828080738,0.0506517217730432 +0.638,0.250144761688972,0.977863634152191,1.58007116746613,1.53686854575284,-1.5348895385476,0.0474657906306189,0.0508392663595962 +0.64,0.250167127663872,0.977775187464025,1.58010637299655,1.53674968665939,-1.53475800996175,0.0476444657675187,0.0510268066205932 +0.642,0.250189552712952,0.977686665872132,1.58014161904674,1.53663070051789,-1.53462648083598,0.0478231141467296,0.0512143415144799 +0.644,0.250212048818635,0.97759808616021,1.5801768947652,1.53651160851245,-1.53449494957722,0.0480017382949628,0.0514018735709728 +0.646,0.250234628264222,0.977509465784637,1.58021218597719,1.53639242846964,-1.53436341750287,0.0481803454798094,0.0515894036720224 +0.648,0.250257299334523,0.977420822304419,1.58024748074445,1.53627318096827,-1.53423188322383,0.0483589390583059,0.0517769359330214 +0.65,0.250280070201238,0.977332172585543,1.58028276492532,1.53615388169838,-1.53410034822665,0.0485375266347017,0.051964472455855 +0.652,0.250302944796049,0.977243532409622,1.58031802759304,1.53603454782473,-1.53396881125292,0.0487161114399823,0.0521520182093779 +0.654,0.250325926864528,0.97715491588067,1.58035325642884,1.53591519062309,-1.53383727388703,0.0488947005399121,0.0523395757915937 +0.656,0.25034901599345,0.977066335250209,1.58038844296835,1.53579582213077,-1.53370573493544,0.0490732962765908,0.0525271503366757 +0.658,0.250372211806605,0.976977800545572,1.58042357781635,1.5356764480668,-1.53357419601998,0.0492519045449679,0.0527147443112104 +0.66,0.250395510112848,0.976889319612642,1.58045865572395,1.53555707475024,-1.53344265595918,0.0494305263103992,0.0529023624635295 +0.662,0.250418907204528,0.976800897949951,1.58049367064144,1.53543770226557,-1.53331111636675,0.0496091659568347,0.0530900066668574 +0.664,0.250442396082276,0.976712538938679,1.5805286206529,1.53531833159389,-1.53317957603589,0.0497878228794865,0.0532776809164718 +0.666,0.250465970809627,0.976624243839863,1.58056350290165,1.53519895795727,-1.53304803654248,0.0499664998962328,0.0534653862221744 +0.668,0.250489622766367,0.976536012159834,1.58059831842291,1.53507957808943,-1.5329164966323,0.0501451949034461,0.0536531256507646 +0.67,0.250513345012407,0.976447841752458,1.58063306698565,1.53496018368155,-1.53278495782844,0.0503239093346044,0.0538408992623085 +0.672,0.250537128524161,0.976359729258895,1.5806677518692,1.5348407687156,-1.5326534188206,0.0505026398606268,0.0540287091899055 +0.674,0.250560966526604,0.976271670253497,1.58070237466614,1.5347213229362,-1.53252188107635,0.0506813868762051,0.0542165546090539 +0.676,0.25058485067576,0.976183659698896,1.58073694004668,1.53460183917765,-1.53239034323106,0.0508601462234636,0.0544044368436987 +0.678,0.250608775328734,0.97609569208113,1.58077145056185,1.53448230679851,-1.53225880670296,0.0510389176865705,0.0545923543555341 +0.68,0.250632733647965,0.976007761831904,1.5808059114315,1.53436271894873,-1.53212727008195,0.051217696718529,0.0547803078645884 +0.682,0.250656721792553,0.975919863412373,1.58084032537734,1.53424306592167,-1.53199573474841,0.0513964829273663,0.0549682953452472 +0.684,0.250680734934058,0.975831991670305,1.58087469745921,1.5341233423271,-1.53186419925928,0.0515752717894468,0.0551563171507277 +0.686,0.250704771366199,0.975744141848992,1.58090902995563,1.53400354033567,-1.53173266497073,0.0517540631150076,0.0553443710044242 +0.688,0.250728828435223,0.975656309864341,1.58094332726074,1.53388365674376,-1.53160113041999,0.0519328527365376,0.0555324571199836 +0.69,0.250752906576915,0.975568492232186,1.58097759081814,1.53376368610483,-1.53146959695213,0.0521116409466757,0.0557205731796077 +0.692,0.250777005175135,0.975480686265997,1.58101182407956,1.53364362769012,-1.53133806309656,0.0522904241559053,0.0559087194444539 +0.694,0.250801126543615,0.975392889929865,1.58104602748789,1.53352347851792,-1.531206530198,0.0524692033009988,0.0560968937150787 +0.696,0.250825271733031,0.975305101969485,1.5810802034896,1.53340324022772,-1.53107499678718,0.0526479754716585,0.0562850964299736 +0.698,0.250849444479691,0.975217321707757,1.58111435155578,1.5332829120304,-1.530943464216,0.0528267422920984,0.0564733256067776 +0.7,0.250873646984262,0.975129549128962,1.58114847323472,1.53316249752219,-1.53081193102237,0.053005501520642,0.0566615819294406 +0.702,0.250897883850182,0.975041784638749,1.58118256719594,1.53304199758486,-1.53068039856957,0.0531842554102302,0.0568498636716888 +0.704,0.250922157856292,0.974954029123959,1.58121663430708,1.53292141716951,-1.53054886540537,0.0533630022879591,0.0570381717752789 +0.706,0.250946473905362,0.974866283699138,1.58125067268534,1.53280075817683,-1.53041733290572,0.0535417449020836,0.0572265047591697 +0.708,0.250970834809194,0.97477854976292,1.58128468278344,1.53268002623922,-1.5302857996285,0.0537204819899026,0.0574148637924484 +0.71,0.250995245262961,0.974690828750066,1.5813186624349,1.532559223608,-1.53015426696144,0.0538992166192217,0.0576032475936512 +0.712,0.251019707655955,0.97460312220093,1.58135261193669,1.53243835595729,-1.53002273347114,0.0540779477529712,0.0577916575022292 +0.714,0.251044226081596,0.974515431532634,1.58138652907847,1.53231742529856,-1.52989120055503,0.054256678592312,0.0579800923725379 +0.716,0.251068802180919,0.974427758132159,1.58142041421363,1.53219643682239,-1.52975966678631,0.0544354081451918,0.0581685536473097 +0.718,0.251093439192159,0.974340103154032,1.58145426526701,1.53207539185286,-1.52962813356968,0.054614139576663,0.0583570402501956 +0.72,0.251118137828274,0.974252467641314,1.58148808279056,1.53195429473513,-1.52949659948274,0.0547928717866358,0.0585455536638439 +0.722,0.251142900364691,0.974164852351168,1.58152186494818,1.5318331458341,-1.52936506593537,0.0549716077709164,0.0587340928237839 +0.724,0.251167726547361,0.974077257902531,1.58155561255634,1.53171194846807,-1.52923353150784,0.0551503462111282,0.0589226592026229 +0.726,0.251192617713189,0.973989684626077,1.58158932404826,1.53159070194899,-1.52910199761378,0.0553290898478471,0.0591112517067894 +0.728,0.251217572721673,0.973902132733282,1.58162300050283,1.53146940855649,-1.52897046283516,0.0555078370834185,0.0592998717672794 +0.73,0.251242592099974,0.973814602184094,1.58165664059262,1.53134806661162,-1.52883892858862,0.0556865903666759,0.0594885182395604 +0.732,0.251267673989325,0.97372709286979,1.5816902456063,1.5312266774814,-1.52870739345756,0.0558653478074893,0.0596771925003995 +0.734,0.251292818305632,0.973639604490241,1.58172381438608,1.53110523867487,-1.52857585886164,0.0560441115711098,0.059865893350256 +0.736,0.251313917729511,0.973556959798016,1.58175613248583,1.53099823777662,-1.52846357220934,0.0561944419198567,0.0600264480152732 +0.738,0.251337801278937,0.973473427212674,1.58179111815342,1.53088054173686,-1.52833083997167,0.0563743332448868,0.060215449378205 +0.74,0.251363228669288,0.973388286012029,1.58182447155816,1.53075940411045,-1.52819646966695,0.0565582033281511,0.0604079932012358 +0.742,0.251389549933752,0.973301875487933,1.58185651126135,1.53063664166578,-1.52806239366937,0.0567416625068962,0.0606007476796428 +0.744,0.251416289645473,0.97321461100859,1.58188800170524,1.53051301287541,-1.5279287650121,0.0569241718940042,0.0607932408627547 +0.746,0.251443106351525,0.973126820869867,1.58191954013243,1.53038897503279,-1.52779552586124,0.0571058374196544,0.0609853713348063 +0.748,0.251469778042721,0.973038726551609,1.58195149195958,1.53026482908769,-1.52766259662922,0.0572868355071503,0.0611770976670946 +0.75,0.251492037855094,0.972955278751097,1.58198284603553,1.53015530605002,-1.52754916182059,0.0574388737127036,0.0613402036366405 +0.752,0.251516753625319,0.972870809246124,1.58201745360141,1.53003525945699,-1.5274154657453,0.0576201019263111,0.0615313396024501 +0.754,0.251542699783857,0.972784634938407,1.58205095195302,1.52991199577064,-1.52728028065419,0.0578050151712699,0.0617256103387907 +0.756,0.251569278818674,0.972697113763008,1.58208354119341,1.52978733652903,-1.52714550923935,0.0579892844282925,0.0619197281368005 +0.758,0.251596090910838,0.972608677907498,1.58211584580907,1.52966201369346,-1.52701128701926,0.0581724268745873,0.062113270488668 +0.76,0.251622868239637,0.972519679191742,1.58214833838517,1.52953645976988,-1.52687753662736,0.0583545813484837,0.0623061949089581 +0.762,0.251645269273334,0.972435188572672,1.58218014318477,1.52942555215657,-1.5267634226507,0.0585074943925756,0.062470291056278 +0.764,0.251670198603801,0.972349636948456,1.58221511301754,1.52930412218057,-1.52662915799916,0.0586893995444274,0.0626622758638 +0.766,0.251696406245082,0.972262425371643,1.58224894104485,1.52917954591935,-1.52649349725924,0.0588748265301732,0.0628572567758159 +0.768,0.251723283619772,0.972173968802392,1.58228184603508,1.52905368405453,-1.52635832753838,0.0590594837744645,0.0630519617074207 +0.77,0.251750426605882,0.972084734844163,1.58231444933816,1.52892729047303,-1.52622377048626,0.0592429219451806,0.0632459858240641 +0.772,0.251777566458246,0.971995093957508,1.58234720826674,1.52880080751384,-1.52608973736012,0.0594253070128978,0.0634393052507145 +0.774,0.251800322543532,0.971910120979529,1.58237926513113,1.52868916799106,-1.52597538667881,0.0595783957474316,0.0636037062708157 +0.776,0.251825660762121,0.971824241237252,1.58241438602893,1.5285671062341,-1.52584091715705,0.0597604650851186,0.0637959669232033 +0.778,0.251852318847291,0.971736853848165,1.58244826782302,1.5284420094255,-1.5257050813988,0.0599460410869344,0.0639911937875602 +0.78,0.251879679251608,0.971648364411754,1.58248112808377,1.52831573301525,-1.52556976413437,0.0601308365280348,0.0641861259391532 +0.782,0.251907328409114,0.971559227237246,1.58251359023691,1.52818902057816,-1.52543508359648,0.0603144077151739,0.0643803690183623 +0.784,0.25193498753499,0.971469796964976,1.58254611780632,1.52806230151424,-1.52530094772088,0.0604969248891416,0.0645739073606856 +0.786,0.251958226555407,0.971385128515223,1.58257790089604,1.52795054850864,-1.52518651499815,0.0606501364711953,0.0647385108283375 +0.788,0.251984063761857,0.971299625508233,1.58261264992696,1.52782838829974,-1.5250519742991,0.0608323478809544,0.0649310043742765 +0.79,0.252011217910529,0.971212674409124,1.58264609396213,1.52770321291277,-1.52491607948123,0.0610180693854943,0.0651264789858969 +0.792,0.252039059046132,0.971124664707276,1.58267847227784,1.52757686949901,-1.52478071526515,0.0612030085101286,0.065321670924407 +0.794,0.25206716412892,0.971036033858452,1.5827104265699,1.52745009100983,-1.52464599827425,0.0613867196791424,0.065516183800833 +0.796,0.252095247440885,0.970947119964193,1.58274243604811,1.52732329611939,-1.52451183458194,0.0615693716701881,0.0657099995600697 +0.798,0.252118835067042,0.970862960001794,1.58277374214442,1.52721150201995,-1.52439738398408,0.0617227004875362,0.0658748630400345 +0.8,0.252145005490139,0.970777940497322,1.58280799792091,1.52708923460266,-1.52426282638709,0.0619050370657705,0.0660676399100449 +0.802,0.252172467330211,0.970691442350862,1.58284095932992,1.52696389953052,-1.52412691806485,0.0620908744401805,0.0662634009929404 +0.804,0.252200587642306,0.970603848238801,1.58287287930357,1.52683734612268,-1.52399154469821,0.0622759145092951,0.0664588769465132 +0.806,0.252228943311553,0.970515589884653,1.58290440799918,1.52671030843019,-1.52385682219977,0.0624597103965705,0.066653668031787 +0.808,0.252252910946974,0.970431809602874,1.58293504084893,1.52659801942348,-1.52374192219426,0.062613928682,0.0668194468945372 +0.81,0.25227952888932,0.970346980802758,1.58296855370516,1.52647505067452,-1.52360700150022,0.0627969565102861,0.0670130961942734 +0.812,0.252307431535901,0.970260553722623,1.58300083972865,1.52634891604622,-1.52347079958951,0.0629833164157275,0.0672096575593613 +0.814,0.252335945573901,0.970172953603209,1.58303222104491,1.52622152834875,-1.52333518988789,0.063168749435831,0.0674058452938137 +0.816,0.25236462504528,0.970084635307097,1.58306337714656,1.52609366830207,-1.52320027138237,0.0633528340772646,0.0676012567989187 +0.818,0.252393185770459,0.969995943327471,1.58309478329153,1.52596577556859,-1.52306594237972,0.0635357689291179,0.0677958686979173 +0.82,0.252421473251064,0.969907106852653,1.58312667911265,1.52583811362339,-1.52293208899725,0.0637178006426765,0.0679897190295394 +0.822,0.252449438004799,0.9698182638091,1.58315911434873,1.52571081701365,-1.52279861819842,0.0638991415979879,0.0681828652440402 +0.824,0.252477101050599,0.969729490854691,1.58319201796255,1.52558393556013,-1.52266545414042,0.0640799538095642,0.0683753840770468 +0.826,0.252504530006883,0.96964082982609,1.58322525061557,1.52545745833177,-1.52253254137744,0.0642603640684487,0.0685673611050005 +0.828,0.25253181087438,0.969552307483581,1.58325865505309,1.52533134653128,-1.52239983497171,0.0644404633193181,0.0687588897408387 +0.83,0.252559034291149,0.96946394712936,1.58329208111228,1.52520554516182,-1.52226730293935,0.0646203230562697,0.068950059436761 +0.832,0.252586279433114,0.969375773834613,1.58332540766153,1.52508000214232,-1.52213491769722,0.0647999935566486,0.069140955560784 +0.834,0.252613611553678,0.96928781456669,1.58335854383679,1.52495466783141,-1.52200265978308,0.0649795174756346,0.0693316507337467 +0.836,0.252641075013975,0.969200095852413,1.5833914338369,1.52482950485474,-1.5218705104012,0.0651589247833333,0.0695222085349923 +0.838,0.25266869764339,0.969112640083084,1.58342404733708,1.52470448103739,-1.5217384562138,0.0653382436258873,0.0697126781640898 +0.84,0.252696488595383,0.969025462361597,1.5834563785404,1.52457957480204,-1.52160648292585,0.0655174933814609,0.0699031004604646 +0.842,0.252719991044087,0.96894336910078,1.58348755751547,1.52446973707597,-1.52149385457559,0.0656681592526969,0.0700651340378689 +0.844,0.252746572401844,0.968860594130581,1.58352091916804,1.52434900715787,-1.52136080149134,0.0658484915246004,0.0702557780451764 +0.846,0.252774885079483,0.968776454609297,1.58355234939816,1.52422480779739,-1.52122615479325,0.0660327844713442,0.0704499898823129 +0.848,0.252804211848445,0.968691285625384,1.58358226049843,1.52409901151178,-1.52109185383435,0.0662166185500048,0.0706444243907374 +0.85,0.252834026866407,0.968605477739569,1.58361147611085,1.52397239457809,-1.5209580496722,0.0663994677676268,0.070838604295973 +0.852,0.252863941638998,0.968519321854722,1.58364064296827,1.52384542682708,-1.52082467212014,0.0665814449653314,0.071032430925583 +0.854,0.252893699774335,0.968432994570684,1.58367015945053,1.52371840470375,-1.52069163582014,0.0667627399088523,0.0712258603143035 +0.856,0.252923156724547,0.968346579345678,1.58370021443608,1.52359150087736,-1.52055886480363,0.06694351433451,0.0714188764785832 +0.858,0.252952260914091,0.968260097343508,1.583730839158,1.52346478863547,-1.52042630221589,0.0671238977425943,0.0716114847538673 +0.86,0.252981023699913,0.968173537659291,1.58376197057522,1.52333827925898,-1.52029390263282,0.0673039817792817,0.0718037142327799 +0.862,0.25300949966191,0.968086880845068,1.58379349473481,1.52321194143605,-1.52016163511954,0.0674838353087007,0.0719956064443721 +0.864,0.253037762542281,0.968000114516913,1.58382528729401,1.52308572923075,-1.5200294745658,0.0676635030267954,0.0721872134962153 +0.866,0.25306589453533,0.967913240811329,1.58385723049911,1.52295958993463,-1.51989740500652,0.0678430200887116,0.0723785866184722 +0.868,0.253093971705585,0.967826277938213,1.58388922976014,1.52283348069515,-1.51976541169454,0.0680224084475052,0.0725697768585237 +0.87,0.253122061940359,0.967739257269327,1.58392121181332,1.52270736638688,-1.51963348547504,0.0682016889154709,0.0727608271041167 +0.872,0.253150217662857,0.967652218592327,1.58395312826954,1.5225812281007,-1.51950161602194,0.0683808751771469,0.072951776075777 +0.874,0.253178479306814,0.967565204518967,1.58398494627567,1.52245505517499,-1.51936979710669,0.0685599837096322,0.073142653104628 +0.876,0.253206871831542,0.967478255769464,1.58401664892353,1.52232884999423,-1.51923802046139,0.0687390260311691,0.0733334840527337 +0.878,0.253230835991183,0.967396200862652,1.58404746452525,1.52221775403885,-1.51912556501997,0.0688894511664967,0.0734958484601094 +0.88,0.253257947011823,0.967313295803011,1.58408049779077,1.52209555585571,-1.51899264121941,0.0690695878239759,0.0736868729286655 +0.882,0.253286843439736,0.967228909836985,1.58411166483859,1.52196976885117,-1.51885809632597,0.06925368429355,0.0738814582537255 +0.884,0.253316808624238,0.967143419139236,1.58414137309593,1.52184231590888,-1.51872387918545,0.0694373108856211,0.0740762496523858 +0.886,0.25334731916531,0.967057249864162,1.5841704314643,1.5217140131996,-1.5185901442462,0.0696199448160807,0.0742707686735787 +0.888,0.253377988725272,0.966970723794389,1.58419946775872,1.52158536436088,-1.51845682297008,0.0698017054043922,0.0744649186626121 +0.89,0.253403948057215,0.966888834973095,1.58422813701319,1.5214718840971,-1.51834311822259,0.069954212910094,0.074630198071369 +0.892,0.253432687033206,0.966805914542098,1.58425964658553,1.5213474517729,-1.51820916425707,0.0701359800070269,0.0748237501081188 +0.894,0.253462782843999,0.966721358933843,1.58428994576318,1.52121968132429,-1.51807376038797,0.0703213611004571,0.0750204574571068 +0.896,0.253493531726204,0.966635540580506,1.58431936810621,1.52109051324949,-1.51793881898147,0.0705060102788819,0.0752169853791071 +0.898,0.253524467731001,0.96654887609569,1.58434859917696,1.52096073689292,-1.51780446702469,0.0706894657794289,0.0754128940915563 +0.9,0.253550638885085,0.966466475870511,1.58437743879772,1.52084604195857,-1.51768990710644,0.0708433062212799,0.0755796533181899 +0.902,0.253579561660755,0.966382780994151,1.58440912322887,1.52072031302379,-1.51755524011477,0.0710261198608295,0.0757744675358761 +0.904,0.253609796737465,0.966297290520209,1.58443966750866,1.52059123909368,-1.51741924133827,0.071212305633726,0.0759722290137511 +0.906,0.253640646372745,0.966210458777043,1.58446942369902,1.52046080054698,-1.51728380465444,0.0713975686623441,0.0761696201875363 +0.908,0.253671655562159,0.966122766209393,1.584499073813,1.52032981932985,-1.51714903468423,0.0715814829460378,0.0763662261733949 +0.91,0.253702539467154,0.966034582365616,1.58452908183243,1.52019876515406,-1.51701483159023,0.0717642495652674,0.076562017850125 +0.912,0.253728461779431,0.965950948228156,1.58455901502913,1.52008321307377,-1.51690037703661,0.0719175250078727,0.0767285265008819 +0.914,0.253757129402434,0.965866246710683,1.58459181341249,1.51995683339934,-1.51676577054096,0.0720999140076952,0.0769230495674982 +0.916,0.253787184027082,0.965779948314386,1.58462335031411,1.51982725035309,-1.5166298029343,0.0722857755558737,0.0771205031659632 +0.918,0.253817980160011,0.965692493449091,1.58465388816308,1.51969639618079,-1.5164943805918,0.072470788594137,0.0773176017496084 +0.92,0.253849086566387,0.965604359663805,1.58468406839905,1.51956506577904,-1.51635961641356,0.0726545102014198,0.0775139556355425 +0.922,0.253880219362523,0.965515918301444,1.58471435095777,1.5194337177543,-1.51622541591364,0.0728371305372158,0.0777095521127423 +0.924,0.25391121344859,0.965427424559738,1.58474497561285,1.51930263685746,-1.51609166977343,0.0730188929744936,0.0779044357476875 +0.926,0.253937266415196,0.965343821119456,1.58477539519263,1.51918733321733,-1.51597758503082,0.0731714012668651,0.0780701358802934 +0.928,0.253966203833751,0.965259414300346,1.58480838013183,1.5190612778548,-1.51584327243132,0.0733532423554564,0.0782640196285365 +0.93,0.253996669001825,0.965173628157627,1.58483979692846,1.51893205753467,-1.51570754618845,0.0735387160245182,0.0784609888302182 +0.932,0.25402799794916,0.965086864851133,1.58486993505322,1.51880157879741,-1.5155723257233,0.0737234586380672,0.0786577557587068 +0.934,0.254059733409175,0.964999568533318,1.58489947919503,1.51867061286336,-1.51543773759088,0.0739070064048905,0.078853917660381 +0.936,0.254086786479842,0.96491686011191,1.5849283749693,1.51855500937172,-1.5153229908429,0.0740609100015918,0.0790208989573701 +0.938,0.254112058434178,0.964837955303643,1.58495912585069,1.51844378377242,-1.5152074569658,0.0742152257564724,0.0791875003715275 +0.94,0.254141927473453,0.964756571568658,1.58499061280403,1.51831800122014,-1.51507009482343,0.074402763817659,0.0793859014424927 +0.942,0.254174224905605,0.964672525034694,1.58501927106448,1.51818727001614,-1.51493167130329,0.0745933794590821,0.0795875761879598 +0.944,0.254207709468657,0.964586637951297,1.58504628291911,1.51805436599873,-1.51479425121012,0.0747821918045099,0.0797887227696064 +0.946,0.254241519173779,0.964499660543464,1.58507298805833,1.51792058565734,-1.51465788681972,0.0749688722677065,0.0799888160416365 +0.948,0.254270273493857,0.964416898072027,1.58509974422965,1.51780216774702,-1.51454169930226,0.0751251659906257,0.08015920484192 +0.95,0.254301590501232,0.96433287713687,1.58512969402824,1.51767281924025,-1.51440567442625,0.0753099499552694,0.0803572711297721 +0.952,0.254333924513626,0.964247147571383,1.5851589576365,1.51754040517432,-1.51426854063787,0.0754977028678132,0.0805578538735942 +0.954,0.254366558260077,0.964160158658119,1.58518785033488,1.51740695566297,-1.51413215214757,0.0756842193286147,0.0807576609062958 +0.956,0.254399064322529,0.964072364656648,1.58521695769279,1.5172732840444,-1.51399657886807,0.0758691489859901,0.0809563247924869 +0.958,0.254431210678475,0.963984107491339,1.58524662995742,1.51713982187403,-1.51386169396442,0.0760527489687823,0.0811538722355211 +0.96,0.254462910219292,0.963895623136568,1.58527698140558,1.51700680524217,-1.51372736459895,0.076235309120337,0.081350396167082 +0.962,0.254489326242826,0.963811845362984,1.58530746504585,1.51688985648384,-1.51361279105557,0.0763884344285084,0.0815174061528073 +0.964,0.254518562726262,0.963727088177015,1.58534054280395,1.51676211938379,-1.51347804531396,0.076570814209209,0.0817124548240774 +0.966,0.254549307103569,0.963640827897151,1.58537206387291,1.51663120861006,-1.51334194502472,0.0767567193616173,0.0819104317545624 +0.968,0.254580942596372,0.96355351786144,1.58540228829568,1.51649903246279,-1.51320640739855,0.0769417889741,0.0821080755639051 +0.97,0.254613048888727,0.963465652906156,1.58543187892394,1.51636636753753,-1.51307155203263,0.0771255730868926,0.082305009910219 +0.972,0.254645329586737,0.963377619035246,1.58546134177704,1.51623367649675,-1.51293727962739,0.0773082528022062,0.0825012330245814 +0.974,0.254677599572646,0.963289677808011,1.58549096364791,1.5161012489467,-1.51280348069248,0.0774900753352943,0.0826967879653313 +0.976,0.254709761844602,0.963201984680791,1.58552085298297,1.5159692532682,-1.51267005944884,0.0776712500612154,0.0828917341529854 +0.978,0.254741789122644,0.963114616790038,1.58555098950166,1.51583776017465,-1.51253694286801,0.0778519461043349,0.083086140211054 +0.98,0.254773696143045,0.963027600824995,1.58558128366389,1.51570677812337,-1.51240407209575,0.0780322878377193,0.0832800869674892 +0.982,0.254805523697987,0.962940935420911,1.58561161522491,1.51557627018239,-1.51227140505215,0.0782123708549378,0.0834736570283578 +0.984,0.254837318610033,0.962854607003895,1.58564186942433,1.51544617994946,-1.51213890714495,0.0783922609259635,0.0836669342470551 +0.986,0.254869127284442,0.962768598745418,1.5856719499339,1.51531643781539,-1.51200655435884,0.0785720090338417,0.083859993452684 +0.988,0.254900984920328,0.962682894610789,1.58570179230285,1.51518697693674,-1.5118743249559,0.0787516479817288,0.0840529023784548 +0.99,0.254932916934648,0.962597479603574,1.58573135939383,1.51505773115992,-1.51174220374922,0.0789312048583128,0.0842457146789904 +0.992,0.254964934373592,0.962512338493677,1.58576064292858,1.51492864442238,-1.51161017507845,0.0791106954662624,0.0844384748936611 +0.994,0.254997039629447,0.962427453712621,1.58578965229833,1.51479966418125,-1.51147822803711,0.0792901347973335,0.0846312139953008 +0.996,0.255029224441869,0.962342803905733,1.58581841356348,1.51467074807845,-1.51134635015479,0.07946952991378,0.0848239560671889 +0.998,0.255061476851667,0.962258362960501,1.58584695846884,1.51454185599886,-1.51121453308546,0.0796488892825857,0.0850167147877152 +1,0.255093779502029,0.962174100253504,1.58587532515158,1.51441295622311,-1.51108276660738,0.0798282149802496,0.0852095003531196 +1.002,0.255126116244548,0.962089981379187,1.58590354950724,1.51428401757617,-1.51095104444959,0.0800075115591892,0.0854023158044007 +1.004,0.255158469707889,0.962005969752122,1.58593166826434,1.51415501596838,-1.51081935834184,0.0801867780065362,0.0855951635331783 +1.006,0.255190826998271,0.961922028180989,1.58595971237321,1.51402592703853,-1.51068770383667,0.080366016466658,0.0857880410983484 +1.008,0.255223176332864,0.961838120787433,1.58598771161358,1.51389673313839,-1.51055607434642,0.0805452241577752,0.0859809472140733 +1.01,0.255255511863952,0.961754214440763,1.58601568903237,1.51376741631896,-1.51042446694606,0.0807244020568973,0.0861738771240325 +1.012,0.255287829532649,0.961670280200968,1.58604366620951,1.513637965528,-1.51029287639526,0.080903546786521,0.0863668282405322 +1.014,0.255320131248216,0.961586294071926,1.58607165805761,1.51350836967152,-1.51016130094459,0.0810826592554729,0.0865597952579372 +1.016,0.255352420227029,0.961502237677575,1.58609967827651,1.5133786247703,-1.51002973636541,0.081261736485772,0.0867527756104014 +1.018,0.255384704795711,0.961418098259074,1.58612773424046,1.51324872688259,-1.50989818177965,0.0814407801796316,0.0869457644534942 +1.02,0.255416993466966,0.961333868672072,1.5861558325197,1.5131186790682,-1.50976663370509,0.0816197884505405,0.0871387600339147 +1.022,0.255449298594647,0.961249546821796,1.586183973826,1.51298848407885,-1.50963509191317,0.0817987642969394,0.0873317585911541 +1.024,0.25548163138743,0.961165135230847,1.58621215861705,1.51285815109204,-1.50950355348738,0.0819777072272661,0.0875247596640759 +1.026,0.255514005585775,0.961080640177592,1.58624038212636,1.51272768818148,-1.50937201870357,0.0821566216429286,0.0877177609194983 +1.028,0.255546432552558,0.960996071087598,1.58626864006377,1.51259710887432,-1.50924048509352,0.082335508368802,0.0879107633954797 +1.03,0.255578925079809,0.960911439599192,1.58629692372104,1.51246642448663,-1.50910895333938,0.0825143729660255,0.0881037662564902 +1.032,0.25561149263669,0.96082675896509,1.58632522573394,1.51233565060729,-1.50897742133647,0.0826932171968403,0.0882967719758528 +1.034,0.255644145358893,0.960742043192746,1.58635353521084,1.51220479941353,-1.50884589009539,0.0828720472983156,0.0884897810283591 +1.036,0.25567688948402,0.96065730656725,1.58638184349051,1.51207388619536,-1.50871435780151,0.0830508654174176,0.0886827970271511 +1.038,0.255709731532275,0.960572562945335,1.58641013922575,1.51194292175975,-1.50858282572141,0.0832296778787666,0.0888758213770222 +1.04,0.255742673921639,0.960487825451533,1.58643841407108,1.51181191908877,-1.50845129225959,0.0834084866249093,0.0890688583896198 +1.042,0.255775719317896,0.960403105955749,1.5864666576665,1.51168088590903,-1.50831975886815,0.0835872975064004,0.0892619099254859 +1.044,0.255808866397701,0.960318414954994,1.5864948632119,1.51154983153769,-1.50818822410275,0.0837661117545744,0.0894549805121862 +1.046,0.255842114328316,0.960233761232571,1.58652302232348,1.51141875965052,-1.50805668953535,0.0839449343129011,0.0896480719998396 +1.048,0.255875458634372,0.960149151912186,1.58655113048139,1.51128767532663,-1.50792515381155,0.0841237653584285,0.0898411887010099 +1.05,0.255908895760727,0.960064592276269,1.58657918175924,1.51115657800634,-1.50779361856665,0.084302608682359,0.0900343320761911 +1.052,0.255942418995564,0.959980085962801,1.58660717415693,1.5110254687082,-1.50766208248558,0.08448146326447,0.0902275059057724 +1.054,0.255976023070417,0.959895634907318,1.58663510422447,1.51089434313625,-1.50753054722245,0.0846603317006586,0.0904207110124085 +1.056,0.256009700095427,0.959811239642882,1.5866629723081,1.51076319901846,-1.50739901146346,0.0848392118245355,0.0906139504671076 +1.058,0.256043444156196,0.959726899323444,1.58669077710062,1.51063202930515,-1.50726747684992,0.0850181051720655,0.0908072243472211 +1.06,0.256077247224225,0.959642612083477,1.58671852083582,1.51050082956819,-1.50713594204377,0.0851970086375801,0.0910005349724897 +1.062,0.25611110371888,0.959558375099369,1.58674620379995,1.51036959122879,-1.50700440865408,0.0853759229613846,0.0911938816917602 +1.064,0.256145006365635,0.959474184967004,1.58677382950874,1.51023830895937,-1.50687287530416,0.0855548444041561,0.0913872661411907 +1.066,0.25617895070173,0.959390037762301,1.5868013992109,1.51010697388666,-1.50674134356155,0.0857337732424438,0.0915806870499313 +1.068,0.256212930865571,0.959305929401784,1.58682891707635,1.5099755809498,-1.50660981200555,0.0859127054454729,0.091774145511422 +1.07,0.256246944035442,0.959221855672099,1.58685638471528,1.50984412203919,-1.50647828216071,0.0860916411651886,0.0919676397977594 +1.072,0.256280986144197,0.959137812548779,1.58688380639767,1.50971259328075,-1.50634675256356,0.0862705764020615,0.0921611706355611 +1.074,0.25631505625063,0.959053796175757,1.58691118360277,1.5095809880883,-1.50621522469961,0.0864495114797851,0.0923547360199404 +1.076,0.256349152183339,0.958969803129166,1.58693852028075,1.50944930436131,-1.5060836970682,0.0866284426907606,0.0925483364881081 +1.078,0.256383274853038,0.958885830339454,1.58696581743862,1.50931753744547,-1.505952171123,0.0868073707497934,0.0927419699261156 +1.08,0.256417423837257,0.958801875298157,1.5869930784466,1.5091856872465,-1.50582064533407,0.086986292414545,0.0929356368356268 +1.082,0.256451601648216,0.958717935925406,1.58702030365903,1.50905375110751,-1.50568912113194,0.0871652089167637,0.0931293351292532 +1.084,0.256485809275152,0.958634010726594,1.58704749576125,1.50892173085315,-1.50555759696624,0.0873441175573293,0.0933230653882615 +1.086,0.256520050425907,0.958550098615573,1.58707465441887,1.50878962560222,-1.50542607425317,0.0875230201170936,0.0935168256449247 +1.088,0.256554327045874,0.958466199034031,1.58710178165636,1.5086574387635,-1.50529455143046,0.0877019144296484,0.0937106166309749 +1.09,0.256588643552114,0.958382311744936,1.58712887652495,1.50852517080712,-1.50516302990813,0.0878808027763853,0.093904436547573 +1.092,0.256623002347349,0.95829843693002,1.58715594050231,1.50839282623629,-1.50503150811963,0.0880596834424742,0.0940982863058515 +1.094,0.25665740806358,0.958214574969023,1.58718297216837,1.50826040634178,-1.50489998747565,0.0882385591021425,0.0942921642866507 +1.096,0.256691863086711,0.958130726530301,1.58720997261544,1.50812791617249,-1.50476846641172,0.088417428364481,0.0944860715754255 +1.098,0.256726371822956,0.95804689234978,1.58723694012241,1.5079953572947,-1.50463694634465,0.0885962941552377,0.0946800067147376 +1.1,0.256760936245346,0.957963073327031,1.58726387556634,1.50786273478049,-1.50450542571691,0.0887751552590661,0.0948739709361313 +1.102,0.256795560191447,0.957879270314406,1.58729077708767,1.50773004998835,-1.5043739059555,0.0889540147035136,0.0950679629085603 +1.104,0.256830244938003,0.957795484226963,1.58731764549699,1.50759730758249,-1.50424238551332,0.0891328713034237,0.0952619839696688 +1.106,0.256864993533516,0.957711715847949,1.58734447892689,1.50746450834509,-1.50411086583029,0.0893117280515431,0.0954560328729888 +1.108,0.256899806402376,0.957627965956587,1.58737127823047,1.5073316562332,-1.50397934537198,0.0894905836692845,0.0956501110205471 +1.11,0.256934685711319,0.95754423515183,1.58739804161834,1.50719875122637,-1.50384782559278,0.0896694410067734,0.0958442172109777 +1.112,0.256969631000235,0.957460523998041,1.58742477004845,1.50706579642178,-1.50371630497208,0.0898482986024016,0.0960383528746756 +1.114,0.257004643577955,0.957376832865382,1.58745146184897,1.50693279091534,-1.50358478497928,0.0900271590934679,0.0962325168241196 +1.116,0.257039722173887,0.95729316209039,1.5874781181012,1.5067997369306,-1.50345326410776,0.0902060207851937,0.0964267104920698 +1.118,0.257074867356238,0.957209511828922,1.5875047372509,1.5066666327272,-1.50332174384159,0.090384886071621,0.0966209326845594 +1.12,0.257110077196875,0.957125882226801,1.58753132048735,1.50653347975577,-1.50319022268743,0.0905637530132547,0.0968151848220104 +1.122,0.25714535170405,0.957042273280055,1.58755786634653,1.50640027558478,-1.50305870214295,0.09074262376673,0.0970094656946581 +1.124,0.257180688492392,0.956958685010223,1.58758437608988,1.50626702107212,-1.50292718072663,0.0909214961691479,0.0972037767060192 +1.126,0.257216087222301,0.956875117326583,1.58761084830284,1.50613371330053,-1.50279565994795,0.091100372174297,0.0973981166300423 +1.128,0.257251545267564,0.956791570201188,1.58763728427662,1.50600035275632,-1.50266413833517,0.0912792494411215,0.0975924868561369 +1.13,0.25728706215461,0.956708043528667,1.58766368260502,1.50586693626418,-1.50253261740725,0.0914581297739951,0.0977868861471157 +1.132,0.257322635221604,0.956624537297247,1.58769004457177,1.5057334641647,-1.50240109569961,0.0916370107125985,0.0979813158849752 +1.134,0.257358264052385,0.956541051443178,1.58771636874751,1.50559993324107,-1.50226957473801,0.0918158939738393,0.0981757748286977 +1.136,0.257393946122707,0.956457586015591,1.58774265638422,1.50546634388911,-1.50213805306208,0.0919947770406429,0.0983702643601146 +1.138,0.257429681225601,0.956374141024229,1.58776890601322,1.50533269303067,-1.50200653220139,0.0921736616035087,0.0985647832408129 +1.14,0.257465467102389,0.956290716597642,1.58779511884707,1.50519898127234,-1.50187501069675,0.0923525451462239,0.098759332857657 +1.142,0.25750130385812,0.956207312824446,1.58782129337829,1.50506520580291,-1.50174349007852,0.0925314293856214,0.0989539119783227 +1.144,0.257537189576822,0.956123929905725,1.5878474307882,1.50493136753943,-1.50161196888569,0.0927103118528901,0.0991485219963353 +1.146,0.257573124727343,0.956040567991242,1.58787352954539,1.50479746400837,-1.50148044864657,0.0928891943307435,0.0993431616850648 +1.148,0.257609107763839,0.95595722732788,1.58789959082027,1.50466349647988,-1.50134892789567,0.0930680744296958,0.0995378324423946 +1.15,0.257645139523643,0.955873908092941,1.58792561308173,1.50452946283422,-1.50121740815681,0.093246954022465,0.0997325330432944 +1.152,0.257681218815087,0.955790610540917,1.58795159751584,1.5043953646865,-1.50108588795782,0.0934258308152154,0.0999272648844238 +1.154,0.257717346809882,0.955707334836218,1.58797754261922,1.50426120024135,-1.50095436881619,0.0936047067795273,0.100122026735607 +1.156,0.25775352262101,0.95562408120055,1.58800344962032,1.50412697141143,-1.50082284925156,0.0937835797191053,0.100316819984774 +1.158,0.257789747692497,0.955540849747162,1.58802931706801,1.5039926766638,-1.50069133077395,0.0939624517000053,0.100511643388773 +1.16,0.257820477929629,0.955462372946168,1.58805532141527,1.50387476166473,-1.50057918124898,0.0941125180967708,0.100677493166962 +1.162,0.257854823537382,0.955382799354837,1.58808289171608,1.5037447913864,-1.50044639978066,0.0942927164395435,0.100872586560703 +1.164,0.257891171480079,0.955301627092627,1.58810839668665,1.50361077103479,-1.50031195169765,0.0944769185190826,0.101071370130849 +1.166,0.257928694508309,0.955219279864806,1.58813241776144,1.5034747960754,-1.50017784015076,0.094660595799677,0.10127039698287 +1.168,0.257966793001357,0.955136201974125,1.58815585995871,1.5033377911316,-1.50004421918414,0.0948432143815127,0.101469159249565 +1.17,0.258005034628733,0.955052717102499,1.58817939267648,1.50320032809017,-1.49991101597508,0.0950249141474618,0.101667539922833 +1.172,0.258043134867729,0.954969022263924,1.58820340767762,1.5030627844656,-1.49977813594487,0.0952059049146312,0.101865492352704 +1.174,0.258080940239344,0.954885214992529,1.58822806197307,1.50292538491762,-1.49964550191223,0.0953863720777689,0.102063000086408 +1.176,0.258118396084361,0.954801328935143,1.58825335169029,1.50278824431245,-1.49951305250288,0.0955664553308253,0.102260077952029 +1.178,0.258155521568611,0.954717366325704,1.58827917237595,1.50265139415396,-1.49938074641588,0.0957462610072921,0.102456761136865 +1.18,0.258192377664126,0.954633322705885,1.58830537853633,1.50251482004394,-1.49924855227415,0.095925860553857,0.10265310315906 +1.182,0.258229048968891,0.954549201785547,1.58833181622508,1.50237847854156,-1.49911645110154,0.0961053066481232,0.102849162246543 +1.184,0.258265622560188,0.954465022004486,1.58835835130991,1.50224232132567,-1.49898442718625,0.0962846319243304,0.10304499970985 +1.186,0.258302181227258,0.954380816356,1.58838487459198,1.50210629891426,-1.4988524718611,0.0964638629469486,0.103240669620406 +1.188,0.258338792321988,0.954296628493125,1.58841130949712,1.50197037385187,-1.49872057561017,0.0966430157029968,0.103436221557084 +1.19,0.25837550910488,0.9542125067281,1.58843760363106,1.50183451580167,-1.49858873316276,0.0968221066983131,0.103631694212471 +1.192,0.258412365874333,0.954128498227107,1.58846372883844,1.50169870827012,-1.49845693686428,0.0970011462599401,0.10382712100128 +1.194,0.258449383660909,0.954044643921392,1.58848966987646,1.50156293956502,-1.49832518258618,0.0971801477685164,0.104022525623059 +1.196,0.258486568004227,0.953960975260466,1.58851542476983,1.5014272073759,-1.49819346354784,0.0973591195344109,0.104217928737546 +1.198,0.258523916031535,0.953877512326244,1.58854099542829,1.50129150900583,-1.49806177647125,0.097538073126308,0.10441334382398 +1.2,0.258561414773189,0.953794263716118,1.58856639044973,1.50115584610009,-1.49793011553405,0.0977170148356453,0.104608783617086 +1.202,0.258599048171105,0.95371122727526,1.58859161806983,1.50102021565034,-1.49779847851361,0.0978959538047663,0.104804255519043 +1.204,0.258636794929922,0.953628391876935,1.58861669082025,1.5008846158218,-1.49766686067072,0.0980748934855964,0.104999767530826 +1.206,0.258674634853838,0.953545739302469,1.58864161971861,1.50074903815791,-1.49753526081504,0.0982538398679062,0.105195323213495 +1.208,0.258712545953937,0.953463246512155,1.58866641958045,1.50061347451885,-1.49740367514248,0.098432793139794,0.105390927261827 +1.21,0.258750510034859,0.95338088750868,1.58869110342985,1.50047791025559,-1.49727210326144,0.0986117560977412,0.105586580256279 +1.212,0.258788509087258,0.953298635246545,1.58871568775961,1.50034233191341,-1.49714054201607,0.0987907259882738,0.105782284140069 +1.214,0.2588265302332,0.953216462936167,1.58874018675537,1.50020672095048,-1.49700899151608,0.0989697030538111,0.105978036967251 +1.216,0.258864561563066,0.953134345315436,1.58876461734795,1.50007106175574,-1.49687744898228,0.0991486824892939,0.106173838421053 +1.218,0.258902596621946,0.953052259321598,1.58878899327889,1.49993533548142,-1.49674591480373,0.0993276630448608,0.106369684629554 +1.22,0.258940629871503,0.952970184787566,1.58881333009048,1.4997995280049,-1.49661438640872,0.0995066390055035,0.106565573748824 +1.222,0.258978660892947,0.952888104620423,1.58883763921863,1.49966362356741,-1.49648286435014,0.0996856087739167,0.106761500821296 +1.224,0.259016689636686,0.95280600509209,1.58886193310171,1.49952761244668,-1.49635134619391,0.099864566804859,0.106957463377408 +1.226,0.259054720487605,0.952723875694757,1.58888621944524,1.49939148424287,-1.4962198326246,0.100043512116532,0.107153456277056 +1.228,0.259092757426087,0.95264170917878,1.58891050654753,1.49925523517876,-1.49608832133769,0.100222440136855,0.107349477276817 +1.23,0.259130808058336,0.952559501213345,1.58893479778152,1.49911886101286,-1.49595681315648,0.100401351120038,0.107545521806709 +1.232,0.259168878771895,0.952477250274827,1.58895909713733,1.49898236400079,-1.4958253059191,0.100580241893082,0.107741588470724 +1.234,0.259206978795575,0.952394957194953,1.58898340388576,1.49884574551058,-1.49569380060124,0.100759114180133,0.107937673739165 +1.236,0.259245115398556,0.952312624966005,1.58900771827848,1.49870901274953,-1.49556229519343,0.100937966260388,0.108133777377591 +1.238,0.259283298015331,0.952230258232437,1.58903203632096,1.4985721712035,-1.49543079082734,0.101116801220437,0.108329897060328 +1.24,0.259321533514491,0.952147863062587,1.58905635555271,1.49843523125636,-1.49529928564292,0.101295618549703,0.108526033741576 +1.242,0.259359830406048,0.952065446430024,1.58908066985536,1.49829820057886,-1.495167780918,0.101474422349553,0.10872218621026 +1.244,0.259398194192058,0.951983015995918,1.58910497524427,1.4981610907553,-1.49503627492684,0.101653212897444,0.108918356425313 +1.246,0.259436631662985,0.951900579622185,1.58912926465374,1.49802390972354,-1.49490476907323,0.101831994841847,0.109114544036432 +1.248,0.259475146333842,0.951818145203773,1.58915353369122,1.49788666849127,-1.49477326174265,0.102010768764132,0.109310751705458 +1.25,0.259513742829179,0.951735720248725,1.58917777536287,1.49774937369189,-1.49464175443912,0.102189539383088,0.10950697961525 +1.252,0.259552422401654,0.951653311790118,1.58920198576276,1.49761203443504,-1.49451024563295,0.102368307136652,0.109703230794682 +1.254,0.259591187398861,0.95157092605601,1.58922615872158,1.4974746550058,-1.49437873690116,0.102547076411754,0.109899505632371 +1.256,0.259630036854602,0.951488568476565,1.58925029142112,1.49733724185994,-1.49424722677257,0.102725847159318,0.110095807216942 +1.258,0.259663075529859,0.951410953010201,1.58927489347253,1.49721670646196,-1.4941351182504,0.102875739838877,0.110262923328554 +1.26,0.259699968942761,0.951332203603194,1.58930078519107,1.497083829227,-1.49400232320544,0.103055904464243,0.110459482294489 +1.262,0.259739009031521,0.951251873489747,1.58932449521536,1.4969467917055,-1.49386785637402,0.103240087007832,0.110659767368203 +1.264,0.259779317279162,0.951170408263792,1.58934667177307,1.4968077593879,-1.49373373554075,0.103423723975449,0.110860304542581 +1.266,0.259820261851048,0.951088259635569,1.58936824982114,1.49666768922841,-1.49360011854375,0.103606289367821,0.111060574134023 +1.268,0.259861380908891,0.951005750056538,1.58938991888376,1.49652718059978,-1.49346692484605,0.103787926261408,0.11126045952046 +1.27,0.259896433281724,0.950927776439157,1.58941263022777,1.49640358792477,-1.49335346440883,0.103939963053632,0.111430673225647 +1.272,0.25993498517811,0.950848544129829,1.58943729121346,1.49626782676499,-1.49321955626971,0.104121762141265,0.111629878392996 +1.274,0.259975256961766,0.950767634276489,1.58946044327569,1.49612821198161,-1.49308416042559,0.104307198529701,0.111832351730678 +1.276,0.260016379991289,0.950685487256642,1.58948263683065,1.49598694681889,-1.49294925312149,0.104491809509418,0.112034652945873 +1.278,0.260057780959265,0.950602543830662,1.58950466186703,1.49584497190568,-1.4928149621208,0.1046751421406,0.112236314279569 +1.28,0.260099081146019,0.950519125486345,1.58952705598908,1.49570284286887,-1.49268118612977,0.104857389931178,0.112437278725556 +1.282,0.26013408622625,0.950440141867117,1.58955067677223,1.49557791810051,-1.49256722524226,0.105009906310767,0.11260829264497 +1.284,0.260172516446165,0.950359826864506,1.5895762491963,1.49544096637398,-1.49243287698857,0.105192102651304,0.112808125570955 +1.286,0.260212653402823,0.950277812013003,1.58960025711438,1.49530028316987,-1.49229709986837,0.105377855756538,0.113011081553244 +1.288,0.260253679775531,0.950194589894028,1.58962320820806,1.49515805049354,-1.49216186555465,0.105562712814155,0.113213755977906 +1.29,0.260295058697237,0.950110651273606,1.58964586725005,1.49501519561178,-1.49202729571683,0.105746233167945,0.113415711442816 +1.292,0.260336433327035,0.950026360867689,1.58966875991724,1.49487226860821,-1.49189328288791,0.105928622464171,0.113616915060419 +1.294,0.260371575018148,0.949946658720409,1.58969278253475,1.49474668512314,-1.49177912567111,0.106081236119966,0.113788105837052 +1.296,0.260410272267742,0.949865797008961,1.58971858722953,1.49460911987829,-1.49164460521417,0.106263521803019,0.113988119386974 +1.298,0.260450786193522,0.949783423788217,1.58974268372916,1.49446789383689,-1.49150868186111,0.106449350086249,0.114191250598504 +1.3,0.260492279562762,0.94970003345123,1.58976559560684,1.4943251996362,-1.49137332553432,0.106634272393963,0.114394099987338 +1.302,0.260534194040549,0.949616107824521,1.58978810127127,1.49418196913563,-1.49123865456762,0.10681785489063,0.114596236044575 +1.304,0.260576150921206,0.949531994614125,1.58981073925991,1.49403875202405,-1.49110455823603,0.107000309163308,0.114797630796385 +1.306,0.260617925629463,0.949447910201688,1.58983377953214,1.49389587833713,-1.49097091802711,0.107181906193485,0.114998317335656 +1.308,0.260653338746819,0.949368668510711,1.58985797547967,1.49377067005814,-1.49085705445189,0.107333948827129,0.115169032790712 +1.31,0.260692329236458,0.949288426801384,1.58988377132007,1.49363356565408,-1.49072275667318,0.107515864009231,0.115368693349448 +1.312,0.260733183532171,0.949206778727082,1.5899076467862,1.49349282460584,-1.4905870098688,0.107701457229665,0.11557158295264 +1.314,0.260775076305352,0.949124181764421,1.58993012682973,1.49335058547114,-1.49045180286639,0.107886241706205,0.115774299305137 +1.316,0.260811337555775,0.949045789194981,1.58995273920743,1.49322493493995,-1.49033668369453,0.108040822854129,0.115947069011855 +1.318,0.260845460872272,0.948970729834001,1.58997725365976,1.49310391200749,-1.49022082813721,0.108195733707625,0.116119384162468 +1.32,0.260885451808803,0.948892889126302,1.59000106817159,1.49296642129642,-1.49008302203222,0.108384176487219,0.116324328283201 +1.322,0.260928522097944,0.948812405810143,1.59002161329901,1.49282312900048,-1.48994424378098,0.108575451410007,0.116532628031792 +1.324,0.260973085554008,0.948730225100015,1.59004051023022,1.49267729141496,-1.48980660136912,0.108764609902479,0.116740324950754 +1.326,0.261018052017062,0.948647122071658,1.59005930813218,1.49253049527368,-1.48967011600932,0.108951398637726,0.116946843677426 +1.328,0.26106270317088,0.948563591834541,1.59007897206359,1.49238370575185,-1.48953456477281,0.109136275383809,0.117152093916567 +1.33,0.261106636644143,0.948479894299577,1.5900999270495,1.49223749004418,-1.48939973672747,0.109319717771195,0.117356089586536 +1.332,0.261143533501591,0.948400823375476,1.59012298108514,1.49210938925257,-1.48928489312908,0.109473166345036,0.117529530990171 +1.334,0.26118350656209,0.948320496607793,1.59014829482412,1.49196966445875,-1.48914975150713,0.10965620926286,0.117731480937021 +1.336,0.261224907945692,0.948238495863872,1.59017221255382,1.49182658222249,-1.48901327849285,0.109842697493773,0.117936240958451 +1.338,0.261267015939371,0.948155281844748,1.59019509909038,1.49168223778061,-1.48887744568702,0.110028187390079,0.118140467214883 +1.34,0.261309375299463,0.948071338702345,1.59021762435481,1.49153748267519,-1.48874236193743,0.11021224487197,0.1183437897645 +1.342,0.26135170054174,0.947987044355057,1.59024025391618,1.49139279650263,-1.48860791425912,0.110395091890877,0.118546225255807 +1.344,0.261387631374612,0.947907352341199,1.59026403666354,1.49126578536915,-1.48849340912916,0.110548052000243,0.118718444205038 +1.346,0.261427281419229,0.947826530095652,1.59028930927376,1.491126684307,-1.48835857115237,0.110730687869542,0.118919527785926 +1.348,0.261468880973542,0.947744279526245,1.59031268143857,1.4909838873542,-1.48822237888106,0.110916811194235,0.119123704849732 +1.35,0.261511578949073,0.947661125425388,1.59033472809202,1.49083960787194,-1.48808680630227,0.111101969243589,0.119327570172509 +1.352,0.261554795489421,0.947577564031941,1.59035627126572,1.4906947999759,-1.48795196026794,0.11128573147685,0.119530699611324 +1.354,0.261592847752114,0.947493387812609,1.59037975876812,1.49055363683444,-1.48781759350634,0.111468651827441,0.119732195742032 +1.356,0.261626431304938,0.94740865188436,1.59040457724574,1.49041491915325,-1.48768359362183,0.111651351453401,0.119932749494902 +1.358,0.261656273489222,0.947323460608759,1.59043007931465,1.49027760557298,-1.48754990162796,0.111833898015552,0.12013261582021 +1.36,0.261683052742834,0.947237986907291,1.59045574562398,1.49014081870035,-1.48741648337852,0.112016231498745,0.120331975572484 +1.362,0.26170738591381,0.947152455072719,1.59048119522909,1.49000385021049,-1.48728331975958,0.112198268708,0.120530977475443 +1.364,0.261729827370281,0.947067114176471,1.59050617136027,1.48986616713819,-1.48715039306349,0.11237992358498,0.120729748640914 +1.366,0.26175585537723,0.946988079819816,1.59052738732245,1.48973712116348,-1.48703741408119,0.112531470773096,0.120900798831679 +1.368,0.261775041317981,0.946907967440957,1.5905536541987,1.48960278916837,-1.48690365863831,0.11271267330158,0.121098743136176 +1.37,0.261792827992998,0.946826553772553,1.5905780346468,1.48946488127854,-1.48676828211429,0.112898400845455,0.121300563706759 +1.372,0.261810454225896,0.9467444172773,1.59060007865897,1.48932397009836,-1.48663337971612,0.113083529422062,0.12150283463802 +1.374,0.261828346808896,0.94666218991286,1.59062037985923,1.48918043960569,-1.48649914859392,0.113267213664898,0.12170503833562 +1.376,0.261851758519529,0.94658625164248,1.59063647693994,1.48904443397754,-1.48638525124629,0.113419789408233,0.12187948226506 +1.378,0.261869954773645,0.946509314684547,1.59065776604949,1.48890272334454,-1.4862508601555,0.113601253435824,0.12208066758745 +1.38,0.261888157136418,0.946431141343061,1.59067769641269,1.48875757865706,-1.48611505287263,0.113786707208161,0.1222854895916 +1.382,0.261907383318633,0.946352200305086,1.59069602567656,1.48861002724994,-1.4859798615338,0.113971233016002,0.12249045119128 +1.384,0.261927853769274,0.946272963870776,1.59071343193516,1.48846079473878,-1.48584542689484,0.114154155657039,0.122695002209198 +1.386,0.261949626278636,0.946193764140628,1.59073056215689,1.48831052341441,-1.48571164391581,0.114335623517112,0.122899035430544 +1.388,0.261972712730539,0.946114774373123,1.59074787816741,1.48815980207873,-1.48557837981937,0.114515916636974,0.123102517126353 +1.39,0.2619971024014,0.946036030152407,1.59076565394449,1.48800914995082,-1.48544551886866,0.114695320267117,0.123305432791725 +1.392,0.262022768996195,0.945957467304523,1.5907840181259,1.48785900516843,-1.48531296288621,0.114874088596765,0.123507791624519 +1.394,0.262049675174578,0.945878962040681,1.59080299551228,1.48770971083208,-1.48518063727077,0.115052446079994,0.12370961864854 +1.396,0.262077776211254,0.94580036781975,1.59082255228125,1.48756151509021,-1.4850484815504,0.115230576646093,0.123910957839561 +1.398,0.262107023130041,0.945721543042411,1.59084262407182,1.48741456951439,-1.48491645256219,0.115408632164164,0.124111859251997 +1.4,0.262137364993923,0.945642370391019,1.59086314134743,1.48726893957374,-1.48478451513231,0.115586725905244,0.124312379598696 +1.402,0.262168750592196,0.94556276654265,1.59088403771274,1.48712461141539,-1.48465264577119,0.115764943458316,0.12451257050694 +1.404,0.262201129389645,0.945482685817257,1.59090525874118,1.48698150858244,-1.48452082416511,0.115943337594141,0.124712482092781 +1.406,0.262234452077299,0.945402117791002,1.5909267582453,1.48683950270199,-1.48438903783527,0.116121940248338,0.124912154687184 +1.408,0.262273752718163,0.945326974674539,1.59094542995415,1.48670817038187,-1.48427702609581,0.116271068782981,0.125083996244947 +1.41,0.262307910021619,0.945249642636017,1.59097006998008,1.48657365163889,-1.48414401432371,0.116450581695691,0.125282612717644 +1.412,0.262342036668093,0.945169808464284,1.5909937419303,1.48643746963915,-1.4840091911086,0.116635364337243,0.125484976757782 +1.414,0.262377022795026,0.945088013054424,1.59101595909122,1.48629995544934,-1.48387467864199,0.1168202399544,0.12568762141221 +1.416,0.26241297860521,0.945004912628959,1.59103725966226,1.48616118891497,-1.48374068755777,0.117004290886469,0.125890012814152 +1.418,0.262449873776278,0.944921091136413,1.59105821266567,1.48602123900563,-1.48360716775082,0.117187441015735,0.126092046509446 +1.42,0.262487651559991,0.944837002810031,1.59107923099583,1.48588021221615,-1.48347403024355,0.117369766547957,0.126293681033574 +1.422,0.262526248260411,0.944752963067937,1.59110054698137,1.48573824773954,-1.48334119435969,0.117551372994072,0.126494889563254 +1.424,0.262565596917694,0.944669165258933,1.59112224287308,1.48559550959858,-1.48320859059171,0.117732361926871,0.12669566939299 +1.426,0.262605629188981,0.944585707854016,1.59114428858073,1.48545217004457,-1.4830761680235,0.117912833705953,0.126896037981121 +1.428,0.262646277081154,0.944502624957305,1.59116658861201,1.48530840174312,-1.48294388613251,0.118092876990773,0.12709603776164 +1.43,0.262687474707104,0.944419912450546,1.59118901525473,1.48516436458263,-1.48281171853337,0.118272576113508,0.127295723583589 +1.432,0.262734296664836,0.944343452074917,1.5912084020735,1.4850299530382,-1.48269941353442,0.118422294758091,0.12746751223823 +1.434,0.262775490442222,0.944265530264058,1.5912334263665,1.48489163126937,-1.48256615004073,0.118601992643951,0.127666068587072 +1.436,0.26281621441838,0.944185763191913,1.59125709472545,1.48475116977392,-1.48243112905503,0.118786640058958,0.127868418244033 +1.438,0.262857367899617,0.944104608675498,1.59127889451549,1.48460915225034,-1.48229647535128,0.118971121073701,0.128071120110543 +1.44,0.262899064530222,0.944022638525495,1.59129937108052,1.48446588092148,-1.48216239645965,0.119154585922497,0.128273663311546 +1.442,0.262941279195145,0.943940353583083,1.59131912638428,1.48432160731442,-1.48202883692024,0.119337025218837,0.128475959853579 +1.444,0.26298396350868,0.943858126919463,1.59133862503048,1.48417657806792,-1.48189570123423,0.119518575548979,0.128677976423437 +1.446,0.263027065240509,0.943776194852763,1.59135816311756,1.48403103061673,-1.48176290169512,0.119699394131644,0.128879686135877 +1.448,0.263070531617663,0.94369467387065,1.59137789275997,1.48388518791974,-1.48163036158066,0.119879624534875,0.129081079287938 +1.45,0.263114310791718,0.943613588338457,1.59139785474537,1.48373924595621,-1.48149802299057,0.120059399146382,0.129282160852179 +1.452,0.263158353161001,0.943532901913706,1.59141802156831,1.48359337103265,-1.48136583885046,0.120238828974821,0.12948295697159 +1.454,0.263202612758446,0.943452544906029,1.59143832773693,1.48344769231869,-1.48123377690329,0.120418011716495,0.129683503826026 +1.456,0.263252240173581,0.943378350559431,1.59145569275402,1.48331206704726,-1.48112159873365,0.120567299044711,0.129856177155745 +1.458,0.263295885218709,0.94330252398227,1.59147880099386,1.48317291870048,-1.48098843796505,0.120746676143375,0.130055644486109 +1.46,0.263338781668596,0.943224650782075,1.59150069384866,1.48303190877832,-1.48085350947579,0.120931116191931,0.130258926926559 +1.462,0.263381864054241,0.943145160070168,1.59152088540284,1.48288954363669,-1.48071894223341,0.121115476978415,0.130462557430981 +1.464,0.263425271256427,0.943064603484364,1.59153994214852,1.48274605619044,-1.4805849433411,0.121298889884236,0.130666005673325 +1.466,0.263469000817584,0.942983470815011,1.59155847894743,1.48260163509181,-1.4804514558868,0.121481329682724,0.130869169107 +1.468,0.263518244912118,0.942908052215305,1.5915739735559,1.4824662409129,-1.48033818013762,0.121633184551399,0.13104432155422 +1.47,0.263561598758344,0.942830858127054,1.59159545231594,1.48232644281437,-1.4802041567659,0.121814529816964,0.1312460610117 +1.472,0.263604319490436,0.942751675457386,1.59161614844387,1.48218404416685,-1.48006854713367,0.122000427629789,0.131451354841234 +1.474,0.263647339426411,0.942671029857046,1.59163563449716,1.48203972367337,-1.47993343432037,0.122185811000126,0.131656697323273 +1.476,0.263690786254769,0.942589497672285,1.59165444492303,1.48189389130601,-1.47979898922586,0.122369887459489,0.131861549256954 +1.478,0.26373464297236,0.942507550615946,1.59167310932358,1.48174690472908,-1.47966512859982,0.122552704454886,0.13206582365618 +1.48,0.263778867373469,0.942425522409088,1.59169198902695,1.48159910809304,-1.47953173752719,0.12273445053939,0.132269508434129 +1.482,0.263823413096086,0.942343616215665,1.59171126894465,1.48145082334701,-1.47939871555753,0.122915328774365,0.132472610189427 +1.484,0.263868233665797,0.94226193102439,1.59173099707124,1.48130234245257,-1.4792659778096,0.123095522180257,0.132675158706586 +1.486,0.26391328425733,0.942180492885638,1.59175112487681,1.48115391381103,-1.47913346126956,0.123275196392443,0.13287719947426 +1.488,0.263958522992504,0.942099285481299,1.59177155283424,1.48100573969906,-1.47900111554088,0.123454489778419,0.133078796975327 +1.49,0.264003912125274,0.942018273896878,1.59179215974363,1.4808579698567,-1.47886890612669,0.123633521903513,0.133280021619942 +1.492,0.264049418728129,0.941937422014879,1.59181282979547,1.48071070550855,-1.47873680509787,0.123812386507956,0.133480949912353 +1.494,0.26409501508713,0.941856701855326,1.59183346249617,1.48056399882063,-1.47860479483675,0.123991161296335,0.133681651952921 +1.496,0.264140678587588,0.941776098029848,1.59185398278158,1.48041786182451,-1.47847285946326,0.124169901420282,0.133882194318038 +1.498,0.264186391413697,0.941695607029362,1.59187433789085,1.48027226947518,-1.47834098958801,0.124348649713097,0.134082630921627 +1.5,0.264232139944677,0.941615234942598,1.59189449851601,1.48012717068887,-1.47820917494532,0.124527430734494,0.134283008889127 +1.502,0.264277914175996,0.941534993117027,1.59191445063779,1.47998249234281,-1.47807741000899,0.124706261202422,0.134483362052873 +1.504,0.264323707020627,0.941454894729687,1.59193419470537,1.4798381502438,-1.47794568726809,0.124885144043632,0.134683718716671 +1.506,0.264369513769217,0.941374951010733,1.59195373760949,1.4796940522548,-1.47781400325566,0.125064078686879,0.134884096304014 +1.508,0.264415331517952,0.941295169365902,1.59197309315274,1.47955010772535,-1.47768235214734,0.125243054984551,0.135084509535518 +1.51,0.264461158801835,0.94121555155535,1.59199227583484,1.4794062287041,-1.47755073191456,0.125422063180436,0.135284965092682 +1.512,0.264506995203175,0.94113609374739,1.59201130314721,1.4792623372405,-1.47741913797466,0.125601087442085,0.135485469505603 +1.514,0.264552841153369,0.941056786337002,1.59203019090041,1.47911836442676,-1.47728756933866,0.125780115346324,0.135686023394504 +1.516,0.264598697682156,0.940977615225847,1.59204895663923,1.47897425558399,-1.47715602226361,0.12595913093471,0.135886628879897 +1.518,0.264649899888194,0.940904504077003,1.59206469154806,1.47883976165599,-1.47704433172621,0.126108353280411,0.136059557906362 +1.52,0.264694827132433,0.940829638905672,1.59208606299874,1.47870127519228,-1.47691153805953,0.126287758052097,0.136259487519329 +1.522,0.264738881609392,0.940752680646913,1.59210617483666,1.4785603108133,-1.47677691468681,0.126472289571339,0.13646342877423 +1.524,0.264783057815556,0.940674098177523,1.59212458935895,1.47841735832249,-1.47664261435661,0.126656719356333,0.136667853267842 +1.526,0.264827524072334,0.940594463512996,1.5921419072079,1.4782726787865,-1.47650885843697,0.126840141409932,0.136872180833853 +1.528,0.264872297136808,0.940514272979901,1.59215876758651,1.4781265223976,-1.4763755910003,0.127022506190733,0.137076281342477 +1.53,0.264917364329092,0.940433892915003,1.5921756469472,1.47797915812353,-1.47624272045905,0.127203933184313,0.137280085339699 +1.532,0.264962704672764,0.94035355524544,1.59219283957775,1.47783086996268,-1.47611015699926,0.127384564787428,0.137483545676689 +1.534,0.265008292926075,0.940273376369092,1.59221047958213,1.47768193831436,-1.47597782823213,0.127564545948066,0.137686633812888 +1.536,0.265054101400948,0.940193387806949,1.5922285860096,1.47753262952576,-1.47584567426584,0.127744007538645,0.137889349571606 +1.538,0.265100101663739,0.94011356729643,1.59224710136557,1.47738318054243,-1.47571365247779,0.127923072006581,0.138091712511273 +1.54,0.265146266172488,0.940033866913686,1.59226593183165,1.47723379424008,-1.47558172909319,0.128101843467604,0.138293762669567 +1.542,0.265192569575605,0.939954233371498,1.59228497082432,1.4770846307212,-1.47544988264576,0.12828041571165,0.138495547132331 +1.544,0.265238989597412,0.93987462201997,1.59230412086109,1.4769358092962,-1.47531809532625,0.128458863433706,0.138697120076336 +1.546,0.265285507440836,0.939795003159537,1.59232329946595,1.47678740576967,-1.47518635700255,0.128637251165803,0.138898531105926 +1.548,0.265332107841745,0.939715364262646,1.59234244633261,1.47663945928865,-1.47505465759872,0.128815625451111,0.139099828169692 +1.55,0.265378778813349,0.939635707674066,1.59236151861712,1.47649197337411,-1.47492299209704,0.128994024431123,0.139301049178057 +1.552,0.265425511255388,0.939556047456608,1.59238049150633,1.47634492534642,-1.47479135378793,0.129172470527496,0.13950222786574 +1.554,0.265472298454708,0.939476404514999,1.59239935031564,1.47619826886007,-1.47465973993669,0.129350980389524,0.1397033876987 +1.556,0.265519135617263,0.939396802976381,1.59241809030527,1.47605194382174,-1.47452814555735,0.129529557922488,0.139904549185972 +1.558,0.26556601941208,0.939317266238722,1.59243670962706,1.47590587865255,-1.47439656935441,0.129708204373244,0.140105724601474 +1.56,0.265612947616518,0.939237815011892,1.59245521077564,1.47575999931199,-1.4742650076457,0.129886911415232,0.140306925537089 +1.562,0.265659918805962,0.939158465255571,1.59247359538147,1.47561423024936,-1.47413346032647,0.130065671133053,0.140508157515757 +1.564,0.265706932146545,0.93907922799685,1.5924918673098,1.47546850182238,-1.47400192479016,0.130244468956391,0.140709427186991 +1.566,0.265753987218281,0.939000108738883,1.59251002872497,1.47532274952073,-1.47387040184312,0.130423293364492,0.140910736528197 +1.568,0.265801083916374,0.938921108369801,1.59252808401783,1.47517691963148,-1.47373888959104,0.13060212849299,0.141112089626778 +1.57,0.265848222357151,0.938842223287725,1.59254603629185,1.47503096678873,-1.47360738932689,0.130780963449482,0.141313486542485 +1.572,0.265895402838213,0.938763446708611,1.59256389139252,1.47488485810306,-1.47347589941964,0.130959784521316,0.141514929831527 +1.574,0.265942625784059,0.93868476894656,1.59258165427745,1.47473856936899,-1.47334442122212,0.131138584084686,0.141716418242933 +1.576,0.265989891732025,0.938606178712703,1.59259933281977,1.47459208807509,-1.47321295299324,0.131317352421589,0.141917953156459 +1.578,0.266037201294032,0.938527663285916,1.59261693391215,1.47444540872808,-1.47308149585358,0.131496086276772,0.142119532243801 +1.58,0.266084555153444,0.938449209654256,1.59263446703369,1.47429853521818,-1.47295004775282,0.13167478036093,0.142321155914957 +1.582,0.266131954034231,0.938370804511844,1.59265194016786,1.47415147572376,-1.4728186094758,0.131853435655915,0.142522820997565 +1.584,0.266179398704283,0.938292435231534,1.59266936326198,1.47400424486719,-1.47268717864587,0.132032050712304,0.142724527216089 +1.586,0.266226889949619,0.938214089704463,1.59268674410235,1.47385685859019,-1.47255575576714,0.132210629816718,0.142926270889175 +1.588,0.266274428582764,0.938135757170017,1.59270409179877,1.47370933643394,-1.4724243382465,0.132389174195523,0.14312805142678 +1.59,0.266322015420575,0.93805742792334,1.59272141272622,1.47356169665767,-1.47229292645292,0.132567690146927,0.143329865025044 +1.592,0.266369651295995,0.937979094021975,1.59273871411302,1.47341395885003,-1.47216151774127,0.132746180243132,0.143531711158226 +1.594,0.266417337037385,0.937900748874413,1.59275600009905,1.47326613943496,-1.47203011251235,0.13292465150303,0.143733586252416 +1.596,0.266465073481397,0.937822387831833,1.59277327544971,1.47311825469735,-1.47189870822747,0.133103106655282,0.143935490155593 +1.598,0.266512861451597,0.937744007664651,1.59279054173313,1.47297031670616,-1.47176730545893,0.133281552395427,0.144137419781036 +1.6,0.266560701770609,0.9376656070476,1.59280780114576,1.47282233673695,-1.47163590189025,0.133459990740438,0.144339375548851 +1.602,0.266608595236684,0.937587185936293,1.59282505278524,1.47267432155787,-1.47150449835287,0.133638427384348,0.144541354998704 +1.604,0.266656542634438,0.937508745962684,1.59284229655753,1.47252627716548,-1.47137309281178,0.133816863147845,0.144743359203602 +1.606,0.266704544709368,0.937430289734171,1.59285952951324,1.47237820533092,-1.47124168638844,0.133995302423937,0.144945386356664 +1.608,0.266752602177804,0.937351821166966,1.59287674980308,1.47223010753474,-1.4711102773345,0.134173744707234,0.145147438162006 +1.61,0.266800715700494,0.937273344739139,1.59289395304582,1.47208198165588,-1.47097886704361,0.134352193107443,0.145349513402282 +1.612,0.266848885893238,0.937194865795767,1.59291113630195,1.47193382599098,-1.47084745401702,0.134530645933043,0.145551614313128 +1.614,0.26689711330121,0.937116389790531,1.59292829444546,1.47178563597994,-1.47071603986819,0.134709105245141,0.145753740138488 +1.616,0.266945398411923,0.937037922596484,1.59294542413071,1.47163740821589,-1.47058462328442,0.134887568468122,0.145955893495431 +1.618,0.266993741631849,0.93695946976777,1.59296252014586,1.47148913712815,-1.47045320602811,0.135066036957784,0.146158073923897 +1.62,0.267042143303001,0.936881036884215,1.59297957935394,1.47134081892024,-1.47032178689795,0.135244507615115,0.146360284248455 +1.622,0.267090603682823,0.936802628857027,1.59299659701187,1.4711924481641,-1.47019036773051,0.135422981448302,0.146562524128384 +1.624,0.267139122964969,0.936724250326271,1.5930135706733,1.47104402163629,-1.47005894736358,0.135601455172555,0.14676479642227 +1.626,0.267187701262668,0.936645905024415,1.59303049646387,1.47089553480835,-1.46992752764064,0.135779929753151,0.146967100743389 +1.628,0.267236338633486,0.9365675962354,1.5930473729401,1.47074698557918,-1.46979610737819,0.135958401981978,0.147169439831924 +1.63,0.267285035065639,0.936489326219713,1.59306419731812,1.47059837067038,-1.46966468837456,0.136136872996245,0.147371813119327 +1.632,0.267333790505872,0.936411096734119,1.59308096928938,1.47044968927221,-1.46953326938204,0.136315339829414,0.147574223111439 +1.634,0.267382604847638,0.936332908513132,1.59309768720626,1.47030093936734,-1.46940185212059,0.13649380390632,0.147776668963976 +1.636,0.267431477960839,0.936254761840723,1.59311435186066,1.47015212131794,-1.46927043525466,0.136672262571355,0.147979152878074 +1.638,0.267480409680517,0.936176656076566,1.59313096263463,1.47000323414698,-1.46913902041156,0.136850717564783,0.148181673687397 +1.64,0.267529399837075,0.936098590265858,1.5931475212518,1.46985427909574,-1.46900760616223,0.1370291665341,0.148384233265893 +1.642,0.267578448244136,0.936020562694907,1.59316402790422,1.4697052558904,-1.46887619404348,0.13720761149823,0.148586830125459 +1.644,0.267627554728006,0.935942571522752,1.59318048498846,1.46955616629509,-1.46874478254156,0.137386050348983,0.148789465834199 +1.646,0.267676719113591,0.935864614349533,1.5931968932209,1.4694070103854,-1.46861337311713,0.137564485309961,0.148992138622353 +1.648,0.267725941252172,0.935786688853676,1.59321325537056,1.46925779011467,-1.46848196419046,0.137742914434454,0.149194849808269 +1.65,0.267775221004664,0.935708792357675,1.59322957237427,1.46910850560792,-1.46835055716779,0.13792134006474,0.149397597409521 +1.652,0.267824558267202,0.935630922456753,1.59324584707678,1.46895915875071,-1.46821915042711,0.138099760331228,0.149600382573258 +1.654,0.267873952951453,0.935553076569628,1.59326208035529,1.46880974950907,-1.46808774534471,0.13827817761607,0.149803203189167 +1.656,0.267923405007958,0.93547525254814,1.5932782748747,1.46866027954283,-1.4679563402806,0.138456590056412,0.150006060320842 +1.658,0.267972914403616,0.935397448204594,1.59329443122799,1.46851074855058,-1.46782493660442,0.138635000014341,0.150208951817453 +1.66,0.268022481143105,0.935319661896131,1.59331055171147,1.46836115790415,-1.46769353267974,0.13881340558529,0.15041187874321 +1.662,0.268072105243997,0.935241892024649,1.59332663648407,1.46821150701335,-1.4675621298888,0.138991809074696,0.150614838985183 +1.664,0.268121786756847,0.935164137594046,1.5933426873642,1.46806179697526,-1.46743072661527,0.139170208511159,0.150817833678698 +1.666,0.268171525738593,0.935086397682865,1.593358704008,1.46791202695164,-1.46729932426757,0.139348606129028,0.151020860809588 +1.668,0.268221322272055,0.935008671976366,1.59337468772646,1.46776219782582,-1.46716792125996,0.139526999885024,0.151223921634277 +1.67,0.268271176438346,0.934930960215466,1.59339063768013,1.4676123085858,-1.46703651903442,0.13970539194532,0.151427014275686 +1.672,0.268321088336525,0.934853262708521,1.59340655471291,1.46746235998223,-1.46690511604019,0.139883780203971,0.151630140137685 +1.674,0.26837105805571,0.934775579762485,1.59342243755894,1.46731235091159,-1.46677371375439,0.140062166772888,0.15183329749479 +1.676,0.268421085695523,0.934697912181084,1.59343828668805,1.46716228207061,-1.46664231066027,0.14024054950047,0.152036487901488 +1.678,0.268471171338467,0.934620260685321,1.59345410051962,1.46701215233584,-1.46651090826688,0.140418930463057,0.152239709776586 +1.68,0.26852131507162,0.934542626405345,1.59346987927425,1.46686196241188,-1.46637950508639,0.140597307482496,0.152442964808546 +1.682,0.26857151695964,0.934465010297521,1.59348562118913,1.46671171120577,-1.46624810265317,0.140775682618017,0.152646251535868 +1.684,0.268621777067976,0.93438741363688,1.59350132637088,1.46656139946836,-1.4661166995006,0.140954053681952,0.152849571749934 +1.686,0.268672095436648,0.93430983743712,1.59351699300753,1.4664110261636,-1.46598529717993,0.141132422731408,0.153052924073057 +1.688,0.268722472105023,0.934232282949308,1.5935326212183,1.46626059210374,-1.4658538942369,0.141310787581801,0.153256310360443 +1.69,0.268772907086342,0.934154751089668,1.59354820925858,1.46611009631484,-1.46572249223066,0.141489150298126,0.153459729277538 +1.692,0.268823400393931,0.934077242948465,1.59356375736349,1.4659595396673,-1.46559108971065,0.141667508706335,0.153663182702604 +1.694,0.268873952016276,0.933999759228559,1.59357926394372,1.46580892123932,-1.46545968823576,0.141845864884292,0.153866669304779 +1.696,0.268924561944428,0.933922300766494,1.59359472942122,1.46565824194468,-1.46532828635162,0.142024216671276,0.154070190948456 +1.698,0.268975230147339,0.933844867982859,1.59361015241503,1.46550750089588,-1.46519688561024,0.142202566158882,0.154273746273131 +1.7,0.269025956600134,0.933767461415734,1.59362553356901,1.46535669903074,-1.46506548454785,0.142380911199045,0.154477337100361 +1.702,0.26907674125938,0.933690081182194,1.593640871728,1.46520583547672,-1.46493408470502,0.142559253895209,0.154680962016034 +1.704,0.269127584091897,0.933612727522708,1.59365616775867,1.46505491117754,-1.46480268460521,0.142737592109256,0.15488462278025 +1.706,0.269178485049652,0.933535400271764,1.59367142071744,1.46490392525953,-1.46467128577526,0.142915927953258,0.155088317912195 +1.708,0.269229444098805,0.933458099410728,1.59368663166624,1.46475287865891,-1.46453988672459,0.143094259295607,0.155292049102886 +1.71,0.269280461193962,0.933380824544712,1.59370179983441,1.46460177049056,-1.46440848896614,0.143272588253593,0.155495814802446 +1.712,0.269331536307249,0.933303575460778,1.59371692643158,1.46445060167607,-1.46427709099607,0.143450912698922,0.155699616635301 +1.714,0.269382669401733,0.933226351607849,1.59373201080596,1.46429937131486,-1.4641456943149,0.143629234751262,0.155903452989359 +1.716,0.269433860460387,0.933149152657055,1.59374705425677,1.46414808031274,-1.46401429740774,0.143807552283224,0.156107325433042 +1.718,0.269485109458589,0.933071977981585,1.59376205619122,1.46399672775494,-1.46388290176552,0.143985867414942,0.156311232305671 +1.72,0.269536416392939,0.932994827216296,1.59377701793867,1.46384531453475,-1.46375150586548,0.144164178018489,0.156515175135607 +1.722,0.269587781252825,0.932917699734915,1.59379193890818,1.46369383972801,-1.46362011119238,0.144342486213492,0.156719152231098 +1.724,0.269639204049125,0.932840595206656,1.59380682040616,1.46354230422123,-1.46348871621919,0.144520789870902,0.156923165098796 +1.726,0.269690684784914,0.93276351306892,1.59382166179596,1.46339070708699,-1.46335732242812,0.144699091109608,0.157127212034374 +1.728,0.269742223484147,0.932686453079479,1.59383646431999,1.4632390492112,-1.46322592829135,0.144877387799447,0.157331294540779 +1.73,0.269793820161617,0.932609414783656,1.59385122726223,1.46308732966897,-1.46309453529182,0.145055682058776,0.157535410918055 +1.732,0.269845474851758,0.932532398061495,1.59386595177526,1.46293554935068,-1.46296314190393,0.145233971756626,0.157739562680857 +1.734,0.269897187577991,0.93245540258924,1.59388063704579,1.46278370733808,-1.46283174961394,0.14541225901118,0.157943748147103 +1.736,0.269948958381806,0.932378428381673,1.59389528412657,1.46263180452906,-1.46270035690068,0.145590541690996,0.158147968854455 +1.738,0.270000787291631,0.932301475248429,1.59390989210453,1.46247984001396,-1.46256896525551,0.145768821914374,0.158352223147621 +1.74,0.27005267435233,0.932224543332319,1.59392446193698,1.46232781469895,-1.46243757316297,0.145947097549598,0.158556512593713 +1.742,0.270104619593725,0.932147632561519,1.59393899262162,1.46217572768266,-1.46230618212034,0.146125370715193,0.158760835568215 +1.744,0.270156623060632,0.932070743185104,1.59395348503607,1.46202357987835,-1.46217479061823,0.146303639279164,0.158965193669289 +1.746,0.270208684781126,0.931993875222467,1.59396793810877,1.46187137039096,-1.46204340015982,0.146481905360166,0.159169585302581 +1.748,0.270260804797188,0.931917028997472,1.59398235266083,1.46171910013826,-1.46191200924135,0.14666016682575,0.159374012094684 +1.75,0.27031884625706,0.931846247652856,1.59399411169396,1.46157666527979,-1.46180065439633,0.146808512498424,0.159550529693681 +1.752,0.270370040483389,0.931773457424973,1.59401148278859,1.46143071965348,-1.46166793162383,0.146987124918419,0.159754043830782 +1.754,0.270420282457319,0.931698458208208,1.59402754230973,1.46128239918384,-1.46153330680675,0.147171089283636,0.159961715603929 +1.756,0.270470688914326,0.931621785740219,1.59404182987612,1.46113213547837,-1.46139900528595,0.147355031331394,0.160169931284374 +1.758,0.270521453071297,0.931544063223909,1.59405495868865,1.46098018656052,-1.4612652651561,0.147537990973838,0.160378070282739 +1.76,0.270572593172848,0.931465826287564,1.59406758452315,1.46082680636269,-1.46113202990072,0.147719906822919,0.160585988843869 +1.762,0.270629982492732,0.931393516881273,1.594077593181,1.46068216829231,-1.46101924935682,0.147870978995723,0.160765658894726 +1.764,0.270680767622262,0.931319295908944,1.59409352781384,1.46053322255887,-1.46088540097804,0.148051543925524,0.16097194870256 +1.766,0.270736735386915,0.931249143661562,1.5941060009842,1.46039126784058,-1.46076993309519,0.148206917589925,0.161154043674299 +1.768,0.270786129442794,0.931175538975026,1.59412280495658,1.46024366395874,-1.46063357907066,0.148392046774504,0.161363246075256 +1.77,0.270835037104496,0.931098889491792,1.59413756899955,1.46009201162075,-1.46049601045284,0.148581181515722,0.161576130615085 +1.772,0.270884568293798,0.931020216632968,1.59415038997074,1.45993718733289,-1.46035936969194,0.148768982040517,0.161788972987685 +1.774,0.270934870068218,0.930940479248038,1.59416226407878,1.45977987646107,-1.46022377473437,0.148954691119847,0.162001128618339 +1.776,0.270985906505912,0.930860409450089,1.59417404805831,1.45962072937919,-1.46008905928129,0.149138467438753,0.162212457741161 +1.778,0.27103760541899,0.930780487306163,1.59418628374528,1.45946036888624,-1.45995503710929,0.149320634822539,0.162422912889008 +1.78,0.271089886088656,0.930700972186097,1.59419922527603,1.45929937484507,-1.45982154351204,0.14950151753155,0.162632493615017 +1.782,0.271142666006091,0.930621955801771,1.5942129069453,1.45913825913418,-1.45968844983648,0.149681415595774,0.162841236276227 +1.784,0.271195864501471,0.930543420799768,1.59422722584565,1.45897745321891,-1.45955565541455,0.149860587554737,0.163049216302115 +1.786,0.271249405636988,0.930465291596131,1.59424200646982,1.45881729470478,-1.45942308895983,0.150039257545152,0.163256531790711 +1.788,0.271303220566263,0.930387474352674,1.59425705663815,1.45865802792512,-1.45929069672969,0.150217607017828,0.163463297993807 +1.79,0.271357248989445,0.930309882465263,1.59427219774634,1.45849980292432,-1.45915844336417,0.15039578536513,0.163669629180873 +1.792,0.27141143985264,0.93023245105764,1.59428728720842,1.45834268666821,-1.45902630115937,0.150573903724702,0.163875636087999 +1.794,0.2714657512178,0.930155140859199,1.59430222091254,1.45818667036601,-1.45889425271931,0.150752046932587,0.164081413268632 +1.796,0.271520149679881,0.930077936735562,1.59431693528538,1.45803168635553,-1.45876228238139,0.150930268452563,0.164287042469027 +1.798,0.271574609353992,0.930000841510266,1.59433139699846,1.45787761870081,-1.45863038068812,0.151108602889426,0.16449258546741 +1.8,0.271635088005362,0.929929933968504,1.59434304864399,1.45773423702457,-1.4585186196867,0.151257122738556,0.164670098622209 +1.802,0.271688557320658,0.929857099555637,1.59436008174953,1.457588083596,-1.45838548556192,0.151436042075129,0.164874572885902 +1.804,0.27174100625991,0.929782180745839,1.59437558875894,1.45744003590021,-1.4582504817886,0.151620465641491,0.165083226384803 +1.806,0.271793572417377,0.929705735913164,1.59438912682419,1.45729033980841,-1.45811584776327,0.151804968524019,0.165292437524473 +1.808,0.27184645127284,0.929628401464697,1.5944013400297,1.4571390983074,-1.45798181723988,0.151988545783787,0.165501588810001 +1.81,0.271899660041109,0.929550715732242,1.59441291032337,1.45698642732999,-1.45784833391025,0.152171109138053,0.165710533053339 +1.812,0.271953181105627,0.929473066531754,1.59442435027972,1.45683248693738,-1.45771529478909,0.152352746230757,0.165919199124302 +1.814,0.272006987830111,0.929395688482569,1.59443597540047,1.4566774714437,-1.45758260466945,0.152533580003862,0.166127534716784 +1.816,0.272061049335704,0.929318686744685,1.59444793710692,1.45652159827054,-1.45745018089945,0.152713730559536,0.166335514495007 +1.818,0.272115332650231,0.929242070759866,1.59446026350859,1.45636508905771,-1.45731796175551,0.152893315763621,0.166543135229932 +1.82,0.272169804421889,0.929165790157016,1.59447290914374,1.45620815977078,-1.45718589783739,0.15307244043992,0.166750420745917 +1.822,0.272224432776181,0.929089764964149,1.59448578956413,1.45605100639746,-1.45705395580849,0.153251203055205,0.166957408584015 +1.824,0.272279188590923,0.929013909225253,1.59449881370447,1.4558938004912,-1.45692210881691,0.153429687472023,0.167164149620793 +1.826,0.272334046544226,0.92893814566249,1.59451189789417,1.45573668074194,-1.45679034029793,0.153607970653053,0.167370694022512 +1.828,0.27238898543633,0.928862414139034,1.59452497907894,1.45557975438152,-1.45665863498547,0.153786114611613,0.167577093183007 +1.83,0.272443988321025,0.928786673650524,1.59453801331466,1.45542309394181,-1.45652698381056,0.153964174487741,0.167783389110494 +1.832,0.272499042107435,0.928710901512089,1.59455097784011,1.45526674278465,-1.45639537627123,0.154142191105634,0.167989619760553 +1.834,0.272554137204253,0.928635089543769,1.59456386288369,1.4551107150149,-1.45626380638386,0.154320199475591,0.168195811549637 +1.836,0.272609266857911,0.928559240408402,1.59457667075339,1.45495500322895,-1.4561322658132,0.154498221660964,0.168401987105156 +1.838,0.272664426710465,0.928483363143704,1.59458940731663,1.45479957976894,-1.45600075032902,0.154676275573031,0.168608159336758 +1.84,0.27271961417977,0.928407470261476,1.59460208234609,1.45464440498789,-1.45586925328497,0.154854368189033,0.168814339894783 +1.842,0.272774828138784,0.928331574786389,1.59461470306034,1.45448942841396,-1.45573777218359,0.155032504536971,0.169020533424829 +1.844,0.272836145789316,0.928261771864084,1.59462478578786,1.45434452975741,-1.45562642689242,0.155180719949954,0.169198709298012 +1.846,0.272890338479401,0.928189886973054,1.59464044408764,1.45419641027122,-1.45549361377247,0.155359251475043,0.169403872503742 +1.848,0.272943496883595,0.928115774450322,1.59465475356266,1.45404598985807,-1.45535888143866,0.155543242344384,0.169613249059356 +1.85,0.272996791080095,0.928039994007933,1.59466724780191,1.45389362069333,-1.45522448742361,0.155727251795476,0.169823186601922 +1.852,0.273050428153282,0.927963185626371,1.59467855180791,1.45373951936382,-1.45509067172787,0.15591028061109,0.170033051497293 +1.854,0.273104430435381,0.927885895278299,1.59468932923856,1.45358390783216,-1.45495738033056,0.156092257222613,0.17024268999771 +1.856,0.273158782846569,0.927808522597311,1.59470007417623,1.45342703903857,-1.4548245111937,0.156273289370058,0.170452029216755 +1.858,0.273213459846838,0.927731317754519,1.59471108363629,1.45326918428345,-1.45469196969526,0.156453519999806,0.170661017648336 +1.86,0.27326843063021,0.927654404406394,1.59472249100303,1.4531106207994,-1.45455967371429,0.156633087438622,0.170869632357891 +1.862,0.273323661529124,0.927577812463263,1.59473430708608,1.45295161272017,-1.45442756224138,0.156812125011462,0.171077873431396 +1.864,0.273379117902889,0.927501512947736,1.59474647009701,1.4527924019283,-1.45429558679394,0.156990749707586,0.171285768592826 +1.866,0.273434766156648,0.927425447208277,1.59475888036217,1.45263319523074,-1.45416371524155,0.157169068610619,0.171493359501793 +1.868,0.273490575135634,0.927349549639447,1.59477143284662,1.45247416186797,-1.45403192217094,0.157347170690152,0.171700701222427 +1.87,0.273546517288467,0.927273761612252,1.59478403128589,1.45231542741074,-1.45390019270615,0.157525134692752,0.171907847953366 +1.872,0.273602569067966,0.927198039368552,1.59479660157332,1.45215707761283,-1.45376851342986,0.157703021482006,0.172114854899875 +1.874,0.273664856607883,0.927128450830939,1.59480664120763,1.45200910381479,-1.45365702955643,0.157850904657199,0.1722937028444 +1.876,0.273719988737148,0.927056763957438,1.59482217783028,1.45185830822294,-1.45352406790648,0.158029080579656,0.172499464437712 +1.878,0.273774104342675,0.926982839087291,1.59483626967276,1.45170559400566,-1.45338920213812,0.158212749882246,0.172709413791989 +1.88,0.273828379535431,0.926907243081954,1.59484844916811,1.45155131511878,-1.45325469334224,0.158396473836492,0.172919910718667 +1.882,0.273883016999764,0.926830626320092,1.59485934892844,1.45139567183241,-1.45312078414123,0.158579268205825,0.173130325746483 +1.884,0.273938033226082,0.926753546701041,1.59486964989222,1.45123885830786,-1.45298741339025,0.158761064960281,0.173340515961152 +1.886,0.273993407921141,0.926676413611275,1.59487985981371,1.45108108405102,-1.45285447821244,0.15894197947133,0.173550409732028 +1.888,0.274049111198042,0.926599484414795,1.59489029105373,1.45092257217734,-1.45272187782907,0.159122150198255,0.173759960789792 +1.89,0.274105108801454,0.926522885980311,1.59490108544046,1.45076354387829,-1.45258953114888,0.159301715422426,0.173969143010146 +1.892,0.27416136429067,0.926446648711617,1.59491226378409,1.45060421033681,-1.45245737224066,0.159480796718041,0.174177959727787 +1.894,0.274217840905602,0.926370740872397,1.59492376821508,1.45044475921974,-1.45232535478417,0.159659505606137,0.174386434618322 +1.896,0.274280698901288,0.926301203717367,1.59493308440831,1.45029530422304,-1.45221361869129,0.159807948195361,0.174566523474168 +1.898,0.274336423270128,0.92622972024962,1.59494813181162,1.45014278766776,-1.45208042526988,0.159986475062685,0.174773335318757 +1.9,0.274391181166985,0.926156096658509,1.59496189103268,1.44998818416704,-1.45194535772092,0.160170343521125,0.174984184122088 +1.902,0.27444614604251,0.926080845833575,1.59497382171319,1.44983193693343,-1.4518106803493,0.160354141837162,0.175195447602493 +1.904,0.274501510660275,0.926004576607837,1.59498450704677,1.4496743320262,-1.45167662906902,0.160536908165168,0.175406525951769 +1.906,0.274557281275856,0.925927818669909,1.59499459149085,1.44951563019968,-1.45154314269382,0.160718608289653,0.175617298101238 +1.908,0.274613428993338,0.925850966909382,1.59500456497158,1.44935609455534,-1.45141011212711,0.160899379925039,0.17582771735393 +1.91,0.274669917008923,0.925774274291642,1.59501472985248,1.4491959821577,-1.45127743595567,0.161079388009845,0.176037751933686 +1.912,0.274726705724477,0.925697871389694,1.59502522982238,1.44903553691185,-1.45114502641145,0.161258784287777,0.176247392229502 +1.914,0.274783754552202,0.925621796248928,1.59503608776927,1.44887497554544,-1.45101281750108,0.161437708792709,0.176456647305813 +1.916,0.274841023634497,0.925546027421281,1.59504725345492,1.44871448359177,-1.45088075705842,0.161616278821817,0.176665550024096 +1.918,0.274898475373813,0.925470511945692,1.59505863712694,1.44855420691273,-1.45074880994029,0.161794597475634,0.176874145202991 +1.92,0.274956075777575,0.925395187709036,1.59507014146485,1.44839425329793,-1.45061694889337,0.161972745879191,0.177082489179851 +1.922,0.275013795249922,0.925319997285575,1.59508167588342,1.44823468945968,-1.45048515765551,0.162150793058446,0.177290636906591 +1.924,0.275071609021432,0.925244896243078,1.5950931701606,1.44807554758569,-1.45035342229953,0.162328788562529,0.17749864348805 +1.926,0.27512949705174,0.925169855099447,1.59510457365152,1.44791682627206,-1.45022173537257,0.162506772670003,0.177706554407191 +1.928,0.275187443744782,0.925094858859691,1.59511585785999,1.44775849969462,-1.45009008858887,0.162684769500159,0.177914410229587 +1.93,0.275245437366723,0.925019903458258,1.59512700882717,1.44760052007136,-1.44995847804337,0.162862797370846,0.178122239808003 +1.932,0.275303469493438,0.924944992586277,1.59513802644391,1.44744282739212,-1.44982689771033,0.163040861897384,0.178330067329125 +1.934,0.275361534341376,0.924870133526867,1.59514891617614,1.44728535162135,-1.4496953452234,0.163218966255638,0.178537907053136 +1.936,0.275419628258487,0.924795334742093,1.59515968929892,1.44712802146835,-1.44956381579196,0.163397104235879,0.178745771082462 +1.938,0.275484040193169,0.924726724622794,1.59516799358688,1.44698073527123,-1.44945252401164,0.163545262126756,0.178925534738526 +1.94,0.275541081906417,0.924656013634923,1.59518179063024,1.44683029156552,-1.44931965931895,0.16372372104184,0.179132303476387 +1.942,0.275597033936325,0.924583094819484,1.59519416162653,1.44667744025125,-1.44918486073684,0.163907695622737,0.179343365607272 +1.944,0.27565311780638,0.924508538484084,1.59520464702821,1.44652250595705,-1.44905041427478,0.164091678516389,0.179555032850243 +1.946,0.275709552554426,0.924432988159836,1.59521388866934,1.44636570578078,-1.44891657003258,0.164274650623847,0.179766646325008 +1.948,0.275766362397429,0.924356989399433,1.59522257301938,1.44620727647512,-1.44878326862342,0.164456530119242,0.17997804673887 +1.95,0.275829849472194,0.924287062897951,1.59522886228886,1.44605746140275,-1.44867063543291,0.164607416885032,0.180161011168005 +1.952,0.275886242144992,0.924215143466104,1.59524099723903,1.44590343131136,-1.44853673405078,0.16478775149168,0.18037060056915 +1.954,0.275941812377281,0.924141242025948,1.59525218951393,1.4457462708472,-1.44840113382568,0.164972915563458,0.180584081654052 +1.956,0.275997752362284,0.92406595232541,1.59526198816757,1.44558663555222,-1.4482660605672,0.16515754177091,0.180797760822443 +1.958,0.276054245429171,0.923989884511125,1.59527097059108,1.44542504141955,-1.44813171716565,0.165340742428605,0.181011001432748 +1.96,0.276111279525146,0.92391352390804,1.59527972315687,1.44526197888087,-1.44799800946013,0.165522554235304,0.181223686126681 +1.962,0.276168804819969,0.923837200117378,1.59528864709942,1.44509791865587,-1.44786480981303,0.165703193225319,0.181435786253117 +1.964,0.276233113443636,0.923767231643456,1.59529562649555,1.44494327936493,-1.4477522436636,0.165852871995209,0.181619148156599 +1.966,0.276290333959076,0.923695369687622,1.59530863105405,1.44478534826661,-1.44761834656712,0.166032107131297,0.181828927655263 +1.968,0.276346741153173,0.923621516511316,1.59532069392011,1.44462522053786,-1.44748271040337,0.166216336184943,0.182042477075578 +1.97,0.276403516183791,0.923546204430496,1.59533124961749,1.44446352327243,-1.44734757845899,0.166400213635745,0.182256158427301 +1.972,0.276460831155054,0.923470024628443,1.59534082362591,1.44430070726717,-1.44721315946245,0.166582854306541,0.182469385337432 +1.974,0.276518665910427,0.923393472671133,1.59534998648761,1.44413716062335,-1.44707936919999,0.166764298713477,0.18268206900713 +1.976,0.276576965986782,0.923316906773867,1.5953591525816,1.44397323338223,-1.4469460813969,0.166944748425061,0.182894202892202 +1.978,0.276635671793488,0.923240549240163,1.59536855745516,1.44380923076426,-1.44681318254722,0.167124419137048,0.183105796612574 +1.98,0.276694724296645,0.923164510064848,1.59537829221099,1.44364540994105,-1.44668057657153,0.167303500352779,0.183316879251654 +1.982,0.276754066844123,0.923088817461933,1.59538834272685,1.44348197122168,-1.44654819183748,0.167482158080648,0.183527493541574 +1.984,0.276813646680377,0.923013449388715,1.59539863601762,1.4433190600095,-1.4464159723288,0.167660525165667,0.183737699984445 +1.986,0.276873416111596,0.922938358888687,1.59540907105796,1.44315676455882,-1.44628388025832,0.167838711496939,0.183947564900569 +1.988,0.276933333454516,0.922863493543052,1.59541954753754,1.44299512365527,-1.44615188656559,0.168016797827405,0.184157160505558 +1.99,0.276993363404398,0.922788806663944,1.59542997718391,1.44283412924954,-1.44601997377968,0.168194847314162,0.184366552874116 +1.992,0.277053477093065,0.922714263542274,1.59544029502072,1.44267373793858,-1.44588812723315,0.168372899657558,0.18457580445219 +1.994,0.277113651647038,0.92263984201849,1.59545045690294,1.44251387602454,-1.44575633908014,0.168550982749282,0.184784965247697 +1.996,0.277173869632703,0.922565531293537,1.59546044107986,1.44235445187606,-1.44562460092904,0.168729107041889,0.184994078329483 +1.998,0.277234118238433,0.922491328173747,1.5954702400935,1.4421953607088,-1.44549290894594,0.168907276995608,0.185203173702901 +2,0.277294388550978,0.922417234105037,1.59547985997237,1.44203649573208,-1.44536125729442,0.169085485059289,0.18541227580643 +2.002,0.277354674736371,0.922343251455438,1.59548931203463,1.44187775102428,-1.44522964380184,0.169263722613472,0.185621398601256 +2.004,0.277414973428501,0.922269381687549,1.59549861328712,1.44171903026241,-1.44509806382509,0.169441973502429,0.18583055352036 +2.006,0.277475283092212,0.92219562329002,1.59550778005857,1.44156024697736,-1.44496651611742,0.169620224382683,0.186039744570391 +2.008,0.277535603617002,0.92212197166661,1.59551683031882,1.44140133064653,-1.44483499677947,0.169798457630841,0.186248975976306 +2.01,0.277595935882271,0.922048418565636,1.5955257789792,1.4412422244541,-1.44470350514591,0.169976661045117,0.18645824681232 +2.012,0.277656281531477,0.921974953110339,1.59553464146524,1.44108288912603,-1.44457203774873,0.170154820146662,0.186667558111048 +2.014,0.277716642689218,0.92190156197885,1.59554342983817,1.4409232987616,-1.44444059420324,0.170332927287918,0.186876907006909 +2.016,0.277777021856816,0.921828230830255,1.59555215682091,1.44076344311272,-1.44430917117361,0.170510973395496,0.187086293449771 +2.018,0.277837421721991,0.921754944593051,1.59556083208095,1.44060332223872,-1.44417776828327,0.170688956595217,0.187295714040979 +2.02,0.277897845125236,0.921681688797308,1.59556946623688,1.44044294798073,-1.44404638211325,0.170866873535168,0.18750516853798 +2.022,0.277958294921363,0.921608449643821,1.59557806702151,1.44028233815194,-1.44391501215913,0.17104472768505,0.187714653551783 +2.024,0.278018773986467,0.921535215057222,1.59558664315128,1.44012151785601,-1.44378365486711,0.171222520395759,0.187924168982975 +2.026,0.278079285109388,0.921461974461529,1.59559520036716,1.43996051377516,-1.44365230963425,0.171400259035214,0.188133711677691 +2.028,0.278139831024074,0.921388719556424,1.59560374523181,1.43979935579407,-1.44352097287259,0.17157794794371,0.188343281851929 +2.03,0.278200414320292,0.921315443848163,1.5956122811463,1.43963807174531,-1.44338964403358,0.171755596547763,0.188552876737214 +2.032,0.278261037493413,0.921242143220198,1.5956208121748,1.43947668959573,-1.44325831967964,0.171933210336179,0.188762497002657 +2.034,0.278321702867978,0.921168815296228,1.59562933912252,1.43931523281147,-1.44312699950987,0.172110799051601,0.188972140389862 +2.036,0.278382412659136,0.921095459877451,1.59563786344584,1.43915372317979,-1.44299568042204,0.172288367769117,0.189181808122624 +2.038,0.278449686693687,0.921028239196976,1.59564415573557,1.43900218218429,-1.4428846820352,0.172435874519699,0.189363265172547 +2.04,0.278509355275574,0.920958748736067,1.59565599470761,1.43884760720428,-1.44275196315936,0.172613654854588,0.189571723645066 +2.042,0.278567899669307,0.92088693138241,1.59566644733612,1.43869063901436,-1.44261726459123,0.172797025850329,0.189784538242603 +2.044,0.278626598658846,0.920813383011428,1.5956750372548,1.43853162368522,-1.44248290787722,0.172980430670904,0.189997979630859 +2.046,0.278685685564142,0.920738770085726,1.5956824061135,1.43837081712367,-1.44234915117124,0.173162836744929,0.190211368549994 +2.048,0.278745187227132,0.920663659152525,1.59568924273568,1.43820848920845,-1.44221593473447,0.173344166639587,0.190424538678771 +2.05,0.278805087320004,0.92058846321411,1.5956960555375,1.43804493230122,-1.44208315315884,0.173524541789841,0.190637406728973 +2.052,0.278865357191227,0.920513440541023,1.59570315121355,1.43788045293275,-1.44195070249118,0.173704112988241,0.190849920791936 +2.054,0.278925962166399,0.920438718153897,1.59571066212305,1.43771535161449,-1.44181849884718,0.173883033543893,0.191062052877011 +2.056,0.278986864264247,0.920364327247971,1.59571859819301,1.43754991116133,-1.44168647421198,0.174061440842766,0.191273806921478 +2.058,0.279048024396762,0.920290238253141,1.5957268908674,1.43738438066964,-1.44155458086915,0.174239461875796,0.191485208733102 +2.06,0.279109404546336,0.920216391994763,1.59573543724178,1.43721897036931,-1.44142278236788,0.174417203340836,0.191696305363943 +2.062,0.279170969390398,0.920142721938303,1.59574412558377,1.43705384305066,-1.44129105618862,0.174594760074463,0.191907150580587 +2.064,0.279232687528542,0.920069169407027,1.59575285797917,1.43688911632063,-1.44115938449833,0.174772206480379,0.192117804079446 +2.066,0.279294531996309,0.919995690456323,1.59576155582789,1.4367248606559,-1.44102775761073,0.174949605898472,0.192328319397135 +2.068,0.279356480459074,0.919922258409047,1.59577016625105,1.43656110698809,-1.44089616609074,0.175127002923125,0.192538746648223 +2.07,0.279418514901893,0.919848861635396,1.595778656182,1.43639784876317,-1.44076460550952,0.175304433350178,0.192749124249864 +2.072,0.279480621254596,0.919775500538503,1.5957870119514,1.43623505217449,-1.44063306967701,0.175481916938112,0.192959484982861 +2.074,0.279542788757433,0.919702182771118,1.59579523032893,1.43607265964125,-1.44050155624081,0.175659467646214,0.193169850232052 +2.076,0.279605009461181,0.919628919851292,1.59580331770441,1.43591060033642,-1.44037006054738,0.175837086684295,0.193380237596859 +2.078,0.279667277614821,0.919555723404744,1.59581128239612,1.43574879311894,-1.44023858156183,0.176014772833723,0.193590655951436 +2.08,0.279729589272532,0.91948260350282,1.59581913587151,1.43558715585609,-1.44010711588232,0.17619251550745,0.193801113243115 +2.082,0.27979194183135,0.919409566797429,1.5958268872438,1.43542560672577,-1.43997566366329,0.17637030492274,0.194011611357328 +2.084,0.279854333793801,0.919336616580204,1.59583454640658,1.43526407163296,-1.4398442225996,0.176548124963771,0.194222153462857 +2.086,0.279916764449493,0.919263752286333,1.5958421199926,1.43510248351504,-1.43971279377424,0.176725963029536,0.194432738370629 +2.088,0.279979233757198,0.919190970513705,1.59584961546756,1.43494078778069,-1.4395813755887,0.17690380252413,0.194643367381998 +2.09,0.280041742120123,0.919118265100029,1.59585703759684,1.43477893976372,-1.43944996957377,0.177081632276838,0.194854038236559 +2.092,0.280104290338496,0.919045628400958,1.595864392698,1.43461690849867,-1.43931857432129,0.177259438594474,0.195064751642464 +2.094,0.280166879436161,0.918973051397161,1.59587168503101,1.43445467275057,-1.43918719132037,0.177437214247503,0.195275505009156 +2.096,0.280229510652365,0.918900524859476,1.59587892085345,1.43429222363286,-1.43905581893334,0.177614950105412,0.195486298850032 +2.098,0.280292185297859,0.918828039267502,1.59588610456822,1.434129559751,-1.43892445829095,0.177792643758483,0.19569713044697 +2.1,0.280354904772912,0.918755585763654,1.59589324255906,1.43396668920435,-1.43879310732618,0.177970290828902,0.195908000232154 +2.102,0.280417670445486,0.918683155868621,1.59590033916485,1.43380362436177,-1.43866176672866,0.178147893343608,0.19611890544906 +2.104,0.28048048369159,0.918610742258641,1.59590740041162,1.43364038372323,-1.43853043402284,0.178325450843584,0.19632984654751 +2.106,0.280543345792804,0.918538338334331,1.59591442994167,1.43347698674558,-1.43839910956127,0.178502968632923,0.196540820851159 +2.108,0.280606257996189,0.918465938880951,1.59592143275727,1.43331345591341,-1.43826779062415,0.178680448808042,0.196751828960365 +2.11,0.280669221427602,0.918393539543258,1.59592841119658,1.4331498118927,-1.43813647742653,0.178857898491494,0.196962868415675 +2.112,0.280732237166451,0.918321137409484,1.59593536875085,1.43298607601348,-1.43800516721828,0.179035320877957,0.197173940094684 +2.114,0.280795306169338,0.918248730421101,1.59594230612228,1.43282226588389,-1.43787386028547,0.179212723529148,0.197385041861872 +2.116,0.280858429353602,0.918176317899666,1.59594922512527,1.43265839834996,-1.43774255403753,0.179390109498719,0.197596174950671 +2.118,0.280921607525345,0.918103899904531,1.59595612482054,1.43249448557826,-1.43761124899179,0.179567485728608,0.197807337597305 +2.12,0.280991544849009,0.91803766991677,1.59596088732286,1.43234056970163,-1.43750035224551,0.179714774618288,0.197990208972108 +2.122,0.281053675735233,0.917969131909816,1.59597115253553,1.43218374469679,-1.43736762537646,0.17989233196012,0.198200095058984 +2.124,0.281114640345643,0.917898265219826,1.59597998851103,1.43202450157229,-1.43723289506104,0.180075548567607,0.19841440698938 +2.126,0.28117576313614,0.917825678936481,1.59598691403385,1.43186315292688,-1.43709851515816,0.180258817287075,0.198629378133473 +2.128,0.281237288486994,0.917752048183296,1.59599258408337,1.43169995278129,-1.43696474650519,0.18044107616028,0.198844314975688 +2.13,0.281299244819701,0.917677943482451,1.59599769799361,1.43153517253536,-1.43683153206574,0.180622246184371,0.19905903981418 +2.132,0.28136161508591,0.917603778833439,1.59600277567191,1.43136911275441,-1.43669876119267,0.180802444277924,0.199273468350828 +2.134,0.281424369136008,0.917529810128206,1.59600812831485,1.43120208661236,-1.43656633001787,0.180981826656525,0.199487543449171 +2.136,0.281487470603861,0.917456160669546,1.59601389434817,1.43103440600036,-1.43643414904084,0.181160543804413,0.199701239313636 +2.138,0.281550879627352,0.917382856257711,1.59602008397723,1.43086636152592,-1.43630215152343,0.181338739723402,0.199914555858299 +2.14,0.281614555321769,0.917309862203607,1.59602663202985,1.4306982131999,-1.43617028546151,0.181516539284088,0.200127521758393 +2.142,0.281678457867043,0.917237113864887,1.5960334348469,1.43053017770603,-1.43603851641004,0.18169405554589,0.200340180870264 +2.144,0.281742550351134,0.917164540368123,1.59604038395252,1.43036242669246,-1.4359068181005,0.181871380790296,0.200552590305796 +2.146,0.281806799875314,0.917092078835341,1.59604738079769,1.43019508155769,-1.43577517525739,0.182048595524926,0.200764806527834 +2.148,0.281871178261074,0.917019682488448,1.59605435011501,1.43002821865627,-1.43564357486297,0.182225760237707,0.200976886184366 +2.15,0.281935662081129,0.916947322031447,1.59606123839605,1.42986186979134,-1.43551201020288,0.182402925070192,0.201188876018238 +2.152,0.282000232510004,0.916874984525113,1.59606801568405,1.4296960315534,-1.43538047363712,0.182580122400661,0.201400817400117 +2.154,0.282064874768881,0.916802669158442,1.59607466720135,1.42953066856752,-1.43524896182292,0.182757377005106,0.201612739585429 +2.156,0.282129577639725,0.91673038354191,1.59608119214387,1.42936572431981,-1.43511746933935,0.182934698951626,0.201824666806551 +2.158,0.282194332779403,0.916658139109492,1.5960875950345,1.42920112479596,-1.43498599447467,0.183112093951443,0.202036613167009 +2.16,0.282259134248967,0.916585948433862,1.59609388583481,1.42903678873991,-1.43485453324193,0.183289556461809,0.202248590469645 +2.162,0.282323977937807,0.916513822351143,1.59610007340173,1.42887263007213,-1.4347230852961,0.183467080024192,0.202460603299576 +2.164,0.282388861242935,0.916441769170679,1.59610616783347,1.42870856646645,-1.43459164796011,0.183644650257529,0.202672656626248 +2.166,0.282453782652855,0.916369793519024,1.59611217588638,1.4285445198291,-1.43446022207278,0.183822254949979,0.202884750448867 +2.168,0.282518741572345,0.916297896915051,1.59611810479166,1.42838042280795,-1.4343288059595,0.183999876765462,0.203096886849245 +2.17,0.28258373802978,0.916226077570626,1.59612395863112,1.42821621723332,-1.43419740121381,0.184177502944182,0.203309064135853 +2.172,0.282648772599234,0.916154331541574,1.59612974265669,1.42805185871111,-1.43406600663476,0.184355117577794,0.203521283472734 +2.174,0.282713846181303,0.916082652791679,1.59613545981203,1.42788731334558,-1.4339346240049,0.184532710856046,0.203733542705605 +2.176,0.282778959981082,0.916011034384066,1.59614111496193,1.42772256085672,-1.43380325205877,0.184710270894598,0.20394584276954 +2.178,0.28284411533075,0.915939468445095,1.59614671119363,1.42755759009874,-1.43367189231183,0.184887792563553,0.204158181381945 +2.18,0.282909313702396,0.915867947186046,1.59615225379098,1.42739240125845,-1.43354054308789,0.185065268925458,0.204370559387887 +2.182,0.282974556558878,0.91579646267539,1.59615774629392,1.42722700072882,-1.4334092054149,0.185242699743543,0.204582974428101 +2.184,0.283039845394026,0.915725007679892,1.59616319428746,1.42706140292418,-1.43327787711069,0.185420082646673,0.204795427289145 +2.186,0.283105181607294,0.915653575281546,1.59616860133693,1.42689562500073,-1.43314655873273,0.185597421445269,0.205007915580568 +2.188,0.283170566568046,0.915582159594267,1.59617397272167,1.42672968872155,-1.43301524770014,0.18577471715152,0.205220440101825 +2.19,0.283236001510368,0.915510755283334,1.59617931136517,1.42656361538829,-1.43288394427159,0.185951976225791,0.205432998525936 +2.192,0.283301487616795,0.915439358206486,1.59618462160685,1.42639742804332,-1.4327526456793,0.186129201567458,0.20564559177107 +2.194,0.283367025927665,0.915367964871932,1.59618990519307,1.42623114682476,-1.43262135211069,0.186306400788509,0.20585821767936 +2.196,0.283432617437625,0.9152965730271,1.59619516512424,1.42606479164292,-1.43249006083576,0.186483577257556,0.206070877381336 +2.198,0.283498263012574,0.915225181068513,1.59620040172227,1.42589837802872,-1.43235877217592,0.186660738460857,0.206283568963623 +2.2,0.283563963491905,0.915153788585044,1.59620561655003,1.42573192029289,-1.43222748361518,0.186837887145254,0.206496293820771 +2.202,0.283629719606728,0.91508239572383,1.59621080854161,1.42556542782653,-1.43209619574862,0.187015029791136,0.206709050311992 +2.204,0.283695532082323,0.915011003692368,1.59621597797333,1.42539890866095,-1.43196490637541,0.187192167866181,0.206921840100784 +2.206,0.283761401553383,0.914939614086881,1.59622112263391,1.42523236610974,-1.43183361642613,0.18736930640601,0.207134661804361 +2.208,0.2838273286636,0.914868229362742,1.59622624182355,1.42506580259924,-1.43170232404061,0.187546445365801,0.207347517323815 +2.21,0.283893313976189,0.914796852137887,1.59623133254226,1.42489921651353,-1.43157103047771,0.187723588285813,0.207560405490224 +2.212,0.283959358069896,0.914725485646847,1.59623639349742,1.42473260615642,-1.43143973418319,0.187900733713442,0.207773328388309 +2.214,0.284025461445083,0.914654133036183,1.59624142129326,1.42456596666693,-1.43130843668737,0.188077883922394,0.207986285002188 +2.216,0.28409162461714,0.914582797819863,1.5962464144324,1.42439929399282,-1.43117713666879,0.188255036373055,0.208199277534823 +2.218,0.284157848019591,0.914511483184048,1.59625136949422,1.4242325817728,-1.43104583584535,0.188432192454143,0.208412305055274 +2.22,0.284224132096666,0.914440192459927,1.5962562851204,1.42406582523695,-1.43091453303887,0.188609348951971,0.208625369815753 +2.222,0.284290477205227,0.914368928451924,1.5962611581739,1.42389901799064,-1.43078323006451,0.188786506789174,0.208838470901634 +2.224,0.28435688370825,0.914297693939553,1.59626598770231,1.42373215579703,-1.4306519257999,0.188963662480728,0.209051610547744 +2.226,0.28442335187709,0.914226491037738,1.59627077107274,1.42356523323644,-1.43052062207644,0.189140816852945,0.209264787792185 +2.228,0.284489881987134,0.91415532173345,1.59627550791034,1.42339824736163,-1.43038931775519,0.189317966473171,0.209478004793452 +2.23,0.284556474221303,0.914084187280939,1.59628019620769,1.42323119423765,-1.43025801462199,0.189495112341244,0.209691260489075 +2.232,0.284623128768449,0.914013088773226,1.59628483623906,1.42306407248695,-1.43012671147106,0.189672251288401,0.209904556914962 +2.234,0.284689845728297,0.913942026569817,1.59628942664618,1.42289687973513,-1.42999541000448,0.189849384640998,0.210117892869715 +2.236,0.284756625212503,0.913871000898463,1.59629396833148,1.42272961607762,-1.42986410892316,0.190026509590903,0.210331270237183 +2.238,0.284830436727423,0.913806246238129,1.59629650291816,1.42257234956948,-1.42975335087265,0.190173507602479,0.210516236524952 +2.24,0.284896150108147,0.913739137603698,1.59630447140795,1.42241232086811,-1.42962060079575,0.190350748697888,0.210728238687637 +2.242,0.284960630151133,0.913669703803382,1.59631094337516,1.42224980549743,-1.42948581665702,0.190533741125582,0.210944766831365 +2.244,0.285025268545387,0.913598571710325,1.59631543615941,1.42208507527025,-1.42935139384339,0.190716797110161,0.211162006594419 +2.246,0.285090326896824,0.913526426333103,1.59631861842324,1.42191837994498,-1.42921760638828,0.19089882671554,0.211379233185233 +2.248,0.285155837154436,0.913453843306574,1.59632121085128,1.42175000287145,-1.42908439250789,0.191079737037698,0.211596261064429 +2.25,0.285221781874769,0.913381236030489,1.59632374696908,1.42158025816661,-1.42895164001578,0.191259648949988,0.211812997469274 +2.252,0.28528812942054,0.9133088563134,1.59632655034674,1.42140947841985,-1.4288192377862,0.191438717526581,0.212029384912974 +2.254,0.285354841357649,0.913236820134481,1.59632976376894,1.42123799207557,-1.42868709567225,0.19161710201309,0.212245392112909 +2.256,0.285421875616626,0.913165145283027,1.5963334035202,1.42106610969678,-1.42855514073813,0.191794946184713,0.21246102124079 +2.258,0.285489188918203,0.913093788201744,1.59633740528431,1.42089410633066,-1.4284233215483,0.191972383436164,0.212676297406618 +2.26,0.285556739190981,0.9130226764579,1.59634166961407,1.42072221508508,-1.42829159898102,0.192149526514244,0.212891267502324 +2.262,0.285624487323289,0.91295173179069,1.59634608812006,1.42055061777914,-1.42815994856249,0.192326475815585,0.213105985357413 +2.264,0.285699426485834,0.912887129632388,1.5963486423319,1.42038952209537,-1.42804892374772,0.192473184988827,0.213292028708334 +2.266,0.285766273161844,0.912820167272636,1.59635665487043,1.42022628507092,-1.42791590968162,0.192650091068395,0.213504931428451 +2.268,0.285831916054735,0.912750853518113,1.59636314468368,1.42006117172168,-1.42778088430112,0.192832779168467,0.2137222499741 +2.27,0.285897741920509,0.912679805851723,1.59636759521051,1.41989443828829,-1.42764624891526,0.19301558511094,0.21394019547531 +2.272,0.285964000886151,0.912607712772326,1.59637066666838,1.41972629956934,-1.42751227085737,0.193197429389365,0.214158071707674 +2.274,0.286037763843383,0.912541407977171,1.59637116899679,1.41956705685152,-1.42739947032932,0.19334810471847,0.214347217673599 +2.276,0.286103704414378,0.912472658462239,1.59637702295493,1.4194042376806,-1.42726510139483,0.193528105169251,0.214563047485034 +2.278,0.286168716438034,0.912401777158885,1.59638162835652,1.41923829880528,-1.42712904988662,0.193713131404851,0.214783026035347 +2.28,0.286234169404603,0.912329529102232,1.59638465139354,1.41906973903147,-1.42699363064244,0.193897620967265,0.215003300325011 +2.282,0.286300285384245,0.912256634314957,1.59638678506572,1.41889902896865,-1.42685904799362,0.194080607349146,0.215223141482909 +2.284,0.286367052537379,0.912183637633368,1.59638869472747,1.41872664830535,-1.42672518643264,0.194262111160761,0.215442389534358 +2.286,0.286434410503527,0.912110887721612,1.59639081868682,1.41855307420752,-1.4265918950285,0.194442351991142,0.215660997039181 +2.288,0.286502288067112,0.912038561878282,1.5963933758545,1.4183787647577,-1.42645903592863,0.194621567755353,0.215878962327926 +2.29,0.286570611852773,0.911966707641517,1.59639641462577,1.41820413525249,-1.42632650104193,0.19479998534886,0.216096312635468 +2.292,0.286639310096828,0.911895288887543,1.59639987754954,1.41802954615657,-1.42619420526044,0.194977801820393,0.216313105692078 +2.294,0.28670831512779,0.911824225361055,1.59640365024106,1.41785528908189,-1.42606208858621,0.195155190889384,0.216529415407245 +2.296,0.286777565494132,0.911753423984305,1.59640760506085,1.41768158533343,-1.42593010549318,0.19533229410854,0.216745328775315 +2.298,0.286854111481854,0.91168905409597,1.59640974594096,1.41751866872003,-1.42581883748827,0.195479093654916,0.216932411416337 +2.3,0.286922492344862,0.911622361545287,1.59641731816274,1.41735394071229,-1.42568557081308,0.195656054462825,0.217146265438313 +2.302,0.28698964723065,0.911553356501369,1.59642332544483,1.41718758776406,-1.42555031590518,0.195838818254863,0.217364491733951 +2.304,0.287056972433484,0.911482652899075,1.59642724237748,1.41701982732943,-1.42541547913397,0.196021707780759,0.217583308170494 +2.306,0.287124715643722,0.911410936328576,1.5964297264685,1.41685083444937,-1.4252813303023,0.196203646504491,0.217802021372371 +2.308,0.287192893586659,0.911338792031256,1.59643150410036,1.41668079388301,-1.42514779985382,0.196384551950953,0.218020473720021 +2.31,0.287268607438403,0.91127290657365,1.59643126077879,1.41651999432693,-1.42503539341583,0.196534407509561,0.218210060599603 +2.312,0.287336345552027,0.911204847104154,1.59643665334743,1.41635598192011,-1.42490127132689,0.196713736551371,0.218426274142015 +2.314,0.287403062403945,0.911134802766589,1.5964409089486,1.41618910816567,-1.42476537755659,0.196898269821714,0.218646632399122 +2.316,0.287470145566622,0.911063440787692,1.59644356728478,1.4160198103385,-1.42463006016417,0.197082403250057,0.218867296522452 +2.318,0.28753782285512,0.9109914177382,1.59644525013578,1.41584850522708,-1.4244955440154,0.197265138221299,0.219087555381695 +2.32,0.287606086377771,0.910919244804519,1.59644659371885,1.41567562076839,-1.42436172779445,0.19744647092547,0.219307264117297 +2.322,0.287674880539655,0.910847259150633,1.59644803599412,1.41550158548915,-1.42422847044352,0.197626600633805,0.219526383673346 +2.324,0.287744139884851,0.910775640830007,1.59644981297289,1.41532681409736,-1.4240956404621,0.19780574753226,0.219744913985546 +2.326,0.28781379734,0.910704447541925,1.59645199847203,1.41515168555473,-1.42396313334065,0.197984123050192,0.219962878648672 +2.328,0.287883787506682,0.910633655551638,1.59645456199048,1.4149765319631,-1.42383086572762,0.198161911210055,0.220180328245828 +2.33,0.287954048767033,0.910563195861739,1.59645741331638,1.41480162483977,-1.42369877822524,0.198339275156484,0.220397327850612 +2.332,0.288024525185961,0.910492983775621,1.59646044404857,1.41462717342195,-1.42356682524189,0.198516348159124,0.220613955425195 +2.334,0.288095167599933,0.910422938124552,1.59646354880066,1.41445332036332,-1.42343497678103,0.198693243372085,0.220830287591556 +2.336,0.288165934341774,0.910352993172184,1.59646664325573,1.4142801485162,-1.4233032088338,0.198870046363656,0.221046399719118 +2.338,0.288236791145855,0.910283102472973,1.59646966555554,1.41410768359958,-1.42317150649732,0.199046825829981,0.221262355269835 +2.34,0.288307710866834,0.910213239110617,1.59647257960849,1.41393590603988,-1.42303985606579,0.199223626992838,0.221478209892147 +2.342,0.288378672655595,0.9101433919147,1.59647536711436,1.41376475691441,-1.42290824962205,0.199400482785586,0.22169400458466 +2.344,0.28844966123146,0.910073561622095,1.59647802608956,1.41359415136553,-1.4227766783375,0.19957740758955,0.221909772780134 +2.346,0.288520665865947,0.910003755775489,1.59648056157993,1.41342398470196,-1.42264513789506,0.199754408518866,0.222125535552173 +2.348,0.28859167964982,0.909933985417821,1.59648298506936,1.41325414476472,-1.42251362237315,0.199931479225134,0.222341309735674 +2.35,0.288662698603234,0.909864261563985,1.59648530727821,1.41308451615247,-1.42238212993667,0.200108610997809,0.222557103482754 +2.352,0.288733721133345,0.909794593859221,1.59648754002221,1.41291499013028,-1.42225065683899,0.200285786302805,0.222772924179431 +2.354,0.288804747361918,0.909724988959488,1.59648969130283,1.41274546610523,-1.42211920310151,0.200462989443355,0.222988773513508 +2.356,0.288875778792062,0.909655450786399,1.59649176898663,1.41257585867593,-1.42198776649118,0.20064019961235,0.223204654741338 +2.358,0.288954056812547,0.909592255307588,1.59649198064404,1.41241619945428,-1.42187703139658,0.200787249095832,0.223391978207066 +2.36,0.289023886068366,0.909526653943693,1.59649756783241,1.4122538380293,-1.42174414503973,0.20096449241355,0.223606342987991 +2.362,0.28909235770535,0.909458724979898,1.59650160274382,1.41208879495588,-1.42160920437826,0.201147556068747,0.223825319886092 +2.364,0.289160936914384,0.909389113496892,1.59650359717226,1.41192127420634,-1.42147465104256,0.201330666450199,0.22404504304963 +2.366,0.289229908210364,0.909318515508051,1.5965042341326,1.41175151200937,-1.42134076870637,0.201512692223546,0.224264760197346 +2.368,0.289299311891353,0.909247512130409,1.59650425176231,1.41157980106594,-1.42120749382483,0.201693526958044,0.224484274862002 +2.37,0.289376400006597,0.909182796133929,1.59650241638178,1.41141658492459,-1.42109540761829,0.201843135628855,0.224674886984941 +2.372,0.289445389430376,0.909115857113016,1.59650627755393,1.41124964785999,-1.42096150874699,0.202022047562063,0.224892149601665 +2.374,0.289513352676493,0.909046891950889,1.59650905362318,1.41107939388751,-1.42082581238895,0.202206080505329,0.225113610922143 +2.376,0.289581717128828,0.908976563001783,1.59651027131062,1.41090639467775,-1.42069068923658,0.202389618304182,0.225335400862223 +2.378,0.289650722824214,0.908905522419645,1.59651055086633,1.41073121026053,-1.42055636773593,0.202571674159824,0.225556791946742 +2.38,0.289720365019636,0.908834278608198,1.59651053039013,1.41055440014601,-1.42042274409831,0.202752269572361,0.225777633043896 +2.382,0.289797880029847,0.908769450250944,1.5965088845149,1.41038661495017,-1.42031038621893,0.202901475990367,0.225969266138379 +2.384,0.28986739018283,0.908702447410131,1.59651304655059,1.41021579605311,-1.42017624066082,0.20307991103864,0.226187318757447 +2.386,0.289935956640503,0.908633421795082,1.59651615931559,1.41004240547543,-1.42004032397765,0.203263476710906,0.226409402704053 +2.388,0.290004985970513,0.90856300723275,1.59651769635144,1.40986703569417,-1.41990500264146,0.203446601756767,0.226631691345219 +2.39,0.290074697499547,0.908491844386366,1.59651824767984,1.40969022542552,-1.41977049985969,0.203628331916277,0.226853494149154 +2.392,0.290145069001099,0.908420443466502,1.59651843793345,1.40951247706631,-1.41963670725744,0.203808709082747,0.227074689490948 +2.394,0.290223349883293,0.908355437585923,1.59651695520777,1.40934436036693,-1.41952420361979,0.203957810787022,0.227266626876437 +2.396,0.290293595474453,0.908288240225942,1.59652121621416,1.40917373204439,-1.41938990077001,0.204136252410424,0.227484964854452 +2.398,0.290362881067492,0.908219024699818,1.59652436985607,1.40900092139583,-1.41925382790654,0.204319940609247,0.22770733289413 +2.4,0.290432614799404,0.908148442447246,1.59652589516713,1.40882640370244,-1.41911835573996,0.20450328168123,0.22792990500254 +2.402,0.290503014301008,0.908077148522537,1.59652638862794,1.40865060918229,-1.4189837087913,0.204685299109163,0.22815199110166 +2.404,0.290574055573309,0.908005663704355,1.59652648014033,1.40847394228542,-1.41884977950095,0.204866013062886,0.228373470073561 +2.406,0.290645667854594,0.907934341267853,1.59652661009573,1.40829677559511,-1.41871642010949,0.205045639254959,0.228594322724364 +2.408,0.29071777291567,0.907863380040441,1.59652702024504,1.40811944345666,-1.4185834936346,0.205224404369201,0.228814563581785 +2.41,0.29079029328857,0.907792856292957,1.59652779049016,1.40794222844213,-1.41845089173392,0.205402517192668,0.229034226294048 +2.412,0.290863155287552,0.907722762772671,1.59652889527084,1.40776535800954,-1.41831852892998,0.205580151640965,0.229253368070768 +2.414,0.290936290787564,0.907653043806154,1.59653024765227,1.40758899762543,-1.4181863451741,0.205757455290555,0.229472058271725 +2.416,0.291009638871592,0.907583624444121,1.59653174093642,1.40741325473877,-1.41805429546142,0.20593454229818,0.229690377555241 +2.418,0.291090519887156,0.907520723750908,1.59653155381474,1.40724829792274,-1.41794310798463,0.206081339964927,0.229879744402345 +2.42,0.291162909060127,0.907455472884278,1.59653673838117,1.40708161611856,-1.41780974531839,0.206258279632447,0.230095911555043 +2.422,0.291233967061287,0.907387932599464,1.59654030324828,1.4069131178477,-1.41767436209743,0.206441117730515,0.230316554966263 +2.424,0.29130516222885,0.907318734288175,1.59654171706345,1.40674293316334,-1.41753941376057,0.206624083701379,0.230537836877502 +2.426,0.291376763798051,0.907248572176677,1.59654165031152,1.40657120850184,-1.41740518188676,0.206806052168657,0.230759033294223 +2.428,0.291448795343382,0.907178033657156,1.59654084522425,1.40639812714606,-1.41727159700289,0.206986920787499,0.230979973491883 +2.43,0.291521229696192,0.90710754257365,1.5965398606052,1.40622390434033,-1.41713853599578,0.207166805753017,0.231200579760057 +2.432,0.291594027394962,0.907037357637598,1.59653904316754,1.40604877880203,-1.41700587743087,0.207345855483187,0.23142080606389 +2.434,0.291667144329741,0.906967597300234,1.59653855508586,1.40587299403107,-1.41687352249695,0.207524219923666,0.231640629191744 +2.436,0.291740534635304,0.906898277431645,1.59653842836714,1.40569678736671,-1.41674139152666,0.207702031806756,0.231860056821504 +2.438,0.291821570506749,0.906835648733303,1.59653692148048,1.4055304982074,-1.41663021014094,0.207849244408017,0.232050434150971 +2.44,0.29190155663462,0.90677710536766,1.59653936010818,1.40537195305239,-1.41651764935194,0.207996155707014,0.232238826065233 +2.442,0.291971604487901,0.906713846887593,1.59654581756583,1.40520873466004,-1.41638079390941,0.208178947608204,0.232458622754332 +2.444,0.292040423877599,0.90664657245716,1.59654878013212,1.40504105958135,-1.41624229399761,0.208367619136414,0.232683606001011 +2.446,0.292109789562423,0.906576594109219,1.5965483730441,1.40486943588757,-1.41610490142137,0.208555272212691,0.232909157146899 +2.448,0.292180012726326,0.906505172984766,1.59654598928599,1.40469443724104,-1.4159688303704,0.208740695358781,0.233134350595547 +2.45,0.292251098917076,0.906433299144113,1.59654290275584,1.40451669341219,-1.41583389135785,0.20892393928313,0.23335891794557 +2.452,0.292322985509203,0.906361638663724,1.59653999292605,1.40433686917853,-1.41569983874932,0.209105306598203,0.233582728124742 +2.454,0.292395589351109,0.90629055880798,1.59653774301106,1.40415562632342,-1.41556645314508,0.209285138491273,0.233805707689736 +2.456,0.292468818510532,0.906220191938142,1.59653632706633,1.4039735930227,-1.41543355379795,0.209463753715169,0.23402784329195 +2.458,0.292542577824896,0.906150509486332,1.5965357066107,1.40379133114588,-1.41530100569375,0.209641443710372,0.234249171676122 +2.46,0.292616773868772,0.906081392178062,1.59653572721713,1.40360931869,-1.41516870793027,0.209818458652828,0.23446977522563 +2.462,0.29269879017114,0.906018992239727,1.59653452883123,1.40343806341931,-1.41505740448301,0.209964842393132,0.234661047339467 +2.464,0.292772361760489,0.905954310791066,1.59653897888374,1.40326539119256,-1.4149239064709,0.210141129168145,0.234878844217836 +2.466,0.292844695817937,0.905887348047649,1.59654198252008,1.40309134424175,-1.41478840456105,0.21032322443869,0.235100921586535 +2.468,0.292917257674235,0.905818683735716,1.59654292143704,1.40291618752822,-1.41465335955347,0.210505410725495,0.235323473588349 +2.47,0.29299029920137,0.905748980382985,1.59654241010833,1.40274015862861,-1.41451904823062,0.210686614162552,0.235545812107608 +2.472,0.29306382534382,0.905678812639972,1.59654115781613,1.40256348256192,-1.41438539445742,0.210866777467186,0.235767801086565 +2.474,0.293137792677838,0.905608606754033,1.5965397063425,1.40238637163392,-1.41425226901343,0.211046050651306,0.235989391567414 +2.476,0.29321965095859,0.905544945668612,1.5965367545112,1.40221915682113,-1.41414037695767,0.211194430637203,0.236181827956496 +2.478,0.29329309446832,0.905479106434496,1.59653950579676,1.40204958584629,-1.41400643410164,0.211372428094267,0.236400861455459 +2.48,0.293365369562032,0.905411257511699,1.59654106302487,1.4018776513402,-1.41387059965661,0.211555957557095,0.236624157524476 +2.482,0.293437955185651,0.90534204226289,1.59654087611152,1.40170364757697,-1.41373530625385,0.211739299516413,0.236847833323002 +2.484,0.293511104111019,0.905272116257125,1.59653955044002,1.40152789814114,-1.41360080326415,0.211921381065935,0.237071164639251 +2.486,0.293584815383325,0.905202004068459,1.59653773487504,1.40135074433301,-1.41346700230023,0.212102167027436,0.23729399976757 +2.488,0.293659036656192,0.905132063700377,1.5965358966157,1.40117253840593,-1.41333376241033,0.212281827270949,0.237516300012794 +2.49,0.29373370492231,0.905062496116363,1.59653429936776,1.40099362415206,-1.41320095502447,0.212460564706035,0.237738057390195 +2.492,0.293808755497859,0.904993377295331,1.5965330457805,1.40081432406279,-1.41306847177027,0.212638566534615,0.237959291964826 +2.494,0.293884124958741,0.904924695930273,1.59653212476884,1.40063492186354,-1.41293623164786,0.212816003942374,0.238180043334425 +2.496,0.293959753459217,0.904856390358564,1.59653146392137,1.4004556563241,-1.41280417194696,0.21299302051307,0.238400372324895 +2.498,0.294035586327785,0.904788377356415,1.59653096383121,1.40027671210469,-1.41267224989507,0.213169741166221,0.238620347443717 +2.5,0.294111575483738,0.904720573518167,1.59653052831372,1.40009822157265,-1.41254043269569,0.213346264449693,0.238840043415671 +2.502,0.294187679953108,0.904652907126396,1.59653007564466,1.39992026307489,-1.4124086996721,0.213522672983964,0.23905952848761 +2.504,0.294263866142071,0.904585324384321,1.59652954895105,1.39974286915531,-1.41227703338959,0.213699026240885,0.239278866341953 +2.506,0.294340107337633,0.904517789486728,1.59652891248036,1.39956602972178,-1.4121454233423,0.213875371358834,0.239498107394887 +2.508,0.294416383217606,0.904450282834481,1.59652815200271,1.39938970337509,-1.41201385879582,0.214051736474405,0.239717294254891 +2.51,0.29449267887725,0.904382796601623,1.59652726573567,1.39921382221136,-1.41188233376311,0.214228141721363,0.239936456035083 +2.512,0.29456898411307,0.904315331219136,1.59652626298176,1.39903830350733,-1.41175084074525,0.214404592585906,0.240155615959125 +2.514,0.294645292421736,0.904247891116608,1.59652515565624,1.39886305384569,-1.41161937627823,0.214581090808554,0.240374786894596 +2.516,0.294721600386518,0.904180482483716,1.5965239587724,1.39868797927869,-1.41148793505518,0.214757627679804,0.240593979327761 +2.518,0.294797906859588,0.904113110760904,1.59652268431517,1.39851298742585,-1.41135651559472,0.21493419467902,0.240813196789647 +2.52,0.294874212557616,0.904045780164797,1.59652134400159,1.39833799531688,-1.4112251143681,0.215110776430878,0.2410324433928 +2.522,0.294950519452325,0.903978492681633,1.59651994502987,1.39816292907963,-1.41109373140861,0.215287360904147,0.241251718671822 +2.524,0.29502683055252,0.903911248713746,1.59651849417122,1.39798772941119,-1.41096236439981,0.215463931914489,0.241471024482753 +2.526,0.295103149453526,0.903844046800153,1.59651699432979,1.39781234907113,-1.4108310142461,0.215640478808303,0.241690359289029 +2.528,0.295179480249396,0.903776884648681,1.59651544901303,1.39763675641315,-1.41069967915441,0.215816988437895,0.241909724613298 +2.53,0.295255827185922,0.903709758980747,1.59651385894787,1.39746093124388,-1.41056836023052,0.215993454337888,0.242129118991602 +2.532,0.295332194658119,0.903642666515786,1.5965122264077,1.3972848670486,-1.41043705561589,0.216169868224233,0.242348544198256 +2.534,0.295408586931889,0.903575603673872,1.59651055158563,1.39710856587645,-1.41030576615513,0.216346228757481,0.242567999061258 +2.536,0.295485008202193,0.903508567384511,1.59650883666303,1.39693203991765,-1.4101744896052,0.216522532674632,0.242787485619437 +2.538,0.295561462365524,0.903441554618866,1.59650708194965,1.3967553060332,-1.41004322637682,0.216698783276122,0.243007002907477 +2.54,0.295637953125987,0.903374563056494,1.59650528977563,1.3965783872394,-1.40991197380506,0.216874981338295,0.243226553111404 +2.542,0.295714483808159,0.90330759051167,1.59650346051369,1.39640130736208,-1.40978073194145,0.217051133470053,0.24344613536003 +2.544,0.295791057501214,0.903240635529808,1.59650159641221,1.39622409282264,-1.40964949785697,0.217227242944745,0.243665751894119 +2.546,0.295867676902052,0.903173696772206,1.59649969760181,1.39604676772244,-1.40951827145345,0.217403318049148,0.243885401867701 +2.548,0.295944344486398,0.903106773591554,1.59649776594501,1.39586935614503,-1.40938704977237,0.217579362944725,0.244105087524782 +2.55,0.29602106237078,0.903039865408142,1.5964958010777,1.39569187780221,-1.40925583280011,0.217755386093219,0.244324808005723 +2.552,0.296097832498696,0.902972972282722,1.59649380430113,1.39551435090615,-1.40912461776471,0.217931391214477,0.244544565525094 +2.554,0.296174656510179,0.902906094291247,1.59649177466665,1.39533678836566,-1.40899340492028,0.218107385830449,0.244764359181112 +2.556,0.296251535932429,0.902839232094997,1.59648971290478,1.39515920116082,-1.40886219182471,0.218283372346213,0.244984191131987 +2.558,0.29632847204798,0.902772386310272,1.59648761754113,1.39498159498065,-1.40873097909885,0.218459356717898,0.245204060409582 +2.56,0.296405466082306,0.902705558071664,1.59648548884665,1.39480397396134,-1.40859976468602,0.21863533965068,0.24542396909461 +2.562,0.296482519065117,0.902638748393791,1.59648332496887,1.39462633760936,-1.4084685495883,0.218811325370621,0.245643916136424 +2.564,0.29655963201116,0.902571958727092,1.59648112588879,1.39444868474016,-1.40833733211343,0.218987312912758,0.245863903527639 +2.566,0.296636805772674,0.902505190313373,1.59647888955496,1.39427101052655,-1.40820611359415,0.219163304963487,0.24608393013072 +2.568,0.296714041212861,0.902438444738144,1.59647661583747,1.39409331048827,-1.40807489262928,0.219339299202845,0.246303997851778 +2.57,0.296791339050167,0.902371723285495,1.59647430265735,1.39391557753218,-1.4079436707932,0.21951529718131,0.246524105473055 +2.572,0.296868700026042,0.902305027493432,1.59647194993232,1.39373780588006,-1.40781244687737,0.219691295681077,0.24674425482484 +2.574,0.29694612474322,0.902238358514656,1.59646955569757,1.39355998801037,-1.40768122259619,0.219867295596072,0.246964444622107 +2.576,0.297023613830335,0.902171717681104,1.5964671200408,1.39338211845788,-1.40754999683378,0.220043293284057,0.247184676633384 +2.578,0.297101167776785,0.902105105875937,1.5964646412126,1.39320419061327,-1.40741877135075,0.220219289427882,0.247404949519852 +2.58,0.297178787096776,0.902038524111448,1.59646211955001,1.3930262003726,-1.40728754503925,0.220395280360362,0.247625265000462 +2.582,0.297256472163019,0.901971972915059,1.59645955357602,1.39284814279102,-1.40715631963319,0.220571266895209,0.247845621692466 +2.584,0.297334223372168,0.901905452922057,1.59645694391217,1.39267001559449,-1.40702509397277,0.220747245616925,0.248066021272737 +2.586,0.297412040978844,0.901838964275745,1.5964542893679,1.39249181571228,-1.406893869719,0.220923217679191,0.248286462319495 +2.588,0.297489925263604,0.901772507233953,1.59645159084359,1.39231354268483,-1.40676264562733,0.221099180060553,0.248506946470341 +2.59,0.297567876367936,0.901706081581288,1.59644884741158,1.3921351951145,-1.40663142326597,0.2212751343349,0.248727472265521 +2.592,0.297645894465071,0.901639687246513,1.59644606021183,1.39195677401187,-1.40650020129733,0.221451077899456,0.248948041303448 +2.594,0.297723979595874,0.901573323723388,1.59644322852728,1.39177827920708,-1.40636898119871,0.221627012725862,0.249168652086131 +2.596,0.297802131842168,0.901506990694977,1.59644035367482,1.3915997126749,-1.40623776154968,0.221802936569738,0.249389306172879 +2.598,0.297880351162974,0.901440687458912,1.59643743507791,1.39142107494311,-1.40610654375338,0.221978851712007,0.249610002028512 +2.6,0.297958637569633,0.901374413554397,1.59643447415591,1.39124236842768,-1.40597532632811,0.222154756159488,0.249830741175671 +2.602,0.298036990961614,0.901308168187794,1.59643147039675,1.39106359386396,-1.40584411062726,0.222330652385099,0.250051522046187 +2.604,0.298115411302631,0.901241950858457,1.59642842524728,1.39088475367149,-1.40571289513365,0.222506538527347,0.250272346132076 +2.606,0.298193898455238,0.901175760781141,1.5964253381885,1.39070584842138,-1.40558168117666,0.222682417135785,0.250493211840139 +2.608,0.298272452357218,0.901109597507609,1.59642221062896,1.3905268802385,-1.40545046722815,0.222858286374704,0.250714120641401 +2.61,0.298351072854362,0.901043460343346,1.59641904198435,1.39034784930781,-1.40531925461579,0.223034148777519,0.250935070928725 +2.612,0.298429759876651,0.900977348962978,1.59641583357517,1.39016875731203,-1.40518804182006,0.223210002457238,0.251156064164233 +2.614,0.298508513268858,0.900911262819899,1.59641258471169,1.38998960397161,-1.4050568301832,0.22338584987091,0.25137709873955 +2.616,0.298587332966297,0.900845201754704,1.59640929659635,1.38981039050999,-1.40492561820707,0.223561689037113,0.251598176120641 +2.618,0.298666218823185,0.900779165397478,1.59640596841414,1.38963111621743,-1.4047944072578,0.223737522309657,0.251819294710242 +2.62,0.298745170787991,0.900713153769502,1.59640260123962,1.38945178193308,-1.40466319586461,0.223913347600674,0.252040455989611 +2.622,0.298824188729689,0.900647166678933,1.59639919413208,1.38927238662172,-1.40453198542037,0.224089167161602,0.252261658382724 +2.624,0.298903272612943,0.900581204316887,1.59639574804632,1.38909293086205,-1.40440077448186,0.224264978809597,0.252482903394582 +2.626,0.298982422322547,0.900515266647946,1.59639226193157,1.38891341342652,-1.40426956446657,0.224440784713367,0.252704189476916 +2.628,0.299061637838773,0.9004493540023,1.59638873664489,1.38873383476723,-1.40413835395482,0.224616582620468,0.252925518162856 +2.63,0.299140919060354,0.900383466462901,1.59638517105251,1.3885541935918,-1.40400714438337,0.224792374645715,0.253146887934073 +2.632,0.299220265980361,0.900317604455592,1.59638156594445,1.38837449034124,-1.40387593434983,0.224968158497246,0.253368300351832 +2.634,0.299299678508064,0.900251768134838,1.59637792013701,1.38819472375793,-1.40374472530338,0.225143936265754,0.253589753925659 +2.636,0.299379156645656,0.900185957973708,1.59637423438723,1.388014894353,-1.40361351585189,0.225319705647838,0.253811250240984 +2.638,0.299458700309262,0.900120174149945,1.59637050749536,1.38783500096526,-1.40348230745015,0.225495468734984,0.254032787829569 +2.64,0.29953830950675,0.900054417137394,1.59636674021807,1.38765504421833,-1.40335109870984,0.22567122323341,0.254254368294045 +2.642,0.299617984158062,0.899988687093808,1.59636293136987,1.38747502307158,-1.40321989108545,0.225846971252388,0.254475990180448 +2.644,0.299697724274238,0.899922984454876,1.59635908173431,1.38729493826887,-1.40308868318732,0.226022710520424,0.254697655099995 +2.646,0.299777529777142,0.899857309324682,1.59635519016374,1.38711478888391,-1.40295747646533,0.226198443173032,0.254919361604092 +2.648,0.299857400679736,0.899791662072984,1.59635125748802,1.38693457576341,-1.40282626952497,0.226374166965559,0.25514111130369 +2.65,0.299937336905191,0.899726042728729,1.59634728261239,1.38675429806963,-1.40269506380883,0.22654988406085,0.255362902747091 +2.652,0.30001733846836,0.899660451580739,1.59634326642355,1.38657395672073,-1.40256385791571,0.226725592239273,0.255584737537158 +2.654,0.300097405294202,0.899594888574205,1.59633920788568,1.38639355093321,-1.4024326532798,0.226901293686886,0.255806614212173 +2.656,0.300177537400364,0.899529353914508,1.59633510794411,1.38621308166166,-1.40230144849277,0.227076986203272,0.25602853436107 +2.658,0.300257734714809,0.899463847466239,1.59633096561982,1.38603254814311,-1.40217024498055,0.227252671990799,0.256250496507492 +2.66,0.300345908523269,0.899404728861767,1.59632538195854,1.38586212593942,-1.40206011516091,0.227398153343001,0.256443538739304 +2.662,0.300424955084221,0.899342973524842,1.59632509695083,1.38568966073801,-1.40192733840428,0.227573723447855,0.256663685488388 +2.664,0.300502494867581,0.899278784021531,1.59632318218924,1.38551465774176,-1.40179239087716,0.227755398776041,0.256888701722535 +2.666,0.30058016723581,0.899212862234791,1.59631912319724,1.38533721763953,-1.40165784136578,0.227937237006091,0.257114585397472 +2.668,0.300658304598462,0.899145947478587,1.5963136329971,1.38515757044389,-1.40152399711702,0.228118021420379,0.257340514627299 +2.67,0.30074488948891,0.899085012853365,1.59630609733717,1.38498619467687,-1.40141188143019,0.228267432768146,0.257537284145961 +2.672,0.3008227583145,0.899021457975348,1.59630381354593,1.38481130016751,-1.40127761476906,0.228445876123387,0.257760823668542 +2.674,0.300899513727755,0.898955745668999,1.5963001965813,1.38463274634315,-1.40114156202752,0.228629547266751,0.257988836119776 +2.676,0.300976757364129,0.898888691024946,1.59629488546442,1.38445100504272,-1.40100618868534,0.228812660905126,0.258217285448783 +2.678,0.301054774649544,0.898821041183152,1.59628860735685,1.38426665592558,-1.40087172516926,0.228994159708621,0.258445344514503 +2.68,0.301141520271117,0.898759716083285,1.59628069698122,1.38409049568916,-1.40075914656671,0.229143860767292,0.25864382590134 +2.682,0.301219735845702,0.89869602175377,1.59627833412741,1.38391101624463,-1.40062449970243,0.229322287486943,0.258868723258448 +2.684,0.301296994592413,0.898630334229543,1.59627482668123,1.38372826974602,-1.40048813265501,0.229505754019581,0.259097805647219 +2.686,0.301374862574192,0.898563390339832,1.59626971629313,1.38354287339851,-1.40035249791717,0.229688561371253,0.259327091045353 +2.688,0.301453591320652,0.898495877958699,1.59626366224009,1.38335550338925,-1.40021780934729,0.229869713566699,0.259555811354371 +2.69,0.301541127903397,0.898434679474022,1.59625596555331,1.38317700092518,-1.40010504763042,0.230019083155371,0.25975481246704 +2.692,0.301620143738205,0.898371071369513,1.59625376529551,1.38299587134948,-1.39997022192517,0.230197228168861,0.259980142960444 +2.694,0.301698209654291,0.898305426639212,1.59625035996178,1.38281210865063,-1.39983368842149,0.230380502579336,0.260209607321119 +2.696,0.301776882787196,0.898238487428843,1.59624529467372,1.38262626088596,-1.39969789663831,0.230563210533832,0.260439243624947 +2.698,0.301856405149433,0.898170951688483,1.59623923459358,1.3824389149258,-1.39956306174734,0.230744362702727,0.26066829166347 +2.7,0.301944738582551,0.898109717121004,1.59623150517966,1.38226081747226,-1.39945017358592,0.230893822310719,0.260867594191045 +2.702,0.302024503257446,0.898046064582393,1.59622923964848,1.38208038917359,-1.39931520968702,0.231072131691706,0.261093220141047 +2.704,0.302103283329656,0.897980381583329,1.59622574481137,1.3818975081459,-1.39917853782528,0.231255642583679,0.261322983110145 +2.706,0.302182639889109,0.89791342007565,1.5962205674961,1.38171262510092,-1.39904261482298,0.231438640468902,0.261552914515851 +2.708,0.30226281620458,0.897845885607694,1.59621437885774,1.38152624846616,-1.39890765397203,0.231620108869199,0.261782255808016 +2.71,0.302351796740004,0.897784682221578,1.59620651821451,1.38134905977809,-1.39879466192301,0.23176989503195,0.261981833134714 +2.712,0.302432156855525,0.897721084612377,1.59620410296247,1.38116944298967,-1.39865958706169,0.23194852068768,0.262207730382068 +2.714,0.302511498952035,0.897655484198767,1.59620043861638,1.38098721952716,-1.39852281240113,0.232132338392406,0.262437766177204 +2.716,0.302591391770788,0.897588633772365,1.59619507281384,1.38080281456058,-1.39838679738344,0.232315612190895,0.262667970578923 +2.718,0.302672082045437,0.897521237597716,1.59618867462841,1.38061672306829,-1.39825176070884,0.232497320505007,0.262897578901003 +2.72,0.302753535777188,0.897453827457377,1.59618192163446,1.38042944345554,-1.39811756550067,0.232677499583085,0.263126447617475 +2.722,0.302835661909435,0.897386740765332,1.59617527199389,1.38024144732879,-1.39798403334144,0.232856400431827,0.263354558663824 +2.724,0.302918360129117,0.897320144840593,1.59616896383194,1.38005316339628,-1.39785100174351,0.233034287814322,0.263581938204553 +2.726,0.303001531650715,0.897254078213292,1.59616306270546,1.37986495848456,-1.397718342788,0.233211406270668,0.263808636599726 +2.728,0.303085083339976,0.897188496496817,1.59615752648971,1.37967713077497,-1.39758595670823,0.233387961228606,0.264034729539807 +2.73,0.3031689299075,0.897123311616305,1.59615225466895,1.37948990114232,-1.39745377308658,0.233564127245637,0.264260304566652 +2.732,0.303252995855785,0.897058422886339,1.59614713215619,1.37930341653245,-1.39732173959637,0.233740040830532,0.264485458447983 +2.734,0.303337216278429,0.896993736567201,1.59614205109735,1.37911775077983,-1.39718982231302,0.233915812309398,0.264710282885271 +2.736,0.303421537363378,0.896929177443954,1.5961369284166,1.37893291601608,-1.39705799534571,0.234091519967301,0.264934864491564 +2.738,0.303505915820808,0.896864691991546,1.59613170620351,1.37874886953742,-1.39692624296853,0.234267222498671,0.265159274769991 +2.74,0.303590318264089,0.896800247905048,1.59612635383289,1.37856552892933,-1.3967945514809,0.234442953670222,0.265383574501237 +2.742,0.30367471986694,0.896735829678182,1.5961208589938,1.37838278062864,-1.39666291321508,0.23461873478289,0.265607807771295 +2.744,0.303759103309167,0.896671434347325,1.59611522544155,1.37820049495219,-1.39653131987716,0.234794569173898,0.265832009424102 +2.746,0.303843457294616,0.896607066116491,1.59610946327099,1.37801853316237,-1.39639976758072,0.23497045429996,0.266056201046449 +2.748,0.303927775567438,0.896542732970883,1.59610358808568,1.37783675990206,-1.39626825090441,0.235146375877873,0.266280399273789 +2.75,0.304012055645289,0.896478443132254,1.59609761378718,1.37765504702907,-1.39613676827186,0.235322319379808,0.266504611910537 +2.752,0.304096298115988,0.896414203797481,1.59609155450108,1.37747328248935,-1.39600531616148,0.235498263531802,0.266728845836316 +2.754,0.304180505673862,0.896350019574031,1.59608541982942,1.37729137055855,-1.39587389450595,0.235674191060068,0.266953102452615 +2.756,0.304264682704179,0.896285892818059,1.59607921866349,1.37710923728157,-1.39574250090114,0.235850081443837,0.26717738479129 +2.758,0.304348834577367,0.89622182320873,1.5960729556901,1.37692682761922,-1.3956111359872,0.236025920877824,0.267401692215259 +2.76,0.304432967453792,0.896157808786715,1.5960666358878,1.37674410823239,-1.39547979766468,0.236201694257471,0.267626026893384 +2.762,0.304517087759985,0.896093845867814,1.59606026126249,1.37656106246808,-1.39534848651658,0.236377394429432,0.267850388007674 +2.764,0.304601202145506,0.896029930161253,1.59605383526824,1.37637769149837,-1.39521720009484,0.236553013525341,0.268074777878211 +2.766,0.304685317082516,0.895966056601125,1.59604735929283,1.37619400816053,-1.39508593843475,0.236728551668266,0.268299195941604 +2.768,0.304769438928829,0.895902220301938,1.59604083676935,1.37601003742303,-1.39495469843411,0.236904007839465,0.268523644752818 +2.77,0.304853573614415,0.895838416204633,1.59603426935991,1.37582580996504,-1.39482347946269,0.237079388250646,0.268748123901965 +2.772,0.304937726782172,0.895774639860682,1.5960276608222,1.37564136273952,-1.39469227781844,0.237254696959702,0.268972636004178 +2.774,0.305021903537801,0.895710886938693,1.59602101301914,1.37545673293244,-1.39456109239991,0.237429944114643,0.269197180623567 +2.776,0.305106108647174,0.895647153905448,1.59601432968652,1.37527195912421,-1.39442991920076,0.237605136510331,0.269421760285035 +2.778,0.305190346329935,0.895583437462125,1.59600761240614,1.37508707599384,-1.39429875700174,0.237780285867267,0.269646374419364 +2.78,0.30527462049388,0.895519735179322,1.59600086438393,1.37490211630983,-1.39416760186657,0.237955399471132,0.269871025393653 +2.782,0.305358934553581,0.895456044903238,1.59599408646549,1.37471710649211,-1.39403645281845,0.238130488589866,0.270095712472223 +2.784,0.305443291683347,0.895392365368479,1.59598728097158,1.37453206943866,-1.39390530631288,0.238305559274665,0.270320437855372 +2.786,0.3055276946442,0.895328695584628,1.59598044777795,1.3743470208655,-1.39377416187919,0.238480620958023,0.270545200650004 +2.788,0.305612146040223,0.895265035428409,1.59597358820959,1.37416197281938,-1.39364301656161,0.23865567743773,0.270770002909291 +2.79,0.305696648141472,0.895201385007706,1.59596670117434,1.37397693059779,-1.39351187052122,0.238830735649565,0.270994843610194 +2.792,0.305781203133674,0.895137745229428,1.59595978709777,1.37379189671785,-1.3933807214481,0.239005796812788,0.271219724690716 +2.794,0.3058658129301,0.895074117138916,1.59595284408977,1.37360686817289,-1.39324957012928,0.239180865339304,0.271444645033305 +2.796,0.305950479410221,0.895010502464708,1.59594587189957,1.37342184061454,-1.39311841484137,0.239355940094447,0.271669606498034 +2.798,0.306035204218686,0.894946902937958,1.59593886809636,1.37323680571573,-1.39298725689499,0.239531023390286,0.271894607910678 +2.8,0.306119988993189,0.894883320822088,1.59593183202842,1.37305175535883,-1.39285609501903,0.239706112307523,0.272119651090425 +2.802,0.306204835152438,0.894819758222629,1.59592476100419,1.37286667892696,-1.39272493089284,0.239881207720989,0.272344734840722 +2.804,0.306289744116395,0.894756217613777,1.59591765424482,1.37268156735406,-1.39259376353214,0.240056305633416,0.272569860970156 +2.806,0.306374717087032,0.894692701151113,1.59591050905683,1.37249641023536,-1.39246259481853,0.240231406191326,0.272795028284068 +2.808,0.306459755265211,0.894629211207185,1.59590332477161,1.37231119966568,-1.39233142389419,0.240406504994082,0.273020238597812 +2.81,0.30654485962833,0.894565749698071,1.59589609890431,1.37212592712762,-1.39220025269543,0.240581602073203,0.273245490727865 +2.812,0.306630031147792,0.89450231863726,1.59588883107667,1.37194058710676,-1.39206908036024,0.240756693155702,0.273470786497686 +2.814,0.306715270566856,0.894438919483309,1.59588151915939,1.37175517377057,-1.39193790876918,0.240931778595097,0.273696124728224 +2.816,0.306800578621479,0.894375553717091,1.59587416317706,1.37156968439391,-1.39180673696717,0.241106854582669,0.273921507237611 +2.818,0.30688595582034,0.89431222221339,1.59586676143358,1.37138411587681,-1.39167556671228,0.241281922031148,0.274146932832088 +2.82,0.306971402670402,0.894248925842272,1.59585931439994,1.37119846803839,-1.39154439691076,0.241456977738783,0.274372403301407 +2.822,0.307056919459688,0.894185664863475,1.59585182082431,1.3710127400366,-1.39141322917244,0.241632023235251,0.274597917411851 +2.824,0.307142506487576,0.894122439549064,1.59584428160523,1.3708269335949,-1.3912820622567,0.241807055910289,0.274823476899314 +2.826,0.307228163849782,0.894059249596452,1.59583669588964,1.37064104938563,-1.39115089763183,0.241982077835512,0.275049080466176 +2.828,0.307313891672439,0.893996094767067,1.5958290649352,1.37045509024578,-1.39101973392914,0.242157086871908,0.275274729773649 +2.83,0.307399689898045,0.893932974311995,1.59582138820072,1.37026905757341,-1.39088857250334,0.242332085481587,0.275500423443878 +2.832,0.307485558521884,0.89386988762017,1.59581366720199,1.370082954573,-1.39075741189198,0.242507071827542,0.275726163052439 +2.834,0.307571497377433,0.893806833649968,1.59580590159921,1.36989678269626,-1.39062625337416,0.242682048587014,0.275951947136367 +2.836,0.307657506373617,0.893743811580318,1.5957980930509,1.36971054493927,-1.39049509543302,0.242857014053828,0.276177777186923 +2.838,0.307743585278286,0.893680820241944,1.59579024130253,1.369524242341,-1.39036393931073,0.243031970961298,0.276403651663523 +2.84,0.307829733955058,0.893617858765573,1.59578234804237,1.36933787733756,-1.39023278347243,0.24320691759343,0.276629571986205 +2.842,0.307924263931811,0.893561322465197,1.59577324588214,1.36916166215961,-1.39012295673062,0.243351654101585,0.27682632943795 +2.844,0.308009242222194,0.893502043847026,1.59576938888761,1.36898372974646,-1.38999017063952,0.243526375298944,0.277050239681309 +2.846,0.30809259131901,0.893440289806944,1.59576384794709,1.36880324603627,-1.38985514994783,0.243707355036082,0.277279173504198 +2.848,0.308176058843864,0.893376791078115,1.59575609543747,1.36862023249099,-1.38972054161679,0.243888541411302,0.277509049086869 +2.85,0.30826001041228,0.893312307459241,1.59574685860612,1.36843490351442,-1.38958667408802,0.244068669912016,0.277738994435622 +2.852,0.308344505249162,0.893247464484557,1.59573693409123,1.3682475684805,-1.38945347941395,0.244247597971537,0.277968763280425 +2.854,0.308437867758551,0.893189099699989,1.59572575908565,1.36806880487219,-1.38934216858452,0.24439524087344,0.278169012950054 +2.856,0.308522076555291,0.893128295925013,1.59572012279385,1.36788715586769,-1.38920828155727,0.244571951823598,0.278396007905837 +2.858,0.308605027725133,0.893065433619045,1.59571325161588,1.36770215817774,-1.38907244926679,0.244754193412333,0.27862759172132 +2.86,0.308688424754805,0.893001248410518,1.59570463303932,1.36751420006371,-1.38893723798811,0.244936067277921,0.278859678813363 +2.862,0.308772582109444,0.892936439952654,1.59569492852928,1.36732382827076,-1.38880291403569,0.245116450184241,0.279091425009801 +2.864,0.30885750716277,0.892871543548533,1.59568483220461,1.36713163397095,-1.38866936466281,0.245295325665469,0.279322633698614 +2.866,0.308943137669958,0.892806903431813,1.59567482594205,1.36693820347302,-1.38853642462875,0.24547291956732,0.279553246390851 +2.868,0.309029394131646,0.892742693951386,1.59566517106543,1.36674409057808,-1.38840393865862,0.245649487795051,0.279783256198737 +2.87,0.309116192346853,0.892678959237187,1.59565595259608,1.36654978872686,-1.38827178243992,0.245825276501644,0.28001268626952 +2.872,0.309203448671,0.892615658484184,1.59564714289814,1.36635571685361,-1.38813985793948,0.246000499584184,0.28024158999072 +2.874,0.309291083095358,0.892552705309249,1.59563865093878,1.36616220502141,-1.38800809546481,0.246175344174627,0.280470037064113 +2.876,0.309379022076897,0.892489999371587,1.5956303666846,1.36596949371864,-1.38787644305923,0.246349961057306,0.280698110281361 +2.878,0.30946720006865,0.892427446620422,1.5956221837469,1.36577773221726,-1.38774486708948,0.246524474802228,0.280925890715848 +2.88,0.30955556074256,0.892364971558426,1.5956140177197,1.36558698887723,-1.38761334224885,0.246698976540056,0.281153456940438 +2.882,0.30964405696286,0.892302520977414,1.59560580732296,1.36539725820694,-1.38748185373546,0.246873535557476,0.281380874510753 +2.884,0.309732650687143,0.892240063902402,1.59559751712891,1.36520847716093,-1.38735038926661,0.247048193294281,0.281608199772847 +2.886,0.309821311968638,0.892177587396277,1.59558912909999,1.36502053569292,-1.38721894300255,0.24722297560931,0.281835473579795 +2.888,0.309910018233638,0.8921150923665,1.5955806406786,1.36483329423656,-1.3870875089817,0.247397887232945,0.282062728316818 +2.89,0.309998752977282,0.89205258810669,1.59557205535017,1.36464659357013,-1.38695608600395,0.247572924125131,0.282289983751267 +2.892,0.310095926238515,0.891996493250134,1.5955622756823,1.36447048943711,-1.38684607286249,0.247717868958446,0.282487976291424 +2.894,0.310183372642877,0.891937621305131,1.59555768740166,1.36429303500655,-1.38671302098432,0.247892859609277,0.28271311544028 +2.896,0.310269091668691,0.891876271250244,1.59555136774221,1.36411315402529,-1.38657772568221,0.248074215470604,0.282943305038597 +2.898,0.310354859720981,0.891813194280869,1.59554278645908,1.36393071210551,-1.38644286131189,0.248255831606879,0.283174440255971 +2.9,0.310441053013021,0.891749166522245,1.59553267954575,1.36374581320267,-1.38630876049104,0.248436394996187,0.283405641105752 +2.902,0.310527735692188,0.891684824168098,1.59552184780691,1.36355868210275,-1.38617536057306,0.248615738323964,0.283636653151873 +2.904,0.310623345536607,0.891627019265347,1.59550979468506,1.36337984935036,-1.38606394458072,0.248763754222594,0.283838062999431 +2.906,0.310709639806954,0.891566802403397,1.59550323497691,1.36319790791954,-1.3859298907954,0.248940744881252,0.284066220425947 +2.908,0.310794598562175,0.891504570321359,1.59549539595275,1.36301229173711,-1.38579389909513,0.249123233788909,0.2842989983867 +2.91,0.310879958640948,0.891441063313104,1.59548575874235,1.3628233725721,-1.38565856053252,0.249305291350415,0.28453228706881 +2.912,0.310966047585554,0.891376982850846,1.59547499259573,1.3626317187892,-1.38552414210837,0.249485771144212,0.284765234660314 +2.914,0.311052878476438,0.891312862245024,1.5954637975024,1.36243795594025,-1.38539053230321,0.249664658934819,0.284997637450437 +2.916,0.31114039263751,0.891249041811271,1.59545266464295,1.36224271767218,-1.38525755950943,0.249842180679126,0.285229439067775 +2.918,0.311228512778959,0.891185689432046,1.59544185990956,1.36204660674639,-1.38512506673124,0.25001860490032,0.285460630359799 +2.92,0.311317156491977,0.891122842140017,1.59543147623863,1.36185017048322,-1.38499292226706,0.250194183319834,0.285691238756767 +2.922,0.311406241162634,0.891060450710425,1.59542148929301,1.36165387628505,-1.38486102679425,0.2503691462111,0.285921315652748 +2.924,0.311495687725546,0.890998420839342,1.59541181502658,1.36145810197041,-1.38472930398039,0.250543688286423,0.28615093479917 +2.926,0.311585423070928,0.890936643906916,1.59540234636229,1.36126312646493,-1.38459770104303,0.250717976637438,0.286380176957286 +2.928,0.311675382197684,0.890875018738144,1.59539298361325,1.3610691339828,-1.3844661782969,0.250892142248209,0.286609126955465 +2.93,0.311765508997882,0.890813462820173,1.5953836447744,1.36087621680977,-1.38433471042128,0.251066290684055,0.286837860723662 +2.932,0.311855756825937,0.890751917425032,1.5953742743669,1.36068438925146,-1.38420327745537,0.25124049516997,0.287066446893339 +2.934,0.311946087931212,0.890690346423095,1.59536483827508,1.36049359746443,-1.38407186788831,0.251414808449076,0.287294938692788 +2.936,0.312036473012795,0.890628733369986,1.59535532294211,1.36030373755038,-1.38394047156498,0.251589257040864,0.287523379619509 +2.938,0.312126890008559,0.890567076114188,1.59534572563087,1.36011466710084,-1.38380908415494,0.251763853689977,0.28775179859301 +2.94,0.312217323309682,0.890505382563794,1.59533605272703,1.35992622292914,-1.38367770100196,0.251938591935418,0.287980217770322 +2.942,0.312307762456535,0.890443665863064,1.59532631139811,1.35973823064586,-1.38354632214086,0.252113458532759,0.288208648803842 +2.944,0.312398201416958,0.890381941748832,1.59531651035327,1.35955051918,-1.38341494649787,0.252288427909247,0.288437100834349 +2.946,0.312488637451163,0.890320225684688,1.59530665423652,1.35936292641622,-1.38328357699754,0.252463474120745,0.288665576439678 +2.948,0.312579070598192,0.890258532100115,1.59529674684314,1.35917530940139,-1.38315221476876,0.252638564690591,0.288894078991237 +2.95,0.312678050503361,0.890203285737104,1.59528575354446,1.35899777621861,-1.38304234998094,0.252783474227145,0.289093247428431 +2.952,0.312767162298242,0.89014525614419,1.59527996307312,1.35881853901561,-1.38290934610301,0.252958292552861,0.289319585232634 +2.954,0.312854505790445,0.890084754460506,1.59527244124894,1.35863648886009,-1.38277408412068,0.253139429930652,0.289551022477033 +2.956,0.312941898260283,0.890022534240449,1.59526264624634,1.35845155007208,-1.38263926372175,0.253320752988246,0.28978342891179 +2.958,0.313029731388196,0.889959371990975,1.59525131081516,1.35826390499699,-1.38250522664177,0.253500949446893,0.290015905951639 +2.96,0.31312664484435,0.889902317903014,1.59523821852497,1.35808409544313,-1.38239340780678,0.253649662244441,0.290218821473656 +2.962,0.313214170298501,0.889842569992686,1.59523024431924,1.35790083511626,-1.38225899444624,0.253827108224615,0.290448574932028 +2.964,0.313300387710419,0.889780693274509,1.59522081676184,1.35771350055786,-1.38212274114604,0.254009904926938,0.290683030436274 +2.966,0.313387072778419,0.889717542621278,1.59520955388329,1.35752250015718,-1.38198723603609,0.254192114128668,0.290918017289233 +2.968,0.313474565010347,0.889653889241032,1.59519721423958,1.35732847014191,-1.38185272559704,0.254372599181511,0.291152640451975 +2.97,0.313562878301048,0.889590298707229,1.59518454251387,1.35713211449208,-1.38171907636495,0.254551367695625,0.291386670777295 +2.972,0.313651949605719,0.889527115962153,1.59517204015824,1.35693414653302,-1.38158609843874,0.254728670862805,0.291620039740357 +2.974,0.313741694549164,0.889464496014402,1.59515996151214,1.35673524413468,-1.38145362116194,0.254904801993235,0.291852735938107 +2.976,0.313832022307669,0.889402454259263,1.59514837733302,1.35653602105719,-1.3813215034168,0.255080035564541,0.292084791394693 +2.978,0.313922841434849,0.889340917604231,1.59513723876584,1.35633699977026,-1.38118963975156,0.255254621964547,0.292316266204886 +2.98,0.314014064285556,0.889279769879373,1.59512644009168,1.35613860035908,-1.3810579500366,0.255428773007979,0.292547244557344 +2.982,0.314105609829626,0.889218884819967,1.59511585792326,1.35594113090245,-1.38092637916286,0.255602669812949,0.292777817637928 +2.984,0.314197406058842,0.889158148534315,1.59510538215868,1.35574479222974,-1.38079488603485,0.255776454303661,0.293008079472366 +2.986,0.314289390845071,0.889097470435261,1.59509492559438,1.35554968196919,-1.38066344441515,0.255950240063203,0.293238113393312 +2.988,0.314381512518024,0.88903678754707,1.59508443147352,1.35535581020517,-1.38053203374784,0.256124105570721,0.293467993444237 +2.99,0.314473729210236,0.888976062316015,1.59507386690453,1.35516311128072,-1.38040064211709,0.256298106365847,0.293697776459389 +2.992,0.314566008327825,0.888915278741057,1.59506322076432,1.35497146391637,-1.38026925918298,0.256472269609363,0.293927508001334 +2.994,0.314658325213098,0.888854436193572,1.59505249298964,1.35478070473337,-1.38013788061573,0.256646606926474,0.294157217936546 +2.996,0.314759310141532,0.888799962717622,1.59504071271326,1.35460088443265,-1.38002805785551,0.256790917808448,0.294357499586081 +2.998,0.314850327591729,0.888742604504384,1.59503411292435,1.35442019276589,-1.37989499755288,0.256965264398164,0.294584952129459 +3,0.314939537950499,0.888682697109422,1.59502577073649,1.35423731194436,-1.37975964402664,0.257146123770803,0.294817536677871 +3.002,0.315028777583457,0.888621012381613,1.595015146876,1.35405200753161,-1.37962472061406,0.257327328539552,0.295051101886536 +3.004,0.315118441672323,0.888558344401096,1.59500298591663,1.35386432238961,-1.3794905718146,0.2575075274617,0.295284740945829 +3.006,0.315208600010897,0.88849534401873,1.59499009979722,1.3536744344697,-1.37935713547662,0.257686534557628,0.295518187927571 +3.008,0.315299245132945,0.888432468063613,1.59497709047868,1.35348261494541,-1.37922427321164,0.257864429185754,0.295751319469563 +3.01,0.31539034582903,0.888369984523094,1.59496431422379,1.35328919366845,-1.37909185119735,0.258041355563251,0.295984060538297 +3.012,0.315481860098204,0.888308007215434,1.59495192695541,1.35309453354678,-1.37895975480854,0.258217463146293,0.296216378954919 +3.014,0.315573739722843,0.888246539449945,1.59493994083914,1.35289900033453,-1.37882789775849,0.258392901581681,0.296448276352666 +3.016,0.315665934105444,0.888185517898551,1.59492828686448,1.35270294351356,-1.3786962140152,0.258567805949709,0.296679787774751 +3.018,0.315758393044083,0.888124847771477,1.59491685817737,1.35250667528638,-1.37856465874738,0.258742303261128,0.296910966132547 +3.02,0.315859769248335,0.888070849886436,1.59490459607365,1.35232070228099,-1.37845479116203,0.258886313414969,0.297112413584621 +3.022,0.315951290211389,0.888014151717947,1.59489759699106,1.35213366143885,-1.37832171358184,0.259059993148778,0.297340826625337 +3.024,0.316041123770584,0.887955008438285,1.5948888620192,1.35194453713339,-1.37818638835724,0.259239965912601,0.297574232997539 +3.026,0.316131093031031,0.887894128478997,1.5948778030053,1.35175336282761,-1.37805153488449,0.25942014997428,0.297808519776795 +3.028,0.316221573122447,0.887832262037188,1.5948651458668,1.351560387984,-1.37791748620347,0.259599273196686,0.298042814877414 +3.03,0.316312613552385,0.887770032395799,1.59485170443774,1.35136593098642,-1.37778416707779,0.259777219553923,0.298276881090815 +3.032,0.316404188547868,0.887707880928888,1.59483809456571,1.35117034059999,-1.37765142655228,0.259954125176075,0.29851061605104 +3.034,0.316496251087372,0.887646068336664,1.59482469177865,1.35097396833289,-1.37751911980942,0.260130176609367,0.298743958332956 +3.036,0.316588745878618,0.887584706129808,1.59481167187792,1.35077715161795,-1.37738712337354,0.260305551286098,0.298976883323459 +3.038,0.316681613788102,0.887523798019828,1.59479906443521,1.35058019327699,-1.37725534456402,0.260480413618265,0.299209395732488 +3.04,0.316774795528641,0.887463282382868,1.59478681372089,1.35038335229421,-1.37712371347815,0.260654901784987,0.29944153063355 +3.042,0.316868234255347,0.887403066722237,1.59477482150625,1.35018683235933,-1.37699218379211,0.26082913620384,0.29967333911586 +3.044,0.316961878126448,0.88734305397657,1.59476298410869,1.34999078182933,-1.37686072233744,0.261003211325188,0.299904884695401 +3.046,0.31705568150385,0.8872831580941,1.59475120868998,1.34979529108376,-1.37672930986855,0.261177206088898,0.300136229216282 +3.048,0.317149605972557,0.887223312754382,1.59473942670983,1.34960040024676,-1.37659793176465,0.261351176430428,0.300367432762804 +3.05,0.31724362011394,0.887163472798733,1.59472759191603,1.34940610260617,-1.37646658066692,0.261525166227444,0.300598544111726 +3.052,0.317337699392765,0.887103612988205,1.59471568125031,1.34921235635156,-1.37633524931314,0.261699200402018,0.300829604928083 +3.054,0.317431825159394,0.887043723490583,1.5947036857746,1.34901909022521,-1.37620393486665,0.261873296088116,0.301060643947783 +3.056,0.317525984094155,0.886983805960456,1.59469160883888,1.34882621593691,-1.37607263296816,0.262047455781274,0.301291683919962 +3.058,0.317620167038608,0.886923868665184,1.59467945720455,1.34863363322698,-1.37594134285517,0.262221678438178,0.301522737447975 +3.06,0.317714368457913,0.886863923614548,1.59466724103864,1.34844124068228,-1.37581006191672,0.262395952586621,0.301753814585372 +3.062,0.317808585414274,0.886803983411518,1.59465496757187,1.3482489385777,-1.3756787909861,0.262570267183462,0.301984918718848 +3.064,0.317902817225552,0.886744060241101,1.59464264364295,1.34805663711348,-1.3755475289033,0.262744604399783,0.302216053778711 +3.066,0.317997064651269,0.886684164375986,1.59463027150393,1.34786425656284,-1.37541627772587,0.262918950047226,0.302447219525271 +3.068,0.318091329750599,0.886624304454761,1.59461785291763,1.34767173285838,-1.37528503722166,0.263093285908735,0.30267841807772 +3.07,0.318185615243501,0.886564486876216,1.59460538592514,1.34747901528869,-1.37515381001301,0.26326759964273,0.302909648590904 +3.072,0.318279924516124,0.88650471660729,1.59459286940131,1.34728606992425,-1.37502259604675,0.263441876572704,0.303140913282882 +3.074,0.318374261101441,0.886444996826656,1.59458029989889,1.34709287549963,-1.37489139775718,0.263616109067236,0.303372211739143 +3.076,0.318468628785524,0.886385329792499,1.59456767603461,1.34689942539669,-1.37476021459728,0.263790287833959,0.303603546683986 +3.078,0.318563031170469,0.886325716438243,1.59455499503743,1.34670572245751,-1.37462904828388,0.263964410868234,0.303834918133587 +3.08,0.318657471855103,0.886266157148345,1.59454225680599,1.34651178026144,-1.37449789741964,0.264138474362728,0.304066329096053 +3.082,0.318751954060589,0.886206651259999,1.59452946015167,1.34631761755844,-1.37436676282898,0.264312481366747,0.304297779703252 +3.084,0.318846480871034,0.886147197766369,1.59451660660816,1.34612325945719,-1.37423564226012,0.264486432466414,0.304529272921372 +3.086,0.318941054909353,0.886087794776105,1.59450369649568,1.34592873200951,-1.37410453578447,0.264660334308583,0.304760808708957 +3.088,0.319035678625401,0.886028440202823,1.59449073261833,1.3457340637432,-1.37397344054318,0.264834190198917,0.304992389759255 +3.09,0.319130354009028,0.885969131232391,1.59447771627303,1.34553928073128,-1.37384235617069,0.265008008620579,0.305224015690216 +3.092,0.319225082911095,0.885909865031861,1.59446465093218,1.34534440870206,-1.37371127955111,0.265181793867039,0.305455688812214 +3.094,0.319319866778564,0.885850638239518,1.59445153826856,1.34514946873302,-1.3735802102333,0.265355554644845,0.30568740834282 +3.096,0.319414706992472,0.885791447692164,1.59443838186835,1.34495447999152,-1.3734491451731,0.265529294812225,0.305919176190056 +3.098,0.319509604610008,0.885732289924972,1.59442518329717,1.34475945603479,-1.37331808412072,0.265703022109699,0.306150991185404 +3.1,0.319604560705261,0.885673161897161,1.59441194585319,1.34456440810123,-1.37318702433853,0.265876739031848,0.306382854875158 +3.102,0.319699576106306,0.885614060479058,1.59439867067449,1.3443693418911,-1.37305596595456,0.26605045169064,0.306614765767559 +3.104,0.319794651728792,0.885554983154653,1.59438536052699,1.34417426125078,-1.37292490665608,0.266224160812507,0.306846725127531 +3.106,0.319889788300866,0.885495927477648,1.59437201594587,1.34397916525823,-1.37279384701194,0.266397870712078,0.307078731234588 +3.108,0.319984986684823,0.88543689173753,1.5943586390503,1.34378405211766,-1.37266278514818,0.266571580384763,0.307310785176756 +3.11,0.320080247587582,0.885377874376404,1.59434522971133,1.3435889163714,-1.37253172204685,0.266745292554603,0.307542885115262 +3.112,0.320175571870199,0.885318874615563,1.59433178938705,1.34339375283952,-1.37240065621206,0.266919004823287,0.307775032073365 +3.114,0.320279863547229,0.885266319906884,1.59431747857402,1.34320880974189,-1.3722913254284,0.267062540341777,0.307977619188968 +3.116,0.320382884521814,0.885217302250567,1.5943075152575,1.34303292228364,-1.37218027468506,0.267205697464997,0.308177845689205 +3.118,0.32047383075558,0.885162838187545,1.5943010175016,1.34285332504876,-1.37204341973457,0.26738513989617,0.308410536516426 +3.12,0.320562964474537,0.885104052791589,1.59429049348204,1.34266854930934,-1.37190465887501,0.267571360083705,0.308649494388571 +3.122,0.320652616758085,0.88504250841578,1.59427613507247,1.34247866776391,-1.3717671271944,0.267756807929407,0.3088895671978 +3.124,0.320743283341346,0.884979642626008,1.5942595208479,1.34228418603914,-1.37163111056022,0.26793996301879,0.309129537160719 +3.126,0.320835031419947,0.88491655157108,1.59424209150565,1.34208580554909,-1.37149639624122,0.268120771818512,0.309368993970358 +3.128,0.320927817133208,0.884853945897566,1.59422482937571,1.34188433431035,-1.37136269353282,0.268299513738654,0.309607731483865 +3.13,0.321021557106316,0.884792191662673,1.59420826224304,1.34168061831296,-1.37122973921828,0.268476538504215,0.309845636212176 +3.132,0.321116148580925,0.884731391057552,1.59419257054895,1.34147548925286,-1.37109731752964,0.268652187107791,0.310082676540806 +3.134,0.321211478781174,0.884671470569442,1.59417770384678,1.34126971445213,-1.37096526753244,0.268826780079773,0.310318885881368 +3.136,0.321307432799227,0.884612261531741,1.59416349170863,1.34106396517615,-1.37083347058626,0.26900059961764,0.310554351898432 +3.138,0.321403899459723,0.884553561655255,1.59414972072634,1.34085879000297,-1.37070184609776,0.269173895367895,0.310789190404385 +3.14,0.321500776284601,0.884495177836497,1.59413619129023,1.34065460673219,-1.37057033661922,0.269346874042786,0.311023531910685 +3.142,0.321597972096872,0.884436949492219,1.5941227420015,1.34045169778504,-1.37043890517225,0.269519708969151,0.311257500404933 +3.144,0.321695408767074,0.884378758771692,1.59410926324742,1.34025022104976,-1.37030752366712,0.269692532024412,0.311491208939651 +3.146,0.321793021057369,0.884320529584501,1.59409569065094,1.34005022017645,-1.37017617414789,0.269865445053558,0.311724748281003 +3.148,0.321890756288061,0.884262222063046,1.59408199945543,1.33985164580598,-1.37004484100079,0.270038513706197,0.311958191081614 +3.15,0.321988572825773,0.884203823297817,1.59406818885815,1.33965437218446,-1.36991351499429,0.270211780157088,0.312191587314784 +3.152,0.322086438997847,0.884145339116834,1.59405427456625,1.33945822108264,-1.36978218736389,0.270385258001542,0.312424972953526 +3.154,0.322184331307736,0.884086785809693,1.59404027586561,1.33926297816672,-1.36965085485673,0.270558945586729,0.312658367853054 +3.156,0.322282233376301,0.88402818486972,1.59402621307533,1.33906841430331,-1.36951951430066,0.270732821387643,0.312891785102586 +3.158,0.322380134377493,0.883969558375927,1.59401210006873,1.33887429772207,-1.36938816762988,0.270906857277614,0.313125228543039 +3.16,0.322478028265729,0.883910927231521,1.5939979466274,1.33868041006047,-1.36925681626255,0.27108101359684,0.313358701069293 +3.162,0.322575912517949,0.883852309408601,1.59398375476438,1.33848655276794,-1.36912546584754,0.271255251726387,0.313592200862829 +3.164,0.322673787636829,0.883793720248656,1.59396952360809,1.33829255726609,-1.3689941204601,0.271429528303467,0.313825728365345 +3.166,0.32277165613608,0.883735171999292,1.59395524710677,1.33809828570703,-1.3688627872387,0.271603806709274,0.314059281380187 +3.168,0.322869522248979,0.883676674780034,1.5939409193877,1.33790363596183,-1.36873147059885,0.271778050113697,0.314292861145647 +3.17,0.322967391090148,0.883618236337097,1.59392653230427,1.33770853785422,-1.36860017698705,0.271952231763615,0.314526466789313 +3.172,0.323074296797813,0.883566293688512,1.59391130685359,1.33752321712226,-1.36849073826453,0.272096160470184,0.314730404598159 +3.174,0.323170844797882,0.883511486541772,1.59390121497153,1.33733635225187,-1.36835775963077,0.272269738637407,0.314961600572231 +3.176,0.323265476603141,0.88345418717253,1.59388931586622,1.33714649843272,-1.3682224483753,0.272449743475164,0.315198093881494 +3.178,0.323360142724336,0.883395175715332,1.5938750441325,1.33695354791675,-1.36808761145751,0.2726299419855,0.315435650503515 +3.18,0.323455279207199,0.883335248912814,1.59385915561595,1.33675773456571,-1.36795360878975,0.272808966749946,0.315673318027359 +3.182,0.323550969684506,0.883275054900922,1.59384248512144,1.33655943408536,-1.36782037112647,0.272986655404788,0.315910812858984 +3.184,0.323647210232766,0.883215042619668,1.59382565615831,1.33635910138292,-1.36768774647396,0.273163126208411,0.316148005322832 +3.186,0.32374396837418,0.883155468283767,1.59380904208086,1.33615722637372,-1.36755558638583,0.273338565660915,0.316384818522062 +3.188,0.323841198149088,0.883096431693851,1.59379281181874,1.33595430312548,-1.36742376287524,0.273513163377944,0.316621220184076 +3.19,0.323938845687981,0.883037921388537,1.59377698768592,1.33575079719056,-1.36729217823593,0.273687104546294,0.316857212664351 +3.192,0.324036853844583,0.882979859675419,1.59376150894253,1.33554712615603,-1.36716075733185,0.273860553675407,0.317092831777327 +3.194,0.324135165495189,0.882922138605505,1.5937462757717,1.33534364014997,-1.36702944835221,0.274033660564458,0.317328130974274 +3.196,0.324233726781921,0.88286464701136,1.59373118630289,1.33514061590583,-1.36689821262497,0.274206549765335,0.31756317648833 +3.198,0.324332488795538,0.882807286306314,1.59371615225247,1.33493825034544,-1.36676702542997,0.274379329264197,0.317798032622061 +3.2,0.324431409086603,0.882749979170234,1.59370111134073,1.33473666638284,-1.36663586703837,0.274552081414322,0.318032761139937 +3.202,0.32453045175401,0.882692670853526,1.59368602428337,1.3345359160995,-1.36650472544897,0.274724872904688,0.318267411694694 +3.204,0.324629587679622,0.882635327822683,1.59367087477865,1.33433599353748,-1.36637358954765,0.274897747083094,0.318502025921485 +3.206,0.324728793721296,0.882577933191792,1.59365565981718,1.33413684248019,-1.36624245346036,0.275070734886056,0.318736631862278 +3.208,0.324828052392588,0.882520482807745,1.59364038740578,1.33393837167898,-1.36611131082357,0.275243847896814,0.318971250939683 +3.21,0.324927350784097,0.882462980421489,1.59362506754265,1.33374046322656,-1.36598015978892,0.275417089770964,0.319205894098659 +3.212,0.325026680164694,0.882405434873554,1.59360971215601,1.33354298682552,-1.36584899766851,0.27559044973123,0.319440569427285 +3.214,0.325126034957772,0.882347856982827,1.59359432890541,1.33334580611962,-1.36571782598853,0.275763914081431,0.319675278316572 +3.216,0.325225412456562,0.882290258534317,1.59357892385719,1.33314879016494,-1.36558664505596,0.275937459615104,0.319910022647049 +3.218,0.325324811942451,0.882232650732609,1.59356349753684,1.33295181654278,-1.36545545886336,0.276111064803666,0.320144800312421 +3.22,0.325424234538545,0.882175044374936,1.59354804919602,1.3327547794217,-1.36532426955843,0.27628470277936,0.320379611678424 +3.222,0.325523682456397,0.882117449091364,1.59353257382411,1.33255758931304,-1.36519308227505,0.27645835193395,0.320614454462256 +3.224,0.325623158962883,0.882059873961375,1.59351706684553,1.33236017798533,-1.36506189960157,0.276631988241861,0.320849329652893 +3.226,0.325722667726742,0.882002326939791,1.59350152116877,1.33216249540448,-1.36493072646468,0.276805595163798,0.321084235987509 +3.228,0.325822212879244,0.881944815496642,1.5934859316731,1.33196451224362,-1.36479956470622,0.276979155278687,0.321319175584641 +3.23,0.32592179844724,0.881887345984628,1.59347029192081,1.33176621487391,-1.36466841810114,0.277152659548163,0.321554148240887 +3.232,0.32602142850226,0.881829924200352,1.59345459827878,1.33156760640318,-1.36453728707778,0.27732609835447,0.321789156966383 +3.234,0.326121106676735,0.881772554690369,1.59343884629037,1.33136870065441,-1.36440617387786,0.277499470283068,0.32202420223509 +3.236,0.326220836399044,0.881715241287393,1.59342303451737,1.33116952262937,-1.36427507740122,0.277672772752202,0.32225928751118 +3.238,0.326320620487637,0.881657986431648,1.59340716070124,1.33097010229507,-1.36414399846937,0.277846010514892,0.322494413507625 +3.24,0.326420461462695,0.881600791756532,1.59339122546243,1.33077047518953,-1.36401293474459,0.278019186082727,0.322729583734189 +3.242,0.326520361204372,0.881543657483069,1.59337522837555,1.33057067661411,-1.36388188604249,0.27819230813748,0.322964798780268 +3.244,0.326620321322593,0.881486583089193,1.59335917162417,1.33037074284739,-1.36375084927577,0.278365381927279,0.3232000618884 +3.246,0.326720342858231,0.881429566787994,1.59334305606297,1.33017070607978,-1.36361982376833,0.278538417734374,0.323435373264704 +3.248,0.326820426687363,0.881372606270999,1.59332688487571,1.32997059644368,-1.3634888061872,0.278711421368601,0.323670735676797 +3.25,0.326920573241903,0.881315698245699,1.59331065965412,1.32977043778465,-1.36335779582747,0.278884402779488,0.323906148793571 +3.252,0.327020782925203,0.881258839219155,1.59329438407402,1.32957025049895,-1.36322678951353,0.279057366712925,0.324141614805592 +3.254,0.327121055831753,0.881202025057175,1.59327805999832,1.32937004804972,-1.36309578684122,0.279230321499737,0.32437713279472 +3.256,0.327221392156208,0.881145251770998,1.59326169117357,1.32916984045431,-1.36296478504423,0.27940326988846,0.324612704373973 +3.258,0.32732179189817,0.881088515064026,1.59324527935779,1.32896963134265,-1.36283378419296,0.279576217998424,0.324848328084464 +3.26,0.327422255254066,0.88103181109273,1.59322882803778,1.32876942186304,-1.36270278203148,0.279749166303458,0.325084005048976 +3.262,0.327522782300348,0.880975135977973,1.59321233858214,1.3285692080409,-1.36257177914066,0.279922118710031,0.325319733389963 +3.264,0.327623373364807,0.880918486523518,1.59319581398031,1.32836898486459,-1.36244077375582,0.280095073645497,0.32555551388881 +3.266,0.327724028687844,0.880861859681067,1.59317925502143,1.32816874372113,-1.36230976690523,0.280268033210664,0.3257913444162 +3.268,0.327824748775368,0.880805253220922,1.59316266405587,1.3279684764637,-1.36217875721945,0.280440994320604,0.326027225588326 +3.27,0.3279255340421,0.880748665149704,1.59314604119926,1.32776817275597,-1.3620477460563,0.280613957883025,0.326263155200637 +3.272,0.328026385151529,0.880692094335993,1.59312938811548,1.3275678239878,-1.36191673231166,0.280786919945683,0.326499133873497 +3.274,0.328127302647366,0.880635539886498,1.59311270424319,1.32736742042975,-1.36178571753998,0.280959880862529,0.32673515948204 +3.276,0.328237538609356,0.880585433344429,1.59309533311891,1.32717723122128,-1.36167669695455,0.281102691997585,0.326941369944662 +3.278,0.328337240048743,0.880532365474281,1.59308311645766,1.32698612230443,-1.36154390313881,0.281275157730494,0.327174904620194 +3.28,0.328434996031724,0.880476733279915,1.59306911058057,1.32679242925117,-1.36140870137647,0.281454236916447,0.327413842599379 +3.282,0.328532814135076,0.880419329323508,1.59305273877753,1.32659595302668,-1.36127395089734,0.28163364414232,0.327653898260781 +3.284,0.328631147370843,0.880360961576979,1.59303476315969,1.32639686624592,-1.36114002484871,0.281811977189919,0.327894088361731 +3.286,0.328730082399176,0.880302287566027,1.59301602763438,1.32619548963648,-1.3610068553901,0.281989055610639,0.328134114756757 +3.288,0.328829613955615,0.880243763547935,1.5929971608301,1.32599222544259,-1.36087428932075,0.282164985063779,0.328373840262086 +3.29,0.328929706858996,0.880185651518883,1.59297853640871,1.32578751399129,-1.36074217713175,0.282339940391004,0.328613183757745 +3.292,0.329030312062939,0.88012805625632,1.59296032001183,1.32558180423733,-1.36061039078576,0.282514099389952,0.328852110567741 +3.294,0.329131372525589,0.880070971063887,1.59294252869028,1.32537552229594,-1.36047883343818,0.282687635434173,0.329090621989343 +3.296,0.329242121897242,0.880020754293844,1.5929244599379,1.3251793315237,-1.36036946059844,0.282830562119138,0.329298858370266 +3.298,0.329342560229612,0.879967886303681,1.59291182609258,1.32498246517576,-1.360236380874,0.283002799928707,0.329534057206884 +3.3,0.329450549967009,0.879919093278577,1.59289694331958,1.32479376225556,-1.36012298927607,0.28315132093322,0.329744470124944 +3.302,0.329548102114408,0.879865657499733,1.5928849538505,1.32460211732232,-1.35998627802288,0.283329709382697,0.329983060063575 +3.304,0.329644250902237,0.879808716944188,1.59286960939542,1.32440611298971,-1.35984800788747,0.283513638886585,0.330226987723885 +3.306,0.329741066869466,0.87974967313051,1.59285113807564,1.3242059167819,-1.35971096839702,0.283696689232709,0.330471709862639 +3.308,0.329838970539565,0.879689759854745,1.59283091560641,1.3240021011284,-1.35957537360134,0.283877603232454,0.330716138576556 +3.31,0.329947312074127,0.879636311865925,1.59280954290236,1.32380566464268,-1.35946304769313,0.284026261979487,0.33093000644009 +3.312,0.330046017692609,0.879580462260682,1.59279362289619,1.3236063109604,-1.35932781451576,0.284202734348563,0.331170370141882 +3.314,0.330143616549089,0.87952287221108,1.5927766158705,1.32340308015264,-1.35919083893761,0.284384387279664,0.331415256480933 +3.316,0.330242014525196,0.879464373703088,1.59275805409629,1.32319647560155,-1.35905479303776,0.28456524542147,0.331660371701706 +3.318,0.330341545504639,0.879405672919287,1.59273862462807,1.3229872954054,-1.35891990658598,0.284744198876024,0.331904781167826 +3.32,0.330442175678914,0.879347255567501,1.59271901023733,1.32277638398428,-1.35878600146748,0.284921314422439,0.332148286515196 +3.322,0.330543785303104,0.87928938680487,1.59269964994344,1.32256454271372,-1.35865285185466,0.285096916052565,0.332390867670323 +3.324,0.330646236174661,0.879232153701747,1.59268074879569,1.32235248924636,-1.35852025495806,0.285271349086635,0.332632570950771 +3.326,0.330749389288148,0.879175519359187,1.59266233853185,1.32214082648645,-1.35838805141269,0.285444933557208,0.332873475687313 +3.328,0.330853112280641,0.87911937612588,1.59264435092607,1.3219300302335,-1.3582561185293,0.285617940197892,0.333113687507176 +3.33,0.330966649698307,0.879070017845455,1.59262607256056,1.32173072410581,-1.35814645228983,0.285760463579155,0.333323370877687 +3.332,0.331069805720386,0.879017881069075,1.59261315808616,1.32153208720264,-1.35801302810048,0.28593242816027,0.333559899337239 +3.334,0.331171152420755,0.878963260966295,1.5925985558479,1.32133244319677,-1.35787725237999,0.286111024463378,0.333801481267268 +3.336,0.331272650043647,0.878906869929497,1.59258160829076,1.32113155280813,-1.35774198067172,0.286290034995083,0.334043904035323 +3.338,0.331374697784283,0.878849463016673,1.59256303055933,1.32092947967122,-1.35760757651699,0.286468111934071,0.334286245540287 +3.34,0.331477335181015,0.87879167003278,1.59254365026114,1.32072638102243,-1.35747395667721,0.286645098951323,0.334528266407361 +3.342,0.331580519032473,0.878733937738966,1.59252409178154,1.32052245062464,-1.35734096103002,0.286821115393534,0.334769869991417 +3.344,0.331684186210942,0.878676532548307,1.59250473637614,1.32031789998002,-1.3572084320569,0.286996323586966,0.335011008562893 +3.346,0.331788267841896,0.878619571410027,1.59248575628589,1.32011293893045,-1.35707624210384,0.287170884386867,0.335251665159361 +3.348,0.331892694582993,0.878563064904637,1.59246717874427,1.31990776549079,-1.35694429189613,0.28734493510202,0.335491857252561 +3.35,0.331997399329193,0.878506958379335,1.59244894101738,1.31970255155526,-1.35681251269982,0.28751859661741,0.335731625798624 +3.352,0.332102320124509,0.878451167318149,1.59243094207975,1.31949743866687,-1.3566808557832,0.287691965126111,0.335971032255313 +3.354,0.33220740164987,0.878395601890171,1.59241307262665,1.31929253066996,-1.35654929160282,0.287865123072874,0.336210143769199 +3.356,0.33231259672439,0.878340183215455,1.59239523928888,1.31908789647008,-1.35641779932793,0.288038131923609,0.336449030716527 +3.358,0.332417866277739,0.878284850349659,1.59237737029576,1.31888356887337,-1.35628636771509,0.288211043304665,0.336687755226054 +3.36,0.332523179489484,0.878229562610616,1.59235942087672,1.31867955212578,-1.35615498703412,0.288383891810271,0.336926373132135 +3.362,0.332628512718151,0.878174296937032,1.5923413663724,1.31847582405081,-1.35602365224889,0.28855670594743,0.337164926965106 +3.364,0.332733848963277,0.878119044596387,1.59232320065704,1.31827234543449,-1.35589235687885,0.288729500722513,0.337403451613896 +3.366,0.332848619803909,0.878070234487755,1.59230436683059,1.31807935120536,-1.35578324035451,0.288872164633543,0.337611959137371 +3.368,0.332952575729583,0.87801843201528,1.59229060616935,1.31788581728657,-1.3556502041933,0.28904440279619,0.337847802671701 +3.37,0.333054430432424,0.877964063545408,1.59227497946518,1.31768984794504,-1.35551475061063,0.289223331141637,0.33808910463282 +3.372,0.333156243478988,0.87790793993581,1.59225691214296,1.31749114215693,-1.35537977974189,0.289402612912692,0.338331546331946 +3.374,0.333258486975918,0.877850882964875,1.59223717933098,1.31728980797533,-1.35524567610227,0.289580820547372,0.338574120997609 +3.376,0.333370720242507,0.877799987401823,1.59221609349833,1.31709641273705,-1.35513452734917,0.289727635326844,0.338786497357804 +3.378,0.333472659090439,0.877746269794065,1.59220001588606,1.31690038128243,-1.35500004468608,0.28990284453625,0.339025892530174 +3.38,0.333573003967778,0.877690412195205,1.59218237864435,1.31670028334597,-1.35486359349752,0.290083748947152,0.339270341354415 +3.382,0.333673776136748,0.877633319011062,1.5921627621676,1.31649630903573,-1.35472795347395,0.290264191536692,0.339515475237894 +3.384,0.333775396111497,0.877575794333063,1.5921419564372,1.31628904780449,-1.35459340796313,0.290442910245056,0.339760287702871 +3.386,0.333877900681073,0.877518421034418,1.59212075154657,1.31607921353289,-1.35445981337996,0.290619870087859,0.340004504589156 +3.388,0.333981230201131,0.877461547238828,1.59209968312063,1.31586755252106,-1.35432695902579,0.290795313146535,0.340248040318123 +3.39,0.334085296447246,0.877405320800134,1.59207902540945,1.31565478631586,-1.35419465364666,0.290969535217805,0.340490878328571 +3.392,0.334190001702227,0.877349743773312,1.59205885884605,1.31544157614074,-1.35406273931251,0.29114281691588,0.340733050876898 +3.394,0.334295246095754,0.877294726947037,1.59203913903746,1.31522849100787,-1.35393109751705,0.29131541593379,0.340974621394809 +3.396,0.334400933074551,0.877240137601483,1.59201976297525,1.31501599307026,-1.35379963871861,0.291487551451283,0.341215678460107 +3.398,0.33450697269678,0.877185833867395,1.59200061031785,1.31480442580742,-1.3536683008405,0.291659411716056,0.341456317993831 +3.4,0.334613284595106,0.877131687851418,1.59198157489906,1.31459401749915,-1.35353703795307,0.291831145116955,0.341696637985465 +3.402,0.33471979898154,0.877077596778126,1.59196257431122,1.31438488505511,-1.35340582016131,0.292002870994233,0.341936724997507 +3.404,0.33482645752166,0.877023487285509,1.59194355678373,1.3141770499829,-1.35327462448362,0.292174672592789,0.342176655058652 +3.406,0.334933212627012,0.876969313156606,1.5919244940926,1.31397045115311,-1.35314343718967,0.292346609309594,0.342416486233809 +3.408,0.335040027073827,0.876915051383881,1.5919053788262,1.3137649660174,-1.35301224702695,0.292518711087476,0.342656264350759 +3.41,0.335146872511211,0.876860695960103,1.59188621346805,1.31356042552786,-1.35288104918041,0.292690991453145,0.342896019207846 +3.412,0.335263269740338,0.876812678026553,1.59186649439052,1.31336692717568,-1.35277206009883,0.292833334113914,0.343105682098413 +3.414,0.33536876545492,0.876761557153717,1.59185190962204,1.31317338416843,-1.35263901619388,0.293005363935539,0.343342706299333 +3.416,0.33547213366301,0.876707778649223,1.59183551214907,1.3129776682943,-1.3525034967845,0.293184248822627,0.343585225588837 +3.418,0.335575458324228,0.876652168235622,1.59181671181701,1.31277931895211,-1.35236843505296,0.293363603289132,0.343828893200092 +3.42,0.335679220271219,0.876595563493284,1.59179627928887,1.31257832409749,-1.35223422552706,0.293541949711552,0.344072690096609 +3.422,0.335783517680047,0.876538646219707,1.59177506985122,1.31237486473547,-1.35210080513826,0.293719059081893,0.344316302777067 +3.424,0.335888352193113,0.876481891067045,1.59175371784205,1.31216924038732,-1.35196802103135,0.293895002033921,0.344559587663963 +3.426,0.335993694321473,0.876425573340086,1.59173259646105,1.31196182264345,-1.35183572315191,0.294069926270537,0.344802461581432 +3.428,0.336099500350923,0.876369807237244,1.59171186685106,1.31175302266249,-1.35170378313189,0.294243988735627,0.345044890266535 +3.43,0.336205718267205,0.876314592670351,1.59169154004802,1.31154325592204,-1.3515721038607,0.29441734789009,0.345286877258596 +3.432,0.336312292547637,0.876259861386926,1.59167154364856,1.31133291898551,-1.35144061155269,0.294590147695516,0.345528461460602 +3.434,0.33642875488166,0.876211936441998,1.59165127817883,1.31113266183178,-1.35133151284648,0.294732420238835,0.345739574134227 +3.436,0.336534519150472,0.876161253856465,1.59163628684567,1.31093194431545,-1.35119842434942,0.294903899152912,0.345977776043292 +3.438,0.336638350024751,0.876108153284172,1.59161952079806,1.31072903629676,-1.35106293382517,0.295081923364754,0.346221271378701 +3.44,0.336742306121138,0.876053370498273,1.59160032022862,1.31052383012538,-1.35092796091631,0.295260212838609,0.346465767420891 +3.442,0.336846836998296,0.875997673079479,1.59157941712023,1.31031658772977,-1.35079388593445,0.29543739556415,0.346710290168177 +3.444,0.336952010617511,0.875941692891055,1.59155765987903,1.31010768700222,-1.35066062497466,0.295613324934008,0.346954570412396 +3.446,0.337057800666326,0.875885869684718,1.59153569074558,1.30989754301996,-1.35052801057505,0.295788147948226,0.347198493474114 +3.448,0.337164153544333,0.875830456113415,1.59151390490084,1.30968657548496,-1.35039587557307,0.295962062981929,0.347442000158936 +3.45,0.337271004534269,0.87577555107934,1.59149248568146,1.30947517969621,-1.35026408220446,0.296135269959187,0.347685066189952 +3.452,0.3373782844747,0.875721144990616,1.59147146983396,1.30926370987282,-1.35013252168481,0.296307944658213,0.347927704252584 +3.454,0.337485923511939,0.875667162606943,1.59145080345512,1.30905246115341,-1.35000111680351,0.296480243440604,0.348169952021857 +3.456,0.337593854969258,0.875613499649191,1.59143039400573,1.3088416641252,-1.34986981174264,0.296652293160846,0.348411868284558 +3.458,0.337711656003066,0.875566468778346,1.5914096748156,1.30864177712126,-1.34976086875119,0.296794104979181,0.348623349171872 +3.46,0.33781863697927,0.875516510115325,1.59139418585981,1.30844209851155,-1.34962782855787,0.296965345145096,0.348862008297153 +3.462,0.33792359847649,0.875463987442614,1.59137690328153,1.30824064658233,-1.34949232761255,0.29714335320149,0.349106046519328 +3.464,0.338028618223473,0.875409661560169,1.59135718861302,1.30803710873947,-1.34935730795244,0.297321793191749,0.349351145379986 +3.466,0.338134157363534,0.875354324340138,1.59133579321238,1.30783157345213,-1.34922316181088,0.297499241698066,0.349596308940229 +3.468,0.338240292952162,0.875298629107381,1.59131357822615,1.30762427547338,-1.34908981355858,0.297675507480394,0.349841250648522 +3.47,0.33834700693638,0.875243033592499,1.59129119090739,1.30741551811416,-1.34895710259957,0.297850698640959,0.350085842236603 +3.472,0.33845425348443,0.875187805238641,1.59126902487033,1.30720564072708,-1.34882486796502,0.298024980458488,0.350330014252945 +3.474,0.338561975114898,0.875133055246806,1.59124725732963,1.30699498828342,-1.34869297743393,0.298198525853458,0.350573735320413 +3.476,0.338670109260489,0.875078784568797,1.5912259163892,1.30678389198272,-1.34856132701673,0.298371489939365,0.350817013808493 +3.478,0.338778591915489,0.87502492733129,1.59120493868581,1.30657264762299,-1.34842984333396,0.298544014660786,0.351059885447571 +3.48,0.338887361436815,0.874971387798754,1.59118422259876,1.30636150588742,-1.34829847335855,0.298716218396129,0.351302408893235 +3.482,0.339006049842057,0.874924483731375,1.59116321736388,1.30616096277421,-1.34818952195715,0.298858117092758,0.351514439505493 +3.484,0.339123561578612,0.874881074927847,1.59114698947706,1.30597070750296,-1.34807878298423,0.298999260786803,0.351723434346315 +3.486,0.339227987638841,0.874832066331015,1.591134107144,1.305778016903,-1.34794139705875,0.299176585009968,0.351965214668073 +3.488,0.339330303094786,0.874778669553281,1.59111696267606,1.30558055534275,-1.34780201127361,0.299361075695054,0.3522136002522 +3.49,0.339442810204803,0.874728914331517,1.59109527004762,1.30538845685574,-1.34768633661067,0.29951483731966,0.352432984974348 +3.492,0.339545314648936,0.874674811765306,1.59107625828445,1.30519141959025,-1.3475481423215,0.299695769060459,0.352679662041649 +3.494,0.339646789384145,0.874617934931066,1.59105448277676,1.30498804719829,-1.34740889489738,0.299881119117572,0.35293133439087 +3.496,0.339749320266034,0.874559827224628,1.59103038173631,1.30477882894692,-1.3472712393906,0.300064776784148,0.353183399500378 +3.498,0.33985331113417,0.874501685142689,1.59100529409487,1.3045647557784,-1.34713528144164,0.300245638695222,0.353434700369936 +3.5,0.339958748611828,0.874444276275515,1.59098028892644,1.30434698587564,-1.34700070888497,0.300423848490722,0.353684888280153 +3.502,0.340065506165306,0.874387979042879,1.59095597243724,1.30412670424991,-1.34686718079713,0.300599835355655,0.353933854321881 +3.504,0.340173421822838,0.874332874960537,1.5909325653318,1.30390504264204,-1.34673440526084,0.300774058739126,0.354181608954391 +3.506,0.340282322277035,0.8742788501678,1.59091002826299,1.30368301586725,-1.34660215801685,0.30094695312881,0.354428237513591 +3.508,0.340392035447798,0.874225687221394,1.59088818636711,1.30346148341248,-1.34647027130489,0.301118899384303,0.354673879911456 +3.51,0.340502398030573,0.874173134666883,1.59086681695499,1.30324112134131,-1.34633862733818,0.301290228468289,0.354918700799608 +3.512,0.340613261486738,0.874120954792727,1.59084571254925,1.30302241695293,-1.34620714118741,0.301461210645627,0.35516287365723 +3.514,0.340724494882907,0.874068949395038,1.59082470806002,1.30280567018243,-1.34607575557772,0.301632066251429,0.355406558746923 +3.516,0.340835986791489,0.874016970671215,1.59080369434185,1.30259101244333,-1.3459444280862,0.301802959067024,0.355649897909531 +3.518,0.340947644765354,0.873964919909122,1.59078261056082,1.30237842627075,-1.34581313079073,0.301974009819908,0.355893003935703 +3.52,0.34105939472032,0.873912741110848,1.59076143685267,1.30216777621696,-1.34568184191872,0.302145291844464,0.356135965242765 +3.522,0.341171178769958,0.873860410747846,1.59074017727633,1.30195883497959,-1.34555054881505,0.302316846094076,0.356378842785576 +3.524,0.341282953684018,0.87380792860377,1.59071885110306,1.30175131586576,-1.34541924189166,0.302488678066893,0.356621679461099 +3.526,0.341394688380106,0.873755308708985,1.59069747935384,1.30154489668546,-1.34528791879369,0.302660773321152,0.356864499455269 +3.528,0.341506362391647,0.873702573431151,1.59067608192148,1.30133924705648,-1.34515657889436,0.302833094601508,0.357107318141061 +3.53,0.341617963607143,0.873649748325148,1.59065467034527,1.30113404525022,-1.34502522747123,0.303005596876432,0.357350140748494 +3.532,0.341729487071393,0.873596859903557,1.59063325037654,1.30092899730382,-1.34489387006341,0.303178223703999,0.35759297083144 +3.534,0.341840933099096,0.873543933456509,1.59061181886755,1.30072384528572,-1.3447625164271,0.303350921020785,0.357835807302339 +3.536,0.341962109493034,0.873497403432114,1.59058997859283,1.30052868365756,-1.34465360672236,0.303493564643313,0.358048343426149 +3.538,0.342072057106628,0.873447812547199,1.59057326253076,1.30033270070184,-1.34452042115792,0.303665583171947,0.358288314576325 +3.54,0.342179738931742,0.873395634144717,1.59055469007518,1.30013361637033,-1.34438474406096,0.303844351744052,0.358533884118965 +3.542,0.342287326991134,0.873341705915236,1.59053363737697,1.29993102588832,-1.34424957848148,0.30402342473065,0.358780645236959 +3.544,0.342395340659155,0.873286873174737,1.59051087081699,1.29972504762805,-1.3441153354496,0.3042012984483,0.3590275470383 +3.546,0.342503896485993,0.873231820740232,1.59048725300925,1.2995160214024,-1.34398194940549,0.304377750792333,0.359274265255408 +3.548,0.342613005809233,0.873177021577529,1.59046342797118,1.29930441339094,-1.34384925835688,0.304552875929729,0.359520654535943 +3.55,0.342722644142491,0.873122745395856,1.59043977840865,1.29909075745291,-1.34371710084179,0.30472685267027,0.359766633538656 +3.552,0.342832769697928,0.873069097884558,1.59041647462283,1.29887561398703,-1.34358533680248,0.304899871775019,0.360012171113667 +3.554,0.342943330101836,0.873016068436931,1.59039353684639,1.2986595285565,-1.3434538579133,0.305072125436347,0.360257274288358 +3.556,0.34305426785636,0.872963576992577,1.59037090206946,1.29844300468304,-1.34332258022217,0.305243789193223,0.360501985116237 +3.558,0.343165524039858,0.872911511098484,1.59034847007575,1.29822647800714,-1.34319144415613,0.305415026721313,0.360746364048696 +3.56,0.343277042100835,0.872859753484942,1.59032614104475,1.29801030525949,-1.3430604043541,0.305585977995206,0.360990483835916 +3.562,0.343388769767643,0.872808198102926,1.59030383116949,1.29779475427876,-1.34292942984882,0.30575676706685,0.361234414641411 +3.564,0.34350066097282,0.872756758924259,1.59028148434724,1.29758000741427,-1.34279849538941,0.305927491945443,0.36147822275884 +3.566,0.34361267605257,0.872705371392354,1.5902590685491,1.2973661635827,-1.34266758380046,0.306098233966821,0.361721961334632 +3.568,0.343724782299701,0.872653991288116,1.59023657499045,1.29715325077296,-1.34253667959129,0.306269049400183,0.361965674139745 +3.57,0.343836953191517,0.87260259048945,1.59021400802697,1.29694123443816,-1.34240577301628,0.306439980138364,0.36220939050779 +3.572,0.34394916832284,0.872551153442354,1.59019138238942,1.29673003377295,-1.34227485480342,0.306611046404165,0.362453132091967 +3.574,0.344061412303487,0.872499672760265,1.59016871408254,1.29651953167172,-1.34214392081204,0.306782258265033,0.362696909557516 +3.576,0.344173674552011,0.872448146810615,1.59014602011445,1.29630959068348,-1.34201296705064,0.306953609074049,0.362940729979661 +3.578,0.34428594818827,0.872396576966939,1.59012331241949,1.29610006126912,-1.34188199428817,0.307125087304675,0.363184593530571 +3.58,0.344398229879123,0.872344966871654,1.59010060044019,1.29589079504231,-1.34175100291397,0.307296670095586,0.363428500407375 +3.582,0.344510518814726,0.872293321090307,1.59007788735592,1.29568164968582,-1.34161999733563,0.307468334876837,0.363672446854863 +3.584,0.34462281663723,0.87224164538389,1.59005517427115,1.29547249849458,-1.34148898070645,0.307640052564181,0.363916431337737 +3.586,0.344735126499312,0.872189945979345,1.59003245739899,1.29526323152769,-1.34135795923442,0.307811798611343,0.364160449898553 +3.588,0.344847453069191,0.872138230133194,1.59000973267023,1.29505376151633,-1.34122693691964,0.307983545528766,0.364404501767125 +3.59,0.344959801663879,0.872086505460921,1.5899869929499,1.29484402167372,-1.34109591993934,0.308155273186179,0.364648584294243 +3.592,0.345072178334431,0.872034780424975,1.58996423243934,1.29463396866501,-1.34096491153107,0.30832696056642,0.364892698247551 +3.594,0.345184589083172,0.871983063533733,1.58994144356781,1.29442357795676,-1.34083391655199,0.308498595338361,0.36513684253917 +3.596,0.345297040045235,0.871931363703226,1.58991862104634,1.29421284484996,-1.3407029365493,0.308670164919306,0.365381019393443 +3.598,0.345409536804312,0.871879689367845,1.58989575843822,1.29400177841342,-1.34057197450186,0.308841665469677,0.365625228998581 +3.6,0.345522084682514,0.871828048807319,1.58987285195092,1.29379040161195,-1.3404410300517,0.309013092452775,0.365869474635643 +3.602,0.345634688159518,0.871776449277062,1.58984989680998,1.29357874479528,-1.34031010437948,0.309184449267433,0.366113757311712 +3.604,0.345747351267701,0.871724897399991,1.58982689091633,1.29336684579543,-1.3401791955346,0.309355737528348,0.366358080886881 +3.606,0.345860077103342,0.871673398394607,1.58980383113643,1.29315474372202,-1.340048303377,0.309526965552924,0.366602446712773 +3.608,0.34597286830773,0.871621956582008,1.58978071691051,1.29294247963618,-1.33991742494298,0.309698138568592,0.366846858771022 +3.61,0.346085726645831,0.871570574735284,1.58975754652029,1.29273009111274,-1.33978655939415,0.309869267228636,0.367091318330587 +3.612,0.346198653544083,0.87151925470196,1.58973432068532,1.29251761380166,-1.33965570337206,0.310040357899452,0.367335829106535 +3.614,0.346311547687116,0.87146798610507,1.58971107809934,1.29230515323266,-1.33952484957256,0.310211420566052,0.36758036791358 +3.616,0.346424418090899,0.871416763634982,1.58968780421248,1.29209270779617,-1.33939399402733,0.310382475870713,0.367824956900981 +3.618,0.34653727802878,0.871365584470808,1.58966448369768,1.29188026982951,-1.33926313828184,0.310553532014362,0.368069602356802 +3.62,0.346650141282621,0.871314448822111,1.58964110817353,1.29166783094633,-1.33913228225531,0.310724587832834,0.368314309352687 +3.622,0.346763020640023,0.871263358434807,1.58961767222549,1.29145537990467,-1.33900142820005,0.310895645138006,0.368559078592399 +3.624,0.346875928108398,0.871212316176494,1.5895941757762,1.29124290670582,-1.33887057570041,0.311066700512926,0.368803912202467 +3.626,0.346988874358129,0.87116132454342,1.58957061914235,1.29103040001391,-1.33873972642829,0.311237754799184,0.36904880880798 +3.628,0.3471018691844,0.871110385629154,1.58954700566435,1.29081785092775,-1.33860887943186,0.311408804138152,0.369293769022662 +3.63,0.347214921040051,0.871059500143783,1.58952333735477,1.29060525008645,-1.33847803597273,0.31157984923023,0.369538790468546 +3.632,0.347328037554122,0.871008667884372,1.58949961813119,1.29039259113561,-1.33834719482577,0.311750886287925,0.369783873188276 +3.634,0.347441225106389,0.870957887172234,1.58947584996527,1.29017986755914,-1.33821635708249,0.311921916240403,0.370029014569274 +3.636,0.347554489379021,0.870907155627395,1.58945203646801,1.28996707591236,-1.33808552141808,0.312092935643612,0.370274214643094 +3.638,0.347667834950529,0.870856469795819,1.58942817925459,1.28975421247168,-1.33795468885613,0.312263945846048,0.370519470918855 +3.64,0.34778126585902,0.870805826015505,1.58940428162785,1.2895412763327,-1.33782385801704,0.312434943863138,0.370764783604656 +3.642,0.347894785196479,0.870755220061402,1.58938034496585,1.28932826597204,-1.3376930298653,0.312605931511873,0.371010150398567 +3.644,0.348008395668982,0.870704647978889,1.58935637237817,1.28911518229558,-1.33756220295944,0.312776906256337,0.371255571680811 +3.646,0.348122099181078,0.870654105667515,1.58933236505061,1.28890202518462,-1.33743137819823,0.312947870321315,0.371501045302159 +3.648,0.348235897387047,0.870603589640242,1.58930832585497,1.28868879655284,-1.33730055408244,0.313118821519689,0.371746571775053 +3.65,0.348349791262648,0.870553096531469,1.58928425566161,1.28847549692188,-1.33716973146448,0.313289762356982,0.371992149075849 +3.652,0.348463781647006,0.870502623784925,1.5892601569299,1.28826212851987,-1.33703890882176,0.313460690851928,0.372237777841726 +3.654,0.348577868802632,0.870452169098306,1.58923603002103,1.28804869190844,-1.33690808700638,0.313631609642757,0.372483456186433 +3.656,0.348692052949469,0.870401731055984,1.58921187679924,1.28783518913545,-1.33677726452526,0.313802516810364,0.372729184898332 +3.658,0.348806333814871,0.870351308526688,1.58918769696839,1.28762162041835,-1.3366464422845,0.313973414993902,0.3729749622631 +3.66,0.348920711161356,0.870300901255977,1.58916349169941,1.28740798734957,-1.33651561887121,0.314144302222247,0.373220789256135 +3.662,0.349035184327864,0.870250509229901,1.58913925999827,1.28719428962955,-1.33638479528864,0.314315181042462,0.373466664366412 +3.664,0.349149752752281,0.870200133238345,1.58911500236031,1.28698052831436,-1.33625397023716,0.314486049361471,0.373712588778834 +3.666,0.349264415504867,0.870149774214516,1.58909071716529,1.28676670258532,-1.33612314483863,0.314656909587448,0.373958561196536 +3.668,0.349379171806323,0.870099433778347,1.58906640435102,1.28655281302419,-1.33599231791623,0.314827759480602,0.374204583011924 +3.67,0.349494020554149,0.87004911356079,1.58904206182587,1.28633885840404,-1.33586149070865,0.314998601305159,0.374450653127458 +3.672,0.349608960837007,0.869998815736352,1.58901768915148,1.28612483897682,-1.33573066215002,0.315169432686423,0.374696773116291 +3.674,0.349723991454834,0.869948542341438,1.58899328396281,1.28591075327141,-1.33559983357554,0.315340255769904,0.374942942043146 +3.676,0.349839111430349,0.86989829580529,1.58896884565056,1.28569660138084,-1.33546900400345,0.315511068081214,0.375189161616468 +3.678,0.349954319523828,0.869848078271515,1.58894437178052,1.28548238175671,-1.33533817483392,0.315681871688839,0.375435431011521 +3.68,0.350069614742654,0.869797892136101,1.58891986176868,1.28526809448736,-1.33520734513496,0.315852664063739,0.375681752016186 +3.682,0.350184995851638,0.869747739380085,1.58889531329409,1.28505373808225,-1.33507651633632,0.316023447242889,0.375928123858352 +3.684,0.350300461881445,0.869697622121565,1.58887072596182,1.28483931273676,-1.33494568752074,0.316194218686251,0.376174548347269 +3.686,0.350416011635208,0.869647541965258,1.58884609770595,1.28462481710433,-1.33481486011418,0.316364980439178,0.376421024706995 +3.688,0.350541798386192,0.869603885299414,1.58882116409543,1.2844205479575,-1.33470673397683,0.316505722534151,0.376636974356927 +3.69,0.350656167267158,0.869557160248858,1.58880134898886,1.28421619079638,-1.33457399078398,0.316675694448697,0.37688050335631 +3.692,0.350768280913057,0.86950784619521,1.58877965632902,1.28400926804933,-1.33443865372285,0.316852601175329,0.377129813435686 +3.694,0.350880391489106,0.8694567761947,1.58875544823786,1.28379935029908,-1.33430380286317,0.317029960900649,0.37738042304571 +3.696,0.35099304070783,0.869404791227825,1.58872950794358,1.28358655758509,-1.33416986466809,0.317206248350674,0.377631236211064 +3.698,0.351106345657598,0.869352570267832,1.58870272188248,1.28337121939632,-1.33403677017153,0.31738123950195,0.377881906711688 +3.7,0.351220310797504,0.869300578591982,1.58867575320068,1.28315377269535,-1.33390435017803,0.317555030744753,0.378132276998456 +3.702,0.351334902328084,0.86924907736708,1.58864899672803,1.2829347051543,-1.33377243697023,0.317727800262921,0.37838225766922 +3.704,0.351450068602236,0.869198164166954,1.58862262891325,1.28271451811799,-1.33364088676108,0.317899733429598,0.378631811465515 +3.706,0.351565747551733,0.869147821763286,1.58859667207019,1.28249368981138,-1.33350958994116,0.318071012571823,0.378880940674922 +3.708,0.351681872612624,0.869097965613541,1.58857106269114,1.28227265246152,-1.33337846351707,0.318241799816146,0.379129683387121 +3.71,0.351798376583001,0.869048481186263,1.58854569861949,1.28205177047017,-1.33324745037106,0.318412243062251,0.379378096793635 +3.712,0.351915195574673,0.868999251479153,1.58852047718138,1.28183133276718,-1.33311650872103,0.318582465255886,0.379626250751291 +3.714,0.352032270871419,0.868950172811458,1.58849531116657,1.28161154565244,-1.33298561162859,0.318752573211653,0.379874213020788 +3.716,0.35214955085962,0.868901163261783,1.58847014055087,1.28139253822784,-1.33285473814009,0.3189226483484,0.380122047785857 +3.718,0.352266991074169,0.868852163736761,1.58844492898509,1.28117436585161,-1.3327238751786,0.319092756773956,0.38036980660067 +3.72,0.352384554697095,0.868803136455009,1.58841966294326,1.28095702326265,-1.33259301115683,0.319262941384994,0.380617532018407 +3.722,0.352502211606653,0.868754060369489,1.58839434177979,1.2807404530461,-1.33246213972933,0.319433232916631,0.380865252753581 +3.724,0.35261993825833,0.86870492733064,1.58836897502142,1.28052456136265,-1.33233125464758,0.319603642795175,0.381112990260861 +3.726,0.352737716422512,0.868655737427032,1.58834357349439,1.28030922700913,-1.33220035420363,0.319774174708518,0.381360755594295 +3.728,0.352855532956121,0.868606496336926,1.58831814915319,1.28009431608628,-1.33206943643481,0.319944817914873,0.38160855657475 +3.73,0.352973378568491,0.868557212385203,1.58829270923302,1.27987968884896,-1.33193850357049,0.320115558918837,0.381856394589478 +3.732,0.35309124767999,0.868507895628124,1.58826725890207,1.27966521137933,-1.33180755710965,0.320286374706392,0.382104271253827 +3.734,0.353209137303257,0.868458556366848,1.58824179766534,1.27945075901653,-1.33167660208122,0.320457244100265,0.382352184519949 +3.736,0.353327047014143,0.868409205297243,1.58821632355856,1.27923622443062,-1.33154564200331,0.320628140568156,0.382600134577243 +3.738,0.353444977939122,0.868359852698582,1.58819083043831,1.279021517524,-1.33141468306785,0.320799042983917,0.382848119298573 +3.74,0.353562932823122,0.868310508936749,1.58816531253218,1.27880657021146,-1.33128372911429,0.320969927770034,0.383096139593428 +3.742,0.353680915106936,0.868261183776596,1.58813976170593,1.27859133338729,-1.33115278589247,0.321140778957139,0.383344194450112 +3.744,0.353798929087043,0.868211886873814,1.58811417176006,1.27837577920996,-1.33102185617771,0.321311579629206,0.38359228600155 +3.746,0.35391697908427,0.86816262701884,1.58808853533683,1.27815989605643,-1.33089094420042,0.321482321340016,0.383840414389039 +3.748,0.354035069703995,0.868113412558443,1.58806284784113,1.27794368929802,-1.3307600509378,0.321652994962492,0.384088582727419 +3.75,0.354153205104008,0.868064250600153,1.58803710400878,1.27772717522898,-1.33062917871165,0.321823599624164,0.38433679192045 +3.752,0.354271389361085,0.868015147438109,1.58801130155262,1.2775103812748,-1.33049832662728,0.321994133150787,0.384585045611239 +3.754,0.354389625838119,0.867966107806413,1.58798543752886,1.27729333975394,-1.33036749528877,0.322164600726072,0.384833345002592 +3.756,0.354507917650029,0.867917135388356,1.58795951184584,1.27707608826698,-1.33023668232277,0.322335005135683,0.38508169382342 +3.758,0.354626267116043,0.867868232176386,1.58793352354955,1.27685866391265,-1.33010588714537,0.322505355343718,0.385330093171549 +3.76,0.354744676303819,0.867819399095933,1.587907474288,1.27664110433888,-1.32997510651084,0.322675656716698,0.385578546502763 +3.762,0.354863146541542,0.867770635478206,1.5878813645835,1.27642344275645,-1.32984433927476,0.322845919663445,0.385827054502429 +3.764,0.354981679011114,0.867721939783923,1.58785519729555,1.27620570985969,-1.32971358192515,0.323016149963648,0.386075620099227 +3.766,0.35510027429067,0.867673309159142,1.58782897390597,1.27598792972513,-1.32958283330703,0.323186357557797,0.386324243369945 +3.768,0.355218932967494,0.867624740219915,1.58780269799332,1.27577012258088,-1.32945209011471,0.323356547044393,0.386572926578235 +3.77,0.355337655184618,0.867576228648171,1.58777637153696,1.27555230148303,-1.32932135156348,0.323526726649544,0.386821669114469 +3.772,0.355456441249945,0.867527769994587,1.58774999840524,1.27533447575795,-1.32919061483922,0.323696898903114,0.387070472557371 +3.774,0.35557529116811,0.867479359274774,1.58772358067959,1.27511664823466,-1.32905987971827,0.323867069773216,0.387319335646533 +3.776,0.35569420523111,0.867430991755753,1.58769712215768,1.2748988191102,-1.32892914398184,0.32403723949343,0.387568259360928 +3.778,0.355813183525501,0.867382662523551,1.58767062469898,1.27468098347892,-1.32879840799421,0.324207411820267,0.387817241917115 +3.78,0.355932226498757,0.867334367230781,1.58764409174521,1.2744631353676,-1.32866767009501,0.324377584962862,0.388066283855712 +3.782,0.356061685092743,0.867292461739079,1.58761733944072,1.2742555712575,-1.3285597995137,0.324517793115708,0.388284622860715 +3.784,0.356179514847631,0.867247454533672,1.5875957201375,1.27404815188519,-1.32842710759709,0.324687136507426,0.388530618519363 +3.786,0.356295001725493,0.867199834108116,1.58757222187314,1.27383820065009,-1.32829177316104,0.324863497469266,0.388782482288024 +3.788,0.356410454409159,0.867150437529573,1.58754619442475,1.27362522389,-1.3281569275988,0.325040347454998,0.389035687340986 +3.79,0.356526436818261,0.867100109349653,1.58751842317917,1.27340931631336,-1.32802301357665,0.32521613766079,0.3892891073099 +3.792,0.356643075802205,0.867049531804469,1.5874898057924,1.27319080231184,-1.32788995987085,0.325390626299565,0.389542386602523 +3.794,0.356770755155971,0.867005527920258,1.58746083524999,1.27298042569395,-1.32778048644902,0.325533947885144,0.389764576563702 +3.796,0.356887349896812,0.866958872838843,1.58743725310813,1.27276857500277,-1.32764668380257,0.325705357801497,0.390013979609707 +3.798,0.357012492877108,0.866916512369785,1.58741204719975,1.27256337692887,-1.3275335019305,0.325852990606901,0.390237978764285 +3.8,0.357126328023192,0.866869783838878,1.58738992548735,1.27235473056125,-1.32739621552148,0.326029573038501,0.390490448723266 +3.802,0.357238659818739,0.866819943842544,1.58736459175717,1.27214048329441,-1.32725738827224,0.326211631443317,0.390748513472332 +3.804,0.357351864743832,0.866768403251251,1.58733618670465,1.27192084935768,-1.32712003017652,0.326392540405913,0.391007341382581 +3.806,0.357466453119007,0.866716360905372,1.58730606101998,1.27169667300067,-1.32698437177003,0.326570970660127,0.391265708228454 +3.808,0.357592864549116,0.866671013007708,1.58727526000222,1.27147930990073,-1.32687305617649,0.326717010607185,0.391492425668923 +3.81,0.357708852878661,0.866623358615486,1.5872499022574,1.27125977651366,-1.32673795091729,0.326890087122976,0.391745785717952 +3.812,0.357823596454556,0.866574078911329,1.58722335786882,1.2710364114787,-1.32660097501589,0.327068556401724,0.392003971029391 +3.814,0.357939261086781,0.866523989460777,1.58719506670826,1.27080967062275,-1.32646503446967,0.327246287499064,0.39226248147637 +3.816,0.358066675045221,0.866480135581597,1.58716557776405,1.27059077853435,-1.32635332184603,0.327392130737832,0.392489454218712 +3.818,0.358183625059417,0.866433507242547,1.58714095686996,1.27037065323019,-1.32621781104446,0.327565197857883,0.392743112851427 +3.82,0.358299300753927,0.866384849482314,1.58711467885888,1.27014747699683,-1.32608047178268,0.327743788284465,0.393001650508811 +3.822,0.358415864856567,0.866335071241705,1.58708633142614,1.26992154027845,-1.32594421915298,0.327921745864888,0.393260572200797 +3.824,0.358533721530424,0.866284963452633,1.58705676654879,1.26969359154221,-1.32580930755693,0.328097852626415,0.393518833415204 +3.826,0.358652839151396,0.866235081412106,1.58702683517542,1.26946444638321,-1.3256755250977,0.328272163130714,0.393776182442067 +3.828,0.358773078965964,0.866185736756872,1.58699711081277,1.26923487240039,-1.32554259458391,0.328445007089686,0.394032576101722 +3.83,0.358894276725158,0.866137038856396,1.58696788381174,1.26900553636982,-1.32541027124747,0.328616746517714,0.394288043132414 +3.832,0.359016266500662,0.866088955014008,1.58693923618157,1.26877698125319,-1.32527835898673,0.328787702520228,0.394542657246534 +3.834,0.359138889265776,0.86604136864218,1.58691111775995,1.26854960975144,-1.32514671442733,0.328958149771068,0.394796517908074 +3.836,0.35926199883856,0.865994128563909,1.58688341690736,1.26832368560304,-1.32501523438745,0.329128304650169,0.395049743242464 +3.838,0.359385464738828,0.865947083353578,1.58685600436393,1.26809933736011,-1.3248838511909,0.329298337531463,0.395302452891446 +3.84,0.359509174721864,0.865900103412584,1.58682876529572,1.26787657587,-1.32475251953843,0.329468368263482,0.39555476275691 +3.842,0.35963303480029,0.865853090618152,1.58680160896,1.26765531034056,-1.32462121388916,0.32963848123358,0.395806772929638 +3.844,0.359756969343896,0.865805980993359,1.58677447497645,1.26743537396275,-1.3244899183255,0.329808721843917,0.396058569066269 +3.846,0.359880919213469,0.865758740968766,1.58674732609934,1.26721654396074,-1.32435862714139,0.329979111893004,0.396310216536778 +3.848,0.3600048405517,0.865711362176614,1.58672014516894,1.26699856727777,-1.32422733772015,0.330149646333301,0.396561766516317 +3.85,0.360139194361217,0.865670193303868,1.58669279165004,1.26679148936075,-1.32411904449783,0.330290372567852,0.396782358359499 +3.852,0.360261634484114,0.865625778032891,1.58667056799381,1.26658505678317,-1.32398579428958,0.33046024974465,0.397030569612736 +3.854,0.360381521510443,0.865578644775974,1.58664644543217,1.26637622600261,-1.3238498838066,0.330637254093783,0.3972846340356 +3.856,0.360501198549237,0.865529669113943,1.58661975819786,1.2661642621698,-1.3237144902922,0.330814790143848,0.397540003038397 +3.858,0.360621245262339,0.865479733374015,1.58659128803697,1.26594908584835,-1.32358007313895,0.330991251961594,0.397795539922564 +3.86,0.360741798749663,0.865429553929191,1.58656193062664,1.26573089773823,-1.32344656795397,0.331166356290953,0.398050887700233 +3.862,0.360873393580297,0.865385961402796,1.5865322263908,1.26552036827688,-1.32333682177026,0.331310239835422,0.398274965108667 +3.864,0.360993634143824,0.865339765483269,1.58650786439111,1.26530798216582,-1.32320265572204,0.33148202296235,0.398526272460622 +3.866,0.361111866645995,0.865291583659922,1.58648198299285,1.26509141679199,-1.32306623641683,0.331659916459923,0.398782993689243 +3.868,0.361230393919492,0.865242258012059,1.58645393245551,1.26487065371008,-1.32293062717379,0.331837533031904,0.399040573664524 +3.87,0.361349740114617,0.86519256562962,1.58642442925329,1.26464627364603,-1.32279619653884,0.332013467132759,0.399297909015635 +3.872,0.361469979771754,0.865143085810648,1.58639427263162,1.26441904853541,-1.32266281079277,0.332187621752313,0.399554701507055 +3.874,0.361591066998228,0.865094173352143,1.58636403266787,1.26418979894212,-1.32253025064381,0.332360229004419,0.399810858468494 +3.876,0.361712918741847,0.865045986791274,1.58633402932915,1.26395932741382,-1.32239830474159,0.332531582258329,0.400066365231507 +3.878,0.361835437392397,0.864998536926465,1.58630438403902,1.26372836835938,-1.3222667990083,0.332701975293502,0.4003212498013 +3.88,0.361958520791571,0.864951739819771,1.58627509300053,1.26349755827025,-1.32213559523035,0.332871670949712,0.400575575559429 +3.882,0.362082067511764,0.864905461859345,1.58624608448332,1.26326741114676,-1.32200459155345,0.33304090308022,0.400829424696834 +3.884,0.362205981866141,0.864859555067258,1.58621726718175,1.26303831162832,-1.32187371160973,0.333209864344762,0.40108289146257 +3.886,0.362330176454384,0.864813879548758,1.58618855470991,1.26281051147622,-1.32174290265933,0.333378715368304,0.401336066831023 +3.888,0.362454574740396,0.864768316944664,1.58615988323851,1.26258414082862,-1.32161212553814,0.333547576356568,0.401589035846362 +3.89,0.362579111364531,0.864722774878119,1.58613121177457,1.26235921907207,-1.32148135494281,0.333716538770658,0.401841867992373 +3.892,0.362703732829826,0.864677187360416,1.58610252312375,1.26213567624552,-1.32135057193066,0.33388565905559,0.402094620222164 +3.894,0.362828396389824,0.864631511038656,1.58607381462489,1.2619133700752,-1.32121976635978,0.334054971721528,0.402347332271902 +3.896,0.36296365714375,0.864592044428491,1.58604499461761,1.26170242417689,-1.32111200818116,0.334194574051874,0.402569044008645 +3.898,0.36308697672655,0.864549308272162,1.58602135100726,1.26149271537321,-1.32097915242571,0.334363368691307,0.40281845961749 +3.9,0.363207769136193,0.864503806609456,1.58599585690377,1.2612811131533,-1.32084356776024,0.334539434843028,0.403073807887774 +3.902,0.363328398953917,0.864456392197302,1.5859678464057,1.2610668311465,-1.32070845768887,0.334716170127085,0.40333050822721 +3.904,0.363449451893354,0.864407929746843,1.58593811299824,1.26084974203805,-1.32057428505199,0.334891950928944,0.403587406931536 +3.906,0.363571064244938,0.864359121240638,1.58590756033966,1.26062998710086,-1.32044098903355,0.335066490361276,0.403844131641211 +3.908,0.36370386370175,0.864316771081268,1.58587676926806,1.26041817678752,-1.3203315007236,0.335209936558971,0.404069499778067 +3.91,0.363825263318149,0.864271693180087,1.5858514048157,1.26020482125742,-1.32019745780181,0.335381319465219,0.404322139084572 +3.912,0.363944664457302,0.864224507809762,1.5858245951032,1.25998743904126,-1.32006110484145,0.335558923676941,0.404580229641895 +3.914,0.364064394056089,0.864176061315244,1.58579567712272,1.25976591916621,-1.31992553723455,0.335736332385193,0.404839186424266 +3.916,0.364184985356184,0.864127139332153,1.58576536587814,1.25954078129212,-1.3197911315677,0.335912105628551,0.405097892296885 +3.918,0.364306515066187,0.864078331236865,1.58573445600256,1.25931274836477,-1.31965776094818,0.336086132168523,0.40535603788466 +3.92,0.36443957418762,0.864036318366534,1.58570343109407,1.25909292435354,-1.31954832896923,0.336228727995383,0.405582491375892 +3.922,0.36456146719391,0.863991809608146,1.58567786578511,1.25887223344682,-1.31941438508592,0.336399045080801,0.405835991438436 +3.924,0.364681554630911,0.863945337069023,1.58565083044575,1.25864845311557,-1.31927816400974,0.336575513477477,0.406094787344053 +3.926,0.364802119912009,0.863897678902767,1.58562163274143,1.25842164462222,-1.31914274372768,0.336751811110413,0.40635434593027 +3.928,0.364923654560108,0.863849571239211,1.58559098314003,1.25819241049236,-1.31900848290436,0.336926571255395,0.406613591607786 +3.93,0.365046198006347,0.863801568896301,1.58555968750385,1.25796147616232,-1.31887523924368,0.337099735988616,0.40687224576126 +3.932,0.365169673133007,0.86375401548254,1.58552833216102,1.25772956483226,-1.31874278198588,0.337271551863137,0.407130234334945 +3.934,0.365293969661983,0.86370706665186,1.58549724984827,1.25749733853593,-1.31861089588377,0.337442320704269,0.407387550362032 +3.936,0.36541896814807,0.863660736990606,1.58546657511691,1.2572653689567,-1.31847940219136,0.337612321954847,0.407644229427565 +3.938,0.365544548457398,0.863614949729952,1.58543630864177,1.2570341140853,-1.318348166308,0.337781803698878,0.407900333712807 +3.94,0.36567059591951,0.86356958172326,1.58540638159572,1.25680391195135,-1.31821708842889,0.337950967996583,0.408155947143954 +3.942,0.365807687075659,0.86353080254846,1.58537663012841,1.25658529651595,-1.31810926225806,0.338090092078969,0.408380077433132 +3.944,0.365933024899357,0.863489028722885,1.58535221237155,1.25636855926383,-1.31797631232014,0.338258131838773,0.408631638391162 +3.946,0.366056015245057,0.863444664604979,1.58532600330786,1.25615070801286,-1.31784065426393,0.338433368264633,0.408888931291581 +3.948,0.366178990978468,0.863398481378048,1.58529727065454,1.25593107501729,-1.31770549486537,0.338609265991803,0.409147420684299 +3.95,0.366302497206189,0.863351283071654,1.58526677347814,1.25570958901891,-1.31757129064433,0.33878426273774,0.409405992364909 +3.952,0.366426631878362,0.863303730603851,1.5852354095033,1.25548638993974,-1.31743796698253,0.338958109705166,0.409664314106864 +3.954,0.366562083923208,0.86326258412827,1.58520379719227,1.2552720362206,-1.31732853097638,0.339101010424543,0.409891135618949 +3.956,0.366686050371025,0.863218654304863,1.58517759103606,1.25505703487858,-1.31719442714,0.339271929918852,0.410145242294491 +3.958,0.366807967579322,0.863172557612805,1.58514992224132,1.25483868491844,-1.31705797305198,0.339449245779444,0.410404824731849 +3.96,0.36693017215801,0.863125140037234,1.58512013543208,1.25461670731241,-1.31692228736727,0.339626510256399,0.410665283069327 +3.962,0.367053194992014,0.863077189305045,1.58508895588411,1.2543914654515,-1.31678775673706,0.339802260017533,0.410925486634803 +3.964,0.367177108877031,0.863029298818641,1.58505719166879,1.25416354120984,-1.31665425458956,0.339976351567531,0.411185122938862 +3.966,0.367312596212905,0.862988135690449,1.58502536411934,1.2539439137692,-1.31654477301609,0.340119101356028,0.411412959409693 +3.968,0.367436771992624,0.862944425817932,1.58499902694343,1.25372348987995,-1.3164106782353,0.340289555281875,0.411667870543927 +3.97,0.367559053830599,0.862898709611529,1.58497123656139,1.25349986166527,-1.31627428620188,0.34046621026301,0.41192810149119 +3.972,0.36768175332578,0.862851772580499,1.58494129028112,1.2532729942655,-1.31613870393418,0.340642699740225,0.412189096619037 +3.974,0.367805374707956,0.862804358213034,1.58490989281604,1.25304343281805,-1.31600430337307,0.340817631275252,0.412449763972192 +3.976,0.36794071709324,0.862763321544017,1.58487780491744,1.25282219867755,-1.31589416946571,0.340961054210845,0.4126786685678 +3.978,0.368064868547354,0.862719566451676,1.58485084507129,1.25260026860934,-1.31575960435559,0.341131974493582,0.412934659248787 +3.98,0.368187251738996,0.862673766974127,1.58482228621095,1.25237525838966,-1.31562289308244,0.341308942371469,0.413195949207624 +3.982,0.368310170162645,0.862626793667079,1.58479156993886,1.25214715893008,-1.31548710334649,0.341485634918056,0.413457949781066 +3.984,0.36843411450003,0.862579432845771,1.58475948724196,1.2519165395419,-1.31535256620695,0.341660689498982,0.41371955015718 +3.986,0.368559114975769,0.862532256277406,1.58472687818955,1.25168411168454,-1.31521911268339,0.341834058387496,0.413980454805782 +3.988,0.368685082495979,0.86248560216584,1.58469432997105,1.25145059648916,-1.31508649157043,0.342005999196567,0.414240585792965 +3.99,0.368811894442357,0.862439608599078,1.58466215684216,1.25121666162919,-1.3149544737348,0.342176823608465,0.41449994130256 +3.992,0.368939419869951,0.862394268449079,1.58463046698181,1.25098288909497,-1.31482287194635,0.342346819419782,0.414758567633331 +3.994,0.369067528578929,0.862349484485188,1.58459923466403,1.25074974958351,-1.3146915468171,0.342516241863056,0.415016540494939 +3.996,0.36920689106248,0.862311401179614,1.58456833583473,1.25052791765037,-1.31458365922364,0.342655442408061,0.415242761548334 +3.998,0.369334472278957,0.862270431571384,1.58454288406267,1.25030792246271,-1.31445058949249,0.34282332509794,0.415496323306923 +4,0.36945972629984,0.862226956613424,1.58451571214246,1.25008677588092,-1.31431482552516,0.34299831592839,0.415755545428603 +4.002,0.369584999379372,0.862181721414174,1.58448604693217,1.24986386952411,-1.31417959533549,0.343173898441454,0.416015885123 +4.004,0.369710833792664,0.862135508336991,1.58445462732796,1.24963919962855,-1.31404535183536,0.343348520189486,0.41627623745166 +4.006,0.3698373182085,0.862088960426171,1.58442233697577,1.24941295779643,-1.31391201617196,0.343521958180459,0.416536280421579 +4.008,0.369964425393731,0.862042524091396,1.58438984926755,1.24918542035866,-1.31377940232022,0.343694312904265,0.416795886859216 +4.01,0.370092094448265,0.861996454781524,1.58435757129757,1.24895689923871,-1.31364732752182,0.343865758951251,0.417054993901504 +4.012,0.370220253084688,0.861950854290832,1.5843256898233,1.24872771547071,-1.31351563752961,0.344036468567422,0.417313584511899 +4.014,0.370348824715861,0.861905716739284,1.58429423450238,1.24849817233401,-1.31338421652921,0.34420660332194,0.417571675967064 +4.016,0.370477733756018,0.861860973553354,1.58426314577388,1.24826854048953,-1.31325297928461,0.344376299654597,0.41782931695211 +4.018,0.370606908494452,0.861816528723042,1.58423232231003,1.24803904231564,-1.31312186899363,0.34454567764257,0.418086572535301 +4.02,0.370736284310963,0.861772284658315,1.58420165933048,1.24780984831934,-1.31299084616489,0.344714832571345,0.418343518378551 +4.022,0.370865804614949,0.861728156785898,1.58417106524455,1.24758107231708,-1.31285988684579,0.344883845686205,0.41860022721348 +4.024,0.370995422165182,0.861684081140244,1.58414047381616,1.24735277738066,-1.3127289735059,0.345052776278979,0.418856767511512 +4.026,0.371125098353217,0.861640014932416,1.58410984148056,1.24712497849796,-1.31259809601193,0.345221672740088,0.419113195227732 +4.028,0.371254803263611,0.861595934730695,1.5840791470129,1.24689765359179,-1.3124672453084,0.345390565080701,0.419369557231888 +4.03,0.37138451414121,0.861551831767901,1.58404838236786,1.24667074911947,-1.31233641656245,0.345559476148364,0.41962588696071 +4.032,0.371514215018544,0.86150770804851,1.58401755034134,1.2464441922067,-1.31220560434073,0.345728414202649,0.419882210564839 +4.034,0.371643895047368,0.861463571720145,1.58398665625017,1.2462178959164,-1.31207480665607,0.345897384110865,0.420138544082902 +4.036,0.371773548182118,0.861419434449015,1.58395570786719,1.24599176993907,-1.31194402063512,0.346066379940948,0.42039490008603 +4.038,0.371903171685704,0.861375308554284,1.58392470985231,1.24576572373308,-1.31181324668269,0.346235395990591,0.420651284737331 +4.04,0.372032766029664,0.861331206152398,1.58389366625686,1.24553967469815,-1.31168248409092,0.346404419137356,0.420907703926379 +4.042,0.372162333622386,0.861287137790041,1.5838625769919,1.24531354867135,-1.31155173506332,0.346573439510766,0.421164159655371 +4.044,0.372291878909821,0.861243112705043,1.5838314417098,1.24508728549254,-1.31142100021684,0.346742442457117,0.421420655458903 +4.046,0.372421407276831,0.861199138196778,1.58380025704804,1.24486083708497,-1.31129028252711,0.346911418747417,0.421677192178487 +4.048,0.372550925294203,0.861155220305504,1.58376902079985,1.24463417088297,-1.31115958282282,0.347080356057159,0.42193377289146 +4.05,0.372680439741925,0.861111363369696,1.58373772911095,1.24440726610923,-1.31102890377586,0.347249248691539,0.42219039833616 +4.052,0.372809957965355,0.861067570746006,1.58370638039886,1.24418011575568,-1.31089824549582,0.347418088607101,0.422447071602983 +4.054,0.372939486994376,0.861023844335245,1.58367497221696,1.24395272177528,-1.31076760963914,0.347586874730166,0.422703793426592 +4.056,0.373069033993865,0.860980185248655,1.58364350483439,1.24372509632749,-1.31063699513512,0.347755603615864,0.422960566810293 +4.058,0.373198605468681,0.860936593291061,1.58361197780887,1.24349725655399,-1.31050640241552,0.347924278487241,0.42321739230109 +4.06,0.373328207800824,0.860893067607277,1.58358039333833,1.24326922569309,-1.31037582924856,0.348092899671611,0.423474272617778 +4.062,0.373457846531442,0.860849606172894,1.58354875268188,1.24304102796314,-1.31024527504768,0.348261473502012,0.423731207947585 +4.064,0.373587526972941,0.860806206467993,1.58351705941974,1.24281268997874,-1.31011473676373,0.348430002666932,0.423988200594477 +4.066,0.373717253552868,0.86076286500845,1.5834853158394,1.2425842360794,-1.30998421322095,0.348598495095794,0.424245250301311 +4.068,0.373847030482041,0.860719578061616,1.58345352619266,1.24235569028731,-1.30985370102126,0.34876695433129,0.424502358913437 +4.07,0.373976861139376,0.860676341215469,1.58342169310888,1.24212707223019,-1.30972319886635,0.348935388483516,0.424759525721389 +4.072,0.374106748773367,0.860633150120001,1.58338982088731,1.24189839970409,-1.30959270344342,0.349103800692692,0.425016752133214 +4.074,0.37423669590574,0.860590000068903,1.58335791195744,1.24166968518115,-1.3094622137099,0.349272198194685,0.42527403703384 +4.076,0.374366705044965,0.860546886737238,1.58332597021372,1.24144093890643,-1.3093317267476,0.349440582901524,0.425531381461505 +4.078,0.374496778090108,0.860503805745925,1.58329399752223,1.24121216587286,-1.30920124200298,0.349608960584846,0.425788783981359 +4.08,0.374626917040376,0.860460753368936,1.5832619970927,1.2409833693006,-1.30907075710979,0.349777331568789,0.426046245362564 +4.082,0.374757123386753,0.860417726058424,1.58322997002436,1.2407545479085,-1.30894027208891,0.34994570001231,0.426303763963332 +4.084,0.374887398808467,0.860374721105178,1.58319791870803,1.24052569959754,-1.30880978514746,0.350114064688271,0.426561340404786 +4.086,0.375017744546714,0.860331736113979,1.58316584340368,1.24029681884361,-1.30867929684788,0.35028242833218,0.426818972963389 +4.088,0.375148162085368,0.86028876961271,1.58313374566589,1.24006790042232,-1.30854880589459,0.350450788472251,0.427076662237099 +4.09,0.375278652506691,0.860245820478316,1.58310162494648,1.23983893677884,-1.30841831328364,0.350619146809435,0.427334406540515 +4.092,0.375409217158362,0.860202888499269,1.58306948203721,1.2396099216733,-1.30828781808751,0.350787500064045,0.427592206559131 +4.094,0.375539856994731,0.86015997376014,1.58303731569102,1.23938084743261,-1.3081573215955,0.350955849356964,0.427850060743067 +4.096,0.37567057323494,0.860117077167999,1.5830051260758,1.23915170844829,-1.30802682310513,0.351124191045673,0.428107969946515 +4.098,0.37580136669492,0.860074199807885,1.5829729114078,1.2389224982674,-1.30789632406065,0.351292526085819,0.428365932817517 +4.1,0.37593223844216,0.860031343446412,1.58294067141009,1.238693212924,-1.30776582385643,0.351460850839726,0.428623950421565 +4.102,0.376063189123667,0.85998850987182,1.58290840395181,1.23846384787085,-1.30763532397793,0.35162916640793,0.428882021626869 +4.104,0.376194219622286,0.859945701388284,1.58287610850544,1.2382344011634,-1.30750482381944,0.35179746940356,0.429140147712949 +4.106,0.376325330384766,0.859902920153484,1.58284378278625,1.23800487026408,-1.30737432482894,0.351965761252591,0.429398327752676 +4.108,0.376456522083073,0.859860168675563,1.58281142620313,1.23777525512015,-1.30724382634014,0.352134038935873,0.429656563208116 +4.11,0.376587794945082,0.859817449158972,1.58277903649393,1.23754555488734,-1.30711332972045,0.352302304263384,0.42991485331189 +4.112,0.376719149422602,0.85977476401334,1.58274661316591,1.23731577095022,-1.30698283421574,0.352470554591101,0.430173199653296 +4.114,0.376850585525565,0.859732115215336,1.58271415412398,1.23708590361306,-1.30685234109932,0.352638792077991,0.430431601562119 +4.116,0.37698210349688,0.859689504835477,1.58268165909838,1.23685595510724,-1.30672184952705,0.352807014387278,0.430690060688147 +4.118,0.377113703149628,0.85964693442042,1.58264912626425,1.23662592628881,-1.30659136068487,0.352975223935606,0.43094857639049 +4.12,0.377245384547706,0.859604405540451,1.58261655565566,1.23639581966603,-1.3064608736518,0.353143418588032,0.431207150313179 +4.122,0.377377147344626,0.859561919193436,1.58258394577625,1.23616563612966,-1.30633038954378,0.353311600907431,0.431465781782492 +4.124,0.377508991468255,0.859519476372757,1.58255129699993,1.23593537801935,-1.30619990738261,0.35347976885062,0.43172447238057 +4.126,0.377640916459436,0.859477077491441,1.58251860817364,1.2357050458986,-1.30606942823428,0.353647925023596,0.431983221352401 +4.128,0.377772922158959,0.859434722967948,1.582485880006,1.23547464166529,-1.30593895108277,0.353816067383418,0.432242030178497 +4.13,0.377905008044262,0.859392412666987,1.58245311166404,1.23524416537097,-1.30580847696178,0.353984198502099,0.432500897992285 +4.132,0.378037173917009,0.85935014649894,1.58242030415181,1.23501361837056,-1.30567800483279,0.354152316276097,0.432759826152019 +4.134,0.378169419236477,0.859307923872635,1.58238745690352,1.23478300017744,-1.30554753570996,0.354320423199235,0.433018813668487 +4.136,0.378301743806574,0.859265744303356,1.58235457115466,1.23455231164108,-1.3054170685424,0.354488517079371,0.433277861775646 +4.138,0.378445231475319,0.859229823713461,1.58232169603781,1.23433188952893,-1.30531013557108,0.354626823600848,0.433505466139513 +4.14,0.378576385886851,0.859190782053549,1.58229401067187,1.23411232571926,-1.30517760104848,0.354793814382662,0.43376107008293 +4.142,0.378704930811465,0.859149139347847,1.58226440593038,1.23389022442015,-1.30504224002168,0.354968067567845,0.434022875063705 +4.144,0.378833376719149,0.859105750294188,1.58223216040057,1.23366487709893,-1.30490739503757,0.35514291447346,0.43428617623076 +4.146,0.378962366695567,0.859061477306422,1.5821980655923,1.23343632871199,-1.30477356281791,0.355316705729952,0.434549749127508 +4.148,0.37909205742404,0.859017014298155,1.58216304762873,1.23320491491363,-1.30464067419554,0.355489160874091,0.434813196311581 +4.15,0.379222468348092,0.858972831787534,1.58212780039664,1.23297111067779,-1.30450854517397,0.355660366674104,0.435076335820945 +4.152,0.379353571170169,0.858929189891428,1.58209274061281,1.23273546231647,-1.30437698599621,0.355830497683051,0.43533907187878 +4.154,0.379485313995149,0.858886180674649,1.58205805352586,1.23249853395631,-1.30424583719742,0.355999750853976,0.435601362608841 +4.156,0.379617632060271,0.85884378057969,1.58202376906895,1.23226087035812,-1.30411497202189,0.356168312483248,0.435863214397463 +4.158,0.379750453521951,0.858801898043936,1.58198982622291,1.23202296210604,-1.3039842979062,0.356336358843531,0.436124666172898 +4.16,0.379883705302961,0.858760412573038,1.58195612896108,1.23178522652034,-1.3038537463788,0.356504042602868,0.436385781210532 +4.162,0.380017316360881,0.858719201094931,1.58192257784019,1.23154799139455,-1.3037232706999,0.356671500173647,0.436646630292269 +4.164,0.38015122119791,0.858678154732304,1.58188909284058,1.23131149356615,-1.30359283599148,0.356838841205293,0.436907286405842 +4.166,0.380285360853969,0.858637185820645,1.58185561743088,1.23107587808693,-1.30346241902923,0.357006157946594,0.437167813286047 +4.168,0.38041968442646,0.858596230045941,1.58182212145629,1.23084120910583,-1.30333200117903,0.357173516482191,0.437428266125611 +4.17,0.380554148509154,0.858555243800665,1.58178859290145,1.23060747806438,-1.30320157071223,0.357340967464804,0.437688685685211 +4.172,0.380688717612406,0.858514200958377,1.58175503477774,1.23037462038988,-1.30307111771113,0.357508538562497,0.437949103334083 +4.174,0.380823362912124,0.858473088111968,1.58172145547071,1.23014252668691,-1.3029406376445,0.357676246103618,0.438209538106581 +4.176,0.38095806228149,0.858431901357348,1.58168786700963,1.22991106002164,-1.30281012699293,0.357844088317184,0.43847000331417 +4.178,0.381092798874719,0.858390642707228,1.58165427820204,1.22968006588643,-1.30267958703831,0.358012057386448,0.438730504194507 +4.18,0.381227561113424,0.858349318488468,1.58162069602576,1.22944938689574,-1.30254901945925,0.358180132905893,0.438991044364393 +4.182,0.381362341300184,0.85830793733198,1.58158712157713,1.22921886929305,-1.30241842992807,0.358348293811094,0.439251622923146 +4.184,0.38149713565664,0.858266509855522,1.58155355362776,1.22898837367019,-1.30228782353672,0.358516511550379,0.439512240141525 +4.186,0.381631943002351,0.858225047558723,1.58151998601387,1.22875777733089,-1.30215720825312,0.358684761481206,0.439772893814109 +4.188,0.381766764858294,0.858183563050428,1.58148641197302,1.2285269809385,-1.30202659031881,0.358853015397047,0.440033584261795 +4.19,0.381901604195032,0.858142069202019,1.58145282179437,1.22829590708624,-1.30189597775723,0.359021252171792,0.4402943101421 +4.192,0.382036465615043,0.85810057944295,1.58141920706035,1.22806450356694,-1.30176537591778,0.359189449503443,0.440555073036112 +4.194,0.382171354188564,0.858059106881606,1.58138555799645,1.22783273907521,-1.30163479117798,0.359357593791516,0.44081587297655 +4.196,0.382306275742243,0.858017664538731,1.58135186732776,1.22760060417696,-1.30150422671463,0.359525671146031,0.441076712850142 +4.198,0.382441235809363,0.857976264424591,1.58131812724114,1.22736810528748,-1.30137368643383,0.359693676634231,0.441337593818156 +4.2,0.382576240049548,0.857934917771683,1.58128433290028,1.22713526448862,-1.30124317095403,0.359861604733099,0.441598519662265 +4.202,0.382711293329419,0.857893634163418,1.58125047913739,1.22690211287698,-1.3011126817161,0.360029458162223,0.441859492182448 +4.204,0.382846400279375,0.857852421863945,1.58121656376831,1.22666869022564,-1.30098221710749,0.360197238009772,0.44212051554084 +4.206,0.382981564499224,0.857811287080102,1.58118258415299,1.22643503857031,-1.30085177667036,0.360364952379827,0.442381591670981 +4.208,0.383116789235143,0.857770234443247,1.58114854042711,1.22620120242988,-1.30072135728538,0.360532606412347,0.442642724638702 +4.21,0.383252076684728,0.857729266430546,1.58111443202227,1.22596722318398,-1.30059095739987,0.360700210935992,0.442903916077451 +4.212,0.383387428760655,0.857688383997932,1.5810802608767,1.22573314023942,-1.30046057320623,0.360867772551927,0.443165169574322 +4.214,0.383522846458337,0.857647586138251,1.5810460279567,1.22549898643132,-1.3003302028349,0.361035302420154,0.443426486140933 +4.216,0.383658330666817,0.857606870627375,1.5810117364697,1.22526479022236,-1.30019984248906,0.361202806509634,0.443687868629082 +4.218,0.383793881561342,0.857566233671778,1.58097738839977,1.2250305720923,-1.30006949057414,0.36137029457857,0.443949317243119 +4.22,0.383929499425659,0.857525670716361,1.58094298772878,1.22479634763181,-1.29993914377543,0.361537770627536,0.444210833985968 +4.222,0.384065184038754,0.857485176129866,1.58090853698862,1.22456212470632,-1.29980880111856,0.361705242076623,0.444472418213513 +4.224,0.384200935482442,0.857444744026047,1.58087404049215,1.22432790717651,-1.2996784599948,0.36187271040658,0.444734071106624 +4.226,0.384336753502389,0.857404367943338,1.58083950090366,1.22409369253947,-1.29954812016213,0.362040180496189,0.444995791261902 +4.228,0.384472638286669,0.857364041642081,1.58080492248217,1.22385947596984,-1.29941777973328,0.362207651404124,0.445257579180723 +4.23,0.384608589792473,0.857323758747505,1.58077030767276,1.22362524814103,-1.29928743913463,0.362375125810211,0.445519432886069 +4.232,0.384744608492087,0.857283513498865,1.58073566036572,1.22339099931361,-1.29915709707565,0.362542600877869,0.445781352417108 +4.234,0.38488069466599,0.857243300337699,1.58070098251125,1.22315671709684,-1.29902675448424,0.362710077740443,0.44604333545995 +4.236,0.385016849120695,0.857203114596874,1.58066627739761,1.22292239038612,-1.29889641047469,0.362877552386994,0.446305381836444 +4.238,0.385153072455084,0.857162952027278,1.58063154629075,1.2226880069109,-1.29876606627552,0.363045025144698,0.446567489137616 +4.24,0.385289365759123,0.857122809424738,1.58059679173273,1.22245355691343,-1.29863572120869,0.363212491543825,0.446829657197625 +4.242,0.38542572986317,0.857082684097115,1.58056201420621,1.22221903041798,-1.29850537662083,0.363379951763472,0.447091883721457 +4.244,0.385562166027965,0.857042574434562,1.58052721545264,1.22198442062607,-1.29837503188113,0.36354740144915,0.447354168738387 +4.246,0.385698675186752,0.85700247932529,1.58049239515967,1.22174972091601,-1.29824468832131,0.363714841106677,0.447616510219182 +4.248,0.385835258635955,0.856962398679689,1.58045755429669,1.22151492799192,-1.29811434525425,0.363882266863013,0.447878908506952 +4.25,0.385971917278148,0.856922332806958,1.58042269182189,1.22128003867153,-1.29798400392342,0.364049679808177,0.448141361922712 +4.252,0.386108652320341,0.856882282906378,1.58038780803117,1.22104505286209,-1.29785366354039,0.364217076703659,0.448403871174502 +4.254,0.386245464523109,0.856842250418764,1.58035290128049,1.22080997021734,-1.29772332524088,0.364384459282577,0.448666434953037 +4.256,0.386382354910367,0.856802237498976,1.58031797134329,1.22057479302363,-1.29759298813713,0.364551824918603,0.448929054322081 +4.258,0.386519324027046,0.856762246356094,1.58028301614287,1.2203395228073,-1.29746265327596,0.36471917589972,0.449191728307787 +4.26,0.38665637266141,0.856722279720425,1.58024803511293,1.22010416320566,-1.29733231970122,0.364886510074,0.449454458274439 +4.262,0.386793501111169,0.856682340184844,1.58021302593478,1.21986871659036,-1.29720198840917,0.36505383011287,0.449717243511946 +4.264,0.386930709917188,0.856642430677568,1.58017798789537,1.21963318697762,-1.29707165841671,0.3652211341493,0.449980085601289 +4.266,0.387067999136193,0.85660255381469,1.58014291862436,1.21939757670996,-1.29694133071019,0.36538842504373,0.450242984004652 +4.268,0.387205369083371,0.856562712387263,1.58010781744469,1.21916188943554,-1.29681100431656,0.365555701026665,0.450505940424484 +4.27,0.38734281960892,0.856522908732114,1.5800726821052,1.21892612686652,-1.29668068024315,0.365722964975969,0.450768954400104 +4.272,0.387480350846515,0.856483145238735,1.58003751211979,1.21869029183471,-1.29655035755029,0.365890215071094,0.451032027663471 +4.274,0.387617962490799,0.856443423742381,1.58000230549243,1.21845438512473,-1.29642003728126,0.366057454085655,0.451295159745114 +4.276,0.387755654548845,0.856403746053233,1.57996706204225,1.21821840859621,-1.29628971853644,0.366224680055832,0.451558352328648 +4.278,0.387893426616056,0.856364113372858,1.57993178011923,1.21798236207632,-1.29615940239375,0.366391895588073,0.451821604867782 +4.28,0.388042651145666,0.856330662999955,1.57989657166877,1.21775659774462,-1.29605289376181,0.366529413167927,0.452053091574922 +4.282,0.388179265696485,0.856294101493507,1.57986660172912,1.21753200344958,-1.29592046301568,0.366695427747412,0.452312743326973 +4.284,0.388313160658422,0.856254952660877,1.57983470693862,1.21730488585281,-1.2957851244018,0.366868799920737,0.452578731329775 +4.286,0.388446924911082,0.856214073731645,1.57980013028397,1.21707444031039,-1.29565031066791,0.367042814779052,0.452846275684921 +4.288,0.388581234311694,0.856172331925418,1.57976366444466,1.21684068811342,-1.2955165400863,0.367215777510853,0.453114115420771 +4.29,0.388716258032647,0.856130423718822,1.57972624281069,1.21660396392026,-1.29538374765207,0.367387396722312,0.453381834109312 +4.292,0.388863417404958,0.856094949443231,1.57968868574983,1.21637510956141,-1.29527557218167,0.367528072625129,0.453617390726256 +4.294,0.388998577218803,0.85605688215789,1.57965658052093,1.21614560189672,-1.2951420379948,0.367696152033466,0.453880658241794 +4.296,0.389131590310153,0.856016835845436,1.57962294920615,1.21591230966936,-1.29500601345302,0.367870715553949,0.454149763587695 +4.298,0.389264986614921,0.855975641939848,1.57958706369845,1.21567498661338,-1.29487080822646,0.368045235609326,0.4544199262777 +4.3,0.389399371845824,0.855934074583847,1.5795496588018,1.21543416405876,-1.2947368450065,0.368218191014485,0.454689922904585 +4.302,0.389534841365207,0.855892708108696,1.57951157425243,1.21519061124691,-1.29460398816856,0.368389447080865,0.454959398694195 +4.304,0.389682768366295,0.855858010888834,1.57947353949367,1.21495551545769,-1.29449584900863,0.368529548267109,0.455196356858837 +4.306,0.389818902573962,0.855820853725055,1.57944106458971,1.21472062695185,-1.29436236442484,0.368696932030307,0.455460785147582 +4.308,0.389953049737378,0.855781761220054,1.57940711315411,1.21448294337842,-1.29422639659637,0.368870795119899,0.455730872238275 +4.31,0.390087693057275,0.855741498467052,1.57937092491925,1.21424227862862,-1.29409124335357,0.369044676238684,0.456001885671657 +4.312,0.390223395560919,0.855700794407712,1.57933322460644,1.21399915573641,-1.29395731535425,0.369217100596834,0.456272640781184 +4.314,0.390360215976925,0.855660195325217,1.57929485552209,1.21375427758185,-1.29382446737177,0.369387963064839,0.456542811717108 +4.316,0.390509521756268,0.855626146919391,1.57925656134159,1.21351872201254,-1.29371632718564,0.369527829710111,0.456780392951019 +4.318,0.390646991178277,0.855589522952956,1.57922386467649,1.21328412386591,-1.29358277891594,0.369695115057933,0.457045427625158 +4.32,0.390782425838815,0.8555508486577,1.57918973317137,1.21304729753191,-1.29344670450216,0.369869029342843,0.457316107119775 +4.322,0.390918302571945,0.855510894288841,1.57915340911632,1.2128078861978,-1.29331141208138,0.370043088781815,0.457587695218263 +4.324,0.391055178637271,0.855470397175,1.57911561828765,1.21256625316174,-1.29317731937346,0.37021579146478,0.457859004258858 +4.326,0.391193109183366,0.855429914041067,1.57907720187882,1.212322956794,-1.29304428791572,0.370387004045637,0.458129706295154 +4.328,0.391332015837176,0.855389788762915,1.57903877325756,1.2120785948486,-1.29291207700006,0.370556926318325,0.458399705316228 +4.33,0.391471781761894,0.855350176839709,1.57900067887804,1.21183373625137,-1.2927804603237,0.37072582563964,0.458668984703341 +4.332,0.391612279821354,0.855311094057507,1.57896305636838,1.21158888750964,-1.29264925120606,0.370893953515612,0.458937576183313 +4.334,0.391753382266413,0.85527246746238,1.57892590337306,1.21134446601182,-1.29251831000481,0.371061535218489,0.459205541961509 +4.336,0.391894967543723,0.855234180681112,1.57888914497895,1.21110079022537,-1.29238753465623,0.371228754890762,0.459472967885052 +4.338,0.392048413342864,0.855202206195072,1.57885281091638,1.21086843172802,-1.2922807737249,0.371366115292101,0.459707984688213 +4.34,0.392189328719014,0.85516717655107,1.57882197183382,1.21063851310289,-1.29214800798425,0.371531812294449,0.459970825664504 +4.342,0.392327585825605,0.855129522708639,1.57878935722273,1.21040723962963,-1.29201232035368,0.371704908794516,0.460239730432876 +4.344,0.39246573477409,0.855090037321604,1.57875413907153,1.21017371570184,-1.29187716105867,0.371878724289019,0.460509964672732 +4.346,0.392604406977007,0.855049549775953,1.57871707037951,1.20993783704248,-1.29174305101343,0.372051588808645,0.460780309216734 +4.348,0.392743733151587,0.855008741505887,1.57867906944979,1.20969978574489,-1.2916099197699,0.372223213689606,0.461050389899348 +4.35,0.392883707306245,0.854968084983312,1.578640832414,1.20945987557343,-1.29147757634224,0.372393677922137,0.461320050042163 +4.352,0.393035798298569,0.854933942404633,1.57860291610034,1.20922885012659,-1.29136977098939,0.372533505672584,0.461557218058453 +4.354,0.39317559398249,0.854897183149612,1.57857068122405,1.20899815827959,-1.29123630617124,0.372700922982175,0.461822059144682 +4.356,0.393312993735805,0.854858328967139,1.57853696212859,1.20876435717357,-1.29110019076059,0.372875101675875,0.462092739654463 +4.358,0.39345054982825,0.854818170030666,1.57850092094102,1.20852696321006,-1.29096481059166,0.37304945343366,0.462364491179079 +4.36,0.393588880665286,0.854777478911255,1.57846324770742,1.20828630149545,-1.29083063147684,0.3732223960291,0.462636102318587 +4.362,0.393739630956046,0.854742937188679,1.57842491596929,1.20805332228039,-1.2907215096062,0.373364109845769,0.462875206934347 +4.364,0.393878382251024,0.854705694915978,1.57839171859615,1.20781976458237,-1.29058714618562,0.373532795735727,0.463141917369878 +4.366,0.394015041013785,0.854666464778036,1.57835681730744,1.20758245204528,-1.29045047485642,0.373707731866148,0.463414348723082 +4.368,0.394152146032372,0.854626145445782,1.57831958966711,1.20734117962149,-1.29031479374274,0.373882427320507,0.463687697950012 +4.37,0.394290289563852,0.854585548356275,1.57828084032883,1.20709653021312,-1.29018049298559,0.374055406764937,0.463960731988449 +4.372,0.39442954722046,0.854545261212378,1.57824144959597,1.20684932105144,-1.29004739839949,0.374226570682686,0.464233104160859 +4.374,0.394581411496255,0.85451170159405,1.57820218142986,1.20661077998227,-1.2899392283665,0.374366548354955,0.464472662835917 +4.376,0.394721335656961,0.854475778350327,1.57816855106309,1.2063728212493,-1.28980560092193,0.374533664941863,0.464739667601287 +4.378,0.394859187853128,0.854437995527164,1.57813347728776,1.20613229385432,-1.28966948106243,0.374707280935835,0.465012301387681 +4.38,0.394997474824837,0.854399098593542,1.57809616925404,1.20588895366695,-1.28953419898419,0.374880922805336,0.465285814419408 +4.382,0.395136763047501,0.854359799870884,1.57805733595017,1.20564328538477,-1.28940017331642,0.375053112590804,0.465559016637922 +4.384,0.395277109534771,0.854320632852574,1.5780178176371,1.20539596277284,-1.28926725413176,0.375223736414628,0.465831590639882 +4.386,0.395430019353901,0.854287986015269,1.57797837812814,1.20515804261621,-1.28915920288076,0.375363408310295,0.466071370679049 +4.388,0.395570892664597,0.854252779438692,1.57794455197675,1.20492127891804,-1.2890256034867,0.375530399584026,0.466338664344303 +4.39,0.395709610355688,0.85421553136294,1.57790927620294,1.20468230962328,-1.28888945370454,0.375704060318461,0.46661164481184 +4.392,0.395848688175249,0.85417700805892,1.57787177970082,1.2044407086073,-1.28875410241636,0.375877876797666,0.466885545413944 +4.394,0.395988700274023,0.854137944920714,1.57783278832404,1.20419680416661,-1.28861998019633,0.376050331624894,0.467159160203105 +4.396,0.396141317034116,0.85410495807961,1.5777933016565,1.20396150597294,-1.28851097831753,0.37619166715691,0.467400055480595 +4.398,0.396281947172941,0.854069183620504,1.57775912093116,1.20372653802015,-1.28837663413199,0.376360040738755,0.467668484728108 +4.4,0.396420502341419,0.854031297195539,1.5777233839915,1.20348853315151,-1.28823992587762,0.376534808485439,0.467942565449202 +4.402,0.396559511724055,0.853992169408349,1.57768544501351,1.20324712222577,-1.28810417062465,0.376709471206137,0.468217487490258 +4.404,0.3966995541436,0.853952595041737,1.57764609622931,1.20300273555659,-1.28796976292344,0.37688252648164,0.468492021911681 +4.406,0.396840691686573,0.8539131543257,1.57760620426731,1.20275604084574,-1.28783653555542,0.377053858041046,0.468765824596064 +4.408,0.396994475552047,0.853880243109236,1.57756653104103,1.20251813380852,-1.28772827792704,0.377194092208463,0.469006668008511 +4.41,0.397136219245192,0.85384480805824,1.57753258848317,1.20228087999947,-1.28759447102214,0.377361460268352,0.469274943622731 +4.412,0.397275826557547,0.853807367867785,1.57749726812062,1.20204095579417,-1.28745814241001,0.377535365212784,0.469548826891166 +4.414,0.397415821736214,0.853768687695828,1.5774597564386,1.20179801335399,-1.28732265240374,0.377709304744639,0.469823551989952 +4.416,0.397556780966332,0.853729504104783,1.57742075159231,1.20155247694734,-1.28718842971464,0.377881766481055,0.470097925539848 +4.418,0.397698766662785,0.85369037575722,1.57738108163703,1.20130498461179,-1.28705533247321,0.378052622691344,0.470371627649354 +4.42,0.397853357213719,0.853657693087407,1.57734150912568,1.20106658680185,-1.28694719132763,0.378192495604064,0.470612413768713 +4.422,0.397995824015249,0.853622430033858,1.57730756692286,1.20082911727021,-1.28681344774967,0.378359578832006,0.47088072303249 +4.424,0.398136090635572,0.853585127371325,1.57727216604169,1.20058916509254,-1.28667715659173,0.378533285852728,0.471154721392476 +4.426,0.398276694332465,0.853546572306682,1.57723451496167,1.20034631341067,-1.28654169027609,0.37870709670462,0.471429627672446 +4.428,0.398418220426689,0.853507520106343,1.57719533230713,1.20010092789364,-1.28640748260065,0.378879482116086,0.471704234569622 +4.43,0.398572412453129,0.853474578955752,1.57715562010214,1.19986396814222,-1.28629849234107,0.379020712980412,0.471946025720515 +4.432,0.398714548592505,0.853438926957225,1.57712118482272,1.19962727900661,-1.28616410913394,0.379188883272163,0.472215386747167 +4.434,0.39885458034408,0.853401248177002,1.57708514422476,1.19938746845644,-1.28602736548919,0.379363426806976,0.472490426206359 +4.436,0.39899505589183,0.853362419264556,1.57704684348879,1.19914419140436,-1.28589159495089,0.379537838448489,0.472766322417326 +4.438,0.399136560653237,0.853323237991641,1.57700707147939,1.19889790968882,-1.28575719682618,0.379710622673293,0.473041838985027 +4.44,0.399279159428769,0.853284285339567,1.57696669935417,1.19864932611046,-1.28562399915121,0.379881662741382,0.473316634095436 +4.442,0.399422773255741,0.853245902774109,1.57692633950291,1.19839919739614,-1.28549173317055,0.380051195900858,0.473590611547729 +4.444,0.399567280722066,0.853208228227068,1.57688632540813,1.19814825618161,-1.28536014589853,0.380219522112958,0.473863768831034 +4.446,0.399712546769949,0.853171251771367,1.5768467738619,1.1978971595939,-1.28522903269234,0.380386936043513,0.474136152881084 +4.448,0.399858435419436,0.853134873252263,1.57680766781731,1.19764646124064,-1.28509823577368,0.380553694674942,0.47440784748925 +4.45,0.400016530343241,0.853104970678445,1.57676908355884,1.19740696352111,-1.28499177919819,0.380690447404291,0.474646720734263 +4.452,0.400161979641195,0.853072233644923,1.57673611234999,1.19717021220415,-1.28485913239989,0.380855224616953,0.474913440899891 +4.454,0.400304760806717,0.853037044859468,1.57670141448147,1.19693232374087,-1.2847235407424,0.381027371029028,0.475186226557206 +4.456,0.400447463073421,0.853000149170288,1.57666411611639,1.1966924380316,-1.28458850673465,0.381200218746891,0.475460305678653 +4.458,0.40059072326291,0.85296233366789,1.57662495591701,1.19645050319718,-1.28445455656089,0.381372107796144,0.475734448937343 +4.46,0.400734664871095,0.852924242668975,1.57658485219511,1.19620673929995,-1.28432161106014,0.381542767644876,0.47600828700057 +4.462,0.400891009424244,0.852892329180239,1.57654467201697,1.19597185162177,-1.28421362921763,0.381682731138064,0.476249408391988 +4.464,0.401034919984473,0.852857690322732,1.57651004416435,1.19573748939769,-1.2840799051828,0.381850000801246,0.476518349154384 +4.466,0.40117641920083,0.852820935206877,1.57647391689383,1.1954999563878,-1.28394358808134,0.382023988879367,0.476793197174612 +4.468,0.401318113494859,0.852782902908198,1.57643552494495,1.19525869085871,-1.28380809325027,0.382198088078049,0.477069099244682 +4.47,0.401460637481614,0.852744384449615,1.57639560051959,1.19501399975722,-1.28367387742865,0.38237071106347,0.477344793314213 +4.472,0.401604099822568,0.852705975077152,1.57635499412106,1.19476648392938,-1.28354081002641,0.382541667901992,0.477619914589573 +4.474,0.401748461331547,0.852668042548485,1.57631431869747,1.19451684597764,-1.28340865154763,0.382711139789609,0.477894344406878 +4.476,0.40189363629603,0.852630755909311,1.5762739188995,1.1942658068971,-1.28327716869792,0.382879385705683,0.478168058345878 +4.478,0.402039520940146,0.852594135987056,1.57623392632111,1.19401404823631,-1.28314616897198,0.383046672495847,0.478441082952582 +4.48,0.402186005887836,0.852558109731447,1.57619433810402,1.19376217661531,-1.28301550111494,0.383213240864756,0.478713483921718 +4.482,0.402344760558769,0.852528552840174,1.57615524817014,1.19352107278226,-1.28290925523871,0.383349756303111,0.478953034760249 +4.484,0.402490825546907,0.852496200381543,1.5761217682882,1.19328243680157,-1.28277676281719,0.383514183114044,0.479220515397987 +4.486,0.402634227296072,0.852461443762506,1.57608654768009,1.193042408511,-1.28264132075355,0.383685937413099,0.479494121557799 +4.488,0.402777581308512,0.852425032499598,1.57604870698469,1.19280019763677,-1.28250644866572,0.383858352463332,0.479769057809187 +4.49,0.40292153743153,0.852387755172876,1.57600898598579,1.19255583253983,-1.2823726741945,0.384029773382183,0.480044082060803 +4.492,0.403066225204802,0.852350254500916,1.57596830602016,1.19230961025458,-1.28223991425856,0.384199940468052,0.48031881896317 +4.494,0.403223432132805,0.85231895510285,1.57592754284238,1.19207230832823,-1.28213218600243,0.384339422362714,0.480560774589253 +4.496,0.403368196027879,0.852284978348508,1.57589234086203,1.19183569896277,-1.28199864101072,0.384506167728037,0.480830608171399 +4.498,0.403510573304108,0.852248924863602,1.57585563407243,1.19159605813061,-1.28186247752699,0.384679665036524,0.48110639283641 +4.5,0.403653184165659,0.85221162566993,1.57581665093663,1.1913528293856,-1.28172712787143,0.38485330714462,0.481383257846354 +4.502,0.403796666412093,0.852173864461296,1.57577612554849,1.19110632780984,-1.28159305167417,0.385025505971008,0.481659932050565 +4.504,0.403941127356595,0.852136229309639,1.57573491291037,1.19085715680795,-1.28146011698091,0.385196073054341,0.48193604643959 +4.506,0.404086524677011,0.852099080933969,1.57569363050983,1.19060601438541,-1.28132808216478,0.385365191102556,0.482211480095046 +4.508,0.404232768912497,0.85206258168746,1.57565262682259,1.19035361038796,-1.28119671224427,0.385533119448246,0.482486206954944 +4.51,0.40437975242373,0.852026746287761,1.57561203653703,1.1901006099889,-1.28106581374142,0.385700123836133,0.482760252109401 +4.512,0.40452736212784,0.851991496318459,1.57557185924646,1.18984759973466,-1.2809352351927,0.385866442512927,0.483033679779026 +4.514,0.404675485545744,0.851956705900618,1.57553202176425,1.18959505992883,-1.28080486585353,0.386032288081502,0.483306575758581 +4.516,0.404824016572005,0.851922236658547,1.57549242884496,1.18934335499264,-1.28067462440218,0.386197835460047,0.483579038607157 +4.518,0.404972857990912,0.851887959494705,1.57545298934333,1.18909272786597,-1.28054445498208,0.386363231392657,0.483851164544044 +4.52,0.405121924420249,0.851853767130777,1.57541363379905,1.1888433092508,-1.28041431717432,0.386528585991564,0.48412304351196 +4.522,0.405271142378885,0.851819577886829,1.57537431509432,1.18859512694455,-1.28028418482028,0.386693984400504,0.484394750326431 +4.524,0.405420451229819,0.851785335528086,1.57533500896738,1.18834812559263,-1.28015403908945,0.38685948008197,0.484666346800034 +4.526,0.405569801781034,0.851751005319135,1.57529570523008,1.18810218238633,-1.28002386987135,0.387025107633719,0.48493787799653 +4.528,0.405719156240201,0.85171657010225,1.57525640461436,1.18785712945627,-1.27989367075554,0.387190876984701,0.485209377944618 +4.53,0.405868486242796,0.851682025352309,1.5752171101793,1.18761276922479,-1.27976344158648,0.38735678665407,0.485480868054445 +4.532,0.406017772514896,0.851647375917288,1.57517782642911,1.18736889411251,-1.27963318410087,0.387522818200198,0.485752363692364 +4.534,0.406167002819303,0.851612632524062,1.57513855379429,1.18712529763226,-1.27950290470336,0.387688949283425,0.486023872613815 +4.536,0.406316171643263,0.851577810152182,1.57509929073975,1.18688178884172,-1.27937261015489,0.387855147718721,0.486295400959437 +4.538,0.406465278242019,0.851542925996839,1.57506003067748,1.18663819775222,-1.27924231030239,0.388021383824179,0.486566950864106 +4.54,0.406614326450468,0.851507998965253,1.57502076576152,1.18639438405722,-1.27911201377867,0.388187623634156,0.486838525536194 +4.542,0.406763322871395,0.851473048402537,1.57498148476509,1.18615023712391,-1.27898173079842,0.388353840248103,0.487110126039361 +4.544,0.406912276844345,0.851438094045532,1.57494217724796,1.18590567983861,-1.27885146902648,0.388520006000529,0.487381755671056 +4.546,0.407061198801659,0.851403154987556,1.57490283138136,1.18566066440707,-1.27872123660954,0.388686102771919,0.487653416211255 +4.548,0.407210100423021,0.851368249742087,1.57486343780685,1.1854151727947,-1.27859103833552,0.388852113162769,0.487925111915982 +4.55,0.407358993184813,0.851333395264859,1.57482398703537,1.18516920993212,-1.27846087897326,0.389018029931475,0.488196845511322 +4.552,0.407507888725472,0.851298607073211,1.57478447286214,1.18492280237092,-1.27833075972969,0.389183846391036,0.488468622033467 +4.554,0.407656797603766,0.851263898354768,1.57474488936964,1.18467599045025,-1.27820068185629,0.389349565253363,0.488740444739019 +4.556,0.407805729879911,0.85122928021192,1.57470523401999,1.18442882659473,-1.27807064332324,0.389515188550174,0.489012318912143 +4.558,0.407954694073732,0.851194760935029,1.57466550442549,1.18418136769258,-1.27794064258776,0.389680726189464,0.489284247772138 +4.56,0.408103697937849,0.851160346435447,1.57462570128213,1.18393367407524,-1.27781067537208,0.389846185698202,0.489556236297513 +4.562,0.40825274757985,0.851126039720934,1.57458582505363,1.18368580292263,-1.27768073848001,0.390011580754008,0.489828287163929 +4.564,0.408401848379956,0.851091841524968,1.57454587885992,1.1834378085075,-1.27755082657911,0.390176920986465,0.490100404602089 +4.566,0.408551004223744,0.851057749964485,1.57450586515887,1.18318973699253,-1.27742093597808,0.390342220666221,0.490372590379862 +4.568,0.408700218505741,0.851023761323227,1.57446578864459,1.18294162809798,-1.2772910613488,0.390507488713154,0.490644847698886 +4.57,0.408849493415367,0.85098986983374,1.57442565296066,1.18269351127435,-1.27716119941566,0.390672737634353,0.490917177226658 +4.572,0.408998830970707,0.850956068548044,1.57438546362546,1.18244540862769,-1.27703134559098,0.390837973798268,0.491189581030856 +4.574,0.409148232308406,0.850922349174079,1.57434522478403,1.1821973321904,-1.27690149756304,0.391003206633679,0.491462058660875 +4.576,0.409297698704582,0.850888702966115,1.57430494216198,1.18194928774579,-1.27677165184814,0.39116843915681,0.491734611113669 +4.578,0.409447230834524,0.850855120553242,1.57426461985403,1.18170127279214,-1.27664180728919,0.391333677387297,0.492007236957761 +4.58,0.409596829754789,0.85082159279516,1.57422426330454,1.18145328084372,-1.27651196154561,0.39149892106882,0.492279936319618 +4.582,0.409746496115509,0.850788110557038,1.5741838761299,1.18120529967355,-1.27638211452794,0.391664173228782,0.492552707037972 +4.584,0.409896231094391,0.850754665494796,1.5741434631245,1.1809573157057,-1.27625226485381,0.39182943101307,0.492825548656963 +4.586,0.410046035559221,0.850721249749485,1.57410302711515,1.18070931219594,-1.27612241324719,0.391994695310696,0.493098458596197 +4.588,0.410195910957568,0.8506878566443,1.57406257199215,1.18046127343116,-1.27599255898743,0.39215996162532,0.493371436136885 +4.59,0.410345858437545,0.850654480288573,1.57402209959455,1.18021318262446,-1.27586270329822,0.392325229697974,0.493644478593856 +4.592,0.410495879705107,0.85062111618391,1.57398161276575,1.17996502576257,-1.27573284581015,0.392490494354566,0.493917585283444 +4.594,0.410645976116624,0.850587760741235,1.57394111226805,1.1797167891165,-1.27560298795686,0.392655755081176,0.494190753686867 +4.596,0.41079614951887,0.850554411804737,1.57390059986136,1.1794684626951,-1.27547312946335,0.392821006810085,0.494463983392652 +4.598,0.410946401328075,0.850521068094766,1.57386007524431,1.17922003737764,-1.27534327175811,0.392986249425778,0.494737272245253 +4.6,0.411096733366943,0.850487729665654,1.57381953915334,1.17897150802093,-1.27521341449102,0.393151478475467,0.49501062025919 +4.602,0.411247146942756,0.850454397292853,1.57377899032666,1.17872287029145,-1.27508355896293,0.393316694604512,0.495284025751269 +4.604,0.41139764369249,0.850421072884496,1.57373842861935,1.17847412352577,-1.27495370467068,0.39348189419627,0.495557489227465 +4.606,0.411548224668673,0.850387758833461,1.57369785198531,1.17822526737424,-1.27482385274993,0.393647078750069,0.49583100950083 +4.608,0.411698891199234,0.850354458403357,1.57365725960277,1.17797630453114,-1.27469400254124,0.39381224546731,0.49610458755492 +4.61,0.41184964398549,0.850321175065792,1.57361664886848,1.17772723730384,-1.27456415503915,0.393977396592457,0.496378222651971 +4.612,0.412000483979005,0.850287912879983,1.57357601852724,1.17747807031817,-1.27443430947194,0.394142529967351,0.4966519161782 +4.614,0.412151411492191,0.850254675833101,1.57353536567193,1.17722880710626,-1.27430446674955,0.394307648356709,0.496925667748051 +4.616,0.412302427090981,0.850221468229583,1.57349468887037,1.17697945286464,-1.27417462605027,0.394472749991804,0.497199479037087 +4.618,0.412453530715702,0.850188294048762,1.57345398516495,1.17673001112162,-1.27404478826151,0.39463783789844,0.497473349888173 +4.62,0.412604722586113,0.850155157355872,1.57341325319042,1.17648048659137,-1.27391495256865,0.394802910446469,0.497747282137192 +4.622,0.412756002328651,0.850122061686827,1.57337249016757,1.17623088194772,-1.27378511988476,0.394967970692229,0.498021275726283 +4.624,0.412907369889417,0.850089010488482,1.57333169500661,1.17598120078536,-1.27365528943929,0.395133016943937,0.498295332526538 +4.626,0.413058824663492,0.850056006535974,1.57329086529063,1.17573144449823,-1.27352546219531,0.395298052124089,0.498569452462144 +4.628,0.413210366411555,0.850023052405463,1.57325000036079,1.17548161533495,-1.27339563743794,0.395463074354368,0.498843637332899 +4.63,0.413361994387423,0.849990149925306,1.57320909828698,1.1752317133605,-1.27326581617965,0.395628086337927,0.499117886951653 +4.632,0.413513708254823,0.849957300680647,1.57316815893311,1.17498173957854,-1.27313599774985,0.395793085962344,0.49939220296811 +4.634,0.413665507210305,0.849924505496149,1.5731271809143,1.17473169294605,-1.2730061831902,0.395958075697862,0.499666585020575 +4.636,0.413817390897854,0.84989176496868,1.57308616464244,1.17448157353063,-1.27287637184779,0.396123053213674,0.499941034561307 +4.638,0.413969358525512,0.849859078976603,1.57304510927126,1.174231379547,-1.27274656476271,0.396288020786328,0.500215551022384 +4.64,0.414121409776725,0.849826447234523,1.57300401572426,1.17398111052062,-1.27261676126724,0.39645297592328,0.500490135641949 +4.642,0.414273543920113,0.849793868822334,1.57296288363036,1.17373076432045,-1.27248696236811,0.396617920775535,0.500764787643114 +4.644,0.414425760717476,0.849761342754672,1.57292171433776,1.17348034030768,-1.27235716735356,0.396782852762676,0.501039508059791 +4.646,0.414578059526997,0.849728867522013,1.57288050784421,1.17322983634807,-1.27222737717193,0.396947773984865,0.501314295927037 +4.648,0.414730440208567,0.849696441667059,1.57283926580106,1.17297925193383,-1.27209759104783,0.397112681844886,0.501589152104787 +4.65,0.414882902221242,0.849664063330185,1.5727979884426,1.17272858516797,-1.2719678098579,0.397277578456349,0.501864075477794 +4.652,0.415035445526947,0.849631730825367,1.57275667758495,1.17247783585613,-1.27183803275637,0.397442461260049,0.502139066775506 +4.654,0.415188069683256,0.849599442183036,1.57271533355881,1.17222700246317,-1.27170826054804,0.397607332427068,0.502414124779761 +4.656,0.41534077474664,0.849567195719221,1.57267395820747,1.17197608517828,-1.27157849232284,0.397772189468496,0.502689250139143 +4.658,0.415493560361656,0.849534989570195,1.57263255182678,1.17172508284941,-1.27144872882537,0.397937034633677,0.502964441582795 +4.66,0.415646426664805,0.849502822250059,1.57259111616575,1.17147399602877,-1.27131896909755,0.398101865513754,0.503239699727839 +4.662,0.415799373371058,0.849470692173278,1.57254965137649,1.17122282389323,-1.27118921384369,0.398266684436347,0.503515023297998 +4.664,0.41595240067919,0.849438598197764,1.57250815901978,1.17097156727886,-1.27105946208012,0.398431489064271,0.503790412922995 +4.666,0.41610550835634,0.849406539133262,1.57246663902671,1.17072022559547,-1.27092971449463,0.398596281788443,0.504065867361056 +4.668,0.416258696645436,0.849374514268858,1.57242509271019,1.17046879985795,-1.27079997010191,0.39876106032347,0.50434138728958 +4.67,0.416411965348252,0.849342522867026,1.57238351973874,1.17021728960195,-1.27067022959642,0.39892582710059,0.50461697153101 +4.672,0.416565314735296,0.849310564676212,1.572341921154,1.16996569591775,-1.27054049201273,0.399090579861766,0.504892620834421 +4.674,0.416718744627631,0.849278639411949,1.57230029635584,1.16971401837164,-1.27041075807098,0.399255321054117,0.505168334104619 +4.676,0.416872255309395,0.849246747256603,1.57225864612475,1.16946225804569,-1.27028102684164,0.399420048423788,0.505444112174655 +4.678,0.417025846608504,0.849214888330197,1.57221696961689,1.16921041446701,-1.27015129908314,0.399584764412824,0.505719954038328 +4.68,0.417179518811851,0.84918306318042,1.57217526738937,1.16895848865446,-1.27002157391084,0.399749466753585,0.505995860613902 +4.682,0.417333271744894,0.849151272246598,1.57213353840318,1.16870648005585,-1.26989185212672,0.399914157868465,0.506271830980451 +4.684,0.417487105689497,0.8491195163436,1.57209178304915,1.16845438960089,-1.26976213289275,0.400078835465141,0.506547866133277 +4.686,0.417641020462355,0.84908779612271,1.57205000015642,1.1682022166451,-1.26963241705284,0.40024350193906,0.506823965224698 +4.688,0.417795016335389,0.849056112553155,1.57200819001667,1.16794996202718,-1.26950270381094,0.400408154969429,0.507100129311789 +4.69,0.417949093112939,0.849024466383491,1.57196635139587,1.16769762501762,-1.26937299404571,0.400572796924067,0.507376357602307 +4.692,0.418103251054604,0.848992858624137,1.57192448455471,1.16744520637842,-1.2692432869938,0.400737425455773,0.507652651195436 +4.694,0.418257489951105,0.848961290012389,1.57188258826167,1.16719270531428,-1.26911358355781,0.400902042908999,0.507929009333541 +4.696,0.418411810049466,0.848929761498696,1.57184066280777,1.16694012253276,-1.26898388299521,0.401066646916115,0.508205433136569 +4.698,0.418566211127447,0.848898273717638,1.57179870701969,1.16668745719626,-1.26885418622014,0.401231239805334,0.508481921860275 +4.7,0.418720693420947,0.848866827479811,1.57175672126756,1.16643470998116,-1.26872449249849,0.401395819196416,0.508758476624847 +4.702,0.418875256696897,0.848835423250187,1.57171470447719,1.16618188002952,-1.26859480274387,0.401560387409341,0.509035096680118 +4.704,0.41902990118277,0.848804061646536,1.57167265713044,1.1659289680062,-1.26846511621929,0.401724942059101,0.509311783128854 +4.706,0.419184626637826,0.848772742925641,1.57163057827618,1.16567597304977,-1.26833543382763,0.401889485464771,0.509588535199324 +4.708,0.419339433284605,0.848741467488269,1.57158846852323,1.16542289582737,-1.26820575482016,0.402054015243146,0.509865353963525 +4.71,0.419494320878402,0.848710235372845,1.57154632705034,1.16516973548469,-1.26807608008163,0.402218533718028,0.510142238617316 +4.712,0.419649289640639,0.84867904676621,1.57150415459208,1.16491649269872,-1.26794640884576,0.402383038512599,0.510419190193685 +4.714,0.419804339326459,0.848647901503662,1.5714619504486,1.16466316662714,-1.26781674197504,0.402547531958893,0.510696207850486 +4.716,0.419959470159862,0.848616799584137,1.57141971546524,1.16440975795926,-1.26768707868309,0.402712011688903,0.510973292578708 +4.718,0.420114681899316,0.848585740675066,1.57137744904298,1.16415626586525,-1.26755741980919,0.402876480044304,0.511250443497698 +4.72,0.420269974774584,0.848554724630258,1.57133515211287,1.16390269104585,-1.26742776454734,0.40304093466638,0.511527661558264 +4.722,0.420425348550267,0.848523750997775,1.57129282414824,1.16364903268178,-1.26729811371531,0.403205377906131,0.511804945845158 +4.724,0.420580803464255,0.848492819538698,1.57125046613502,1.1633952914826,-1.26716846649036,0.403369807413128,0.512082297274744 +4.726,0.420736339289148,0.848461929736212,1.57120807758679,1.16314146663674,-1.2670388236726,0.403534225546174,0.512359714904445 +4.728,0.420891956272314,0.848431081313535,1.57116565951203,1.16288755885981,-1.26690918442704,0.403698629961201,0.512637199624655 +4.73,0.421047654195162,0.848400273742611,1.57112321143291,1.1626335673454,-1.26677954954112,0.403863023022645,0.51291475047482 +4.732,0.421203433314802,0.848369506759756,1.57108073435041,1.16237949281298,-1.266649918173,0.404027402390479,0.513192368329261 +4.734,0.421359293421191,0.848338779872698,1.57103822776755,1.16212533445962,-1.26652029110292,0.404191770432435,0.513470052219572 +4.736,0.42151523478043,0.848308092872893,1.57099569265298,1.16187109300745,-1.26639066748761,0.404356124810241,0.513747803014046 +4.738,0.421671257189818,0.848277445340092,1.57095312846916,1.16161676765624,-1.26626104810534,0.404520467892786,0.514025619746111 +4.74,0.421827360922845,0.848246837150721,1.5709105361347,1.16136235913047,-1.26613143211626,0.404684797341594,0.51430350328711 +4.742,0.421983545782219,0.848216267979608,1.57086791505783,1.16110786663255,-1.26600182030112,0.404849115524991,0.514581452680566 +4.744,0.422139812046626,0.8481857378043,1.57082526609752,1.16085329088943,-1.26587221182738,0.405013420102827,0.51485946880813 +4.746,0.422296159521803,0.848155246404,1.57078258860209,1.16059863110644,-1.26574260748153,0.405177713441659,0.515137550729559 +4.748,0.422452588489149,0.848124793860083,1.57073988336908,1.16034388801321,-1.26561300644099,0.405341993198726,0.515415699341736 +4.75,0.422609098754914,0.848094380052673,1.57069714968877,1.16008906081809,-1.26548340949991,0.405506261738129,0.515693913724301 +4.752,0.422765690600739,0.848064005157925,1.57065438830239,1.15983415025341,-1.26535381584695,0.405670516714048,0.51597219479175 +4.754,0.422922363831023,0.848033669142937,1.57061159845013,1.1595791555303,-1.26522422628462,0.405834760487901,0.516250541644744 +4.756,0.42307911872546,0.848003372260563,1.5705687808273,1.15932407738327,-1.26509464001284,0.40599899071077,0.516528955215335 +4.758,0.423235955084637,0.8479731145435,1.57052593463633,1.15906891502552,-1.26496505784192,0.406163209741516,0.516807434624062 +4.76,0.423392873184605,0.847942896297501,1.57048306054041,1.15881366919278,-1.26483547898204,0.406327415228394,0.51708598081841 +4.762,0.423549872820744,0.847912717595497,1.57044015771891,1.15855833909918,-1.26470590424989,0.406491609528087,0.517364592935832 +4.764,0.423706954264386,0.847882578770053,1.57039722681798,1.15830292548038,-1.26457633286411,0.406655790286496,0.517643271935584 +4.766,0.423864117304963,0.847852479908339,1.57035426700907,1.15804742755007,-1.26444676564567,0.406819959858656,0.517922016967835 +4.768,0.42402136220868,0.847822421344553,1.57031127893594,1.15779184604244,-1.26431720181943,0.406984115888697,0.518200828999038 +4.77,0.424178688758935,0.847792403156404,1.5702682617759,1.15753618016936,-1.26418764220829,0.407148260730607,0.518479707187288 +4.772,0.424336097217025,0.847762425658065,1.57022521618298,1.15728043066227,-1.2640580860409,0.407312392027358,0.518758652501379 +4.774,0.424493587360811,0.847732488898626,1.57018214135157,1.1570245967301,-1.26392853413971,0.407476512132498,0.519037664102563 +4.776,0.424651159447421,0.847702593155935,1.57013903795551,1.15676867910065,-1.26379898573491,0.407640618688431,0.519316742957408 +4.778,0.424808813250128,0.847672738437269,1.57009590521405,1.15651267697916,-1.26366944164636,0.407804714048817,0.519595888226082 +4.78,0.424966549023011,0.847642924974195,1.57005274382674,1.15625659108933,-1.26353990110384,0.407968795856018,0.519875100869114 +4.782,0.425124366535994,0.847613152725502,1.57000955304171,1.15600042063257,-1.26341036492296,0.40813286646428,0.520154380042269 +4.784,0.425294642412589,0.847589153791948,1.56996650100327,1.15575459841905,-1.26330564003316,0.408267597783293,0.520400618254682 +4.786,0.425451356085549,0.847562143944356,1.56992901954513,1.15551107819718,-1.26317383783466,0.408430126458777,0.520675755496237 +4.788,0.425604961240429,0.847532611147897,1.56988965974112,1.15526506695667,-1.26303881386441,0.408600319848773,0.52095771098426 +4.79,0.425758313721403,0.847501394851499,1.56984751700484,1.15501540583811,-1.26290433207949,0.408771314287123,0.521241429729488 +4.792,0.425912202727829,0.847469359141386,1.569803364894,1.15476201770348,-1.26277100517958,0.408941285871541,0.521525512759323 +4.794,0.426066845545763,0.847437198942634,1.56975815934232,1.1545052401352,-1.26263877916917,0.409109886126595,0.521809487732776 +4.796,0.42623468841306,0.847411102530102,1.56971279488091,1.15425604756013,-1.26253228128281,0.409247856891362,0.522060006413535 +4.798,0.426389649501752,0.847382556423654,1.56967315628113,1.1540070571892,-1.26239935436378,0.409412481686962,0.52233895546116 +4.8,0.426542147478523,0.847352134056625,1.56963198977548,1.15375412063369,-1.2622636872099,0.409583852102054,0.522624204473024 +4.802,0.426694978173933,0.84732064627322,1.56958842990343,1.1534967210604,-1.26212890331946,0.40975530093826,0.522910699942353 +4.804,0.426848857173035,0.847288862540159,1.56954320289638,1.15323536863545,-1.26199550472956,0.40992518791863,0.523197083918379 +4.806,0.427003922577788,0.847257354549745,1.56949718209104,1.15297090149756,-1.26186335389236,0.410093331289498,0.523482948919577 +4.808,0.427172565010214,0.847232172604924,1.56945117538844,1.15271469281572,-1.2617570405206,0.410230627854508,0.523734988272862 +4.81,0.42732858149824,0.847204706146377,1.56941101307552,1.15245967025693,-1.26162430930579,0.410394458006254,0.524015215858523 +4.812,0.427482334364246,0.847175433324214,1.56936938751592,1.15220183471262,-1.26148883479569,0.410565035740343,0.524301558426219 +4.814,0.427636563575451,0.847145091884227,1.56932540607155,1.15194073735036,-1.26135422356539,0.410735766345103,0.524589010288766 +4.816,0.42779193342017,0.847114398328708,1.5692797880012,1.15167687681053,-1.26122096199545,0.410905059717787,0.5248762524372 +4.818,0.427960980036392,0.847089586092379,1.56923357306711,1.15142145383884,-1.26111377656747,0.411043463453033,0.525129705297568 +4.82,0.428117484307762,0.84706223545304,1.56919288407289,1.1511672988885,-1.26098035795539,0.411208260673083,0.525411345708487 +4.822,0.428271814193542,0.847032957616288,1.56915062871637,1.15091030160444,-1.26084435374321,0.411379682225543,0.525699047827969 +4.824,0.428426702568335,0.847002577182014,1.56910605782324,1.1506499445772,-1.26070933069413,0.411551138991496,0.52598777035212 +4.826,0.428582800115727,0.846971856488536,1.56905996383622,1.15038668095515,-1.26057574164387,0.411721058954279,0.526276169043022 +4.828,0.428740186195173,0.846941347444456,1.56901325094709,1.15012124893632,-1.26044340881145,0.411889296890014,0.526563857031558 +4.83,0.42889877584567,0.846911366108233,1.56896656445763,1.14985444585926,-1.26031204155588,0.412056084291767,0.526850719994111 +4.832,0.429058433342177,0.846882029016813,1.56892026290447,1.14958703647514,-1.2601813644462,0.4122217223973,0.527136747568444 +4.834,0.429219005678636,0.84685330969463,1.56887448100098,1.14931969653913,-1.26005115389298,0.412386507827724,0.527421983464632 +4.836,0.429380337704522,0.84682509644774,1.56882921404764,1.14905298329658,-1.25992123827227,0.412550697889196,0.527706509715264 +4.838,0.429554761621737,0.846802916653705,1.56878454048458,1.14879776079663,-1.25981641025005,0.412685226267029,0.527957170080729 +4.84,0.429715911911643,0.846777906980616,1.56874585287353,1.14854637383978,-1.25968446171921,0.412847290102756,0.528236257350782 +4.842,0.429874175693818,0.846750411161664,1.5687055654602,1.14829404732435,-1.25954927825181,0.413016999471832,0.528521756297988 +4.844,0.430032327888415,0.846721156599364,1.56866268043294,1.14803960380581,-1.25941462226745,0.413187572527972,0.52880867837139 +4.846,0.430191077056107,0.846690928152236,1.56861791268948,1.14778287110371,-1.25928109687537,0.413357244841463,0.529095689293106 +4.848,0.430350571234104,0.84666037212365,1.56857218767881,1.1475240286171,-1.25914863662492,0.413525693718898,0.529382377812126 +4.85,0.430523305403439,0.846635597538656,1.56852636949826,1.14727385477648,-1.25904197329631,0.413663715049825,0.529635290783506 +4.852,0.430682948047198,0.846608162764521,1.56848639699396,1.14702484380239,-1.2589087176918,0.413828469998434,0.529916594940525 +4.854,0.430839944187693,0.846578643962299,1.5684449673193,1.14677247649351,-1.25877265112209,0.414000137017715,0.530204142879936 +4.856,0.430997095879252,0.846547869406436,1.56840119016537,1.14651595671062,-1.25863744108401,0.414172002500011,0.530492869244104 +4.858,0.431155117264633,0.846516634642717,1.56835577675351,1.14625555938628,-1.25850361295996,0.414342385313126,0.530781412419699 +4.86,0.431314147272429,0.846485542927771,1.56830959135143,1.14599193123437,-1.25837104119995,0.414511055842885,0.531069370603233 +4.862,0.431486685469772,0.846460622053153,1.5682634158211,1.14573630579608,-1.25826443653908,0.414648916727136,0.531323289913147 +4.864,0.43164633051901,0.846433372175252,1.56822313149261,1.14548161280814,-1.25813131971659,0.414813198626819,0.531605435878311 +4.866,0.431803512620295,0.84640429656428,1.56818137356575,1.14522365727352,-1.25799546188614,0.414984195173914,0.531893698535779 +4.868,0.431961010949253,0.846374160752736,1.5681372174908,1.14496191631272,-1.25786051238813,0.41515527344197,0.532183049060943 +4.87,0.432119513462411,0.846343708397915,1.56809136411732,1.1446968715588,-1.25772697542069,0.415324822663061,0.532472159065404 +4.872,0.432279132459027,0.846313500225823,1.56804468382334,1.14442930761909,-1.25759470476083,0.4154926728897,0.532760653588928 +4.874,0.43243981304792,0.846283876382154,1.56799782384399,1.14416007909381,-1.2574634273316,0.415659042341006,0.533048423063017 +4.876,0.432614002913169,0.846260620301625,1.56795130921452,1.14390046862664,-1.25735786980471,0.415794972322182,0.533302089726444 +4.878,0.432775203339996,0.846235077978862,1.56791084498637,1.14364336707222,-1.25722552006132,0.415957694445588,0.533584047668448 +4.88,0.43293383199125,0.846207632345998,1.56786893579849,1.14338439532489,-1.25709020904536,0.416127520504378,0.533872216693939 +4.882,0.433092657418915,0.846178977601171,1.56782459332286,1.14312280733939,-1.25695563401602,0.416297791206642,0.534161581518048 +4.884,0.433252362659908,0.846149823523748,1.56777850557076,1.14285883863402,-1.25682233323673,0.416466846990495,0.534450819461468 +4.886,0.433425634696857,0.846126347999677,1.56773169632096,1.14260347257973,-1.25671520438921,0.416605225315317,0.53470615412666 +4.888,0.433586015550666,0.846100256390145,1.56769038943081,1.14234948195259,-1.25658166704658,0.416770006676075,0.534989865114865 +4.89,0.433743967912912,0.846072179986935,1.56764745883588,1.14209243897766,-1.2564454960204,0.416941504699771,0.535279760246409 +4.892,0.433902281164271,0.8460429675871,1.56760214799115,1.14183165409948,-1.25631031810795,0.417113071752274,0.535570745641673 +4.894,0.434061643293945,0.846013405114921,1.56755525683927,1.14156748505417,-1.25617661003037,0.417283085179189,0.535861446502048 +4.896,0.434234757137553,0.845989680390894,1.56750783783843,1.14131108667998,-1.25606923840236,0.417422125485851,0.536118036062553 +4.898,0.43439511691271,0.845963499598363,1.56746611059668,1.14105544421557,-1.25593554115823,0.417587292941728,0.536402838513735 +4.9,0.434565784294342,0.845941072616601,1.56742303885332,1.14080676556962,-1.25582432334119,0.417729725106175,0.536660234085146 +4.902,0.434723077023805,0.845914591690151,1.56738338863028,1.14055673608521,-1.25568681001228,0.417899707270809,0.536947611370542 +4.904,0.434878247117396,0.845885279055178,1.56734038222441,1.14030082419833,-1.25554750643133,0.418075744101982,0.537241448632833 +4.906,0.435034300056283,0.845854508978853,1.56729395802607,1.1400386213076,-1.25541007683672,0.418250805609608,0.537536243355133 +4.908,0.435204591377402,0.845829056195859,1.56724565136369,1.13978139676536,-1.25529991846185,0.41839405390241,0.537797008271957 +4.91,0.435362730557793,0.845801120605361,1.56720235882221,1.13952257999951,-1.25516426945599,0.418562312322394,0.538085765258512 +4.912,0.435519207870209,0.845771610949326,1.56715740460668,1.13925843144657,-1.2550267446103,0.418736059959119,0.538380179327164 +4.914,0.435676774926197,0.84574149960526,1.56711028318573,1.13898901023135,-1.25489079127872,0.418908857620068,0.538675108444965 +4.916,0.435836053203375,0.845711583942754,1.56706189513236,1.13871540601936,-1.2547567218074,0.419079293251642,0.538969190084073 +4.918,0.43599706777427,0.845682375194957,1.56701315214469,1.13843897084188,-1.25462423690952,0.419247401922004,0.539262064354822 +4.92,0.436172311552277,0.845659698648544,1.56696478784366,1.13817152195896,-1.25451802879557,0.419384357249511,0.539520184953018 +4.922,0.436335044498911,0.845634986163241,1.56692269779859,1.13790652622771,-1.25438526537675,0.419547456715057,0.539806171776797 +4.924,0.436495646496223,0.84560858462387,1.56687940394798,1.13763991807838,-1.25424973845365,0.419717258787807,0.540097953536287 +4.926,0.43665682209086,0.845581128532401,1.56683390412139,1.13737124687987,-1.25411508880807,0.419887239174466,0.540390545909273 +4.928,0.436819181390178,0.845553260102852,1.566786858695,1.13710097493137,-1.25398179807939,0.420055850378852,0.540682674978085 +4.93,0.436982763273882,0.845525465585436,1.56673911543756,1.13682977267921,-1.25384970380224,0.420222973048846,0.540974012303377 +4.932,0.437147450693619,0.845498035872311,1.56669131393977,1.13655831078333,-1.25371852070181,0.420388842230407,0.541264488782758 +4.934,0.437313083161125,0.845471088094512,1.56664382922919,1.13628718035213,-1.25358797882694,0.420553759339072,0.541554118954299 +4.936,0.437479491710014,0.845444611973288,1.5665968246158,1.13601686125853,-1.25345785648936,0.420718000073888,0.541842961197034 +4.938,0.437646510723936,0.845418518443623,1.56655031985698,1.13574770266079,-1.25332798810673,0.420881802445675,0.542131099012016 +4.94,0.437813986010293,0.845392682328873,1.56650425752397,1.13547992244612,-1.25319825509924,0.421045352547369,0.54241863343665 +4.942,0.437981778151656,0.845366973076457,1.56645854695899,1.13521361045769,-1.25306857956123,0.421208796142726,0.542705669120695 +4.944,0.438162455584467,0.845346838173528,1.56641321785453,1.13495921841503,-1.25296404380715,0.42134302971691,0.54295874687775 +4.946,0.438329288433912,0.845323636452705,1.56637382691038,1.13470892262209,-1.25283203964711,0.42150491095717,0.543240634871669 +4.948,0.438492820145206,0.845297767893148,1.56633273677396,1.13445738015052,-1.25269666878986,0.421674653520592,0.543529200196608 +4.95,0.438655922131034,0.845270023258606,1.5662889414869,1.13420308141797,-1.2525618042132,0.421845368319645,0.543819358138707 +4.952,0.438819370595029,0.84524124827047,1.56624317302805,1.13394565915369,-1.25242809714032,0.422015188074944,0.544109716276 +4.954,0.43898336535561,0.845212140162064,1.56619637043065,1.13368519054483,-1.25229550838848,0.422183726754737,0.544399823069819 +4.956,0.439147940658406,0.845183183832502,1.56614925352098,1.13342198309457,-1.2521638412826,0.422351006757844,0.544689492778672 +4.958,0.439313074154486,0.84515466099155,1.56610225427508,1.13315647618356,-1.25203288779117,0.422517168880305,0.544978637889298 +4.96,0.439478719496827,0.845126692388539,1.56605556881696,1.13288918087056,-1.25190246741363,0.422682377375352,0.545267233376911 +4.962,0.439644816998754,0.845099287413257,1.56600923081323,1.13262062600361,-1.25177243902619,0.422846803147826,0.545555299026807 +4.964,0.439811301407265,0.845072390346775,1.56596318519179,1.13235132054848,-1.25164269484797,0.423010603950046,0.545842890357652 +4.966,0.439978105658634,0.845045915558355,1.56591733910086,1.132081719969,-1.25151315643952,0.423173929390799,0.546130081914244 +4.968,0.440145165514183,0.845019772293678,1.56587159966466,1.13181220889343,-1.25138376453576,0.423336908795794,0.546416958155326 +4.97,0.440312420909751,0.844993878370477,1.56582588990718,1.13154308708363,-1.25125447583761,0.423499659223897,0.54670360028579 +4.972,0.440479818497708,0.844968167009506,1.56578015837862,1.13127456963301,-1.25112525558267,0.423662274785859,0.54699008305228 +4.974,0.440647311252146,0.84494258747196,1.56573437553708,1.13100678737393,-1.25099607760368,0.423824836002523,0.547276467854533 +4.976,0.440814859703485,0.84491710364135,1.56568853169685,1.13073979795064,-1.25086691985113,0.423987400620571,0.547562804948394 +4.978,0.440982430683698,0.844891690413842,1.56564262811976,1.13047359377592,-1.25073776652963,0.424150014202074,0.54784913073658 +4.98,0.441162757315133,0.844871853018494,1.56559678040327,1.1302186013424,-1.25063381112936,0.42428352669552,0.548101805650718 +4.982,0.441329055666142,0.8448490861944,1.56555668917184,1.12996709065329,-1.25050230643168,0.424444664144573,0.548383696986644 +4.984,0.441491975698532,0.844823836481877,1.56551475634005,1.12971369954147,-1.25036742085915,0.424613675164451,0.548672572600229 +4.986,0.441687953658968,0.844800179690966,1.5654565014679,1.12942979609649,-1.25023572565364,0.424784892711536,0.548972400856279 +4.988,0.441912438443662,0.844780483303296,1.56538988384228,1.12912692289032,-1.25010841977189,0.424950497791853,0.549273645537853 +4.99,0.442159017670487,0.844765506853569,1.56532187130616,1.12881575575349,-1.24998412448104,0.425110582127655,0.549573261023614 +4.992,0.442421401197253,0.844754582819566,1.56525685868889,1.12850514092835,-1.24986112794792,0.425267044590929,0.549870155782501 +4.994,0.442693988825921,0.8447461180828,1.56519695982505,1.12820173376124,-1.24973801359252,0.425421937747749,0.550164045261137 +4.996,0.442972026990465,0.844738115774212,1.56514271469206,1.12790995305632,-1.24961379499497,0.425576987249647,0.550455091259939 +4.998,0.44325162482434,0.844728597041652,1.56509375006649,1.12763212100385,-1.24948789449231,0.425733480236923,0.550743707147621 +5,0.443529704777576,0.844715886961203,1.56504928107854,1.12736874528005,-1.24936006143335,0.425892249536058,0.551030418312994 +5.002,0.44380392078619,0.844698768298669,1.56500842593129,1.12711887131558,-1.24923028692471,0.426053726435767,0.551315752610869 +5.004,0.444072557720034,0.844676529473453,1.56497037788489,1.12688047799803,-1.2490987216614,0.426217995534797,0.551600172527017 +5.006,0.44433442656946,0.844648937308377,1.564934464736,1.12665086044367,-1.2489656152243,0.426384877591392,0.551884037501232 +5.008,0.444588761144774,0.844616166051309,1.56490015103419,1.12642698886266,-1.24883126647263,0.426553994543524,0.552167598879126 +5.01,0.444835125218482,0.844578705898697,1.56486700298787,1.12620580579657,-1.24869599333089,0.426724848709827,0.552451010064491 +5.012,0.445073330895741,0.844537269874007,1.56483465265542,1.12598446860841,-1.24856010848129,0.426896875998761,0.552734351358854 +5.014,0.445303372966949,0.844492708338242,1.56480276083815,1.12576051587506,-1.24842390769395,0.427069507432102,0.553017654353077 +5.016,0.445525376209947,0.844445938002205,1.5647709987705,1.12553197834664,-1.24828765851679,0.427242201530217,0.55330092846411 +5.018,0.445739557768136,0.844397885257416,1.56473903477628,1.12529742307875,-1.24815159722563,0.427414483952368,0.553584178880838 +5.02,0.445946199459341,0.844349444541243,1.56470653862665,1.12505595869082,-1.24801592325447,0.427585958169699,0.553867422306 +5.022,0.446145631092635,0.844301447879978,1.56467318523478,1.12480719395025,-1.24788080024969,0.427756325278656,0.554150692684757 +5.024,0.446338219047436,0.844254644797658,1.56463866959044,1.12455117941845,-1.24774635349714,0.427925376877,0.554434045668444 +5.026,0.446524361291791,0.844209688540314,1.56460271478226,1.12428832339763,-1.24761267366908,0.4280930005483,0.554717554825442 +5.028,0.446704483478258,0.844167128364576,1.56456508657913,1.12401931029405,-1.24747981635383,0.428259161146798,0.55500130932989 +5.03,0.446879037961267,0.84412740482462,1.56452559793143,1.12374500940084,-1.24734780783406,0.428423898480086,0.555285405644534 +5.032,0.447048501171001,0.844090848706393,1.56448411835641,1.12346639921137,-1.24721664598682,0.428587303333958,0.555569943174653 +5.034,0.447213371954553,0.844057681464702,1.56444057275932,1.12318449156644,-1.24708630723324,0.428749513087398,0.555855015453286 +5.036,0.447374167121726,0.844028018358258,1.56439494530926,1.1229002777261,-1.24695674789134,0.428910687520307,0.556140706841216 +5.038,0.447533954688715,0.844006317383748,1.56435152128025,1.122633599929,-1.24685242527514,0.42904148964261,0.55639041925387 +5.04,0.447681995298724,0.843985001179182,1.56430827919877,1.12236266605467,-1.24672119407124,0.429201039712044,0.55667368902675 +5.042,0.447827395546108,0.843964768850642,1.56425966148485,1.12208611241798,-1.24658776080348,0.429367162136382,0.55696509226594 +5.044,0.447972573411032,0.843946420823641,1.56420605156998,1.12180474563981,-1.24645581156832,0.429533042685184,0.557258943625495 +5.046,0.448118205548591,0.843930533791784,1.56414904411362,1.12151988734885,-1.24632571898401,0.429697217828477,0.557553675061813 +5.048,0.448264509558998,0.843917330881994,1.56409012638525,1.12123294228692,-1.24619719244083,0.429859669857262,0.557848730982046 +5.05,0.44841158458963,0.843906693809115,1.56403037778775,1.12094522299917,-1.24606983337477,0.430020741021471,0.558143844814144 +5.052,0.448559505451451,0.843898239802154,1.56397049144914,1.1206578681295,-1.24594327322026,0.430180824035283,0.558438870060419 +5.054,0.448708352161698,0.843891415557216,1.56391087284684,1.12037179057732,-1.24581721175722,0.430340287438679,0.558733730122106 +5.056,0.448858217670109,0.843885585264439,1.56385175080885,1.12008766329093,-1.24569141588637,0.430499439943615,0.559028396699552 +5.058,0.449009209193969,0.843880100505433,1.56379325905949,1.11980591691609,-1.24556571300347,0.430658534664635,0.559322867114892 +5.06,0.449161443945005,0.84387435038064,1.56373549627988,1.1195267639079,-1.24543997542291,0.430817760358362,0.559617149579122 +5.062,0.449315044041377,0.84386779231459,1.56367855333916,1.11925022457403,-1.24531411152096,0.430977256438971,0.559911248075415 +5.064,0.449470128751918,0.843859968518197,1.56362252809688,1.11897616959644,-1.24518805326632,0.431137109479021,0.560205157367653 +5.066,0.449626808045647,0.843850511193454,1.56356752071615,1.11870435532056,-1.2450617522131,0.431297370687479,0.560498857987645 +5.068,0.449785175201185,0.843839141560648,1.5635136294373,1.11843446747085,-1.24493517200758,0.431458053650299,0.560792319708128 +5.07,0.449945302035257,0.843825664511063,1.56346093740425,1.11816615154644,-1.24480828835795,0.431619151714635,0.561085502690302 +5.072,0.450107234054072,0.84380996217531,1.56340950736856,1.11789904733854,-1.24468108444263,0.431780635029082,0.561378364468884 +5.074,0.4502709887205,0.843791986388277,1.56335937179862,1.11763280763236,-1.244553552637,0.43194246655995,0.561670862442154 +5.076,0.450436553756192,0.84377175189514,1.56331053292426,1.11736712000348,-1.2444256909233,0.432104597530529,0.561962960453938 +5.078,0.450603888432171,0.843749329184537,1.56326295846513,1.11710171298542,-1.24429750499915,0.432266981543274,0.562254629874442 +5.08,0.45077292451896,0.843724838178646,1.56321658673512,1.11683636642452,-1.24416900481108,0.432429568068159,0.562545854176106 +5.082,0.450943569765781,0.843698441310267,1.56317132625009,1.11657090779897,-1.24404020660929,0.432592314659683,0.562836627915384 +5.084,0.45111571048739,0.843670337174457,1.56312706359235,1.11630521467524,-1.24391112945409,0.432755178646438,0.563126959292867 +5.086,0.45128921615672,0.843640753316742,1.56308366462541,1.11603920507442,-1.24378179723996,0.432918127803064,0.563416867448538 +5.088,0.45146394259469,0.843609939511812,1.56304098317001,1.11577283591965,-1.24365223525478,0.433081130680768,0.56370638364997 +5.09,0.451639736740943,0.843578160216502,1.56299886233416,1.11550609105441,-1.24352247226734,0.433244166268279,0.563995547605945 +5.092,0.451816439664129,0.843545687705163,1.56295714292097,1.11523897881342,-1.24339253719904,0.433407213520351,0.564284407968392 +5.094,0.451993890888685,0.843512794646963,1.56291566417165,1.114971520278,-1.24326246130218,0.433570260542285,0.564573018263745 +5.096,0.452171930775156,0.843479747701047,1.56287427144313,1.11470374795283,-1.24313227493179,0.433733293820149,0.564861437215898 +5.098,0.452350404102861,0.843446800895213,1.56283281609718,1.11443569568555,-1.24300200978719,0.433896307341344,0.565149724693064 +5.1,0.452529161658471,0.843414190352438,1.56279116226131,1.11416739933894,-1.2428716957442,0.434059291887682,0.565437942165459 +5.102,0.452708063018465,0.843382129091395,1.56274918575713,1.11389888883378,-1.24274136312934,0.434222244335521,0.56572614889782 +5.104,0.452886977375093,0.843350803405312,1.56270677984895,1.11363019089431,-1.24261103958949,0.43438515720347,0.566014402716712 +5.106,0.453065785602182,0.843320369489418,1.562663853158,1.11336132302715,-1.24248075239602,0.434548028218386,0.566302756568428 +5.108,0.453244380437991,0.843290951741221,1.56262033435196,1.11309229794129,-1.24235052536169,0.434710850166556,0.566591259681837 +5.11,0.453422667967548,0.843262641351861,1.56257616904211,1.11282311894829,-1.24222038120153,0.434873620700575,0.566879954541599 +5.112,0.453600567297012,0.843235496531319,1.56253132343538,1.11255378547137,-1.24209033852969,0.435036332447998,0.567168878473985 +5.114,0.453778011576731,0.84320954294794,1.56248578028595,1.11228428927249,-1.24196041431721,0.435198982976631,0.567458061037624 +5.116,0.45395494727558,0.843184775653438,1.56243954161899,1.11201462047997,-1.2418306210058,0.43536156507009,0.567747526016926 +5.118,0.454131334834654,0.843161161054125,1.5623926238915,1.11174476412284,-1.241700969097,0.435524076756742,0.568037289196844 +5.12,0.454307147612649,0.843138640144046,1.56234505998051,1.11147470623068,-1.24157146440795,0.435686511655747,0.568327360715725 +5.122,0.454482372225835,0.843117131559349,1.56229689377588,1.11120443030098,-1.24144211080815,0.43584886899152,0.56861774316369 +5.124,0.454657007206869,0.843096535633175,1.56224818168398,1.11093392318391,-1.24131290762166,0.436011143931556,0.568908434222926 +5.126,0.454831063066664,0.843076738025254,1.56219898691237,1.11066317126298,-1.24118385250533,0.436173337537799,0.569199425011166 +5.128,0.455004560697716,0.843057614088562,1.56214938076233,1.11039216598389,-1.24105493898074,0.436335447044837,0.56949070292301 +5.13,0.455177531191453,0.843039032574801,1.56209943686688,1.11012089965778,-1.24092615942775,0.436497475729775,0.569782250130917 +5.132,0.455350014022857,0.843020859841684,1.56204923253239,1.10984937060373,-1.24079750271318,0.436659423106551,0.570074046536093 +5.134,0.45552205666918,0.843002963199555,1.56199884316184,1.10957757857456,-1.24066895726012,0.436821294719744,0.570366068339027 +5.136,0.455693712629295,0.842985214574926,1.56194834386384,1.10930552955284,-1.24054050873124,0.436983092252442,0.570658291012038 +5.138,0.455865040908812,0.84296749316755,1.56189780424067,1.10903323085278,-1.24041214312842,0.437144823264301,0.570950687858671 +5.14,0.456036103947187,0.842949688302605,1.56184729042263,1.10876069564578,-1.24028384448705,0.437306491224797,0.571243232930718 +5.142,0.456206967052277,0.842931701192441,1.56179686033567,1.1084879378172,-1.24015559796189,0.437468105222267,0.571535899509275 +5.144,0.456377696323353,0.842913446838059,1.56174656625026,1.10821497630982,-1.24002738749311,0.437629669942021,0.571828662905052 +5.146,0.456548358128682,0.842894854817624,1.56169645057609,1.10794182982084,-1.23989919884096,0.437791195372986,0.572121498811672 +5.148,0.456719017118287,0.842875870220978,1.56164654894703,1.10766852104962,-1.23977101719335,0.437952686752672,0.572414385947389 +5.15,0.456889735837753,0.842856453502731,1.56159688652847,1.10739507131639,-1.23964283012171,0.438114154293837,0.57270730425118 +5.152,0.457060572918736,0.842836580538406,1.56154748160083,1.10712150479141,-1.23951462511088,0.438275603117372,0.573000237344437 +5.154,0.457231582910283,0.842816241672591,1.56149834231472,1.1068478431078,-1.23938639242019,0.438437043015253,0.573293170560465 +5.156,0.457402814718465,0.842795441063355,1.56144947068977,1.10657410963654,-1.23925812252779,0.438598478389601,0.573586093224297 +5.158,0.457574311714925,0.842774195119263,1.56140085971749,1.10630032415409,-1.23912980889194,0.438759918061523,0.573878996524406 +5.16,0.457746110472176,0.842752531345974,1.56135249766276,1.10602650721348,-1.23900144531255,0.438921365230857,0.574171875625763 +5.162,0.45791824118127,0.842730486398039,1.56130436539508,1.10575267491383,-1.23887302859744,0.439082827334396,0.574464727407314 +5.164,0.458090726700133,0.842708104658237,1.56125644086733,1.10547884340273,-1.23874455585206,0.439244306036705,0.574757552436471 +5.166,0.45826358328214,0.842685436132957,1.56120869655257,1.10520502377974,-1.23861602706331,0.439405807136043,0.575050352606163 +5.168,0.458436819925367,0.842662534984363,1.56116110397682,1.10493122674928,-1.23848744233429,0.439567330592494,0.575343133007312 +5.17,0.458610439385439,0.842639457476494,1.56111363114851,1.10465745767443,-1.2383588044033,0.439728880475879,0.575635899504631 +5.172,0.458784437787339,0.842616260648597,1.56106624703656,1.10438372138356,-1.23823011584368,0.439890455033385,0.575928660547127 +5.174,0.458958805872339,0.842593000479405,1.56101891889934,1.10411001737436,-1.23810138153849,0.440052056670934,0.576221424722418 +5.176,0.459133528813775,0.84256973084393,1.56097161662264,1.10383634476246,-1.23797260586607,0.44021368205872,0.576514202544272 +5.178,0.459308587631391,0.842546502013003,1.56092430988095,1.10356269762071,-1.23784379515105,0.440375332135786,0.576807004021712 +5.18,0.459483959139882,0.842523359982787,1.56087697227805,1.10328907004481,-1.23771495485525,0.440537002248564,0.577099840457829 +5.182,0.459659617455612,0.8425003453727,1.56082957830193,1.10301545160034,-1.23758609202381,0.440698692167812,0.577392722063345 +5.184,0.459835534002333,0.842477493163631,1.56078210723976,1.10274183247094,-1.23745721249801,0.440860396252596,0.577685659793475 +5.186,0.460011679034959,0.84245483200607,1.56073453991534,1.10246819897663,-1.23732832337241,0.441022113469069,0.577978663027109 +5.188,0.460188021630182,0.842432384355118,1.56068686237743,1.10219453876478,-1.23719943024194,0.441183837570596,0.578271741459559 +5.19,0.460364531158946,0.842410166156888,1.5606390624325,1.10192083635906,-1.2370705396819,0.441345567109052,0.578564902859266 +5.192,0.460541177199498,0.842388187329949,1.56059113312783,1.10164707835276,-1.23694165653727,0.441507295621008,0.578858155025034 +5.194,0.460717930902796,0.842366451765096,1.56054306911097,1.10137324894815,-1.23681278643269,0.441669021624101,0.579151503623239 +5.196,0.4608947647801,0.842344958076209,1.56049486994562,1.10109933511548,-1.23668393310749,0.44183073879947,0.579444954209598 +5.198,0.461071653921878,0.84232369982791,1.56044653634118,1.10082532208752,-1.23655510095837,0.441992445968059,0.579738510142158 +5.2,0.461248575629325,0.842302666464672,1.56039807334924,1.1005511984548,-1.23642629241942,0.442154137260698,0.580032174660548 +5.202,0.461425510465343,0.84228184367266,1.56034948651248,1.10027695158827,-1.23629751053626,0.442315812071726,0.580325948864084 +5.204,0.461602441717357,0.84226121439361,1.56030078499264,1.10000257265128,-1.2361687563869,0.442477465210049,0.580619833836306 +5.206,0.461810094579032,0.842243710471026,1.56023950577042,1.09970271186329,-1.23604256163514,0.442640350935731,0.580922372904833 +5.208,0.462035611791657,0.842229950241932,1.56017560695515,1.09939488092352,-1.23591886288786,0.442798619699818,0.581223793659931 +5.21,0.46226982542015,0.842219203370443,1.56011467055147,1.099089598045,-1.23579585612153,0.44295392807057,0.581522426713888 +5.212,0.462506518359004,0.842209948827899,1.56005875251539,1.0987928413828,-1.23567210703113,0.443108539509365,0.581818396575623 +5.214,0.46274178926221,0.842200475250784,1.56000776859651,1.09850722852006,-1.23554683293602,0.443264107897504,0.582112316294108 +5.216,0.462973426852336,0.842189298886698,1.55996065161118,1.09823298755818,-1.23541978281613,0.443421567811881,0.582404906484927 +5.218,0.463200372580664,0.842175377468149,1.55991610496209,1.0979687803656,-1.23529105502748,0.44358128194267,0.582696823543773 +5.22,0.463422279636825,0.842158161316365,1.55987301574103,1.09771239880539,-1.23516093027524,0.443743201771544,0.582988573416566 +5.222,0.463639198837284,0.842137539666444,1.55983059976396,1.09746128222757,-1.23502975525305,0.443907031944544,0.58328048448154 +5.224,0.463851355167286,0.842113735178044,1.55978840210935,1.09721290236968,-1.2348978665729,0.444072341300767,0.583572719859482 +5.226,0.464059020780932,0.842087186692261,1.55974621058992,1.0969649954061,-1.23476555647199,0.444238661600452,0.583865314540863 +5.228,0.464262438652179,0.842058445005876,1.55970396192022,1.0967157056293,-1.23463305854132,0.444405536025865,0.584158219908051 +5.23,0.464461802946729,0.842028093517413,1.55966164830686,1.09646362716681,-1.2345005530127,0.444572565067663,0.584451347799327 +5.232,0.464657254399029,0.841996696003969,1.55961926283523,1.09620780812486,-1.23436817360102,0.444739413819942,0.584744604564218 +5.234,0.464848904073781,0.841964768024737,1.55957676020566,1.09594769741905,-1.2342360207876,0.444905828157651,0.585037915610001 +5.236,0.465036850183583,0.841932765826235,1.55953405322896,1.0956830917882,-1.23410416861734,0.445071621655327,0.585331237376772 +5.238,0.465221207980181,0.841901086174966,1.55949101226836,1.09541405451013,-1.23397267414513,0.445236679169117,0.585624561684648 +5.24,0.465402122295229,0.84187007148995,1.5594474861468,1.09514085600348,-1.23384157914784,0.44540093640571,0.585917911919815 +5.242,0.46557978735828,0.841840016183212,1.55940331295683,1.09486390018823,-1.23371091513018,0.445564380541812,0.586211336677647 +5.244,0.465754446482046,0.841811171690233,1.5593583428065,1.09458368143779,-1.23358070165337,0.445727029128665,0.586504900194076 +5.246,0.465926398856963,0.841783749159439,1.55931244436073,1.09430073094392,-1.23345094941735,0.44588893212463,0.586798674122523 +5.248,0.466095987465689,0.841757919656986,1.55926552039419,1.09401559448077,-1.23332165764498,0.446050152771157,0.587092728995917 +5.25,0.466263596469585,0.841733812582904,1.55921750639025,1.09372879785863,-1.23319281713212,0.446210772341036,0.587387128672539 +5.252,0.466429632429085,0.841711513054801,1.55916837879508,1.09344084115294,-1.23306440795645,0.446370873489751,0.587681925315765 +5.254,0.466594517786491,0.84169105935514,1.55911814769341,1.09315217734616,-1.23293640313303,0.446530547509808,0.587977157389894 +5.256,0.466758670742714,0.841672441078075,1.55906686061061,1.09286321664939,-1.23280876686317,0.446689879715101,0.588272847907297 +5.258,0.466922499482306,0.841655598770864,1.55901459221828,1.09257431250134,-1.2326814586783,0.446848958464142,0.588569005062567 +5.26,0.467086384478273,0.841640425207016,1.55896144621786,1.09228577100034,-1.23255443198888,0.447007861925454,0.58886562252278 +5.262,0.467250676180518,0.841626768631788,1.55890754407791,1.0919978404657,-1.23242763838646,0.447166668156882,0.589162681450422 +5.264,0.467415681503109,0.841614437654751,1.5588530264193,1.09171072322831,-1.23230102620482,0.447325442735596,0.589460151697201 +5.266,0.467581665827891,0.841603207799579,1.55879804174732,1.09142456698977,-1.23217454470956,0.447484249420968,0.5897579943 +5.268,0.467748843806815,0.841592829116278,1.55874274795705,1.09113947790528,-1.23204814248609,0.447643138360742,0.590056162871979 +5.27,0.467917385257737,0.841583034723365,1.55868730145834,1.09085551318359,-1.23192177136729,0.447802157107614,0.590354606094326 +5.272,0.46808740946942,0.841573549605812,1.55863185909569,1.09057269518612,-1.23179538456697,0.447961339282079,0.590653268980184 +5.274,0.468258993959776,0.84156409954034,1.55857656789389,1.09029100509538,-1.23166894028901,0.448120715861635,0.590952095182035 +5.276,0.468432171131079,0.841554419522175,1.55852156763544,1.09001039786899,-1.2315423995886,0.448280304250803,0.591251028013927 +5.278,0.468606938753976,0.841544261649634,1.55846698144542,1.08973079670959,-1.2314157296581,0.448440119811532,0.591550012523328 +5.28,0.468783257869038,0.841533401952306,1.5584129192787,1.08945210853394,-1.23128890142822,0.448600165283759,0.591848996226385 +5.282,0.468961064025657,0.841521646231208,1.55835946954965,1.08917421876238,-1.23116189255097,0.448760442514396,0.592147930917648 +5.284,0.469140265553317,0.841508834526438,1.55830670374182,1.08889700678789,-1.23103468476623,0.448920942133659,0.592446773074957 +5.286,0.469320754844068,0.841494844387644,1.55825466921403,1.08862034048729,-1.23090726661478,0.449081655411635,0.592745485370439 +5.288,0.469502406382082,0.841479592685121,1.55820339503934,1.08834409114137,-1.23077963060351,0.449242564064245,0.59304403669442 +5.29,0.469685087609399,0.841463036223399,1.55815288599511,1.08806812711853,-1.23065177568992,0.449403652149008,0.593342403328845 +5.292,0.469868656337302,0.841445170997567,1.55810312959544,1.08779232781206,-1.23052370428539,0.44956489586877,0.593640568550908 +5.294,0.470052970937687,0.841426030415177,1.55805409113592,1.08751657612501,-1.23039542455898,0.449726275421441,0.593938523448586 +5.296,0.470237886944523,0.841405682401197,1.55800572174341,1.08724077119382,-1.23026694732291,0.449887764690292,0.594236266097152 +5.298,0.470423266462766,0.841384225744098,1.55795795423061,1.08696481953665,-1.2301382882077,0.450049342982629,0.594533802030702 +5.3,0.470608973904731,0.841361785650565,1.55791071187911,1.08668864655135,-1.23000946447653,0.450210984533188,0.594831143028145 +5.302,0.470794884613208,0.841338508878526,1.55786390478561,1.08641218640883,-1.22988049712508,0.450372670095054,0.595128307292756 +5.304,0.470980879773572,0.841314558438774,1.55781743903451,1.08613539249289,-1.22975140767093,0.450534376225342,0.595425317925765 +5.306,0.471166854316744,0.841290108226271,1.5577712131934,1.08585822628191,-1.22962222022951,0.45069608671964,0.595722202897483 +5.308,0.47135271110971,0.841265337568713,1.55772512752244,1.08558066701056,-1.22949295832124,0.450857781686836,0.596018993316428 +5.31,0.471538368244038,0.841240426029063,1.55767908029854,1.08530269986987,-1.22936364697014,0.451019448840391,0.596315723294095 +5.312,0.471723752639891,0.841215548425041,1.5576329767443,1.08502432521332,-1.22923430956546,0.451181072396093,0.596612428130879 +5.314,0.471908806842063,0.841190870367438,1.55758672491751,1.08474554642085,-1.22910497002195,0.451342644247241,0.596909144180211 +5.316,0.472093482180243,0.841166544238979,1.55754024411123,1.08446637895469,-1.22897564972504,0.451504152733477,0.597205907069022 +5.318,0.472277745192182,0.84114270587606,1.55749346012553,1.08418683819354,-1.22884636978245,0.45166559373274,0.59750275165721 +5.32,0.472461570471759,0.841119471823513,1.55744631297881,1.08390694858544,-1.22871714807341,0.45182695935228,0.597799710392811 +5.322,0.472644946823838,0.841096937386071,1.55739875146851,1.08362673168352,-1.22858800161078,0.451988248969624,0.59809681344289 +5.324,0.47282786990872,0.841075175291516,1.55735074012853,1.08334621556391,-1.22845894370576,0.452149457891191,0.598394087256367 +5.326,0.473010348211944,0.841054235156219,1.55730225307389,1.08306542320453,-1.22832998644915,0.452310588369645,0.598691554916434 +5.328,0.473192395566289,0.8410341435155,1.55725328022801,1.08278438225237,-1.22820113799403,0.452471638264556,0.598989234951957 +5.33,0.473374036998249,0.841014904585852,1.55720382052298,1.08250311379829,-1.22807240515469,0.452632612056533,0.599287141933379 +5.332,0.473555301183213,0.840996501476414,1.55715388749492,1.0822216425032,-1.22794379080163,0.452793509531334,0.599585285541306 +5.334,0.473736226213128,0.840978898004457,1.55710350196973,1.08193998574737,-1.2278152965676,0.452954336803772,0.59988367140098 +5.336,0.473916852021274,0.840962040798127,1.55705269717844,1.08165816406751,-1.22768692034214,0.453115095034218,0.600182300387763 +5.338,0.474097226105149,0.840945861840651,1.55700151109491,1.08137619060597,-1.22755865906686,0.453275791468737,0.600481169672358 +5.34,0.474277395946288,0.840930281117637,1.55694999125306,1.0810940817749,-1.22743050631096,0.4534364281869,0.600780272220132 +5.342,0.474457414718976,0.840915209531846,1.55689818691682,1.08081184690151,-1.22730245513267,0.453597013159712,0.601079598002145 +5.344,0.474637333727459,0.840900551737844,1.5568461537878,1.08052949902171,-1.22717449571307,0.453757549020999,0.601379133630114 +5.346,0.474817208133162,0.840886209079722,1.55679394618091,1.08024704461134,-1.22704661825754,0.453918044141757,0.601678863678056 +5.348,0.474997089434225,0.840872082285985,1.55674162179689,1.07996449441693,-1.22691881066316,0.454078501414355,0.601978770387611 +5.35,0.475177031248803,0.840858074129425,1.55668923405313,1.0796818531754,-1.22679106143302,0.454238929340898,0.602278835041854 +5.352,0.475357081867053,0.840844091716276,1.55663683706528,1.079399130409,-1.22666335735262,0.454399330819606,0.602579037676229 +5.354,0.475537290132711,0.840830048639799,1.5565844782467,1.07911633006145,-1.22653568639088,0.454559714245312,0.602879358449238 +5.356,0.475717698102202,0.840815866678399,1.55653220360252,1.07883346121161,-1.22640803536291,0.454720082289869,0.603179777301207 +5.358,0.475898347068318,0.840801477300484,1.55648005066875,1.07855052758589,-1.22628039279466,0.454880443014356,0.603480275274975 +5.36,0.476079270362335,0.840786822674567,1.55642805417668,1.07826753817501,-1.22615274655294,0.455040798639227,0.603780834076417 +5.362,0.476260499560335,0.840771856471084,1.55637623935892,1.07798449661424,-1.22602508665512,0.455201156669597,0.604081437310344 +5.364,0.476442057460478,0.84075654417271,1.55632462799715,1.07770141171453,-1.22589740285217,0.455361518655048,0.604382069911341 +5.366,0.476623964503588,0.840740863199239,1.5562732320824,1.07741828672914,-1.22576968737036,0.455521891330878,0.604682719274047 +5.368,0.476806231948597,0.840724802579746,1.55622206021957,1.07713512983007,-1.22564193243878,0.455682275371205,0.604983374538554 +5.37,0.476988868524885,0.840708362491941,1.55617111159625,1.07685194329886,-1.22551413295597,0.455842676549843,0.605284027608381 +5.372,0.477147472447198,0.84069294782625,1.55613562890947,1.07661100745211,-1.22540912144025,0.455972593507878,0.605539091519939 +5.374,0.477321093145528,0.840674939345254,1.55608879486636,1.07634070899944,-1.22527675749345,0.456137394504515,0.605840189397406 +5.376,0.477503607505439,0.840656008918716,1.55603536477705,1.07605721029608,-1.22514355441865,0.456305844774944,0.606148173606483 +5.378,0.477691300419045,0.840637265236538,1.55597957149052,1.07576699803807,-1.22501221324197,0.456472166627438,0.606456280765813 +5.38,0.47788159502285,0.84061917763634,1.55592401733011,1.0754738156542,-1.22488233837394,0.45663615667352,0.606763227107562 +5.382,0.478048297269742,0.840603127936948,1.55588517308883,1.07522242734585,-1.22477612705554,0.456768017161094,0.607023190269195 +5.384,0.478229498077978,0.840585264149232,1.55583644137291,1.07494251404113,-1.22464293305094,0.456933795340374,0.607328050670866 +5.386,0.478394014365164,0.840568287200355,1.55579765617061,1.07469342871618,-1.22453187655369,0.457072221971804,0.607593164179006 +5.388,0.47857710947475,0.840549396221319,1.55574576211366,1.07441009816353,-1.22439535299626,0.457243205447876,0.607903816704632 +5.39,0.478770088659458,0.840530488148332,1.55568774287618,1.07411240084702,-1.22425949222194,0.457415467441269,0.60821973093938 +5.392,0.478967647293727,0.84051252659302,1.55562873750272,1.07380899472347,-1.22412635953409,0.457584006465244,0.608534137201767 +5.394,0.479141823699361,0.840497022289213,1.55558672981264,1.07354723226602,-1.22401797186554,0.457718811574454,0.608800284892548 +5.396,0.479329831610603,0.84048007940565,1.55553567058948,1.07325795227632,-1.22388322159545,0.457886448301312,0.609110225291782 +5.398,0.479524461104836,0.840462856463776,1.55548020406235,1.07295877130454,-1.22374810944422,0.458056605027652,0.60942510792513 +5.4,0.479721618260866,0.840445969506595,1.55542396981929,1.07265663998915,-1.22361504005685,0.458224121759106,0.609738614964172 +5.402,0.479918806625376,0.840429529263408,1.55536887642077,1.07235511453502,-1.22348350738868,0.458389163560095,0.610049895108493 +5.404,0.480090020663856,0.840414681213976,1.55533087466498,1.0720986328269,-1.22337572048527,0.45852209769056,0.610313342618544 +5.406,0.480274011363329,0.840397592099091,1.55528285737651,1.07181582227424,-1.22324099948488,0.458689047608814,0.610621398561014 +5.408,0.480464491800426,0.840379664767175,1.5552292150403,1.07152298541023,-1.22310572544826,0.458859203387137,0.610935135151934 +5.41,0.480657915652222,0.840361825184333,1.55517372400233,1.071226288534,-1.22297251072689,0.459027042264285,0.61124809705599 +5.412,0.480852045317899,0.840344465534383,1.55511859952611,1.07092892521129,-1.22284093568717,0.459192482282454,0.61155927094913 +5.414,0.481045550733338,0.840327606573844,1.55506477663412,1.07063266732667,-1.22271036114331,0.459356263585407,0.611868680919121 +5.416,0.48123775612178,0.840311082754042,1.55501238424766,1.07033838287395,-1.22258032840844,0.459519039441778,0.61217658470718 +5.418,0.481403749342757,0.840295984357591,1.55497650600622,1.07008904636663,-1.22247345577804,0.459650751001831,0.612437409388467 +5.42,0.481583118004312,0.840278628763945,1.55492967176931,1.06981215924518,-1.22233933369612,0.459817085997841,0.612743696413575 +5.422,0.481769878945191,0.840260570810482,1.55487636532555,1.06952367487249,-1.2222045774969,0.459986890976708,0.61305628705687 +5.424,0.481960549759806,0.840242861226862,1.55482059275266,1.0692297424439,-1.22207189031009,0.460154435814475,0.613368551914896 +5.426,0.482152822450992,0.84022596237261,1.55476480758736,1.06893372586303,-1.22194087859006,0.460319542881485,0.6136793374834 +5.428,0.482345216623535,0.840209905996897,1.55471014641393,1.06863768036712,-1.22181089171624,0.460482908397936,0.613988562047014 +5.43,0.4825368889258,0.840194488991011,1.55465687012833,1.06834277698321,-1.22168145126971,0.46064519169878,0.614296409608454 +5.432,0.482727451846854,0.840179432021558,1.55460477522205,1.06804956347539,-1.22155227286148,0.460806860491969,0.614603142650443 +5.434,0.482916828535114,0.840164481674579,1.5545534788153,1.06775815214034,-1.22142321933593,0.460968216816159,0.614909033962325 +5.436,0.48310512313185,0.840149460079637,1.55450260162253,1.06746839352474,-1.22129424302623,0.461129427574264,0.615214328375836 +5.438,0.483292536663549,0.840134276040368,1.55445184616199,1.06717999084073,-1.22116534425059,0.461290577678062,0.615519224887775 +5.44,0.483454470569062,0.840120166931333,1.55441644539831,1.06693553593126,-1.22105944055303,0.461421181478764,0.615777844091725 +5.442,0.483630905942512,0.84010371630288,1.55436913206942,1.06666195552456,-1.22092618899953,0.461586680151295,0.616082832662135 +5.444,0.483815797744515,0.840086635403336,1.5543148031586,1.06637531974418,-1.22079231852632,0.461755734112923,0.616394708200629 +5.446,0.484005520119665,0.840070056015255,1.55425778943763,1.06608200875603,-1.2206605310856,0.461922538522056,0.616706642230846 +5.448,0.484197580131037,0.840054452519175,1.55420077132433,1.06578567994443,-1.22053039958856,0.462086887159176,0.617017345696812 +5.45,0.484390321559777,0.840039818470161,1.5541450063559,1.06548866797605,-1.22040124365264,0.462249489338314,0.617326645680021 +5.452,0.484557836972492,0.840027113615867,1.55410625817158,1.06523545216675,-1.22029547328213,0.462380505371473,0.617588565915895 +5.454,0.484739494124189,0.840012565598854,1.55405708547314,1.06495384663491,-1.22016239245427,0.462545882413854,0.617896048914855 +5.456,0.484928855248955,0.839997501055682,1.55400203270531,1.06466051721237,-1.22002861594637,0.462714596468553,0.618209740951232 +5.458,0.485122161651502,0.839982746806172,1.55394501326098,1.0643620487416,-1.21989680130225,0.462881041740532,0.618523004675722 +5.46,0.485316950357961,0.839968582913269,1.5538883511434,1.06406204734389,-1.21976653114208,0.463045118309122,0.618834730297664 +5.462,0.485486718089996,0.839956124354305,1.55384853042954,1.06380579963947,-1.21966008046258,0.463177061504068,0.619098715436523 +5.464,0.485670607356281,0.839941711150057,1.55379842938503,1.06352135924977,-1.21952655316997,0.463343014915933,0.619408029409511 +5.466,0.485861989244123,0.839926696071923,1.55374275499074,1.0632256185119,-1.21939247105393,0.463512096626468,0.619723287296027 +5.468,0.486057024259465,0.83991190180399,1.55368543732564,1.06292524356909,-1.21926041373234,0.463678799049257,0.620037877090253 +5.47,0.486253250818302,0.839897598198812,1.55362873690475,1.06262381262002,-1.21912992308162,0.463843093582627,0.620350729206979 +5.472,0.486449166943639,0.839883688263687,1.55357358410353,1.06232339113419,-1.21900033295035,0.464005757937153,0.620661852489413 +5.474,0.486618940000426,0.839871091788935,1.55353557796219,1.0620683099263,-1.21889410910449,0.464136965409116,0.620925254955162 +5.476,0.486802387536785,0.83985617499533,1.55348704656038,1.06178563445577,-1.21876051926953,0.46430266765054,0.62123426290451 +5.478,0.48699322978419,0.839840379265272,1.55343253897408,1.06149174993889,-1.21862627175459,0.464471778272048,0.621549434727188 +5.48,0.487187838605315,0.839824653397579,1.5533759930531,1.06119300391692,-1.21849403823523,0.464638646173982,0.621864116115612 +5.482,0.487383857907823,0.839809392192459,1.55331975548443,1.06089280803671,-1.21836340238198,0.464803148117866,0.622177190255858 +5.484,0.487579817767318,0.83979460002399,1.55326485994156,1.06059317127729,-1.2182337103967,0.46496600544107,0.622488618595473 +5.486,0.487749794945842,0.839781240324108,1.55322702224051,1.06033856051379,-1.21812743582942,0.465097360978812,0.622752288607793 +5.488,0.487908562841416,0.839766905192856,1.55319410423649,1.06009930689837,-1.21801674336569,0.465232651916292,0.623015319059348 +5.49,0.488090025594143,0.839749734935921,1.55314328865934,1.05981837628128,-1.21787785059634,0.465406271095058,0.623331385256097 +5.492,0.488284162921675,0.839732321660393,1.55308355419522,1.0595187297855,-1.21774028520184,0.465581188759665,0.62365398355121 +5.494,0.488484723212547,0.839716094736277,1.55302160176223,1.0592105793735,-1.21760632145741,0.465751497779661,0.623975066184899 +5.496,0.488687549590981,0.839701434854805,1.552961109309,1.05889989413021,-1.21747486482862,0.465917750237989,0.624293283765992 +5.498,0.488864855751655,0.839689191155705,1.55291902467927,1.05863379644146,-1.21736771632584,0.466050823330452,0.624562280461332 +5.5,0.489055588811303,0.839675507482999,1.55286786947002,1.05834054905211,-1.21723356150375,0.466217377832974,0.624875823898412 +5.502,0.48925281971898,0.839661448137829,1.55281203640564,1.05803748702991,-1.21709888897906,0.466386794681114,0.625194557346302 +5.504,0.489450003178869,0.839647727090341,1.55275670247858,1.057735926833,-1.21696864125,0.466550549108153,0.625507174939937 +5.506,0.489641050777392,0.839634485407576,1.55270582165719,1.05744529184609,-1.21684427442187,0.46670597704384,0.625807972576566 +5.508,0.489820778281172,0.83962142007553,1.55266177750966,1.0571733415567,-1.21672649981046,0.466852013329748,0.626093085154996 +5.51,0.489985131710412,0.839608023665256,1.55262561668327,1.0569260258971,-1.21661588245771,0.466988080442409,0.626359659249738 +5.512,0.49013118964433,0.839593809959339,1.55259746375911,1.05670752355134,-1.21651300285485,0.467113728458359,0.62660553621027 +5.514,0.49025702663765,0.839578470794137,1.55257692502626,1.05652045804832,-1.21641848543143,0.467228498362774,0.626829046344613 +5.516,0.490361510217148,0.839561951629106,1.55256340096223,1.0563662122576,-1.21633297709142,0.467331874669524,0.627028854271058 +5.518,0.490444095645522,0.839544458226845,1.55255627830625,1.05624525118011,-1.21625711627704,0.467423294562838,0.627203848343394 +5.52,0.490504636576407,0.839526416168417,1.55255502922836,1.05615742616773,-1.21619150367403,0.467502167642591,0.627353068757802 +5.522,0.490543226443545,0.839508405191784,1.55255924454772,1.05610223404792,-1.2161366823644,0.467567899819144,0.62747566595904 +5.524,0.490560377594224,0.839491074243862,1.55256844280533,1.05607849953576,-1.21609285594355,0.467620277232527,0.627571433774227 +5.526,0.490560853126172,0.839474919036232,1.55257965265158,1.05607780057623,-1.21605648989204,0.467664025439422,0.627647776419245 +5.528,0.490551021674876,0.839460582203461,1.55258942012343,1.05608966201556,-1.21602481704046,0.467703083324854,0.627711976755122 +5.53,0.490537330555069,0.839448887430969,1.55259493099982,1.05610391166537,-1.21599593169933,0.467740062031469,0.627770049760709 +5.532,0.490525460774907,0.839440714470442,1.55259439768713,1.05611185536125,-1.21596845073293,0.467776638207991,0.627826742878917 +5.534,0.490519948933433,0.839436824509009,1.55258700830606,1.056106762074,-1.21594125541377,0.467813961288431,0.627885750095817 +5.536,0.490524116357229,0.839437710722112,1.55257268260415,1.05608391096821,-1.21591335049921,0.467852930707602,0.627949949065013 +5.538,0.490540180699461,0.839443510339118,1.55255179223447,1.05604037801478,-1.21588380639399,0.467894353643172,0.628021610676743 +5.54,0.490565159605418,0.839454168835867,1.55252757727165,1.05598210960547,-1.21585564564009,0.467933844598434,0.628094669895373 +5.542,0.490593703086478,0.839469113581208,1.55250394400961,1.05591837094325,-1.2158311476874,0.467967797954989,0.628162859249969 +5.544,0.490619820983834,0.839487246329473,1.55248420489492,1.05585905086622,-1.21581174797198,0.467993983868261,0.628220988680172 +5.546,0.490637914371813,0.839507131118257,1.5524706188641,1.05581317724281,-1.21579839161667,0.468011147075753,0.62826500747349 +5.548,0.490643310232811,0.839527249316851,1.55246441759603,1.05578817057516,-1.21579180413045,0.468018575572313,0.628291819955266 +5.55,0.490632452467969,0.839546231334284,1.55246605329117,1.05578959466373,-1.21579263845963,0.46801579800653,0.628299059850726 +5.552,0.490602874202287,0.839563018033475,1.55247549381295,1.05582122760095,-1.21580153309961,0.46800240484197,0.628284882766764 +5.554,0.490553047987617,0.839576939663749,1.55249247249852,1.05588531576402,-1.21581911968772,0.467977960522705,0.628247798958267 +5.556,0.490482183332507,0.839587722277005,1.55251665870206,1.05598290869365,-1.21584600863675,0.46794197477368,0.628186552458637 +5.558,0.490390017532759,0.839595442209424,1.55254775056334,1.05611420435783,-1.21588277040996,0.467893907973129,0.628100043282998 +5.56,0.49027662717104,0.83960045131144,1.55258550830401,1.05627886089456,-1.21592992126366,0.467833192777896,0.627987284285109 +5.562,0.49014227400689,0.839603292543142,1.55262975054968,1.05647625166755,-1.21598791640278,0.467759260458083,0.627847382407878 +5.564,0.489987288037683,0.839604619963054,1.55268033460986,1.05670565799079,-1.21605714954269,0.467671563439661,0.627679534467228 +5.566,0.489811991800529,0.83960513206433,1.55273712995926,1.05696639280746,-1.2161379593557,0.467569598221311,0.627483029816956 +5.568,0.489616647550533,0.839605521103243,1.55280000458192,1.05725788482079,-1.21623063502385,0.467452907979378,0.627257253565004 +5.57,0.489402232782741,0.839606404342943,1.55286831740836,1.0575783355748,-1.21633471259036,0.467322055523413,0.627003134647324 +5.572,0.489170403037106,0.839608349047747,1.55294101805236,1.0579249024576,-1.21644942472161,0.467178062797042,0.626722512193126 +5.574,0.488922973240101,0.839611915352595,1.55301706381759,1.05829461304112,-1.21657421274422,0.46702170380521,0.626417098309723 +5.576,0.488661613101742,0.839617644859304,1.5530956361799,1.05868480974803,-1.21670868032895,0.466853483512288,0.626088337012746 +5.578,0.488387724770911,0.839626025094405,1.55317617430129,1.0590933038818,-1.21685252382661,0.466673771547999,0.625737426996667 +5.58,0.488102384019961,0.839637450337787,1.55325835757251,1.05951844633651,-1.21700547563195,0.466482853345544,0.625365367074716 +5.582,0.487806341867295,0.839652190686684,1.55334205312619,1.05995911022636,-1.21716727550839,0.466280973394433,0.624973001811401 +5.584,0.487500112638187,0.83967038152875,1.55342721868438,1.060414545649,-1.21733767670274,0.466068414279342,0.624561066020136 +5.586,0.487184014846923,0.839692028328617,1.55351387567096,1.06088431558708,-1.21751643612726,0.465845452853806,0.624130211979467 +5.588,0.486858211460964,0.839717019269347,1.55360209310216,1.06136822799969,-1.21770331188701,0.465612348915244,0.623681026855198 +5.59,0.486522809594373,0.839745149578141,1.55369192961955,1.06186617855591,-1.21789808487172,0.465369405246792,0.623214048670221 +5.592,0.486177880512367,0.839776148337182,1.55378345199289,1.06237812304886,-1.21810054816259,0.46511690333434,0.62272977220278 +5.594,0.485823463336378,0.839809699365792,1.5538767550438,1.06290406868381,-1.21831049921741,0.464855082568591,0.622228649615898 +5.596,0.485459639658607,0.839845464385948,1.55397191304685,1.06344395892622,-1.21852776242387,0.464584214164102,0.621711094360102 +5.598,0.485086520613171,0.839883102580179,1.55406900816097,1.06399769972784,-1.21875217260524,0.464304534933586,0.621177483691927 +5.6,0.484704216762954,0.839922279840828,1.55416815676853,1.06456520412503,-1.21898356219692,0.464016225497235,0.620628157901111 +5.602,0.484312898899363,0.839962680053147,1.55426945011526,1.06514629921042,-1.21922178743121,0.463719501115054,0.620063423746235 +5.604,0.483912768643617,0.840004014184811,1.55437298069996,1.06574077779215,-1.21946670982912,0.463414544003084,0.619483560621717 +5.606,0.483504042292822,0.840046023410962,1.55447884593364,1.0663484216228,-1.21971819420527,0.463101509322473,0.618888822063835 +5.608,0.483086906878833,0.840088475908112,1.55458717202309,1.06696906476716,-1.21997609274364,0.462780499578669,0.618279440358914 +5.61,0.482661595282134,0.840131170701986,1.55469803461636,1.06760247655212,-1.22024028182904,0.462451678252859,0.617655630975217 +5.612,0.482228363879277,0.840173943897289,1.55481148170962,1.06824840164332,-1.22051064603529,0.462115196793142,0.617017601027393 +5.614,0.481787463794291,0.840216668975081,1.55492755361341,1.06890660012849,-1.22078707124591,0.461771178585808,0.61636554978246 +5.616,0.481339089061863,0.840259249495085,1.5550463170783,1.06957691820379,-1.22106942676611,0.461419691682294,0.615699670945405 +5.618,0.48088346530624,0.840301620237321,1.55516777774767,1.07025914725097,-1.22135760829978,0.461060880596777,0.615020154553519 +5.62,0.4804208248213,0.840343751244921,1.55529191187659,1.0709530666721,-1.22165151811053,0.460694879067817,0.614327194555003 +5.622,0.479951382109572,0.840385645774999,1.55541868746132,1.07165847582726,-1.2219510594515,0.460321797320604,0.613620986771694 +5.624,0.479475277463411,0.840427330030111,1.55554810688172,1.07237527088518,-1.22225611528503,0.459941685515117,0.612901729341514 +5.626,0.478992681616172,0.840468852570337,1.55568010867715,1.07310327972833,-1.22256659797166,0.459554683514329,0.612169621913591 +5.628,0.478503775256842,0.840510287950425,1.55581460119965,1.07384230060305,-1.22288242851901,0.459160925381586,0.611424872413882 +5.63,0.478008722978688,0.840551733824488,1.5559514894306,1.07459213856691,-1.22320352942278,0.458760519811292,0.610667693115308 +5.632,0.477507664174836,0.840593304815945,1.55609068136413,1.07535261468464,-1.22352982323157,0.458353561815053,0.60989829885088 +5.634,0.477000651344877,0.840635119131283,1.55623213710495,1.07612365411341,-1.22386120580931,0.457940079612168,0.609116908167417 +5.636,0.47648777420395,0.84067729708895,1.55637575446446,1.07690509468443,-1.22419760492457,0.457520206034789,0.608323740353778 +5.638,0.475969150181323,0.840719966803497,1.55652139810241,1.07769671458218,-1.2245389611121,0.457094079106274,0.60751902254014 +5.64,0.475444896282578,0.840763263475525,1.55666893290242,1.07849827691343,-1.22488521823663,0.456661810470928,0.606702984831277 +5.642,0.474915110179618,0.840807323858378,1.55681824046739,1.07930955689857,-1.22523631789078,0.456223488218185,0.605875857142747 +5.644,0.474379797963786,0.840852271762262,1.5569692757864,1.08013044736867,-1.22559216826384,0.455779121359415,0.605037870070876 +5.646,0.47383901367749,0.84089821705409,1.5571219362972,1.08096074643561,-1.22595271092309,0.455328835866844,0.604189250049265 +5.648,0.473292846136303,0.840945263034274,1.55727609505899,1.08180019461267,-1.22631789721954,0.454872760898124,0.603330228449541 +5.65,0.472741389855137,0.840993507183455,1.55743163408463,1.08264852254093,-1.22668767876144,0.454410998046167,0.602461036650977 +5.652,0.472184727375832,0.841043037398653,1.55758845870919,1.08350547764789,-1.2270620023639,0.453943626625579,0.601581903059828 +5.654,0.471622848175274,0.841093918517435,1.5577465609514,1.08437094328151,-1.22744077425176,0.45347063892592,0.600693055448329 +5.656,0.471055803076754,0.841146193610431,1.55790587262882,1.08524470452131,-1.22782393621412,0.452992157674175,0.599794713203989 +5.658,0.470483691431678,0.841199894959426,1.55806629942865,1.08612648632157,-1.22821143956859,0.452508312230739,0.598887098814209 +5.66,0.469906630811312,0.841255047895502,1.55822775531216,1.08701600292117,-1.22860323541788,0.452019205607439,0.59797043314366 +5.662,0.469324736062131,0.841311669358998,1.55839017868552,1.08791298842074,-1.22899926881962,0.451524917859373,0.597044932493533 +5.664,0.468738113712789,0.841369764861259,1.5585535314894,1.08881720423705,-1.22939947754415,0.451025520306299,0.596110808159738 +5.666,0.468146772095341,0.841429315896877,1.55871786897548,1.08972856980044,-1.22980375047122,0.45052099236021,0.595168272434068 +5.668,0.467550792354147,0.841490283515237,1.55888317464915,1.09064690186414,-1.23021201618169,0.450011460175037,0.594217526066756 +5.67,0.466950316941227,0.841552623127254,1.55904939502684,1.09157194996087,-1.23062421471984,0.449497062054848,0.593258773001723 +5.672,0.466345524120872,0.841616292183731,1.55921647087805,1.09250343666301,-1.23104029070599,0.448977918350956,0.592292215649263 +5.674,0.465736598417488,0.841681251236643,1.55938436167169,1.0934410989115,-1.23146018392558,0.448454122981087,0.591318052427962 +5.676,0.465123713929935,0.841747461002504,1.55955305207514,1.0943847083329,-1.23188382509191,0.447925753286041,0.590336476974578 +5.678,0.464506932775674,0.841814867764646,1.55972262816832,1.09533421425696,-1.23231108960379,0.447392785077083,0.589347686257203 +5.68,0.463886388881131,0.841883405927704,1.55989309539268,1.0962894612885,-1.23274189728828,0.446855353124503,0.588351862834468 +5.682,0.463262273325235,0.841953012997313,1.56006441612796,1.09725022803782,-1.23317617968146,0.446313604321688,0.587349193716367 +5.684,0.462634803933347,0.84202363656202,1.56023654440709,1.09821627191489,-1.23361387171267,0.445767663897575,0.586339866472334 +5.686,0.462004196695019,0.842095234510281,1.56040944841919,1.09918736618842,-1.23405490378044,0.445217631580572,0.585324066807269 +5.688,0.461370649628654,0.842167771464161,1.56058311644845,1.10016331763398,-1.23449919798161,0.44466359137283,0.584301978002054 +5.69,0.460781252553649,0.8422457144149,1.56073856662058,1.10110537598379,-1.23495050557851,0.444107463484728,0.583286898404471 +5.692,0.460229083719956,0.842331172718963,1.5608858918526,1.10202988017746,-1.23540966923687,0.443540950545394,0.582267519494194 +5.694,0.459705184032771,0.842424243522131,1.56103351728072,1.10295158044731,-1.23587463839202,0.442964740648979,0.581240273924292 +5.696,0.459200913019136,0.84252335414645,1.56118655397854,1.1038823534471,-1.23634308991756,0.442381527076601,0.580204034290227 +5.698,0.458708632137054,0.842625939685046,1.5613473122116,1.10483078816834,-1.23681315501719,0.441794064652894,0.579158711577502 +5.7,0.458221888251182,0.842729100388719,1.56151623082494,1.105802203362,-1.23728356300563,0.441204621981056,0.578104774530231 +5.702,0.457735418114502,0.842830109132482,1.56169270535024,1.10679893080641,-1.23775359106675,0.44061485173608,0.577042986936732 +5.704,0.457245040188646,0.842926732718479,1.56187575074488,1.10782086573318,-1.23822289686656,0.440025691207885,0.575974263189802 +5.706,0.456747571908762,0.843017386324912,1.56206424757874,1.10886587331806,-1.23869151268289,0.439437683994675,0.574899428771252 +5.708,0.4562406997328,0.843101179409572,1.5622571487227,1.1099303756235,-1.23915968842951,0.438850940928072,0.573819206289317 +5.71,0.455722834950141,0.843177869843056,1.56245355193469,1.11100991881276,-1.23962780534419,0.438265221422882,0.572734183738537 +5.712,0.455192968624409,0.843247765087584,1.56265270688111,1.11209969625442,-1.24009630397366,0.437680016103345,0.571644817774321 +5.714,0.454650539310391,0.843311599104534,1.56285398293956,1.11319498465581,-1.24056563630655,0.43709464291163,0.570551451750015 +5.716,0.454095320430486,0.843370406969888,1.56305682569124,1.11429147842104,-1.24103623368025,0.436508337057061,0.569454344781003 +5.718,0.453527299536466,0.843425405809475,1.56326078531874,1.11538562229334,-1.24150843385875,0.435920204823977,0.568353741076142 +5.72,0.452946646575942,0.843477891176102,1.56346536413638,1.11647457418881,-1.24198258286474,0.435329587516274,0.567249800577441 +5.722,0.452353679839907,0.843529175031783,1.56367002860543,1.11755625558307,-1.24245897623615,0.434735949423693,0.56614269140126 +5.724,0.451748834390501,0.843580536332822,1.56387422656217,1.11862934115007,-1.24293785388483,0.434138873306631,0.565032609360355 +5.726,0.451132634712243,0.843633182653421,1.56407741661488,1.11969321279736,-1.24341939224655,0.433538052547313,0.563919787750699 +5.728,0.45050567452097,0.843688219465108,1.56427909319464,1.12074787560209,-1.24390370342233,0.432933295311045,0.562804494645801 +5.73,0.449868603284892,0.84374662616604,1.56447880619997,1.12179384873579,-1.24439083689834,0.432324524447591,0.561687026342733 +5.732,0.44922208608922,0.843809233213033,1.56467624433533,1.12283214735863,-1.24488072838187,0.431711647776232,0.560567738925075 +5.734,0.448566836949645,0.843876701554986,1.56487111244663,1.12386398850762,-1.24537332666431,0.43109484832816,0.559446931961221 +5.736,0.447903628903506,0.843949530009381,1.56506316036841,1.12489067841624,-1.2458685469493,0.43047441069684,0.558324909844228 +5.738,0.447233290765622,0.844028061318278,1.56525219982083,1.12591351876656,-1.24636627743618,0.429850672051969,0.557201975718239 +5.74,0.446556694216244,0.844112487841602,1.5654381235035,1.12693374609698,-1.24686637871814,0.429223982091896,0.55607842619255 +5.742,0.445874737747846,0.844202856075758,1.565620913122,1.12795248648588,-1.24736868781276,0.428594688129921,0.554954541159908 +5.744,0.445188330317377,0.844299071687979,1.56580063901221,1.12897072385251,-1.24787302229395,0.427963126944747,0.553830576269661 +5.746,0.444498342890453,0.844400901225555,1.56597752544575,1.12998938096105,-1.24837912448086,0.427329502202311,0.552706805141146 +5.748,0.44380563765169,0.844507973688766,1.56615180285593,1.13100914292363,-1.24888679873822,0.426694170451102,0.551583394511462 +5.75,0.443111068621584,0.844619808691219,1.5663237220602,1.13203046166117,-1.24939585632396,0.426057485812794,0.550460481274031 +5.752,0.442415472276624,0.844735841455741,1.5664935577499,1.13305357252558,-1.24990611650823,0.425419769802936,0.549338178703723 +5.754,0.441719651867223,0.844855445596553,1.56666161624547,1.13407853169894,-1.25041740048134,0.424781291156091,0.548216582770026 +5.756,0.441024362221081,0.844977952652634,1.56682823445008,1.13510525426435,-1.25092953037995,0.424142268782059,0.54709577195841 +5.758,0.440380667692345,0.845107586723838,1.56697348116754,1.13609279523291,-1.25144634820472,0.423504760652303,0.545989535423053 +5.76,0.439786352451293,0.845246406349034,1.56710644734748,1.13705446023002,-1.25196880737151,0.42286006466908,0.544887244676217 +5.762,0.439235747187116,0.845394489712922,1.56723577497234,1.13800378551773,-1.25249517608473,0.422208299810491,0.543785062753518 +5.764,0.438722358879878,0.845550098268995,1.56736746330579,1.13895274239916,-1.2530232513534,0.421551854200061,0.542681342374718 +5.766,0.438239674780897,0.845710251678395,1.56750500019006,1.13991099657496,-1.25355107734459,0.420893466824977,0.541575393177401 +5.768,0.437781463172473,0.845871361350715,1.56765004815269,1.14088561290728,-1.25407713762085,0.420235614039407,0.540467092777921 +5.77,0.43734192162745,0.846029774971585,1.56780312581064,1.14188101918646,-1.25460036618071,0.419580311436522,0.539356681226936 +5.772,0.436915764788327,0.846182179578446,1.56796412705491,1.14289915904356,-1.25512009125785,0.418929057386617,0.538244606660681 +5.774,0.436498276648943,0.846325856248148,1.56813271673946,1.14393985196535,-1.25563589623933,0.418282729930495,0.537131470566047 +5.776,0.43608532397631,0.846458799498245,1.5683083977991,1.14500107559137,-1.25614769383203,0.417641885538917,0.536017773607337 +5.778,0.435673364108781,0.84657976367561,1.56849061068723,1.14607940418787,-1.25665559366201,0.417006684088978,0.53490396113259 +5.78,0.43525942939882,0.846688236455703,1.56867875359186,1.14717045822171,-1.25715984739854,0.416376938359594,0.533790414954758 +5.782,0.434841096462187,0.846784367588715,1.56887217589895,1.14826934399677,-1.25766079963611,0.415752173631859,0.532677463972758 +5.784,0.434416444274264,0.846868871983416,1.56907015961363,1.14937104894484,-1.25815885353748,0.415131706088156,0.531565397120382 +5.786,0.433984005699957,0.846942922323184,1.56927190549383,1.15047077563288,-1.25865444271408,0.414514721227379,0.530454481362474 +5.788,0.433542721531364,0.847008039582249,1.56947658763483,1.15156427596641,-1.25914794930228,0.413900225152654,0.529345038248651 +5.79,0.433091866321854,0.847065977462052,1.56968325693354,1.15264792635425,-1.25963981721147,0.413287406704581,0.528237309718607 +5.792,0.432631009957497,0.847118640130604,1.56989088562929,1.15371884090394,-1.26013046905687,0.412675542508552,0.527131560444834 +5.794,0.432159974173244,0.847168003773626,1.57009840863302,1.15477492177347,-1.26062028824082,0.412064007188989,0.526028094778884 +5.796,0.431678789943986,0.847216044416053,1.57030477000508,1.15581486240212,-1.26110960205753,0.411452282778162,0.524927262620964 +5.798,0.431187656292599,0.847264671636519,1.57050896345075,1.15683810423115,-1.26159867331892,0.410839975670965,0.523829452426393 +5.8,0.430686902577134,0.847315669611071,1.5707100662603,1.15784475723207,-1.26208769547661,0.410226826626027,0.522735081190206 +5.802,0.430176960640519,0.84737064576903,1.5709073199568,1.15883556242775,-1.26257673623526,0.40961259744513,0.521644637632882 +5.804,0.429658316023749,0.847430977272175,1.57110004647356,1.15981166359013,-1.26306586541052,0.408997345932603,0.520558529400621 +5.806,0.429131497646779,0.847497792697199,1.57128768118477,1.16077447906215,-1.26355509771377,0.408381270679872,0.519477156913292 +5.808,0.42859706477684,0.847571959105205,1.57146979004332,1.16172557951982,-1.26404439605061,0.407764662705361,0.518400912548118 +5.81,0.428055595339149,0.847654076195383,1.57164608383458,1.16266658469441,-1.26453367297343,0.407147866215324,0.517330176527499 +5.812,0.42750767520397,0.847744476415659,1.57181642197846,1.16359907351972,-1.26502279796971,0.406531258484942,0.516265305843115 +5.814,0.426953889736061,0.847843231681454,1.57198080849583,1.16452450987638,-1.2655116052326,0.405915234287216,0.51520662482812 +5.816,0.426394820167016,0.847950165674367,1.57213943519392,1.16544424637798,-1.26599984565045,0.405300091870132,0.514154474945548 +5.818,0.425831027544763,0.848064862280246,1.57229256533672,1.16635938660909,-1.26648732216316,0.404686266683528,0.513109065813888 +5.82,0.425263060716234,0.848186703371076,1.57244053875921,1.16727076247666,-1.26697383463981,0.40407419418104,0.512070557300178 +5.822,0.424691460154897,0.848314906300217,1.57258376510695,1.16817892950959,-1.26745918124921,0.403464275154951,0.511039070505594 +5.824,0.42411676015136,0.848448561493086,1.57272271837694,1.16908418462005,-1.26794315609724,0.40285685361559,0.510014695881441 +5.826,0.423539489240363,0.848586668222847,1.57285792499847,1.16998659412506,-1.26842555179721,0.402252215311235,0.508997493518752 +5.828,0.422960169941914,0.848728168735887,1.57298994799947,1.17088602833369,-1.26890616197288,0.40165059236215,0.507987494016085 +5.83,0.422379318793214,0.848871979194187,1.57311942026353,1.1717822554722,-1.2693847280048,0.401052079683687,0.506984758106901 +5.832,0.421797437792633,0.849017010046474,1.57324692767897,1.17267489124305,-1.26986106769939,0.40045686418477,0.505989236394256 +5.834,0.421215020917171,0.849162205905251,1.57337301416818,1.17356343875357,-1.27033501472053,0.399865116893939,0.505000857199884 +5.836,0.420632556182852,0.849306577771096,1.57349817839756,1.17444732787456,-1.27080641323098,0.399276975916367,0.504019545033588 +5.838,0.42005052540521,0.849449228597006,1.57362287336818,1.17532595798495,-1.27127511129055,0.398692539461581,0.503045232999643 +5.84,0.419469402061719,0.849589371526649,1.57374750201521,1.1761987347551,-1.27174096011692,0.398111874172792,0.502077865813914 +5.842,0.41884875983011,0.849706540535337,1.57387169253361,1.17702968087261,-1.27212009520027,0.397634389314147,0.501228305163484 +5.844,0.418275187556442,0.849830528404075,1.5739781062067,1.17784693953159,-1.27258737918926,0.397066182545842,0.500288691455202 +5.846,0.417714261046947,0.849959133400875,1.57409164520902,1.17866520838092,-1.27306200464222,0.396476095315626,0.499333563127777 +5.848,0.417156970773961,0.850089205302142,1.57421532593211,1.17948766136435,-1.27353138790307,0.395887327744795,0.498379746460325 +5.85,0.416561716404466,0.850198417116709,1.57434586822532,1.1802798374464,-1.27391257178985,0.39540234326905,0.497539021242119 +5.852,0.416011265915291,0.85031386105251,1.57446299958839,1.18106820919401,-1.27437476271912,0.394834366357313,0.496612041721517 +5.854,0.415433511863747,0.850413347806373,1.57458737846563,1.18183157016082,-1.27476118611041,0.3943447206824,0.495776933396479 +5.856,0.414901256713618,0.850522427027499,1.57470343113984,1.18259852452252,-1.27522643716326,0.393770473847489,0.494853129748238 +5.858,0.414379480130266,0.850636541379849,1.5748312072981,1.18338106437299,-1.27569255486034,0.393182515541779,0.493916279694603 +5.86,0.413859119399212,0.850751114222465,1.57496995333364,1.18417919668273,-1.27614837710503,0.392603356254426,0.492983937066051 +5.862,0.413301080341718,0.850844225739305,1.57511405052617,1.18495697454242,-1.27651680661871,0.39212922160208,0.492162152461174 +5.864,0.412783390622508,0.850941658342546,1.57524297558967,1.18573625042552,-1.27695827452305,0.391582084173863,0.491263168991955 +5.866,0.412238634045192,0.85102287885714,1.57537561224821,1.18649362642019,-1.27732610263148,0.391113475351715,0.490454744995966 +5.868,0.411735355556239,0.851112844179432,1.57549728888783,1.18725343275368,-1.27776607527982,0.390568470138327,0.489567078979239 +5.87,0.41124103350091,0.851208052597209,1.57562698690499,1.18802433589073,-1.27820549671957,0.390013307551272,0.488671072654019 +5.872,0.410747527904432,0.851304934559138,1.5757642349216,1.18880445868301,-1.2786342993123,0.389468393875277,0.48778289636018 +5.874,0.410218793592748,0.851383468114579,1.57590401876042,1.18955891346508,-1.27898087436426,0.389023224201358,0.487001176865507 +5.876,0.40972771035892,0.851468331621599,1.57602742443964,1.19030765501142,-1.27939501446754,0.38851043458645,0.486150426770236 +5.878,0.409245446416159,0.851557372456041,1.57615282282024,1.19105799299987,-1.27980958669906,0.387988074637866,0.485294807774057 +5.88,0.408764945594898,0.851648322716455,1.57628128694903,1.19180835568947,-1.28021530995954,0.387474126113474,0.484448707503314 +5.882,0.408284963939116,0.851739371088422,1.57641011067578,1.19255513861513,-1.28061152943741,0.386972201485538,0.483615830998109 +5.884,0.407805802244748,0.851829431357966,1.5765366340523,1.19329450938785,-1.28099916034714,0.386481992777529,0.482797161047812 +5.886,0.407296523109639,0.851902093642099,1.57665855409866,1.19399503082637,-1.28131384387902,0.38608128567317,0.482079702918871 +5.888,0.406824699954935,0.851981908655574,1.57676127110855,1.19467721777816,-1.28169331225509,0.385614402143762,0.481300425066721 +5.89,0.406333288042261,0.852052280474821,1.57686337682678,1.19532287847018,-1.28201161883804,0.385212156439642,0.480602100651384 +5.892,0.405880488452342,0.852135213578758,1.57695393216754,1.19595585461031,-1.28239229158295,0.384741864642395,0.479839529291725 +5.894,0.405438687616265,0.852227493142245,1.57704997298596,1.19658613386298,-1.28277287511416,0.384261236567635,0.479072991620459 +5.896,0.405000944738846,0.852325430525165,1.57715149815139,1.19721502586148,-1.28314440836391,0.38378833944455,0.478316068910951 +5.898,0.404565807934329,0.852425761235881,1.57725495453669,1.19784146946958,-1.28350606081604,0.383327264797672,0.477572434633045 +5.9,0.40410517534696,0.852511685766009,1.57735660322884,1.19843868684297,-1.28380025839957,0.382948924544325,0.476920613804451 +5.902,0.403678837511184,0.852603643830474,1.57744210066856,1.19902576880139,-1.28414988150304,0.38251428540835,0.476215638405281 +5.904,0.403263145587739,0.852699580328293,1.57752775215339,1.19961054041133,-1.28449947290581,0.382071950186448,0.475510076493401 +5.906,0.402852237070087,0.852797213572947,1.57761534567744,1.20019345111675,-1.28484120176623,0.381637258282204,0.474815383681778 +5.908,0.40244496496067,0.852894556175546,1.57770337435011,1.20077305781103,-1.28517427354852,0.381213577150354,0.474134307768115 +5.91,0.402041418557988,0.852990176720361,1.57779019707457,1.20134744216481,-1.28549921379381,0.380800962367112,0.473467390207075 +5.912,0.40161676392754,0.853070177614288,1.57787435862262,1.20189215836034,-1.28576429133688,0.380462487501958,0.472884174091558 +5.914,0.401224776082344,0.853154016987608,1.57794442857977,1.20242463590803,-1.28607977213254,0.380072336951394,0.472253520541166 +5.916,0.400844165387429,0.853240443882226,1.57801594515901,1.20295206693287,-1.28639555675295,0.379674598174798,0.471622297980616 +5.918,0.400469593344594,0.853327725467815,1.57809089822751,1.2034752632682,-1.28670440441488,0.379283161632264,0.471000505113489 +5.92,0.400099917704357,0.853414200409464,1.57816799330366,1.20399347866031,-1.28700543141012,0.378901112334566,0.470390449298901 +5.922,0.399735077634861,0.853498593388074,1.57824558343805,1.20450556812924,-1.28729902504792,0.378528621779984,0.46979252030979 +5.924,0.399375283311917,0.853580098368072,1.5783224570433,1.20501035465809,-1.28758579315064,0.378165124338493,0.46920662617354 +5.926,0.399020803909145,0.853658333174734,1.57839793543645,1.20550677221685,-1.28786631127011,0.377809915880403,0.468632526906814 +5.928,0.398671907886236,0.853733241260623,1.57847177739019,1.20599395114879,-1.28814104703631,0.377462300729876,0.468069922516339 +5.93,0.398328840554888,0.853804981721062,1.57854399606894,1.20647122755784,-1.28841039643851,0.377121705185471,0.467518430758738 +5.932,0.397991815438861,0.853873839237785,1.57861474199421,1.20693816895036,-1.28867466537376,0.37678763629097,0.466977646713374 +5.934,0.397640303862422,0.853929310265013,1.57868388909777,1.20737598594248,-1.28889090716431,0.376512528710787,0.466504526415498 +5.936,0.3973181846452,0.853988234387441,1.57874251256777,1.20780071263502,-1.2891495205293,0.37619256565866,0.465990835974999 +5.938,0.396987667895421,0.854039472768304,1.57880323213996,1.20820158354909,-1.28936724327193,0.375915873142012,0.465530695156654 +5.94,0.396686292459155,0.854097724411792,1.57885871118932,1.20859600195641,-1.28962504467024,0.375594308191632,0.465028250536889 +5.942,0.396395535442442,0.854160741366664,1.57891993125391,1.2089911589475,-1.28988177782093,0.375266854741614,0.464523296440805 +5.944,0.396110480595823,0.85422599395434,1.57898655400728,1.20938849879474,-1.29013158323534,0.374945577568301,0.464024698338488 +5.946,0.395829806970635,0.854291302675076,1.57905591007928,1.20978769612661,-1.29037397732034,0.374633235244674,0.463534791915382 +5.948,0.395553160295275,0.854355134654918,1.5791255604501,1.21018770472649,-1.29060952099013,0.374329984094451,0.463054288399128 +5.95,0.39528046992447,0.854416627280398,1.57919388033718,1.21058713497847,-1.29083893742205,0.374035288484527,0.462583413901248 +5.952,0.395011766744947,0.854475475770364,1.57926003260099,1.21098446381625,-1.29106288302796,0.373748437805028,0.462122177850996 +5.954,0.394747126387879,0.854531771714585,1.57932373986738,1.21137816014103,-1.29128192184924,0.373468740433563,0.461670410794074 +5.956,0.394486644909404,0.854585848314261,1.57938507699886,1.21176680565872,-1.29149650097763,0.373195533999591,0.461227833088118 +5.958,0.394230421887055,0.854638149382548,1.57944429799926,1.21214918581249,-1.2917069634788,0.372928195649638,0.460794098810444 +5.96,0.393962008820972,0.854680356098815,1.57950145145528,1.21250937843198,-1.29187899500214,0.372708786938091,0.46041481057019 +5.962,0.393716441771627,0.854726219287007,1.57954947242818,1.21285968901417,-1.29208510984662,0.372453395055028,0.460003019141912 +5.964,0.393479440710697,0.854775299009435,1.57959884538156,1.213205188074,-1.29229204332095,0.372191761701012,0.459589790832557 +5.966,0.393247257293141,0.854826613242001,1.57965080379234,1.21354691963043,-1.29249495023852,0.371933240577242,0.459181690982654 +5.968,0.393018900515515,0.854879087095786,1.57970428739356,1.2138849304867,-1.29269320797661,0.371680006159849,0.458780247482999 +5.97,0.392778828150722,0.854923684006556,1.57975776866688,1.21420515739391,-1.29285506002999,0.371471709244791,0.458428316376243 +5.972,0.392559239858638,0.854972132911187,1.57980347572713,1.21451936962489,-1.29304769531049,0.371230791068599,0.458045910118161 +5.974,0.392346868149398,0.855023344822589,1.57985031376705,1.21483228430185,-1.29324058858205,0.37098484251106,0.45766203461239 +5.976,0.392138225862337,0.855076021880275,1.57989904649647,1.2151447256681,-1.2934294413256,0.370742445319476,0.457282949347415 +5.978,0.391932401326645,0.855129001090722,1.57994860384569,1.21545644494593,-1.29361382504258,0.370505538601383,0.456910150604639 +5.98,0.391729165627124,0.855181431014239,1.57999786696103,1.21576683967969,-1.29379404027704,0.370274223707206,0.456543959579554 +5.982,0.39152847997832,0.855232794378239,1.58004609606453,1.21607519032505,-1.29397050306355,0.370048129830899,0.45618436837597 +5.984,0.391330365579172,0.855282855114162,1.58009293318996,1.21638075644007,-1.29414361240912,0.369826806325416,0.455831225790318 +5.986,0.391134865933151,0.855331581606585,1.58013831290671,1.21668285018654,-1.2943137008197,0.369609800969044,0.455484308096182 +5.988,0.390942031168017,0.855379068187211,1.58018235283089,1.21698088762318,-1.29448103253745,0.369396687858349,0.455143343465341 +5.99,0.390751908638098,0.855425469469648,1.58022524847454,1.21727441006958,-1.29464582698115,0.369187097760099,0.454808017031319 +5.992,0.390564537346711,0.855470955183679,1.58026721485664,1.21756310600755,-1.29480825764093,0.368980698968885,0.45447800599788 +5.994,0.390366996095871,0.855508717742075,1.58030827404987,1.21783502737959,-1.29494128299973,0.368810864374935,0.454189163526259 +5.996,0.390186683496903,0.855549451703488,1.58034280358432,1.21810052337263,-1.29510181531852,0.36861137587755,0.453873088447299 +5.998,0.39001234519809,0.855592637494992,1.58037900604078,1.21836391780817,-1.29526367544327,0.368405951024198,0.453554282195723 +6,0.389841011446779,0.855637365479371,1.58041781556893,1.21862634406346,-1.29542303887,0.368202042248166,0.453237920602785 +6.002,0.389671876072542,0.855682693094228,1.58045837794304,1.2188880706503,-1.29557940724155,0.368001438130487,0.452925199020647 +6.004,0.389504697164804,0.855727855140379,1.5804996585264,1.21914906389666,-1.29573294103863,0.367804357209142,0.452616373383643 +6.006,0.389339386336005,0.855772332283796,1.58054087746301,1.21940915384832,-1.29588393354691,0.367610607365567,0.452311460712811 +6.008,0.389175903972967,0.855815841220051,1.58058156565047,1.21966809525814,-1.29603268681439,0.367419911499027,0.452010383046138 +6.01,0.389014230990813,0.855858290105418,1.58062151820505,1.21992561584433,-1.29617946421018,0.367231976262106,0.451713009904959 +6.012,0.38885435790347,0.85589972130211,1.5806607146854,1.22018145362829,-1.29632448329923,0.367046515848125,0.451419167717469 +6.014,0.388696278158316,0.855940256976709,1.5806992346347,1.22043537827409,-1.2964679286988,0.366863272829594,0.451128640521959 +6.016,0.388539983565621,0.855980056573444,1.58073720353853,1.22068721569695,-1.29660994989628,0.366682004615649,0.450841194731048 +6.018,0.38838546041892,0.856019285589933,1.5807747488363,1.22093685721135,-1.29675067571322,0.366502492749331,0.450556585090127 +6.02,0.38823268719724,0.856058096952441,1.58081198045347,1.22118426701803,-1.29689021666094,0.366324535044333,0.450274570649211 +6.022,0.38808163313892,0.856096621329578,1.58084897711309,1.22142947668416,-1.29702867686444,0.366147954502474,0.449994914968853 +6.024,0.387932258193288,0.856134965222088,1.58088579078094,1.22167258258962,-1.29716615119202,0.365972587668771,0.449717397795616 +6.026,0.387784513191311,0.856173212299478,1.58092244836271,1.2219137337967,-1.29730273315647,0.36579829170902,0.449441810047571 +6.028,0.387638340780818,0.856211427512417,1.58095896260765,1.22215312428564,-1.29743851075923,0.365624934441685,0.449167959140967 +6.03,0.387493676219333,0.856249660992812,1.5809953355387,1.22239097832248,-1.29757357262351,0.365452401034755,0.448895660802182 +6.032,0.387350448590493,0.85628795238018,1.58103156823263,1.22262754255039,-1.29770800247544,0.365280583136207,0.448624743099304 +6.034,0.387208581628795,0.856326333557696,1.58106766156285,1.22286307291135,-1.29784188459273,0.365109384943701,0.448355037909327 +6.036,0.387067994791553,0.856364831230742,1.58110362230573,1.22309782887655,-1.29797529860827,0.364938712985337,0.448086384667665 +6.038,0.38692860203421,0.856403466956036,1.58113946064691,1.22333206152125,-1.2981083210837,0.364768487215101,0.447818627829491 +6.04,0.386790308395993,0.856442255395123,1.58117519286452,1.22356600491673,-1.29824101127062,0.36459864308277,0.447551634876628 +6.042,0.386653011062592,0.856481202811238,1.58121083447159,1.22379986257237,-1.29837341708591,0.364429139114204,0.447285292298598 +6.044,0.386516603140644,0.85652030798149,1.58124640095244,1.22403380330802,-1.29850557442133,0.364259942454384,0.447019507736581 +6.046,0.386380975943025,0.856559562846584,1.58128190311139,1.22426795406701,-1.29863751406427,0.36409103332947,0.446754202763738 +6.048,0.386246022404269,0.856598954812317,1.58131735019425,1.22450240212166,-1.29876926000939,0.363922391573177,0.44648931462436 +6.05,0.386111638570721,0.856638468027185,1.58135274688795,1.22473719353832,-1.29890083508427,0.36375400305507,0.446224789383105 +6.052,0.385977726105355,0.856678085694782,1.58138809727378,1.22497234001711,-1.29903225809131,0.363585848326481,0.445960584254397 +6.054,0.385844192898909,0.85671779096505,1.5814234020851,1.2252078209051,-1.29916354850852,0.363417910858839,0.445696661381774 +6.056,0.385710954739968,0.856757568633258,1.58145866258197,1.22544359247338,-1.29929472289199,0.363250167191486,0.445432990840041 +6.058,0.385577935168822,0.856797405339949,1.58149387757572,1.22567959130356,-1.29942579905405,0.36308259636319,0.445169545031279 +6.06,0.385445066471927,0.856837290593593,1.58152904703362,1.2259157439683,-1.29955679208134,0.362915170961879,0.444906302266116 +6.062,0.385312288961238,0.856877216378026,1.58156416887548,1.22615196999945,-1.29968771827687,0.362747867175217,0.444643241639102 +6.064,0.385179551488814,0.856917177688371,1.58159924241953,1.22638819049452,-1.29981859101683,0.362580656206282,0.444380347024336 +6.066,0.385046810346806,0.856957171768526,1.58163426509149,1.22662432953005,-1.29994942462796,0.362413514481757,0.444117602253589 +6.068,0.384914029489645,0.856997198381184,1.58166923583447,1.22686032090037,-1.30008023022169,0.36224641506124,0.443854995345127 +6.07,0.38478117922954,0.857037258873326,1.58170415182062,1.2270961075164,-1.30021101960318,0.36207933769656,0.443592513830697 +6.072,0.384648236323012,0.857077356347529,1.5817390118786,1.2273316461163,-1.30034180115479,0.361912260011431,0.443330149086098 +6.074,0.384515182599573,0.857117494688678,1.5817738132274,1.22756690474733,-1.3004725838212,0.361745167254073,0.443067891708481 +6.076,0.384382005028578,0.857157678740252,1.58180855491604,1.22780186574926,-1.30060337307284,0.361578043165901,0.442805735872286 +6.078,0.384248694377018,0.857197913370043,1.58184323455921,1.22803652177353,-1.30073417497696,0.361410879395783,0.442543674710136 +6.08,0.384115245332051,0.8572382037096,1.58187785176474,1.22827087759337,-1.3008649922395,0.361243666078146,0.44228170466577 +6.082,0.38398165524487,0.857278554300472,1.58191240484613,1.22850494526606,-1.30099582834793,0.361076400964075,0.442019820867655 +6.084,0.383847924348723,0.857318969426144,1.58194689421903,1.22873874538509,-1.30112668367064,0.360909079792328,0.441758021478104 +6.086,0.383714054613498,0.857359452357306,1.58198131907685,1.22897230197352,-1.30125755964419,0.360741705238661,0.441496303066428 +6.088,0.383580050071229,0.857400005786447,1.58201568075121,1.22920564371358,-1.30138845489924,0.360574277186063,0.44123466496605 +6.09,0.383445915782112,0.85744063117424,1.58204997935,1.22943879903116,-1.30151936946166,0.36040680160328,0.440973104659162 +6.092,0.383311658260203,0.857481329282352,1.58208421708735,1.22967179767818,-1.30165030087404,0.360239280813721,0.440711622155333 +6.094,0.383177284536371,0.85752209961028,1.58211839489131,1.22990466629005,-1.30178124838447,0.360071722397629,0.4404502153976 +6.096,0.383042802665901,0.8575629410107,1.58215251571364,1.23013743051297,-1.30191220903938,0.359904129533047,0.44018888467268 +6.098,0.382908220866597,0.857603851196808,1.58218658111721,1.23037011113852,-1.30204318184302,0.359736509985078,0.439927628043575 +6.1,0.382773548086073,0.857644827417179,1.58222059457613,1.23060272680445,-1.30217416380751,0.359568866558931,0.439666445796057 +6.102,0.38263879319226,0.857685866008572,1.58225455805223,1.23083529066798,-1.30230515407646,0.359401206205184,0.439405335897648 +6.104,0.382503965579447,0.857726963104291,1.58228847529446,1.23106781359006,-1.3024361499285,0.359233530593193,0.439144298479783 +6.106,0.382369074391755,0.85776811420663,1.58232234841205,1.23130030121764,-1.30256715086732,0.359065845331224,0.438883331318779 +6.108,0.382234129151415,0.857809314903855,1.58235618117987,1.23153275749706,-1.30269815458335,0.358898150644404,0.438622434348925 +6.11,0.38209913900122,0.857850560439333,1.58238997561418,1.23176518199726,-1.30282916101851,0.358730450687686,0.438361605158328 +6.112,0.381964113344167,0.857891846416461,1.58242373528874,1.23199757358291,-1.30296016829555,0.358562744298506,0.438100843525643 +6.114,0.381829061096703,0.857933168346788,1.58245746191752,1.23222992781651,-1.30309117676852,0.358395034370043,0.437840146922573 +6.116,0.38169399133418,0.857974522328203,1.58249115868499,1.23246224064382,-1.303222184931,0.358227318644576,0.437579515066088 +6.118,0.381558912551638,0.858015904560703,1.58252482683892,1.23269450574784,-1.30335319346311,0.358059599113346,0.437318945419657 +6.12,0.381423833313607,0.858057311989605,1.58255846903691,1.23292671814247,-1.30348420112868,0.357891872820047,0.437058437753363 +6.122,0.381288761522549,0.858098741783916,1.58259208595119,1.23315887139968,-1.30361520882759,0.357724141259142,0.436797989637337 +6.124,0.381153705073998,0.858140191942311,1.58262567963236,1.23339096109737,-1.30374621548931,0.357556401167045,0.436537601003723 +6.126,0.381018671134481,0.858181660734495,1.58265925012674,1.23362298188934,-1.30387722213611,0.357388653899873,0.436277269627784 +6.128,0.380883666803933,0.858223147272585,1.58269279885699,1.23385493079785,-1.30400822777735,0.357220896199678,0.436016995687779 +6.13,0.380748698405168,0.858264650920021,1.58272632525135,1.23408680413527,-1.30413923348588,0.357053129542485,0.43575677723135 +6.132,0.380613772155251,0.858306171834461,1.58275983013957,1.23431860066442,-1.30427023829445,0.356885350876032,0.435496614731562 +6.134,0.38047889346789,0.85834771035155,1.58279331239206,1.23455031840598,-1.30440124328514,0.356717561937448,0.435236506538145 +6.136,0.380344067634483,0.858389267507499,1.58282677232857,1.23478195770777,-1.30453224748703,0.356549759965833,0.434976453429843 +6.138,0.380209299139605,0.858430844406379,1.58286020836415,1.23501351798282,-1.30466325197684,0.356381946994858,0.434716454051614 +6.14,0.380074592351246,0.858472442731301,1.58289362042729,1.23524500073323,-1.30479425577577,0.356214120547552,0.434456509464852 +6.142,0.379939950848335,0.858514064104075,1.58292700660891,1.23547640626284,-1.3049252599588,0.356046282912147,0.434196618572623 +6.144,0.379805378118586,0.858555710593587,1.5829603665861,1.23570773669573,-1.30505626354828,0.355878431827748,0.43393678267016 +6.146,0.379670876896036,0.858597384075874,1.5829936982702,1.23593899269812,-1.30518726762957,0.355710569752198,0.433677000860662 +6.148,0.379536449864166,0.858639086747136,1.58302700123234,1.23617017652015,-1.30531827123906,0.355542694546503,0.433417274608735 +6.15,0.379402099000838,0.858680820490842,1.58306027334667,1.23640128874881,-1.30544927548449,0.355374808742108,0.433157603149272 +6.152,0.379267826284054,0.858722587401113,1.58309351421433,1.23663233138821,-1.30558027942597,0.355206910229833,0.432897988046349 +6.154,0.379133633041563,0.858764389161616,1.58312672179875,1.2368633046523,-1.30571128419997,0.355039001531559,0.432638428597351 +6.156,0.378999520656658,0.858806227583093,1.58315989584521,1.23709421008676,-1.30584228889281,0.354871080496857,0.43237892639937 +6.158,0.378865489919975,0.858848103996768,1.58319303450589,1.23732504739966,-1.30597329466819,0.354703149581452,0.432119480750189 +6.16,0.378731541733125,0.85889001980779,1.58322613775351,1.2375558176192,-1.30610430063316,0.354535206552323,0.431860093223597 +6.162,0.378597676460675,0.858931975903926,1.5832592039948,1.23778651995349,-1.30623530796983,0.354367253773046,0.431600763068226 +6.164,0.378463894629952,0.858973973224799,1.58329223347766,1.23801715497334,-1.30636631579437,0.354199288916337,0.431341491792523 +6.166,0.378330196281829,0.859016012184929,1.58332522489296,1.23824772148927,-1.30649732529363,0.35403131425479,0.431082278561846 +6.168,0.378196581665631,0.859058093257089,1.58335817877564,1.23847821974726,-1.30662833557815,0.353863327378772,0.430823124793224 +6.17,0.378063050587945,0.859100216407377,1.58339109409588,1.23870864831112,-1.30675934782454,0.353695330490275,0.430564029550595 +6.172,0.377929603102123,0.859142381689845,1.58342397165539,1.23893900726052,-1.30689036112327,0.353527321123781,0.430304994149012 +6.174,0.377796238854869,0.859184588690371,1.58345681066965,1.23916929506931,-1.30702137662754,0.353359301440801,0.430046017547523 +6.176,0.377662957770289,0.859226837129019,1.58348961216143,1.23939951179795,-1.30715239339655,0.353191268951607,0.429787100962127 +6.178,0.377529759394385,0.859269126308997,1.58352237553627,1.23962965596201,-1.30728341255117,0.353023225808422,0.429528243255557 +6.18,0.377396643573935,0.859311455722982,1.58355510197552,1.23985972771463,-1.30741443311313,0.352855169526513,0.4292694455581 +6.182,0.377263609799291,0.859353824503439,1.5835877910075,1.24008972570269,-1.3075454561676,0.35268710227467,0.429010706653438 +6.184,0.377130657878544,0.859396232029317,1.58362044390231,1.24031965023852,-1.30767648069821,0.352519021594889,0.428752027606367 +6.186,0.376997787279167,0.859438677374392,1.58365306024095,1.24054950014402,-1.30780750775652,0.352350929689489,0.428493407143857 +6.188,0.376864997797997,0.859481159911273,1.58368564131396,1.24077927591304,-1.30793853629258,0.352182824139288,0.428234846288777 +6.19,0.376732288902293,0.859523678755096,1.58371818669043,1.24100897654596,-1.3080695673308,0.352014707187357,0.427976343735398 +6.192,0.376599660396073,0.859566233362569,1.58375069762207,1.24123860270546,-1.30820059979586,0.351846576456093,0.427717900488358 +6.194,0.376467111761113,0.859608822969206,1.58378317361341,1.24146815354481,-1.30833163469445,0.351678434228033,0.427459515231996 +6.196,0.376334642820138,0.859651447182047,1.58381561583235,1.24169762986044,-1.30846267093596,0.351510278162524,0.427201188973966 +6.198,0.37620225307822,0.859694105409558,1.58384802368236,1.24192703091708,-1.30859370951973,0.351342110574262,0.426942920407964 +6.2,0.376069942383234,0.859736797447601,1.58388039821984,1.2421563576001,-1.30872474935012,0.351173929150328,0.426684710561607 +6.202,0.375937710268042,0.859779522902005,1.58391273872843,1.24238560924024,-1.30885579142877,0.351005736227148,0.426426558152298 +6.204,0.375805556608545,0.859822281768213,1.58394504614308,1.24261478676797,-1.30898683466382,0.350837529508584,0.426168464239203 +6.206,0.375673480966948,0.85986507384731,1.58397731962607,1.24284388953946,-1.30911788006692,0.3506693113419,0.425910427572182 +6.208,0.37554148324768,0.859907899320428,1.58400955999708,1.24307291849431,-1.30924892655632,0.350501079437419,0.42565244924786 +6.21,0.37540956304196,0.859950758159595,1.58404176631013,1.24330187298365,-1.30937997515858,0.350332836143897,0.42539452805172 +6.212,0.375277720281782,0.859993650698453,1.5840739392887,1.24353075393163,-1.30951102480547,0.350164579170018,0.425136665118422 +6.214,0.375145954585953,0.860036577039616,1.58410607790251,1.24375956066567,-1.30964207654038,0.349996310859388,0.424878859267278 +6.216,0.375014265912291,0.860079537623473,1.58413818280658,1.24398829408148,-1.30977312930912,0.349828028913924,0.424621111667072 +6.218,0.374882653905244,0.860122532633854,1.58417025291667,1.24421695347506,-1.30990418417112,0.349659735668499,0.424363421165215 +6.22,0.374751118546411,0.860165562566681,1.58420228885114,1.2444455397105,-1.31003524008427,0.349491428816124,0.424105788957403 +6.222,0.374619659503818,0.860208627635612,1.58423428950395,1.24467405205296,-1.31016629812114,0.349323110682136,0.423848213910781 +6.224,0.374488276780825,0.860251728342105,1.58426625548832,1.24490249133862,-1.31029735724805,0.349154778950976,0.423590697238785 +6.226,0.374356970067107,0.860294864882428,1.58429818570639,1.24513085680769,-1.31042841854649,0.34898643593974,0.423333237818659 +6.228,0.374225739385981,0.860338037720333,1.5843300807938,1.24535914927572,-1.31055948098667,0.348818079326317,0.4230758368718 +6.23,0.374094584447107,0.86038124699643,1.58436193968543,1.24558736796612,-1.31069054565432,0.348649711422108,0.422818493275933 +6.232,0.373963505292249,0.860424493104227,1.58439376306043,1.2458155136822,-1.31082161151887,0.348481329901302,0.422561208251236 +6.234,0.373832501649683,0.860467776102403,1.58442554990352,1.2460435856386,-1.31095267966586,0.348312937072584,0.422303980667413 +6.236,0.373701573578389,0.860511096294523,1.58445730095034,1.24627158463381,-1.3110837490599,0.348144530609374,0.422046811735797 +6.238,0.373570720824149,0.860554453644288,1.58448901524429,1.24649950988029,-1.31121482078271,0.347976112820402,0.421789700311482 +6.24,0.373439943462138,0.860597848358802,1.5845206935822,1.24672736217722,-1.31134589379102,0.347807681380793,0.421532647591525 +6.242,0.37330924125468,0.860641280306497,1.58455233506685,1.24695514073929,-1.31147696916032,0.347639238601432,0.421275652412219 +6.244,0.37317861429222,0.860684749603475,1.5845839405533,1.24718284636965,-1.31160804583766,0.34747078216085,0.421018715953409 +6.246,0.373048062352697,0.8607282560335,1.58461550919748,1.2474104782875,-1.31173912489115,0.347302314373355,0.420761837030915 +6.248,0.372917585540863,0.860771799636705,1.58464704190356,1.24763803730135,-1.31187020525766,0.347133832921729,0.420505016806917 +6.25,0.372787183649257,0.860815380130853,1.58467853786915,1.24786552263546,-1.31200128799801,0.346965340124129,0.420248254077448 +6.252,0.372656856795838,0.860858997501575,1.58470999803423,1.24809293510365,-1.31213237203954,0.346796833667644,0.419991549988747 +6.254,0.372526604786534,0.860902651424043,1.58474142162352,1.24832027393469,-1.3122634584369,0.346628315874006,0.419734903319699 +6.256,0.372396427751185,0.860946341853874,1.58477280959749,1.24854753994682,-1.31239454610941,0.346459784434064,0.419478315204001 +6.258,0.372266325507656,0.860990068448415,1.58480416119236,1.24877473237228,-1.31252563610736,0.34629124167236,0.419221784407412 +6.26,0.372136298196087,0.861033831157549,1.58483547737377,1.24900185203252,-1.31265672734411,0.346122685282586,0.418965312055548 +6.262,0.372006345644572,0.861077629643901,1.58486675737483,1.24922889816207,-1.31278782086784,0.345954117591063,0.418708896905793 +6.264,0.371876468001724,0.861121463872945,1.58489800215276,1.2494558715845,-1.31291891558823,0.345785536293258,0.418452540080561 +6.266,0.371746665103947,0.861165333531636,1.58492921092542,1.24968277153558,-1.31305001255357,0.345616943716191,0.418196240333707 +6.268,0.371616937106328,0.861209238617432,1.58496038463107,1.24990959884013,-1.31318111067211,0.345448337556061,0.417939998789119 +6.27,0.371487283851522,0.861253178855063,1.5849915224636,1.25013635273441,-1.31331221099431,0.345279720139612,0.417683814201522 +6.272,0.371357705499014,0.861297154284293,1.58502262533558,1.25036303404387,-1.3134433124288,0.345111089162894,0.417427687700267 +6.274,0.371228201895636,0.861341164674779,1.58505369241221,1.25058964200478,-1.31357441602989,0.344942446951604,0.417171618044451 +6.276,0.371098773203229,0.861385210112592,1.58508472457758,1.25081617744278,-1.31370552070798,0.344773791200998,0.416915606371839 +6.278,0.370969419270829,0.8614292904133,1.5851157209673,1.25104263959381,-1.3138366275223,0.344605124235204,0.41665965144826 +6.28,0.370840140260758,0.861473405707457,1.58514668243793,1.25126902928346,-1.31396773538585,0.344436443748294,0.41640375442163 +6.282,0.370710936022501,0.861517555852179,1.58517760809804,1.25149534574706,-1.31409884536332,0.344267752062556,0.416147914065618 +6.284,0.370581806717251,0.861561741015941,1.58520849878059,1.25172158980987,-1.31422995637055,0.344099046870726,0.415892131538789 +6.286,0.370452752193503,0.861605961089008,1.58523935357223,1.25194776070639,-1.31436106947769,0.34393033049321,0.415636405622583 +6.288,0.370323772610069,0.861650216267932,1.58527017328839,1.25217385926126,-1.31449218360317,0.343761600621454,0.415380737485602 +6.29,0.370194867813389,0.861694506465254,1.58530095700058,1.25239988470783,-1.31462329982213,0.343592859574111,0.415125125915977 +6.292,0.370066037959034,0.861738831894099,1.58533170551386,1.25262583786989,-1.31475441705497,0.343424105041531,0.414869572090868 +6.294,0.369937282890739,0.861783192477548,1.58536241789197,1.25285171797934,-1.31488553638102,0.343255339340864,0.414614074803285 +6.296,0.369808602760378,0.861827588433697,1.58539309493693,1.25307752585878,-1.31501665672176,0.343086560161658,0.414358635236884 +6.298,0.369679997408717,0.861872019685029,1.58542373571172,1.25330326073844,-1.31514777915974,0.342917769819874,0.41410325218733 +6.3,0.369551466983858,0.861916486444241,1.58545434102193,1.25352892343949,-1.31527890261652,0.342748966004589,0.413847926842452 +6.302,0.369423011323682,0.86196098862386,1.58548490993581,1.25375451319028,-1.31541002817686,0.342580151030919,0.413592657998239 +6.304,0.369294630572756,0.862005526423031,1.58551544326772,1.25398003081044,-1.31554115476138,0.342411322587803,0.41333744684442 +6.306,0.36916632456644,0.862050099737536,1.58554594009555,1.2542054755264,-1.31567228345611,0.342242482989839,0.41308229217515 +6.308,0.369038093446236,0.862094708747629,1.58557640124599,1.25443084815626,-1.31580341317987,0.342073629926131,0.412827195180074 +6.31,0.36890993704554,0.862139353328501,1.58560682580912,1.25465614792459,-1.31593454501918,0.34190476571104,0.412572154649754 +6.312,0.368781855503401,0.86218403363916,1.58563721462555,1.25488137564815,-1.31606567789038,0.341735888034096,0.41231717177224 +6.314,0.368653848651903,0.862228749533295,1.58566756679832,1.25510653054991,-1.31619681287994,0.34156699920964,0.412062245333273 +6.316,0.368525916628314,0.862273501149112,1.58569788318178,1.25533161344557,-1.3163279489013,0.341398096927818,0.411807376518371 +6.318,0.368398059264069,0.862318288320467,1.58572816289098,1.25555662355686,-1.31645908704055,0.341229183503109,0.411552564107818 +6.32,0.368270276695299,0.862363111167522,1.58575840679245,1.25578156169887,-1.31659022620807,0.341060256626392,0.411297809284253 +6.322,0.368142568753393,0.862407969507975,1.58578861401101,1.25600642709252,-1.3167213674895,0.340891318612371,0.411043110822438 +6.324,0.3680149355739,0.862452863448343,1.58581878542263,1.2562312205527,-1.31685250979221,0.340722367152709,0.410788469902329 +6.326,0.367887376988658,0.862497792795114,1.58584892015889,1.25645594130001,-1.31698365420157,0.340553404562353,0.410533885293595 +6.328,0.367759893133054,0.862542757646449,1.58587901910191,1.2566805901496,-1.31711479962217,0.340384428533745,0.410279358174135 +6.33,0.367632483839724,0.862587757803081,1.58590908138659,1.25690516632214,-1.3172459471394,0.340215441382037,0.410024887309322 +6.332,0.367505149244166,0.862632793360262,1.58593910789779,1.25712967063345,-1.31737709565546,0.340046440800392,0.409770473875921 +6.334,0.367377889180007,0.862677864118234,1.58596909777042,1.25735410230458,-1.31750824625619,0.339877429104089,0.409516116636029 +6.336,0.367250703782979,0.862722970174286,1.58599905188891,1.25757846215228,-1.3176393978418,0.339708403986918,0.40926181676634 +6.338,0.367123592887749,0.862768111332678,1.58602896938529,1.25780274939823,-1.31777055149903,0.339539367764175,0.409007573026764 +6.34,0.366996556630272,0.862813287696697,1.58605885114105,1.25802696486025,-1.3179017061266,0.339370318130166,0.408753386594993 +6.342,0.36686959484619,0.862858499077963,1.58608869628315,1.25825110776073,-1.31803286281256,0.339201257400084,0.408499256229767 +6.344,0.36674270767156,0.862903745588439,1.58611850568838,1.25847517891857,-1.3181640204545,0.339032183268631,0.40824518311072 +6.346,0.366615894942844,0.862949027049092,1.58614827847734,1.25869917755681,-1.31829518014217,0.338863098050779,0.407991165996276 +6.348,0.366489156796023,0.862994343581839,1.58617801552123,1.25892310449538,-1.31842634077236,0.338693999441513,0.40773720606874 +6.35,0.366362493068176,0.863039695017593,1.58620771593385,1.25914695895784,-1.31855750343677,0.33852488975548,0.407483302086823 +6.352,0.366235903894995,0.863085081488182,1.58623738058076,1.2593707417649,-1.31868866703164,0.338355766687856,0.40722945523597 +6.354,0.36610938911396,0.863130502833827,1.5862670085693,1.25959445214043,-1.31881983265073,0.338186632552883,0.406975664275509 +6.356,0.365982948860267,0.863175959195104,1.58629660076009,1.25981809090574,-1.31895099918982,0.338017485045859,0.406721930394214 +6.358,0.365856582971603,0.863221450419927,1.58632615625499,1.26004165728474,-1.31908216774483,0.337848326480567,0.406468252352091 +6.36,0.365730291582495,0.863266976655642,1.58635567591087,1.26026515209907,-1.31921333721102,0.337679154552395,0.406214631341173 +6.362,0.365604074530685,0.863312537755605,1.58638515882551,1.26048857457246,-1.31934450868641,0.337509971574645,0.405961066121968 +6.364,0.365477931949908,0.86335813387149,1.58641460585357,1.26071192552662,-1.31947568106567,0.337340775242786,0.40570755788949 +6.366,0.365351863677867,0.863403764859554,1.58644401609032,1.26093520418487,-1.31960685544876,0.337171567869643,0.40545410540439 +6.368,0.365225869847441,0.863449430873246,1.58647339038982,1.26115841136883,-1.31973803072961,0.337002347150789,0.405200709864239 +6.37,0.365099950296265,0.863495131769233,1.58650272784642,1.26138154630124,-1.31986920800993,0.336833115398606,0.404947370029363 +6.372,0.36497410515636,0.86354086770038,1.58653202931508,1.26160460980351,-1.32000038618269,0.336663870308806,0.40469408709939 +6.374,0.364848334265317,0.863586638521604,1.58656129389063,1.26182760109769,-1.32013156635115,0.336494614193374,0.404440859833812 +6.376,0.364722637754354,0.863632444383263,1.58659052243015,1.26205052100489,-1.32026274740712,0.336325344748219,0.404187689433805 +6.378,0.364597015461092,0.863678285136884,1.58661971403,1.26227336874647,-1.32039393045519,0.336156064284985,0.403934574657543 +6.38,0.364471467516038,0.863724160928985,1.58664886955029,1.26249614514323,-1.32052511438583,0.335986770499834,0.403681516707295 +6.382,0.36434599375695,0.863770071606693,1.58667798808958,1.26271884941587,-1.32065630030479,0.335817465704129,0.403428514339508 +6.384,0.364220594313743,0.863816017312007,1.58670707051142,1.26294148238494,-1.32078748710103,0.335648147594342,0.403175568757183 +6.386,0.364095269024436,0.863861997887294,1.58673611591685,1.26316404327053,-1.32091867588134,0.335478818481605,0.402922678714743 +6.388,0.363970018018477,0.863908013469985,1.58676512517296,1.26338653289303,-1.32104986553306,0.33530947606275,0.402669845415688 +6.39,0.363844841134268,0.863954063897919,1.58679409738314,1.26360895047207,-1.32118105716393,0.335140122648717,0.402417067612245 +6.392,0.363719738500911,0.864000149304442,1.58682303341771,1.26383129682797,-1.32131224965963,0.334970755936735,0.402164346508305 +6.394,0.363594709957302,0.864046269523578,1.58685193238199,1.26405357117997,-1.32144344412883,0.334801378237581,0.401911680853862 +6.396,0.363469755632293,0.864092424685473,1.58688079514898,1.26427577434849,-1.32157463945555,0.334631987248899,0.401659071853213 +6.398,0.36334487536536,0.864138614621364,1.5869096208253,1.26449790555251,-1.32170583674939,0.334462585281315,0.401406518254195 +6.4,0.36322006928518,0.864184839459323,1.58693841028595,1.26471996561261,-1.32183703489276,0.334293170032893,0.401154021261628 +6.402,0.363095337231862,0.864231099028979,1.58696716263809,1.26494195374761,-1.32196823499626,0.334123743814107,0.400901579621351 +6.404,0.362970679333945,0.864277393457532,1.58699587875794,1.26516387077836,-1.32209943594076,0.333954304323432,0.400649194538902 +6.406,0.362846095432197,0.864323722574178,1.58702455775246,1.26538571592358,-1.32223063883795,0.333784853871175,0.400396864758341 +6.408,0.362721585655026,0.864370086506365,1.58705320049839,1.26560749000446,-1.32236184256725,0.333615390156202,0.400144591486152 +6.41,0.362597149843852,0.864416485083897,1.58708180610183,1.26582919223965,-1.32249304824153,0.333445915488629,0.399892373464856 +6.412,0.362472788126932,0.864462918435397,1.58711037543942,1.26605082345069,-1.32262425473888,0.333276427567691,0.399640211902122 +6.414,0.362348500346304,0.864509386392079,1.58713890761587,1.26627238285619,-1.32275546317343,0.333106928703281,0.399388105539169 +6.416,0.362224286630035,0.8645558890844,1.5871674035073,1.26649387127805,-1.32288667242203,0.332937416594974,0.399136055585063 +6.418,0.362100146820728,0.864602426345494,1.58719586221671,1.26671528793482,-1.32301788360016,0.332767893552412,0.39888406077992 +6.42,0.361976081046206,0.86464899830801,1.58722428461943,1.26693663364872,-1.3231490955835,0.332598357275483,0.398632122334379 +6.422,0.36185208914958,0.864695604807205,1.5872526698166,1.2671579076382,-1.32328030948895,0.33242881007355,0.398380238987601 +6.424,0.361728171258365,0.864742245977975,1.58728101868275,1.26737911072575,-1.32341152419107,0.332259249646789,0.398128411951916 +6.426,0.361604327216117,0.864788921657627,1.58730933031716,1.26760024212971,-1.32354274080824,0.332089678304263,0.397876639965617 +6.428,0.361480557149987,0.864835631983102,1.58733760559367,1.26782130267277,-1.3236739582139,0.33192009374642,0.397624924242779 +6.43,0.36135686090392,0.864882376793448,1.58736584360993,1.26804229157308,-1.32380517752791,0.331750498282007,0.397373263520859 +6.432,0.361233238604652,0.864929156227258,1.5873940452393,1.26826320965351,-1.32393639762264,0.331580889611732,0.397121659015673 +6.434,0.361109690096471,0.864975970124852,1.58742220957807,1.26848405613195,-1.32406761961941,0.331411270044021,0.396870109463813 +6.436,0.360986215505658,0.865022818625957,1.58745033749946,1.2687048318314,-1.32419884238948,0.331241637279838,0.396618616082784 +6.438,0.360862814676815,0.865069701571621,1.58747842809878,1.26892553596943,-1.32433006705561,0.331071993627286,0.396367177608248 +6.44,0.360739487735746,0.865116619102146,1.58750648224945,1.26914616936915,-1.32446129248793,0.330902336787591,0.396115795259308 +6.442,0.360616234527348,0.865163571058751,1.58753449904611,1.2693667312478,-1.3245925198106,0.330732669068537,0.395864467770595 +6.444,0.360493055176941,0.865210557581782,1.58756247936274,1.26958722242853,-1.32472374789257,0.330562988171623,0.395613196362705 +6.446,0.360369949529716,0.865257578512139,1.58759042229367,1.26980764212824,-1.32485497785935,0.330393296404323,0.395361979769129 +6.448,0.360246917710512,0.865304633989761,1.58761832871369,1.27002799117011,-1.32498620857867,0.330223591468419,0.395110819211839 +6.45,0.360123959564825,0.86535172385484,1.58764619771707,1.27024826877069,-1.32511744117736,0.33005387567109,0.394859713423079 +6.452,0.360001075217032,0.865398848246587,1.58767403017964,1.27046847575321,-1.32524867452187,0.329884146714414,0.394608663626093 +6.454,0.359878264512951,0.865446007004232,1.58770182519577,1.27068861133387,-1.32537990974029,0.329714406905287,0.394357668551784 +6.456,0.35975552757652,0.865493200266075,1.58772958364246,1.27090867633594,-1.32551114569779,0.3295446539461,0.39410672942458 +6.458,0.359632864253905,0.865540427870274,1.58775730461425,1.27112866997528,-1.32564238352369,0.329374890143476,0.393855844973974 +6.46,0.359510274668632,0.865587689954174,1.58778498898936,1.27134859307526,-1.32577362208183,0.329205113200129,0.39360501642552 +6.462,0.359387758667241,0.865634986354885,1.58781263586246,1.27156844485142,-1.32590486250273,0.329035325422422,0.393354242507256 +6.464,0.359265316372871,0.865682317208878,1.58784024611295,1.27178822612721,-1.32603610364892,0.3288655245134,0.39310352444583 +6.466,0.359142947632462,0.865729682352348,1.5878678188356,1.2720079361179,-1.32616734665211,0.328695712779171,0.392852860967812 +6.468,0.359020652568788,0.865777081921071,1.58789535491084,1.27222757564707,-1.32629859037349,0.328525887923117,0.392602253300942 +6.47,0.358898431029209,0.865824515750536,1.58792285343339,1.27244714392971,-1.32642983594598,0.328356052251096,0.392351700170334 +6.472,0.358776283136155,0.865871983976062,1.58795031528458,1.27266664178954,-1.32656108222944,0.32818620346683,0.392101202804835 +6.474,0.358654208737415,0.865919486432686,1.58797773955894,1.27288606844135,-1.32669233035798,0.328016343875924,0.39185075992814 +6.476,0.358532207955088,0.865967023255527,1.58800512713852,1.273105424709,-1.32682357919018,0.327846471182439,0.391600372770242 +6.478,0.358410280637403,0.866014594279434,1.58803247711749,1.27332470980704,-1.32695482986138,0.327676587691727,0.391350040053461 +6.48,0.358288426906126,0.866062199639577,1.58805979037846,1.27354392455955,-1.32708608122884,0.327506691108182,0.391099763008985 +6.482,0.358166646609929,0.866109839170848,1.58808706601509,1.27376306818084,-1.32721733442916,0.327336783736897,0.390849540357811 +6.484,0.358044939870244,0.866157513008682,1.58811430491042,1.27398214149517,-1.32734858831835,0.327166863282599,0.390599373332376 +6.486,0.357923306536179,0.866205220988205,1.58814150615745,1.27420114371667,-1.32747984403425,0.32699693205011,0.390349260652406 +6.488,0.357801746728828,0.866252963245272,1.58816867063956,1.27442007566978,-1.32761110043164,0.326826987744484,0.390099203551632 +6.49,0.357680260297722,0.866300739615368,1.58819579744905,1.2746389365684,-1.32774235864964,0.326657032670271,0.389849200748559 +6.492,0.357558847363608,0.866348550234861,1.58822288746952,1.27485772723715,-1.32787361754179,0.326487064532843,0.389599253478251 +6.494,0.357437507776428,0.866396394939654,1.58824993979253,1.27507644688975,-1.32800487824853,0.326317085636468,0.389349360458028 +6.496,0.357316241656569,0.866444273866652,1.58827695530193,1.27529509635097,-1.32813613962218,0.326147093686835,0.389099522924312 +6.498,0.357195048854373,0.86649218685217,1.5883039330885,1.27551367483429,-1.32826740280447,0.325977090987926,0.388849739593263 +6.5,0.357073929489854,0.866540134033622,1.58833087403635,1.27573218316467,-1.32839866664654,0.325807075245739,0.388600011702676 +6.502,0.356952883413742,0.866588115247677,1.58835777723555,1.27595062055533,-1.3285299322914,0.325637048763967,0.388350337967562 +6.504,0.356831910745667,0.866636130632173,1.58838464357051,1.2761689878314,-1.328661198589,0.325467009248917,0.388100719627086 +6.506,0.356711011336736,0.866684180024043,1.58841147213064,1.27638728420584,-1.32879246668368,0.325296959003989,0.387851155395107 +6.508,0.356590185306189,0.86673226356144,1.5884382638007,1.27660551050392,-1.32892373542416,0.3251268957358,0.387601646512154 +6.51,0.356469432505501,0.866780381081441,1.58846501766953,1.27682366593834,-1.32905500595607,0.324956821747455,0.38735219169092 +6.512,0.356348753053518,0.866828532722396,1.58849173462233,1.2770417513345,-1.32918627712694,0.324786734745879,0.387102792173277 +6.514,0.356228146802081,0.866876718321403,1.58851841374745,1.27725976590485,-1.32931755008369,0.324616637033887,0.386853446670735 +6.516,0.356107613869635,0.86692493801689,1.58854505593059,1.2774777104749,-1.32944882367264,0.324446526318714,0.386604156426483 +6.518,0.355987154108388,0.866973191645867,1.58857166025967,1.27769558425682,-1.32958009904197,0.324276404902882,0.386354920150825 +6.52,0.355866767636389,0.867021479346737,1.58859822762099,1.27791338807625,-1.3297113750368,0.324106270493942,0.386105739088243 +6.522,0.355746454306211,0.867069800956333,1.58862475710208,1.2781311211451,-1.32984265280655,0.323936125394128,0.385856611947811 +6.524,0.355626214235511,0.867118156612957,1.58865124958988,1.27834878428912,-1.32997393119512,0.323765967311305,0.385607539975277 +6.526,0.355506047277231,0.867166546153203,1.58867770417158,1.27856637671994,-1.33010521135319,0.323595798547423,0.385358521878469 +6.528,0.355385953548642,0.867214969715225,1.58870412173479,1.27878389926344,-1.33023649212343,0.323425616810667,0.385109558904379 +6.53,0.355265932903059,0.867263427135351,1.58873050136641,1.27900135113098,-1.33036777465775,0.323255424402701,0.38486064975957 +6.532,0.355145985457373,0.86731191855157,1.58875684395469,1.27921873314857,-1.33049905779758,0.323085219032038,0.384611795692265 +6.534,0.35502611106528,0.867360443799943,1.58878314858624,1.27943604452731,-1.33063034269609,0.322915003000054,0.384362995407755 +6.536,0.354906309843294,0.867409003018311,1.58880941614998,1.27965328609334,-1.33076162819345,0.322744774015591,0.384114250155482 +6.538,0.354786581645498,0.867457596042489,1.58883564573219,1.27987045705749,-1.33089291544407,0.322574534379744,0.383865558639461 +6.54,0.354666926588036,0.867506223010203,1.58886183822243,1.28008755824605,-1.33102420328687,0.32240428180168,0.383616922110353 +6.542,0.354547344525381,0.867554883757072,1.58888799270666,1.28030458886959,-1.3311554928775,0.322234018582215,0.383368339270899 +6.544,0.354427835573311,0.867603578420755,1.58891411007502,1.28052154975454,-1.33128678305365,0.322063742430845,0.383119811372978 +6.546,0.354308399586693,0.867652306836725,1.58894018941309,1.28073844011123,-1.3314180749722,0.321893455648104,0.382871337118066 +6.548,0.354189036680943,0.867701069142632,1.5889662316116,1.28095526076625,-1.33154936746959,0.321723155943817,0.38262291775927 +6.55,0.35406974671132,0.867749865173862,1.58899223575571,1.28117201092966,-1.33168066170395,0.321552845618235,0.382374551996811 +6.552,0.353950529792882,0.86779869506811,1.58901820273669,1.28138869142821,-1.3318119565105,0.321382522381512,0.382126241085029 +6.554,0.35383138578128,0.867847558660728,1.58904413163926,1.28160530147173,-1.33194325304859,0.321212188533614,0.381877983722905 +6.556,0.353712314791212,0.867896456089502,1.58907002335516,1.2818218418871,-1.33207455015222,0.321041841785026,0.381629781166022 +6.558,0.353593316678723,0.867945387189796,1.58909587696865,1.28203831188393,-1.33220584898199,0.320871484435426,0.381381632112136 +6.56,0.353474391558148,0.867994352099523,1.58912169337197,1.28225471228925,-1.33233714837069,0.320701114195625,0.381133537818081 +6.562,0.353355539285922,0.868043350654086,1.58914747164888,1.28247104231242,-1.33246844948015,0.320530733365015,0.380885496980397 +6.564,0.353236759976018,0.868092382991552,1.58917321269206,1.28268730278062,-1.33259975114195,0.320360339654735,0.38063751085718 +6.566,0.353118053485259,0.868141448947376,1.58919891558479,1.28290349290299,-1.33273105451917,0.320189935363883,0.380389578143763 +6.568,0.35299941992725,0.868190548659784,1.58922458122019,1.28311961350684,-1.33286235844219,0.320019518203926,0.380141700099509 +6.57,0.352880859159199,0.86823968196429,1.58925020868103,1.28333566380107,-1.33299366407532,0.319849090473671,0.379893875418552 +6.572,0.352762371294344,0.868288848999273,1.58927579886091,1.28355164461315,-1.33312497024775,0.319678649884909,0.379646105361521 +6.574,0.352643956190273,0.868338049600293,1.5893013508421,1.28376755515171,-1.33325627812503,0.319508198736154,0.379398388621357 +6.576,0.352525613959853,0.868387283905865,1.58932686551865,1.28398339624439,-1.33338758653515,0.319337734739523,0.379150726459956 +6.578,0.352407344461052,0.868436551751577,1.58935234197236,1.28419916709956,-1.33351889664491,0.319167260193235,0.378903117569065 +6.58,0.352289147806366,0.86848585327606,1.58937778109774,1.28441486854501,-1.3336502072811,0.318996772809732,0.378655563211844 +6.582,0.352171023854136,0.868535188314904,1.58940318197615,1.28463049978885,-1.33378151961175,0.318826274886939,0.378408062078846 +6.584,0.352052972716488,0.868584557006827,1.58942854550258,1.28484606165901,-1.33391283246245,0.318655764137624,0.378160615434488 +6.586,0.351934994252138,0.868633959187396,1.58945387075795,1.28506155336337,-1.33404414700248,0.318485242859416,0.377913221968128 +6.588,0.351817088572837,0.868683394995392,1.58947915863775,1.28527697572998,-1.33417546205623,0.318314708765409,0.377665882945433 +6.59,0.351699255537676,0.868732864266334,1.58950440822248,1.28549232796647,-1.33430677879422,0.318144164152937,0.377418597054562 +6.592,0.351581495258035,0.868782367139039,1.58952962040814,1.28570761090104,-1.33443809603961,0.317973606735423,0.377171365562426 +6.594,0.351463807593377,0.868831903448961,1.58955479427482,1.28592282374104,-1.33456941496418,0.317803038809904,0.37692418715598 +6.596,0.351346192654711,0.868881473334938,1.58957993071905,1.28613796731484,-1.33470073438989,0.317632458090131,0.376677063103372 +6.598,0.351228650301876,0.868931076632341,1.58960502882053,1.28635304082953,-1.33483205548971,0.317461866872846,0.376429992090351 +6.6,0.351111180645509,0.868980713480017,1.58963008947633,1.2865680451136,-1.33496337708444,0.317291262872131,0.376182975386296 +6.602,0.350993783545824,0.86903038371325,1.58965511176573,1.28678297937391,-1.33509470034827,0.317120648384432,0.375936011675747 +6.604,0.350876459113091,0.869080087470891,1.58968009658635,1.28699784443909,-1.33522602410079,0.316950021124161,0.375689102229308 +6.606,0.350759207207898,0.869129824588134,1.58970504301709,1.28721263951572,-1.3353573495174,0.316779383387469,0.375442245730311 +6.608,0.350642027940149,0.869179595203837,1.58972995195608,1.28742736543261,-1.3354886754165,0.316608732889099,0.375195443450583 +6.61,0.350524921170809,0.869229399153109,1.58975482248185,1.28764202139608,-1.33562000297471,0.316438071924907,0.374948694072245 +6.612,0.350407887009416,0.869279236574821,1.58977965549306,1.28785660823506,-1.33575133100923,0.316267398209968,0.374701998868344 +6.614,0.350290925317312,0.869329107304008,1.58980445006783,1.28807112515565,-1.33588266069791,0.316096714039843,0.374455356519795 +6.616,0.350174036203672,0.869379011479564,1.58982920710533,1.28828557298691,-1.33601399085673,0.31592601712994,0.374208768300863 +6.618,0.350057219530214,0.869428948936459,1.5898539256833,1.28849995093469,-1.33614532266476,0.315755309775521,0.37396223289126 +6.62,0.349940475405751,0.869478919813622,1.58987860670142,1.28871425982821,-1.3362766549368,0.315584589692329,0.373715751566469 +6.622,0.349823803692376,0.869528923945975,1.58990324923702,1.28892849887305,-1.33640798885313,0.31541385917533,0.373469323005 +6.624,0.349707204498543,0.869578961472492,1.58992785419026,1.28914266889861,-1.33653932322736,0.3152431159406,0.373222948483557 +6.626,0.34959067768672,0.869629032228056,1.58995242063808,1.2893567691102,-1.33667065924097,0.315072362282805,0.372976626679454 +6.628,0.349474223365,0.869679136351697,1.58997694948113,1.28957080033736,-1.33680199570639,0.314901595918358,0.372730358870613 +6.63,0.349357841396226,0.869729273678272,1.59000143979592,1.28978476178518,-1.33693333380631,0.314730819141626,0.372484143733159 +6.632,0.34924153188813,0.869779444346876,1.59002589248359,1.28999865428334,-1.33706467235198,0.314560029669354,0.372237982546231 +6.634,0.34912529470393,0.869829648192344,1.59005030662024,1.29021247703667,-1.3371960125273,0.314389229795609,0.371991873984768 +6.636,0.349009129950997,0.869879885353839,1.59007468310747,1.290426230875,-1.33732735314233,0.314218417237473,0.37174581932913 +6.638,0.348893037492922,0.869930155666181,1.59009902102096,1.29063991500292,-1.33745869538219,0.314047594288712,0.371499817253071 +6.64,0.348777017436715,0.869980459268606,1.59012332126281,1.29085353025042,-1.33759003805575,0.313876758666741,0.37125386903817 +6.642,0.34866106964634,0.870030795995915,1.59014758290825,1.29106707582183,-1.33772138234934,0.313705912665025,0.371007973357003 +6.644,0.348545194228444,0.870081165987417,1.59017180685987,1.29128055254728,-1.33785272707066,0.313535054001315,0.370762131492367 +6.646,0.348429391047365,0.870131569077896,1.59019599219249,1.29149395963088,-1.33798407340723,0.313364184968772,0.370516342115659 +6.648,0.348313660209386,0.870182005406726,1.59022013980915,1.29170729790288,-1.33811542016559,0.313193303285483,0.370270606510894 +6.65,0.348198001579216,0.870232474808671,1.59024424878427,1.29192056656714,-1.33824676853447,0.313022411244306,0.370024923348292 +6.652,0.348082415262777,0.870282977423168,1.59026832002138,1.29213376645407,-1.33837811731922,0.312851506563664,0.369779293913085 +6.654,0.347966901125147,0.870333513084954,1.59029235259447,1.29234689676729,-1.33850946770978,0.312680591536112,0.369533716874317 +6.656,0.347851459271886,0.870384081933521,1.59031634740755,1.29255995833736,-1.33864081851032,0.312509663880407,0.369288193518431 +6.658,0.347736089568442,0.870434683803577,1.59034030353422,1.29277295036762,-1.33877217091199,0.3123387258888,0.369042722513299 +6.66,0.347620792120013,0.870485318834664,1.59036422187896,1.29298587368879,-1.33890352371778,0.312167775280387,0.368797305146574 +6.662,0.347505566792416,0.870535986861453,1.59038810151497,1.29319872750398,-1.33903487812004,0.311996814347113,0.368551940084954 +6.664,0.347390413690487,0.87058668802353,1.59041194334722,1.29341151264404,-1.33916623292061,0.31182584080841,0.368306628617297 +6.666,0.34727533268041,0.870637422155527,1.59043574644852,1.29362422831184,-1.33929758931301,0.31165485695592,0.368061369409131 +6.668,0.347160323866663,0.870688189397069,1.5904595117243,1.29383687533837,-1.33942894609792,0.311483860509411,0.367816163750517 +6.67,0.347045387115797,0.870738989582746,1.590483238247,1.29404945292624,-1.33956030447005,0.311312853760219,0.36757101030581 +6.672,0.346930522531929,0.87078982285222,1.59050692692255,1.2942619619066,-1.33969166322892,0.311141834428452,0.367325910366273 +6.674,0.346815729981977,0.870840689040036,1.59053057682296,1.29447440148182,-1.33982302357044,0.310970804805141,0.367080862595091 +6.676,0.3467010095697,0.870891588285893,1.59055418885466,1.29468677248319,-1.33995438429293,0.310799762610729,0.366835868284723 +6.678,0.346586361162383,0.87094252042429,1.59057776208929,1.29489907411283,-1.34008574659353,0.310628710135943,0.366590926097185 +6.68,0.346471784863426,0.870993485594963,1.59060129743375,1.29511130720218,-1.34021710926937,0.310457645101567,0.366346037326133 +6.682,0.346357280540482,0.871044483632368,1.59062479395929,1.2953234709531,-1.34034847351879,0.310286569798017,0.366101200632413 +6.684,0.346242848296591,0.871095514676277,1.5906482525733,1.29553556619719,-1.34047983813775,0.31011548194642,0.365856417310878 +6.686,0.346128487999773,0.871146578561105,1.59067167234663,1.29574759213606,-1.34061120432578,0.309944383836885,0.365611686021206 +6.688,0.346014096705291,0.871197664518932,1.59069509380903,1.29595962645398,-1.34074256446941,0.30977327243343,0.365366983817402 +6.69,0.345899683030208,0.871248767472266,1.59071849957287,1.2961716410724,-1.34087391910864,0.309602165235073,0.365122328542798 +6.692,0.345785260645161,0.871299886414222,1.59074187476579,1.2963836111108,-1.34100526929315,0.309431058893512,0.364877727625194 +6.694,0.345670843448244,0.871351023575613,1.59076520752211,1.29659551367184,-1.3411366189857,0.309259950912114,0.364633182343143 +6.696,0.345556444905104,0.871402183977612,1.59078849240339,1.29680733190262,-1.34126796939102,0.309088833848301,0.364388695214894 +6.698,0.345442077247486,0.871453373622474,1.59081172549163,1.29701905199623,-1.34139932353849,0.308917705422382,0.36414426527201 +6.7,0.345327751792886,0.871504599046916,1.59083490683704,1.29723066639275,-1.3415306814505,0.308746559689877,0.363899893623013 +6.702,0.345213478421536,0.871555865910825,1.59085803581005,1.29744217018235,-1.34166204504769,0.308575396261655,0.363655578399384 +6.704,0.345099266015278,0.871607179088597,1.59088111413833,1.29765356384945,-1.34179341342559,0.308404211152877,0.3634113202425 +6.706,0.344985122020443,0.87165854179333,1.59090414185919,1.29786484934548,-1.34192478778574,0.308233005840443,0.363167117160892 +6.708,0.344871052954425,0.871709956124759,1.59092712084971,1.2980760326296,-1.34205616669025,0.308061778019568,0.362922969911667 +6.71,0.344757064025081,0.871761422538563,1.59095005112156,1.29828711965678,-1.34218755096285,0.307890530599257,0.362678876742495 +6.712,0.344643159675605,0.87181294062621,1.59097293455422,1.29849811893958,-1.34231893890409,0.307719262427778,0.362434838682779 +6.714,0.344529343230549,0.871864508716925,1.59099577127386,1.29870903764088,-1.34245033116675,0.307547977273386,0.362190854214224 +6.716,0.344415617451397,0.871916124714347,1.59101856339354,1.29891988430378,-1.34258172594498,0.307376674556579,0.36194692452777 +6.718,0.344301984185951,0.87196778570203,1.59104131134844,1.29913066515089,-1.34271312383973,0.307205358347507,0.361703048176433 +6.72,0.344188444916582,0.872019488751801,1.59106401757697,1.29934138704213,-1.34284452303431,0.307034028128558,0.36145922634256 +6.722,0.344075000399907,0.872071230483922,1.59108668279338,1.29955205400223,-1.34297592415894,0.306862687826969,0.361215457503445 +6.724,0.343961651199117,0.872123007824669,1.5911093096224,1.29976267039668,-1.34310732545729,0.306691336619264,0.360971742726662 +6.726,0.343848397308717,0.872174817515781,1.59113189883886,1.29997323765326,-1.34323872765187,0.306519978005836,0.360728080354647 +6.728,0.343735238668388,0.872226656825158,1.59115445299144,1.30018375760475,-1.34337012910076,0.306348610657964,0.360484471326504 +6.73,0.343622174771988,0.872278523013389,1.59117697264336,1.30039422934199,-1.34350153066234,0.306177237531256,0.360240913874483 +6.732,0.343509205163483,0.872330414005782,1.59119946001289,1.30060465265586,-1.34363293084059,0.306005856748127,0.359997408862689 +6.734,0.343396329031564,0.872382327823106,1.59122191523502,1.30081502495405,-1.34376433064819,0.305834470740325,0.359753954485245 +6.736,0.343283545689585,0.872434263220458,1.59124434003054,1.30102534473765,-1.34389572874032,0.305663077155326,0.359510551612349 +6.738,0.343170854158163,0.872486219086547,1.59126673399382,1.30123560852343,-1.34402712627683,0.305491678015224,0.359267198482148 +6.74,0.343058253631761,0.872538195053109,1.59128909829009,1.30144581430496,-1.34415852204621,0.305320270634609,0.359023896047721 +6.742,0.342945743052132,0.872590190866583,1.59131143196542,1.30165595843967,-1.3442899173289,0.305148856783494,0.358780642658261 +6.744,0.342833321564505,0.872642206972545,1.59133373566592,1.30186603906355,-1.34442131101399,0.304977433606063,0.358537439403909 +6.746,0.342720988084902,0.872694243865223,1.59135600796268,1.30207605292194,-1.34455270446597,0.304806002777984,0.358294284784806 +6.748,0.342608741748853,0.872746302653453,1.59137824908512,1.30228599872554,-1.3446840966366,0.304634561418779,0.358051180053133 +6.75,0.342496581475456,0.872798384395478,1.59140045725351,1.30249587392109,-1.34481548893695,0.30446311123767,0.357808123870476 +6.752,0.342384506411212,0.872850490654587,1.59142263241947,1.3027056779918,-1.34494688034609,0.304291649436047,0.357565117647899 +6.754,0.34227251549319,0.872902622827711,1.59144477259977,1.30291540917647,-1.34507827228956,0.304120177839755,0.357322160193105 +6.756,0.342160607890002,0.872954782699279,1.59146687761841,1.30312506772722,-1.34520966374569,0.303948693791425,0.357079253050172 +6.758,0.342048782565736,0.873006971771801,1.59148894543666,1.3033346525928,-1.34534105613072,0.303777199270083,0.356836395138446 +6.76,0.341937038719374,0.873059191825531,1.59151097589248,1.3035441646508,-1.34547244840291,0.303605691775387,0.356593588093931 +6.762,0.34182537535043,0.873111444257701,1.59153296702312,1.30375360337269,-1.34560384195411,0.303434173437354,0.356350830901978 +6.764,0.341713791697412,0.873163730653639,1.5915549187989,1.30396297004753,-1.34573523571133,0.303262641895683,0.356108125242351 +6.766,0.341602286805455,0.873216052139136,1.591576829436,1.30417226444428,-1.3458666310343,0.303091099403151,0.355865470117609 +6.768,0.341490859963886,0.873268409966292,1.59159869912282,1.30438148804049,-1.3459980268139,0.302919543703389,0.355622867203663 +6.77,0.341379510275672,0.873320804881073,1.59162052632176,1.30459064069316,-1.34612942437534,0.302747977131318,0.355380315475406 +6.772,0.341268237093774,0.873373237724815,1.59164231148775,1.30479972388106,-1.34626082257289,0.302576397492211,0.355137816564151 +6.774,0.341157039591981,0.873425708816809,1.59166405335898,1.30500873739004,-1.34639222269827,0.302404807161792,0.354895369381558 +6.776,0.341045917199594,0.873478218570334,1.59168575266821,1.30521768257263,-1.3465236235713,0.302233203968488,0.354652975484813 +6.778,0.340934869173139,0.873530766888329,1.59170740842357,1.30542655904915,-1.34665502645324,0.302061590294793,0.354410633699369 +6.78,0.340823895028928,0.873583353791307,1.59172902161407,1.30563536798392,-1.34678643013308,0.301889963963629,0.354168345492146 +6.782,0.340712994115228,0.873635978822923,1.59175059148239,1.30584410879989,-1.34691783584567,0.301718327341563,0.353926109593063 +6.784,0.340602166042357,0.873688641686183,1.59177211922674,1.30605278246806,-1.34704924235359,0.301546678229354,0.353683927376048 +6.786,0.340491410255058,0.873741341655078,1.59179360426791,1.30626138823145,-1.34718065086992,0.301375018966794,0.353441797478912 +6.788,0.340380726459973,0.873794078215136,1.59181504794987,1.30646992690295,-1.3473120601357,0.301203347326933,0.353199721191543 +6.79,0.34027011419814,0.873846850477197,1.59183644980357,1.30667839759367,-1.34744347134731,0.301031665621821,0.352957697073391 +6.792,0.340159573269875,0.873899657818522,1.59185781124865,1.30688680101462,-1.34757488322943,0.300859971599591,0.352715726347981 +6.794,0.340049103307506,0.873952499295165,1.59187913185625,1.30709513620503,-1.34770629696706,0.300688267550166,0.352473807517126 +6.796,0.339938704197826,0.874005374280403,1.59190041305392,1.30730340383391,-1.34783771127397,0.300516551204365,0.352231941760812 +6.798,0.339828375655314,0.874058281872887,1.59192165438926,1.30751160292527,-1.34796912732927,0.300344824838671,0.351990127547259 +6.8,0.339718117642441,0.874111221530013,1.59194285723965,1.30771973415699,-1.34810054384131,0.300173086175655,0.351748366037273 +6.802,0.339607929943687,0.874164192469957,1.59196402107803,1.30792779658109,-1.3482319619887,0.300001337487121,0.351506655689381 +6.804,0.339497812584039,0.874217194298574,1.59198514718832,1.30813579091887,-1.34836338047962,0.299829576495389,0.351264997667914 +6.806,0.339378076855718,0.874263795499715,1.5920066465004,1.30833339060721,-1.34847237814285,0.299687889128451,0.351053575210271 +6.808,0.339269455739026,0.874313497916312,1.59202299033909,1.30853139903199,-1.34860565661004,0.299516732848878,0.350814834328143 +6.81,0.339163072521123,0.874365841297522,1.59204110069614,1.30873185646241,-1.34874143534802,0.299338777712377,0.350570609645875 +6.812,0.33905679933891,0.874420009054333,1.59206157635311,1.30893506415159,-1.34887674215518,0.299160410728855,0.350325278383773 +6.814,0.338950140747203,0.874475176085337,1.59208364344769,1.30914086974423,-1.34901117940876,0.298983094553161,0.350079878398709 +6.816,0.338842996073402,0.874530673797591,1.59210643628001,1.30934894472564,-1.34914481744607,0.298807031158512,0.349834730582239 +6.818,0.338735366509113,0.874586041158701,1.59212930847999,1.30955886800348,-1.34927781838646,0.298632119123231,0.349589982077236 +6.82,0.338617627576863,0.874634583829869,1.59215229940952,1.30975985016491,-1.34938794440085,0.298488272806887,0.349375877906363 +6.822,0.338510504469867,0.874685700591832,1.59216969472525,1.30996224763918,-1.34952197822405,0.298315745205206,0.349134935389055 +6.824,0.338405199145303,0.874738946744458,1.59218839423228,1.31016762311762,-1.34965826646865,0.298137056045579,0.348888990999655 +6.826,0.338299655438998,0.874793586891866,1.59220905824411,1.31037586302723,-1.34979392378263,0.297958430189713,0.348642378261754 +6.828,0.338193444786558,0.874848907502546,1.59223101887848,1.31058647297606,-1.34992860597385,0.297781178967063,0.348396078477085 +6.83,0.338086527577053,0.874904353479788,1.59225351570346,1.31079885309298,-1.35006242405392,0.2976053870457,0.348150341295103 +6.832,0.337978960411619,0.874959564236905,1.59227599434682,1.31101239096352,-1.35019556338009,0.297430847501173,0.347905248132025 +6.834,0.337870826285547,0.875014356394206,1.59229813316054,1.31122650256486,-1.35032820255997,0.297257306860528,0.34766082027467 +6.836,0.337762216967503,0.875068684640503,1.59231980158471,1.31144066500414,-1.35046048736211,0.297084517086525,0.347417044937226 +6.838,0.337653225678391,0.875122595441138,1.5923409946549,1.31165443370427,-1.35059253288906,0.296912262029846,0.347173876827332 +6.84,0.337543943166079,0.875176186048907,1.59236178077792,1.3118674587615,-1.35072442153827,0.296740352399166,0.346931252284442 +6.842,0.3374248412828,0.87522313602919,1.59238270230697,1.31206916498339,-1.35083385266778,0.296598731910607,0.346719214875314 +6.844,0.337316576243235,0.875273049788886,1.59239828596231,1.31227026714967,-1.35096743289483,0.296427686073031,0.346480217355041 +6.846,0.337210387306594,0.875325566466902,1.59241552813811,1.31247266816973,-1.35110346631701,0.296249856680369,0.346236029859357 +6.848,0.337104223719866,0.875379941518414,1.59243507833647,1.31267666013066,-1.35123901730843,0.296071547310811,0.345990947554367 +6.85,0.336997643343627,0.875435397338432,1.59245619843127,1.31288216042067,-1.35137370360552,0.295894167621584,0.345745945503542 +6.852,0.336890584162789,0.875491290915582,1.59247804243296,1.31308896366064,-1.35150760161282,0.295717894035087,0.345501299743997 +6.854,0.336783075614161,0.875547169266163,1.59249997069607,1.31329680671901,-1.35164087498424,0.295542619577534,0.345257126256223 +6.856,0.336675172756117,0.875602766190269,1.59252159732242,1.3135054028725,-1.3517736814328,0.29536817610034,0.345013490315689 +6.858,0.336566939675396,0.875657968102983,1.59254274608007,1.31371446082678,-1.35190615437105,0.295194401226181,0.344770415683903 +6.86,0.336458444141373,0.875712770529056,1.59256339209302,1.31392370705683,-1.35203839343906,0.29502114350709,0.344527893784287 +6.862,0.336349753407096,0.875767234358839,1.59258359761981,1.31413289752964,-1.35217047236608,0.294848275232245,0.344285884641881 +6.864,0.336231365318431,0.875815013525396,1.59260393563508,1.31433151073876,-1.35228011725984,0.294705789296072,0.344074413625063 +6.866,0.336123824536337,0.875865692879067,1.59261892249195,1.31453030406414,-1.35241384435571,0.294533972455019,0.343835996988279 +6.868,0.336008827346959,0.875912470568151,1.5926360427107,1.31472078010657,-1.35252766962458,0.294385629207545,0.343622493896737 +6.87,0.335904793458152,0.875964088820011,1.5926503588513,1.31491406566182,-1.35266513801756,0.294207439106977,0.34338078139174 +6.872,0.335802484135778,0.876019324064832,1.59266806404312,1.31511190547189,-1.35280418342658,0.294023578718721,0.343133682954301 +6.874,0.335699739147657,0.876076724751862,1.59268890998143,1.31531425466467,-1.35294194696169,0.293840576610232,0.342885813028515 +6.876,0.33559610041893,0.876135021248647,1.59271149556686,1.31552058519988,-1.35307819978011,0.29365974626648,0.342638308313074 +6.878,0.335481984692207,0.87618684642051,1.5927350579709,1.31571985707884,-1.35319087707419,0.29351121246357,0.342421598738807 +6.88,0.335377884093567,0.876241117377943,1.59275317029814,1.31592220302788,-1.35332670379976,0.293335043216094,0.342178466614002 +6.882,0.335275122117863,0.876297127858528,1.59277233435237,1.3161287038374,-1.35346427800668,0.293153693434618,0.341930837610972 +6.884,0.335171730194109,0.876354034277,1.59279302698806,1.31633883924049,-1.35360087542935,0.292973181607353,0.341683051925986 +6.886,0.33506735102965,0.876411126674027,1.59281455404034,1.31655174443969,-1.3537362650147,0.292794645643152,0.34143606589843 +6.888,0.334962010656477,0.876467921815808,1.5928362254883,1.31676649728214,-1.35387062970998,0.292618013078927,0.341190089540448 +6.89,0.334855826342175,0.87652416066881,1.59285759221045,1.31698221321689,-1.35400420735424,0.292442952877397,0.340945142441965 +6.892,0.334748936746797,0.876579765950156,1.59287844448009,1.31719809915904,-1.35413720736022,0.292269099367544,0.340701180615819 +6.894,0.334641482214972,0.876634785544672,1.59289874257245,1.31741348130616,-1.35426980019237,0.292096121147488,0.340458119991928 +6.896,0.334533597615421,0.876689339722679,1.59291855088875,1.31762782715687,-1.35440211305352,0.291923726792777,0.340215855818351 +6.898,0.334425407422216,0.876743577056612,1.59293797729954,1.31784074934396,-1.35453424123425,0.291751677881401,0.339974268922187 +6.9,0.334317023175558,0.876797644240087,1.59295713762539,1.31805200632365,-1.3546662502993,0.29157977908584,0.339733242280162 +6.902,0.334208541352871,0.876851666815623,1.59297612893716,1.31826148811484,-1.35479818799985,0.29140788502143,0.339492664269526 +6.904,0.334100043198743,0.876905741174436,1.59299502364327,1.3184692028103,-1.35493008458835,0.291235887036942,0.339252440319006 +6.906,0.333991594638214,0.876959932526836,1.59301386498258,1.31867525243643,-1.35506196210407,0.291063717877929,0.339012490320536 +6.908,0.333883247677533,0.877014278617128,1.59303267528433,1.31887981360467,-1.3551938322656,0.290891337376029,0.338772754608734 +6.91,0.33377504142043,0.877068794449546,1.59305145889626,1.31908311133774,-1.35532570360854,0.290718736242477,0.338533187016749 +6.912,0.333667004094665,0.877123478850342,1.59307021277759,1.31928540082497,-1.35545757780453,0.290545921475453,0.338293757927078 +6.914,0.333559154343991,0.877178319348675,1.59308892845257,1.31948694483844,-1.35558945573289,0.290372920153165,0.338054445798347 +6.916,0.333451503243069,0.877233297314605,1.59310759982406,1.3196880007427,-1.35572133324284,0.290199765415019,0.337815239722983 +6.918,0.333344055422663,0.877288390726923,1.59312622178483,1.31988880424237,-1.35585320690729,0.29002650099737,0.337576131310724 +6.92,0.333236810805299,0.877343577119639,1.59314479490806,1.3200895631768,-1.35598506964296,0.289853168298479,0.33733711806696 +6.922,0.333129765419615,0.877398834433744,1.59316332156643,1.32029044804427,-1.3561169163766,0.289679812124746,0.337098196305308 +6.924,0.333022912807669,0.877454142483552,1.5931818089152,1.3204915921674,-1.35624873958254,0.289506469136544,0.336859365555129 +6.926,0.332916244528092,0.877509482781266,1.59320026404729,1.32069308791826,-1.35638053482648,0.289333174987174,0.336620622390415 +6.928,0.332809751266869,0.877564839366901,1.59321869663901,1.32089499174384,-1.3565122961139,0.289159954126999,0.336381965601641 +6.93,0.332703423066929,0.877620198284162,1.59323711419288,1.32109732429565,-1.35664402122592,0.288986828228966,0.336143390577679 +6.932,0.332597250185234,0.877675548246905,1.59325552504416,1.32130007839258,-1.35677570681539,0.288813807115981,0.335904894880005 +6.934,0.332491223087807,0.877730880047895,1.59327393407346,1.32150322112502,-1.35690735351639,0.28864089817149,0.335666472854013 +6.936,0.332385333092508,0.877786187190356,1.59329234620802,1.32170670292398,-1.35703896080363,0.288468098018002,0.335428121351373 +6.938,0.332279572168349,0.877841465255073,1.59331076256787,1.32191045997834,-1.35717053192902,0.288295402520074,0.335189834379176 +6.94,0.332173933405241,0.877896712465082,1.59332918432165,1.3221144229689,-1.3573020686246,0.288122798822608,0.334951608834651 +6.942,0.332068410662646,0.877951928960403,1.59334760908604,1.32231851861521,-1.35743357595552,0.287950275566042,0.334713439108408 +6.944,0.331962998914007,0.878007117251228,1.59336603495071,1.32252267715776,-1.3575650569621,0.287777814949123,0.334475322778889 +6.946,0.331857693796125,0.878062281376486,1.59338445696972,1.32272683239009,-1.35769651751353,0.287605402856751,0.33423725514667 +6.948,0.33175249187949,0.878117427247289,1.59340287122364,1.32293092749591,-1.35782796096793,0.287433020717169,0.333999234874136 +6.95,0.331647390169984,0.878172561715431,1.59342127130778,1.32313491340809,-1.35795939308387,0.287260655356362,0.333761258452484 +6.952,0.331542386352527,0.878227692852211,1.59343965236538,1.32333875303931,-1.35809081674456,0.287088290534172,0.333523325787841 +6.954,0.331428102989053,0.878276385398421,1.59345857184095,1.32353210907248,-1.35820006521137,0.286946047835924,0.333315364004031 +6.956,0.331324638942873,0.878328111342218,1.59347232417659,1.32372604064889,-1.35833329067618,0.286774179898865,0.333080162080732 +6.958,0.331223323117609,0.878382451884737,1.59348781236478,1.32392229129175,-1.35846895170551,0.286595613215914,0.33283959995826 +6.96,0.331122113694394,0.878438614913098,1.59350561021173,1.32412108148613,-1.35860415631975,0.286416657057659,0.33259798505937 +6.962,0.331020545105629,0.878495795948927,1.59352494777003,1.32432224776287,-1.35873852698817,0.286238726376359,0.332356315852589 +6.964,0.330918525710851,0.878553341753893,1.59354497088569,1.32452547735013,-1.35887213447513,0.286062006255784,0.332114897311697 +6.966,0.330816058318853,0.878610800997326,1.59356504214088,1.32473037780229,-1.35900513567439,0.285886392370905,0.331873870792428 +6.968,0.330713176530548,0.878667916935727,1.59358478152852,1.32493652070442,-1.35913768304565,0.28571171063526,0.331633320862579 +6.97,0.330609928156924,0.878724589951457,1.59360401886818,1.32514347025461,-1.35926990701774,0.285537785025216,0.331393284821079 +6.972,0.330506369195358,0.878780831523921,1.59362273383417,1.325350813878,-1.35940190626047,0.285364444889359,0.331153763360097 +6.974,0.330402558934899,0.878836718665255,1.59364099102225,1.32555818043484,-1.35953375528935,0.285191540044588,0.330914722714871 +6.976,0.330298556559776,0.878892357668633,1.59365889492814,1.32576525879694,-1.35966550430483,0.285018934095833,0.330676110695137 +6.978,0.330194417809132,0.878947857011469,1.59367655221103,1.32597180320847,-1.35979718987665,0.284846514696906,0.33043786167566 +6.98,0.330090193317049,0.879003311688098,1.59369405569599,1.32617763952018,-1.35992883458113,0.284674184453238,0.330199911383348 +6.982,0.32998592708849,0.879058794747034,1.59371147193712,1.32638265970523,-1.36006045600662,0.284501869657765,0.329962197815166 +6.984,0.329881656474442,0.8791143562322,1.59372884421877,1.32658681925273,-1.36019206426259,0.28432951020274,0.329724670783377 +6.986,0.329777411949216,0.879170024767376,1.59374619257368,1.32679012520094,-1.3603236688463,0.284157067382935,0.32948728788672 +6.988,0.329673217987373,0.879225812342109,1.59376352345676,1.32699262933569,-1.36045527439585,0.283984513054843,0.329250020041419 +6.99,0.329569093390034,0.87928171840745,1.59378083203753,1.32719441411266,-1.36058688630334,0.283811836775106,0.329012844640014 +6.992,0.329465052412032,0.879337734853418,1.59379811118933,1.32739558543375,-1.36071850575577,0.283639034579838,0.32877574938361 +6.994,0.329361105147279,0.879393848932432,1.59381535151366,1.32759625952521,-1.3608501349939,0.283466115815523,0.328538724754311 +6.996,0.329257258578864,0.879450046457691,1.59383254749035,1.32779655764867,-1.36098177228329,0.283293091865803,0.328301767853505 +6.998,0.329153516834423,0.879506312870612,1.59384969478247,1.32799659558358,-1.36111341724338,0.283119983048361,0.328064875326855 +7,0.329049882076589,0.879562634823461,1.59386679416354,1.32819648129243,-1.3612450659625,0.282946807643731,0.32782804784706 +7.002,0.328946354611595,0.879619000014011,1.59388384725096,1.32839630748981,-1.36137671644846,0.282773589183859,0.32759128373868 +7.004,0.328842933642351,0.879675397939045,1.59390085950421,1.32859615232608,-1.36150836381538,0.282600346009727,0.327354584100698 +7.006,0.328739617263068,0.879731819247554,1.59391783555654,1.32879607476593,-1.36164000574605,0.282427099137754,0.327117946950121 +7.008,0.328636403109748,0.879788256273845,1.59393478220195,1.32899611776883,-1.3617716376248,0.282253862437513,0.32688137273614 +7.01,0.32853328826589,0.879844702337524,1.59395170395185,1.32919630578081,-1.36190325790836,0.282080651110283,0.32664485874083 +7.012,0.328430269828181,0.879901152310762,1.59396860637246,1.32939664961758,-1.36203486312408,0.281907472434985,0.326408404761767 +7.014,0.328327344732079,0.879957601978786,1.59398549201294,1.32959714522744,-1.36216645311067,0.281734334766448,0.326172007587646 +7.016,0.328224510238211,0.880014048656326,1.59400236408834,1.32979777943863,-1.36229802587414,0.281561238708772,0.325935666719784 +7.018,0.328121763681728,0.880070490566993,1.59401922268463,1.32999852919605,-1.36242958271872,0.281388186469795,0.325699378836957 +7.02,0.328019102885286,0.880126927444144,1.59403606865103,1.33019936744805,-1.36256112299816,0.281215173282705,0.325463143506597 +7.022,0.327916525841405,0.88018335986577,1.59405289994031,1.3304002622279,-1.36269264918474,0.281042196935791,0.325226957614749 +7.024,0.327814031065101,0.880239789791766,1.59406971558217,1.33060118215888,-1.36282416156855,0.280869249273897,0.324990821056561 +7.026,0.32771161722647,0.880296219828353,1.59408651205711,1.33080209497716,-1.36295566331288,0.280696325746863,0.324754731131759 +7.028,0.327609283462607,0.880352653697742,1.59410328727533,1.33100297236761,-1.36308715514646,0.280523416861834,0.324518688215923 +7.03,0.327507028982191,0.880409095446746,1.59412003693449,1.33120378775411,-1.36321864043953,0.280350517640674,0.324282690126655 +7.032,0.327404853358183,0.880465549876787,1.59413675847334,1.33140452039245,-1.36335011991751,0.280177618946175,0.324046737777512 +7.034,0.327302756125393,0.880522021732246,1.59415344739739,1.33160515244469,-1.36348159677518,0.280004716791637,0.323810829519101 +7.036,0.327200737072348,0.880578516128989,1.59417010119965,1.33180567241777,-1.36361307142369,0.279831803513592,0.323574966777362 +7.038,0.327098795847815,0.880635037759025,1.5941867156524,1.33200607166769,-1.3637445466461,0.279658876923269,0.323339148373824 +7.04,0.326996932264112,0.880691591349868,1.59420328869513,1.33220634736811,-1.36387602237757,0.279485931337187,0.323103376151583 +7.042,0.326895145921646,0.880748180911655,1.5942198166933,1.33240649865205,-1.36400750089657,0.279312966593629,0.322867649280414 +7.044,0.326793436529143,0.880804810246851,1.59423629829499,1.33260652932632,-1.36413898163075,0.279139978976406,0.322631969876375 +7.046,0.326691803548655,0.880861482252403,1.59425273065761,1.33280644386217,-1.36427046637409,0.278966970137699,0.322396337298941 +7.048,0.32659024653243,0.880918199486162,1.59426911327495,1.33300625005237,-1.36440195410786,0.27879393795982,0.322160753771779 +7.05,0.326488764785875,0.880974963524767,1.5942854441737,1.33320595502475,-1.36453344623339,0.278620885430349,0.321925218679235 +7.052,0.326387357716986,0.881031775582923,1.59430172371408,1.33340556798845,-1.36466494139773,0.278447811484664,0.321689734195667 +7.054,0.32628602451193,0.881088635919333,1.59431795076,1.33360509638561,-1.36479644073311,0.278274719873705,0.321454299587185 +7.056,0.326184764491214,0.881145544498359,1.59433412645849,1.33380454881087,-1.36492794267898,0.278101610020546,0.321218916855103 +7.058,0.326083576791707,0.881202500431496,1.59435025038948,1.33400393135426,-1.36505944822183,0.277928485909636,0.32098358504636 +7.06,0.325982460723716,0.881259502667637,1.59436632433113,1.33420325071915,-1.36519095570799,0.277755346977871,0.320748305913895 +7.062,0.325881415453941,0.881316549455676,1.59438234839657,1.33440251075657,-1.36532246608048,0.277582197040859,0.320513078236408 +7.064,0.32578044035878,0.881373639048886,1.59439832479305,1.33460171576163,-1.36545397767976,0.277409035226304,0.320277903495678 +7.066,0.325679534704241,0.881430769174587,1.5944142539533,1.33480086716298,-1.36558549147665,0.27723586494073,0.320042780203944 +7.068,0.325578697992528,0.881487937739344,1.594430138296,1.33499996695039,-1.36571700586073,0.277062684842862,0.31980770959594 +7.07,0.325477929636799,0.881545142293584,1.59444597835888,1.33519901446503,-1.36584852187013,0.276889497845297,0.319572689960612 +7.072,0.325377229299866,0.881602380726825,1.59446177656659,1.33539800990091,-1.3659800379689,0.276716302119041,0.319337722344266 +7.074,0.325267477273581,0.881653204949905,1.59447822945647,1.33558665693101,-1.36608958039944,0.276573262545956,0.319132537111178 +7.076,0.325168254624886,0.881707030182447,1.5944894860512,1.33577624548824,-1.36622286294991,0.276400500280931,0.318900181981523 +7.078,0.325071065581846,0.881763457320897,1.59450244874677,1.33596829313943,-1.36635852866983,0.276221155930089,0.318662580882304 +7.08,0.324973941250529,0.881821699055753,1.59451768301295,1.33616295475711,-1.36649374474867,0.276041482669617,0.31842398342662 +7.082,0.324876442623742,0.881880953479677,1.59453443234789,1.33636004434681,-1.36662814638123,0.275862862147883,0.318185354014318 +7.084,0.324778487983206,0.881940567218121,1.59455186052644,1.33655923823842,-1.36676180260297,0.275685468055747,0.317946981976141 +7.086,0.324680084413411,0.882000086129388,1.59456934425256,1.3367601366253,-1.36689486503568,0.275509192967765,0.317709000814696 +7.088,0.324581267642092,0.882059248893254,1.59458651243091,1.33696230520298,-1.36702748074681,0.275333861942549,0.317471490675134 +7.09,0.324482086638586,0.882117950671609,1.59460319957325,1.3371653030601,-1.36715977586505,0.275159298291191,0.317234486171623 +7.092,0.324382597987176,0.882176198031822,1.59461938734563,1.33736871299658,-1.3672918459122,0.27498533041705,0.316997986536306 +7.094,0.324282861257918,0.882234064021272,1.59463514080714,1.3375721595137,-1.36742376339052,0.274811806845023,0.316761957254659 +7.096,0.324182935717768,0.882291652245235,1.59465056420212,1.33777532732022,-1.36755557725193,0.274638589686342,0.316526345926546 +7.098,0.324082877125636,0.882349069850756,1.59466576357655,1.33797796666245,-1.36768732346139,0.274465564983504,0.316291086919772 +7.1,0.323982736092678,0.882406411777438,1.5946808309465,1.3381798996476,-1.36781902430573,0.27429263375835,0.316056116150246 +7.102,0.323882556626163,0.882463752121178,1.59469583180479,1.33838101483884,-1.36795069737943,0.274119720792014,0.315821371811306 +7.104,0.323782376075843,0.88252114287043,1.59471080809102,1.33858126478692,-1.36808235287997,0.273946764638856,0.315586804024593 +7.106,0.323682224947073,0.882578615286813,1.59472577811488,1.33878065413918,-1.36821400054781,0.273773725428373,0.315352370699558 +7.108,0.323573081366565,0.882629739374556,1.59474147954332,1.33896894182277,-1.36832372610849,0.273630746049456,0.31514771978505 +7.11,0.323474397209335,0.882683920182497,1.59475200871027,1.33915756201094,-1.36845712749639,0.273457897120302,0.314915949302486 +7.112,0.323377741293828,0.882740765008518,1.59476425521411,1.33934807430502,-1.36859290194652,0.27327837325089,0.314678985324928 +7.114,0.323281175185428,0.882799483438048,1.59477876640765,1.33954073368694,-1.36872823742565,0.273098420852066,0.314441052176629 +7.116,0.323184273983029,0.882859268108659,1.5947947805997,1.33973547619145,-1.3688627698828,0.272919419268794,0.314203105661553 +7.118,0.323086962111093,0.882919457740371,1.5948114564938,1.33993209723231,-1.36899657000227,0.272741562594375,0.313965427288573 +7.12,0.322989249363936,0.882979590201879,1.5948281721196,1.34013031182179,-1.36912978362348,0.272564759845804,0.313728152035779 +7.122,0.322891171488137,0.883039395464256,1.59484455601775,1.34032978450784,-1.36926255604947,0.272388862816589,0.313491357725956 +7.124,0.322792776168323,0.883098760877291,1.59486044788802,1.34053016070772,-1.36939500614484,0.272213711965444,0.313255082841021 +7.126,0.322694117218613,0.883157684978308,1.59487583153481,1.3407310880824,-1.3695272280142,0.272039160708925,0.313019324226613 +7.128,0.322595251019958,0.883216233994597,1.5948907786009,1.34093224090747,-1.36965928786263,0.271865070694771,0.31278405045823 +7.13,0.322496232877062,0.883274504713268,1.59490539625329,1.34113333243128,-1.36979123417725,0.271691322832895,0.312549206139966 +7.132,0.322397114738438,0.883332598741831,1.59491979711804,1.34133412840635,-1.36992309784728,0.27151780920778,0.312314727981911 +7.134,0.322297943105325,0.883390605540334,1.59493407531285,1.3415344485983,-1.37005490226127,0.271344442503798,0.312080547933942 +7.136,0.322198758406731,0.883448595102244,1.59494830151086,1.34173417065323,-1.37018666154214,0.271171146571054,0.311846605676052 +7.138,0.322099594399017,0.883506615513214,1.5949625181375,1.34193322356949,-1.37031838840803,0.270997864966595,0.311612846836558 +7.14,0.322000478712997,0.883564695625659,1.59497674695195,1.34213158527293,-1.3704500904333,0.270824551055842,0.311379230459533 +7.142,0.321901433069035,0.883622848461205,1.59499099108113,1.34232927173904,-1.37058177619318,0.270651175949022,0.311145723211444 +7.144,0.321802474291064,0.883681076401486,1.59500524507759,1.34252633202437,-1.37071345024513,0.270477718013914,0.310912304069412 +7.146,0.321703614724162,0.883739374773308,1.59501949647195,1.34272283638123,-1.37084511850711,0.270304170304301,0.310678956855279 +7.148,0.321604863253971,0.883797735832435,1.59503373364371,1.34291887145141,-1.3709767829394,0.270130529829882,0.310445674128951 +7.15,0.321506225628983,0.883856150530098,1.59504794457486,1.34311452948551,-1.37110844685408,0.269956804770378,0.310212449680751 +7.152,0.321407705322959,0.883914610603966,1.59506212200693,1.34330990529023,-1.37124010968263,0.269783003717273,0.30997928283331 +7.154,0.321309303697226,0.883973108699283,1.59507625995127,1.34350508761776,-1.37137177243528,0.269609142965635,0.309746171557287 +7.156,0.321211020708652,0.884031639211563,1.59509035722111,1.34370015846726,-1.37150343263551,0.269435236032227,0.309513117425892 +7.158,0.321112854947357,0.884090197582438,1.59510441294645,1.34389518686962,-1.37163508989015,0.269261301286457,0.309280119342259 +7.16,0.321014804238568,0.884148780686685,1.59511842964686,1.3440902304921,-1.37176674086803,0.269087351904614,0.309047179003454 +7.162,0.320916865597818,0.884207385950442,1.59513240867284,1.34428533153593,-1.37189838486018,0.268913403972959,0.308814295002398 +7.164,0.320819035760432,0.884266011742799,1.59514635345315,1.34448052019505,-1.37203001869501,0.268739466941624,0.308581468550435 +7.166,0.320721311074522,0.884324656595564,1.59516026523093,1.34467581210264,-1.37216164220942,0.268565552212962,0.308348697730934 +7.168,0.320623687969447,0.884383319728957,1.59517414664524,1.34487121302164,-1.37229325304425,0.268391664037146,0.308115983314522 +7.17,0.320526162789935,0.884442000394669,1.59518799776924,1.34506671719173,-1.37242485200817,0.26821780849967,0.307883323041065 +7.172,0.320428732204485,0.884500698491791,1.59520181993986,1.34526231261213,-1.37255643776102,0.268043984740088,0.307650717448179 +7.174,0.320331392981307,0.884559413959989,1.59521561197026,1.3454579796868,-1.37268801209718,0.267870194203634,0.307418164137019 +7.176,0.320234142339816,0.884618147408578,1.59522937409345,1.34565369655746,-1.37281957455332,0.267696432038232,0.307185663595105 +7.178,0.320136977674956,0.884676899494928,1.5952431042303,1.34584943758091,-1.37295112765247,0.267522696467003,0.306953213441149 +7.18,0.320039896861849,0.884735671521337,1.59525680195227,1.34604517833012,-1.37308267147922,0.267348980233336,0.306720814242382 +7.182,0.319942897942053,0.884794464774734,1.59527046473913,1.34624089361302,-1.37321420892145,0.267175279974584,0.306488463743143 +7.184,0.319845979396782,0.884853281086037,1.5952840919193,1.34643656193949,-1.37334574024556,0.267001587618198,0.306256162679055 +7.186,0.319749139811991,0.884912122139973,1.59529768089671,1.34663216296573,-1.37347726835954,0.26682789967546,0.306023908992297 +7.188,0.319652378136609,0.884970990014651,1.59531123106098,1.34682768138685,-1.37360879340726,0.266654208533625,0.305791703641365 +7.19,0.319555693342283,0.885029886483488,1.59532473998521,1.34702310383354,-1.37374031806309,0.266480511630174,0.305559544803167 +7.192,0.31945908468028,0.885088813557471,1.59533820731155,1.34721842226993,-1.37387184215182,0.266306802624012,0.305327433676363 +7.194,0.319362551347519,0.885147772799382,1.59535163092713,1.34741363046361,-1.374003367975,0.26613308044612,0.305095368670423 +7.196,0.319266092750961,0.885206765885213,1.59536501083179,1.34760872703641,-1.37413489495454,0.265959340361951,0.304863351202227 +7.198,0.319169708186308,0.885265793942571,1.59537834529776,1.34780371167122,-1.37426642498526,0.265785582919084,0.304631379873998 +7.2,0.319073397113619,0.885324858138685,1.59539163472394,1.34799858798304,-1.37439795709541,0.265611804930189,0.304399456265567 +7.202,0.318977158850278,0.885383959046206,1.59540487778255,1.34819335962436,-1.37452949281742,0.265438008351108,0.304167579104884 +7.204,0.318880992857521,0.885443097257628,1.59541807526275,1.34838803312569,-1.37466103085719,0.265264191219959,0.303935750060166 +7.206,0.318784898445828,0.885502272775469,1.59543122620644,1.34858261402994,-1.37479257247499,0.265090356501521,0.303703967907287 +7.208,0.318688875069504,0.885561485648114,1.59544433174382,1.34877710981083,-1.37492411615569,0.264916503015521,0.303472234326371 +7.21,0.318592922040826,0.885620735377985,1.59545739122093,1.34897152612041,-1.37505566299334,0.264742634278086,0.303240548069691 +7.212,0.318497038828737,0.885680021571637,1.59547040603021,1.34916586984557,-1.37518721135617,0.264568749444316,0.30300891076627 +7.214,0.318401224777641,0.88573934335836,1.59548337573289,1.34936014550503,-1.37531876227045,0.264394852168295,0.302777321092428 +7.216,0.318305479406395,0.88579870004702,1.59549630188816,1.34955435845946,-1.37545031407647,0.264220941574852,0.302545780586296 +7.218,0.318209802128182,0.8858580905479,1.59550918417373,1.34974851145482,-1.37558186780935,0.264047021149202,0.302314287821458 +7.22,0.318114192546847,0.885917514029599,1.59552202421699,1.34994260796795,-1.37571342184432,0.263873089743015,0.302082844231568 +7.222,0.318018650175389,0.885976969338133,1.59553482171681,1.35013664886651,-1.37584497727427,0.263699150495499,0.301851448286131 +7.224,0.317923174727863,0.886036455648691,1.5955475782795,1.35033063585235,-1.37597653254433,0.263525201871203,0.30162010132408 +7.226,0.317827765835275,0.886095971877704,1.59556029354409,1.35052456819543,-1.37610808882718,0.263351246607645,0.301388801729872 +7.228,0.317732423332475,0.886155517326035,1.5955729690248,1.35071844623095,-1.3762396446483,0.26317728277747,0.3011575507741 +7.23,0.31763714697136,0.886215091081536,1.59558560424122,1.35091226812397,-1.37637120126072,0.263003312754041,0.30092634678779 +7.232,0.317541936703112,0.886274692652069,1.59559820056804,1.35110603338004,-1.37650275726283,0.262829334288629,0.300695191007912 +7.234,0.317446792389425,0.886334321357793,1.59561075737048,1.35129973960499,-1.3766343139745,0.262655349484455,0.300464081747918 +7.236,0.317351714081075,0.886393976954028,1.59562327586108,1.35149338599893,-1.37676587004941,0.262481355880024,0.300233020246272 +7.238,0.317256701728324,0.88645365901398,1.59563575523996,1.35168697008753,-1.37689742685407,0.262307355423228,0.300002004831748 +7.24,0.31716175545704,0.886513367542724,1.59564819655786,1.35188049118215,-1.37702898307637,0.262133345553901,0.299771036773607 +7.242,0.317066875279557,0.886573102352146,1.59566059886017,1.35207394707145,-1.37716054010875,0.261959328171943,0.299540114440795 +7.244,0.316972061369522,0.886632863668167,1.59567296305494,1.35226733744222,-1.37729209665393,0.2617853007148,0.299309239153029 +7.246,0.316877313774306,0.886692651500299,1.59568528805927,1.35246066053116,-1.37742365411295,0.261611265116334,0.299078409333649 +7.248,0.316782632689523,0.886752466244657,1.59569757467072,1.35265391651016,-1.37755521118864,0.261437218877528,0.298847626361483 +7.25,0.316688018173774,0.886812308050717,1.59570982171471,1.35284710410541,-1.37768676927867,0.261263164015316,0.29861688871762 +7.252,0.316593470423423,0.886872177422675,1.59572202991773,1.35304022395663,-1.37781832707687,0.26108909812694,0.298386197838401 +7.254,0.316498989490087,0.886932074585841,1.59573419805419,1.35323327521445,-1.37794988597114,0.260915023329806,0.298155552256726 +7.256,0.316404575555895,0.886992000088609,1.59574632682024,1.35342625888512,-1.37808144464238,0.260740937321269,0.297924953456838 +7.258,0.316310228653797,0.887051954170498,1.59575841497881,1.35361917441765,-1.37821300446691,0.260566842311665,0.29769440001094 +7.26,0.316215948943225,0.887111937366474,1.59577046323287,1.35381202304486,-1.37834456411265,0.260392736081883,0.297463893436575 +7.262,0.316121736433024,0.887171949878093,1.59578247036778,1.35400480436992,-1.37847612494559,0.260218620912063,0.297233432329339 +7.264,0.316027591257238,0.887231992181301,1.5957944371233,1.35419751971211,-1.37860768562286,0.26004449463927,0.297003018223627 +7.266,0.315933513400294,0.887292064401477,1.59580636233263,1.35439016869936,-1.37873924750293,0.259870359584096,0.296772649722118 +7.268,0.315839502972529,0.887352166925225,1.59581824679283,1.35458275262368,-1.37887080923518,0.259696213610296,0.296542328360527 +7.27,0.315745559937211,0.88741229977952,1.59583008940038,1.35477527104305,-1.3790023721736,0.259522059050933,0.296312052734342 +7.272,0.315651684385391,0.887472463247417,1.59584189101994,1.35496772514826,-1.37913393496266,0.259347893771157,0.29608182436801 +7.274,0.315557876264366,0.887532657251005,1.59585365061657,1.35516011437457,-1.37926549895434,0.259173720094833,0.29585164183921 +7.276,0.315464135651513,0.887592881970507,1.59586536912313,1.35535243977916,-1.37939706279023,0.258999535870943,0.295621506652662 +7.278,0.315370462483857,0.887653137230347,1.59587704556954,1.35554470066077,-1.37952862782194,0.258825343400966,0.295391417362011 +7.28,0.315276856830633,0.887713423120828,1.59588868094931,1.35573689794546,-1.3796601926893,0.258651140508835,0.295161375448264 +7.282,0.315183318623747,0.887773739386378,1.59590027434638,1.3559290308114,-1.37979175874422,0.258476929468822,0.294931379439188 +7.284,0.315089847928897,0.887834086048819,1.59591182680142,1.35612110007983,-1.37992332462518,0.258302708078593,0.294701430792201 +7.286,0.314996444676816,0.887894462796792,1.59592333743689,1.35631310484194,-1.38005489168451,0.258128478587059,0.29447152801109 +7.288,0.314903108932898,0.887954869609602,1.59593480732372,1.35650504585206,-1.38018645855924,0.257954238769918,0.294241672533089 +7.29,0.314809840629198,0.888015306146869,1.59594623560531,1.35669692215401,-1.38031802660192,0.257779990856803,0.294011862842641 +7.292,0.314716639832577,0.888075772372038,1.59595762336516,1.3568887344742,-1.38044959444794,0.257605732608697,0.293782100362362 +7.294,0.314623506477503,0.888136267941438,1.59596896975031,1.35708048184548,-1.38058116344994,0.257431466243782,0.293552383563571 +7.296,0.314530440632781,0.888196792826738,1.59598027584047,1.35727216499876,-1.38071273224161,0.257257189516229,0.293322713860836 +7.298,0.314437442235242,0.888257346702814,1.59599154077138,1.35746378298338,-1.38084430217569,0.257082904640286,0.293093089719021 +7.3,0.314344511355144,0.888317929568675,1.59600276560571,1.35765533655662,-1.38097587188438,0.256908609370132,0.292863512551163 +7.302,0.314251647930842,0.888378541133769,1.59601394945664,1.35784682480041,-1.38110744272089,0.256734305921933,0.292633980821849 +7.304,0.314158852032963,0.888439181437151,1.59602509336072,1.35803824850884,-1.3812390133164,0.256559992054626,0.29240449594822 +7.306,0.314066123600144,0.888499850232132,1.59603619640178,1.35822960680167,-1.38137058502513,0.256385669989866,0.292175056399563 +7.308,0.313973462702064,0.888560547603685,1.59604725958574,1.3584209005104,-1.38150215647789,0.256211337493751,0.291945663601334 +7.31,0.313872258710304,0.888614842778401,1.59605925490282,1.35860186882061,-1.38161212426829,0.256067199620329,0.291745685059799 +7.312,0.313781053880204,0.888672027295005,1.59606599893469,1.35878421006407,-1.38174538239934,0.255893145019807,0.291518631299619 +7.314,0.313683108071376,0.888725342116833,1.59607536289063,1.35895873453253,-1.38185932993702,0.255742902208085,0.291315897274225 +7.316,0.313595119035231,0.888783322938702,1.59608169609714,1.35913718506395,-1.38199613307406,0.255562486614494,0.291085139259326 +7.318,0.313508563456617,0.888844866306023,1.5960911537828,1.35932041810479,-1.38213445551759,0.255376738085208,0.290849294262164 +7.32,0.313421548765509,0.888908583110363,1.59610346419507,1.35950815626149,-1.382271650207,0.255191934836995,0.290612762589444 +7.322,0.313325109628,0.888966823153942,1.59611827314654,1.35968955724467,-1.38238593371338,0.25503947868387,0.290405921371052 +7.324,0.313237705605463,0.889027975052321,1.59612820959736,1.3598756168598,-1.38252236645144,0.254859230072951,0.290172637835358 +7.326,0.31315127512126,0.889091160808841,1.5961394062013,1.36006659596479,-1.38266022186209,0.254674446949081,0.289935107968523 +7.328,0.3130640858096,0.889155369517775,1.59615202284477,1.36026173261792,-1.38279701639165,0.2544909172191,0.28969753953496 +7.33,0.312975850809141,0.889219784834396,1.59616522761799,1.36046006111407,-1.3829325951809,0.254309626961371,0.289460835188053 +7.332,0.312886611952522,0.889283868307281,1.59617829796661,1.36066058589708,-1.38306716217204,0.254130432307667,0.28922520394805 +7.334,0.312796487626263,0.889347341365181,1.59619080630931,1.36086235114867,-1.38320095764867,0.253952962805144,0.288990674605412 +7.336,0.312697059959296,0.889403701347147,1.59620359344094,1.36105423468905,-1.38331262294887,0.253807032155637,0.288786537463238 +7.338,0.312606894934108,0.889462284597571,1.59621045647493,1.3612472350727,-1.38344712666143,0.253632146801962,0.288556263573855 +7.34,0.312518028596941,0.889522905760177,1.59621840887513,1.36144177454878,-1.38358362711639,0.253451559227306,0.288321782626541 +7.342,0.312428771897101,0.889584975944132,1.59622814295029,1.36163743239475,-1.38371951015834,0.253271123392982,0.288087089926894 +7.344,0.312338849059803,0.889647875772171,1.59623907771858,1.3618337085002,-1.38385449949877,0.253091923545861,0.287852952219382 +7.346,0.312248290497033,0.889711097101576,1.59625053095422,1.36203013736108,-1.38398870930465,0.252913948153241,0.28761950293077 +7.348,0.31215718858122,0.889774287286772,1.59626199394276,1.36222632055972,-1.38412230893165,0.252736960584555,0.287386758362556 +7.35,0.312065644703205,0.889837243483315,1.59627316146328,1.36242193378879,-1.38425545768529,0.252560712199349,0.287154702588477 +7.352,0.311973757935388,0.889899884893958,1.59628390176532,1.36261673440091,-1.38438828312157,0.252384980185945,0.286923303592153 +7.354,0.31188162121143,0.889962215667429,1.59629420171171,1.36281055788505,-1.38452088494597,0.252209586144042,0.28669250811673 +7.356,0.31178931952705,0.890024290335525,1.59630412207987,1.36300331792781,-1.38465333234869,0.252034385958496,0.286462251772603 +7.358,0.311696928100571,0.890086184224219,1.59631375419653,1.36319499605076,-1.38478567465395,0.251859275520561,0.286232459173207 +7.36,0.311604511643615,0.890147973371478,1.59632319592527,1.36338563519435,-1.38491794135789,0.251684177509993,0.286003056410685 +7.362,0.311512123767107,0.890209721367391,1.59633253090797,1.3635753244696,-1.38505015262271,0.251509045769695,0.285773970727762 +7.364,0.31141980752561,0.890271474280562,1.59634182476159,1.36376418989194,-1.38518231767075,0.25133385143171,0.285545140622846 +7.366,0.311327595939512,0.890333259314964,1.59635111985728,1.36395237822666,-1.3853144433072,0.251158587305344,0.285316512049113 +7.368,0.311235513361887,0.890395087824721,1.59636044173872,1.36414004838417,-1.38544653057822,0.250983254760521,0.285088044834763 +7.37,0.311135096451103,0.890450535834244,1.5963708461217,1.36431710726081,-1.38555706661073,0.250838077162491,0.284888987567859 +7.372,0.311044630004857,0.890508847048583,1.59637606035696,1.36449550185085,-1.38569074625775,0.2506629133025,0.284662936509394 +7.374,0.310956076691952,0.890569699012002,1.59638297247458,1.36467632150157,-1.38582665446011,0.250481402961154,0.284431938253553 +7.376,0.310867646408827,0.890632333343286,1.59639210866482,1.36485968947594,-1.38596210162946,0.250299662053262,0.284200095051528 +7.378,0.310778958332159,0.89069596812445,1.59640272690838,1.36504548301119,-1.38609675549771,0.250119004614841,0.283968286354541 +7.38,0.310689946225375,0.89075996175788,1.59641401814505,1.36523345538076,-1.3862306829468,0.249939594344357,0.283736764163513 +7.382,0.310592163316964,0.890817442980063,1.59642644064308,1.36541302732753,-1.38634252810318,0.249791544359484,0.283534909549923 +7.384,0.310503861324048,0.890877393677647,1.59643334175954,1.36559563504151,-1.38647708135489,0.249614526249306,0.283306432537436 +7.386,0.310417056714715,0.890939399207404,1.59644145279066,1.36578180973908,-1.38661356138763,0.249432011155025,0.283073433801424 +7.388,0.310330011211922,0.89100271801702,1.5964512851817,1.36597115893812,-1.38674937471824,0.2492499264126,0.282840017277377 +7.39,0.310242396260219,0.891066650652024,1.59646216808911,1.36616309948911,-1.38688425769853,0.249069413371787,0.282607033402636 +7.392,0.310154197678666,0.891130666489653,1.59647340034697,1.36635699442396,-1.38701832547177,0.248890482345699,0.282374684538914 +7.394,0.310057044566722,0.89118800864671,1.59648556567117,1.36654195613813,-1.38713027381803,0.248743114527303,0.282172274178914 +7.396,0.309969180731957,0.891247748870849,1.59649208709349,1.36672921360359,-1.3872648763305,0.248566860372157,0.28194347061863 +7.398,0.309882682132022,0.891309551675854,1.5964997643363,1.36691913018809,-1.38740138553869,0.248385118799117,0.281710322979901 +7.4,0.309795852182568,0.891372728190413,1.59650915049647,1.36711123773771,-1.38753722522239,0.248203740721089,0.281476880457168 +7.402,0.309708393276412,0.891436609139225,1.59651959673174,1.36730494772289,-1.38767214150801,0.248023814110416,0.281243951406811 +7.404,0.309620315038541,0.891500675924645,1.59653040856693,1.36749967341218,-1.38780625553692,0.247845316496287,0.281011708265561 +7.406,0.309531693305201,0.891564589979402,1.59654109057958,1.36769486573841,-1.38793974513454,0.247668002491103,0.280780186804278 +7.408,0.309434220233543,0.89162175926978,1.59655246012972,1.36787979449478,-1.38805131401516,0.247521812355169,0.280578610169309 +7.41,0.309346091667362,0.891681362555108,1.59655808543836,1.36806591194912,-1.38818566228912,0.247346308863251,0.280350631443034 +7.412,0.309259413017423,0.89174313846337,1.59656487542014,1.36825378303556,-1.3883220302712,0.247164955971377,0.280118278161122 +7.414,0.309172496995908,0.891806428818507,1.5965734384279,1.36844316924027,-1.38845782184888,0.246983655878596,0.279885570883218 +7.416,0.309076664641662,0.891864148506559,1.59658425244099,1.36862347318199,-1.38857131137456,0.246833761158587,0.279682523347848 +7.418,0.308989988289442,0.891924980057454,1.59659027994202,1.36880619974899,-1.3887071437987,0.246655114036315,0.27945300456216 +7.42,0.308896192335587,0.891981843950749,1.5965990141522,1.36898162305489,-1.38882318913829,0.246501426061555,0.279248354424658 +7.422,0.308811643188606,0.892043011924695,1.59660434094581,1.36916128615842,-1.38896146152005,0.246318354450559,0.279016373806006 +7.424,0.308728086275272,0.892107346147378,1.59661230746952,1.36934555781647,-1.38910090765541,0.246130667420881,0.278780009616307 +7.426,0.308643775870742,0.892173488780612,1.59662264624921,1.36953388379333,-1.38923902403703,0.245944407893705,0.278543555496435 +7.428,0.308558426750612,0.892240294310264,1.59663411049766,1.36972550996969,-1.38937568435631,0.245760593043033,0.278307945407707 +7.43,0.308472078754379,0.892306955761483,1.59664564924678,1.36991961408138,-1.3895111383028,0.245579087693755,0.278073426526972 +7.432,0.30838484742019,0.892373003062756,1.59665661774315,1.37011537200479,-1.38964566487517,0.245399516183415,0.2778400773463 +7.434,0.308296867593375,0.892438242329846,1.59666673070578,1.37031200060761,-1.38977950675419,0.245221486750339,0.2776078946298 +7.436,0.308208278147425,0.892502676441069,1.59667596335105,1.37050879815979,-1.38991285190129,0.245044634270794,0.277376819203781 +7.438,0.308119214383711,0.892566426017231,1.59668444254835,1.37070516769041,-1.39004584278139,0.24486864288807,0.277146743517552 +7.44,0.308021475451397,0.892623252873612,1.5966934976345,1.37089039796983,-1.39015716889145,0.244723454431894,0.276946715647004 +7.442,0.307933135931754,0.892682541454223,1.59669695289344,1.37107605834301,-1.3902913652799,0.244548632155781,0.276720330073829 +7.444,0.307846364389968,0.892744162592306,1.59670187717053,1.37126275833697,-1.39042766535641,0.244367719243104,0.276489544746268 +7.446,0.307759494487927,0.892807502107343,1.59670892619952,1.3714503753518,-1.39056344814575,0.244186635610556,0.276258308807855 +7.448,0.307672228381127,0.892871878932931,1.59671745764287,1.37163869721297,-1.39069840889251,0.244006546838289,0.276027385043744 +7.45,0.307584560624968,0.892936710366378,1.5967267180295,1.37182749987094,-1.39083263402884,0.243827529678823,0.275796931854161 +7.452,0.307496545487232,0.893001571967285,1.59673612975552,1.37201656881764,-1.39096627115662,0.243649428850711,0.275567002585369 +7.454,0.307408248278705,0.893066201256396,1.59674533000836,1.3722057043843,-1.39109946386484,0.243472064009991,0.275337620666093 +7.456,0.307319735591728,0.89313047412863,1.59675414487499,1.37239473225759,-1.39123232878733,0.243295266009027,0.275108790510259 +7.458,0.307231072089369,0.893194368097599,1.59676253450922,1.37258350587541,-1.3913649583419,0.243118895438904,0.274880489632015 +7.46,0.307142318737938,0.893257925679902,1.5967705458487,1.37277191426205,-1.39149741710953,0.242942833604333,0.274652677780732 +7.462,0.307045251402875,0.893314813254612,1.5967794268855,1.37294964657796,-1.39160837235283,0.242797203318958,0.274454448477073 +7.464,0.306957779114904,0.893374302282872,1.59678286082328,1.37312860962847,-1.39174224795941,0.24262170486328,0.274229516269745 +7.466,0.306872047306567,0.893436190085161,1.59678782749207,1.37330957789137,-1.39187827983635,0.242440040539965,0.273999929165181 +7.468,0.306786351668953,0.893499806598459,1.59679491917572,1.37349253773934,-1.39201383327556,0.242258212881402,0.273769699007203 +7.47,0.30670035506284,0.893564435181705,1.59680345372612,1.37367730985103,-1.3921485936158,0.242077460893462,0.273539637668533 +7.472,0.306614017754558,0.893629476517842,1.59681266355864,1.37386364172807,-1.39228263250372,0.241897904939726,0.27330995075592 +7.474,0.306519111932392,0.893688096284618,1.59682314334158,1.37404100226341,-1.39239472934726,0.241749638429118,0.273109857003572 +7.476,0.306433487559219,0.893749217441244,1.59682810391006,1.37422103688661,-1.39252937473761,0.24157225511279,0.272883202724904 +7.478,0.306349317820449,0.893812452163589,1.59683427154284,1.37440418307824,-1.39266591713154,0.241389361170875,0.272652124589635 +7.48,0.306264924498989,0.893877062487981,1.59684214036043,1.37459009592506,-1.39280180439058,0.241206836301382,0.272420676727549 +7.482,0.306179999148891,0.89394234599709,1.59685103806408,1.37477827907387,-1.39293678136196,0.241025804286012,0.272189682283616 +7.484,0.306094533464415,0.894007765066947,1.59686026724962,1.37496819122417,-1.39307096124547,0.240846280507179,0.271959332839713 +7.486,0.306000358186858,0.894066568575984,1.59687053127253,1.37514905457776,-1.39318316909687,0.240698264890618,0.271758798832795 +7.488,0.30591530058164,0.894127751419468,1.59687511446248,1.37533233219371,-1.39331787492649,0.240521260923423,0.27153190509052 +7.49,0.305831582255018,0.894190998497326,1.59688081974716,1.37551828836974,-1.39345445633598,0.240338822741721,0.271300751318061 +7.492,0.305747557617996,0.894255624783821,1.59688819576384,1.37570647228365,-1.39359037467307,0.240156766081381,0.271069345389285 +7.494,0.305662942177489,0.89432096211327,1.59689660586102,1.37589633316136,-1.39372538167781,0.239976166635997,0.270838472483095 +7.496,0.305577746231094,0.894386490656374,1.59690537118983,1.37608731816665,-1.39385959466034,0.239797006120618,0.270608295342447 +7.498,0.30549204248334,0.894451868390618,1.59691400913925,1.37627890260259,-1.39399318570044,0.239619047805545,0.270378845238999 +7.5,0.3054059164952,0.894516915697979,1.59692225386347,1.37647061539884,-1.39412630987133,0.239442026214047,0.270150116698398 +7.502,0.305319454852354,0.894581578356151,1.59693000817631,1.37666205175377,-1.39425909634673,0.23926570280923,0.269922074158867 +7.504,0.305232741257874,0.894645886544464,1.59693729146448,1.37685288760556,-1.3943916415518,0.239089867474848,0.269694662476688 +7.506,0.305145853613093,0.894709916118777,1.59694418455084,1.37704288133164,-1.3945240185053,0.23891434949907,0.269467806994253 +7.508,0.305058862205337,0.894773759215395,1.59695079404885,1.37723187694966,-1.3946562762578,0.238739007493422,0.269241427617884 +7.51,0.304971828126249,0.894837503060288,1.59695722174497,1.37741979551743,-1.39478845077101,0.238563736170228,0.269015440449569 +7.512,0.304884802874407,0.894901218841013,1.5969635536657,1.37760662977735,-1.39492056368831,0.238388454231922,0.268789770280859 +7.514,0.304797828176613,0.894964956409374,1.59696985034885,1.37779242923608,-1.39505263157391,0.238213109941933,0.268564348650895 +7.516,0.304710936776069,0.895028745181002,1.59697615116356,1.37797729071484,-1.39518466288097,0.238037668564008,0.268339121995174 +7.518,0.304624153136215,0.895092596761515,1.59698247429575,1.37816134160652,-1.39531666538787,0.237862117620951,0.268114045827569 +7.52,0.304537494764002,0.895156510113631,1.59698882599987,1.37834473053319,-1.39544864170167,0.237686454367343,0.267889089863049 +7.522,0.304450973161222,0.895220475630192,1.59699520197784,1.37852761230268,-1.39558059559568,0.23751069120727,0.267664230228659 +7.524,0.304364595155208,0.895284479842504,1.59700159569293,1.3787101413666,-1.39571252684365,0.237334843647133,0.267439453514834 +7.526,0.304278363712442,0.895348507970655,1.59700799763378,1.37889246033421,-1.39584443714104,0.237158936241983,0.267214748734991 +7.528,0.304192279033281,0.895412546695569,1.59701440115389,1.37907469734856,-1.39597632474176,0.236982991261007,0.266990111651993 +7.53,0.304098208809797,0.895470189222544,1.59702204737153,1.37924673762725,-1.39608690850992,0.236837250483103,0.266794594942426 +7.532,0.304013702019063,0.895530564284949,1.59702441091409,1.37942072193933,-1.3962203639847,0.236661465528635,0.2665720875181 +7.534,0.303930970578592,0.89559341221363,1.59702838211223,1.37959736818044,-1.39635600189012,0.236479512101293,0.266344738181069 +7.536,0.303848312858849,0.895658011043881,1.59703447882793,1.3797766525985,-1.39649120513466,0.236297408962582,0.26611658554865 +7.538,0.30376537376541,0.895723609766308,1.59704197961427,1.37995836895431,-1.39662565742916,0.236116413551831,0.265888473486859 +7.54,0.303682093313285,0.895789590770073,1.59705010055671,1.38014221186863,-1.39675942417072,0.235936664310797,0.265660640009324 +7.542,0.30359848012957,0.895855520134962,1.5970582574262,1.38032780753374,-1.39689264009091,0.235758051236764,0.26543319582836 +7.544,0.3035145640595,0.895921144115218,1.59706610012418,1.38051474667533,-1.3970254344076,0.235580405564411,0.265206210606012 +7.546,0.303430384974977,0.895986356865782,1.59707347018477,1.38070260896196,-1.39715791885284,0.235403557233388,0.264979714679366 +7.548,0.303345988644086,0.896051159105071,1.59708034826302,1.38089099164889,-1.39729017842478,0.235227339534725,0.264753707181306 +7.55,0.303261423172398,0.896115616015129,1.59708679510307,1.38107952659623,-1.3974222789923,0.235051603485808,0.264528155682446 +7.552,0.303176736253753,0.896179823100848,1.59709291056539,1.38126789873231,-1.39755426556344,0.234876211606963,0.264303011165267 +7.554,0.303091972581512,0.896243880103608,1.59709879773086,1.38145585181666,-1.39768617240136,0.23470104842438,0.264078211321214 +7.556,0.303007172406518,0.896307875562471,1.59710454762128,1.38164319589977,-1.39781802120283,0.23452601205826,0.263853695105352 +7.558,0.30292237040256,0.896371878152211,1.59711022636212,1.38182980320249,-1.39794982995383,0.234351023219246,0.263629402752273 +7.56,0.302837595572499,0.896435935234565,1.59711587769008,1.38201560726723,-1.39808160947873,0.234176015752921,0.263405285739866 +7.562,0.302752871203258,0.896500074057385,1.5971215221632,1.38220059249485,-1.3982133705819,0.234000944613861,0.263181302336286 +7.564,0.30266821553425,0.896564306219821,1.59712716644482,1.38238478891697,-1.39834511915346,0.233825775548026,0.262957423835011 +7.566,0.30258364217587,0.896628631562483,1.59713280515326,1.38256825920452,-1.39847686224805,0.233650492289448,0.262733627415798 +7.568,0.302499160985328,0.896693043010802,1.59713842988197,1.38275109245145,-1.39860860258204,0.233475085754449,0.262509900677793 +7.57,0.302414778524356,0.89675752943435,1.59714402915755,1.38293339151383,-1.39874034428216,0.23329956081701,0.262286233753938 +7.572,0.302330498854394,0.896822078786148,1.59714959488346,1.38311526810484,-1.39887208730507,0.233123925339559,0.262062623752939 +7.574,0.302246323865439,0.896886679121957,1.59715511972971,1.38329683216848,-1.39900383322676,0.232948196904734,0.261839067235794 +7.576,0.302162253917442,0.896951320097206,1.5971606013968,1.38347818943818,-1.3991355797878,0.23277239205124,0.261615565215672 +7.578,0.302078288028155,0.897015992707806,1.59716603841027,1.38365943350702,-1.39926732678968,0.232596533306004,0.261392116277197 +7.58,0.301994424385302,0.897080689911066,1.59717143338618,1.38384064611731,-1.39939907071796,0.232420638875022,0.261168722172514 +7.582,0.301910660429487,0.897145405851441,1.597176788342,1.38402189185502,-1.39953081066399,0.232244730191023,0.260945381439529 +7.584,0.301826993275631,0.897210136247034,1.59718210786736,1.3842032208422,-1.399662542923,0.232068822183563,0.260722095376181 +7.586,0.301743419720878,0.897274877569953,1.59718739459082,1.38438466553202,-1.39979426685339,0.231892931411003,0.26049886191572 +7.588,0.301659936597599,0.897339627493761,1.5971926526463,1.38456624515752,-1.39992597937413,0.231717066890734,0.260275681769929 +7.59,0.30157654071906,0.897404384175546,1.5971978834733,1.38474796390383,-1.40005768072181,0.231541238754532,0.260052552385496 +7.592,0.301493229171956,0.897469146802378,1.59720308960303,1.38492981636452,-1.4001893688315,0.231365449524782,0.259829474130427 +7.594,0.301409999204515,0.897533914945518,1.59720827071936,1.38511178635494,-1.40032104500125,0.231189703152613,0.259606444246669 +7.596,0.301326848463431,0.89759868914337,1.59721342764396,1.38529385268685,-1.40045270818072,0.231013996576903,0.259383463031863 +7.598,0.301243774830845,0.897663470259009,1.59721855852557,1.38547598800519,-1.40058436057827,0.230838328975916,0.259160527764691 +7.6,0.301160776614763,0.897728260040856,1.59722366290095,1.38565816435133,-1.40071600189821,0.230662693445742,0.258937638872785 +7.602,0.301077852347041,0.897793060443724,1.59722873791329,1.38584035159482,-1.40084763492909,0.230487086309976,0.258714793832204 +7.604,0.300995000941487,0.897857874148069,1.59723378237478,1.38602252245979,-1.40097925976691,0.23031149878462,0.258491993323974 +7.606,0.300912221468929,0.897922703844146,1.5972387929663,1.38620465033073,-1.40111087941369,0.2301359262294,0.258269235113399 +7.608,0.300829513299194,0.897987552723467,1.5972437682726,1.38638671361652,-1.40124249401204,0.229960359712551,0.258046520196801 +7.61,0.300746875869325,0.898052423748701,1.59724870495022,1.38656869289331,-1.4013741064701,0.229784795135958,0.257823846664172 +7.612,0.300664308823763,0.898117320143979,1.59725360173079,1.38675057464209,-1.40150571671981,0.229609224660633,0.25760121583599 +7.614,0.300581811788318,0.898182244677145,1.59725845555894,1.38693234782589,-1.40163732737269,0.2294336456834,0.257378626111428 +7.616,0.300499384518413,0.898247200172676,1.59726326556722,1.387114007142,-1.40176893800419,0.229258052123298,0.257156079095707 +7.618,0.300417026686269,0.89831218882532,1.59726802918829,1.38729554920536,-1.40190055083729,0.229082443262518,0.256933573436854 +7.62,0.300334738041882,0.898377212749302,1.59727274610525,1.38747697550317,-1.40203216504853,0.228906814920506,0.256711110946341 +7.622,0.300252518215769,0.898442273331423,1.59727741434142,1.38765828837598,-1.40216378247272,0.228731168193163,0.25648869042888 +7.624,0.300170366892858,0.898507371819643,1.59728203418893,1.3878394938594,-1.40229540192325,0.228555500554444,0.256266313801136 +7.626,0.300088283629246,0.8985725087143,1.59728660427869,1.38802059763224,-1.40242702490996,0.228379814535972,0.25604397991975 +7.628,0.300006268036152,0.898637684391334,1.59729112549058,1.38820160789369,-1.40255864996585,0.228204108797327,0.255821690703581 +7.63,0.299924319606849,0.898702898524198,1.59729559700683,1.38838253140096,-1.40269027837109,0.22802838678591,0.255599444964537 +7.632,0.299842437906404,0.89876815073255,1.59730002020832,1.38856337647734,-1.40282190847901,0.227852647810363,0.255377244537928 +7.634,0.299760622404217,0.898833440024548,1.59730439471616,1.38874414920683,-1.40295354144099,0.227676895711519,0.255155088119003 +7.636,0.299678872665169,0.898898765460232,1.5973087222796,1.38892485661444,-1.4030851755268,0.227501129962353,0.254932977404131 +7.638,0.299597188183614,0.898964125603409,1.5973130028115,1.38910550303464,-1.40321681184702,0.227325354368893,0.254710910933888 +7.64,0.299515568572394,0.89902951918934,1.59731723827396,1.38928609346044,-1.4033484486648,0.227149568208188,0.254488890245619 +7.642,0.299434013395233,0.899094944576536,1.59732142871327,1.38946663006471,-1.40348008711468,0.22697377496635,0.254266913722051 +7.644,0.299352522351334,0.899160400409999,1.59732557614879,1.38964711568431,-1.4036117255047,0.226797973515668,0.254044982754004 +7.646,0.299271095104507,0.899225885065328,1.59732968061231,1.38982755045127,-1.40374336503185,0.226622166887574,0.253823095592215 +7.648,0.29918973146239,0.899291397301114,1.59733374404434,1.39000793536371,-1.40387500407521,0.226446353482739,0.253601253517791 +7.65,0.299108431201922,0.899356935690285,1.59733776634131,1.39018826897681,-1.40400664390916,0.226270535870686,0.253379454694393 +7.652,0.299027194243362,0.899422499257881,1.59734174926186,1.39036855101129,-1.40413828298898,0.226094712022844,0.253157700343565 +7.654,0.298946020472714,0.899488086897196,1.59734569248371,1.39054877905837,-1.40426992266354,0.22591888412792,0.252935988594513 +7.656,0.298864909911484,0.899553697991707,1.59734959752075,1.39072895218528,-1.40440156145515,0.225743049837076,0.252714320661634 +7.658,0.298783862537271,0.899619331815955,1.59735346378981,1.39090906761999,-1.4045332007733,0.225567211084398,0.252492694689677 +7.66,0.298702878450598,0.8996849881426,1.59735729253799,1.39108912432642,-1.40466483919056,0.225391365334836,0.252271111931398 +7.662,0.298621957695079,0.899750666629925,1.5973610829182,1.39126911964923,-1.40479647815863,0.225215514401234,0.252049570586685 +7.664,0.29854110042271,0.89981636741663,1.59736483592504,1.3914490528457,-1.4049281162816,0.225039655688422,0.251828071979101 +7.666,0.298460306714933,0.89988209049917,1.59736855047707,1.39162892168422,-1.40505975503528,0.224863791001316,0.251606614388417 +7.668,0.29837957674755,0.899947836317914,1.59737222735889,1.3918087259323,-1.40519139303859,0.224687917781661,0.251385199225637 +7.67,0.298298910613699,0.900013605128206,1.59737586530762,1.39198846391284,-1.4053230317766,0.22451203790484,0.251163824859136 +7.672,0.298218308489191,0.900079397581893,1.59737946495848,1.39216813595611,-1.40545466987051,0.224336148908529,0.250942492788497 +7.674,0.298137770458023,0.90014521409607,1.59738302493288,1.39234774092444,-1.40558630880437,0.224160252778431,0.250721201464999 +7.676,0.298057296678529,0.90021105543379,1.59738654578492,1.39252727964053,-1.40571794719364,0.223984347170155,0.250499952465116 +7.678,0.297976887211645,0.900276922074036,1.59739002608872,1.39270675139357,-1.40584958651553,0.223808434185803,0.250278744306415 +7.68,0.297896542187923,0.900342814794812,1.59739346638363,1.39288615735687,-1.40598122537589,0.223632511591536,0.250057578621837 +7.682,0.297816261638421,0.90040873404711,1.59739686525883,1.39306549708781,-1.40611286524275,0.223456581587769,0.249836453972156 +7.684,0.297736045662343,0.900474680542686,1.59740022329569,1.39324477194591,-1.40624450471139,0.223280642025196,0.249615372022198 +7.686,0.297655894260213,0.900540654633836,1.59740353914834,1.39342398159614,-1.40637614524074,0.223104695171407,0.249394331350925 +7.688,0.297575807501741,0.900606656907165,1.5974068134821,1.39360312743511,-1.40650778541621,0.222928738927833,0.249173333630589 +7.69,0.297495785360822,0.90067268756997,1.5974100450495,1.39378220910358,-1.4066394266889,0.22275277559511,0.248952377435275 +7.692,0.297415827883173,0.900738747050331,1.5974132346245,1.39396122792476,-1.40677106763582,0.222576803092737,0.248731464423737 +7.694,0.297335935022683,0.900804835389987,1.5974163810738,1.3941401834281,-1.40690270970175,0.222400823724725,0.248510593146921 +7.696,0.297256106808387,0.900870952850245,1.59741948528727,1.39431907680042,-1.40703435145682,0.222224835402959,0.248289765234914 +7.698,0.297176343181768,0.900937099310492,1.59742254624502,1.39449790742015,-1.40716599434088,0.222048840413863,0.248068979203671 +7.7,0.297096644162715,0.901003274878773,1.59742556494476,1.39467667631944,-1.4072976369184,0.221872836645719,0.247848236646181 +7.702,0.297017009687476,0.901069479294585,1.59742854046558,1.39485538272634,-1.40742928062534,0.221696826356372,0.247627536038351 +7.704,0.296937439773367,0.901135712542601,1.59743147389317,1.39503402753465,-1.40756092402137,0.221520807404205,0.247406878934246 +7.706,0.296857934357192,0.901201974258123,1.59743436438148,1.39521260985056,-1.40769256853935,0.221344782016422,0.247186263770857 +7.708,0.296778493458591,0.901268264342286,1.59743721307698,1.39539113046686,-1.40782421273484,0.221168748023061,0.246965692067077 +7.71,0.296699117018853,0.901334582368542,1.59744001917925,1.39556958841061,-1.40795585803824,0.220992707625143,0.246745162226986 +7.712,0.29661980506289,0.901400928197762,1.5974427838654,1.39574798441858,-1.40808750300171,0.220816658631003,0.246524675742095 +7.714,0.296540557538461,0.901467301384287,1.59744550635071,1.39592631748334,-1.4082191490539,0.220640603223556,0.246304230992717 +7.716,0.296461374476836,0.901533701789614,1.59744818781409,1.39610458832769,-1.40835079474433,0.220464539198282,0.246083829453021 +7.718,0.296382255832517,0.901600128986872,1.59745082745957,1.39628279594744,-1.40848244150081,0.220288468728986,0.245863469490069 +7.72,0.296303201642686,0.901666582872144,1.59745342644356,1.39646094108354,-1.40861408787122,0.220112389606959,0.245643152571243 +7.722,0.296224211867549,0.90173306306663,1.59745598393774,1.39663902276095,-1.40874573528352,0.219936304004784,0.245422877060614 +7.724,0.296145286548695,0.901799569525082,1.59745850105845,1.39681704175811,-1.40887738228509,0.219760209716407,0.245202644428395 +7.726,0.296066425650181,0.901866101935337,1.59746097693132,1.3969949971419,-1.4090090303052,0.21958410891878,0.244982453044401 +7.728,0.295987629215918,0.901932660323751,1.59746341262282,1.39717288973501,-1.40914067789182,0.219407999412764,0.244762304389299 +7.73,0.295908897211613,0.901999244452185,1.59746580720667,1.39735071864757,-1.40927232647661,0.219231883382588,0.244542196845029 +7.732,0.295830229681292,0.902065854420678,1.59746816169743,1.39752848474316,-1.40940397460913,0.219055758637663,0.244322131907739 +7.734,0.295751626590175,0.902132490062278,1.59747047511831,1.39770618716811,-1.40953562372429,0.218879627369971,0.244102107975145 +7.736,0.295673087980414,0.902199151543476,1.59747274843653,1.3978838268171,-1.40966727237398,0.218703487396961,0.243882126561146 +7.738,0.295594613814962,0.902265838757489,1.59747498063217,1.39806140286102,-1.40979892199686,0.21852734091706,0.243662186080194 +7.74,0.295516204132565,0.902332551923132,1.59747717263475,1.39823891621308,-1.40993057114748,0.218351185753849,0.243442288063671 +7.742,0.295437858892665,0.902399290977278,1.59747932339261,1.39841636605596,-1.41006222126842,0.218175024109895,0.243222430941403 +7.744,0.295359578129653,0.902466056172896,1.59748143381023,1.3985937533091,-1.41019387091676,0.217998853812397,0.243002616259937 +7.746,0.295281361798806,0.902532847471411,1.59748350281762,1.39877107715572,-1.41032552153872,0.217822677065519,0.242782842461369 +7.748,0.295203209929814,0.902599665140604,1.59748553130789,1.39894833851167,-1.41045717169348,0.217646491697636,0.242563111103697 +7.75,0.295125122473717,0.90266650914751,1.5974875182062,1.39912553655252,-1.41058882283021,0.21747029991229,0.242343420637139 +7.752,0.295047099455686,0.902733379756752,1.5974894644071,1.39930267218414,-1.41072047350946,0.217294099537119,0.242123772626739 +7.754,0.294969140822938,0.902800276924469,1.59749136884273,1.39947974456995,-1.4108521251825,0.217117892773505,0.241904165526341 +7.756,0.294891246596734,0.902867200897481,1.59749323241969,1.39965675460306,-1.41098377641028,0.216941677447187,0.241684600903593 +7.758,0.294813416721235,0.902934151608568,1.59749505408617,1.39983370143358,-1.41111542864524,0.216765455756629,0.241465077211732 +7.76,0.294735651214685,0.903001129276679,1.59749683476818,1.40001058594215,-1.41124708044777,0.216589225525291,0.241245596017088 +7.762,0.294657950019161,0.903068133803668,1.5974985734356,1.40018740726704,-1.41137873327053,0.216412988948672,0.241026155768787 +7.764,0.294580313150914,0.903135165375582,1.59750027103768,1.40036416627881,-1.41151038567253,0.216236743848202,0.240806758028828 +7.766,0.294502740550982,0.903202223860805,1.59750192656802,1.40054086210694,-1.4116420391059,0.216060492416909,0.240587401239753 +7.768,0.294425232234648,0.903269309412286,1.5975035409995,1.40071749561543,-1.41177369212763,0.215884232474853,0.240368086957326 +7.77,0.294347788142888,0.903336421866899,1.5975051133483,1.40089406592865,-1.41190534618879,0.215707966213373,0.240148813616192 +7.772,0.294270408290936,0.903403561348365,1.59750664460831,1.40107057390769,-1.41203699984397,0.215531691452006,0.239929582765128 +7.774,0.294193092620537,0.903470727667538,1.59750813381454,1.40124701867532,-1.41216865454298,0.215355410381256,0.239710392830684 +7.776,0.294115841147602,0.903537920925707,1.59750958197725,1.4014234010929,-1.4123003088379,0.215179120820951,0.23949124535495 +7.778,0.294038653815256,0.903605140915483,1.59751098814481,1.40159972028439,-1.41243196417732,0.215002824961501,0.23927213875713 +7.78,0.293961530640583,0.90367238772414,1.59751235333791,1.40177597711371,-1.41256361911098,0.214826520623673,0.239053074573756 +7.782,0.293884471568461,0.903739661134775,1.59751367661213,1.40195217070777,-1.4126952750865,0.214650209998308,0.238834051218137 +7.784,0.293807476617397,0.903806961229389,1.59751495899236,1.40212830193437,-1.41282693065168,0.214473890907507,0.238615070222932 +7.786,0.293730545734152,0.903874287790036,1.59751619953534,1.40230436992418,-1.41295858725358,0.214297565542804,0.23839612999741 +7.788,0.293653678938679,0.90394164090139,1.59751739926445,1.4024803755492,-1.41309024343853,0.21412123172777,0.238177232072296 +7.79,0.293576876179546,0.904009020351674,1.59751855723241,1.40265631794382,-1.41322190065356,0.213944891654655,0.237958374854791 +7.792,0.293500137477984,0.904076426234538,1.59751967445652,1.40283219798388,-1.41335355744403,0.213768543148417,0.237739559875605 +7.794,0.293423462784124,0.904143858349654,1.5975207499816,1.40300801480685,-1.41348521525747,0.213592188401848,0.237520785541692 +7.796,0.293346852120172,0.904211316803816,1.59752178481581,1.40318376929156,-1.41361687263877,0.213415825241058,0.237302053385417 +7.798,0.293270305437471,0.904278801411159,1.59752277799383,1.40335946057759,-1.41374853103637,0.213239455859095,0.237083361814972 +7.8,0.293193822758821,0.904346312293486,1.59752373051324,1.40353508954573,-1.4138801889951,0.213063078082907,0.236864712365634 +7.802,0.293117404036376,0.904413849280148,1.59752464139793,1.40371065533663,-1.41401184796466,0.212886694105474,0.23664610344785 +7.804,0.293041049293127,0.904481412507673,1.59752551163503,1.40388615883201,-1.41414350649006,0.212710301754262,0.236427536600573 +7.806,0.292964758481646,0.904549001819397,1.59752634023843,1.40406159917264,-1.41427516602246,0.212533903221881,0.236209010237018 +7.808,0.292888531624742,0.90461661736452,1.59752712818615,1.40423697724031,-1.41440682510719,0.212357496336042,0.235990525900064 +7.81,0.292812368675059,0.904684258997633,1.59752787448401,1.40441229217515,-1.4145384851969,0.212181083288753,0.235772082005718 +7.812,0.292728762823921,0.904745600842404,1.59753019601246,1.40457738455041,-1.41464924657503,0.212034858754424,0.235582371751121 +7.814,0.292653968542387,0.904809536494898,1.59752710956957,1.40474473770875,-1.41478243471961,0.211858428793485,0.235365712141146 +7.816,0.292580685939938,0.904875919821898,1.59752551129225,1.40491448822977,-1.41491773354095,0.211676027421235,0.235144426326806 +7.818,0.292507385463098,0.904944078552285,1.59752589692943,1.40508645196208,-1.41505264963437,0.211493493510861,0.234922425689902 +7.82,0.292433767364792,0.905013296306025,1.59752757567317,1.40526038948322,-1.41518688955467,0.21131198443306,0.234700489417971 +7.822,0.292352305215442,0.905076652578727,1.59753142837515,1.40542584932032,-1.41529963219085,0.211161806111101,0.23450750549754 +7.824,0.292279224177378,0.905142605761626,1.59752989972536,1.40559499453715,-1.41543429662252,0.210982444059031,0.234287905270787 +7.826,0.292207275098255,0.905210757534889,1.59752955124706,1.40576758856386,-1.41557069850981,0.210797984441027,0.234064081399605 +7.828,0.292134975491895,0.905280322593245,1.59753073184589,1.40594309186328,-1.41570644493925,0.210614094024488,0.233839975294652 +7.83,0.292062072836444,0.90535057245193,1.5975327332684,1.40612092886343,-1.41584132429988,0.210431782227892,0.233616358912777 +7.832,0.291988573582406,0.905420961083174,1.59753487421922,1.40630050958739,-1.4159754556423,0.21025101910192,0.233393413833058 +7.834,0.291907081718276,0.905484823195322,1.59753834781478,1.40647109576032,-1.41608813125537,0.210101761204701,0.233199858728248 +7.836,0.291833826412735,0.905550861036805,1.59753590932883,1.40664465158745,-1.41622275865625,0.209923344763075,0.232980046926931 +7.838,0.291761626164653,0.90561889735976,1.59753440159528,1.40682077865363,-1.41635916830433,0.209739785747156,0.232756286066282 +7.84,0.291689042900669,0.90568830803503,1.59753437841698,1.40699886541183,-1.4164949629486,0.209556686791248,0.23253242376439 +7.842,0.291615855071356,0.905758466048975,1.59753526233237,1.40717833324249,-1.41662992047302,0.209375016421984,0.232309153277881 +7.844,0.291542090710253,0.905828875022906,1.5975364384576,1.40735864371575,-1.41676414966482,0.209194722777906,0.232086596274728 +7.846,0.291467826556188,0.905899199733814,1.59753747175412,1.4075393048897,-1.41689780615486,0.209015563658814,0.231864763555569 +7.848,0.291385720386636,0.905962938770355,1.59753978910978,1.4077097366747,-1.41701017657933,0.208867469537417,0.231672286342061 +7.85,0.291311943260505,0.906028882726241,1.59753626604684,1.40788211756758,-1.41714459814757,0.208689804205325,0.231453491516638 +7.852,0.29123933909766,0.906096910925992,1.59753382341128,1.4080562413744,-1.41728088763737,0.208506647677991,0.23123066636518 +7.854,0.291166473215693,0.906166413200558,1.5975330377478,1.40823171399008,-1.4174166307533,0.20832365370105,0.231007633582772 +7.856,0.291093118038198,0.906236750797152,1.59753332738447,1.40840817760875,-1.41755158278847,0.208141839707408,0.230785083663386 +7.858,0.291019291241395,0.906307400662394,1.59753405016974,1.40858529481365,-1.41768584033903,0.207961216604452,0.230563139578404 +7.86,0.290945057730818,0.90637799698269,1.59753474047676,1.40876275362615,-1.41781954416272,0.207781593943201,0.230341827232226 +7.862,0.290870489924756,0.906448324695685,1.59753512775812,1.40894027204806,-1.41795282654414,0.207602766381434,0.230121142878234 +7.864,0.290795659747492,0.906518292018002,1.59753510511443,1.40911760980956,-1.41808579307558,0.207424543910379,0.22990106520537 +7.866,0.290720635882627,0.906587893968064,1.59753467586352,1.40929457094651,-1.4182185277147,0.207246768805851,0.229681549250325 +7.868,0.290645482136767,0.906657178291734,1.59753391084552,1.40947101097315,-1.41835108936063,0.207069306575703,0.229462537076603 +7.87,0.290562878147646,0.906719907550761,1.59753460147764,1.40963668928683,-1.41846269572255,0.206922238150783,0.229272580543939 +7.872,0.29048885743545,0.906784994101225,1.59752976539342,1.4098041243987,-1.41859653763716,0.206745074406667,0.229056004274975 +7.874,0.290416265905973,0.906852380517523,1.59752638220772,1.40997334062775,-1.41873239148365,0.206562059615669,0.228835098942099 +7.876,0.290343642215996,0.906921454298618,1.59752500735774,1.41014416247633,-1.41886779828967,0.206378949585744,0.228613691607437 +7.878,0.290270722991589,0.906991538587044,1.59752499184533,1.4103164029361,-1.41900248277418,0.206196862215008,0.22839249181854 +7.88,0.290197489669604,0.907062059347888,1.5975256143287,1.41048984918236,-1.41913651354235,0.206015883715447,0.228171663281494 +7.882,0.290116622102425,0.907126295176405,1.5975280379586,1.4106541190469,-1.41924920674445,0.20586607525967,0.227979880389465 +7.884,0.29004409100961,0.907192816849437,1.5975248237408,1.41082154150945,-1.41938381068015,0.205686868041069,0.227761596612893 +7.886,0.289972768237521,0.907261387853478,1.59752270801347,1.4109918705809,-1.41952019831454,0.205502428679692,0.227539195316109 +7.888,0.289901213055028,0.907331329862506,1.59752215344734,1.41116465580633,-1.41965598108373,0.205318409559396,0.227316549953204 +7.89,0.289829184241107,0.907401979900167,1.59752252346038,1.41133943689498,-1.41979093404215,0.205135830499554,0.227094385957214 +7.892,0.289749358635817,0.90746652173885,1.59752489106999,1.41150560270322,-1.41990436384174,0.204984870396399,0.226901452729611 +7.894,0.289677674407728,0.907533434211588,1.59752168711153,1.4116752794501,-1.42003951886854,0.204804909653928,0.226682216223495 +7.896,0.289607042060471,0.90760242592342,1.59751956500638,1.41184800813485,-1.42017631847881,0.20462004576637,0.226459053929925 +7.898,0.289536047999937,0.907672784029202,1.59751893468871,1.41202316319779,-1.4203124129772,0.204435848985491,0.226235817134187 +7.9,0.289464473356581,0.907743830137289,1.59751914177016,1.41220014731761,-1.42044760183075,0.20425325810901,0.226013216755677 +7.902,0.289392343792515,0.907815046754479,1.59751953476481,1.41237838134112,-1.42058201374089,0.204072210260622,0.225791384756398 +7.904,0.289312431637959,0.907879802249545,1.5975214146081,1.41254718438237,-1.42069503113248,0.203922625162933,0.225598924097067 +7.906,0.28924064548384,0.90794673075005,1.59751741790306,1.41271867788355,-1.42082986827178,0.20374381410542,0.225380260243832 +7.908,0.289169933560244,0.908015676765918,1.59751438124215,1.41289240662246,-1.42096644286643,0.203559871959922,0.225157732627831 +7.91,0.289098899745561,0.908086017295541,1.59751284045096,1.41306780524235,-1.4211023906603,0.203376364282501,0.224935146268631 +7.912,0.28902733314887,0.908157122773294,1.59751221651045,1.41324437032813,-1.42123749390689,0.203194240051118,0.224713176597025 +7.914,0.288955262097759,0.908228491597414,1.59751189194703,1.41342163727126,-1.42137186568887,0.203013456314164,0.224491932307026 +7.916,0.288875484995952,0.908293488774849,1.59751318854945,1.41358905309501,-1.42148489037009,0.202863956135873,0.224299989710872 +7.918,0.288803850755436,0.908360715701863,1.59750870959397,1.41375888234157,-1.42161973978042,0.202685078421923,0.224081787043499 +7.92,0.288733324910017,0.908429995611561,1.5975052709818,1.41393076822235,-1.42175633861881,0.202500962649606,0.223859674634456 +7.922,0.28866251307509,0.908500681451867,1.59750338590396,1.41410424960833,-1.42189232185196,0.202317197269921,0.223637459288867 +7.924,0.28859120087127,0.908572122725214,1.59750245766712,1.41427891609398,-1.42202746849334,0.202134756725672,0.223415822410136 +7.926,0.288519411873057,0.908643801907868,1.59750185619305,1.41445437954898,-1.42216188807637,0.201953623509293,0.223194880523597 +7.928,0.28843996660034,0.908709077376421,1.59750291139643,1.41462014852716,-1.42227497641364,0.201803761264154,0.223003203327417 +7.93,0.288368653172062,0.908776533055103,1.59749820175103,1.41478854448054,-1.42240986963976,0.201624527026215,0.222785251401581 +7.932,0.288298455244718,0.908845995999237,1.59749454152724,1.41495921197591,-1.42254650447691,0.20144008988089,0.222563387950836 +7.934,0.288227982202598,0.908916823180235,1.59749244286918,1.41513169313811,-1.42268251874576,0.201256042356259,0.222341418166825 +7.936,0.288157018898455,0.908988369653047,1.59749131054612,1.4153055719265,-1.42281769111803,0.201073363040191,0.222120023051633 +7.938,0.28808558714886,0.909060124256499,1.59749051605422,1.41548044524795,-1.42295213018055,0.200892037386611,0.221899319504285 +7.94,0.288006532568849,0.909125455779738,1.59749140604187,1.4156458025553,-1.42306524582779,0.200742027139249,0.221707863514914 +7.942,0.287935585306088,0.909192942436354,1.59748653779833,1.41581395447414,-1.42320014092583,0.200562686174648,0.221490131669811 +7.944,0.28786574976232,0.909262422326616,1.59748272385323,1.41598449358714,-1.42333676692325,0.200378193690168,0.221268495310542 +7.946,0.287795641373634,0.909333259990148,1.59748047287053,1.41615692638344,-1.42347276701819,0.200194129403051,0.221046754680003 +7.948,0.287725046217417,0.909404816868742,1.59747918765194,1.41633080618978,-1.42360792185196,0.200011462122017,0.220825588291753 +7.95,0.28765398606334,0.909476587126557,1.59747823787605,1.41650570267246,-1.42374234105666,0.199830169511928,0.220605112298536 +7.952,0.28757533307491,0.909541947742488,1.5974789842923,1.41667108503678,-1.42385545009958,0.199680203770256,0.220413868594801 +7.954,0.28750476055178,0.909609468161041,1.5974739614702,1.41683926112372,-1.42399031982639,0.199500911170369,0.220196349712489 +7.956,0.287435294636333,0.909678994095498,1.59746997990257,1.417009786811,-1.42412691694466,0.199316479099102,0.219974935336963 +7.958,0.287365557508083,0.909749893950102,1.59746754566227,1.41718215343083,-1.42426289015147,0.199132474971576,0.21975342103182 +7.96,0.287295336941173,0.909821531694992,1.59746606143827,1.41735590738706,-1.42439802178375,0.198949860268801,0.219532483049314 +7.962,0.28721748239029,0.909887123438041,1.59746671605394,1.41752049628308,-1.4245117096804,0.19879877588778,0.219340750812533 +7.964,0.287147612802128,0.909955075891468,1.59746182954647,1.41768820880671,-1.4246470111584,0.198618583006271,0.219122758997968 +7.966,0.287078773145293,0.91002511776664,1.59745805442203,1.4178585393664,-1.42478393051931,0.198433460358619,0.218900914846344 +7.968,0.28700959451406,0.91009653562736,1.59745579250226,1.41803092749108,-1.42492014262181,0.198248936353235,0.218679032780872 +7.97,0.286939871104967,0.910168645313383,1.59745438624274,1.41820486247717,-1.42505545638004,0.198065946810116,0.218457797729644 +7.972,0.286869631804175,0.910240922731388,1.5974531881269,1.41837985943214,-1.42518999588039,0.197884432401775,0.218237336106355 +7.974,0.286791805106512,0.910306751429406,1.59745359422214,1.41854534360822,-1.42530322738146,0.197734315398713,0.218046163320482 +7.976,0.286721967908823,0.910374688319956,1.59744812215633,1.41871361186716,-1.42543817040543,0.197554917160695,0.217828795708517 +7.978,0.2866531940199,0.910444602309725,1.59744360779701,1.41888414728411,-1.42557482473101,0.197370432795009,0.217607617209949 +7.98,0.286584124963088,0.910515879390413,1.5974405840138,1.41905641227445,-1.42571084843394,0.197186396644283,0.217386405719659 +7.982,0.2865145576534,0.910587896242877,1.59743847578133,1.41922993675255,-1.4258460313423,0.197003757627632,0.217165816883833 +7.984,0.286444519844735,0.910660156877023,1.59743667613793,1.4194042865917,-1.42598048095777,0.196822473588155,0.216945957001367 +7.986,0.286374082204961,0.910732324160452,1.59743475578093,1.41957905932447,-1.42611434836613,0.1966423211068,0.216726830395488 +7.988,0.286303321419496,0.910804209043476,1.59743248028385,1.41975389766909,-1.42624776773299,0.196463058742047,0.216508417581872 +7.99,0.286232312404081,0.910875739116251,1.59742976711018,1.4199284959609,-1.4263808512661,0.196284473165664,0.216290675952474 +7.992,0.286161125913316,0.910946922601573,1.59742663994096,1.42010261107572,-1.42651368276399,0.196106377485376,0.216073548031767 +7.994,0.286089826731565,0.911017813490038,1.59742317870209,1.42027606218603,-1.42664632688191,0.195928620662444,0.215856959507033 +7.996,0.286018472470885,0.911088484648154,1.59741948736498,1.42044873375522,-1.42677882750408,0.195751077068116,0.215640832191425 +7.998,0.285947112615388,0.911159008019783,1.59741566510654,1.42062056786889,-1.42691121811209,0.195573652899699,0.215425084315597 +8,0.285868701600859,0.91122317734842,1.59741366489967,1.42078145043327,-1.42702285428866,0.195426434118844,0.215238110662291 +8.002,0.285798643889253,0.911289743847868,1.59740624466738,1.42094416808771,-1.4271565573141,0.195248949137912,0.215024413515835 +8.004,0.285730006820579,0.911358667734183,1.59740033970554,1.4211085894852,-1.42729225057004,0.195065621978726,0.214806384349024 +8.006,0.285661389509712,0.911429323091199,1.59739645122018,1.42127455547503,-1.42742752377364,0.194882158392432,0.214587809629145 +8.008,0.285592535993395,0.911501019636667,1.59739391053517,1.42144193075238,-1.42756210588964,0.194699657037886,0.214369391802405 +8.01,0.285523420850602,0.911573171880152,1.59739198554432,1.42161054810953,-1.42769606563749,0.194518219331818,0.214151296499607 +8.012,0.285447005619278,0.911639092992913,1.59739201238746,1.42177009953732,-1.42780887069056,0.194367892361833,0.213962057014367 +8.014,0.285378639298906,0.911707217568792,1.59738633028063,1.42193312140863,-1.42794340905439,0.194188110279954,0.213746306207558 +8.016,0.285311424173097,0.911777362165609,1.59738167970211,1.42209915057533,-1.42807970288739,0.194003201463051,0.213526522274594 +8.018,0.285243988088803,0.911848870576269,1.59737851619819,1.42226769319185,-1.4282154130098,0.193818751824823,0.213306525681712 +8.02,0.285176104628075,0.911921096637922,1.59737622298885,1.42243828575665,-1.42835031839975,0.193635745930494,0.213087019944051 +8.022,0.285100741255167,0.911987277786448,1.59737606848454,1.42260035187918,-1.42846388219648,0.193484331466217,0.212896591086608 +8.024,0.28503321899576,0.912055767152656,1.59737027739106,1.42276619510425,-1.42859899345377,0.193303879803159,0.21267987073242 +8.026,0.284966682899797,0.912126330859292,1.59736551377776,1.42293511690823,-1.42873572153271,0.19311864119421,0.212459320165594 +8.028,0.284899790399512,0.912198278036867,1.59736218727995,1.42310643940116,-1.42887176015686,0.192934102784796,0.212238737306038 +8.03,0.284832338975926,0.912270942356527,1.59735965674271,1.42327955103573,-1.4290069202679,0.192751173513891,0.212018798896719 +8.032,0.284764355394047,0.912343812512875,1.59735729039683,1.42345387370553,-1.42914132363067,0.192569775243079,0.211799629024995 +8.034,0.284688900067604,0.912410299940697,1.59735657710209,1.423618765364,-1.42925450569856,0.192419798480521,0.211609673413324 +8.036,0.284621263832125,0.912478902432717,1.59734993896651,1.42378653084944,-1.42938932350801,0.192240545873779,0.211393524346244 +8.038,0.284554630731672,0.912549514249928,1.59734421638446,1.42395648457611,-1.42952584609484,0.192056263349977,0.211173605565439 +8.04,0.284487676331799,0.912621528735185,1.59733994074846,1.42412801990865,-1.42966175413177,0.191872433039187,0.210953669371672 +8.042,0.284420206761875,0.91269432486421,1.59733654468722,1.42430063143973,-1.42979684228779,0.191689974303258,0.21073435791012 +8.044,0.28435225215946,0.912767405358704,1.59733343036566,1.42447386805991,-1.42993121749012,0.191508830262599,0.21051577233543 +8.046,0.28428388388504,0.912840428926981,1.59733017601782,1.4246473240036,-1.43006502883116,0.191328769799122,0.210297914935099 +8.048,0.284215178904832,0.912913200338353,1.59732655289987,1.42482064972613,-1.43019840821867,0.191149547823108,0.210080765405451 +8.05,0.284146212311145,0.912985639849137,1.59732248286183,1.42499355590949,-1.43033146571741,0.190970950304978,0.209864280889934 +8.052,0.284077054990898,0.913057747932576,1.59731799327722,1.42516582202429,-1.43046428313178,0.190792792043316,0.209648404018268 +8.054,0.284007771856863,0.913129570985534,1.59731316749048,1.42533729380598,-1.4305969232871,0.190614925603323,0.209433060743384 +8.056,0.283938420657392,0.913201174823924,1.59730811281437,1.42550788419214,-1.43072942833817,0.190437230444248,0.209218173204806 +8.058,0.283869051052203,0.91327262513301,1.59730293171989,1.42567756385243,-1.43086183013713,0.190259618860474,0.209003659908061 +8.06,0.283799704435536,0.913343976931885,1.59729771145192,1.425846356514,-1.43099414796198,0.190082023762324,0.208789447792271 +8.062,0.283730414053063,0.913415269256789,1.59729251401681,1.42601432556516,-1.43112639753786,0.18990440391469,0.208575469627063 +8.064,0.283661205711244,0.913486525602014,1.59728737992095,1.42618156706364,-1.43125858730865,0.189726731668242,0.208361672404555 +8.066,0.283592098542772,0.913557755961491,1.59728232749622,1.42634819567886,-1.43139072595168,0.189548998235416,0.208148011351774 +8.068,0.283523106089656,0.913628961309081,1.59727736168996,1.42651433840925,-1.43152281740369,0.18937120172622,0.207934455590545 +8.07,0.283454237209902,0.913700137059581,1.59727247517194,1.42668012234613,-1.4316548674075,0.1891933528039,0.207720980310005 +8.072,0.283385497111991,0.913771277157806,1.5972676566568,1.42684567093726,-1.43178687792969,0.189015463337205,0.207507571361077 +8.074,0.283316888098079,0.913842376112051,1.59726289033273,1.42701109477229,-1.43191885330484,0.188837552669095,0.207294217105344 +8.076,0.283248410362896,0.91391343123353,1.59725816204242,1.42717649104412,-1.43205079444696,0.188659636990618,0.207080913170762 +8.078,0.283180062484075,0.91398444283501,1.59725345663842,1.42734193749674,-1.43218270489473,0.188481736328788,0.206867654770382 +8.08,0.283111841972578,0.914055414911714,1.59724876244746,1.42750749482322,-1.43231458499779,0.188303864687584,0.206654442047447 +8.082,0.283043745544432,0.914126354178076,1.59724406739274,1.42767320320923,-1.4324464379547,0.188126037765152,0.206441272997443 +8.084,0.282975769484183,0.914197269997444,1.59723936270769,1.4278390869114,-1.43257826398238,0.18794826378768,0.206228149356572 +8.086,0.282907909766454,0.914268173028279,1.5972346387027,1.4280051525199,-1.43271006633339,0.187770551861585,0.206015069949713 +8.088,0.282840162299464,0.914339075042472,1.59722988841538,1.42817139479915,-1.43284184541847,0.187592903357504,0.205802036900123 +8.09,0.28277252295397,0.914409987652288,1.59722510348527,1.42833779576497,-1.43297360477855,0.187415320733625,0.205589049179217 +8.092,0.282704987734083,0.914480922321857,1.59722027799826,1.42850433094573,-1.43310534514148,0.187237799277544,0.205376108949116 +8.094,0.282637552749797,0.914551889338192,1.59721540456054,1.42867096852378,-1.43323707034611,0.187060336205245,0.205163215167004 +8.096,0.282570214342711,0.914622898073131,1.59721047831108,1.42883767537788,-1.43336878134483,0.186882922568812,0.204950369957334 +8.098,0.282502969023113,0.914693956186394,1.59720549310341,1.42900441577395,-1.43350048209907,0.186705552447563,0.204737572210015 +8.1,0.282435813566925,0.914765070087163,1.59720044556709,1.42917115679872,-1.43363217355473,0.186528214860015,0.20452482395071 +8.102,0.282368744930923,0.914836244303,1.59719533128231,1.42933786633408,-1.4337638595351,0.186350902904797,0.204312123925851 +8.104,0.282301760332429,0.914907482074402,1.59719014879331,1.42950451772787,-1.43389554071744,0.186173605567649,0.204099473972808 +8.106,0.282234857153205,0.914978784830868,1.59718489570866,1.42967108700075,-1.43402722054395,0.185996316725218,0.203886872603452 +8.108,0.282168033011135,0.9150501528704,1.59717957262723,1.42983755678753,-1.4341588992181,0.185819026793436,0.203674321383458 +8.11,0.282101285661157,0.915121584904893,1.59717417915203,1.43000391288092,-1.43429057964352,0.185641731561422,0.203461818525337 +8.112,0.28203461306583,0.915193078794661,1.59716871773591,1.43017014759891,-1.43442226144717,0.185464423675929,0.203249365281647 +8.114,0.281968013298933,0.915264631138245,1.59716318963068,1.43033625585733,-1.43455394694588,0.185287101315611,0.20303695955159 +8.116,0.281901484618879,0.915336238039591,1.59715759868207,1.43050223817457,-1.43468563519412,0.185109759539732,0.202824602287403 +8.118,0.281835025377523,0.915407894720474,1.5971519472476,1.43066809649062,-1.43481732797167,0.184932398840178,0.202612291113084 +8.12,0.281768634097454,0.915479596298279,1.59714623997365,1.43083383702048,-1.43494902384835,0.184755016400068,0.20240002674017 +8.122,0.281702309385843,0.915551337398351,1.59714047971257,1.43099946601532,-1.43508072418379,0.184577614572189,0.202187806594551 +8.124,0.281636050014486,0.915623112919651,1.59713467130896,1.43116499263774,-1.4352124272,0.184400192096315,0.201975631237302 +8.126,0.281569854836848,0.915694917624874,1.59712881753806,1.43133042480985,-1.4353441339846,0.184222752551224,0.201763497995062 +8.128,0.281503722868662,0.915766746873497,1.59712292291935,1.43149577222533,-1.43547584256286,0.184045295572539,0.201551407382207 +8.13,0.28143765320582,0.915838596171627,1.59711698968963,1.43166104236796,-1.43560755389799,0.183867825315606,0.201339356730699 +8.132,0.281371645103336,0.91591046185777,1.59711102165369,1.4318262437144,-1.43573926595649,0.183690341703088,0.201127346610716 +8.134,0.281305697892151,0.915982340601534,1.59710502019791,1.4319913819491,-1.43587097970146,0.183512848922265,0.200915374456563 +8.136,0.281239811054984,0.916054230035434,1.59709898818102,1.43215646335992,-1.43600269314788,0.18333534671756,0.20070344098355 +8.138,0.281173984141017,0.916126128199919,1.59709292598797,1.43232149123101,-1.43613440734733,0.183157838932062,0.200491543807294 +8.14,0.281101444945134,0.91619181717126,1.59708889467867,1.43247640076943,-1.43624561826647,0.183010445322934,0.200307994377385 +8.142,0.281036898501048,0.916259855744505,1.59707935182718,1.43263412569088,-1.43637876702331,0.18283275275914,0.200097532756769 +8.144,0.280973651128545,0.916330240342548,1.59707119659726,1.43279421023881,-1.43651392520831,0.182649367646021,0.199882698284783 +8.146,0.280910363914208,0.916402359243664,1.59706490446463,1.43295634650051,-1.43664872674384,0.182465925509016,0.199667260604439 +8.148,0.280846789360492,0.916475539145237,1.59705981824902,1.43312028121147,-1.43678290516766,0.182283491856385,0.199451922595356 +8.15,0.280782898625019,0.916549211922097,1.59705522989464,1.43328573492532,-1.43691652250077,0.182102154374585,0.199236860109794 +8.152,0.280718709216585,0.916622967766966,1.5970506147157,1.43345240012453,-1.43704968833347,0.181921792690024,0.199022161879944 +8.154,0.280654251877999,0.916696555416441,1.59704565386975,1.4336199522147,-1.43718251058498,0.181742253496663,0.198807883991641 +8.156,0.280589563724963,0.916769857434205,1.59704020590225,1.43378807102561,-1.43731507687085,0.181563380082235,0.198594057339585 +8.158,0.280524685336984,0.916842853631421,1.59703425373412,1.43395645376734,-1.43744745847829,0.181385031367321,0.198380679925085 +8.16,0.280459658428907,0.916915585050183,1.59702786020436,1.43412483238952,-1.43757970558027,0.18120707614345,0.198167727582779 +8.162,0.280394523541298,0.916988121965044,1.59702112343577,1.43429297969704,-1.43771185641952,0.181029403255428,0.197955154723408 +8.164,0.280329318328144,0.917060541019094,1.59701415094461,1.43446071842004,-1.43784393494683,0.18085191361459,0.197742908802951 +8.166,0.28026407626574,0.917132909593639,1.59700703683346,1.43462791926984,-1.43797596017207,0.180674528952533,0.197530931185626 +8.168,0.280198826107578,0.917205278720522,1.59699985642151,1.43479450303636,-1.43810794267014,0.180497182433865,0.197319169423437 +8.17,0.28013359167136,0.91727768043336,1.59699265991227,1.43496043295312,-1.4382398925492,0.180319826460602,0.19710757448575 +8.172,0.280068392158294,0.917350129991373,1.59698547840696,1.43512571238355,-1.438371814754,0.180142422836712,0.196896108985159 +8.174,0.280003242547041,0.917422628961567,1.59697832436097,1.43529037426016,-1.43850371586167,0.179964950040543,0.196684741048182 +8.176,0.279938154259164,0.917495170143317,1.59697120063378,1.43545447722312,-1.43863559844561,0.179787392925524,0.196473450093718 +8.178,0.279873135691085,0.917567741108897,1.59696410128016,1.43561809468373,-1.43876746724426,0.179609749641786,0.196262219145167 +8.18,0.27980819286264,0.917640328155792,1.59695701921954,1.43578131146008,-1.43889932324184,0.179432021259019,0.196051039759041 +8.182,0.279743329846143,0.917712918162532,1.59694994490077,1.43594421405643,-1.43903116969066,0.179254218635599,0.195839904171197 +8.184,0.279678549261886,0.917785500669145,1.59694287172793,1.43610688899816,-1.43916300617571,0.179076352143606,0.195628810470024 +8.186,0.279613852547781,0.91785806801701,1.59693579276773,1.43626941510691,-1.43929483467767,0.178898438723572,0.195417755218411 +8.188,0.279549240303508,0.917930616052134,1.59692870467714,1.43643186393523,-1.43942665372435,0.178720491951832,0.195206739147504 +8.19,0.279484712435034,0.918003143289767,1.59692160343936,1.43659429413182,-1.43955846450997,0.178542529475021,0.194995760294595 +8.192,0.279420268396191,0.918075651020086,1.59691448778932,1.43675675384985,-1.43969026507407,0.178364563518449,0.194784820131405 +8.194,0.279355907255738,0.918148142182697,1.59690735480867,1.43691927688872,-1.43982205641802,0.178186608778521,0.194573917028533 +8.196,0.279291627878396,0.918220621403651,1.59690020345092,1.43708188663154,-1.43995383665247,0.178008673395365,0.194363052604542 +8.198,0.279227428946167,0.918293093940743,1.59689303036651,1.43724459343431,-1.44008560706545,0.1778307672852,0.19415222531816 +8.2,0.279163309101363,0.918365565862118,1.59688583370712,1.43740739952828,-1.44021736620028,0.17765289350239,0.193941436887665 +8.202,0.279099266936138,0.918438043154453,1.59687860921065,1.43757029708392,-1.44034911586223,0.17747505691651,0.193730685896783 +8.204,0.279035301106324,0.9185105320545,1.59687135421722,1.43773327352597,-1.44048085512959,0.177297255846366,0.193519974211847 +8.206,0.278971410294865,0.918583038285782,1.59686406389694,1.43789630976342,-1.44061258631383,0.177119490953069,0.193309300563059 +8.208,0.278907593301091,0.91865556748954,1.5968567353468,1.43805938546899,-1.44074430892513,0.176941757012896,0.193098666947255 +8.21,0.278843848982886,0.918728124535771,1.5968493638406,1.43822247709876,-1.44087602561079,0.176764051897404,0.192888072187901 +8.212,0.278780176327029,0.918800714008915,1.59684194690737,1.43838556283495,-1.44100773610235,0.176586368370466,0.192677518332402 +8.214,0.278716574376827,0.918873339562639,1.59683448053322,1.43854862017405,-1.44113944315475,0.176408703051901,0.192467004204762 +8.216,0.278653042290881,0.918946004443111,1.59682696317682,1.43871163038688,-1.44127114649576,0.176231048156342,0.192256531808115 +8.218,0.278589579263914,0.919018710881113,1.59681939190306,1.43887457560087,-1.44140284877992,0.176053400373243,0.19204609988044 +8.22,0.27852618458131,0.91909146065315,1.59681176633138,1.43903744276429,-1.44153454955239,0.17587575250355,0.191835710306565 +8.222,0.278462857539926,0.919164254514041,1.5968040847098,1.43920022026311,-1.44166625122312,0.175698102226325,0.191625361680853 +8.224,0.278399597503952,0.919237092798664,1.5967963478108,1.4393629014708,-1.44179795304897,0.175520443622736,0.191415055728198 +8.226,0.278336403830065,0.919309974895305,1.59678855496443,1.43952548101243,-1.44192965712718,0.175342775830162,0.191204790873641 +8.228,0.278273275927505,0.91938289988465,1.59678070792049,1.43968795803176,-1.44206136239423,0.175165094467845,0.190994568669977 +8.23,0.278210213189173,0.919455866046488,1.59677280685888,1.43985033224462,-1.44219307063435,0.174987400199931,0.190784387372951 +8.232,0.278147215056284,0.919528871525031,1.59676485423463,1.44001260706586,-1.44232478049039,0.17480969009113,0.190574248373467 +8.234,0.278084280954816,0.919601913855236,1.59675685078008,1.44017478558795,-1.442456493482,0.174631966110084,0.190364149777078 +8.236,0.27802141036338,0.919674990639026,1.5967487993457,1.4403368736918,-1.44258820802305,0.174454226447745,0.190154092839604 +8.238,0.277958602753147,0.919748099075098,1.59674070090523,1.4404988760575,-1.44271992544409,0.174276473993441,0.189944075549824 +8.24,0.277895857656821,0.919821236630294,1.59673255840216,1.4406607993471,-1.44285164401134,0.174098707645577,0.189734099067784 +8.242,0.277833174609843,0.91989440055822,1.59672437276619,1.44082264831505,-1.44298336494925,0.173920930787488,0.189524161309479 +8.244,0.277770553218402,0.9199675885529,1.59671614677271,1.4409844291102,-1.44311508645693,0.173743142612528,0.189314263387066 +8.246,0.277707993100067,0.920040798245528,1.59670788107628,1.44114614551375,-1.44324680972814,0.17356534661818,0.189104403193966 +8.248,0.277645493949348,0.920114027832204,1.59669957808794,1.44130780237122,-1.44337853296251,0.1733875419584,0.188894581845886 +8.25,0.27758305547661,0.920187275543118,1.59669123802885,1.44146940195337,-1.44351025738152,0.173209731965152,0.188684797264527 +8.252,0.277520677470482,0.920260540241201,1.59668286282737,1.44163094750171,-1.44364198123334,0.173031915532191,0.188475050618052 +8.254,0.27745835973471,0.920333820862933,1.59667445219333,1.44179243968663,-1.44377370580457,0.172854095665129,0.188265339901634 +8.256,0.277396102147445,0.920407116989221,1.59666600753416,1.44195388023452,-1.44390542941865,0.172676270894101,0.188055666376054 +8.258,0.277333904596365,0.920480428261025,1.59665752804767,1.4421152684474,-1.44403715344401,0.172498443847727,0.187846028143698 +8.26,0.277271767035449,0.920553754927233,1.59664901465414,1.4422766048749,-1.44416887628685,0.172320612687947,0.187636426584341 +8.262,0.277209689419136,0.920627097241101,1.59664046610357,1.44243788785964,-1.4443005993969,0.172142779700122,0.187426859925828 +8.264,0.277147671757476,0.920700455992021,1.596631882919,1.44259911722083,-1.4444323212558,0.171964942741689,0.187217329676669 +8.266,0.277085714050302,0.92077383189028,1.59662326351306,1.44276029079603,-1.44456404338177,0.171787103839933,0.1870078341914 +8.268,0.277023816341705,0.920847226090477,1.59661460813696,1.44292140811166,-1.44469576431512,0.171609260646483,0.186798375100223 +8.27,0.276961978655129,0.920920639572338,1.5966059150009,1.44308246690166,-1.44482748562305,0.171431415035355,0.186588950869737 +8.272,0.276900201047997,0.920994073663245,1.59659718422332,1.44324346675061,-1.44495920588345,0.171253564557003,0.186379563230413 +8.274,0.276838483548412,0.921067529422064,1.59658841395012,1.44340440558005,-1.44509092669099,0.171075711031302,0.186170210733864 +8.276,0.276776826210496,0.921141008167027,1.59657960429957,1.4435652832597,-1.44522264664023,0.170897851997198,0.185960895179344 +8.278,0.276715229053087,0.921214510867992,1.59657075347644,1.44372609806099,-1.44535436733355,0.170719989297678,0.185751615168966 +8.28,0.276653692116032,0.921288038684127,1.59656186170917,1.44388685023932,-1.4454860873643,0.170542120523332,0.18554237253456 +8.282,0.27659221540097,0.921361592368035,1.59655292735631,1.44404753846051,-1.44561780832697,0.170364247588572,0.185333165892257 +8.284,0.276530798928518,0.921435172815648,1.59654395083419,1.44420816336154,-1.4457495288006,0.170186368169267,0.185123997070955 +8.286,0.276469442680973,0.921508780483573,1.59653493071456,1.44436872395866,-1.44588125036135,0.170008484271085,0.184914864667476 +8.288,0.276408146660114,0.921582415951579,1.59652586764231,1.44452922119603,-1.44601297156618,0.169830593662625,0.184705770477644 +8.29,0.276346910831455,0.921656079352649,1.59651676042468,1.44468965434459,-1.44614469396765,0.16965269843769,0.184496713052843 +8.292,0.276285735182275,0.921729770946722,1.59650760993989,1.44485002454736,-1.44627641609775,0.169474796445918,0.184287694134332 +8.294,0.276224619666976,0.921803490561446,1.59649841521925,1.44501033121701,-1.44640813948469,0.169296889851124,0.184078712211627 +8.296,0.276163564264895,0.921877238174594,1.59648917734862,1.44517057558444,-1.44653986263656,0.169118976561446,0.18386976896025 +8.298,0.27610256892634,0.921951013362513,1.59647989554547,1.44533075710063,-1.44667158705983,0.168941058785723,0.183660862801917 +8.3,0.276041633629787,0.922024815887949,1.59647057105551,1.44549087699259,-1.44680331124255,0.168763134464829,0.183451995345541 +8.302,0.275980758328233,0.92209864515277,1.59646120322726,1.4456509346722,-1.4469350366742,0.168585205827554,0.183243164948866 +8.304,0.275919943005477,0.922172500787748,1.59645179340623,1.44581093130121,-1.44706676182816,0.168407270824258,0.183034373162214 +8.306,0.275859187622553,0.922246382106219,1.59644234100951,1.44597086620743,-1.4471984881827,0.168229331683133,0.182825618290959 +8.308,0.275798492172926,0.922320288692692,1.59643284741986,1.44613074045827,-1.44733021420243,0.168051386346727,0.182616901841331 +8.31,0.275737856628881,0.922394219854597,1.59642331206228,1.44629055328312,-1.44746194136017,0.16787343702889,0.182408222082988 +8.312,0.275677280995591,0.922468175207225,1.59641373629994,1.44645030565357,-1.44759366811727,0.167695481654232,0.182199580496114 +8.314,0.275616765257475,0.922542154121488,1.59640411951436,1.44660999670981,-1.44772539594627,0.167517522415605,0.181990975333364 +8.316,0.27555630943119,0.922616156303556,1.59639446300429,1.44676962734518,-1.44785712330991,0.167339557216221,0.181782408067533 +8.318,0.275495913512057,0.922690181237453,1.59638476607047,1.4469291966342,-1.44798885168443,0.167161588227257,0.181573876952252 +8.32,0.275435577526116,0.922764228758663,1.59637502991807,1.44708870541913,-1.44812057953739,0.166983613332166,0.18136538346963 +8.322,0.275375301476776,0.922838298491275,1.59636525374627,1.44724815273755,-1.44825230835149,0.166805634683876,0.181156925889259 +8.324,0.275315085396101,0.922912390415684,1.59635543865416,1.44740753940914,-1.44838403660116,0.166627650150814,0.180948505715433 +8.326,0.275254929291862,0.922986504300773,1.59634558373486,1.44756686446124,-1.44851576577702,0.166449661873189,0.180740121244209 +8.328,0.275194833198233,0.923060640266524,1.59633568998437,1.44772612871474,-1.44864749436121,0.166271667710306,0.180531774010028 +8.33,0.27513479712341,0.923134798212304,1.59632575639941,1.44788533120688,-1.4487792238525,0.166093669795539,0.180323462340792 +8.332,0.275074821099869,0.923208978375659,1.59631578388832,1.44804447277572,-1.44891095274053,0.165915665984639,0.180115187803898 +8.334,0.27501490513269,0.923283180758129,1.59630577137161,1.44820355248004,-1.44904268253155,0.165737658409162,0.179906948759474 +8.336,0.274948720600801,0.923351264854789,1.59629804632222,1.4483525686167,-1.44915412098173,0.165589692540549,0.179726848661361 +8.338,0.274890028575783,0.923421570270946,1.59628472798417,1.44850469485961,-1.44928723709901,0.165411406178628,0.179519852028322 +8.34,0.274832520183751,0.9234941855406,1.59627271485608,1.44865912720659,-1.44942230924715,0.165227588294251,0.179308630651526 +8.342,0.274774967843329,0.923568535683832,1.59626247329863,1.44881549181998,-1.44955704127623,0.165043748671574,0.179096873123651 +8.344,0.274717152226974,0.923643971932399,1.59625336859043,1.44897353191485,-1.44969118149956,0.164860899737006,0.178885240002571 +8.346,0.274659050291653,0.923719941535925,1.59624471932785,1.44913298056147,-1.44982478983359,0.16467911600932,0.178673890173534 +8.348,0.274594377491457,0.923789905402041,1.59623836361048,1.44928355038566,-1.44993769104158,0.164528320220073,0.178490994606758 +8.35,0.274536866249574,0.923861938014585,1.59622609453141,1.44943812613703,-1.45007192626177,0.164348003437622,0.178281584039503 +8.352,0.274480265655385,0.923936010685946,1.59621467420921,1.44959558354082,-1.45020786937237,0.164162815786792,0.178068365863505 +8.354,0.274423392082271,0.924011522392774,1.59620455497003,1.4497552639474,-1.45034329367963,0.163978121518867,0.177855023200665 +8.356,0.274366066044042,0.924087857262508,1.59619516627467,1.44991666039784,-1.45047799686833,0.163794805910683,0.177642188961961 +8.358,0.274308301909692,0.924164524362185,1.59618592810083,1.45007929648407,-1.45061207334562,0.163612834001234,0.177429978066764 +8.36,0.274243876589556,0.924235057550165,1.59617880366061,1.45023272481035,-1.45072538383625,0.163462030446689,0.177246495718895 +8.362,0.274186494815501,0.924307577390435,1.5961656632441,1.45038972630582,-1.45085995815514,0.163281814283544,0.177036729284307 +8.364,0.274123689573576,0.924375975497219,1.59615571060107,1.45053909072154,-1.45097593019757,0.163126818702231,0.176851414737448 +8.366,0.27406793243776,0.92444798736502,1.59614152370882,1.4506933297022,-1.45111299093609,0.16294200194718,0.176639177730775 +8.368,0.274012809365584,0.924523110956119,1.59612946352051,1.45085108610368,-1.45125125173811,0.162753025427339,0.176423298887442 +8.37,0.273957136348176,0.9246002851367,1.59611943382801,1.45101153498936,-1.45138852326072,0.162565320121917,0.176207540652389 +8.372,0.273894511565443,0.924672394065791,1.5961127858822,1.45116403015762,-1.45150443399425,0.162409701177713,0.176020625518985 +8.374,0.273838567519153,0.924746980905165,1.59610069094955,1.45132117380725,-1.45164104698819,0.162225657320534,0.175807696774491 +8.376,0.273783149436213,0.924823656054607,1.5960894775892,1.45148151879144,-1.45177887732785,0.162037683210586,0.175591491104388 +8.378,0.273727140292368,0.924901585514613,1.59607933816075,1.45164414947425,-1.45191581499081,0.161850938293163,0.175375680934576 +8.38,0.273670416990195,0.924980034033598,1.5960695935427,1.45180834629843,-1.4520517492188,0.161666130508765,0.17516087833897 +8.382,0.273613045894447,0.925058475876642,1.59605966185514,1.45197346354381,-1.4521868445246,0.16148307749523,0.174947162762137 +8.384,0.27355512689866,0.925136595609827,1.59604920981082,1.45213892321445,-1.45232127936041,0.16130144523589,0.174734512138203 +8.386,0.273496762798987,0.925214249176145,1.59603812035739,1.45230422359551,-1.45245520803941,0.161120910695784,0.17452286274285 +8.388,0.273438052147152,0.925291414210307,1.59602643135632,1.45246895473605,-1.45258874934372,0.160941185125781,0.174312126470161 +8.39,0.273379086205063,0.925368140856918,1.59601426635907,1.45263280125565,-1.45272199603235,0.160762028900873,0.174102191320406 +8.392,0.27331994704246,0.925444512509654,1.59600178608182,1.45279554713008,-1.4528550135301,0.160583241406619,0.173892937840815 +8.394,0.273260706218392,0.925520616741728,1.59598914730753,1.45295706756103,-1.45298785166734,0.160404667169933,0.173684242248305 +8.396,0.273195231814265,0.925590412451769,1.59597889285116,1.45310734297782,-1.45310031328481,0.160256204666101,0.173504031642095 +8.398,0.273137043134824,0.925662223683404,1.59596313819651,1.45325964915973,-1.45323425769435,0.160077431130091,0.173297233219771 +8.4,0.273079991897447,0.925736200670974,1.59594884467386,1.45341316666239,-1.45337004070437,0.15989312716811,0.173086472966895 +8.402,0.27302291463464,0.925811794558243,1.59593650856361,1.45356763532472,-1.45350540082923,0.159708730136226,0.172875346275369 +8.404,0.272965622935334,0.925888366302494,1.59592551004267,1.4537229586086,-1.45364010190361,0.159525222748808,0.17266444864331 +8.406,0.272908111574418,0.925965363270605,1.59591516666605,1.4538790489955,-1.45377421227066,0.159342677377522,0.172453895778938 +8.408,0.272850408728477,0.92604237820341,1.59590496016478,1.45403580104216,-1.4539078406005,0.159160987272567,0.172243740178388 +8.41,0.272792549263504,0.926119155280062,1.59589456265821,1.45419308826592,-1.45404109226676,0.158980025567515,0.172034015793843 +8.412,0.272734570117072,0.926195570416357,1.59588381431908,1.45435077450459,-1.45417405255981,0.158799667790884,0.171824741065866 +8.414,0.272676508686826,0.926271598365022,1.59587267580251,1.45450871933288,-1.45430679130378,0.158619806757771,0.171615908295633 +8.416,0.272618401400166,0.92634727883761,1.59586118747281,1.45466679043332,-1.45443935811441,0.158440344156669,0.171407492108239 +8.418,0.272560282192012,0.926422685364108,1.59584942692676,1.45482486694891,-1.45457179151111,0.158261198612854,0.17119944836612 +8.42,0.272496043317676,0.926491795975738,1.59583992488771,1.45497287642553,-1.45468391028778,0.15811230643183,0.171019743718126 +8.422,0.272439063340879,0.926562931197703,1.59582473670424,1.4551240087492,-1.45481751312696,0.157933282590205,0.170813379304414 +8.424,0.272383224234594,0.926636284837722,1.59581082150542,1.4552772535361,-1.45495297466615,0.157748934833158,0.170603032176807 +8.426,0.272327361775909,0.926711345293278,1.59579868257548,1.45543217227474,-1.45508803809162,0.157564677464516,0.170392312086396 +8.428,0.272271280069288,0.926787505137444,1.59578771545883,1.45558848807674,-1.45522246638057,0.157381468327739,0.170181825686193 +8.43,0.272214966719435,0.926864235269001,1.59577725463179,1.45574593679241,-1.45535632652528,0.157199351064239,0.169971696240404 +8.432,0.272152333077723,0.926935041092529,1.59576925474172,1.45589428080281,-1.45546953174436,0.157048191746636,0.169789985657303 +8.434,0.272096704781,0.927007899302817,1.59575535717274,1.45604653127759,-1.45560393876189,0.156867508887385,0.169581798895241 +8.436,0.272042000985415,0.927082816756193,1.59574231040329,1.45620145398448,-1.4557400067292,0.156682014762352,0.169369889525128 +8.438,0.271987083189352,0.927159200835637,1.59573054979407,1.45635840488289,-1.45587554069515,0.156497016985855,0.16915790092131 +8.44,0.271931780282261,0.927236438458295,1.59571950237628,1.45651691769736,-1.45601034714831,0.156313379889101,0.168946446071789 +8.442,0.271876105265772,0.927314038709842,1.59570858983368,1.45667656130376,-1.45614452252006,0.156131065852841,0.168735631609322 +8.444,0.271820105572134,0.927391664598852,1.59569741824427,1.45683692593641,-1.45627819315732,0.155949866614886,0.168525481833282 +8.446,0.271763835278596,0.927469121130637,1.59568577985454,1.45699762982511,-1.45641147583621,0.155769562751443,0.16831599059678 +8.448,0.271707349116435,0.927546325736826,1.59567361757771,1.45715833567636,-1.45654446263591,0.155589948566041,0.168107132698673 +8.45,0.271650700353733,0.927623272367672,1.59566097209304,1.45731875748826,-1.45667722801088,0.155410847496599,0.167898857750407 +8.452,0.271593938907647,0.927699998999598,1.59564794156479,1.45747867069902,-1.4568098244628,0.155232105236676,0.167691102823502 +8.454,0.27153711005502,0.927776560794525,1.59563464247991,1.45763791106589,-1.45694229291994,0.155053597223174,0.167483792054614 +8.456,0.271480253325057,0.927853012275294,1.59562118942197,1.45779637659297,-1.4570746597444,0.154875219691624,0.167276850879908 +8.458,0.271423402180086,0.927929396327457,1.59560767686034,1.45795401931424,-1.45720694662347,0.154696895846796,0.167070204606697 +8.46,0.271366583907135,0.928005740475048,1.59559417728153,1.45811084180673,-1.45733916629164,0.154518565660125,0.166863789918964 +8.462,0.271309820122272,0.928082056712893,1.59558073695492,1.45826688520768,-1.45747133099911,0.154340191296514,0.166657549966175 +8.464,0.271253127268574,0.9281583449586,1.59556738313223,1.45842222341221,-1.45760344716064,0.154161746703134,0.166451442226335 +8.466,0.271190484076578,0.928228509889439,1.59555662979526,1.45856699785406,-1.45771535983008,0.154013208617948,0.166273402808723 +8.468,0.271135026949375,0.928300726487284,1.59554037168008,1.45871463862647,-1.45784875399777,0.153834276478887,0.166068510056028 +8.47,0.271080716770996,0.928375134036615,1.59552549626788,1.45886422607522,-1.45798403856983,0.153649852181656,0.165859504130633 +8.472,0.271026401682016,0.928451172640454,1.59551245483395,1.45901545815469,-1.45811896171369,0.153465370715373,0.165650012312097 +8.474,0.270971881325536,0.928528203992771,1.59550061175967,1.4591681771036,-1.45825328736458,0.153281832793148,0.165440656772487 +8.476,0.270917136304917,0.928605685531839,1.59548929165786,1.45932221729907,-1.45838707258521,0.15309931797808,0.165231585188431 +8.478,0.270862182964936,0.928683223163939,1.59547798803726,1.4594773764282,-1.45852042073698,0.15291772858889,0.165022868832456 +8.48,0.27080104546391,0.928754493490566,1.59546891368637,1.45962347831943,-1.45863327995527,0.152766912677214,0.164842516284276 +8.482,0.270746814568435,0.928827553911076,1.59545379681682,1.45977361964545,-1.45876738012728,0.152586446118075,0.164635671940612 +8.484,0.270693507128804,0.928902544608429,1.59543950990393,1.45992650587446,-1.45890320271266,0.152401110744082,0.16442510353302 +8.486,0.270640009315962,0.928978960035064,1.59542656536496,1.46008149453235,-1.45903854770449,0.152216211333432,0.164214418309457 +8.488,0.270586153355927,0.929056241762974,1.59541443392881,1.46023812852863,-1.45917320800402,0.152032622946378,0.164004206988822 +8.49,0.270525970139442,0.929127851028006,1.59540508754081,1.46038604001806,-1.4592871275996,0.151880297754263,0.163822514661995 +8.492,0.270472514454712,0.929201620753165,1.5953899776404,1.46053816912334,-1.45942205163858,0.151698755484925,0.163614490059773 +8.494,0.270419839708584,0.929277519108528,1.59537576998423,1.46069305916177,-1.45955851592529,0.151512697856927,0.16340290667617 +8.496,0.270366853739525,0.929354912205921,1.59536284060348,1.46084994599,-1.45969436246398,0.151327334956099,0.163191375678995 +8.498,0.270313406561032,0.92943315768783,1.59535058361007,1.46100827401426,-1.45982942500814,0.151143470566797,0.162980483458789 +8.5,0.270259525134282,0.929511748026273,1.59533841318253,1.46116755018688,-1.45996381138736,0.150961014787185,0.162770326683965 +8.502,0.270205268573026,0.929590338174322,1.5953259367606,1.46132732025746,-1.46009766187454,0.150779725657651,0.16256091424516 +8.504,0.270144753757353,0.92966266038996,1.5953155137736,1.46147724146045,-1.46021097360435,0.150629320354187,0.162380164382792 +8.506,0.270090987315862,0.929736775625007,1.59529893165586,1.46163033314539,-1.46034544379223,0.150449294172685,0.162173180680309 +8.508,0.270038063542387,0.929812850602255,1.59528314146405,1.46178522072062,-1.46048158918104,0.150264375166952,0.161962686440062 +8.51,0.269984904576735,0.92989038243112,1.59526871238865,1.46194127216771,-1.46061722682822,0.150079802304723,0.161752227439265 +8.512,0.269931363852946,0.929968800466711,1.59525515643368,1.46209809328396,-1.4607521578571,0.149896413025439,0.161542346721853 +8.514,0.269877466310629,0.930047620752808,1.59524193486815,1.46225535794217,-1.46088647001537,0.149714168499824,0.161333104966168 +8.516,0.269817345502748,0.930120424057754,1.59523123032963,1.462402846812,-1.46100016829374,0.149562835109642,0.161152419495596 +8.518,0.269763942270136,0.930195114863822,1.59521463110556,1.46255368915386,-1.46113493533881,0.149381940202987,0.160945425411854 +8.52,0.269711370176095,0.930271755224991,1.59519894765639,1.46270656182286,-1.46127131131569,0.149196234912236,0.160734881608456 +8.522,0.269658553949818,0.930349770464224,1.5951846517368,1.4628608758348,-1.46140713034415,0.149010961273187,0.160524356789871 +8.524,0.269605346440491,0.930428551813261,1.59517119960329,1.46301625980805,-1.46154220574807,0.148826960822873,0.160314414793335 +8.526,0.269551772479873,0.930507604696804,1.5951580286234,1.46317239071056,-1.46167663395038,0.148644197451036,0.160105131865424 +8.528,0.26949788657229,0.930586584511167,1.59514474748305,1.46332896947626,-1.46181053969264,0.148462475182808,0.159896512770679 +8.53,0.269443747232102,0.93066528822288,1.59513114156335,1.46348572087526,-1.46194403809054,0.148281591932128,0.159688539188489 +8.532,0.269389411869389,0.93074362752038,1.59511714114855,1.46364240505319,-1.46207722006066,0.14810136141875,0.159481178999796 +8.534,0.269334935163829,0.930821594614156,1.59510277150832,1.46379882074038,-1.46221015939396,0.147921626815325,0.159274378788512 +8.536,0.26928036757015,0.930899230505458,1.59508811452394,1.46395481316114,-1.46234290847732,0.14774225248334,0.159068075168173 +8.538,0.269225754292743,0.930976598104695,1.59507327067001,1.46411027180206,-1.46247550850709,0.147563130553612,0.15886219356589 +8.54,0.269171134402438,0.931053763818857,1.59505833924062,1.46426513232976,-1.46260798650627,0.147384171255073,0.158656661661739 +8.542,0.269116540645024,0.931130785614318,1.5950434002989,1.46441936915627,-1.46274036507319,0.147205308744639,0.158451407610936 +8.544,0.269061999445992,0.93120770822402,1.59502851271732,1.46457299345389,-1.46287265814751,0.147026490687567,0.158246371149217 +8.546,0.269007531460663,0.931284561897983,1.59501370989438,1.46472604306848,-1.46300487937163,0.146847683787731,0.158041498617863 +8.548,0.268953152125998,0.931361364884724,1.59499900688466,1.46487857895585,-1.463137036788,0.146668863521842,0.15783675063281 +8.55,0.26889887253005,0.931438126306494,1.5949844012142,1.46503067465265,-1.46326914014375,0.146490019770829,0.157632094465377 +8.552,0.268844700085163,0.931514850230256,1.59496988194638,1.46518241322817,-1.46340119478624,0.146311146686808,0.157427509861242 +8.554,0.268790639358855,0.931591538342479,1.59495543025703,1.46533387798833,-1.46353320839883,0.14613224855075,0.157222980383612 +8.556,0.268736692609524,0.931668192764497,1.59494102693285,1.46548515110035,-1.46366518463539,0.145953330043104,0.157018498752703 +8.558,0.268682860427475,0.931744817027839,1.59492665087738,1.46563630626643,-1.46379712968483,0.145774402494508,0.156814058277801 +8.56,0.268629142065935,0.931821417182038,1.59491228454204,1.46578740943614,-1.46392904585209,0.145595474595721,0.156609658576745 +8.562,0.268575535886913,0.931898001315429,1.59489791068068,1.46593851353906,-1.46406093810997,0.145416559114126,0.156405297552885 +8.564,0.268522039523091,0.931974579589481,1.59488351646055,1.46608966110796,-1.46419280771632,0.145237664111147,0.156200977653487 +8.566,0.268468650185428,0.932051163088453,1.59486908936085,1.46624088070562,-1.46432465878147,0.145058800151043,0.155996698357166 +8.568,0.268415364718055,0.932127763540528,1.59485462082567,1.4663921909862,-1.46445649188877,0.144879971979594,0.155792462849203 +8.57,0.268362179824395,0.93220439213005,1.59484010200008,1.46654359826777,-1.46458831064902,0.14470118616979,0.155588270822795 +8.572,0.268309092062429,0.932281059369623,1.59482552741001,1.466695101452,-1.46472011529496,0.144522443180014,0.155384125368569 +8.574,0.268256098025478,0.932357774170119,1.59481089082238,1.4668466901683,-1.46485190920186,0.144343745333399,0.155180025909691 +8.576,0.268203194303457,0.932434544012734,1.59479618907987,1.46699835001538,-1.46498369243865,0.144165089127493,0.154975975172669 +8.578,0.268150377635133,0.932511374314289,1.59478141809606,1.46715006079393,-1.46511546825298,0.143986473417235,0.154771972160046 +8.58,0.268097644846188,0.932588268861871,1.59476657678406,1.46730180165215,-1.46524723658802,0.143807891848603,0.154568019141163 +8.582,0.268044992979895,0.932665229394411,1.59475166309599,1.46745354906436,-1.46537900054526,0.143629341121831,0.154364114632497 +8.584,0.267992419217039,0.932742256204195,1.59473667795188,1.46760528161543,-1.46551075988471,0.143450813437603,0.15416026039699 +8.586,0.267939920989143,0.932819347839327,1.59472162124732,1.46775697753791,-1.46564251748141,0.143272304742789,0.153956454434729 +8.588,0.267887495884518,0.932896501786902,1.59470649572871,1.46790861901845,-1.46577427282716,0.143093807112607,0.15375269799409 +8.59,0.267835141748418,0.932973714225581,1.59469130294288,1.46806018924321,-1.46590602849222,0.142915316917666,0.153548988580712 +8.592,0.267782856579954,0.933050980734526,1.59467604705451,1.46821167623189,-1.46603778363975,0.142736827101825,0.153345326982444 +8.594,0.267730638623836,0.933128296052948,1.59466073075243,1.46836306944444,-1.46616954049719,0.142558335245125,0.153141710298822 +8.596,0.267678486262648,0.93320565478182,1.59464535903442,1.46851436323123,-1.46630129788758,0.142379835729953,0.152938138975175 +8.598,0.267626398104178,0.933283051124584,1.59462993510221,1.46866555311598,-1.46643305770925,0.142201327703452,0.152734609848239 +8.6,0.267574372872449,0.933360479560918,1.59461446414613,1.46881663899226,-1.46656481848278,0.142022807147723,0.152531123181084 +8.602,0.2675224094933,0.933437934551212,1.59459894925953,1.46896762121974,-1.46669658183469,0.141844274764025,0.152327675717478 +8.604,0.267470506986114,0.933515411167667,1.59458339524919,1.46911850370267,-1.46682834605577,0.141665727975587,0.152124267709136 +8.606,0.267418664548973,0.933592904750074,1.59456780458964,1.46926928992729,-1.46696011258374,0.141487168764397,0.151920895971732 +8.608,0.26736688145178,0.933670411484339,1.5945521812741,1.46941998603733,-1.46709187956807,0.141308595638423,0.15171756089834 +8.61,0.267315157121366,0.933747928002368,1.59453652681745,1.46957059691093,-1.46722364834728,0.14113001145177,0.151514259512055 +8.612,0.267263491036018,0.933825451904007,1.59452084415197,1.46972112931316,-1.46735541701597,0.140951415364457,0.151310992462474 +8.614,0.26721188281046,0.933902981300357,1.59450513367839,1.46987158807274,-1.46748718689389,0.14077281067098,0.151107757072293 +8.616,0.267160332091603,0.933980515281915,1.59448939720291,1.47002197935306,-1.46761895609221,0.140594196773048,0.150904554316258 +8.618,0.26710883864331,0.934058053411425,1.59447363402954,1.47017230695181,-1.46775072597296,0.14041557703306,0.150701381861136 +8.62,0.267057402243292,0.934135596147359,1.59445784492983,1.47032257569789,-1.46788249471305,0.14023695077113,0.150498241028383 +8.622,0.267006022767746,0.934213144297997,1.59444202826607,1.47047278786742,-1.46801426375404,0.140058321151084,0.150295129828371 +8.624,0.266954700089538,0.934290699413934,1.59442618398273,1.47062294668927,-1.46814603136363,0.139879687204771,0.150092049909101 +8.626,0.266903434163005,0.934368263218443,1.59441030974847,1.47077305285173,-1.46827779907674,0.139701051750678,0.149888999586571 +8.628,0.266852224923757,0.934445837984758,1.59439440495739,1.4709231080855,-1.46840956525518,0.139522413442193,0.149685980782439 +8.63,0.26680107237402,0.934523425958558,1.59437846687804,1.47107311172682,-1.46854133152159,0.139343774713731,0.149482992053033 +8.632,0.266749976484444,0.934601029735332,1.59436249465324,1.47122306434308,-1.46867309631852,0.139165133845842,0.149280035519039 +8.634,0.266698937280349,0.934678651689278,1.59434648544567,1.47137296431849,-1.46880486133702,0.138986492931052,0.149077109895927 +8.636,0.266647954745842,0.934756294363581,1.59433043842691,1.47152281149112,-1.46893662507678,0.138807849947352,0.148874217418641 +8.638,0.266597028911175,0.934833959916808,1.59431435091149,1.47167260373368,-1.46906838927081,0.138629206735515,0.148671356876171 +8.64,0.266546159759307,0.934911650535126,1.59429822232855,1.47182234057892,-1.46920015244827,0.138450561073061,0.14846853053384 +8.642,0.266495347314389,0.934989367903105,1.59428205033927,1.47197201977739,-1.46933191635658,0.138271914655977,0.148265737174416 +8.644,0.266444591550674,0.935067113642572,1.5942658347875,1.47212164089797,-1.46946367952799,0.138093265167032,0.148062979020022 +8.646,0.26639389248192,0.935144888810369,1.59424957379872,1.47227120185403,-1.46959544370021,0.137914614256887,0.147860254781605 +8.648,0.266343250072371,0.935222694364329,1.59423326770901,1.47242070247487,-1.46972720738743,0.137735959602955,0.147657566581761 +8.65,0.266292664326685,0.935300530686592,1.59421691514652,1.47257014099994,-1.46985897229988,0.137557302887199,0.147454913013657 +8.652,0.266242135202555,0.935378398073623,1.59420051694095,1.47271951762377,-1.46999073691979,0.137378641843988,0.147252296065289 +8.654,0.266191662700676,0.935456296280617,1.59418407219064,1.47286883096349,-1.47012250291984,0.137199978233941,0.147049714188154 +8.656,0.266141246778499,0.935534225029923,1.59416758215666,1.4730180815842,-1.47025426874411,0.137021309881056,0.146847169222744 +8.658,0.266090887439744,0.935612183570078,1.59415104632032,1.47316726844768,-1.47038603602515,0.136842638643485,0.146644659476541 +8.66,0.266040584648793,0.935690171195633,1.59413446626691,1.47331639242681,-1.47051780316964,0.136663962441421,0.146442186649914 +8.662,0.265990338419308,0.935768186813531,1.59411784173906,1.47346545274403,-1.47064957177364,0.136485283226564,0.146239748922452 +8.664,0.265940148728884,0.935846229467068,1.59410117451547,1.47361445048272,-1.47078134021247,0.136306599002805,0.146037347877996 +8.666,0.265890015606436,0.935924297902621,1.59408446446544,1.47376338502275,-1.47091311005367,0.136127911796423,0.145834981597956 +8.668,0.265839939046851,0.936002391091193,1.59406771342748,1.47391225755519,-1.47104487965057,0.135949219671652,0.14563265158398 +8.67,0.265789919096994,0.936080507789608,1.5940509212693,1.47406106751993,-1.47117665055235,0.135770524703455,0.145430355856768 +8.672,0.265739955770252,0.936158647054554,1.5940340897703,1.47420981612767,-1.47130842110098,0.135591824989698,0.145228095874871 +8.674,0.265690049131134,0.936236807794037,1.59401721869025,1.4743585028025,-1.47144019283786,0.135413122627916,0.145025869637581 +8.676,0.265640199209765,0.936314989270687,1.59400030965802,1.47450712871261,-1.47157196410365,0.135234415725281,0.144823678598544 +8.678,0.265590406085205,0.936393190641224,1.59398336225079,1.47465569321848,-1.47170373644133,0.135055706380185,0.144621520771542 +8.68,0.265540669800039,0.936471411447735,1.59396637789008,1.47480419741217,-1.47183550819863,0.134876992690624,0.144419397637912 +8.682,0.265490990442638,0.936549651144798,1.59394935593181,1.47495264057017,-1.47196728092722,0.134698276740898,0.144217307254421 +8.684,0.265441368062076,0.936627909579242,1.59393229756934,1.47510102369985,-1.47209905298765,0.134519556608532,0.144015251153864 +8.686,0.265391802749588,0.936706186506186,1.59391520193347,1.47524934599514,-1.47223082594473,0.134340834355974,0.143813227454636 +8.688,0.265342294554073,0.936784482059211,1.5938980700012,1.47539760838823,-1.47236259817489,0.134162108035808,0.143611237754315 +8.69,0.265292843563005,0.936862796257766,1.59388090070385,1.47554581000609,-1.47249437125771,0.133983379687082,0.143409280240924 +8.692,0.26524344981875,0.936941129470593,1.59386369483937,1.47569395172539,-1.47262614358593,0.13380464733837,0.14320735657968 +8.694,0.265194113399146,0.937019481917621,1.59384645118639,1.47584203262812,-1.4727579167532,0.133625913008242,0.143005465026279 +8.696,0.265144834334814,0.937097854129899,1.59382917041764,1.47599005355809,-1.47288968916686,0.13344717470568,0.142803607307283 +8.698,0.265095612689555,0.937176246449242,1.59381185121743,1.47613801357432,-1.47302146243212,0.133268434434216,0.142601781736 +8.7,0.265046448478757,0.937254659487837,1.5937944941939,1.4762859135082,-1.47315323496779,0.133089690189261,0.142399990087176 +8.702,0.264997341749675,0.937333093628625,1.59377709799762,1.47643375241375,-1.47328500838701,0.132910943965526,0.142198230716165 +8.704,0.264948292500957,0.937411549487265,1.59375966323058,1.47658153112501,-1.4734167811161,0.132732193750929,0.141996505428657 +8.706,0.264899300762798,0.937490027415597,1.59374218856423,1.47672924870297,-1.47354855477212,0.132553441537054,0.141794812603867 +8.708,0.264850366517541,0.937568527967927,1.5937246746437,1.47687690599315,-1.47368032778491,0.13237468530943,0.141593154059986 +8.71,0.264801489779628,0.937647051409101,1.59370712020403,1.47702450206941,-1.47381210177157,0.132195927060913,0.141391528182023 +8.712,0.264752670517167,0.937725598186184,1.59368952596877,1.47717203779192,-1.47394387516186,0.132017164778257,0.141189936783578 +8.714,0.264703908731567,0.937804168441816,1.59367189076391,1.47731951224831,-1.47407564956973,0.131838400458413,0.140988378239809 +8.716,0.264655204379942,0.937882762491513,1.59365421541061,1.47746692631248,-1.47420742342209,0.131659632091401,0.140786854345938 +8.718,0.264606557454281,0.937961380342143,1.59363649883695,1.47761427908346,-1.47433919832741,0.131480861679599,0.140585363455646 +8.72,0.264557967904547,0.938040022174355,1.59361874196512,1.47776157144562,-1.47447097270797,0.131302087216986,0.140383907336514 +8.722,0.264509435717245,0.938118687865368,1.59360094382149,1.47790880250561,-1.47460274816551,0.131123310711521,0.140182484313955 +8.724,0.264460960839084,0.938197377475461,1.59358310541913,1.47805597315428,-1.47473452311692,0.13094453016086,0.139981096123602 +8.726,0.264412543254829,0.938276090773849,1.59356522586711,1.47820308250207,-1.47486629915696,0.130765747577922,0.139779741060711 +8.728,0.264364182911414,0.938354827727859,1.59354730624929,1.4783501314428,-1.47499807469727,0.130586960963194,0.139578420829336 +8.73,0.264315879794994,0.938433588030443,1.59352934573398,1.47849711908778,-1.47512985132619,0.130408172333557,0.139377133697002 +8.732,0.264267633855444,0.938512371590579,1.59351134545005,1.47864404633148,-1.47526162745103,0.130229379691266,0.139175881340403 +8.734,0.264219445082569,0.938591178061004,1.59349330459809,1.47879091228433,-1.47539340465486,0.130050585056095,0.138974662005038 +8.736,0.264171313430944,0.938670007328486,1.59347522432485,1.47893771784039,-1.47552518134207,0.129871786431053,0.138773477347112 +8.738,0.264123238895288,0.938748859040546,1.59345710383678,1.47908446210873,-1.47565695909196,0.129692985837863,0.138572325597804 +8.74,0.264075221435655,0.938827733094524,1.59343894427366,1.47923114598301,-1.47578873630759,0.129514181279464,0.138371208401023 +8.742,0.264027261051982,0.938906629162376,1.59342074482522,1.47937776857132,-1.47592051456611,0.129335374778817,0.138170123982001 +8.744,0.263979357709679,0.938985547177816,1.59340250660451,1.47952433076753,-1.4760522922708,0.129156564338208,0.137969073980591 +8.746,0.263931511413402,0.93906448685867,1.59338422876804,1.47967083167956,-1.47618407099814,0.128977751981364,0.13776805662393 +8.748,0.263883722133086,0.939143448191745,1.59336591238914,1.47981727220235,-1.47631584915302,0.128798935709563,0.13756707355504 +8.75,0.263835989877023,0.939222430952604,1.59334755658175,1.47996365144444,-1.47644762831245,0.128620117547029,0.137366123009372 +8.752,0.263788314618386,0.939301435188206,1.59332916237371,1.48010997030252,-1.4765794068839,0.128441295493852,0.137165206638562 +8.754,0.263740696367684,0.939380460734286,1.59331072883415,1.48025622788625,-1.47671118644572,0.128262471574631,0.136964322690767 +8.756,0.26369313509985,0.939459507696096,1.59329225694648,1.48040242509437,-1.47684296540858,0.128083643788196,0.136763472829513 +8.758,0.26364563082612,0.939538575963848,1.59327374573893,1.4805485610377,-1.47697474535256,0.127904814159485,0.13656265531781 +8.76,0.26359818352174,0.939617665692086,1.59325519615696,1.48069463661688,-1.47710652469171,0.127725980686059,0.136361871832122 +8.762,0.263550793197326,0.939696776813798,1.59323660719652,1.48084065094356,-1.47723830500782,0.127547145393193,0.136161120650327 +8.764,0.263503459827222,0.939775909519053,1.59321797977528,1.4809866049197,-1.47737008471819,0.127368306277197,0.135960403460897 +8.766,0.263456183420374,0.939855063768433,1.5931993128682,1.48113249765709,-1.47750186540599,0.127189465363699,0.135759718554817 +8.768,0.263408963949359,0.939934239771581,1.59318060737712,1.48127833005827,-1.47763364549129,0.127010620647774,0.135559067630112 +8.77,0.263361801420792,0.940013437500562,1.59316186226815,1.48142410123437,-1.47776542655813,0.126831774155427,0.135358448987873 +8.772,0.263314695805024,0.940092657168873,1.59314307843918,1.48156981208769,-1.47789720702871,0.126652923880526,0.135157864332276 +8.774,0.263267647106087,0.940171898745234,1.59312425485872,1.48171546172794,-1.47802898848727,0.126474071849481,0.134957311970865 +8.776,0.263220655292045,0.940251162433487,1.59310539243098,1.48186105105655,-1.4781607693575,0.126295216054987,0.134756793610218 +8.778,0.263173720364467,0.94033044818715,1.59308649013596,1.48200657918126,-1.47829255122315,0.126116358523906,0.134556307560617 +8.78,0.263126842289409,0.940409756190458,1.5930675488919,1.48215204700218,-1.47842433250874,0.125937497247817,0.134355855527486 +8.782,0.26308002106639,0.940489086373852,1.59304856769637,1.48229745362486,-1.47855611479696,0.125758634254099,0.134155435820551 +8.784,0.263033256659978,0.940568438896232,1.59302954748614,1.48244279994799,-1.4786878965126,0.125579767533294,0.133955050141139 +8.786,0.262986549068242,0.940647813661389,1.59301048727926,1.48258808507496,-1.47881967923683,0.125400899113385,0.133754696795904 +8.788,0.26293989825492,0.940727210801396,1.59299138803231,1.48273330990327,-1.47895146139436,0.125222026983977,0.133554377480029 +8.79,0.262893304217312,0.940806630193851,1.59297224878364,1.48287847353447,-1.47908324456454,0.12504315317376,0.133354090495538 +8.792,0.262846766919003,0.940886071946206,1.59295307050815,1.48302357686529,-1.47921502717182,0.124864275671514,0.13315383753042 +8.794,0.262800286357184,0.940965535913594,1.59293385226181,1.48316861899594,-1.47934681079358,0.124685396506747,0.13295361688152 +8.796,0.262753862495897,0.941045022183839,1.59291459503415,1.48331360082295,-1.47947859385399,0.124506513667523,0.132753430229546 +8.798,0.262707495332774,0.941124530595577,1.59289529789435,1.4834585214458,-1.47961037792856,0.12432762918427,0.132553275866511 +8.8,0.262661184832791,0.941204061223656,1.59287596184162,1.48360338176137,-1.47974216144126,0.124148741044435,0.132353155466568 +8.802,0.262614930994417,0.941283613897272,1.59285658595306,1.48374818086897,-1.4798739459659,0.123969851279443,0.132153067317947 +8.804,0.262568733783858,0.941363188685478,1.59283717123213,1.48389291966638,-1.48000572992651,0.123790957876196,0.131953013089552 +8.806,0.262522593200629,0.941442785415083,1.59281771675851,1.48403759725316,-1.48013751489545,0.123612062867167,0.131752991067322 +8.808,0.262476509212284,0.94152240415604,1.59279822353485,1.48418221452837,-1.48026929929707,0.123433164238746,0.131553002916531 +8.81,0.262430481819411,0.941602044738916,1.59277869063871,1.48432677059213,-1.48040108470259,0.123254264024471,0.131353046922501 +8.812,0.262384510990861,0.941681707240001,1.59275911906774,1.48447126634494,-1.48053286953698,0.12307536021022,0.131153124748541 +8.814,0.26233859672817,0.941761391498227,1.59273950789385,1.48461570088761,-1.48066465537059,0.12289645483057,0.130953234680968 +8.816,0.262292739001298,0.941841097599912,1.59271985810682,1.4847600751221,-1.4807964406293,0.122717545870858,0.130753378382618 +8.818,0.262246937812493,0.941920825395094,1.59270016877075,1.48490438814982,-1.48092822688283,0.122538635366646,0.130553554142147 +8.82,0.262201193132548,0.942000574981898,1.59268044086613,1.48504864087407,-1.48106001255815,0.122359721302671,0.130353763623082 +8.822,0.262155504964124,0.942080346222309,1.59266067344854,1.48519283239666,-1.48119179922454,0.122180805715413,0.130154005117372 +8.824,0.262109873278532,0.942160139226222,1.59264086748913,1.48533696362195,-1.48132358531022,0.12200188658893,0.129954280289971 +8.826,0.262064298078533,0.942239953866732,1.59262102203552,1.48548103365189,-1.4814553723841,0.121822965960541,0.129754587436629 +8.828,0.262018779335649,0.942319790263965,1.5926011380506,1.4856250433916,-1.48158715887571,0.121644041813554,0.129554928224017 +8.83,0.261973317052454,0.942399648300008,1.5925812145756,1.48576899194281,-1.48171894635363,0.121465116186045,0.129355300951762 +8.832,0.261927911200419,0.942479528102635,1.59256125256709,1.48591288021113,-1.48185073324866,0.121286187060502,0.129155707288128 +8.834,0.261882561781703,0.942559429560014,1.59254125106206,1.48605670729777,-1.48198252112902,0.121107256475699,0.128956145536327 +8.836,0.261837268767534,0.942639352804451,1.5925212110131,1.48620047410854,-1.48211430842671,0.120928322413253,0.128756617365773 +8.838,0.261792032159504,0.942719297727,1.59250113145536,1.48634417974391,-1.48224609670947,0.120749386912586,0.128557121082701 +8.84,0.261746851928489,0.942799264461345,1.59248101333984,1.48648782510966,-1.48237788441042,0.120570447954413,0.128357658357022 +8.842,0.26170172807545,0.942879252898408,1.59246085570218,1.48663140930539,-1.48250967309671,0.120391507578784,0.128158227497282 +8.844,0.261656660570877,0.942959263170464,1.5924406594939,1.48677493323675,-1.48264146120241,0.120212563765506,0.127958830173144 +8.846,0.261611649415109,0.943039295165823,1.592420423753,1.48691839600238,-1.48277325029395,0.120033618555255,0.12775946469472 +8.848,0.261566694578297,0.943119349013224,1.59240014943317,1.4870617985078,-1.48290503880627,0.119854669926939,0.127560132730704 +8.85,0.261516638422876,0.943193506912444,1.59238285558457,1.48719535731108,-1.48301700040897,0.119705476796487,0.127388443568941 +8.852,0.261432966270603,0.943265263218863,1.59237397574392,1.48735992401414,-1.48314900699186,0.119528367828511,0.127183222566116 +8.854,0.261328593909602,0.943335017063539,1.5923696314348,1.4875346355862,-1.48328222693742,0.119350540454791,0.126974369902469 +8.856,0.26121340273545,0.943403343394641,1.5923644134517,1.48770865176779,-1.48341501067853,0.119174778232606,0.126766524265146 +8.858,0.261094847559382,0.943471468984165,1.59235503044238,1.48787552626612,-1.48354753716688,0.118999788304145,0.126560628051449 +8.86,0.260978184678501,0.943540926779254,1.59234019504026,1.48803188494012,-1.48368009057763,0.118824071741464,0.126356858538797 +8.862,0.26087331452659,0.943608494876986,1.5923188579555,1.48815897947325,-1.48379334093913,0.118675667429436,0.126184631940561 +8.864,0.2607714455198,0.943681206826495,1.59229212665205,1.48828813949988,-1.4839277007022,0.118494446883641,0.125984372693092 +8.866,0.260681735495413,0.943755339472804,1.5922631657549,1.48839499035863,-1.48404449699609,0.11833591282575,0.125811240601711 +8.868,0.260594510443373,0.943836425855607,1.59223257663833,1.48851028542284,-1.48418195722924,0.118145311455657,0.125609140414773 +8.87,0.260511892967362,0.943923976656831,1.59220346808427,1.48862713647383,-1.48432069902445,0.117950122457287,0.125404275852271 +8.872,0.260434666273287,0.944016464294098,1.59217508773822,1.48874513010588,-1.4844586772455,0.117755345402645,0.125200063734133 +8.874,0.260363108517297,0.944112304290267,1.59214655680657,1.48886499318929,-1.48459577471354,0.117561839809786,0.124996924693372 +8.876,0.26029719379667,0.944210074557354,1.59211737582701,1.48898756422482,-1.48473210866799,0.117369774655544,0.124794893890298 +8.878,0.260236700340099,0.944308577539805,1.59208742693215,1.48911354276119,-1.48486780881284,0.117179225597754,0.124593937494446 +8.88,0.260181282311742,0.944406847000813,1.59205689145494,1.48924341598692,-1.48500297686166,0.116990247547266,0.124393982411405 +8.882,0.260130532003325,0.944504128632668,1.59202613787236,1.4893774241472,-1.48513769037493,0.116802881000863,0.124194909870341 +8.884,0.260084014189654,0.944599850900106,1.59199562909822,1.4895155726697,-1.48527200101463,0.116617131861484,0.123996566095857 +8.886,0.260041293996165,0.944693594715603,1.59196583704076,1.48965765131198,-1.48540594671245,0.11643297277003,0.123798768596003 +8.888,0.260001942976399,0.944785067511717,1.59193719099174,1.48980328221788,-1.4855395512632,0.11625033248723,0.123601325547899 +8.89,0.259965546332001,0.944874082769359,1.59191003580397,1.48995195984443,-1.48567283546711,0.116069107535691,0.123404044145073 +8.892,0.259931696079992,0.944960545407962,1.59188461960229,1.49010310676437,-1.4858058144271,0.115889159375635,0.123206747769417 +8.894,0.259899992242537,0.945044441119989,1.59186108334819,1.49025611067668,-1.4859385063916,0.115710331365819,0.123009279362528 +8.896,0.259876434741832,0.945121141544468,1.59183846548254,1.49039279553343,-1.48605144263884,0.115561492934843,0.12284098441629 +8.898,0.259850156673641,0.945196703920075,1.59181678769047,1.49054293717903,-1.48618493337831,0.115382919492737,0.122642631062461 +8.9,0.259822606616344,0.945271686802364,1.59179914568702,1.49069759075924,-1.48631987712305,0.115200913828246,0.12244007645511 +8.902,0.259794337221083,0.945345855597182,1.59178461202372,1.49085405731711,-1.48645425352923,0.115019923300328,0.122236800943651 +8.904,0.259765647528603,0.945419031265702,1.59177197034501,1.49101095935834,-1.48658793186536,0.114840318246058,0.122033334019642 +8.906,0.259736675116008,0.945491208915758,1.59176023900003,1.49116736863487,-1.48672102749291,0.114661806894663,0.121829819791094 +8.908,0.259707414456757,0.945562546135715,1.59174872597621,1.49132265398191,-1.48685366985833,0.114484036866343,0.121626354721912 +8.91,0.259684096295923,0.945628628198898,1.59173602372677,1.49145891253366,-1.48696648889161,0.114335742032296,0.121452455214083 +8.912,0.259656141831897,0.945695722838303,1.59172183018181,1.49160616246727,-1.48709985632977,0.114157171006892,0.121249109201362 +8.914,0.259625150725877,0.945764571749838,1.59170921746952,1.49175592382821,-1.48723472501989,0.113974610357387,0.121042257209714 +8.916,0.259591817864733,0.945835049431776,1.59169734766362,1.49190597977489,-1.48736910382042,0.113792542665361,0.120835445053872 +8.918,0.25955660055541,0.945906998374243,1.59168515832886,1.49205540865525,-1.48750288191085,0.113611414357283,0.120629231055929 +8.92,0.259526120567941,0.945975653182306,1.59167095191311,1.49218624574255,-1.48761669544026,0.113460040766161,0.120453185169394 +8.922,0.259490244673798,0.946046939563944,1.59165417409762,1.49232836693326,-1.48775094847296,0.113278662674085,0.120248360805659 +8.924,0.259450898092316,0.946121291169552,1.59163787215406,1.49247328158025,-1.48788663380266,0.113093514894199,0.120040680567585 +8.926,0.259409058065486,0.94619829626683,1.59162129240858,1.49261877014931,-1.48802179223151,0.112909050083658,0.119833661684558 +8.928,0.259371693781237,0.94627283667519,1.59160265865275,1.49274651003235,-1.48813684875904,0.112754711489303,0.119657217154869 +8.93,0.259329025496155,0.946350503348896,1.59158128336361,1.49288610301644,-1.48827219699424,0.11257079556609,0.119452443317124 +8.932,0.259289482461334,0.946426750815462,1.59155934641173,1.49301152633785,-1.48838938062541,0.112412494446748,0.119274593302036 +8.934,0.259243963973501,0.946506843416173,1.59153600514987,1.49315051718728,-1.48852672833698,0.112224726610089,0.119068149945656 +8.936,0.259195092852583,0.946590546432258,1.59151377309673,1.49329374301195,-1.48866505081657,0.112034299135271,0.118859419440737 +8.938,0.259144377639771,0.946676898677821,1.59149152372324,1.49343845062992,-1.48880244548166,0.111845560417959,0.11865191836701 +8.94,0.259092879156456,0.946765061765568,1.59146821462,1.4935833757941,-1.48893889064597,0.111658745107079,0.118446103566985 +8.942,0.259041335330285,0.946854413617867,1.59144330756379,1.49372779938183,-1.48907457745343,0.111473470615949,0.118241980711982 +8.944,0.258990214725841,0.94694451333808,1.59141671403578,1.49387134272432,-1.48920968095408,0.111289340260833,0.118039456314003 +8.946,0.258939781458338,0.947035042697982,1.59138865138076,1.49401386212137,-1.48934433759263,0.11110604639965,0.117838379964272 +8.948,0.258890151397829,0.947125752737304,1.59135951320304,1.49415537904942,-1.48947864142221,0.110923363416234,0.117638566658274 +8.95,0.258841351021962,0.947216424981347,1.59132975450303,1.49429600843296,-1.48961265911524,0.110741140302856,0.11743980746123 +8.952,0.258793355637438,0.947306849961187,1.59129982135426,1.49443591620128,-1.48974643189598,0.110559273934545,0.117241891766091 +8.954,0.258746124741419,0.947396820231215,1.59127009951093,1.49457527655306,-1.48987998941305,0.110377701782745,0.117044615095374 +8.956,0.258699617118954,0.947486134212811,1.59124089870853,1.49471425642411,-1.4900133491154,0.110196381011876,0.116847794107303 +8.958,0.258653805810841,0.94757460564444,1.59121244282285,1.49485299594255,-1.49014652664906,0.110015287721521,0.116651266288069 +8.96,0.258608676929017,0.947662075072384,1.59118488184336,1.49499161112731,-1.49027953196835,0.109834402063454,0.116454897555203 +8.962,0.258570386347161,0.947743717861647,1.59115752944342,1.49511293366637,-1.49039291172863,0.109682704765546,0.116287900129128 +8.964,0.258528864298881,0.947825366383063,1.59113006078498,1.49524683070542,-1.49052690751211,0.109500775894976,0.11609134393446 +8.966,0.258485903295076,0.947907399038904,1.59110579605776,1.49538503306973,-1.49066244038949,0.109314998382484,0.115890965862253 +8.968,0.258442421585589,0.947989372774033,1.59108399941996,1.49552536353244,-1.49079748421754,0.109129952234419,0.115690210292235 +8.97,0.258399080862937,0.948070889139924,1.59106364087796,1.49566685186866,-1.49093189556214,0.108946160248293,0.115489566678581 +8.972,0.258356352506819,0.94815172042763,1.59104393557216,1.49580889359303,-1.49106576525118,0.10876346095424,0.115289137806633 +8.974,0.258314535142981,0.948231802877805,1.59102438206535,1.4959510902162,-1.49119920439737,0.108581623228588,0.115088964366061 +8.976,0.258279875746821,0.948306491697199,1.59100399487957,1.49607601659433,-1.4913128460528,0.108429427156782,0.114918356678156 +8.978,0.258242392901691,0.948381832130854,1.59098222888561,1.49621324860903,-1.49144697837732,0.108247337788766,0.114718527317873 +8.98,0.258203776461134,0.948458414646638,1.59096243264435,1.49635446686775,-1.49158257374952,0.108061615984277,0.114515234679066 +8.982,0.258164792642894,0.948535960346566,1.59094395439183,1.49649748794116,-1.49171764054887,0.107876770029345,0.114311934111881 +8.984,0.258125918268342,0.94861417258225,1.59092588095972,1.49664137469425,-1.49185205037147,0.107693269755273,0.114109117940203 +8.986,0.258093509288211,0.94868815135818,1.59090685422031,1.49676841560864,-1.4919664541413,0.107539902661813,0.113936147552984 +8.988,0.258057751374275,0.948763711977563,1.5908859726018,1.4969078567286,-1.49210117725796,0.107357055157337,0.113734311449551 +8.99,0.258020398610986,0.948841262346159,1.5908664345661,1.49705120940506,-1.49223724381051,0.107170871864322,0.113529374087251 +8.992,0.257982252287383,0.948920374809279,1.59084754397887,1.49719616965817,-1.49237269892231,0.106985764049382,0.113324801055968 +8.994,0.25794381114964,0.949000631505314,1.590828417318,1.49734171188639,-1.49250744739784,0.106802135246258,0.113121075287613 +8.996,0.257905370546421,0.949081737564095,1.59080847192727,1.49748721897439,-1.49264161236941,0.106619737691582,0.112918270337491 +8.998,0.257867066264571,0.949163511387435,1.59078742795957,1.4976322994758,-1.49277532638999,0.106438276633898,0.112716382324132 +9,0.257834926476836,0.949241139738515,1.59076460348209,1.49775965390319,-1.49288924510791,0.106286466499819,0.112544614709687 +9.002,0.257799020285509,0.949320462395837,1.59073950740217,1.49789867263247,-1.49302364377171,0.106104782447013,0.112344226402226 +9.004,0.257760972585661,0.949401863297782,1.59071571738018,1.49804108204227,-1.49315951377987,0.105919423886997,0.112140873965035 +9.006,0.257721543486031,0.949484840769102,1.59069277002113,1.49818471322565,-1.49329487156953,0.105734864915967,0.111937944562315 +9.008,0.257681250492589,0.949568875527419,1.59066991793006,1.49832863598215,-1.49342959046826,0.105551553232584,0.111735868210467 +9.01,0.257640463287205,0.949653563632521,1.59064663558862,1.4984722862836,-1.49356377654954,0.105369285480151,0.111534674530254 +9.012,0.257599421849152,0.949738623333299,1.59062266109931,1.49861531294933,-1.49369754461791,0.105187793407035,0.111334334304656 +9.014,0.257558264876012,0.94982387098659,1.59059793862862,1.49875751775949,-1.49383099209816,0.105006852734644,0.111134791418414 +9.016,0.25751705386464,0.94990919032973,1.59057255513256,1.49889882336192,-1.49396419042359,0.104826287137999,0.110935972643792 +9.018,0.257475805848051,0.949994504399461,1.59054667087882,1.49903923078963,-1.49409719476871,0.104645971331382,0.110737786935276 +9.02,0.257440455994988,0.950075039919047,1.59051990975943,1.49916181813701,-1.49421059833096,0.104494762862378,0.110569333708218 +9.022,0.257401246767547,0.950156638354905,1.59049173139185,1.49929600644933,-1.49434460481289,0.1043133126858,0.110371923422124 +9.024,0.257359890544557,0.950239689296402,1.59046571999914,1.49943368858328,-1.49448017468632,0.10412789846996,0.110171168005099 +9.026,0.257317271804784,0.950323695213452,1.59044133705384,1.49957279496234,-1.49461529884125,0.103943070374795,0.109970456873156 +9.028,0.257274041808446,0.950408154947251,1.59041772618882,1.49971246128298,-1.49474983017614,0.103759341503553,0.109770240045892 +9.03,0.257230696486227,0.950492702600163,1.59039424475033,1.49985217110449,-1.4948838595729,0.103576562006192,0.109570576205555 +9.032,0.257193484226883,0.950572396661736,1.590369995315,1.49997468779891,-1.49499805210085,0.10342344769845,0.109400638517236 +9.034,0.257152949585055,0.95065301859134,1.59034402838965,1.50010908494933,-1.49513266147594,0.103240547297646,0.109201863589961 +9.036,0.257110917405069,0.950734985610559,1.59031979526957,1.50024712488002,-1.49526870285414,0.103054019964798,0.108999892600567 +9.038,0.257068302056059,0.950817867851199,1.59029673733365,1.50038666875624,-1.49540420444017,0.102868335917673,0.108798134101466 +9.04,0.257025720659019,0.950901244914221,1.59027404779655,1.50052683015874,-1.49553904304738,0.102683955094014,0.108597038665825 +9.042,0.256989455051007,0.950980103835405,1.59025067628719,1.50065022456974,-1.49565388826033,0.102529623213089,0.108425801281459 +9.044,0.256950132917369,0.951060162465033,1.59022547428996,1.50078571209579,-1.49578901043969,0.102345853489201,0.108225904078017 +9.046,0.256909560562948,0.951141794976542,1.59020182700277,1.50092497453204,-1.49592545814409,0.102158730817971,0.108022969764231 +9.048,0.256868606961443,0.951224536093878,1.59017915053929,1.50106581424249,-1.49606128137334,0.101972663623587,0.107820402788115 +9.05,0.256827832945253,0.951307936336755,1.59015663621798,1.50120729284095,-1.49619637969125,0.101788073003409,0.107618642032889 +9.052,0.25678758641903,0.951391677981576,1.59013374655314,1.50134886764616,-1.49633086940916,0.10160473282399,0.10741772578004 +9.054,0.256748044493093,0.951475567166036,1.59011022199746,1.5014902094684,-1.49646487721982,0.101422369249572,0.107217622470147 +9.056,0.256709246899347,0.951559500751809,1.59008601761099,1.50163114497847,-1.49659850405635,0.101240749257525,0.107018276278714 +9.058,0.256671140580032,0.951643430587052,1.59006121919618,1.5017716023707,-1.49673183006047,0.101059697739044,0.106819608973495 +9.06,0.256633611583277,0.95172733447486,1.59003598215435,1.50191158015681,-1.49686491199115,0.100879080231284,0.106621532694572 +9.062,0.256596520030714,0.951811196198046,1.59001047617345,1.50205110913208,-1.49699779425929,0.100698801118778,0.10642395254846 +9.064,0.256559718725943,0.95189499521729,1.58998485878735,1.50219023722019,-1.49713050729487,0.100518785707152,0.106226779135591 +9.066,0.256523073578651,0.951978703576407,1.58995925303394,1.5023290077162,-1.49726307729812,0.1003389811444,0.10602992850161 +9.068,0.256486468443685,0.952062288126561,1.58993374784474,1.50246745895322,-1.49739552255034,0.100159341903809,0.105833330785619 +9.07,0.256449813987375,0.952145714939671,1.58990839457597,1.5026056143917,-1.49752786125721,0.0999798343651179,0.105636926018977 +9.072,0.256413043931756,0.952228954580285,1.58988321845742,1.50274349044987,-1.49766010647185,0.099800425834653,0.105440669108285 +9.074,0.256376117906955,0.952311986259014,1.58985822023937,1.50288109179066,-1.49779227277368,0.0996210917282455,0.105244523172138 +9.076,0.256339013869842,0.952394800785798,1.58983338862065,1.50301842190655,-1.49792437037277,0.0994418064087748,0.105048463172613 +9.078,0.256301728860563,0.952477401476194,1.58980870041455,1.5031554793017,-1.49805641129898,0.0992625515281266,0.104852468767063 +9.08,0.256264270689748,0.952559803807679,1.58978413028664,1.50329226755575,-1.49818840334048,0.099083307622653,0.104656527996986 +9.082,0.256226658807828,0.952642033551257,1.58975964810241,1.50342879026055,-1.49832035615885,0.0989040627075748,0.104460630605578 +9.084,0.256188916635305,0.952724124452975,1.58973522622891,1.50356505947628,-1.49845227525324,0.0987248038826917,0.104264772319534 +9.086,0.256151073335276,0.952806115248317,1.5897108350887,1.5037010890333,-1.49858416811236,0.098545525741669,0.104068948760787 +9.088,0.256113157183023,0.952888046999719,1.58968644926494,1.50383690145121,-1.49871603825653,0.0983662217814738,0.10387316018621 +9.09,0.256075198355443,0.952969960375315,1.58966204240965,1.50397251999614,-1.49884789141499,0.0981868925507312,0.103677405754929 +9.092,0.256037223249065,0.953051893666099,1.58963759305797,1.50410797466731,-1.49897972959011,0.0980075368511543,0.103481688479908 +9.094,0.25599925809355,0.953133880976666,1.58961307946909,1.50424329367355,-1.49911155721701,0.0978281597041317,0.103286009621899 +9.096,0.25596132397872,0.953215951237701,1.58958848543245,1.50437850913673,-1.49924337521566,0.0976487634565943,0.103090373684348 +9.098,0.255923441040527,0.953298127366051,1.58956379510046,1.50451364856907,-1.49937518711359,0.0974693556955287,0.102894782831947 +9.1,0.25588562394476,0.953380426150436,1.58953899871816,1.50464874079367,-1.49950699306903,0.0972899403677815,0.102699241898344 +9.102,0.255847886415501,0.953462858151835,1.58951408731188,1.50478380780625,-1.49963879595969,0.0971105257530129,0.102503752834929 +9.104,0.255810236972995,0.953545428185076,1.58948905820318,1.50491887118319,-1.49977059538257,0.096931115682832,0.102308319768848 +9.106,0.255772683634155,0.953628135676127,1.58946390944454,1.5050539444845,-1.49990239372312,0.0967517176423232,0.102112943525251 +9.108,0.255735229762748,0.953710975475343,1.58943864506364,1.50518904021152,-1.50003419014122,0.0965723341283325,0.10191762678257 +9.11,0.25569787882952,0.95379393843962,1.58941326924565,1.50532416272781,-1.50016598663375,0.096392970904294,0.101722368699274 +9.112,0.255660630288508,0.953877012380866,1.58938779135685,1.50545931567761,-1.50029778201498,0.0962136285003098,0.101527170184918 +9.114,0.255623484332415,0.953960182710445,1.58936221995899,1.50559449528754,-1.50042957797998,0.096034310609664,0.101332028631344 +9.116,0.255586437748797,0.954043433389105,1.58933656772119,1.50572969807896,-1.50056137308291,0.0958550157049724,0.10113694328612 +9.118,0.25554948863769,0.954126747523444,1.5893108453853,1.5058649143707,-1.50069316880278,0.0956757455412171,0.100941910062188 +9.12,0.255512632225903,0.954210108225733,1.58928506668258,1.50600013610356,-1.50082496352017,0.0954964968484297,0.100746926979036 +9.122,0.255475865531674,0.954293499086116,1.58925924235768,1.50613535037472,-1.50095675858359,0.0953172698965154,0.100551989012685 +9.124,0.255439183127744,0.954376904879351,1.58923338518093,1.50627054722229,-1.50108855228373,0.0951380602225703,0.100357093563764 +9.126,0.255402581746502,0.954460311862148,1.58920750410424,1.50640571306499,-1.50122034591736,0.094958867214404,0.100162235310577 +9.128,0.255366055988717,0.954543708288765,1.5891816094213,1.50654083834529,-1.50135213775852,0.0947796858370755,0.0999674116680981 +9.13,0.255329602867717,0.954627084508095,1.58915570708963,1.50667591080225,-1.50148392911704,0.0946005152010499,0.0997726176155873 +9.132,0.255293217464957,0.954710433276058,1.58912980405391,1.50681092292591,-1.5016157183067,0.0944213502633747,0.099577851121196 +9.134,0.255256897416344,0.954793749653558,1.58910390273459,1.5069458650413,-1.50174750669659,0.0942421903586524,0.0993831079272547 +9.136,0.255220638520324,0.954877031129786,1.58907800650063,1.50708073257228,-1.50187929267668,0.0940630308621237,0.0991883869272096 +9.138,0.255184439174413,0.954960277347083,1.58905211430068,1.50721551895293,-1.50201107770126,0.0938838716738728,0.0989936849028337 +9.14,0.25514829594607,0.955043490071845,1.58902622625226,1.50735022273042,-1.50214286025299,0.0937047088413924,0.0987990018509506 +9.142,0.255112207971904,0.955126672791535,1.58900033837684,1.50748484034378,-1.50227464187839,0.0935255429975628,0.0986043356757113 +9.144,0.255076172505092,0.955209830584967,1.58897444826269,1.50761937311233,-1.50240642115163,0.0933463709478388,0.0984096874707373 +9.146,0.255040189292281,0.955292969647199,1.58894854985914,1.50775381993188,-1.50253819970287,0.0931671940696115,0.098215056175651 +9.148,0.2550042561125,0.955376097116554,1.58892263916854,1.50788818420022,-1.50266997618286,0.0929880098736363,0.0980204438245464 +9.15,0.254968373146631,0.955459220583961,1.58889670905623,1.50802246648027,-1.50280175228543,0.0928088203762695,0.0978258501792138 +9.152,0.254932538521221,0.955542347930384,1.5888707549314,1.5081566714099,-1.50293352671392,0.0926296236464536,0.0976312779573542 +9.154,0.254896752682578,0.955625486869537,1.58884476953605,1.50829080037392,-1.50306530119929,0.0924504221634014,0.0974367274557497 +9.156,0.254861013955059,0.955708644838409,1.58881874858338,1.50842485843538,-1.5031970744692,0.0922712143599514,0.0972422017717608 +9.158,0.254825322927189,0.955791828608785,1.58879268549933,1.50855884704681,-1.50332884826326,0.0920920029771952,0.0970477014285654 +9.16,0.254789678028971,0.955875044258279,1.5887665769984,1.50869277102726,-1.50346062130532,0.0919127866130102,0.0968532296017477 +9.162,0.254754079932134,0.955958296869856,1.58874041776324,1.50882663132985,-1.50359239531721,0.0917335680826088,0.0966587867562278 +9.164,0.254718527146016,0.956041590594354,1.58871420594955,1.50896043207588,-1.50372416899465,0.0915543459782273,0.0964643758867759 +9.166,0.25468302042938,0.956124928441279,1.58868793780083,1.50909417338326,-1.50385594402038,0.0913751230413317,0.0962699971729753 +9.168,0.254647558400518,0.956208312428919,1.58866161308468,1.50922785845705,-1.50398771904393,0.0911958977363883,0.0960756532389084 +9.17,0.254612141954867,0.956291743456326,1.58863522964955,1.5093614864733,-1.50411949569474,0.0910166726371159,0.0958813438290097 +9.172,0.254582170417219,0.956370472277289,1.58860874824489,1.50947879826312,-1.50423188152449,0.0908662746651436,0.0957159436721637 +9.174,0.25454876333915,0.956450347321202,1.58858050642273,1.50960791386909,-1.50436491802269,0.0906857407019463,0.095521493680795 +9.176,0.254513496415791,0.956531890308563,1.5885541891269,1.50974090168844,-1.50449962179979,0.0905011930788072,0.0953234446429512 +9.178,0.254477179151817,0.956614685145457,1.58852924293552,1.50987569454491,-1.5046339963836,0.0903171579929105,0.0951252211696732 +9.18,0.254440394215271,0.95669828783177,1.58850478573123,1.51001139206976,-1.50476788333789,0.0901341659590411,0.0949273293346286 +9.182,0.254403568195721,0.956782369874905,1.5884801547809,1.51014742896513,-1.50490135810863,0.0899520874637564,0.0947298802226158 +9.184,0.254366979674233,0.956866727032297,1.58845496483632,1.51028343598679,-1.50503451092112,0.08977071300453,0.094532922204821 +9.186,0.254330782752611,0.956951253449406,1.58842905776704,1.51041918717212,-1.50516742020303,0.089589863278458,0.0943364697123364 +9.188,0.254295030053292,0.957035907481736,1.58840244068481,1.51055457127146,-1.50530014309769,0.0894093955999242,0.0941405114731694 +9.19,0.254259706685188,0.957120679754589,1.58837521505204,1.51068955092018,-1.50543272386658,0.089229209049901,0.093945009786183 +9.192,0.25422475236058,0.95720556921015,1.58834752943197,1.51082414105651,-1.50556519080681,0.0890492282679061,0.0937499139989391 +9.194,0.254190087646302,0.957290567970044,1.58831953644617,1.51095837881526,-1.50569756589045,0.0888694042306521,0.0935551631806174 +9.196,0.254155626076591,0.957375654872947,1.58829137510611,1.51109231377177,-1.50582986183105,0.0886896994257866,0.0933606983062526 +9.198,0.254121289778685,0.95746079511075,1.58826315424783,1.51122598988489,-1.50596209057855,0.088510090980364,0.0931664617140528 +9.2,0.254087011597696,0.957545944185571,1.5882349555568,1.51135944682778,-1.50609425874263,0.0883305581855258,0.0929724054811063 +9.202,0.254052742451297,0.957631053387651,1.58820683087507,1.51149271074286,-1.50622637468342,0.0881510882271122,0.0927784871484638 +9.204,0.254018447412057,0.957716075727701,1.58817881276371,1.5116258016214,-1.50635844300714,0.0879716662449089,0.0925846749537408 +9.206,0.253984108882976,0.957800970628349,1.5881509147709,1.51175872795,-1.50649047088523,0.0877922829044403,0.0923909415512272 +9.208,0.2539497200142,0.957885707418198,1.58812314196494,1.51189149627604,-1.50662246201429,0.0876129256780458,0.0921972682228251 +9.21,0.253915286423671,0.957970266890882,1.58809548950354,1.51202410668108,-1.50675442265005,0.0874335872218408,0.0920036382836713 +9.212,0.253880819118073,0.958054641700455,1.58806795077228,1.51215656212537,-1.50688635551767,0.0872542571897024,0.0918100413971404 +9.214,0.253846336307701,0.958138835313069,1.58804051367048,1.51228886314332,-1.50701826584221,0.0870749307933892,0.0916164673901912 +9.216,0.253811856786146,0.958222860498036,1.58801316693365,1.51242101612696,-1.50715015530851,0.0868956006091402,0.0914229110529756 +9.218,0.25377740239573,0.958306737108515,1.58798589520395,1.51255302688941,-1.50728202813952,0.0867162650079254,0.0912293664078056 +9.22,0.253742992167175,0.958390490056618,1.58795868465801,1.51268490784349,-1.5074138851281,0.0865369198171237,0.0910358318260153 +9.222,0.253708645543674,0.958474147091498,1.58793151782746,1.51281667062837,-1.50754572973784,0.0863575665600199,0.0908423045177882 +9.224,0.253674377239936,0.958557737126917,1.58790437924638,1.51294833255266,-1.50767756215152,0.086178203950638,0.090648785743219 +9.226,0.253640201106583,0.958641288577466,1.58787725043771,1.51307990871639,-1.50780938535451,0.0859988359865553,0.0904552753259239 +9.228,0.253606125551515,0.958724828332695,1.58785011573687,1.51321141815696,-1.5079411991728,0.0858194633523413,0.0902617768180715 +9.23,0.253572157868659,0.958808380741593,1.58782295741498,1.51334287587737,-1.50807300632368,0.0856400914522203,0.0900682919608329 +9.232,0.253538300034318,0.958891967183866,1.58779576154793,1.51347429906562,-1.50820480643097,0.0854607217977407,0.0898748257897943 +9.234,0.253504553320053,0.958975605571615,1.58776851309693,1.51360569932932,-1.50833660204633,0.0852813600596797,0.0896813810617424 +9.236,0.253470914297792,0.959059310350653,1.58774120164642,1.51373708921372,-1.50846839264817,0.0851020075059539,0.0894879633472735 +9.238,0.253437379589359,0.959143092348356,1.58771381629716,1.51386847479011,-1.50860018064632,0.0849226691290311,0.0892945754771937 +9.24,0.253403941951743,0.959226959048135,1.58768635117927,1.51399986255171,-1.50873196537331,0.0847433451695848,0.0891012226790531 +9.242,0.253370595055926,0.959310914649235,1.58765880011405,1.51413125237009,-1.50886374908377,0.0845640393449641,0.0889079070871024 +9.244,0.253337329566128,0.959394960503739,1.58763116190367,1.5142626447302,-1.50899553094579,0.0843847504677083,0.088714632955877 +9.246,0.253304137880236,0.959479095298648,1.58760343479915,1.51439403397519,-1.50912731304194,0.0842054807736615,0.0885214012510741 +9.248,0.253271010152169,0.959563315581621,1.58757562162874,1.51452541577287,-1.50925909436425,0.0840262276216937,0.0883282149455186 +9.25,0.253237938956108,0.959647616002636,1.58754772414855,1.5146567805255,-1.50939087681887,0.0838469919005372,0.0881350736845941 +9.252,0.253204915226413,0.959731989872709,1.58751974808985,1.51478812093732,-1.50952265922593,0.0836677697833911,0.0879419791493092 +9.254,0.253171932828017,0.959816429413763,1.58749169747159,1.51491942546347,-1.50965444332681,0.0834885611828982,0.0877489297762598 +9.256,0.253138984404044,0.95990092630199,1.58746357963804,1.51505068586175,-1.50978622778875,0.0833093615301356,0.0875559261633311 +9.258,0.253106065847095,0.959985471880547,1.58743539959613,1.51518189058049,-1.50991801421246,0.0831301702461146,0.0873629658204544 +9.26,0.253073172054605,0.960070057645916,1.58740716509402,1.51531303221096,-1.51004980114107,0.0829509825178517,0.0871700485928632 +9.262,0.25304030130424,0.96015467538661,1.58737888102378,1.51544410075159,-1.51018159006571,0.0827717977600004,0.0869771714215774 +9.264,0.253007450924329,0.960239317581978,1.58735055456942,1.51557509091688,-1.51031337943849,0.0825926113679699,0.08678433376359 +9.266,0.252979692639807,0.960319207826052,1.58732246868722,1.51569017472232,-1.51042580741965,0.0824421725895229,0.0866202144536949 +9.268,0.252948667207519,0.960400161753001,1.58729239571788,1.51581672634694,-1.51055883998317,0.0822617196453226,0.0864272269989592 +9.27,0.252915866897975,0.96048274772965,1.58726417485681,1.51594697805853,-1.5106935344985,0.0820772535412935,0.0862306696969805 +9.272,0.252882059642507,0.960566567519365,1.58723731746814,1.51607892855842,-1.51082790781739,0.0818932648642618,0.0860339404743742 +9.274,0.252847805297929,0.960651183853428,1.5872109700134,1.5162117103124,-1.51096180545675,0.0817102905062774,0.085837531943251 +9.276,0.252813510375582,0.960736269027873,1.58718448827783,1.51634478929683,-1.51109529553696,0.081528203312484,0.0856415538704337 +9.278,0.252779444113415,0.96082161601979,1.58715748894745,1.51647781344044,-1.51122846728231,0.0813468048711897,0.0854460506137802 +9.28,0.252745752795072,0.960907115260817,1.58712981348028,1.5166105744445,-1.51136139362239,0.0811659180901866,0.0852510393519568 +9.282,0.252712490280011,0.960992721934474,1.58710145894861,1.51674296634549,-1.51149413349824,0.0809854095137908,0.0850565072869982 +9.284,0.252679641252683,0.961078425357068,1.58707252130279,1.51687496111765,-1.51162672736741,0.0808051770734318,0.0848624216202348 +9.286,0.252647151058864,0.961164225004219,1.58704313868563,1.51700657366943,-1.51175920641309,0.0806251516024669,0.0846687313663668 +9.288,0.252614942436479,0.961250115544302,1.58701345987021,1.51713784657588,-1.51189158990579,0.0804452812853292,0.0844753803679694 +9.29,0.252582935693153,0.96133607964812,1.58698361604932,1.51726882672086,-1.51202389408947,0.0802655337761066,0.0842823086477056 +9.292,0.252551054958065,0.961422087364283,1.58695371513215,1.51739956210776,-1.51215612832052,0.0800858824915461,0.0840894626718586 +9.294,0.252519238750861,0.961508099175088,1.58692383364258,1.51753008915591,-1.51228830259743,0.0799063112747567,0.0838967929314739 +9.296,0.252487438498836,0.961594071286461,1.58689402442753,1.51766043772397,-1.51242042258307,0.0797268034136108,0.0837042604225881 +9.298,0.252455623270919,0.961679960889261,1.58686431618464,1.5177906243342,-1.51255249612611,0.0795473485363028,0.0835118312871568 +9.3,0.252423774239085,0.961765730929318,1.58683472431879,1.51792066104405,-1.51268452752693,0.0793679333293526,0.0833194813266888 +9.302,0.252391886864946,0.961851353185983,1.58680525060263,1.51805055077855,-1.51281652356968,0.0791885496564236,0.0831271895658725 +9.304,0.252359964057503,0.961936810136727,1.58677589241162,1.51818029690026,-1.51294848756897,0.0790091861432111,0.0829349423552286 +9.306,0.252328017900075,0.962022095116462,1.58674664013592,1.51830989835469,-1.51308042529363,0.0788298367399876,0.08274272704395 +9.308,0.252296062924337,0.962107211693891,1.58671748420398,1.51843935849049,-1.51321233900884,0.0786504924974643,0.0825505364513822 +9.31,0.252264118291999,0.962192171991058,1.58668841071691,1.51856867919062,-1.51334423342839,0.078471150117861,0.082358363006807 +9.312,0.252232201732722,0.962276994915058,1.58665940722435,1.51869786856769,-1.51347610982596,0.0782918036516063,0.0821662036346761 +9.314,0.252200332453184,0.962361703958822,1.58663045766049,1.5188269340503,-1.51360797202416,0.078112452879551,0.0819740542344009 +9.316,0.252168525807979,0.962446325408639,1.58660154783213,1.51895588917405,-1.51373982054048,0.0779330948457385,0.0817819147777909 +9.318,0.25213679688534,0.962530886463942,1.58657266035699,1.51908474597258,-1.51387165857615,0.077753732069352,0.0815897839055247 +9.32,0.252105155790588,0.962615413967344,1.58654378028124,1.51921352127322,-1.51400348616296,0.0775743639570343,0.0813976640438601 +9.322,0.25207361175082,0.962699933135138,1.5865148901907,1.51934222880951,-1.51413530612693,0.0773949949149267,0.0812055559799185 +9.324,0.252042168831323,0.962784466903249,1.58648597595394,1.51947088542132,-1.51426711821508,0.0772156257113292,0.0810134639257406 +9.326,0.25201083037924,0.962869035225332,1.58645702188874,1.51959950323493,-1.51439892502901,0.0770362615697391,0.0808213900475811 +9.328,0.251979595000707,0.962953654911125,1.58642801646577,1.51972809605076,-1.51453072613203,0.0768569035528414,0.0806293394945747 +9.33,0.251948461186771,0.9630383393329,1.58639894736232,1.51985667180018,-1.51466252396141,0.0766775567022339,0.0804373149202437 +9.332,0.251917423411253,0.963123098591775,1.58636980699051,1.51998523926197,-1.51479431792352,0.0764982214904208,0.0802453215286573 +9.334,0.251886476819505,0.963207939481445,1.58634058734562,1.52011380086785,-1.51492611029653,0.0763189020453565,0.0800533616369066 +9.336,0.251855613348296,0.963292865852955,1.5863112853147,1.52024235976083,-1.51505790032216,0.0761395976911419,0.0798614397821382 +9.338,0.251829650614152,0.963373093981892,1.58628241588357,1.52035542542372,-1.51517034797798,0.0759890002827293,0.079698096468865 +9.34,0.251800611966693,0.963454422663856,1.58625131797064,1.5204798101581,-1.51530336588748,0.0758085074175106,0.079506028635606 +9.342,0.251769915598311,0.963537459077292,1.58622194334121,1.52060787079583,-1.51543804005331,0.0756240292868959,0.0793104264627702 +9.344,0.251738288315468,0.96362181798967,1.58619384865124,1.52073764741732,-1.51557239997377,0.0754400330390471,0.0791146705535381 +9.346,0.251706257833532,0.963707063233623,1.58616620661206,1.52086829217969,-1.5157062917264,0.0752570555892425,0.0789192491177134 +9.348,0.251678996995128,0.963788073837766,1.58613893836715,1.52098383528846,-1.51582044327286,0.0751036566540891,0.0787527890656547 +9.35,0.251648837039559,0.963870428552064,1.58610895301348,1.52111066771284,-1.51595484489612,0.0749210579252394,0.0785580678207252 +9.352,0.251622105054755,0.963949831807756,1.5860806253353,1.52122552956102,-1.5160713204111,0.0747636619407012,0.0783887874588457 +9.354,0.251591679237685,0.964031642098886,1.58605077362651,1.52135306833156,-1.51620786192302,0.0745772291968561,0.0781910582138838 +9.356,0.251559480525355,0.964116023314756,1.58602264277343,1.5214847984036,-1.5163454435855,0.0743880847381368,0.0779905045285147 +9.358,0.251526564616317,0.964202257873879,1.58599530253359,1.52161826147244,-1.5164821960617,0.0742005045486739,0.0777905566514406 +9.36,0.251498385196271,0.964284900791158,1.58596829082475,1.52173692657511,-1.51659873351671,0.0740434488979398,0.0776201873352958 +9.362,0.2514675263721,0.964369276301508,1.58593816599297,1.52186676254917,-1.51673510533958,0.073858034850268,0.077422238092038 +9.364,0.251435615462982,0.964455705432658,1.58590864274857,1.52199976534877,-1.51687255747205,0.0736697919118824,0.0772218441023164 +9.366,0.251403434712466,0.964543633322673,1.58587929882718,1.5221337844595,-1.51700924785117,0.0734828950179096,0.0770223114805852 +9.368,0.251371449280715,0.964632525308199,1.5858495024838,1.52226792289871,-1.51714511126211,0.0732976554676186,0.0768240300673494 +9.37,0.251339916564328,0.964721980771963,1.58581889279506,1.52240168101722,-1.51728028505393,0.0731137950067554,0.0766269811548816 +9.372,0.25131364204089,0.964806930568647,1.58578800858748,1.52251944905633,-1.51739557194551,0.0729596611766531,0.0764595500531627 +9.374,0.251284817785525,0.964892976668975,1.58575408920174,1.52264765432563,-1.51753096938856,0.0727764670266938,0.0762644448266062 +9.376,0.251254747132642,0.964980614981394,1.58572134422337,1.52277869228342,-1.51766765906965,0.0725898807235629,0.0760666714473498 +9.378,0.251224026146557,0.965069370804926,1.58568959004152,1.52291065964043,-1.51780374261725,0.0724042137505168,0.075869458081179 +9.38,0.251193043631599,0.965158730381677,1.58565824772655,1.52304279613121,-1.51793911056845,0.0722198869611028,0.0756731544887783 +9.382,0.251162061509555,0.965248287456515,1.58562688951689,1.52317466159972,-1.51807386825901,0.0720367024665182,0.075477734528743 +9.384,0.251135903016285,0.965332963607894,1.58559596239015,1.5232907121734,-1.51818880009608,0.0718830536623234,0.0753115772043908 +9.386,0.251106913385093,0.9654183653758,1.58556248047496,1.52341726619802,-1.5183238819593,0.0717002196410015,0.0751174688618019 +9.388,0.251076485881295,0.965505025140329,1.58553052174825,1.52354671636735,-1.51846029113118,0.071513879635314,0.0749204382138151 +9.39,0.25104531022341,0.965592523035089,1.58549977833179,1.52367714588478,-1.51859612592027,0.0713283604094835,0.0747237531641356 +9.392,0.251013859764803,0.96568041607885,1.58546956804449,1.52380778653398,-1.51873127338449,0.0711440983674277,0.074527803376633 +9.394,0.250982466278106,0.965768378253734,1.58543938224767,1.52393819966034,-1.51886583572867,0.0709609104077121,0.0743325990668776 +9.396,0.250955965520914,0.965851411098759,1.58540964597939,1.52405290721492,-1.51898059779507,0.0708071938800272,0.0741665278613497 +9.398,0.25092680260933,0.965935195800914,1.58537725768084,1.52417815218329,-1.51911552473591,0.0706242692602527,0.0739724484380676 +9.4,0.250896380299266,0.966020339658031,1.5853462807559,1.52430637016387,-1.51925179562235,0.0704378145860085,0.0737753947212632 +9.402,0.250865389401468,0.966106481212051,1.58531639030213,1.52443567476259,-1.51938750866048,0.0702521664735094,0.0735786512800636 +9.404,0.250834294355056,0.966193219972353,1.58528689062614,1.52456532296026,-1.51952254918527,0.0700677743165399,0.0733826237939467 +9.406,0.250803409938482,0.966280256873686,1.58525726343647,1.52469489548861,-1.51965701749845,0.0698844673526527,0.073187336714784 +9.408,0.250772918879438,0.966367402638382,1.58522722107414,1.52482415063237,-1.51979102178025,0.0697020121167225,0.0729927643473532 +9.41,0.250742900201768,0.966454555472081,1.5851966591494,1.5249529663751,-1.51992465564471,0.0695202137111081,0.072798860803226 +9.412,0.250713353012874,0.966541672324256,1.58516560277564,1.52508131099241,-1.5200579904198,0.0693389174899292,0.0726055680400989 +9.414,0.250684228293763,0.966628742307656,1.58513414600637,1.52520920430223,-1.52019108389675,0.0691580119903459,0.0724128138658328 +9.416,0.250655447717486,0.966715766884707,1.58510241399862,1.52533669963033,-1.52032397748111,0.0689774116128909,0.0722205231648653 +9.418,0.2506269258387,0.966802747138278,1.5850705279674,1.52546385784458,-1.52045670543211,0.0687970571943129,0.0720286184270923 +9.42,0.250603127862406,0.966884876543358,1.58503937840875,1.52557562783863,-1.52056997370453,0.0686455219656499,0.0718654088683884 +9.422,0.250576450728088,0.966967919037268,1.58500590218268,1.52569824278299,-1.52070365759902,0.0684643495676589,0.0716738360527193 +9.424,0.250548190908369,0.967052510189497,1.584974229775,1.52582425008011,-1.52083888792826,0.0682793179966964,0.0714789123267333 +9.426,0.250519009941568,0.967138267650049,1.58494398973457,1.52595177343848,-1.52097372440609,0.0680948494138586,0.0712839500748753 +9.428,0.250489389117784,0.967224751126013,1.58491439044273,1.52608002662277,-1.52110802166355,0.0679114573487447,0.0710893998621093 +9.43,0.250459685982018,0.967311621465292,1.58488480615005,1.52620852013557,-1.52124185695961,0.0677290146811131,0.0708953378613548 +9.432,0.25043013724655,0.967398659140195,1.58485485281707,1.52633693287198,-1.52137532134667,0.0675473158601965,0.070701790260311 +9.434,0.250400876927274,0.967485745498694,1.58482435201935,1.52646506625645,-1.52150849530294,0.0673661830969607,0.0705087586822621 +9.436,0.25037195395653,0.967572833100956,1.58479328002632,1.52659282184494,-1.52164143968257,0.0671854722377384,0.070316225462164 +9.438,0.250343360773761,0.967659915736297,1.58476170500862,1.52672016600366,-1.52177420345126,0.0670050786260005,0.0701241506750686 +9.44,0.250315051170221,0.967747004344876,1.58472974432036,1.52684711264504,-1.52190682026879,0.0668249217642256,0.0699324835930091 +9.442,0.250291437019302,0.967829304218505,1.5846983825638,1.52695868572659,-1.52202000362338,0.0666735468045995,0.06976950267674 +9.444,0.25026503624145,0.967912587896606,1.58466446702752,1.52708094235733,-1.52215361282386,0.0664925402738808,0.0695782350502743 +9.446,0.25023712183245,0.967997511068255,1.58463220378364,1.52720647294332,-1.52228878440158,0.0663076510949957,0.0693836580763364 +9.448,0.250208333167453,0.968083696075718,1.58460127702078,1.52733343152086,-1.52242357654604,0.0661232912173931,0.0691890758110902 +9.45,0.250179135828194,0.96817069609765,1.58457093176342,1.5274610500276,-1.52255784537024,0.0659399826872302,0.0689949272780181 +9.452,0.250149868626461,0.968258157271207,1.5845405749086,1.52758886328222,-1.52269166156183,0.0657575983148904,0.0688012848764658 +9.454,0.25012519146928,0.968341031100774,1.58451073823792,1.52770160777906,-1.52280580542565,0.0656045308272544,0.0686364827033647 +9.456,0.250097875908159,0.968424942004341,1.58447792172413,1.52782501977172,-1.52294018589952,0.0654222585458522,0.0684436494339018 +9.458,0.250069292171817,0.96851048949083,1.58444624095535,1.52795157322673,-1.52307598963174,0.0652364070812588,0.0682477774590289 +9.46,0.250040116320069,0.968597289163397,1.58441539661578,1.5280793635966,-1.52321131110712,0.0650513025453076,0.0680521750064121 +9.462,0.250010805338848,0.968684912396487,1.58438471627842,1.52820761053909,-1.52334603081516,0.0648674078813982,0.0678572662084428 +9.464,0.249981661121064,0.968773028733184,1.58435371770503,1.52833586551614,-1.52348023564945,0.0646845556356542,0.0676630945667222 +9.466,0.249952857884574,0.968861414297284,1.58432214791611,1.52846385230994,-1.52361402723687,0.064502522030793,0.0674696419097396 +9.468,0.249924463540499,0.968949930615544,1.58428994308258,1.52859142327892,-1.52374748831949,0.0643211117296542,0.0672768697506289 +9.47,0.249896472880349,0.969038496766171,1.58425716225976,1.52871851630884,-1.52388068657891,0.0641401763583197,0.0670847181945163 +9.472,0.249868830778986,0.969127064447846,1.58422393663758,1.52884513157664,-1.5240136709145,0.0639596002853333,0.0668931160946474 +9.474,0.249841459923328,0.969215599144271,1.58419042005615,1.52897129944418,-1.52414648068763,0.0637793013508167,0.0667019821484498 +9.476,0.249818637669944,0.969299256162069,1.58415773032382,1.52908221048497,-1.52425983954087,0.063627787183467,0.0665395096475069 +9.478,0.249793049432218,0.96938376098908,1.5841225303311,1.52920366455133,-1.52439358740954,0.0634467140436281,0.0663488334617809 +9.48,0.249765936000956,0.969469758134367,1.58408908317541,1.52932831163271,-1.52452887367897,0.0632617808729008,0.0661548681492293 +9.482,0.249737929699993,0.969556858298926,1.58405708952545,1.52945432005853,-1.52466376711635,0.0630773863085544,0.0659608965094601 +9.484,0.249709492098067,0.969644608880158,1.58402580481066,1.52958093574992,-1.52479812232407,0.0628940412510394,0.0657673503683441 +9.486,0.249680968462222,0.96973265656687,1.58399463236067,1.52970769570603,-1.52493201429938,0.0627116213107477,0.0655742915954358 +9.488,0.249652590123476,0.969820768403249,1.58396320291843,1.52983430068013,-1.52506553191404,0.062529924723466,0.0653817355771543 +9.49,0.249628806905996,0.969903999432233,1.58393235516309,1.5299457775251,-1.52517945270959,0.0623773352042225,0.0652179244565498 +9.492,0.249602510411028,0.969988051649293,1.58389851654484,1.53006768397246,-1.52531364704351,0.0621954481700807,0.0650260964993389 +9.494,0.249574994384174,0.970073606136239,1.58386593569593,1.53019262887443,-1.52544929895492,0.0620098773515835,0.0648311727138525 +9.496,0.249546894862637,0.970160327739761,1.58383436441955,1.53031877965979,-1.525584497828,0.0618249652254838,0.0646364401196223 +9.498,0.249518648900102,0.970247817344569,1.58380313634494,1.53044540039061,-1.52571911627792,0.0616411971090982,0.0644423153883796 +9.5,0.249494836396449,0.970330944507478,1.58377279069938,1.53055731944814,-1.52583393709289,0.0614869761361922,0.0642770714451062 +9.502,0.24946852087157,0.97041525000723,1.58373943897497,1.53067984483905,-1.5259688584903,0.0613038479086295,0.0640839964913111 +9.504,0.249441063430278,0.970501298708685,1.58370717802512,1.53080548083359,-1.52610510109499,0.0611173347411438,0.0638880101419459 +9.506,0.249413136367648,0.970588672401725,1.5836756782245,1.53093231603974,-1.52624078780817,0.0609317131339466,0.0636924020753436 +9.508,0.249385177951961,0.970676916682601,1.58364426061705,1.53105957499194,-1.52637581086093,0.0607474093696012,0.0634975909840677 +9.51,0.249357469512729,0.970765682201826,1.58361244497886,1.53118680995996,-1.52651027158418,0.0605642398739481,0.0633036084179872 +9.512,0.249330157694674,0.970854731591163,1.58357999450997,1.53131375415743,-1.52664427737034,0.0603819613910193,0.0631104287629069 +9.514,0.249303286913149,0.970943916133705,1.58354686074929,1.53144026219985,-1.52677792040343,0.0602003702135681,0.0629180005399042 +9.516,0.249276826225516,0.971033146846307,1.58351312400659,1.53156627967989,-1.52691127050723,0.0600193031306452,0.0627262560923659 +9.518,0.249250702918749,0.971122368460283,1.58347892920375,1.53169180428048,-1.52704438403161,0.0598386401716876,0.0625351111991407 +9.52,0.249224822267637,0.971211540645952,1.58344444592075,1.53181686821297,-1.52717730115333,0.0596582872587031,0.0623444775644568 +9.522,0.249199089765702,0.971300626510916,1.58340983257927,1.53194151311257,-1.52731005505142,0.0594781770082847,0.0621542643622409 +9.524,0.249173419145122,0.971389588021618,1.5833752240689,1.53206578520623,-1.52744266894418,0.0592982541376502,0.0619643888864352 +9.526,0.249147743590319,0.971478385885816,1.58334071938506,1.53218972170654,-1.52757516407579,0.0591184792466646,0.0617747749279127 +9.528,0.24912201430874,0.971566982494688,1.58330638683898,1.5323133555361,-1.52770755530361,0.0589388168122524,0.0615853599678931 +9.53,0.249096204483345,0.97165534553187,1.58327226303198,1.53243670862026,-1.52783985789496,0.0587592414311009,0.0613960903334085 +9.532,0.249070303010983,0.971743451610886,1.5832383638381,1.5325598006685,-1.52797208238108,0.058579728074448,0.0612069257391974 +9.534,0.249044315509184,0.971831288561019,1.58320468531488,1.53268264453325,-1.5281042407177,0.0584002598090243,0.0610178328302617 +9.536,0.249018256571367,0.971918856669547,1.58317121418166,1.53280525558866,-1.52823634070474,0.0582208189648941,0.0608287889364464 +9.538,0.248996307625906,0.972001342911679,1.5831390935675,1.53291307274896,-1.52834910224465,0.058069910227546,0.0606679343452982 +9.54,0.248971582466188,0.972084512154998,1.58310447809676,1.53303138795997,-1.52848231199411,0.0578893673993855,0.0604786930392736 +9.542,0.248945363631324,0.972169108695113,1.58307159917345,1.53315293320154,-1.52861712688275,0.0577048406606965,0.0602859505544634 +9.544,0.248918331555052,0.972254829547512,1.58304010142438,1.53327590614459,-1.5287516141438,0.0575207290183511,0.0600930311535535 +9.546,0.24889512078479,0.972336473155953,1.583010379238,1.53338502905121,-1.52886633760873,0.0573660795710259,0.0599285494679092 +9.548,0.248869224514478,0.972419492728475,1.58297794001173,1.53350507887205,-1.52900113636064,0.0571826498353519,0.0597360697358369 +9.55,0.248846250342833,0.972499596754575,1.58294786554771,1.53361398132716,-1.52911795895624,0.0570244139823772,0.0595686573238537 +9.552,0.248820124660523,0.972582092103276,1.582915762748,1.53373494282111,-1.52925471323602,0.056837487596995,0.0593731359486798 +9.554,0.24879260822177,0.972667249158921,1.58288511134293,1.53385986556399,-1.52939245506118,0.0566479297088295,0.0591748518559973 +9.556,0.248764672520896,0.972754399726321,1.58285505468121,1.53398645742162,-1.52952935118528,0.056459946374507,0.0589772062246179 +9.558,0.248736953952764,0.97284291503782,1.58282457602715,1.53411367986177,-1.52966535848754,0.0562738335612119,0.0587806733231575 +9.56,0.248709831281429,0.97293233790115,1.58279304315314,1.53424092804713,-1.52980062666526,0.0560892812458384,0.0585853228189771 +9.562,0.248683476728675,0.973022368495948,1.58276019732775,1.53436784443745,-1.52993530637401,0.0559059543233761,0.0583911376790549 +9.564,0.248657902297533,0.973112820049279,1.58272606112007,1.53449424995212,-1.53006951728122,0.0557235727110968,0.058198058094977 +9.566,0.248633015676843,0.973203572446265,1.58269082759906,1.53462007926077,-1.53020335430753,0.0555419239774398,0.0580059858757864 +9.568,0.248608662184282,0.973294535320182,1.58265477613338,1.5347453408745,-1.53033688642102,0.0553608435641251,0.0578148011016786 +9.57,0.248584666393285,0.973385623667993,1.58261820108111,1.53487007376601,-1.53047016795423,0.0551802108745097,0.0576243692773717 +9.572,0.248560855228681,0.973476746266142,1.58258137467098,1.5349943295442,-1.53060323748917,0.0549999296433075,0.0574345579841918 +9.574,0.248537079950822,0.973567803634389,1.5825445195689,1.5351181504309,-1.53073612756304,0.0548199278734448,0.0572452401529659 +9.576,0.248513221620672,0.973658692738317,1.58250780672868,1.53524156958895,-1.53086886161023,0.0546401429268639,0.0570563048037148 +9.578,0.24848919866812,0.97374931447117,1.58247135250944,1.53536460305197,-1.53100146171718,0.0544605259402087,0.0568676543475395 +9.58,0.248464961724742,0.973839581874883,1.58243523116744,1.53548725940526,-1.53113394404526,0.0542810308115992,0.0566792102157543 +9.582,0.248440493951578,0.973929426674357,1.58239947890239,1.53560953719446,-1.53126632535421,0.0541016214827677,0.0564909065808242 +9.584,0.24841580157526,0.974018803786951,1.58236410781434,1.53573143684785,-1.53139861764101,0.0539222629624098,0.0563026937936309 +9.586,0.248390912123684,0.974107692919973,1.58232910827514,1.53585295809961,-1.53153083413564,0.0537429297604761,0.0561145311669354 +9.588,0.248365864526414,0.974196098097796,1.58229445971832,1.53597411036684,-1.53166298372105,0.0535635975454802,0.0559263902560043 +9.59,0.248340707944678,0.974284045001716,1.58226012967187,1.53609490789902,-1.53179507679641,0.0533842516541325,0.0557382480446652 +9.592,0.248315493119315,0.974371577357003,1.5822260816548,1.53621537757188,-1.53192711970363,0.0532048786180811,0.0555500907871681 +9.594,0.248290272735697,0.974458752344962,1.58219227212619,1.53633555161491,-1.53205912057727,0.0530254743041124,0.0553619078146725 +9.596,0.248265094420143,0.974545636173215,1.58215865704964,1.53645547329388,-1.53219108381109,0.0528460350953908,0.0551736958409354 +9.598,0.248240002690009,0.974632299565578,1.58212518817434,1.53657518804362,-1.5323230158866,0.0526665656378442,0.0549854531269148 +9.6,0.248215033416996,0.974718814052919,1.58209181933306,1.53669474805977,-1.53245491983875,0.0524870697477427,0.0547971839598056 +9.602,0.248190217062655,0.974805248580006,1.58205850268901,1.5368142028767,-1.53258680103327,0.0523075579310769,0.0546088929119987 +9.604,0.248165574245538,0.974891667106873,1.58202519502835,1.53693360385337,-1.53271866159938,0.0521280382001987,0.0544205893193898 +9.606,0.248141119887841,0.974978126563559,1.58199185394313,1.53705299504113,-1.53285050614886,0.051948523575004,0.0542322815371845 +9.608,0.248116859516525,0.975064675734646,1.58195844392665,1.53717241825545,-1.53298233616851,0.051769022984484,0.0540439814119201 +9.61,0.248092793978559,0.975151354370837,1.58192493222555,1.53729190473768,-1.53311415569629,0.0515895489190069,0.0538556985729352 +9.612,0.248068916162974,0.97523819307741,1.58189129448631,1.5374114811467,-1.53324596568457,0.0514101085373741,0.0536674449818761 +9.614,0.248045216008194,0.975325213271011,1.58185751008138,1.53753116217801,-1.53337776965686,0.0512307115692526,0.0534792293438404 +9.616,0.248021677403241,0.975412427762019,1.58182356720066,1.53765095749812,-1.53350956805698,0.0510513616783481,0.0532910618210065 +9.618,0.247998283279642,0.975499841267469,1.58178945763397,1.53777086522119,-1.53364136390565,0.0508720646417007,0.0531029486239917 +9.62,0.247975012517345,0.975587451425292,1.5817551813712,1.53789087959424,-1.53377315714692,0.0506928199584346,0.0529148969309772 +9.622,0.247951844974749,0.975675249628834,1.58172074096827,1.53801098507377,-1.53390495031492,0.0505136292747573,0.0527269096709789 +9.624,0.24792875828106,0.97576322226187,1.58168614582426,1.53813116446314,-1.53403674288303,0.0503344881848698,0.052538990637818 +9.626,0.247905732707426,0.975851351663297,1.58165140632351,1.53825139327646,-1.53416853694256,0.0501553948340223,0.0523511394347922 +9.628,0.247882747771721,0.975939617407699,1.58161653798486,1.53837164801599,-1.53430033155597,0.0499763418369966,0.0521633567365656 +9.63,0.247859786892918,0.976027997239825,1.58158155556903,1.53849190053464,-1.53443212844392,0.0497973249771815,0.0519756393419471 +9.632,0.247836833769309,0.97611646825531,1.58154647726768,1.53861212619286,-1.53456392634186,0.0496183351660435,0.0517879855218441 +9.634,0.247813876790326,0.976205007675943,1.58151131892234,1.53873229800336,-1.53469572668967,0.0494393671600592,0.051600390122862 +9.636,0.24779090517851,0.976293593820384,1.58147609836877,1.53885239449197,-1.53482752799075,0.0492604114965939,0.051412849941565 +9.638,0.247767913160946,0.976382206630985,1.58144082985739,1.53897239349896,-1.53495933149825,0.0490814631666584,0.0512253588300458 +9.64,0.247744895890973,0.976470828368462,1.58140552861251,1.53909227966022,-1.53509113557632,0.0489025134823119,0.0510379130488735 +9.642,0.247721853406031,0.976559443848228,1.58137020549057,1.53921203782631,-1.53522294137811,0.0487235586652463,0.0508505063400074 +9.644,0.247698786367018,0.976648040841481,1.58133487176545,1.5393316601606,-1.53535474720923,0.0485445916226253,0.0506631352269029 +9.646,0.247675699849414,0.976736610026662,1.58129953401732,1.53945113920663,-1.53548655419444,0.0483656104341367,0.0504757940353665 +9.648,0.247652598954491,0.97682514512412,1.58126419911908,1.53957047465898,-1.53561836064356,0.0481866100329192,0.0502884801253151 +9.65,0.24762949249379,0.976913642608182,1.58122886931778,1.53968966615567,-1.53575016770539,0.0480075905932711,0.0501011888536511 +9.652,0.247606388534957,0.977002101636041,1.58119354737407,1.53980871981317,-1.53588197373651,0.0478285491285625,0.0499139187358567 +9.654,0.247583298044215,0.977090523592032,1.58115823178041,1.53992764084368,-1.53601377994238,0.0476494877961994,0.0497266663554066 +9.656,0.247560230429317,0.977178911889447,1.58112292199451,1.54004643995903,-1.53614558474938,0.0474704054341799,0.0495394314636452 +9.658,0.247537197200176,0.977267271428685,1.58108761373279,1.540165125916,-1.5362773894342,0.0472913058084989,0.0493522118472244 +9.66,0.247514207562799,0.977355608353007,1.58105230423843,1.5402837118895,-1.53640919249929,0.0471121891143539,0.0491650083811914 +9.662,0.247491272146176,0.977443929497544,1.58101698759271,1.54040220803722,-1.53654099529247,0.0469330601942203,0.0489778198695052 +9.664,0.247468398686173,0.977532242169233,1.58098165996663,1.54052062792525,-1.53667279638592,0.0467539200294088,0.0487906480690912 +9.666,0.24744559584973,0.977620553648032,1.58094631490388,1.54063898118173,-1.53680459718815,0.0465747739554475,0.0486034925190514 +9.668,0.247422869029631,0.977708871041906,1.58091094851869,1.54075728003321,-1.53693639632659,0.0463956231658698,0.0484163555531024 +9.67,0.247400224278373,0.977797200879839,1.58087555471972,1.54087553209055,-1.53706819525417,0.0462164729465719,0.0482292371312938 +9.672,0.247377664216635,0.977885549069761,1.58084013033284,1.54099374702691,-1.53719999263537,0.0460373242076578,0.048042139855501 +9.674,0.247355192071898,0.977973920599912,1.58080467025172,1.54111192951216,-1.53733178994938,0.0458581817514856,0.047855063814082 +9.676,0.247332807688084,0.97806231960544,1.5807691724799,1.54123008603735,-1.53746358587956,0.0456790458413969,0.0476680116108635 +9.678,0.247310511650447,0.978150749174245,1.58073363320881,1.54134821799039,-1.53759538191456,0.0454999205105669,0.0474809832290346 +9.68,0.247288301372981,0.978239211509965,1.58069805178647,1.54146632861029,-1.53772717674112,0.0453208051696302,0.0472939810792669 +9.682,0.247266175282581,0.978327707823242,1.58066242573501,1.541584416179,-1.53785897184398,0.0451417029563754,0.0471070048850358 +9.684,0.247244128955166,0.978416238566761,1.58062675566239,1.54170248107383,-1.53799076590194,0.0449626123785286,0.0469200567509774 +9.686,0.247222159328877,0.9785048033841,1.58059104023856,1.54182051903931,-1.53812256038688,0.0447835356986465,0.0467331360683455 +9.688,0.247200260859225,0.978593401386976,1.58055528107089,1.54193852829871,-1.53825435396305,0.0446044706042115,0.0465462446010438 +9.69,0.24717842973256,0.978682031131357,1.58051947766061,1.54205650286609,-1.53838614808498,0.0444254186182926,0.0463593814074625 +9.692,0.247156660014017,0.978770690907422,1.58048363226284,1.54217443967699,-1.5385179414,0.0442463767868838,0.0461725479391899 +9.694,0.247134947837503,0.978859378715418,1.58044774484365,1.54229233190338,-1.53864973534454,0.0440673461041726,0.0459857429741725 +9.696,0.247113287526498,0.978948092543702,1.58041181794235,1.5424101760687,-1.53878152855002,0.043888323206655,0.0457989677220029 +9.698,0.247091675743949,0.979036830323277,1.58037585164514,1.5425279653355,-1.53891332243666,0.0437093088020162,0.0456122207631598 +9.7,0.247070107573623,0.979125590176878,1.58033984846235,1.54264569657882,-1.53904511562303,0.043530299360678,0.0454255031548559 +9.702,0.247048580621207,0.979214370339404,1.58030380832884,1.54276336362637,-1.53917690951651,0.0433512955389575,0.0452388133718165 +9.704,0.247027091051614,0.97930316936958,1.5802677335026,1.54288096427481,-1.53930870272671,0.0431722938608897,0.0450521524076805 +9.706,0.247005637640024,0.979391986031925,1.58023162359613,1.54299849347308,-1.53944049665193,0.0429932951289561,0.0448655187140519 +9.708,0.246984217767301,0.979480819470486,1.58019548049724,1.54311595027694,-1.53957228989658,0.0428142960917616,0.0446789132940091 +9.71,0.246966436754574,0.979564809870235,1.58016100605682,1.54321952972366,-1.53968483343138,0.0426636562102157,0.044520185491908 +9.712,0.246946251235437,0.979649650047482,1.58012342556455,1.54333320457998,-1.53981781033671,0.0424836092601184,0.0443333698450855 +9.714,0.246924773729492,0.979736137137226,1.58008725626306,1.54344998257247,-1.53995241453075,0.0422995933281126,0.0441431206635156 +9.716,0.246902590218096,0.97982396264226,1.58005227150241,1.54356814445826,-1.54008673499479,0.0421159530771714,0.0439527270752677 +9.718,0.246880130768876,0.979912722032748,1.58001775730151,1.54368698932181,-1.54022062019118,0.0419332283073746,0.0437626476186712 +9.72,0.246857704630828,0.980002085572839,1.57998314164087,1.54380609757799,-1.54035412452725,0.0417513251411235,0.0435729770227688 +9.722,0.246835511928342,0.980091823128942,1.57994806818471,1.54392519304248,-1.54048732309434,0.0415700781837737,0.043383754509219 +9.724,0.246813654397304,0.980181792239718,1.57991237670412,1.54404411165025,-1.54062027863936,0.0413893360791188,0.0431949986589624 +9.726,0.246792160723024,0.980271914091354,1.57987604847711,1.54416276710004,-1.54075304383703,0.0412089828298675,0.0430067022728979 +9.728,0.246771005102943,0.980362148558032,1.5798391595281,1.54428113300999,-1.54088565645379,0.0410289264880743,0.0428188397761754 +9.73,0.246753674864486,0.980447610013058,1.57980359427624,1.54438550162189,-1.54099890098854,0.0408774421115981,0.0426591835807362 +9.732,0.246734155282564,0.980533966662156,1.57976460519646,1.54449972144402,-1.54113247192315,0.0406967603451571,0.042471783883168 +9.734,0.24671347109501,0.980622001107463,1.57972686575389,1.54461686344009,-1.54126758381414,0.0405122577832464,0.042281213396045 +9.736,0.246692135725541,0.980711376856282,1.57969026709012,1.54473524638079,-1.54140234116632,0.0403282442443159,0.0420907038906466 +9.738,0.246670520572119,0.980801652892337,1.57965418295477,1.54485419552258,-1.54153660254082,0.0401452367525054,0.0419006642400241 +9.74,0.246652404683117,0.980887594073438,1.57961989373752,1.54495963658131,-1.5416511871183,0.0399914561375208,0.0417389448765294 +9.742,0.246632062848487,0.980974615307839,1.57958214549729,1.54507505427005,-1.54178584297821,0.0398090226888789,0.0415496861340281 +9.744,0.246610670672243,0.981063350532342,1.57954535812779,1.54519334506797,-1.54192183960022,0.0396231735947292,0.0413574923384788 +9.746,0.246588828753835,0.981153390741586,1.57950930855371,1.54531271764522,-1.54205732931375,0.0394381171034283,0.0411656163697567 +9.748,0.246566935588131,0.981244275727016,1.57947336845614,1.54543245529559,-1.54219220089035,0.0392542862812561,0.0409744746100685 +9.75,0.246545250286476,0.981335645578336,1.57943708279455,1.5455521457764,-1.54232654468291,0.0390715177530031,0.0407841025742716 +9.752,0.246523910652235,0.981427251911005,1.57940022387678,1.5456715434501,-1.54246045793736,0.0388895870693395,0.0405944801251421 +9.754,0.246502962119905,0.98151893719188,1.57936274266998,1.54579051420828,-1.54259402499276,0.0387083051752668,0.0404055618131193 +9.756,0.246482381615381,0.981610607334102,1.57932471367686,1.54590900834918,-1.54272731033165,0.0385275194579594,0.0402172858670363 +9.758,0.246462108114392,0.981702206190633,1.57928627428874,1.54602702457351,-1.54286036674948,0.0383471172815545,0.0400295735529939 +9.76,0.246442060301897,0.981793696504426,1.57924758649247,1.54614459438307,-1.54299323237588,0.0381670095612417,0.0398423412503777 +9.762,0.246422156919197,0.981885047634066,1.5792088021662,1.54626175847111,-1.54312593913271,0.0379871323647106,0.0396555020561862 +9.764,0.246405761755222,0.981971360445087,1.57917191554971,1.546364998873,-1.54323927162158,0.0378357427423141,0.0394967329240474 +9.766,0.246387039878363,0.982058283591311,1.57913195547781,1.5464779259079,-1.5433729054582,0.037655160557147,0.0393101769730267 +9.768,0.246367019807229,0.982146612292726,1.57909358154811,1.5465936739579,-1.54350806102717,0.0374707239436545,0.0391203553452557 +9.77,0.246346246472216,0.982236024723353,1.57905662866362,1.54671057829164,-1.54364285151988,0.0372867380605618,0.0389304930966917 +9.772,0.246325124414429,0.982326104388768,1.57902041357524,1.54682798215514,-1.54377713393937,0.0371037158325833,0.038741008657041 +9.774,0.246303958019092,0.98241651534948,1.578984364139,1.54694549194035,-1.54391097483827,0.0369215548175216,0.0385519615866256 +9.776,0.246282951128884,0.982507030131829,1.57894811150087,1.54706285784283,-1.54404445441216,0.0367400758777663,0.0383633702747209 +9.778,0.246262221579068,0.982597518587849,1.57891146755041,1.5471799322504,-1.54417764487586,0.0365591237141466,0.0381752353090449 +9.78,0.246241815030912,0.982687923875131,1.57887438493383,1.54729665118009,-1.54431060207172,0.0363785716708222,0.0379875425862037 +9.782,0.246221729191056,0.982778235872904,1.57883690321033,1.54741300303913,-1.54444337235378,0.0361983279426224,0.0378002586463869 +9.784,0.246201928275241,0.982868468406176,1.57879911142782,1.54752901469657,-1.54457598881734,0.0360183210717175,0.037613340268824 +9.786,0.246182362386426,0.982958642199844,1.5787611109624,1.5476447275989,-1.54470847915067,0.0358385025920757,0.037426735062376 +9.788,0.246162975217976,0.983048774676111,1.57872299900107,1.54776019206936,-1.54484086228262,0.0356588336952971,0.0372403918772777 +9.79,0.246143715955927,0.983138875115112,1.57868485199381,1.54787545213334,-1.54497315566442,0.0354792895549701,0.0370542600005587 +9.792,0.246124539812323,0.983228944276666,1.57864672649436,1.54799054803536,-1.54510537092881,0.0352998475876495,0.0368682970916787 +9.794,0.246105413966124,0.98331897622302,1.57860865517401,1.54810550766444,-1.54523752030917,0.0351204936155853,0.0366824654844067 +9.796,0.246086313810246,0.983408961561597,1.57857065526162,1.5482203535794,-1.5453696117343,0.034941212019702,0.0364967373963856 +9.798,0.246067225999045,0.98349889044932,1.57853272827799,1.54833509735421,-1.54550165470706,0.0347619932738312,0.0363110892944535 +9.8,0.246048142938344,0.983588755321089,1.57849486940429,1.54844974825826,-1.54563365498353,0.0345828250286737,0.0361255059374559 +9.802,0.246029064968264,0.983678552416667,1.57845706638407,1.54856430825461,-1.54576562019209,0.0344037002912553,0.0359399741950794 +9.804,0.246009994682699,0.983768282684766,1.57841930712759,1.5486787805571,-1.54589755441872,0.0342246089813033,0.0357544869710477 +9.806,0.245990939335196,0.983857951577987,1.57838157666472,1.54879316411877,-1.54602946376346,0.0340455463209357,0.0355690372458411 +9.808,0.245971905599804,0.983947568568604,1.57834386300489,1.54890746149112,-1.54616135090947,0.033866504460876,0.0353836223762094 +9.81,0.245952902501108,0.984037146001813,1.57830615275645,1.54902167258024,-1.54629322067556,0.0336874808478643,0.0351982385524241 +9.812,0.245933936727959,0.984126698114742,1.5782684360737,1.5491358017969,-1.54642507460989,0.0335084698151365,0.0350128854511817 +9.814,0.245915016066853,0.984216239770342,1.57823070177284,1.54924985122434,-1.54655691654223,0.0333294708727835,0.0348275609849832 +9.816,0.245896145157422,0.984305785634032,1.57819294206702,1.54936382730973,-1.54668874718007,0.0331504802288329,0.0346422661522928 +9.818,0.245877329283742,0.984395349238146,1.57815514767255,1.54947773371902,-1.54682056964418,0.0329714990166599,0.0344569999134785 +9.82,0.245858570421965,0.984484942571264,1.57811731261773,1.54959157783313,-1.54695238405647,0.032792524782493,0.0342717640961717 +9.822,0.245839871246829,0.984574575568089,1.57807942945799,1.54970536352556,-1.54708419305135,0.0326135596920122,0.0340865582969459 +9.824,0.245824483395685,0.984659374947319,1.5780435392133,1.54980579998524,-1.54719677017017,0.0324628546681883,0.0339290396253025 +9.826,0.245806921890554,0.984745008565495,1.57800424969295,1.54991601521132,-1.54732974427608,0.0322829098059118,0.0337436219511153 +9.828,0.245788207007654,0.984832331693154,1.57796624079387,1.55002921671357,-1.54746433172962,0.032099019319155,0.0335548104104405 +9.83,0.245768882375855,0.984921057929562,1.57792934417613,1.5501437521957,-1.5475986418807,0.0319154943053147,0.033365869279843 +9.832,0.24574934172412,0.985010789569477,1.57789288240932,1.55025896678123,-1.54773252141918,0.0317328688743532,0.0331772533847146 +9.834,0.245729869691728,0.985101193715943,1.57785629941281,1.55037446470257,-1.54786602571524,0.0315510618791548,0.03298905099216 +9.836,0.245710644546121,0.985192031129987,1.57781924965673,1.5504899895646,-1.54799922485424,0.0313699120509871,0.032801301922186 +9.838,0.245694963548456,0.985278263005651,1.57778366103064,1.55059214788092,-1.54811295764918,0.0312175154328026,0.0326416548281226 +9.84,0.24567742705748,0.985365455862654,1.57774405442897,1.55070387731783,-1.54824689521073,0.0310362887660708,0.0324545624319676 +9.842,0.2456590158998,0.985454415445354,1.57770520548843,1.55081837223931,-1.54838229507397,0.0308514211702376,0.0322644840930044 +9.844,0.245640208729403,0.985544822958012,1.57766707961941,1.55093398917712,-1.54851729492762,0.0306671479556984,0.0320746405986394 +9.846,0.24562132903237,0.985636253556008,1.57762913736497,1.55105008649262,-1.54865176673812,0.0304839578136281,0.0318854301041394 +9.848,0.245605766503478,0.985723459553317,1.57759307213629,1.55115310140443,-1.54876655691855,0.0303299562176113,0.0317245027932243 +9.85,0.245591438352333,0.985806937336286,1.57755525618571,1.55125256180833,-1.54888214320462,0.0301757344137956,0.0315639457977283 +9.852,0.245574026725637,0.985893012451046,1.57751480518396,1.55136449944484,-1.54901943455821,0.0299889502674815,0.0313726946811316 +9.854,0.245555052491031,0.985982134513548,1.57747632505449,1.55148044658723,-1.54915782055545,0.0297990310018321,0.031178431546241 +9.856,0.24553538809091,0.986073535762071,1.57743910424021,1.55159808977307,-1.54929530442637,0.0296107040854816,0.0309848065281953 +9.858,0.24551878727452,0.986161538478934,1.57740420386468,1.55170324014175,-1.54941260389991,0.0294525638131539,0.0308198860088717 +9.86,0.245500316666829,0.986251178552987,1.57736530255132,1.55181814594008,-1.54954948158181,0.0292668834324408,0.0306282438160006 +9.862,0.245481177303975,0.986342892210957,1.57732674792349,1.55193568012716,-1.54968731231426,0.029078564872211,0.0304343234695849 +9.864,0.245461958812503,0.986436119205223,1.57728831145755,1.55205399902309,-1.54982433498765,0.0288916079893114,0.0302413298983862 +9.866,0.245443008593303,0.986530294360222,1.57724944097875,1.55217236252286,-1.54996050188338,0.02870632011525,0.0300496227945072 +9.868,0.245424501567568,0.986624983563847,1.57720981757808,1.55229037546482,-1.55009594296402,0.0285224380114664,0.0298591766148978 +9.87,0.245406484930444,0.98671988029389,1.57716936403975,1.55240781907472,-1.55023079026009,0.0283396690634129,0.0296698976115484 +9.872,0.245392019912101,0.986809885860146,1.57713036626321,1.55251150856073,-1.55034593376739,0.0281859716607857,0.0295092443346869 +9.874,0.245375754497016,0.986900507920558,1.5770873823289,1.55262419144185,-1.55048106603361,0.028003762153221,0.029321649726073 +9.876,0.245358554024033,0.986992519517577,1.57704539843319,1.55273917428965,-1.55061747886587,0.0278181229028971,0.0291314138225536 +9.878,0.245340828130945,0.987085563134934,1.57700450292486,1.55285487379156,-1.55075334157523,0.0276332305123462,0.0289416489725342 +9.88,0.24532285804138,0.987179179818717,1.5769642285411,1.55297069998508,-1.5508885434943,0.0274495257955598,0.0287526726245766 +9.882,0.245304843945497,0.987272983979432,1.57692417546879,1.55308631591029,-1.5510231729645,0.0272668571673484,0.0285644509283662 +9.884,0.245286910253806,0.987366693991327,1.57688410019431,1.55320151587857,-1.55115732691196,0.0270850076311186,0.0283769195453259 +9.886,0.245269121656793,0.987460126272952,1.57684389620977,1.55331618356204,-1.55129109147048,0.0269037908141176,0.0281900090089323 +9.888,0.245251495447403,0.987553177122043,1.57680356107443,1.5534302755552,-1.55142453471275,0.0267230534988676,0.0280036481533148 +9.89,0.245234022189545,0.987645801144811,1.57676315107552,1.55354379352648,-1.55155771397446,0.0265426809632434,0.0278177585931095 +9.892,0.245216675829707,0.987737991809992,1.57672275168571,1.55365677400682,-1.5516906723477,0.0263625820290439,0.027632262779983 +9.894,0.245199428389259,0.987829765798637,1.57668244709533,1.55376926783467,-1.55182344651278,0.026182691774295,0.0274470828999453 +9.896,0.245182253399333,0.98792115239964,1.57664230855401,1.55388133696097,-1.55195606348562,0.0260029582566256,0.0272621495883763 +9.898,0.245168158847922,0.988007291314484,1.57660464638791,1.55398007151528,-1.55206933382054,0.0258515257093251,0.0271049333191648 +9.9,0.245152006178346,0.988093863326778,1.57656370429055,1.55408810548908,-1.55220287286443,0.0256710421681676,0.0269200327157983 +9.902,0.245134760213229,0.988181794572023,1.57652426731395,1.55419882084554,-1.55233792469626,0.025486688810821,0.0267318162021228 +9.904,0.245116943750412,0.988270850958836,1.57648619088241,1.55431065884814,-1.55247262053815,0.0253027336661312,0.0265435050157347 +9.906,0.24510194902398,0.988355784529568,1.57645107032049,1.55441009212677,-1.55258761100075,0.0251478778081769,0.0263830450015187 +9.908,0.245084968300209,0.988441947883356,1.57641250296184,1.55451930160191,-1.55272255069028,0.0249647286143139,0.0261951849891789 +9.91,0.245067145636247,0.988530035482076,1.57637489924919,1.55463141861695,-1.55285874699009,0.0247783184927013,0.0260043547855206 +9.912,0.24504909079243,0.988619661798796,1.57633793422906,1.55474472255303,-1.55299438693921,0.0245927856640421,0.0258138191359392 +9.914,0.245031207465382,0.988710384359304,1.57630088690131,1.55485852988827,-1.5531293776895,0.024408557788765,0.0256240201143705 +9.916,0.24501374052109,0.98880185960236,1.57626324627335,1.55497246258303,-1.55326381342349,0.0242254685784956,0.0254350246742986 +9.918,0.244999770293561,0.98888895268032,1.57622707491355,1.55507341322818,-1.55337858858167,0.024071461695132,0.0252743348535895 +9.92,0.24498427306061,0.988977151112507,1.57618643669029,1.55518369456949,-1.55351337676929,0.0238890702383726,0.0250866364226466 +9.922,0.244968140578632,0.989067256378626,1.57614622714597,1.55529662064161,-1.55364947888214,0.0237033222560959,0.0248962605375617 +9.924,0.244951782033222,0.989158932170707,1.57610649020443,1.55541058979128,-1.55378506939943,0.0235183774416209,0.0247063829170448 +9.926,0.244935454206056,0.989251731873121,1.57606675962333,1.55552498688191,-1.553920041589,0.0233346844586409,0.0245173644147677 +9.928,0.244919306479412,0.989345267780904,1.57602667961725,1.55563946006835,-1.55405447791549,0.0231520911017712,0.0243292046581575 +9.93,0.244903403371425,0.989439237384835,1.57598606803912,1.55575377934845,-1.55418847409043,0.0229703873817741,0.0241418537663539 +9.932,0.244890665417345,0.989528515149999,1.57594725661907,1.5558549805855,-1.55430290353491,0.0228175320792016,0.0239827276746337 +9.934,0.244876075958217,0.989618573980518,1.5759043655726,1.5559653100214,-1.55443741293975,0.0226361253158308,0.0237965095504228 +9.936,0.244860503078271,0.989710199848519,1.57586236257315,1.55607811461188,-1.55457328720727,0.0224512018892328,0.0236074816013927 +9.938,0.2448443762643,0.98980303746048,1.57582129390907,1.55619178896786,-1.55470869199914,0.0222669379175217,0.0234187969784717 +9.94,0.244827992490816,0.989896629060364,1.57578066472197,1.5563057142875,-1.55484350737227,0.0220837878123567,0.0232308129128368 +9.942,0.244811560586776,0.989990589180994,1.57574006523375,1.55641952776009,-1.55497781166774,0.021901613921402,0.0230435280926162 +9.944,0.244795207205814,0.990084633602094,1.57569925614264,1.55653300190816,-1.55511169275309,0.0217202109665035,0.0228569029963274 +9.946,0.244778994322824,0.990178572000167,1.57565814520957,1.55664600217165,-1.55524522882617,0.0215394018983817,0.0226708861194724 +9.948,0.244762933242582,0.990272289016028,1.57561675052832,1.55675846960375,-1.55537848115785,0.0213590407128963,0.0224854185047929 +9.95,0.244747006767554,0.990365722654765,1.57557515231013,1.55687039229656,-1.55551150123105,0.0211790180695857,0.0223004294293486 +9.952,0.244731180718044,0.990458845445482,1.5755334611119,1.55698179453309,-1.55564432719204,0.0209992466477469,0.0221158454576366 +9.954,0.244715419666573,0.990551649860683,1.57549178597281,1.55709271588636,-1.55577699149609,0.0208196641108823,0.0219315902649941 +9.956,0.244699691213899,0.99064413903422,1.5754502217768,1.5572032078436,-1.55590951759595,0.0206402200661495,0.0217475940346652 +9.958,0.24468681895191,0.990731414426083,1.57541127510599,1.55730061388989,-1.55602272350417,0.0204890005520055,0.0215912280879789 +9.96,0.244671946152189,0.990819115480612,1.5753688989189,1.55740711767771,-1.55615619751277,0.020308796473605,0.0214072767767832 +9.962,0.244655992902829,0.990908172082609,1.57532797964566,1.55751619491856,-1.55629118980874,0.0201247129193139,0.0212200297147629 +9.964,0.244642293254611,0.99099343120674,1.5752908730761,1.55761363105795,-1.55640663757246,0.0199691139348291,0.0210601187750074 +9.966,0.244629227748188,0.991075245136523,1.5752532627668,1.55770827240127,-1.55652276823016,0.0198134681898654,0.0209002434686001 +9.968,0.244613181978727,0.99115985333785,1.57521333396484,1.55781530903554,-1.55666044770532,0.0196256490448616,0.0207096593536427 +9.97,0.244595748870592,0.991247701107829,1.57517550038674,1.55792641070904,-1.55679911670994,0.0194348781108211,0.0205159545330785 +9.972,0.244577881257394,0.991338013492349,1.57513883544985,1.55803928883135,-1.55693681822173,0.0192458114738865,0.0203228228703928 +9.974,0.244560232420836,0.991430012065838,1.57510210191705,1.55815292548118,-1.55707350940564,0.0190588048930421,0.0201307841237007 +9.976,0.244545998788137,0.991518195635635,1.57506694512975,1.55825409634605,-1.55719015097068,0.0189016530647219,0.0199673445449296 +9.978,0.244530608848392,0.991607788612298,1.57502676783789,1.55836445689283,-1.55732646718484,0.0187168666281594,0.0197774140069056 +9.98,0.244514996319839,0.991699465555474,1.57498638133247,1.55847728824282,-1.55746382970244,0.0185292561945397,0.0195852728235479 +9.982,0.244499566922475,0.991792816740899,1.57494583844001,1.55859095890039,-1.55760047572083,0.018342852960013,0.0193940797637452 +9.984,0.244484525170176,0.991887359418748,1.57490476803374,1.5587048667948,-1.55773633637389,0.0181580130197961,0.0192041689492801 +9.986,0.244469947460564,0.991982686817667,1.57486294469364,1.55881868599927,-1.55787152733373,0.0179745275429438,0.0190154918326408 +9.988,0.244455812639747,0.992078480527919,1.57482033009471,1.55893222573149,-1.55800616441722,0.017792137153448,0.018827946514786 +9.99,0.244442037657545,0.992174496022773,1.57477702128784,1.55904537470368,-1.5581403472312,0.0176106211105683,0.0186414125163326 +9.992,0.244428503290167,0.992270544059335,1.57473319930119,1.5591580778595,-1.55827415376271,0.0174297951520982,0.0184557620948086 +9.994,0.244415082872258,0.992366474244287,1.57468907592672,1.55927030700602,-1.55840764893205,0.0172495142672652,0.0182708602470646 +9.996,0.244401656494268,0.992462163728606,1.57464486299057,1.55938205284133,-1.55854088200799,0.0170696564708426,0.0180865760568093 +9.998,0.24438812667648,0.992557510557534,1.57460074464073,1.55949330892154,-1.55867389487385,0.0168901254156643,0.0179027832455566 +10,0.244374420804911,0.99265243134792,1.57455686986081,1.55960407416466,-1.55880671902983,0.0167108374098364,0.0177193694210651 +10.002,0.244360496805235,0.992746861270594,1.5745133437964,1.55971434503816,-1.55893938285066,0.0165317268248647,0.0175362337580511 +10.004,0.244346337757435,0.99284075548631,1.57447023414067,1.55982412383977,-1.55907190751007,0.0163527352378094,0.0173532932704848 +10.006,0.244331952073075,0.992934090261737,1.57442757128067,1.55993341415911,-1.55920431334688,0.0161738185375597,0.0171704778305946 +10.008,0.244320062376769,0.993021947013938,1.57438794018107,1.56002973951425,-1.55931742133516,0.0160230093109101,0.0170150896561603 +10.01,0.244306095206575,0.99310995961197,1.57434497791981,1.56013488861593,-1.55945079821422,0.0158432167788354,0.0168320799079135 +10.012,0.244290980568743,0.993199103375686,1.57430358834335,1.56024240681484,-1.55958569775517,0.0156594806003677,0.0166456906672208 +10.014,0.244275251060412,0.993289176591731,1.5742636534248,1.56035078657522,-1.55972026601102,0.0154760356613904,0.0164591306441207 +10.016,0.244259308577322,0.993379859604042,1.57422449200454,1.56045948304594,-1.55985436123323,0.0152934074458688,0.0162728299058723 +10.018,0.244243454409676,0.993470895080139,1.57418551522852,1.56056819985455,-1.55998804264743,0.0151115249824616,0.0160868646961181 +10.02,0.244230550885644,0.99355719848889,1.57414894073061,1.56066433292352,-1.56010219093847,0.0149583026887437,0.0159286086729224 +10.022,0.244216152080557,0.993644298751286,1.57410814412172,1.56076948757401,-1.56023641913775,0.0147765808641993,0.0157431116693399 +10.024,0.244203822699278,0.993728196045697,1.57407062462879,1.56086476693548,-1.56035283155217,0.0146193626370166,0.0155819669712363 +10.026,0.244189487775372,0.993814260678232,1.57402990576969,1.56097031459723,-1.56048915448409,0.0144337965475762,0.015393428216353 +10.028,0.244174321404434,0.99390307896233,1.57399038906821,1.56107913232255,-1.56062651467572,0.0142454053652885,0.0152021617503717 +10.03,0.244158985000641,0.993994091502148,1.57395157296218,1.56118939177629,-1.56076312503542,0.014058323553749,0.0150114399323598 +10.032,0.244146539058016,0.994081761702732,1.57391523553536,1.56128794242189,-1.56087973257065,0.0139009594598453,0.014849016350914 +10.034,0.244132732988107,0.994171203485422,1.57387430797557,1.56139593854556,-1.56101600313979,0.0137160797222526,0.0146600148929262 +10.036,0.244118535977454,0.994263004955654,1.57383346374407,1.56150666348788,-1.56115330909661,0.0135284454065632,0.0144686721338347 +10.038,0.244104410110137,0.994356666258718,1.57379259470039,1.56161843020711,-1.56128989587963,0.013342065112231,0.0142781729000111 +10.04,0.24409061098165,0.994451632923788,1.57375120079614,1.56173057902791,-1.56142569815375,0.013157284369334,0.0140888873032795 +10.042,0.244077254594175,0.994547449840474,1.57370897041685,1.56184273581699,-1.56156083382835,0.0129738868298672,0.0139008006784403 +10.044,0.24406434679849,0.994643771527107,1.57366581909098,1.56195467338706,-1.56169542024433,0.0127916064839276,0.0137138385363465 +10.046,0.244051820047037,0.994740342356925,1.57362182970414,1.56206625504786,-1.56182955780716,0.0126102168224551,0.0135278998273214 +10.048,0.2440395615066,0.99483697185348,1.57357719115658,1.5621774090229,-1.56196332480117,0.0124295290455618,0.0133428683530915 +10.05,0.244027444371725,0.994933512798764,1.57353213601648,1.56228809661297,-1.56209678599728,0.0122493947936906,0.0131586140898244 +10.052,0.244015344430029,0.995029845822631,1.57348690246315,1.56239830213744,-1.56222999018312,0.0120696895724229,0.0129750063054794 +10.054,0.244003157623271,0.995125870194172,1.57344170149597,1.56250801527637,-1.56236297850485,0.0118903150928431,0.0127919158660503 +10.056,0.243993360467283,0.995216574522567,1.5733994229676,1.56260495018131,-1.56247659568898,0.0117392098970982,0.0126365060081995 +10.058,0.24398151091045,0.995307491626347,1.57335360831185,1.56271052078391,-1.56261040281978,0.0115593578638987,0.0124538101987461 +10.06,0.243968433352412,0.995399527274658,1.57330934506995,1.56281832054247,-1.56274566871252,0.0113757013897939,0.0122679527972347 +10.062,0.243954594337974,0.995492399864426,1.57326663045392,1.56292683207957,-1.56288055402008,0.0111924250936762,0.0120820810553924 +10.064,0.243940354106312,0.99558571315046,1.57322486247891,1.56303548790829,-1.56301492428196,0.0110100225541365,0.0118965758030784 +10.066,0.243925992731603,0.995679143046631,1.57318350463868,1.56314396657273,-1.56314884334842,0.0108283971563113,0.0117114723016314 +10.068,0.243911706408915,0.995772471271595,1.57314219088694,1.56325207979004,-1.56328238753601,0.0106473811835938,0.0115267737972907 +10.07,0.243897618579212,0.995865578508757,1.57310071371362,1.56335973285313,-1.56341562624595,0.0104668314194253,0.0113424734679196 +10.072,0.24388379036108,0.995958423277484,1.57305899290027,1.5634669074751,-1.56354861431964,0.0102866326211318,0.011158555723184 +10.074,0.243870240910141,0.996051016680921,1.57301702923265,1.56357363214922,-1.5636813983957,0.0101067034518988,0.0109749900578131 +10.076,0.243856958895963,0.996143399501083,1.57297487187596,1.56367996922708,-1.56381401308634,0.00992698208756686,0.010791738876658 +10.078,0.243846409796597,0.996230693665105,1.57293536471306,1.56377380772354,-1.56392730415111,0.00977542812220424,0.0106360043410491 +10.08,0.243834270049998,0.996318548651341,1.57289187512074,1.5638764817636,-1.56406082161462,0.00959512041430997,0.0104529456754014 +10.082,0.243821338738972,0.996407977296388,1.57284948650604,1.56398169269969,-1.56419583340602,0.0094110125304478,0.0102667079789121 +10.084,0.243808041906954,0.996498769081857,1.57280819796164,1.56408799627623,-1.56433049765302,0.00922731208471516,0.0100804742203533 +10.086,0.243794691722279,0.996590565304794,1.57276741366298,1.56419486465433,-1.56446468074301,0.00904454712957813,0.00989464933139617 +10.088,0.243781507391637,0.996683048664866,1.57272661770631,1.56430200086531,-1.56459844023748,0.00886263964866297,0.00970929248887727 +10.09,0.243768623620554,0.996775980394116,1.5726854676913,1.5644092118432,-1.56473185169412,0.00868144217510121,0.00952442030813451 +10.092,0.243756098230839,0.996869198783067,1.57264379059568,1.56451638329735,-1.56486497929242,0.00850081690414951,0.00934003876362282 +10.094,0.243743932855516,0.99696260331716,1.5726015419316,1.56462345205145,-1.56499787831191,0.00832065567590695,0.00915613549599482 +10.096,0.243732087232394,0.997056135112545,1.5725587685714,1.56473039465475,-1.56513059048598,0.00814086897322849,0.00897268417478179 +10.098,0.243720499787491,0.997149758565298,1.57251556572121,1.56483720482945,-1.56526315093435,0.00796138989399972,0.00878964252727556 +10.1,0.243709097801368,0.997243447637451,1.57247205088902,1.56494388810113,-1.56539558479798,0.00778216138373884,0.00860696195307547 +10.102,0.243697811555134,0.997337177007381,1.57242833789767,1.5650504468189,-1.56552791416385,0.00760314095055448,0.00842458768057856 +10.104,0.243686577354274,0.997430918214925,1.57238452871474,1.56515688259316,-1.56566015417738,0.00742428916487269,0.00824246802308963 +10.106,0.243675345057454,0.997524639070905,1.57234070297472,1.56526318801963,-1.56579231936816,0.00724557602629791,0.00806055263767933 +10.108,0.243664075794789,0.99761830561158,1.5722969214195,1.56536935397285,-1.56592441928226,0.0070669712062207,0.00787879924539208 +10.11,0.243652745517871,0.997711884798819,1.57225322316426,1.56547536454774,-1.56605646428352,0.00688845175487357,0.00769716957459142 +10.112,0.24364134001659,0.997805347610519,1.57220963347699,1.56558120609236,-1.56618846075155,0.00670999330136443,0.00751563424211671 +10.114,0.243629856833933,0.997898671310124,1.57216616281132,1.56568686271268,-1.56632041654814,0.00653157839746994,0.00733416743230425 +10.116,0.243618299535633,0.997991841164569,1.57212281458148,1.56579232493733,-1.56645233603136,0.00635318814901399,0.00715275100530434 +10.118,0.243606679446426,0.998084850946486,1.57207958328277,1.56589758436818,-1.56658422537015,0.00617481069910412,0.00697136887637835 +10.12,0.243595010122303,0.998177702891979,1.57203646098907,1.56600264122833,-1.56671608748355,0.00599643286144166,0.00679001110361685 +10.122,0.243583309479694,0.99827040670649,1.57199343424833,1.56610749787742,-1.56684792729273,0.0058180484745101,0.00660866843507575 +10.124,0.243571594771092,0.998362978418072,1.57195048956238,1.56621216528513,-1.56697974665188,0.0056396499022299,0.00642733659923423 +10.126,0.243559885219426,0.998455438698937,1.57190760959029,1.5663166556742,-1.56711154956928,0.00546123620143436,0.00624601108194675 +10.128,0.243548197480138,0.998547811416059,1.57186477820415,1.56642098832432,-1.56724333713374,0.00528280447594282,0.00606469158438491 +10.13,0.243536548703636,0.998640121957027,1.57182197650213,1.56652518178689,-1.56737511270669,0.00510435790189662,0.0058833769360565 +10.132,0.243524952381722,0.998732396006995,1.57177918779146,1.56662925945523,-1.56750687684173,0.0049258970030217,0.00570206961640304 +10.134,0.243513421734315,0.998824658241446,1.57173639360177,1.56673324174098,-1.56763863244746,0.00474742761789809,0.0055207707138964 +10.136,0.243501965839055,0.998916931542944,1.57169357865756,1.56683715174874,-1.56777037969587,0.00456895217008301,0.00533948445605691 +10.138,0.243490593253729,0.999009236155063,1.57165072685637,1.56694100767859,-1.56790212116015,0.00439047765567849,0.00515821318368482 +10.14,0.243479308350511,0.999101589347,1.57160782614444,1.56704482880284,-1.56803385671447,0.00421200697024683,0.00497696188902636 +10.142,0.243468115105914,0.999194004980985,1.57156486435449,1.56714862822306,-1.56816558865546,0.00403354697305497,0.00479573321869342 +10.144,0.243457013576992,0.999286493544988,1.57152183389239,1.56725241922158,-1.56829731659784,0.00385509990652882,0.00461453204899019 +10.146,0.243446003801743,0.999379062039121,1.57147872736715,1.56735620839164,-1.56842904258803,0.00367667156605112,0.00443336054438612 +10.148,0.243435082363773,0.999471714277761,1.57143554205637,1.56746000234135,-1.56856076600045,0.00349826282379816,0.00425222279740289 +10.15,0.243424246352649,0.999564450998271,1.57139227532958,1.56756380113956,-1.56869248864929,0.00331987790842533,0.00407111995998603 +10.152,0.243413489969406,0.999657270340075,1.57134892892395,1.5676676052905,-1.56882420968811,0.00314151602490108,0.00389005495913723 +10.154,0.243402808501705,0.999750168088206,1.57130550421508,1.56777140939693,-1.56895593072251,0.00296317972963225,0.0037090277015781 +10.156,0.243392194928899,0.999843138246389,1.57126200637162,1.56787520929707,-1.56908765071394,0.00278486662487892,0.0035280398583479 +10.158,0.243381643873778,0.999936173336925,1.57121843955003,1.56797899583466,-1.56921937109333,0.00260657780344068,0.00334709012909742 +10.16,0.243371148173883,1.00002926499372,1.5711748110051,1.5680827620497,-1.56935109066879,0.00242830958988127,0.0031661790769098 +10.162,0.243360702780459,1.00012240424953,1.57113112628244,1.56818649695559,-1.56948281073852,0.00225006202447768,0.00298530443140584 +10.164,0.243350301272478,1.000215582086,1.57108739335018,1.56829019269323,-1.56961453000185,0.0020718306232518,0.00280446595039684 +10.166,0.243339939683974,1.00030878965269,1.57104361784582,1.56839383823939,-1.56974624966915,0.00189361487232173,0.00262366074022001 +10.168,0.243329612948123,1.00040201872727,1.57099980727365,1.56849742646158,-1.56987796837563,0.00171540998285725,0.00244288812202796 +10.17,0.243319318645433,1.000495261829,1.57095596634042,1.5686009477115,-1.57000968728607,0.00153721537244017,0.00226214495122519 +10.172,0.243309053376249,1.00058851256232,1.57091210124094,1.56870439674823,-1.57014140501123,0.00135902639777049,0.00208143047082251 +10.174,0.243298816433104,1.00068176560882,1.57086821509549,1.56880776619959,-1.57027312270564,0.00118084280724526,0.00190074161728452 +10.176,0.243288606109905,1.00077501694885,1.57082431232678,1.56891105334841,-1.57040483898668,0.00100266044179925,0.00172007784943107 +10.178,0.243278423310785,1.0008682637365,1.57078039419465,1.56901425346875,-1.57053655502451,0.000824479650954638,0.00153943643383269 +10.18,0.243268267811736,1.0009615044128,1.57073646325253,1.5691173664912,-1.57066826946404,0.000646296959265185,0.00135881724383368 +10.182,0.243258141824433,1.00105473848478,1.57069251896244,1.56922039023776,-1.57079998350653,0.000468113445305274,0.00117821802287079 +10.184,0.243248046230355,1.00114796655728,1.57064856220978,1.56932332699586,-1.57093169583504,0.000289926376905824,0.000997639153487089 +10.186,0.243237984120685,1.00124119004733,1.57060459097438,1.56942617668535,-1.57106340768785,0.000111737558132647,0.000817078901075191 +10.188,0.243227957023701,1.00133441116844,1.57056060487789,1.56952894337702,-1.57119511778779,-6.64550595925913e-05,0.000636538156772791 +10.19,0.243217968441029,1.001427632615,1.57051660088453,1.56963162842776,-1.57132682740808,-0.000244649053901579,0.000456015666905823 +10.192,0.243208020086694,1.00152085753304,1.57047257785554,1.5697342369792,-1.57145853530603,-0.000422845935386655,0.000275512756196506 +10.194,0.243198115436319,1.00161408920661,1.57042853225526,1.56983677109406,-1.5715902427822,-0.000601042837230736,9.50285495666779e-05 +10.196,0.243188255991567,1.00170733104404,1.57038446269091,1.56993923626543,-1.57172194861874,-0.000779240924800035,-8.54353168561013e-05 +10.198,0.243178444853421,1.00180058629125,1.5703403656047,1.57004163458032,-1.57185365413283,-0.000957437088568282,-0.000265879474794285 +10.2,0.243168683019898,1.00189385805392,1.5702962397834,1.5701439712619,-1.57198535811999,-0.00113563235117845,-0.000446302117785936 +10.202,0.243158972988497,1.00198714905346,1.57025208202398,1.57024624787717,-1.5721170619027,-0.00131382355533835,-0.000626703775211167 +10.204,0.243149315089174,1.00208046169569,1.57020789160454,1.57034846892478,-1.57224876427872,-0.00149201176218965,-0.000807082605253993 +10.206,0.243139711115405,1.00217379787538,1.5701636659183,1.57045063509419,-1.57238046656568,-0.00167019392830659,-0.000987439159577857 +10.208,0.243130160689421,1.0022671590928,1.57011940490433,1.57055274990228,-1.57251216755451,-0.00184837129171314,-0.0011677716711764 +10.21,0.243120664916922,1.00236054630413,1.57007510665117,1.57065481300279,-1.57264386855042,-0.00202654103490084,-0.00134808080725108 +10.212,0.243111222777999,1.00245396007974,1.57003077179151,1.570756826867,-1.57277556833139,-0.0022047046573422,-0.00152836494992439 +10.214,0.243101834797748,1.00254740049146,1.56998639908163,1.57085879013558,-1.57290726818583,-0.0023828596240972,-0.00170862493671618 +10.216,0.243092499454465,1.00264086730146,1.56994198976804,1.57096070433296,-1.57303896687595,-0.00256100772582663,-0.0018888593340362 +10.218,0.24308321685732,1.00273435987377,1.56989754315196,1.57106256724954,-1.57317066567213,-0.00273914671472717,-0.0020690691661999 +10.22,0.243073985163129,1.0028278773803,1.56985306093775,1.57116437967649,-1.57330236332108,-0.00291727865461871,-0.00224925318316244 +10.222,0.243064804252685,1.00292141872314,1.56980854279259,1.57126613880462,-1.57343406107668,-0.00309540154742172,-0.00242941258009176 +10.224,0.24305567214846,1.00301498274462,1.56976399068649,1.57136784496587,-1.57356575767276,-0.00327351767677064,-0.00260954626180588 +10.226,0.243046588682698,1.00310856814805,1.56971940445661,1.57146949503591,-1.57369745435013,-0.00345162522895488,-0.00278965555546584 +10.228,0.24303755191032,1.00320217370086,1.56967478614717,1.57157108917014,-1.57382914983389,-0.00362972663371106,-0.00296973947459772 +10.23,0.243028561764075,1.00329579814445,1.56963013558578,1.57167262419952,-1.57396084535626,-0.00380782018354422,-0.0031497994275093 +10.232,0.24301961645922,1.00338944038279,1.56958545472916,1.57177410035201,-1.57409253963832,-0.00398590837498589,-0.00332983448367635 +10.234,0.243010716133403,1.00348309937561,1.56954074325612,1.57187551463456,-1.57422423390833,-0.00416398952964185,-0.00350984608012474 +10.236,0.243001859241994,1.00357677430863,1.56949600292223,1.57197686753455,-1.57435592688782,-0.00434206613843932,-0.00368983329246193 +10.238,0.242993046182558,1.00367046446821,1.56945123317125,1.57207815638467,-1.57448761980511,-0.0045201364868126,-0.00386979754083951 +10.24,0.242984275681673,1.00376416939287,1.56940643549919,1.57217938204274,-1.57461931138582,-0.00469820300349497,-0.00404973786717459 +10.242,0.24297554840559,1.0038578887306,1.5693616090835,1.57228054223947,-1.5747510028613,-0.00487626389116437,-0.00422965564156638 +10.244,0.242966863340774,1.00395162237443,1.56931675515467,1.5723816382383,-1.57488269296367,-0.00505432148034655,-0.00440954984643924 +10.246,0.242958221393486,1.00404537030596,1.56927187264074,1.5724826681689,-1.57501438292903,-0.00523237386579132,-0.00458942178356734 +10.248,0.242949621767087,1.00413913271938,1.56922696254316,1.5725836336707,-1.57514607149705,-0.0054104232651908,-0.00476927036511986 +10.25,0.24294106555376,1.0042329098563,1.56918202359288,1.57268453321673,-1.57527775990906,-0.00558846766068704,-0.00494909682085455 +10.252,0.242932552111811,1.00432670212341,1.56913705662664,1.57278536874598,-1.57540944691214,-0.00576650916147209,-0.00512889999545671 +10.254,0.242924082652702,1.00442050992388,1.56909206025066,1.57288613898278,-1.57554113375222,-0.00594454564922815,-0.00530868105505941 +10.256,0.242915656621278,1.00451433377383,1.56904703521352,1.57298684606321,-1.57567281918277,-0.00612257914330872,-0.0054884387898953 +10.258,0.242907275280798,1.00460817413496,1.56900198007379,1.57308748885518,-1.57580450445293,-0.00630060744861362,-0.00566817431911005 +10.26,0.242898938098367,1.00470203153405,1.56895689556625,1.57318806958365,-1.57593618832094,-0.00647863252194836,-0.00584788639760207 +10.262,0.242890646329905,1.00479590640046,1.56891178027074,1.57328858715543,-1.57606787203741,-0.00665665212081746,-0.00602757611810106 +10.264,0.242882399412263,1.00488979919139,1.56886663496953,1.57338904378689,-1.57619955436351,-0.00683466816968137,-0.00620724222112834 +10.266,0.242874198549203,1.00498371023648,1.56882145831552,1.57348943833638,-1.57633123654955,-0.0070126784083556,-0.00638688579347369 +10.268,0.242866043110846,1.00507763987022,1.56877625117975,1.57358977293656,-1.57646291735791,-0.00719068475716438,-0.00656650558041811 +10.27,0.242857934220937,1.00517158828419,1.5687310123184,1.57369004633586,-1.57659459803702,-0.00736868496398328,-0.00674610268000268 +10.272,0.24284987116354,1.00526555566671,1.56868574271026,1.57379026053621,-1.57672627734913,-0.00754668096765244,-0.00692567585695253 +10.274,0.242841854971205,1.00535954206203,1.56864044122306,1.57389041414368,-1.57685795653967,-0.007724670543114,-0.00710522623243179 +10.276,0.242833884838267,1.00545354751608,1.5685951089416,1.57399050901112,-1.57698963436985,-0.00790265566282408,-0.0072847525994297 +10.278,0.242825961709089,1.00554757194115,1.56854974483449,1.57409054359697,-1.57712131208152,-0.00808063413984004,-0.007464256107982 +10.28,0.242818084696997,1.00564161526585,1.56850435007449,1.57419051961158,-1.57725298843446,-0.00825860798730193,-0.00764373558207367 +10.282,0.242810254671533,1.00573567730322,1.56845892370699,1.57429043538248,-1.5773846646668,-0.0084365750596618,-0.00782319220053875 +10.284,0.242802470681949,1.0058297579028,1.56841346696416,1.57439029250251,-1.57751633953703,-0.008614537410554,-0.00800262481576024 +10.286,0.24279473354238,1.00592385682006,1.56836797893693,1.57449008919967,-1.57764801427982,-0.00879249293259487,-0.00818203463061371 +10.288,0.242787042258873,1.00601797386851,1.5683224608844,1.57458982698504,-1.57777968765282,-0.00897044371410887,-0.00836142051938322 +10.29,0.242779397611542,1.00611210878855,1.56827691191081,1.5746895040254,-1.57791136088784,-0.00914838767804928,-0.00854078370118124 +10.292,0.242771798584297,1.00620626139799,1.56823133327144,1.57478912178909,-1.57804303274232,-0.00932632693809459,-0.00872012306354702 +10.294,0.242764245943258,1.00630043145892,1.5681857240557,1.57488867841979,-1.57817470444594,-0.00950425943725682,-0.0088994398327633 +10.296,0.242756738668627,1.00639461882546,1.56814008549044,1.57498817537905,-1.57830637475668,-0.00968218730382499,-0.00907873290057121 +10.298,0.242749277528926,1.00648882330795,1.56809441662973,1.57508761082011,-1.57843804490276,-0.00986010849015773,-0.00925800349173073 +10.3,0.242741861514709,1.00658304481735,1.56804871865602,1.57518698622616,-1.5785697136434,-0.0100380251288521,-0.00943725049419501 +10.302,0.242734491408466,1.00667728322646,1.56800299057685,1.57528629978367,-1.578701382206,-0.0102159351720912,-0.0096164751241491 +10.304,0.242727166220136,1.00677153851119,1.5679572335238,1.57538555301609,-1.57883304935152,-0.0103938407482851,-0.00979567625986219 +10.306,0.24271988675272,1.00686581060905,1.56791144645589,1.57548474415657,-1.57896471630694,-0.0105717398021918,-0.00997485510431239 +10.308,0.242712652039747,1.0069600995577,1.567865630456,1.57558387477721,-1.57909638183534,-0.0107496344521402,-0.0101540105228028 +10.31,0.242705462906812,1.00705440535144,1.56781978444052,1.57568294316146,-1.57922804716352,-0.0109275226309926,-0.0103331437031607 +10.312,0.242698318411251,1.00714872807785,1.56777390945259,1.57578195092943,-1.57935971105675,-0.0111054064439372,-0.010512253497084 +10.314,0.242691219399904,1.0072430677731,1.56772800437731,1.57588089641057,-1.57949137474171,-0.0112832838102349,-0.0106913410778072 +10.316,0.242684164951308,1.00733742455754,1.56768207023119,1.57597978126558,-1.57962303698584,-0.011461156821476,-0.0108704052850542 +10.318,0.24267715592999,1.00743179849078,1.56763610588223,1.57607860386009,-1.5797546990155,-0.0116390233839652,-0.0110494472800016 +10.32,0.242670191431478,1.00752618970708,1.56759011233493,1.57617736588393,-1.57988635960013,-0.0118168855772819,-0.0112284658936591 +10.322,0.242663272333408,1.0076205982709,1.56754408845458,1.57627606572643,-1.58001801996555,-0.0119947412971097,-0.0114074622789328 +10.324,0.242658193320542,1.00771004596743,1.567501479253,1.57636357574588,-1.58013053066329,-0.0121448506499938,-0.0115595539249681 +10.326,0.242651753629238,1.00780007673473,1.56745440406352,1.5764593809421,-1.58026334538364,-0.0123234955586181,-0.0117388323064508 +10.328,0.24264461032515,1.00789176680745,1.56740822041491,1.57655752249985,-1.58039772806991,-0.0125060180291735,-0.0119213948355765 +10.33,0.242637140362543,1.0079849114359,1.5673630115094,1.57665662812398,-1.58053185690911,-0.0126882784046275,-0.012104061665594 +10.332,0.242629618554315,1.0080791418178,1.56731823247963,1.57675620614525,-1.58066558677667,-0.0128697490167165,-0.0122864090398125 +10.334,0.242622238698045,1.00817412315623,1.56727339809932,1.57685597749086,-1.58079896379735,-0.0130504821417752,-0.0124683662030571 +10.336,0.24261511397321,1.00826959591728,1.56722819080147,1.57695576804908,-1.58093204748543,-0.0132306076945486,-0.0126499024894567 +10.338,0.242608291303201,1.00836537676947,1.56718245086621,1.57705547184531,-1.58106489280213,-0.0134102412966619,-0.0128310041843359 +10.34,0.242601764063665,1.00846134505868,1.56713614670134,1.57715503745685,-1.58119754295371,-0.0135894809537864,-0.0130116727073731 +10.342,0.24259549325018,1.00855742440187,1.56708933015029,1.57725444322941,-1.58133003509271,-0.0137684001823933,-0.0131919300624503 +10.344,0.242589419508666,1.00865356548624,1.56704210389696,1.57735368938193,-1.58146239636828,-0.0139470609186152,-0.0133718107951707 +10.346,0.24258347935448,1.00874973231716,1.56699458751188,1.57745278026469,-1.58159465027033,-0.0141255090184425,-0.0135513617212467 +10.348,0.242579340674779,1.00884091036139,1.56695040705894,1.57754069614294,-1.58170766797055,-0.0142760697287913,-0.013703784771538 +10.35,0.242573853789191,1.00893260724567,1.56690167463061,1.57763675329431,-1.5818409109018,-0.014454997244789,-0.0138831565693087 +10.352,0.242567619989081,1.00902587684223,1.56685386115707,1.57773502944304,-1.58197565495762,-0.0146376923861111,-0.0140656488110568 +10.354,0.242560982324672,1.00912048584116,1.56680712181769,1.57783415778368,-1.58211009058171,-0.0148200485347247,-0.014248127275998 +10.356,0.242554196020151,1.00921603696443,1.56676095815657,1.57793364409213,-1.58224408076769,-0.0150015603098909,-0.0144302056422774 +10.358,0.242549148650561,1.00930718528958,1.56671844479606,1.57802222085899,-1.5823585327177,-0.0151545946035671,-0.0145850091698913 +10.36,0.242544597687118,1.00939420403915,1.56667477412511,1.57810797411602,-1.58247381352265,-0.0153077877990903,-0.0147397008933309 +10.362,0.242538185292097,1.00948352615141,1.56662714171828,1.57820412336177,-1.58261069045657,-0.0154928470044449,-0.0149244130326114 +10.364,0.242530918649733,1.00957592007106,1.56658100914293,1.5783033631262,-1.58274865840731,-0.0156811401598332,-0.0151121225294302 +10.366,0.242523410320425,1.00967074913677,1.56653597673374,1.57840384022788,-1.58288579702022,-0.0158680929216308,-0.0152992647072635 +10.368,0.242516074631809,1.00976727586933,1.56649111330531,1.57850481148177,-1.58302203742052,-0.0160532969678572,-0.0154853885085501 +10.37,0.242509163169346,1.00986488827076,1.56644572340803,1.57860585454909,-1.58315751027771,-0.0162369801927211,-0.0156704445725841 +10.372,0.24250444951599,1.00995814524433,1.56640299888539,1.57869579563853,-1.58327320587518,-0.0163917361906459,-0.0158276263767344 +10.374,0.242498936909786,1.01005226914614,1.56635472963119,1.5787936489789,-1.58340867931188,-0.0165739686834919,-0.0160109340599312 +10.376,0.242493176272017,1.01014815162891,1.56630641375784,1.57889348140403,-1.58354528893385,-0.0167592760127087,-0.0161965868403091 +10.378,0.242487415193468,1.01024546273446,1.56625834903792,1.57899393900393,-1.58368129397381,-0.0169436906258971,-0.0163815067020997 +10.38,0.242481789360152,1.01034374610672,1.56621024337074,1.57909455905514,-1.58381661007806,-0.0171268105177046,-0.0165653855854903 +10.382,0.242477998306271,1.01043760807891,1.56616545566207,1.57918420994254,-1.58393218853457,-0.0172811095908467,-0.0167214743553352 +10.384,0.242473092569016,1.01053226019717,1.56611573801643,1.57928181108612,-1.58406756672317,-0.0174629322774255,-0.0169037988244141 +10.386,0.242467655009027,1.0106285619251,1.56606653380685,1.57938140338694,-1.58420409488606,-0.0176478794384462,-0.0170886178472589 +10.388,0.242461983917125,1.01072614325664,1.56601804599489,1.57948159598226,-1.58434002603249,-0.0178319898761755,-0.017272858573382 +10.39,0.242456277965794,1.01082451633608,1.56596987184775,1.57958188315064,-1.58447527664753,-0.0180148572573445,-0.0174562080595013 +10.392,0.242452268231457,1.0109182710009,1.56592529711158,1.57967114987955,-1.58459079564927,-0.0181689715528064,-0.0176119124959131 +10.394,0.242447100113368,1.01101262087473,1.56587594477454,1.57976823135971,-1.58472611736191,-0.0183506519642083,-0.0177939505703543 +10.396,0.242442992451207,1.01110345749228,1.56583083573614,1.57985636249662,-1.5848434508309,-0.0185078495992592,-0.0179517898226324 +10.398,0.242437381756241,1.01119597539729,1.56578191573125,1.57995314090699,-1.58498048896999,-0.0186926975043591,-0.0181362404270622 +10.4,0.242431097068156,1.01129083441389,1.56573419854525,1.58005224711586,-1.58511841079455,-0.018880222696437,-0.0183231474896675 +10.402,0.242424630129325,1.01138746579629,1.56568744080034,1.58015210054601,-1.5852554935704,-0.0190664576563163,-0.0185093612338537 +10.404,0.242419885331583,1.01148023511106,1.5656445600391,1.58024130174945,-1.58537255274148,-0.0192234206618527,-0.0186677522718802 +10.406,0.242414192412147,1.01157415256198,1.56559676861216,1.58033844479987,-1.58550914940131,-0.0194074175801262,-0.0188521938525244 +10.408,0.24240980269246,1.01166496036393,1.5655528984624,1.58042674889669,-1.58562753965439,-0.0195665073178709,-0.0190121529416747 +10.41,0.24240421949733,1.0117577490015,1.56550473096613,1.58052369400947,-1.58576545522487,-0.0197528714282743,-0.0191983932359959 +10.412,0.242398242580763,1.01185311733453,1.56545727424733,1.58062297360717,-1.58590410879429,-0.0199416130627744,-0.0193867711089464 +10.414,0.242392314252466,1.01195045559727,1.56541033093578,1.58072302102583,-1.58604180600455,-0.0201288157123323,-0.019574150558053 +10.416,0.242388245617368,1.01204409617479,1.56536692743884,1.58081250267137,-1.58615938540788,-0.0202865481803432,-0.0197334428628693 +10.418,0.242383353388128,1.01213901846269,1.56531831325549,1.58090993899184,-1.58629642182093,-0.0204711160253717,-0.0199185208763274 +10.42,0.242379789494625,1.0122309360808,1.56527345587564,1.58099862246171,-1.58641518634609,-0.0206306321821513,-0.0200789164750244 +10.422,0.242375053467802,1.01232490377729,1.56522416849523,1.5810959482185,-1.58655341973634,-0.0208172750715582,-0.020265398877417 +10.424,0.242369894413718,1.01242148720151,1.56517554417811,1.58119561805226,-1.58669234366803,-0.0210061849549457,-0.0204538724633975 +10.426,0.242364719906899,1.01252003811335,1.56512744548786,1.58129605269937,-1.58683027209177,-0.0211934694551743,-0.020641234451795 +10.428,0.242359771256922,1.01261984666108,1.56507926299242,1.58139664049414,-1.58696718584575,-0.0213788590207545,-0.0208271773350812 +10.43,0.242356672696055,1.01271533035987,1.5650342920415,1.58148636294196,-1.58708409878697,-0.0215349998230961,-0.0209850212013327 +10.432,0.242352689299984,1.01281157868834,1.56498399259314,1.58158375549641,-1.58722058450422,-0.0217182107287484,-0.0211686749455556 +10.434,0.24234835591408,1.01290940859743,1.56493387289894,1.58168292492712,-1.58735803284987,-0.0219042311574102,-0.0213544718359999 +10.436,0.242343923409386,1.01300842907569,1.56488421176196,1.58178251193358,-1.58749473441373,-0.022089177348887,-0.0215393777893984 +10.438,0.242339540012055,1.01310814625161,1.56483469513057,1.58188204093487,-1.58763063207987,-0.0222726920206521,-0.021723122330168 +10.44,0.242335278649175,1.01320814205076,1.56478507663064,1.58198126666144,-1.58776583473876,-0.0224549687842456,-0.0219057830257181 +10.442,0.242331157007275,1.01330810024659,1.56473524589951,1.58208004349562,-1.58790045669184,-0.0226362438117225,-0.0220874761302046 +10.444,0.242327151693378,1.0134077992365,1.56468520962671,1.58217829619588,-1.58803459362438,-0.0228167268487129,-0.0222683182584754 +10.446,0.242323219450681,1.01350709479448,1.56463504748185,1.58227599200343,-1.58816832725543,-0.0229965856090733,-0.0224484294605271 +10.448,0.242319308352545,1.01360590144643,1.56458487852964,1.58237313190022,-1.58830172234327,-0.0231759595442966,-0.0226279267481347 +10.45,0.242315372451753,1.01370417569572,1.56453482644807,1.58246973206872,-1.58843483408489,-0.0233549569509748,-0.022806925514939 +10.452,0.242312824071878,1.01379689923709,1.56448877435296,1.58255523572591,-1.58854857256142,-0.0235060679873765,-0.022958827737683 +10.454,0.242308984160183,1.01388959744004,1.56443834021606,1.582648252011,-1.58868239822863,-0.0236853167366473,-0.0231374768940285 +10.456,0.24230441927968,1.01398342036955,1.56438909288403,1.58274306939958,-1.58881760718927,-0.0238682659618948,-0.0233191921645456 +10.458,0.24229947682226,1.01407821454604,1.5643411930707,1.5828384218488,-1.58895241926366,-0.024050864413521,-0.0235008774708951 +10.46,0.242294423979912,1.0141736592494,1.56429411847063,1.58293389682732,-1.5890867136343,-0.0242326206346976,-0.0236821685389771 +10.462,0.242289460874027,1.01426946860425,1.56424737099509,1.58302928540167,-1.5892205534445,-0.024413605301533,-0.0238630383173695 +10.464,0.242286133750449,1.01436042794539,1.5642043970787,1.58311394153209,-1.58933488044469,-0.0245663716207951,-0.024016798936655 +10.466,0.242281902493187,1.01445192600037,1.56415646548385,1.58320631097924,-1.58946918178899,-0.0247469647003758,-0.0241971710138676 +10.468,0.242277350602813,1.01454503435755,1.56410901340183,1.58330066676567,-1.58960477840572,-0.0249310041929249,-0.0243804160920636 +10.47,0.242272798325023,1.01463955320224,1.56406217519235,1.58339574087653,-1.5897399116261,-0.0251144736332446,-0.0245633947551573 +10.472,0.242268454396664,1.01473513244346,1.56401547798079,1.58349112827141,-1.58987447637566,-0.0252969048010962,-0.0247457227893662 +10.474,0.24226444317926,1.01483145989133,1.56396851780941,1.58358662705156,-1.59000854727652,-0.0254783862450907,-0.0249273730407406 +10.476,0.2422621975677,1.01492328563005,1.56392488487706,1.58367164051843,-1.59012307611073,-0.0256314998947109,-0.0250816884707792 +10.478,0.242259148747959,1.01501595224625,1.56387591086669,1.58376451684985,-1.59025755293749,-0.0258122760771567,-0.0252623819809392 +10.48,0.242255802346148,1.01511048030594,1.56382715574056,1.58385952259417,-1.59039330337346,-0.0259963660778342,-0.0254457567825684 +10.482,0.242252416595227,1.01520660630921,1.56377885395202,1.58395535860751,-1.59052857341051,-0.0261797756703126,-0.0256287052615581 +10.484,0.242249151984534,1.01530390977797,1.56373061539553,1.58405157782277,-1.59066326053608,-0.0263620564944346,-0.0258108736065221 +10.486,0.24224609793777,1.01540200654299,1.56368210336911,1.58414793082389,-1.59079744097256,-0.0265433170754946,-0.0259922630950607 +10.488,0.242244632860925,1.01549557536279,1.56363699169025,1.58423382270359,-1.59091206904186,-0.026696173011168,-0.0261462587641806 +10.49,0.242242226144933,1.01558989474958,1.56358660084753,1.58432747045492,-1.59104663289965,-0.0268766435979853,-0.0263265652592526 +10.492,0.242239373345298,1.01568593801719,1.56353653783532,1.58442311918529,-1.59118245883431,-0.0270604143008692,-0.0265095189528617 +10.494,0.242236334622129,1.01578340280566,1.5634870663136,1.58451944245413,-1.5913177948247,-0.0272435121118182,-0.0266920313543965 +10.496,0.242233279445579,1.015881840816,1.56343781542128,1.58461597222204,-1.5914525390532,-0.0274255036541207,-0.0268737644492244 +10.498,0.242230311362967,1.01598085141383,1.56338845965948,1.58471244675871,-1.591586768034,-0.027606508825103,-0.027054732739048 +10.5,0.242227473874597,1.01608011907962,1.56333881511658,1.58480870277821,-1.59172056492834,-0.0277867119804323,-0.0272349866526242 +10.502,0.242224766991521,1.01617941326418,1.56328882412315,1.58490463850884,-1.59185400396663,-0.0279662744917838,-0.0274145860450238 +10.504,0.242222159361849,1.01627857564587,1.56323852519429,1.58500020189975,-1.59198714460217,-0.0281453336870718,-0.0275935963697833 +10.506,0.242219606720906,1.01637750326737,1.56318801165947,1.58509536870665,-1.5921200378372,-0.0283239968188236,-0.0277720932635927 +10.508,0.242217060394233,1.01647613273076,1.56313740364947,1.58519013761648,-1.5922527229329,-0.0285023544585854,-0.0279501547341516 +10.51,0.242214479396419,1.0165744271843,1.56308681943498,1.58528451520428,-1.59238523391131,-0.0286804760309527,-0.0281278615350637 +10.512,0.24221312141586,1.01666735106875,1.56304028484814,1.58536818374723,-1.59249847024526,-0.0288308887485468,-0.0282786662005962 +10.514,0.24221055974601,1.01676040600672,1.56298914637656,1.58545931164837,-1.59263186495902,-0.0290094366936691,-0.0284562294214019 +10.516,0.242207323284868,1.01685474768687,1.56293904580837,1.58555226850642,-1.59276670193422,-0.0291917416055264,-0.0286369121307032 +10.518,0.242203741382976,1.01695020920772,1.56289017469625,1.58564580209437,-1.59290119815754,-0.02937375905866,-0.0288176071422362 +10.52,0.242200066413813,1.01704644875818,1.56284203386459,1.58573950074209,-1.59303522556991,-0.0295549881850013,-0.0289979389389387 +10.522,0.242196485301227,1.01714315530933,1.56279414623414,1.585833152227,-1.59316883947466,-0.0297354887873939,-0.0291778719582169 +10.524,0.242193116520539,1.01724009370131,1.56274617589687,1.58592664059648,-1.59330210633402,-0.0299153918846753,-0.0293573996159536 +10.526,0.242190021057266,1.01733710818923,1.56269792757194,1.58601991086315,-1.59343508719734,-0.0300948113011556,-0.0295365226708979 +10.528,0.242187211922945,1.0174341102971,1.56264932438262,1.58611295644636,-1.59356783116596,-0.030273841639876,-0.0297152494491529 +10.53,0.242184672078864,1.01753106055297,1.56260036943552,1.58620579544389,-1.59370038093982,-0.0304525520191685,-0.029893603048401 +10.532,0.242182364020166,1.01762795034297,1.56255111727716,1.58629846331069,-1.59383276907459,-0.0306309993240471,-0.0300716151956348 +10.534,0.242181473684886,1.01771976547566,1.56250561987925,1.58638075713902,-1.59394589929178,-0.0307817183457362,-0.0302227331579379 +10.536,0.242179636711083,1.01781202260658,1.56245512753684,1.58647070653988,-1.59407919990973,-0.0309604824903171,-0.030400535807405 +10.538,0.242177331555742,1.01790589383282,1.56240532675482,1.58656272267267,-1.59421395485236,-0.0311429310055103,-0.0305813911173393 +10.54,0.242174837547604,1.01800121001584,1.5623564507175,1.58665556379881,-1.59434838105437,-0.0313250244805324,-0.0307621828746849 +10.542,0.242172361985865,1.01809761207437,1.56230803826161,1.58674880415075,-1.5944823532398,-0.0315062538257378,-0.0309425356675311 +10.544,0.242170044647763,1.01819475933202,1.56225965594117,1.58684221361641,-1.59461592268892,-0.0316866836910617,-0.0311224119901412 +10.546,0.242169162414235,1.01828735352264,1.56221501289832,1.58692545412489,-1.59473003318268,-0.0318389524981385,-0.0312752323527012 +10.548,0.242167467601645,1.0183806960442,1.56216507376447,1.58701634755247,-1.59486414668196,-0.0320188914838412,-0.0314545067150107 +10.55,0.242165453983901,1.01847581629372,1.5621154288044,1.58710924854791,-1.59499957815639,-0.0322022289028511,-0.031636588968861 +10.552,0.242163386921816,1.01857245298867,1.56206630098851,1.58720288150499,-1.59513457128335,-0.0323849887439314,-0.0318183540805238 +10.554,0.242161439504097,1.01867019182911,1.5620172800852,1.5872968079028,-1.59526902124588,-0.0325667091642594,-0.0319994336492632 +10.556,0.242160881720794,1.01876363427856,1.56197204607667,1.5873806482044,-1.5953838740382,-0.0327200086484237,-0.0321532464207056 +10.558,0.242159515513961,1.01885798640165,1.56192147528154,1.58747210253387,-1.59551860949401,-0.0329007321613879,-0.0323332991876241 +10.56,0.242157828139552,1.01895420088516,1.56187114758601,1.58756550751982,-1.59565456101178,-0.0330846666947191,-0.0325159783502718 +10.562,0.242156078801277,1.01905195268112,1.56182128566436,1.58765956514988,-1.5957899920682,-0.0332678748521469,-0.0326981833825234 +10.564,0.242154427459997,1.01915077780614,1.56177149775639,1.58775382963815,-1.59592480868178,-0.0334499335210951,-0.0328795641986973 +10.566,0.242152960896839,1.01925026580206,1.56172145688758,1.58784806079851,-1.59605909201636,-0.0336309654490524,-0.0330601277426531 +10.568,0.242152844646875,1.01934506651037,1.56167504914453,1.58793201566066,-1.59617380870041,-0.033783686707567,-0.033213372980298 +10.57,0.242151874813892,1.01944044305149,1.56162326131205,1.58802336674694,-1.59630843386044,-0.0339639120179914,-0.0333928085311853 +10.572,0.242150496759337,1.019537406077,1.56157181102756,1.58811651102597,-1.59644429519815,-0.0341474338227501,-0.0335748640189797 +10.574,0.242148951777731,1.01963567484687,1.56152100552664,1.58821018420003,-1.59657965243064,-0.0343303085928811,-0.0337564683908239 +10.576,0.242147399415473,1.01973481818524,1.56147049541459,1.58830396177507,-1.59671440746748,-0.0345121048504517,-0.033937294628003 +10.578,0.242145938831277,1.01983445008348,1.56141996326922,1.58839761783134,-1.59684863789883,-0.0346929377254128,-0.0341173654206751 +10.58,0.242144613696777,1.01993426802312,1.56136922318573,1.58849101871123,-1.59698242750787,-0.0348729854902218,-0.0342967366761752 +10.582,0.242143427609327,1.02003405362392,1.56131820850877,1.58858408669553,-1.59711585113899,-0.0350524035289661,-0.0344754711011429 +10.584,0.242142355049243,1.02013366052195,1.56126694448279,1.58867678881117,-1.59724896906297,-0.0352313237121961,-0.0346536348399419 +10.586,0.242141358550255,1.0202329978466,1.56121550935709,1.58876911568885,-1.5973818331738,-0.0354098485074248,-0.034831302502119 +10.588,0.242140396216158,1.02033201443619,1.56116400805712,1.58886107732717,-1.59751448375576,-0.0355880643772517,-0.0350085499641018 +10.59,0.242139432932069,1.02043068559421,1.56111254482196,1.58895268868123,-1.5976469558115,-0.0357660372881679,-0.0351854551411174 +10.592,0.242138441751567,1.02052900375001,1.56106121166053,1.58904397119933,-1.59777927594838,-0.0359438242944688,-0.0353620897521803 +10.594,0.242137409323523,1.02062697232689,1.56101007592075,1.58913494365715,-1.59791146828605,-0.0361214675191984,-0.0355385207572081 +10.596,0.24213633237005,1.02072460258854,1.56095918160709,1.58922562800374,-1.59804355076501,-0.0362990046357691,-0.035714803777254 +10.598,0.242135219474666,1.020821912025,1.56090854659531,1.58931604311232,-1.59817554055947,-0.0364764618241375,-0.0358909866262958 +10.6,0.24213408538345,1.02091892394856,1.56085817009824,1.58940621197075,-1.59830745010165,-0.0366538632090758,-0.036067104854581 +10.602,0.242132951717515,1.02101566713009,1.56080803321836,1.58949615583391,-1.59843929215146,-0.0368312232475518,-0.0362431868703175 +10.604,0.242131841047053,1.02111217555632,1.56075810758451,1.58958590115141,-1.59857107555173,-0.0370085558390698,-0.0364192505711882 +10.606,0.242130777955964,1.02120848758119,1.56070835563769,1.58967547310168,-1.59870281007415,-0.0371858665758423,-0.0365953090631612 +10.608,0.242129783870194,1.02130464494395,1.56065873812024,1.58976490168655,-1.59883450206204,-0.0373631617151419,-0.0367713675628057 +10.61,0.242128879028949,1.02140069121756,1.56060921290081,1.5898542145255,-1.59896615915532,-0.0375404404353765,-0.0369474290623196 +10.612,0.242128078245354,1.02149667033481,1.56055974098024,1.58994344237823,-1.5990977858622,-0.0377177038052081,-0.0371234910265586 +10.614,0.242127393735278,1.02159262483224,1.56051028401517,1.59003261161424,-1.59922938821548,-0.0378949470537458,-0.0372995507525106 +10.616,0.24212683163261,1.02168859446429,1.56046080924583,1.59012174962509,-1.59936096931545,-0.0380721684870301,-0.0374756017638769 +10.618,0.242126395431039,1.02178461478471,1.56041128619902,1.59021087740992,-1.59949253394733,-0.0382493616973332,-0.0376516388661254 +10.62,0.242126082978345,1.02188071627796,1.56036169099692,1.59030001527275,-1.59962408410362,-0.0384265243752447,-0.0378276542796985 +10.622,0.242125890267429,1.0219769235625,1.56031200260474,1.59038917581634,-1.59975562357724,-0.0386036503878028,-0.0380036424661595 +10.624,0.242125808675524,1.02207325517922,1.56026220678223,1.59047837011268,-1.59988715347229,-0.038780738435078,-0.0381795960726322 +10.626,0.242125828904687,1.02216972343134,1.56021229204645,1.59056760119127,-1.60001867678276,-0.0389577839559548,-0.0383555105943703 +10.628,0.242125938298207,1.02226633474742,1.56016225337399,1.59065687068873,-1.60015019389544,-0.0391347876184127,-0.0385313801747036 +10.63,0.242126124793105,1.02236309000908,1.56011208794686,1.59074617276609,-1.60028170716065,-0.0393117470515618,-0.0387072021394643 +10.632,0.24212637420388,1.02245998530088,1.56006179865677,1.59083550112056,-1.60041321639153,-0.0394886651871997,-0.0388829726765434 +10.634,0.242126674098147,1.02255701252279,1.56001138968645,1.5909248431817,-1.60054472343064,-0.0396655418466575,-0.0390586912621485 +10.636,0.242127010977774,1.02265416032514,1.5599608698774,1.59101418731678,-1.60067622764809,-0.0398423819736198,-0.0392343562383657 +10.638,0.242127374022163,1.02275141481678,1.55991024822139,1.59110351713382,-1.60080773050472,-0.0400191871223109,-0.0394099691510569 +10.64,0.242127752126332,1.02284876051568,1.55985953717525,1.59119281871215,-1.60093923105052,-0.040195963629507,-0.0395855302503184 +10.642,0.242128137482834,1.02294618100653,1.55980874815359,1.59128207485976,-1.60107073048297,-0.0403727140556004,-0.039761042766237 +10.644,0.242128522460473,1.02304365978541,1.55975789487982,1.59137127223392,-1.60120222764604,-0.0405494453423237,-0.0399365083640759 +10.646,0.242128903018701,1.02314118076931,1.55970698896487,1.59146039544323,-1.601333723581,-0.0407261602536203,-0.0401119313883323 +10.648,0.242129275431965,1.02323872896058,1.55965604336684,1.59154943397145,-1.60146521702597,-0.0409028655565817,-0.040287314306468 +10.65,0.24212963955053,1.02333629075604,1.55960506811497,1.59163837606522,-1.60159670895643,-0.0410795634980058,-0.0404626619503141 +10.652,0.242129995393261,1.02343385439915,1.55955407391961,1.59172721542523,-1.60172819808535,-0.0412562600334702,-0.040637976977685 +10.654,0.242130346284767,1.02353141007515,1.55950306806711,1.59181594486836,-1.60185968539124,-0.0414329563615023,-0.0408132641336943 +10.656,0.242130695352363,1.0236289501543,1.55945205818844,1.59190456279455,-1.60199116961926,-0.0416096572121927,-0.0409885257507978 +10.658,0.242131048579779,1.02372646909089,1.55940104831909,1.59199306665033,-1.60212265179596,-0.0417863624468357,-0.0411637660435193 +10.66,0.242131411250945,1.02382396348802,1.55935004280741,1.59208145921248,-1.60225413073192,-0.0419630754054286,-0.0413389866571368 +10.662,0.24213179096447,1.02392143184117,1.5592990425102,1.59216974190515,-1.60238560752351,-0.0421397945676303,-0.0415141910001805 +10.664,0.242132194067487,1.02401887447296,1.5592480488041,1.59225792096028,-1.602517081058,-0.0423165219492833,-0.0416893798425152 +10.666,0.242132628672886,1.02411629317474,1.55919705987467,1.59234600065222,-1.60264855250351,-0.0424932548118603,-0.0418645556824898 +10.668,0.242133101121403,1.02421369106758,1.55914607478668,1.59243398940077,-1.60278002081768,-0.0426699940925012,-0.0420397183879774 +10.67,0.24213361903626,1.02431107219841,1.55909508982118,1.5925218929867,-1.60291148722765,-0.0428467361442818,-0.0422148695900285 +10.672,0.24213418784239,1.02440844138182,1.55904410256167,1.59260972065816,-1.60304295074311,-0.0430234811821652,-0.0423900083560474 +10.674,0.242134813882356,1.02450580380149,1.55899310823807,1.59269747838092,-1.60317441262857,-0.0432002250352671,-0.0425651355993369 +10.676,0.24213550100994,1.02460316487816,1.55894210379283,1.59278517499591,-1.60330587192153,-0.0433769675920879,-0.0427402497719161 +10.678,0.242136253778925,1.02470052991512,1.55889108420026,1.59287281554264,-1.60343732989897,-0.0435537045478209,-0.0429153512791091 +10.68,0.24213707411616,1.0247979040238,1.55884004648739,1.59296040749856,-1.60356878560125,-0.0437304358354437,-0.0430904381800871 +10.682,0.242137964582928,1.02489529183687,1.55878898600879,1.59304795419638,-1.60370024029445,-0.04390715735509,-0.0432655105980888 +10.684,0.242138925121721,1.02499269750706,1.55873790040909,1.5931354611579,-1.60383169300035,-0.0440838693821016,-0.0434405664189527 +10.686,0.242139956380047,1.0250901244962,1.55868678584523,1.59322292960886,-1.60396314495578,-0.0442605682705468,-0.0436156056900281 +10.688,0.242141056516845,1.02518757564842,1.55863564088859,1.59331036290373,-1.60409459514863,-0.0444372548342451,-0.0437906263100476 +10.69,0.242142224571687,1.02528505304997,1.55858446269712,1.59339776012755,-1.604226044775,-0.0446139260217233,-0.0439656284126827 +10.692,0.242143457311736,1.0253825581665,1.55853325086367,1.59348512259572,-1.60435749278106,-0.0447905832707504,-0.0441406100444368 +10.694,0.242144752625874,1.02548009175926,1.55848200354805,1.59357244752229,-1.60448894031806,-0.0449672241565995,-0.04431557153159 +10.696,0.242146106391454,1.02557765406869,1.55843072128402,1.59365973457105,-1.60462038628981,-0.0451438507242125,-0.0444905111458266 +10.698,0.242147515872743,1.02567524476737,1.55837940308555,1.59374697956464,-1.60475183180527,-0.0453204611150628,-0.0446654294556131 +10.7,0.242148976588134,1.02577286316946,1.55832805022752,1.59383418106028,-1.60488327573135,-0.0454970578833875,-0.0448403249816368 +10.702,0.242150485694896,1.02587050819968,1.55827666234165,1.59392133407362,-1.60501471914238,-0.045673639608962,-0.0450151985352342 +10.704,0.242152038841165,1.02596817860891,1.55822524118557,1.59400843665372,-1.60514616087795,-0.0458502092048175,-0.0451900488672131 +10.706,0.242153633523492,1.02606587294116,1.55817378674246,1.59409548359868,-1.60527760198859,-0.0460267655238369,-0.0453648769967316 +10.708,0.242155265913005,1.02616358973922,1.55812230099064,1.59418247300927,-1.6054090412983,-0.0462033116651395,-0.0455396818576763 +10.71,0.242156934177657,1.02626132749618,1.55807078401771,1.59426939997918,-1.60554047984558,-0.046379846581779,-0.0457144646214511 +10.712,0.242158635277439,1.02635908484051,1.55801923779899,1.59435626311303,-1.60567191645068,-0.0465563733917961,-0.0458892243449079 +10.714,0.242160368248717,1.02645686046426,1.55796766233271,1.59444305818128,-1.60580335215116,-0.0467328909927748,-0.0460639622899984 +10.716,0.24216213096851,1.02655465328267,1.55791605943147,1.59452978459579,-1.60593478577374,-0.0469094023817803,-0.0462386775765101 +10.718,0.242163923403084,1.02665246233687,1.55786442888092,1.59461643902621,-1.60606621836397,-0.0470859062805003,-0.0464133715006801 +10.72,0.242165744345503,1.02675028692828,1.55781277224433,1.5947030218331,-1.60619764876264,-0.0472624054662695,-0.0465880431949208 +10.722,0.24216759463425,1.02684812649826,1.55776108904357,1.59478953064885,-1.60632907802925,-0.047438898409366,-0.0467626939465125 +10.724,0.242169473871123,1.02694598074156,1.55770938057413,1.59487596677378,-1.60646050502311,-0.0476153876153995,-0.046937322865357 +10.726,0.24217138361788,1.02704384946849,1.5576576461045,1.59496232872916,-1.60659193082042,-0.0477918712743818,-0.0471119312029446 +10.728,0.242173324102983,1.027141732704,1.55760588669705,1.59504861862534,-1.60672335430027,-0.0479683516131666,-0.0472865180281445 +10.73,0.242175297405051,1.02723963053966,1.55755410142065,1.59513483569697,-1.6068547765554,-0.0481448265543971,-0.0474610845459189 +10.732,0.242177304157099,1.02733754322573,1.55750229117212,1.59522098265394,-1.6069861964832,-0.0483212980765867,-0.0476356297803863 +10.734,0.242179346725147,1.02743547102008,1.55745045489683,1.59530705920963,-1.6071176151904,-0.0484977638800892,-0.0478101548923063 +10.736,0.242181425917616,1.02753341428013,1.55739859340567,1.59539306842533,-1.60724903158925,-0.0486742257518544,-0.0479846588681936 +10.738,0.242183544166099,1.0276313733148,1.55734670559914,1.5954790102414,-1.6073804467964,-0.0488506812351883,-0.0481591428354342 +10.74,0.242185702245893,1.02772934848143,1.55729479227597,1.59556488782429,-1.60751185973433,-0.0490271319961697,-0.0483336057560899 +10.742,0.242187902463973,1.02782734004509,1.55724285235742,1.59565070110848,-1.60764327152485,-0.0492035754941075,-0.0485080487385908 +10.744,0.242190145394561,1.02792534828362,1.55719088668531,1.59573645315277,-1.60777468109577,-0.049380013346968,-0.0486824707349976 +10.746,0.242192433077204,1.02802337335617,1.55713889424475,1.59582214369808,-1.60790608956934,-0.0495564429999671,-0.0488568728484764 +10.748,0.242194765769144,1.02812141541751,1.55708687595094,1.59590777553698,-1.60803749587424,-0.0497328660880016,-0.0490312540330986 +10.75,0.242197145154327,1.02821947449583,1.55703483087013,1.5959933480896,-1.6081689011291,-0.0499092801005823,-0.0492056153966592 +10.752,0.242199571112432,1.02831755061528,1.55698275999576,1.59607886378741,-1.6083003042599,-0.0500856867400412,-0.0493799559024937 +10.754,0.24220204493789,1.0284156436816,1.55693066246884,1.59616432166705,-1.60843170637874,-0.0502620835818651,-0.0495542766675659 +10.756,0.24220456612392,1.02851375361066,1.55687853934496,1.59624972376707,-1.6085631064065,-0.0504384724282291,-0.0497285766661834 +10.758,0.24220713558935,1.02861188021928,1.55682638981587,1.59633506873748,-1.60869450544703,-0.0506148509635962,-0.0499028570235893 +10.76,0.242209752474996,1.02871002335697,1.55677421496956,1.59642035824645,-1.60882590241505,-0.0507912211038048,-0.0500771167217903 +10.762,0.242212417375313,1.0288081827989,1.55672201401519,1.59650559060205,-1.60895729840563,-0.0509675806474535,-0.0502513568890932 +10.764,0.242215129143948,1.02890635837804,1.55666978803828,1.59659076716509,-1.60908869232737,-0.0511439316212765,-0.0504255765084839 +10.766,0.24221788812697,1.02900454987746,1.55661753623102,1.59667588597894,-1.60922008526714,-0.0513202719282839,-0.0505997767036344 +10.768,0.242220692974401,1.0291027571603,1.55656525964443,1.59676094818434,-1.60935147612835,-0.0514966036904625,-0.0507739564503665 +10.77,0.242223543871915,1.02920098005948,1.5565129574256,1.59684595165343,-1.60948286599093,-0.0516729248948678,-0.050948116859629 +10.772,0.242226439355467,1.0292992185037,1.55646063056791,1.59693089740272,-1.60961425375466,-0.051849237734793,-0.0511222568925572 +10.774,0.242229379538824,1.02939747240326,1.55640827815616,1.59701578322796,-1.60974564049425,-0.0520255402550308,-0.0512963776408017 +10.776,0.242232362928977,1.02949574177146,1.55635590111541,1.59710061011229,-1.6098770251077,-0.0522018346925889,-0.0514704780455812 +10.778,0.242235389647516,1.02959402660612,1.5563034984641,1.59718537585944,-1.61000840866631,-0.0523781191221976,-0.0516445591755714 +10.78,0.242238458245219,1.02969232700651,1.55625107106142,1.5972700814951,-1.61013979006811,-0.052554395797463,-0.0518186199501807 +10.782,0.242241568915994,1.02979064305108,1.55619861786802,1.59735472489698,-1.61027117038273,-0.052730662797443,-0.0519926614150179 +10.784,0.242244720309767,1.02988897491076,1.55614613969108,1.59743930718836,-1.6104025485098,-0.0529069223688712,-0.0521666824694355 +10.786,0.242247912738434,1.02998732272404,1.55609363545191,1.59752382636462,-1.61053392551867,-0.0530831725743222,-0.0523406841394228 +10.788,0.24225114498681,1.03008568670784,1.55604110592763,1.59760828367884,-1.6106653003118,-0.0532594156358588,-0.0525146653092978 +10.79,0.242254417510642,1.03018406703144,1.55598855002446,1.5976926772651,-1.61079667395923,-0.0534356495850026,-0.0526886269917431 +10.792,0.242257729245944,1.03028246392642,1.55593596851504,1.59777700851688,-1.61092804536702,-0.0536118766078973,-0.0528625680634063 +10.794,0.242261080799587,1.03038087756079,1.55588336031619,1.59786127570797,-1.61105941560645,-0.0537880946970402,-0.0530364895317276 +10.796,0.242264471257724,1.03047930814944,1.55583072622073,1.59794548036475,-1.61119078358755,-0.0539643059978411,-0.0532103902741443 +10.798,0.242267901369806,1.0305777558298,1.55577806517887,1.59802962088602,-1.61132215038294,-0.0541405084618736,-0.0533842713013535 +10.8,0.242271370357042,1.03067622077377,1.55572537802369,1.59811369891049,-1.61145351490659,-0.0543167041945629,-0.0535581314998133 +10.802,0.242274879090851,1.03077470306585,1.55567266375548,1.59819771293685,-1.6115848782323,-0.0544928911095955,-0.0537319718911299 +10.804,0.242278426902401,1.03087320281729,1.55561992326035,1.59828166468777,-1.61171623927764,-0.0546690712773893,-0.0539057913775979 +10.806,0.242282014756538,1.030971720047,1.55556715559726,1.59836555273147,-1.61184759911717,-0.0548452425802546,-0.0540795909974919 +10.808,0.242285642063432,1.03107025479819,1.55551436170965,1.59844937884344,-1.61197895667155,-0.0550214070612836,-0.0542533696734708 +10.81,0.242289309848955,1.03116880702209,1.55546154071519,1.59853314163049,-1.61211031301557,-0.0551975625798698,-0.0544271284636662 +10.812,0.242293017569339,1.0312673766968,1.5554086936106,1.59861684289105,-1.6122416670724,-0.055373711160685,-0.0546008663128787 +10.814,0.242296766278851,1.03136596371341,1.55535581956455,1.59870048124249,-1.61237301991646,-0.0555498506492279,-0.0547745842994707 +10.816,0.242300555448185,1.03146456799655,1.55530291961612,1.59878405848058,-1.61250437047286,-0.055725983060617,-0.0549482813893839 +10.818,0.242304386130094,1.03156318939227,1.55524999297137,1.59886757321046,-1.61263571981509,-0.0559021062349258,-0.0551219586789449 +10.82,0.242308257782063,1.03166182778948,1.55519704069612,1.59895102720555,-1.6127670668697,-0.0560782221856008,-0.055295615151821 +10.822,0.242312171430324,1.03176048300877,1.55514406201677,1.59903441904235,-1.61289841270878,-0.0562543287544356,-0.0554692519179193 +10.824,0.242316126497156,1.03185915492398,1.55509105800817,1.59911775045882,-1.61302975625988,-0.0564304279595013,-0.0556428679734579 +10.826,0.24232012396354,1.03195784335115,1.55503802789932,1.59920101999292,-1.61316109859339,-0.056606517649701,-0.0558164644361811 +10.828,0.242324163201217,1.03205654816946,1.55498497275685,1.59928422934031,-1.61329243863756,-0.0567825998521732,-0.0559900403087487 +10.83,0.242328245134043,1.03215526920965,1.55493189179626,1.59936737699645,-1.6134237774608,-0.0569586724264383,-0.056163596710497 +10.832,0.242332369074794,1.03225400637362,1.55487878606147,1.59945046461328,-1.61355511399192,-0.0571347374112915,-0.0563371326443452 +10.834,0.242336535885127,1.03235275952197,1.55482565474193,1.59953349064458,-1.61368644929724,-0.0573107926786055,-0.056510649225305 +10.836,0.24234074481697,1.03245152859189,1.55477249884864,1.59961645670139,-1.61381778230605,-0.057486840279767,-0.0566841454510729 +10.838,0.242344996670886,1.03255031348343,1.55471931753724,1.59969936120023,-1.61394911408256,-0.0576628780992276,-0.0568576224274432 +10.84,0.242349290641781,1.03264911417565,1.55466611178059,1.59978220571696,-1.61408044355654,-0.0578389082005605,-0.0570310791427048 +10.842,0.242353627475381,1.03274793061157,1.55461288069796,1.59986498863755,-1.61421177179015,-0.0580149284798613,-0.0572045166900489 +10.844,0.242358006317939,1.03284676281271,1.55455962522401,1.5999477115101,-1.61434309771371,-0.0581909410115076,-0.0573779340458304 +10.846,0.242362427870478,1.03294561076282,1.55450634444386,1.60003037269792,-1.61447442238741,-0.0583669437015063,-0.057551332288996 +10.848,0.242366891242139,1.0330444745211,1.55445303925838,1.60011297372943,-1.61460574474226,-0.0585429386330368,-0.0577247103832094 +10.85,0.242371397101839,1.03314335410514,1.55439970872478,1.6001955129534,-1.61473706583662,-0.0587189237198246,-0.0578980693932653 +10.852,0.242375944534899,1.03324224960307,1.5543463537178,1.60027799188658,-1.61486838460229,-0.0588949010515393,-0.0580714082710266 +10.854,0.242380534191775,1.03334116105616,1.55429297327565,1.60036040887089,-1.61499970209595,-0.0590708685472571,-0.0582447280687407 +10.856,0.242385165147639,1.03344008857036,1.55423956825668,1.60044276541869,-1.61513101725038,-0.0592468283007696,-0.0584180277286997 +10.858,0.242389838047869,1.03353903219898,1.55418613769019,1.60052505987188,-1.61526233112067,-0.0594227782341791,-0.0585913082933427 +10.86,0.24239455197031,1.03363799205405,1.55413268242833,1.60060729374468,-1.61539364264071,-0.0595987204431628,-0.0587645686985292 +10.862,0.242399307567268,1.0337369681894,1.55407920150151,1.60068946538463,-1.61552495286419,-0.0597746528507248,-0.058937809980299 +10.864,0.242404501827719,1.03383086875504,1.5540304375498,1.60076271077548,-1.61563717082034,-0.0599234639499857,-0.0590848517615485 +10.866,0.242409112178143,1.03392515532942,1.55397619384807,1.60084272607398,-1.61576964714755,-0.0601000004530177,-0.0592584311938797 +10.868,0.242413452379128,1.03402111658055,1.55392246811853,1.60092443895404,-1.61590363509863,-0.0602803093896589,-0.0594352040756644 +10.87,0.242417745912043,1.03411862302083,1.55386956921002,1.60100675587563,-1.61603737591369,-0.0604604420352468,-0.0596120464766861 +10.872,0.242422535879361,1.03421223674675,1.55382182635206,1.60108050947702,-1.61615164776953,-0.0606127792944851,-0.0597623884521472 +10.874,0.242427306426576,1.03430198501731,1.55377335647783,1.60115235844244,-1.61626675001036,-0.0607650782428522,-0.0599127241755153 +10.876,0.242431430750997,1.0343943380266,1.55371963868653,1.60123277753485,-1.61640334005729,-0.0609483116192316,-0.0600924139832184 +10.878,0.24243544014202,1.03449024570532,1.55366683800984,1.60131557137401,-1.61654096038495,-0.0611346876389052,-0.0602749884137171 +10.88,0.242439684185841,1.03458908386224,1.55361479831991,1.60139930095507,-1.61667776007294,-0.0613198264115753,-0.0604569258476625 +10.882,0.242444378839707,1.03469006578578,1.55356270759991,1.60148346321424,-1.61681368376304,-0.0615033001085774,-0.0606377921421993 +10.884,0.242449614736959,1.0347925007043,1.55350994288317,1.60156780545615,-1.61694885228229,-0.0616852918095123,-0.0608175430330519 +10.886,0.242455725852491,1.03489074709636,1.55346095738604,1.60164340879302,-1.61706430248425,-0.0618389509420842,-0.0609700366286159 +10.888,0.242461687391071,1.03498986084198,1.55340538468702,1.60172574210367,-1.61719948799863,-0.0620192740822805,-0.0611479997175899 +10.89,0.242467675307629,1.03509085077625,1.55334934238926,1.60180972384926,-1.61733575112167,-0.062202510035188,-0.0613281789191387 +10.892,0.24247376444875,1.03519338766784,1.55329335835801,1.60189424589482,-1.61747140689477,-0.0623848686608731,-0.0615075463634104 +10.894,0.242479980683376,1.03529698292767,1.55323726531902,1.60197894837474,-1.61760638537855,-0.0625659564071603,-0.0616858212756652 +10.896,0.242486309026285,1.03540118787079,1.5531809107308,1.60206363964624,-1.61774077432818,-0.0627459141934342,-0.0618630731246811 +10.898,0.242493022640559,1.03550053293209,1.55312905968112,1.6021394606565,-1.61785558060647,-0.062897864826379,-0.0620132699135419 +10.9,0.242499167445638,1.03560018877824,1.55307142608911,1.60222177710091,-1.61799022999505,-0.0630767385834469,-0.0621891818663931 +10.902,0.242504975725423,1.03570124283514,1.55301414911213,1.6023054974368,-1.61812604161785,-0.0632587780645932,-0.0623676086326379 +10.904,0.242510604027685,1.03580341812575,1.55295768972821,1.60238949328594,-1.61826131394127,-0.0634401793810903,-0.0625455382118387 +10.906,0.242516168321186,1.03590626930837,1.55290176616964,1.60247339494434,-1.61839596336672,-0.0636205323894246,-0.0627226837373338 +10.908,0.242522033663901,1.03600429130128,1.55285092854829,1.60254833315132,-1.61851098102616,-0.0637729010780992,-0.0628729648329328 +10.91,0.242527377409125,1.03610262509955,1.5527946247004,1.60262959538336,-1.61864579640961,-0.0639521842009948,-0.0630490954372305 +10.912,0.242532494462546,1.03620235063914,1.55273881756176,1.60271212568247,-1.61878173415348,-0.0641346421280993,-0.0632278462399538 +10.914,0.242537585554218,1.03630320131792,1.55268382875028,1.60279483419099,-1.61891710255491,-0.0643164689108807,-0.0634061695045745 +10.916,0.242542786025434,1.03640475808985,1.55262928391464,1.60287740766026,-1.61905182161458,-0.0644972542718521,-0.0635837410672792 +10.918,0.24254817519668,1.03650665382122,1.55257483488938,1.6029597142095,-1.61918597622263,-0.0646771058696226,-0.0637605827762433 +10.92,0.242554044639605,1.0366035072192,1.55252512708704,1.60303306562746,-1.61930057033926,-0.0648291443669015,-0.0639106336949788 +10.922,0.242559829811261,1.03669548234226,1.55247451944942,1.60310413913534,-1.61941593960601,-0.0649811633296309,-0.0640604498424115 +10.924,0.242564974714942,1.03678923202985,1.55241864469118,1.60318326779031,-1.61955274312919,-0.065164082811709,-0.0642394103840677 +10.926,0.242569926093064,1.03688588749827,1.5523639462108,1.60326443889259,-1.61969053177594,-0.0653501934725942,-0.0644211732038748 +10.928,0.242575001176319,1.03698496705568,1.55231041761925,1.60334630689077,-1.61982746540302,-0.0655351324043233,-0.0646022905039004 +10.93,0.2425804144551,1.03708579511528,1.55225730769053,1.60342843101895,-1.61996349325583,-0.0657184696880071,-0.0647823843060248 +10.932,0.242586511393572,1.03718265982866,1.55220887564116,1.60350201711833,-1.62007965562619,-0.0658733533301455,-0.0649353479267344 +10.934,0.242592544122142,1.03728054102535,1.55215427554646,1.60358218744614,-1.62021542062053,-0.0660546695327305,-0.0651137984058469 +10.936,0.24259874141428,1.03738040682615,1.55209941513951,1.60366393191951,-1.62035214711918,-0.0662387569305995,-0.0652945007409285 +10.938,0.242605221716433,1.03748190206332,1.5520446360051,1.60374617579966,-1.62048817548323,-0.0664218573992848,-0.0654743993192418 +10.94,0.242612028291653,1.03758453434417,1.55198964168289,1.60382860474376,-1.62062345036675,-0.0666035968969125,-0.065653179125312 +10.942,0.242619148015446,1.03768786925352,1.55193419568765,1.60391106879316,-1.62075807591656,-0.0667841162228707,-0.0658308856678276 +10.944,0.242626523574377,1.03779156242563,1.55187820594326,1.6039934796687,-1.62089215595442,-0.0669636124855993,-0.0660076060498076 +10.946,0.24263427376449,1.03789024481308,1.55182661914829,1.60406724904607,-1.62100669859842,-0.0671152507369414,-0.0661573538613824 +10.948,0.242641590166826,1.03798918368474,1.55176903309663,1.60414746477383,-1.62114111748715,-0.0672937992461802,-0.0663327866531401 +10.95,0.242648652162904,1.03808956478118,1.55171168684629,1.60422914796115,-1.62127672365864,-0.0674755417407733,-0.0665107484494558 +10.952,0.242655586415654,1.03819117610432,1.55165508617549,1.60431121185074,-1.62141181602301,-0.0676566730776186,-0.0666882302761271 +10.954,0.24266248786096,1.03829361218704,1.55159896802338,1.60439330481036,-1.62154630819811,-0.0678367707491673,-0.0668649452883064 +10.956,0.242669591452264,1.0383913765367,1.55154798759342,1.6044667596242,-1.62166119265899,-0.0679889476728275,-0.0670148663778165 +10.958,0.242676240781229,1.03848961032997,1.55149140292589,1.60454652852041,-1.62179588901073,-0.068167958439124,-0.0671905958653818 +10.96,0.24268269343067,1.0385894037234,1.55143521893555,1.60462762223448,-1.62193171636223,-0.0683501222513647,-0.067368943741496 +10.962,0.242689129829272,1.03869048204066,1.55137976601597,1.60470895863186,-1.62206698570134,-0.068531647562577,-0.0675468587685362 +10.964,0.242695668993418,1.03879241004838,1.55132467333388,1.60479021948768,-1.62220161632522,-0.0687121248075957,-0.0677240119679189 +10.966,0.242702376119073,1.03889480023588,1.55126959702508,1.60487126353489,-1.62233569142773,-0.0688916605935718,-0.0679004211211588 +10.968,0.242709267377983,1.03899735367407,1.55121432630814,1.60495202623974,-1.62246929797422,-0.0690704188729702,-0.0680761364100955 +10.97,0.242716468618051,1.03909474444051,1.55116374334559,1.60502405617568,-1.62258343273912,-0.0692215628421115,-0.0682251571140701 +10.972,0.242723312130831,1.03919229111669,1.55110725149721,1.60510232522148,-1.62271749599307,-0.0693997592977433,-0.0684000449348005 +10.974,0.242730003370314,1.03929124434907,1.55105102805555,1.60518195020838,-1.6228527886812,-0.0695812921580097,-0.0685776250438799 +10.976,0.242736691210925,1.03939145207529,1.55099551687148,1.60526191522439,-1.62298760561988,-0.0697623332555331,-0.0687548519438989 +10.978,0.24274348388944,1.03949256414901,1.55094040454055,1.60534193275686,-1.62312185581217,-0.0699424305466969,-0.0689314055920994 +10.98,0.242750443885909,1.03959424544671,1.55088536871855,1.60542188025894,-1.62325560864197,-0.0701216659213733,-0.0691073026371056 +10.982,0.242757709532176,1.03969110434898,1.55083518432832,1.60549331346865,-1.62336986392335,-0.0702732135513593,-0.0692565469561365 +10.984,0.242764686998433,1.03978839051945,1.55077909256959,1.60557108800444,-1.62350402444372,-0.0704517139344423,-0.0694316585876101 +10.986,0.242771592174236,1.03988729688487,1.55072319534113,1.60565031387955,-1.62363939459053,-0.0706334758327112,-0.0696094546009875 +10.988,0.242778576240525,1.03998762191131,1.55066788508548,1.60572996162905,-1.6237742740977,-0.07081468322211,-0.0697868717241649 +10.99,0.242785740672577,1.04008897662073,1.55061282446573,1.60580973283107,-1.62390857540563,-0.0709948912114665,-0.0699635756825118 +10.992,0.242793227153933,1.04018587512799,1.55056270476622,1.60588115662661,-1.62402329293557,-0.0711472350069343,-0.0701135425380072 +10.994,0.242800492719161,1.04028347293986,1.55050663594625,1.60595897817228,-1.62415783977487,-0.0713263453080884,-0.0702892669312675 +10.996,0.2428077492216,1.04038288380122,1.55045066742032,1.60603829532701,-1.62429353132985,-0.0715085715997852,-0.0704675724755613 +10.998,0.242815139785445,1.04048383980062,1.55039516113883,1.6061180588667,-1.62442868082574,-0.0716901211724298,-0.0706453971415131 +11,0.242822747648919,1.04058589984735,1.55033977873024,1.60619796256933,-1.62456320707729,-0.0718705757162231,-0.0708224056501364 +11.002,0.242830604263151,1.04068865943347,1.5502842098675,1.60627786247517,-1.62469719183967,-0.0720500348106828,-0.070998613595287 +11.004,0.242838696224176,1.04079179223318,1.55022827670452,1.60635767333693,-1.62483071968128,-0.0722286446239191,-0.0711740696628449 +11.006,0.242846980696137,1.04089504989682,1.55017192665012,1.6064373339013,-1.62496385211432,-0.0724065146022246,-0.0713488128488827 +11.008,0.242855395774005,1.04099824887499,1.55011520425487,1.60651679945057,-1.62509662597264,-0.0725837229731781,-0.0715228725592632 +11.01,0.242863875630993,1.04110125332403,1.55005821297656,1.60659602560117,-1.62522906086375,-0.0727603135734953,-0.0716962757506887 +11.012,0.24287235646908,1.04120395911317,1.55000108841587,1.60667496883776,-1.62536115786701,-0.0729363105520605,-0.0718690422703191 +11.014,0.242880785528895,1.04130628079353,1.54994397144768,1.60675357738306,-1.62549290628435,-0.0731117146828593,-0.072041186955114 +11.016,0.242889121337015,1.04140814275315,1.54988699575554,1.6068317969028,-1.62562428200472,-0.0732865150748381,-0.0722127132673945 +11.018,0.242897358453749,1.04150444457596,1.54983526030154,1.60690152530533,-1.62573651778535,-0.0734343501832602,-0.0723580850544819 +11.02,0.242905051509436,1.04160045987891,1.54977826000996,1.60697700155451,-1.625868203346,-0.0736084124421488,-0.0725287269519844 +11.022,0.242912416960437,1.04169744178488,1.54972211942108,1.60705345158033,-1.62600086613606,-0.0737854275183221,-0.072701826988684 +11.024,0.242919638475679,1.04179521817554,1.54966725380554,1.60712982569797,-1.62613274187165,-0.0739615330068848,-0.0728742818749263 +11.026,0.242926861246153,1.04189339703132,1.54961330642548,1.60720578320724,-1.62626365012075,-0.0741361597585678,-0.0730456509712342 +11.028,0.242934180148073,1.04199158893723,1.54955990676958,1.60728115136428,-1.62639356933021,-0.0743092608294339,-0.0732158172896742 +11.03,0.242941642817949,1.0420894619478,1.54950679351826,1.60735582226238,-1.62652248911544,-0.0744808458010324,-0.0733846910357804 +11.032,0.242949254943845,1.04218675418959,1.54945382921888,1.60742973214703,-1.62665038962358,-0.074650916222192,-0.0735521811830619 +11.034,0.242956993981878,1.04228326889392,1.54940097923554,1.60750284105659,-1.62677724358154,-0.0748194510625217,-0.0737182041680702 +11.036,0.242964818366237,1.04237886173315,1.54934828683996,1.60757512554443,-1.62690301380657,-0.0749864162095153,-0.0738826843291136 +11.038,0.242972680020317,1.04247342573652,1.54929584212284,1.60764656422967,-1.62702765736792,-0.0751517618051214,-0.0740455568897599 +11.04,0.242980530191818,1.04256687759888,1.5492437597699,1.60771713544723,-1.62715112378797,-0.0753154314407663,-0.0742067625027449 +11.042,0.242988286834514,1.04265462982517,1.54919668738586,1.60777972104921,-1.62725651933819,-0.075453847279254,-0.074343331617955 +11.044,0.242995620298129,1.04274140610309,1.54914512338968,1.60784690177526,-1.62737850945171,-0.0756144565313786,-0.0745013866343622 +11.046,0.243002690311465,1.04282833707438,1.54909462588882,1.60791446082014,-1.62750046205592,-0.0757764566154642,-0.0746604182522377 +11.048,0.243009635611755,1.04291526506612,1.5490456089341,1.60798147343891,-1.62762077634295,-0.0759363738618741,-0.0748176163020762 +11.05,0.243016563416072,1.04300182907836,1.5489977870316,1.60804763760905,-1.6277392732827,-0.0760936778713419,-0.0749725662596656 +11.052,0.243023539554441,1.04308766543545,1.54895085588905,1.60811279253099,-1.62785591777558,-0.0762483061624059,-0.0751251479242903 +11.054,0.243030590290799,1.04317245824794,1.54890460435729,1.60817683012485,-1.62797068512413,-0.0764002510119102,-0.0752752666080563 +11.056,0.243037707735309,1.04325595213579,1.54885892739322,1.60823967629622,-1.62808354372921,-0.0765494989594353,-0.0754228281397116 +11.058,0.243044860539396,1.04333794923723,1.54881380950596,1.60830127675832,-1.6281944553696,-0.076696020312881,-0.0755677448252597 +11.06,0.243052002845885,1.04341829905232,1.54876930200295,1.60836158967766,-1.62830337441362,-0.0768397739196987,-0.075709937245199 +11.062,0.243059083988928,1.04349688591691,1.54872549707254,1.60842057634792,-1.62841024994291,-0.0769807073730772,-0.0758493353327884 +11.064,0.243066054566527,1.043573617344,1.54868250696431,1.60847819772176,-1.62851502557358,-0.077118761636034,-0.0759858749675323 +11.066,0.243072871645348,1.0436484146872,1.54864044670267,1.60853441037233,-1.62861764116395,-0.077253870980605,-0.0761194956529427 +11.068,0.243079500677018,1.04372120674969,1.54859942369061,1.60858916696427,-1.62871803276877,-0.0773859658582502,-0.0762501365753433 +11.07,0.243085916646842,1.04379192602331,1.54855953112602,1.6086424161167,-1.62881613387811,-0.0775149724089508,-0.076377734633496 +11.072,0.243092103228301,1.04386050706339,1.54852084615201,1.60869410472035,-1.62891187546719,-0.0776408139132302,-0.0765022221767688 +11.074,0.243098051730653,1.04392688622075,1.54848342999471,1.60874417933994,-1.62900518680251,-0.0777634102474684,-0.0766235263914512 +11.076,0.243103759274339,1.04399100213152,1.54844733014462,1.60879258839216,-1.62909599555454,-0.0778826784906277,-0.0767415687520577 +11.078,0.243109227155956,1.04405279640182,1.54841258292756,1.60883928338406,-1.62918422825629,-0.0779985326274285,-0.0768562653815908 +11.08,0.243114459201479,1.04411221417005,1.54837921635717,1.60888421997413,-1.62926981045181,-0.078110883779502,-0.0769675274782602 +11.082,0.243119460429998,1.04416920433919,1.54834725264399,1.60892735834377,-1.62935266692197,-0.0782196402328919,-0.0770752620231483 +11.084,0.243124235993869,1.04422371952546,1.54831671020664,1.60896866326303,-1.62943272217116,-0.0783247081022466,-0.0771793729590409 +11.086,0.243128790527348,1.04427571962427,1.54828760127246,1.60900810968939,-1.62950991534017,-0.078426012034928,-0.0772797819884024 +11.088,0.243133128070707,1.04432517696234,1.54825993142428,1.60904568650969,-1.6295842071761,-0.0785235058460765,-0.0773764394689286 +11.09,0.243137252447418,1.04437207985931,1.54823370088216,1.60908139643899,-1.62965557748945,-0.0786171692611182,-0.0774693219213434 +11.092,0.243141167835127,1.04441643422464,1.54820890475216,1.60911525485176,-1.62972402218283,-0.0787070032847784,-0.077558428094327 +11.094,0.243144879321357,1.04445826358367,1.54818553246375,1.6091472882461,-1.62978955066519,-0.0787930261350459,-0.0776437751813343 +11.096,0.243148393302508,1.04449760800431,1.54816356692212,1.60917753260933,-1.62985218367433,-0.0788752699132769,-0.0777253954021347 +11.098,0.243151717653627,1.04453452233455,1.54814298379162,1.60920603182114,-1.62991195145217,-0.0789537779178406,-0.0778033329932552 +11.1,0.243154861655549,1.04456907406826,1.54812375116105,1.60923283616134,-1.62996889221608,-0.0790286024895074,-0.077877641628648 +11.102,0.243157835709709,1.04460134106477,1.54810582969228,1.60925800094556,-1.63002305087705,-0.0790998032931192,-0.0779483822766406 +11.104,0.243160650897688,1.04463140927175,1.54808917324175,1.60928158528632,-1.63007447796334,-0.0791674459579319,-0.0780156214805194 +11.106,0.243163318454119,1.04465937054308,1.5480737298718,1.60930365096551,-1.63012322871516,-0.0792316010133597,-0.0780794300318863 +11.108,0.243165849220872,1.04468532060582,1.5480594431326,1.60932426140349,-1.63016936232185,-0.0792923430675568,-0.078139881991736 +11.11,0.243168253141451,1.04470935720688,1.54804625348615,1.60934348071492,-1.63021294127834,-0.0793497501841257,-0.0781970540055656 +11.112,0.24317053884064,1.04473157845821,1.54803409975414,1.60936137284934,-1.63025403084148,-0.0794039034180817,-0.0782510248557577 +11.114,0.243172713318915,1.0447520813928,1.54802292049198,1.60937800082144,-1.63029269857084,-0.0794548864767966,-0.0783018751960466 +11.116,0.243174781776,1.04477096074126,1.54801265521668,1.60939342604185,-1.63032901394079,-0.0795027854755739,-0.078349687417765 +11.118,0.243176747564859,1.04478830793573,1.54800324544106,1.60940770776112,-1.63036304801346,-0.0795476887611741,-0.0783945456044306 +11.12,0.243178612266981,1.04480421034502,1.54799463548911,1.60942090263953,-1.63039487316362,-0.0795896867802367,-0.0784365355389146 +11.122,0.243180375872429,1.04481875073985,1.54798677308545,1.609433064452,-1.6304245628481,-0.0796288719732425,-0.0784757447350824 +11.124,0.243182037043461,1.04483200698223,1.54797960972535,1.60944424393253,-1.63045219141358,-0.0796653386783917,-0.0785122624728372 +11.126,0.24318359343836,1.04484405192647,1.54797310084158,1.60945448875661,-1.63047783393717,-0.079699183033486,-0.0785461798216463 +11.128,0.24318504207189,1.04485495351368,1.54796720579071,1.60946384365387,-1.63050156609529,-0.0797305028674715,-0.0785775896427689 +11.13,0.243186379690031,1.04486477503644,1.54796188768505,1.60947235063729,-1.63052346405675,-0.0797593975766123,-0.0786065865645741 +11.132,0.243187603138905,1.044873575546,1.54795711309828,1.60948004933088,-1.63054360439633,-0.0797859679832205,-0.0786332669286266 +11.134,0.243188709710704,1.04488141037176,1.54795285167305,1.60948697737369,-1.63056206402572,-0.0798103161773801,-0.0786577287067568 +11.136,0.243189697452664,1.04488833172138,1.54794907565825,1.60949317087634,-1.63057892013893,-0.0798325453441208,-0.0786800713912442 +11.138,0.243190565428448,1.0448943893301,1.54794575940215,1.60949866490556,-1.6305942501697,-0.0798527595800028,-0.0787003958616379 +11.14,0.243191313924572,1.04489963112946,1.54794287882568,1.60950349397265,-1.63060813175852,-0.079871063704067,-0.078718804232701 +11.142,0.243191944597605,1.04490410390772,1.54794041089758,1.60950769250418,-1.63062064272733,-0.0798875630686203,-0.0787353996885605 +11.144,0.243192460560696,1.04490785393827,1.54793833313071,1.60951129527544,-1.63063186106019,-0.0799023633754146,-0.0787502863084359 +11.146,0.243192866410515,1.04491092755584,1.54793662311526,1.60951433779118,-1.63064186488838,-0.0799155705024958,-0.0787635688893266 +11.148,0.243193168197894,1.04491337166487,1.54793525810192,1.6095168566016,-1.63065073247854,-0.0799272903464245,-0.0787753527708258 +11.15,0.243193373347269,1.0449152341687,1.54793421464454,1.60951888954579,-1.63065854222309,-0.079937628683775,-0.0787857436668093 +11.152,0.243193490531509,1.04491656431275,1.54793346830842,1.60952047591881,-1.63066537263174,-0.0799466910548714,-0.0787948475081753 +11.154,0.243193529509784,1.04491741293874,1.54793299344762,1.60952165656208,-1.63067130232366,-0.079954582671698,-0.0788027703001188 +11.156,0.243193500936895,1.04491783265088,1.54793276305149,1.60952247388036,-1.63067641001978,-0.0799614083508784,-0.0788096179966508 +11.158,0.243193416152807,1.04491787789801,1.54793274865794,1.60952297179121,-1.63068077453487,-0.0799672724716158,-0.0788154963942634 +11.16,0.243193286961216,1.04491760497866,1.54793292032912,1.60952319561527,-1.63068447476915,-0.0799722789575658,-0.0788205110458278 +11.162,0.243193125405673,1.04491707197771,1.54793324668293,1.60952319191725,-1.6306875896996,-0.0799765312808073,-0.0788247671950356 +11.164,0.24319294355127,1.04491633864528,1.54793369497281,1.60952300830868,-1.63069019837065,-0.0799801324854156,-0.0788283697309744 +11.166,0.243192753271725,1.04491546604305,1.54793423139855,1.60952269294478,-1.63069237918987,-0.0799831842724066,-0.078831422219267 +11.168,0.24319256595587,1.04491451392407,1.54793482354357,1.6095222908603,-1.63069420158682,-0.0799857755582428,-0.0788340155467928 +11.17,0.243192392078898,1.04491353761636,1.54793544095228,1.60952184200389,-1.63069572417044,-0.0799879795466011,-0.0788362249050917 +11.172,0.243192240712767,1.04491258571477,1.54793605516316,1.60952138070262,-1.63069699613691,-0.0799898558508782,-0.0788381115665454 +11.174,0.243192119074707,1.04491169871338,1.5479366401553,1.60952093555085,-1.63069805874567,-0.0799914530120142,-0.0788397250985711 +11.176,0.243192032189171,1.04491090841666,1.54793717307103,1.6095205294897,-1.63069894658777,-0.0799928107027362,-0.0788411054406754 +11.178,0.243191982708115,1.0449102379349,1.5479376349769,1.60952018000021,-1.63069968865048,-0.0799939615628456,-0.078842284770133 +11.18,0.243191970904658,1.04490970209131,1.54793801147934,1.60951989937686,-1.63070030920789,-0.0799949327061109,-0.0788432891413368 +11.182,0.243191994830465,1.04490930810328,1.54793829308673,1.60951969506759,-1.6307008285666,-0.0799957469455365,-0.0788441398917844 +11.184,0.24319205060958,1.04490905643594,1.54793847527657,1.60951957007633,-1.6307012636912,-0.0799964237775471,-0.0788448548140541 +11.186,0.243192132831366,1.0449089417553,1.54793855827727,1.6095195234274,-1.63070162873033,-0.0799969801593114,-0.0788454491013551 +11.188,0.243192235001627,1.04490895393079,1.54793854660769,1.60951955068928,-1.63070193546053,-0.079997431108684,-0.0788459360824011 +11.19,0.243192350012705,1.04490907905078,1.547938448435,1.60951964455124,-1.63070219366183,-0.0799977901529342,-0.0788463277678545 +11.192,0.24319247059843,1.04490930042406,1.54793827481689,1.60951979544051,-1.63070241143661,-0.0799980696501315,-0.0788466352347207 +11.194,0.243192589746917,1.04490959954416,1.54793803889063,1.60951999216261,-1.63070259548099,-0.0799982810053531,-0.0788468688767705 +11.196,0.243192701051985,1.04490995699643,1.54793775506317,1.60952022254403,-1.63070275131619,-0.0799984348024272,-0.078847038548707 +11.198,0.243192798991425,1.04491035328926,1.54793743824526,1.60952047405419,-1.63070288348595,-0.0799985408704759,-0.078847153629909 +11.2,0.24319287912704,1.04491076959284,1.54793710316145,1.60952073438422,-1.6307029957248,-0.0799986083029331,-0.0788472230307253 +11.202,0.2431929382268,1.04491118837154,1.54793676375731,1.60952099196224,-1.63070309110136,-0.079998645444905,-0.078847255160969 +11.204,0.243192974313675,1.04491159389961,1.54793643271586,1.60952123638829,-1.6307031721398,-0.0799986598627273,-0.0788472578768257 +11.206,0.243192986648708,1.04491197265378,1.54793612108818,1.60952145877705,-1.63070324092235,-0.0799986583073916,-0.0788472384191108 +11.208,0.243192975657827,1.04491231358125,1.54793583803707,1.60952165200141,-1.63070329917517,-0.0799986466812419,-0.0788472033528152 +11.21,0.243192942812962,1.04491260824587,1.54793559068828,1.60952181083533,-1.6307033483397,-0.079998630015067,-0.0788471585152557 +11.212,0.243192890478418,1.04491285085959,1.54793538408057,1.60952193199948,-1.63070338963124,-0.0799986124605209,-0.0788471089778758 +11.214,0.24319282173329,1.04491303821019,1.54793522120355,1.60952201411704,-1.63070342408644,-0.0799985973007695,-0.0788470590248321 +11.216,0.243192740180179,1.04491316949895,1.54793510311063,1.60952205759078,-1.6307034526012,-0.0799985869804472,-0.0788470121498984 +11.218,0.243192649749634,1.04491324610433,1.54793502909337,1.60952206441499,-1.63070347596033,-0.0799985831544584,-0.0788469710718993 +11.22,0.243192554508748,1.04491327128878,1.54793499690334,1.60952203793717,-1.63070349486024,-0.0799985867539003,-0.0788469377678138 +11.222,0.243192458481143,1.04491324986615,1.54793500300728,1.60952198258527,-1.63070350992578,-0.0799985980664281,-0.078846913521846 +11.224,0.243192365484388,1.04491318784711,1.54793504286224,1.60952190357596,-1.63070352172232,-0.0799986168277198,-0.0788468989881201 +11.226,0.243192278989543,1.04491309207846,1.54793511119782,1.60952180661846,-1.63070353076409,-0.0799986423203185,-0.0788468942642195 +11.228,0.243192202006276,1.04491296989109,1.54793520229413,1.60952169762727,-1.63070353751945,-0.0799986734759962,-0.078846898972519 +11.23,0.243192136995678,1.04491282876908,1.54793531024543,1.60952158245502,-1.63070354241411,-0.079998708977874,-0.0788469123461682 +11.232,0.243192085811699,1.04491267605041,1.54793542920095,1.60952146665459,-1.63070354583278,-0.0799987473588006,-0.0788469333166282 +11.234,0.243192049670963,1.04491251866704,1.5479355535765,1.60952135527765,-1.63070354811983,-0.0799987870929056,-0.0788469605998473 +11.236,0.243192029149703,1.04491236293011,1.54793567823184,1.60952125271398,-1.63070354957958,-0.0799988266777575,-0.078846992778445 +11.238,0.243192024205645,1.04491221436318,1.54793579861126,1.60952116257425,-1.63070355047637,-0.0799988647051385,-0.078847028377645 +11.24,0.243192034221923,1.04491207758463,1.54793591084582,1.60952108761639,-1.6307035510349,-0.0799988999190597,-0.0788470659331237 +11.242,0.243192058069556,1.04491195623804,1.54793601181803,1.60952102971423,-1.63070355144089,-0.0799989312602512,-0.0788471040494037 +11.244,0.243192094184583,1.04491185296774,1.54793609919058,1.60952098986529,-1.6307035518423,-0.0799989578969486,-0.078847141447894 +11.246,0.243192140655759,1.0449117694353,1.5479361714022,1.60952096823336,-1.63070355235113,-0.0799989792423286,-0.0788471770041383 +11.248,0.243192195318647,1.04491170637173,1.54793622763468,1.60952096422068,-1.63070355304572,-0.0799989949594211,-0.0788472097742671 +11.25,0.243192255852065,1.044911663659,1.54793626775556,1.60952097656379,-1.63070355397376,-0.0799990049547101,-0.078847239011036 +11.252,0.24319231987308,1.04491164043465,1.5479362922415,1.60952100344676,-1.63070355515559,-0.0799990093619446,-0.0788472641701668 +11.254,0.243192385027135,1.04491163521258,1.54793630208773,1.60952104262555,-1.63070355658799,-0.0799990085178921,-0.0788472849079786 +11.256,0.243192449070354,1.04491164601349,1.54793629870838,1.60952109155752,-1.63070355824821,-0.0799990029318954,-0.0788473010714987 +11.258,0.2431925099416,1.04491167049889,1.5479362838329,1.60952114753025,-1.63070356009802,-0.0799989932511348,-0.0788473126823813 +11.26,0.243192565822473,1.04491170610297,1.54793625940283,1.60952120778481,-1.63070356208794,-0.0799989802234604,-0.0788473199160299 +11.262,0.243192615184023,1.04491175015752,1.54793622747297,1.60952126962905,-1.63070356416112,-0.0799989646595579,-0.0788473230773325 +11.264,0.243192656819531,1.04491180000579,1.54793619012011,1.60952133053753,-1.63070356625717,-0.0799989473960483,-0.0788473225743708 +11.266,0.243192689863315,1.04491185310236,1.54793614936215,1.60952138823539,-1.63070356831552,-0.0799989292609168,-0.0788473188913763 +11.268,0.243192713796013,1.04491190709652,1.54793610708923,1.60952144076451,-1.63070357027843,-0.0799989110424292,-0.0788473125620752 +11.27,0.243192728437253,1.04491195989807,1.54793606500838,1.60952148653111,-1.63070357209352,-0.0799988934624339,-0.0788473041444084 +11.272,0.243192733927012,1.04491200972506,1.54793602460186,1.60952152433473,-1.63070357371574,-0.0799988771546848,-0.078847294197436 +11.274,0.243192730697251,1.04491205513364,1.54793598709955,1.60952155337929,-1.63070357510886,-0.0799988626485545,-0.0788472832610507 +11.276,0.243192719435648,1.04491209503116,1.54793595346429,1.60952157326753,-1.63070357624642,-0.0799988503582609,-0.0788472718389362 +11.278,0.243192701043357,1.0449121286739,1.54793592438961,1.60952158398064,-1.63070357711214,-0.0799988405774991,-0.0788472603850248 +11.28,0.243192676588774,1.0449121556515,1.54793590030801,1.60952158584537,-1.63070357769995,-0.0799988334791715,-0.078847249293541 +11.282,0.243192647259276,1.04491217586027,1.54793588140845,1.60952157949098,-1.6307035780135,-0.0799988291197402,-0.0788472388925647 +11.284,0.243192614312773,1.04491218946776,1.54793586766103,1.6095215657987,-1.63070357806538,-0.0799988274475952,-0.0788472294409167 +11.286,0.243192579030769,1.04491219687113,1.54793585884712,1.60952154584644,-1.63070357787605,-0.0799988283147326,-0.0788472211280657 +11.288,0.243192542674445,1.04491219865175,1.54793585459291,1.60952152085108,-1.63070357747252,-0.0799988314909848,-0.0788472140766701 +11.29,0.243192506444988,1.04491219552822,1.54793585440478,1.60952149211107,-1.6307035768869,-0.0799988366800158,-0.0788472083473167 +11.292,0.243192471449185,1.04491218830997,1.54793585770475,1.60952146095114,-1.63070357615488,-0.079998843536309,-0.0788472039449841 +11.294,0.24319243867099,1.04491217785322,1.54793586386456,1.60952142867128,-1.63070357531423,-0.0799988516824093,-0.0788472008267506 +11.296,0.243192408949519,1.04491216502066,1.54793587223734,1.60952139650136,-1.63070357440327,-0.0799988607257482,-0.0788471989102791 +11.298,0.243192382963657,1.04491215064625,1.54793588218563,1.60952136556247,-1.63070357345953,-0.0799988702744594,-0.07884719808264 +11.3,0.24319236122321,1.04491213550562,1.54793589310541,1.60952133683602,-1.63070357251849,-0.0799988799516903,-0.078847198209076 +11.302,0.243192344066348,1.04491212029286,1.54793590444543,1.60952131114072,-1.63070357161255,-0.079998889408021,-0.0788471991413672 +11.304,0.24319233166284,1.0449121056036,1.54793591572176,1.60952128911773,-1.63070357077013,-0.0799988983317101,-0.0788472007255156 +11.306,0.24319232402249,1.04491209192443,1.54793592652762,1.60952127122364,-1.63070357001508,-0.0799989064565983,-0.0788472028085335 +11.308,0.243192321008004,1.04491207962821,1.54793593653862,1.6095212577308,-1.63070356936623,-0.0799989135676029,-0.0788472052441841 +11.31,0.2431923223515,1.04491206897472,1.54793594551389,1.60952124873434,-1.63070356883718,-0.0799989195038347,-0.0788472078975865 +11.312,0.243192327673759,1.04491206011601,1.54793595329349,1.60952124416488,-1.63070356843627,-0.0799989241594522,-0.0788472106486581 +11.314,0.243192336505364,1.04491205310547,1.54793595979281,1.60952124380593,-1.63070356816682,-0.0799989274824434,-0.0788472133944159 +11.316,0.243192348308857,1.04491204790992,1.54793596499456,1.60952124731497,-1.63070356802737,-0.07999892947158,-0.0788472160502061 +11.318,0.243192362501105,1.04491204442374,1.54793596893898,1.60952125424697,-1.63070356801224,-0.0799989301718343,-0.0788472185499663 +11.32,0.243192378475128,1.04491204248418,1.54793597171297,1.6095212640794,-1.63070356811203,-0.0799989296685759,-0.0788472208456514 +11.322,0.243192395620747,1.04491204188702,1.54793597343874,1.60952127623747,-1.63070356831434,-0.0799989280808773,-0.0788472229059728 +11.324,0.243192413343487,1.04491204240195,1.54793597426256,1.60952129011892,-1.63070356860438,-0.0799989255542594,-0.0788472247146088 +11.326,0.243192431081297,1.04491204378693,1.54793597434409,1.60952130511737,-1.63070356896575,-0.0799989222531925,-0.0788472262680467 +11.328,0.243192448318767,1.04491204580111,1.5479359738466,1.60952132064351,-1.63070356938108,-0.0799989183536468,-0.0788472275732094 +11.33,0.243192464598611,1.04491204821589,1.54793597292858,1.60952133614367,-1.63070356983277,-0.0799989140359545,-0.0788472286450093 +11.332,0.243192479530323,1.04491205082393,1.54793597173673,1.60952135111543,-1.63070357030353,-0.0799989094782079,-0.078847229503955 +11.334,0.243192492795999,1.04491205344583,1.5479359704006,1.60952136511977,-1.63070357077694,-0.0799989048503751,-0.0788472301739156 +11.336,0.243192504153403,1.04491205593474,1.54793596902888,1.60952137778996,-1.63070357123794,-0.0799989003092699,-0.0788472306801263 +11.338,0.243192513436461,1.0449120581786,1.54793596770722,1.60952138883707,-1.63070357167321,-0.0799988959944703,-0.0788472310474975 +11.34,0.243192520553396,1.04491206010062,1.54793596649756,1.60952139805218,-1.63070357207138,-0.0799988920252321,-0.0788472312992624 +11.342,0.2431925254828,1.0449120616578,1.54793596543878,1.60952140530576,-1.6307035724233,-0.0799988884984073,-0.0788472314559822 +11.344,0.243192528267957,1.04491206283812,1.54793596454846,1.60952141054425,-1.6307035727221,-0.0799988854873381,-0.0788472315349038 +11.346,0.243192529009773,1.04491206365652,1.5479359638255,1.60952141378455,-1.63070357296317,-0.0799988830416656,-0.0788472315496508 +11.348,0.24319252785864,1.04491206415006,1.54793596325337,1.60952141510652,-1.63070357314417,-0.0799988811879673,-0.0788472315102143 +11.35,0.24319252500561,1.04491206437262,1.54793596280379,1.60952141464424,-1.63070357326482,-0.0799988799311155,-0.0788472314231975 +11.352,0.243192520673201,1.04491206438934,1.54793596244057,1.60952141257625,-1.63070357332675,-0.079998879256235,-0.0788472312922636 +11.354,0.243192515106151,1.04491206427128,1.54793596212334,1.60952140911528,-1.63070357333327,-0.0799988791311313,-0.0788472311187319 +11.356,0.243192508562395,1.0449120640903,1.54793596181113,1.60952140449795,-1.6307035732891,-0.0799988795090559,-0.0788472309022646 +11.358,0.243192501304527,1.0449120639146,1.54793596146551,1.60952139897468,-1.63070357320008,-0.0799988803316788,-0.0788472306415917 +11.36,0.243192493591935,1.0449120638049,1.54793596105324,1.6095213928002,-1.63070357307289,-0.0799988815321435,-0.078847230335223 +11.362,0.243192485673784,1.04491206381148,1.54793596054832,1.60952138622486,-1.63070357291474,-0.0799988830380937,-0.0788472299821052 +11.364,0.243192477782966,1.04491206397206,1.54793595993342,1.60952137948709,-1.63070357273312,-0.0799988847745679,-0.0788472295821878 +11.366,0.243192470131091,1.04491206431053,1.54793595920069,1.60952137280692,-1.63070357253553,-0.0799988866666814,-0.0788472291368712 +11.368,0.243192462904567,1.04491206483664,1.54793595835189,1.60952136638086,-1.63070357232922,-0.0799988886420244,-0.0788472286493191 +11.37,0.243192456261769,1.04491206554636,1.54793595739803,1.60952136037811,-1.63070357212106,-0.0799988906327277,-0.0788472281246267 +11.372,0.243192450331264,1.04491206642299,1.54793595635849,1.60952135493798,-1.63070357191728,-0.079998892577161,-0.0788472275698434 +11.374,0.243192445211041,1.04491206743879,1.54793595525964,1.6095213501686,-1.63070357172341,-0.0799988944212482,-0.0788472269938594 +11.376,0.243192440968663,1.04491206855716,1.54793595413334,1.60952134614684,-1.63070357154415,-0.0799988961193954,-0.0788472264071675 +11.378,0.243192437642242,1.04491206973496,1.54793595301501,1.60952134291909,-1.63070357138332,-0.0799988976350451,-0.0788472258215221 +11.38,0.243192435242127,1.04491207092514,1.54793595194181,1.6095213405031,-1.63070357124384,-0.0799988989408792,-0.0788472252495167 +11.382,0.243192433753184,1.04491207207926,1.54793595095066,1.60952133889044,-1.63070357112771,-0.0799989000187015,-0.0788472247041072 +11.384,0.243192433137545,1.04491207315006,1.54793595007644,1.60952133804949,-1.63070357103607,-0.0799989008590422,-0.0788472241981061 +11.386,0.243192433337705,1.04491207409368,1.54793594935037,1.60952133792897,-1.63070357096925,-0.0799989014605255,-0.0788472237436764 +11.388,0.243192434279839,1.04491207487165,1.54793594879854,1.60952133846153,-1.6307035709268,-0.0799989018290514,-0.0788472233518483 +11.39,0.243192435877235,1.04491207545256,1.54793594844088,1.60952133956756,-1.63070357090766,-0.0799989019768367,-0.0788472230320817 +11.392,0.243192438033739,1.04491207581325,1.54793594829027,1.60952134115893,-1.63070357091017,-0.0799989019213641,-0.0788472227918942 +11.394,0.243192440647112,1.04491207593955,1.54793594835217,1.60952134314251,-1.63070357093226,-0.0799989016842843,-0.0788472226365693 +11.396,0.243192443612222,1.04491207582669,1.54793594862445,1.60952134542357,-1.63070357097148,-0.0799989012903113,-0.078847222568955 +11.398,0.243192446824012,1.04491207547914,1.54793594909762,1.60952134790867,-1.63070357102516,-0.0799989007661483,-0.0788472225893598 +11.4,0.243192450180174,1.0449120749102,1.54793594975538,1.60952135050837,-1.63070357109048,-0.0799989001394737,-0.0788472226955471 +11.402,0.243192453583509,1.04491207414111,1.5479359505753,1.6095213531393,-1.63070357116458,-0.0799988994380143,-0.078847222882825 +11.404,0.243192456943921,1.04491207319998,1.54793595152991,1.60952135572603,-1.63070357124464,-0.0799988986887236,-0.0788472231442258 +11.406,0.243192460180059,1.04491207212046,1.54793595258777,1.60952135820227,-1.63070357132796,-0.0799988979170784,-0.0788472234707645 +11.408,0.243192463220571,1.04491207094019,1.54793595371477,1.60952136051179,-1.63070357141199,-0.0799988971465028,-0.0788472238517634 +11.41,0.243192466005009,1.04491206969928,1.5479359548754,1.60952136260891,-1.63070357149446,-0.0799988963979205,-0.0788472242752285 +11.412,0.243192468484366,1.04491206843872,1.54793595603408,1.60952136445856,-1.63070357157331,-0.0799988956894357,-0.0788472247282618 +11.414,0.243192470621289,1.0449120671988,1.54793595715639,1.60952136603613,-1.63070357164683,-0.0799988950361339,-0.0788472251974919 +11.416,0.243192472389992,1.0449120660177,1.54793595821021,1.60952136732691,-1.63070357171358,-0.0799988944499963,-0.0788472256695069 +11.418,0.243192473775891,1.04491206493019,1.54793595916677,1.60952136832544,-1.63070357177245,-0.0799988939399142,-0.0788472261312744 +11.42,0.243192474775005,1.0449120639666,1.54793596000144,1.60952136903454,-1.63070357182265,-0.0799988935117923,-0.0788472265705327 +11.422,0.243192475393152,1.0449120631519,1.54793596069439,1.60952136946438,-1.63070357186369,-0.0799988931687235,-0.0788472269761421 +11.424,0.24319247564499,1.0449120625051,1.54793596123109,1.6095213696313,-1.63070357189535,-0.0799988929112242,-0.0788472273383847 +11.426,0.243192475552927,1.04491206203891,1.5479359616025,1.60952136955672,-1.63070357191769,-0.0799988927375122,-0.078847227649205 +11.428,0.243192475145941,1.04491206175959,1.54793596180512,1.60952136926601,-1.63070357193099,-0.0799988926438154,-0.0788472279023863 +11.43,0.243192474458353,1.04491206166708,1.54793596184084,1.60952136878736,-1.63070357193572,-0.0799988926246971,-0.0788472280936594 +11.432,0.243192473528578,1.04491206175534,1.54793596171663,1.60952136815075,-1.63070357193254,-0.0799988926733865,-0.0788472282207434 +11.434,0.243192472397876,1.04491206201286,1.54793596144401,1.60952136738699,-1.63070357192223,-0.0799988927821053,-0.0788472282833217 +11.436,0.243192471109154,1.04491206242335,1.54793596103848,1.60952136652689,-1.63070357190568,-0.0799988929423793,-0.0788472282829559 +11.438,0.243192469705819,1.04491206296655,1.5479359605188,1.60952136560043,-1.63070357188384,-0.0799988931453306,-0.0788472282229449 +11.44,0.243192468230717,1.04491206361912,1.54793595990619,1.60952136463621,-1.63070357185771,-0.0799988933819439,-0.0788472281081369 +11.442,0.243192466725162,1.04491206435557,1.54793595922357,1.60952136366085,-1.6307035718283,-0.0799988936433034,-0.0788472279447024 +11.444,0.243192465228087,1.04491206514924,1.54793595849467,1.60952136269859,-1.6307035717966,-0.0799988939207975,-0.0788472277398786 +11.446,0.243192463775309,1.04491206597321,1.54793595774331,1.60952136177101,-1.63070357176358,-0.0799988942062916,-0.0788472275016949 +11.448,0.243192462398919,1.0449120668012,1.54793595699258,1.60952136089679,-1.63070357173013,-0.0799988944922674,-0.0788472272386894 +11.45,0.243192461126813,1.04491206760837,1.54793595626423,1.60952136009158,-1.63070357169709,-0.0799988947719312,-0.0788472269596257 +11.452,0.243192459982344,1.044912068372,1.54793595557803,1.60952135936803,-1.63070357166521,-0.0799988950392923,-0.0788472266732206 +11.454,0.243192458984106,1.04491206907212,1.54793595495129,1.60952135873573,-1.63070357163517,-0.0799988952892131,-0.0788472263878882 +11.456,0.24319245814585,1.04491206969193,1.54793595439849,1.60952135820138,-1.63070357160751,-0.079998895517435,-0.0788472261115099 +11.458,0.243192457476501,1.04491207021813,1.54793595393101,1.6095213577689,-1.6307035715827,-0.0799988957205819,-0.0788472258512343 +11.46,0.2431924569803,1.04491207064111,1.54793595355699,1.60952135743962,-1.63070357156109,-0.0799988958961446,-0.0788472256133124 +11.462,0.243192456657032,1.04491207095502,1.54793595328126,1.60952135721251,-1.63070357154294,-0.0799988960424487,-0.0788472254029698 +11.464,0.243192456502348,1.04491207115767,1.54793595310548,1.60952135708439,-1.6307035715284,-0.0799988961586095,-0.0788472252243189 +11.466,0.243192456508152,1.04491207125035,1.54793595302821,1.60952135705022,-1.63070357151753,-0.0799988962444759,-0.0788472250803094 +11.468,0.243192456663053,1.0449120712376,1.54793595304525,1.60952135710336,-1.6307035715103,-0.0799988963005657,-0.0788472249727182 +11.47,0.24319245695286,1.04491207112676,1.5479359531499,1.60952135723581,-1.6307035715066,-0.0799988963279954,-0.0788472249021737 +11.472,0.243192457361113,1.04491207092762,1.54793595333334,1.60952135743854,-1.63070357150626,-0.0799988963284051,-0.0788472248682139 +11.474,0.243192457869622,1.04491207065192,1.54793595358508,1.60952135770168,-1.63070357150903,-0.079998896303881,-0.0788472248693726 +11.476,0.243192458459019,1.04491207031285,1.54793595389333,1.60952135801486,-1.63070357151461,-0.0799988962568773,-0.0788472249032891 +11.478,0.243192459109298,1.04491206992455,1.5479359542455,1.60952135836738,-1.63070357152268,-0.0799988961901382,-0.0788472249668377 +11.48,0.243192459800335,1.0449120695016,1.5479359546286,1.6095213587485,-1.63070357153286,-0.0799988961066205,-0.0788472250562695 +11.482,0.243192460512378,1.04491206905858,1.54793595502965,1.60952135914763,-1.63070357154476,-0.0799988960094198,-0.078847225167364 +11.484,0.243192461226493,1.04491206860959,1.54793595543609,1.60952135955453,-1.63070357155799,-0.0799988959016989,-0.0788472252955825 +11.486,0.24319246192497,1.04491206816789,1.54793595583608,1.60952135995952,-1.63070357157214,-0.0799988957866206,-0.0788472254362205 +11.488,0.243192462591664,1.04491206774558,1.54793595621884,1.60952136035357,-1.63070357158681,-0.0799988956672846,-0.0788472255845541 +11.49,0.243192463212286,1.04491206735327,1.54793595657485,1.60952136072854,-1.63070357160163,-0.0799988955466706,-0.0788472257359754 +11.492,0.243192463774628,1.04491206699994,1.54793595689604,1.60952136107718,-1.63070357161624,-0.0799988954275854,-0.0788472258861159 +11.494,0.243192464268721,1.04491206669278,1.54793595717595,1.60952136139332,-1.6307035716303,-0.0799988953126182,-0.0788472260309527 +11.496,0.243192464686933,1.04491206643708,1.54793595740975,1.60952136167188,-1.63070357164353,-0.0799988952041004,-0.0788472261668977 +11.498,0.243192465024008,1.04491206623628,1.54793595759427,1.60952136190893,-1.63070357165567,-0.079998895104074,-0.078847226290867 +11.5,0.243192465277033,1.04491206609198,1.54793595772799,1.60952136210168,-1.6307035716665,-0.0799988950142661,-0.0788472264003309 +11.502,0.243192465445365,1.04491206600402,1.54793595781092,1.60952136224854,-1.63070357167585,-0.079998894936071,-0.0788472264933443 +11.504,0.243192465530497,1.04491206597067,1.54793595784452,1.60952136234901,-1.63070357168361,-0.0799988948705399,-0.078847226568558 +11.506,0.243192465535886,1.04491206598875,1.54793595783151,1.60952136240369,-1.63070357168968,-0.0799988948183772,-0.0788472266252115 +11.508,0.243192465466737,1.04491206605389,1.5479359577757,1.60952136241417,-1.63070357169404,-0.0799988947799449,-0.0788472266631112 +11.51,0.243192465329768,1.04491206616072,1.54793595768184,1.60952136238296,-1.6307035716967,-0.0799988947552731,-0.0788472266825922 +11.512,0.243192465132939,1.0449120663031,1.54793595755534,1.60952136231339,-1.63070357169769,-0.0799988947440772,-0.0788472266844698 +11.514,0.243192464885182,1.04491206647438,1.54793595740214,1.60952136220947,-1.6307035716971,-0.0799988947457809,-0.07884722666998 +11.516,0.243192464596112,1.04491206666761,1.54793595722843,1.6095213620758,-1.63070357169506,-0.0799988947595447,-0.0788472266407136 +11.518,0.243192464275744,1.04491206687579,1.5479359570405,1.60952136191738,-1.6307035716917,-0.0799988947842986,-0.078847226598545 +11.52,0.243192463934217,1.04491206709203,1.54793595684455,1.60952136173953,-1.63070357168719,-0.0799988948187785,-0.078847226545559 +11.522,0.243192463581533,1.04491206730977,1.54793595664653,1.6095213615477,-1.63070357168171,-0.0799988948615654,-0.0788472264839771 +11.524,0.243192463227317,1.04491206752295,1.54793595645195,1.60952136134737,-1.63070357167546,-0.0799988949111264,-0.0788472264160862 +11.526,0.243192462880597,1.04491206772609,1.54793595626582,1.60952136114392,-1.63070357166864,-0.0799988949658561,-0.078847226344171 +11.528,0.243192462549615,1.04491206791444,1.54793595609253,1.60952136094247,-1.63070357166145,-0.0799988950241187,-0.0788472262704517 +11.53,0.243192462241675,1.04491206808403,1.54793595593575,1.60952136074782,-1.6307035716541,-0.0799988950842876,-0.0788472261970286 +11.532,0.243192461963015,1.04491206823173,1.54793595579845,1.6095213605643,-1.63070357164678,-0.0799988951447843,-0.0788472261258343 +11.534,0.243192461718721,1.04491206835526,1.54793595568279,1.60952136039574,-1.63070357163966,-0.0799988952041132,-0.0788472260585945 +11.536,0.243192461512672,1.04491206845317,1.54793595559022,1.60952136024537,-1.63070357163291,-0.0799988952608935,-0.0788472259967973 +11.538,0.243192461347522,1.04491206852484,1.54793595552142,1.6095213601158,-1.63070357162667,-0.0799988953138867,-0.0788472259416719 +11.54,0.243192461224711,1.04491206857041,1.5479359554764,1.60952136000895,-1.63070357162107,-0.0799988953620189,-0.0788472258941755 +11.542,0.243192461144509,1.04491206859071,1.54793595545452,1.60952135992609,-1.6307035716162,-0.0799988954043984,-0.0788472258549892 +11.544,0.243192461106086,1.04491206858718,1.54793595545456,1.60952135986779,-1.63070357161214,-0.0799988954403277,-0.0788472258245211 +11.546,0.243192461107603,1.04491206856179,1.54793595547483,1.609521359834,-1.63070357160893,-0.0799988954693101,-0.078847225802917 +11.548,0.24319246114633,1.04491206851694,1.54793595551322,1.60952135982405,-1.63070357160661,-0.0799988954910511,-0.0788472257900773 +11.55,0.243192461218769,1.04491206845535,1.54793595556733,1.6095213598367,-1.63070357160518,-0.0799988955054543,-0.0788472257856786 +11.552,0.243192461320796,1.04491206837997,1.54793595563451,1.60952135987024,-1.63070357160461,-0.0799988955126129,-0.0788472257891999 +11.554,0.24319246144781,1.04491206829387,1.54793595571197,1.60952135992251,-1.63070357160486,-0.0799988955127966,-0.0788472257999524 +11.556,0.243192461594881,1.04491206820016,1.54793595579691,1.60952135999102,-1.63070357160587,-0.0799988955064346,-0.07884722581711 +11.558,0.243192461756895,1.04491206810191,1.54793595588651,1.60952136007302,-1.63070357160757,-0.0799988954940958,-0.0788472258397428 +11.56,0.243192461928702,1.04491206800204,1.54793595597807,1.60952136016557,-1.63070357160988,-0.0799988954764661,-0.0788472258668489 +11.562,0.243192462105247,1.0449120679033,1.54793595606906,1.60952136026567,-1.63070357161268,-0.0799988954543242,-0.0788472258973869 +11.564,0.243192462281697,1.04491206780817,1.54793595615716,1.60952136037028,-1.63070357161589,-0.079998895428516,-0.0788472259303059 +11.566,0.243192462453546,1.04491206771884,1.5479359562403,1.60952136047645,-1.63070357161939,-0.0799988953999293,-0.0788472259645734 +11.568,0.243192462616712,1.04491206763718,1.54793595631671,1.60952136058136,-1.63070357162307,-0.0799988953694683,-0.0788472259992016 +11.57,0.24319246276761,1.0449120675647,1.54793595638494,1.60952136068243,-1.63070357162683,-0.0799988953380291,-0.0788472260332686 +11.572,0.243192462903217,1.04491206750256,1.54793595644385,1.6095213607773,-1.63070357163056,-0.0799988953064774,-0.0788472260659377 +11.574,0.243192463021104,1.04491206745155,1.54793595649264,1.60952136086394,-1.63070357163418,-0.0799988952756278,-0.0788472260964723 +11.576,0.243192463119464,1.04491206741211,1.54793595653084,1.60952136094065,-1.6307035716376,-0.0799988952462255,-0.0788472261242467 +11.578,0.243192463197116,1.04491206738437,1.54793595655828,1.60952136100612,-1.63070357164074,-0.0799988952189317,-0.0788472261487543 +11.58,0.243192463253488,1.04491206736812,1.54793595657507,1.60952136105938,-1.63070357164355,-0.0799988951943113,-0.0788472261696108 +11.582,0.243192463288596,1.04491206736289,1.54793595658161,1.60952136109986,-1.63070357164596,-0.079998895172824,-0.0788472261865545 +11.584,0.243192463303003,1.04491206736795,1.54793595657849,1.60952136112735,-1.63070357164795,-0.0799988951548192,-0.0788472261994441 +11.586,0.243192463297763,1.04491206738239,1.54793595656655,1.609521361142,-1.6307035716495,-0.0799988951405337,-0.0788472262082524 +11.588,0.243192463274364,1.04491206740511,1.54793595654675,1.60952136114426,-1.63070357165059,-0.0799988951300926,-0.0788472262130585 +11.59,0.243192463234658,1.04491206743491,1.5479359565202,1.60952136113491,-1.63070357165122,-0.079998895123513,-0.0788472262140375 +11.592,0.24319246318079,1.04491206747048,1.54793595648807,1.60952136111495,-1.63070357165142,-0.0799988951207106,-0.0788472262114487 +11.594,0.243192463115122,1.04491206751048,1.54793595645161,1.6095213610856,-1.6307035716512,-0.0799988951215084,-0.0788472262056226 +11.596,0.243192463040156,1.04491206755356,1.54793595641205,1.60952136104825,-1.63070357165059,-0.0799988951256474,-0.0788472261969471 +11.598,0.243192462958459,1.0449120675984,1.54793595637065,1.6095213610044,-1.63070357164965,-0.0799988951327984,-0.0788472261858534 +11.6,0.243192462872595,1.04491206764374,1.54793595632857,1.60952136095562,-1.63070357164841,-0.0799988951425755,-0.0788472261728013 +11.602,0.243192462785059,1.04491206768839,1.54793595628694,1.6095213609035,-1.63070357164693,-0.0799988951545499,-0.0788472261582664 +11.604,0.243192462698215,1.0449120677313,1.54793595624676,1.60952136084963,-1.63070357164527,-0.0799988951682641,-0.0788472261427259 +11.606,0.243192462614244,1.0449120677715,1.54793595620895,1.60952136079552,-1.63070357164347,-0.0799988951832456,-0.0788472261266473 +11.608,0.243192462535103,1.0449120678082,1.54793595617427,1.60952136074258,-1.6307035716416,-0.0799988951990203,-0.0788472261104768 +11.61,0.243192462462488,1.04491206784073,1.54793595614337,1.60952136069212,-1.6307035716397,-0.0799988952151254,-0.0788472260946301 +11.612,0.24319246239781,1.0449120678686,1.54793595611675,1.60952136064528,-1.63070357163784,-0.0799988952311204,-0.0788472260794838 +11.614,0.243192462342176,1.04491206789145,1.54793595609476,1.60952136060302,-1.63070357163604,-0.0799988952465978,-0.0788472260653694 +11.616,0.243192462296384,1.04491206790908,1.5479359560776,1.60952136056612,-1.63070357163437,-0.0799988952611907,-0.0788472260525681 +11.618,0.243192462260924,1.04491206792144,1.54793595606536,1.60952136053519,-1.63070357163284,-0.0799988952745807,-0.0788472260413074 +11.62,0.243192462235982,1.0449120679286,1.54793595605799,1.60952136051061,-1.63070357163149,-0.0799988952865021,-0.0788472260317595 +11.622,0.243192462221466,1.04491206793078,1.5479359560553,1.60952136049259,-1.63070357163035,-0.0799988952967461,-0.0788472260240411 +11.624,0.243192462217018,1.04491206792827,1.54793595605704,1.60952136048113,-1.63070357162942,-0.0799988953051617,-0.0788472260182145 +11.626,0.243192462222048,1.04491206792149,1.54793595606283,1.60952136047609,-1.63070357162872,-0.079998895311656,-0.0788472260142899 +11.628,0.243192462235763,1.04491206791092,1.54793595607224,1.60952136047716,-1.63070357162825,-0.0799988953161931,-0.0788472260122292 +11.63,0.243192462257203,1.04491206789708,1.54793595608477,1.60952136048387,-1.63070357162801,-0.0799988953187901,-0.0788472260119505 +11.632,0.243192462285275,1.04491206788057,1.54793595609988,1.60952136049567,-1.63070357162798,-0.0799988953195139,-0.0788472260133328 +11.634,0.243192462318794,1.04491206786198,1.54793595611701,1.6095213605119,-1.63070357162815,-0.0799988953184757,-0.0788472260162224 +11.636,0.243192462356519,1.04491206784193,1.54793595613559,1.60952136053182,-1.63070357162851,-0.0799988953158247,-0.0788472260204389 +11.638,0.243192462397185,1.04491206782103,1.54793595615505,1.60952136055466,-1.63070357162902,-0.0799988953117419,-0.0788472260257816 +11.64,0.243192462439543,1.04491206779984,1.54793595617484,1.60952136057963,-1.63070357162968,-0.079998895306433,-0.0788472260320359 +11.642,0.243192462482389,1.04491206777893,1.54793595619444,1.60952136060592,-1.63070357163044,-0.0799988953001215,-0.0788472260389795 +11.644,0.243192462524588,1.04491206775879,1.54793595621337,1.60952136063277,-1.63070357163129,-0.079998895293041,-0.0788472260463891 +11.646,0.243192462565106,1.04491206773986,1.54793595623122,1.60952136065944,-1.63070357163219,-0.079998895285429,-0.0788472260540452 +11.648,0.24319246260302,1.04491206772254,1.5479359562476,1.60952136068525,-1.63070357163312,-0.0799988952775201,-0.0788472260617379 +11.65,0.243192462637543,1.04491206770713,1.54793595626223,1.60952136070959,-1.63070357163406,-0.0799988952695401,-0.0788472260692711 +11.652,0.243192462668029,1.0449120676939,1.54793595627484,1.60952136073194,-1.63070357163497,-0.0799988952617007,-0.0788472260764666 +11.654,0.243192462693981,1.04491206768301,1.54793595628527,1.60952136075186,-1.63070357163583,-0.0799988952541951,-0.0788472260831674 +11.656,0.243192462715053,1.04491206767458,1.54793595629341,1.609521360769,-1.63070357163664,-0.0799988952471941,-0.0788472260892397 +11.658,0.24319246273105,1.04491206766864,1.54793595629922,1.60952136078312,-1.63070357163736,-0.0799988952408433,-0.0788472260945749 +11.66,0.24319246274192,1.04491206766516,1.54793595630272,1.60952136079406,-1.63070357163799,-0.0799988952352611,-0.0788472260990906 +11.662,0.243192462747745,1.04491206766406,1.54793595630398,1.60952136080178,-1.63070357163852,-0.0799988952305376,-0.0788472261027307 +11.664,0.243192462748732,1.04491206766521,1.54793595630312,1.60952136080629,-1.63070357163894,-0.0799988952267342,-0.0788472261054648 +11.666,0.243192462745198,1.04491206766841,1.54793595630031,1.6095213608077,-1.63070357163925,-0.079998895223884,-0.0788472261072877 +11.668,0.243192462737551,1.04491206767345,1.54793595629576,1.60952136080621,-1.63070357163945,-0.0799988952219931,-0.078847226108217 +11.67,0.243192462726277,1.04491206768006,1.54793595628971,1.60952136080205,-1.63070357163953,-0.0799988952210423,-0.0788472261082919 +11.672,0.24319246271192,1.04491206768799,1.54793595628241,1.60952136079553,-1.63070357163952,-0.0799988952209896,-0.07884722610757 +11.674,0.243192462695066,1.04491206769693,1.54793595627412,1.60952136078697,-1.6307035716394,-0.0799988952217724,-0.0788472261061252 +11.676,0.243192462676321,1.0449120677066,1.54793595626514,1.60952136077675,-1.6307035716392,-0.0799988952233113,-0.0788472261040442 +11.678,0.243192462656299,1.04491206771669,1.54793595625572,1.60952136076524,-1.63070357163893,-0.0799988952255128,-0.0788472261014239 +11.68,0.2431924626356,1.04491206772694,1.54793595624615,1.60952136075284,-1.6307035716386,-0.079998895228273,-0.0788472260983678 +11.682,0.243192462614803,1.04491206773707,1.54793595623666,1.60952136073992,-1.63070357163821,-0.0799988952314812,-0.0788472260949834 +11.684,0.243192462594445,1.04491206774683,1.54793595622749,1.60952136072686,-1.63070357163779,-0.0799988952350228,-0.0788472260913789 +11.686,0.243192462575016,1.04491206775601,1.54793595621886,1.609521360714,-1.63070357163734,-0.079998895238783,-0.0788472260876606 +11.688,0.243192462556947,1.04491206776441,1.54793595621093,1.60952136070165,-1.63070357163689,-0.0799988952426494,-0.0788472260839302 +11.69,0.243192462540603,1.04491206777188,1.54793595620387,1.60952136069011,-1.63070357163644,-0.079998895246515,-0.078847226080283 +11.692,0.24319246252628,1.04491206777829,1.54793595619779,1.6095213606796,-1.630703571636,-0.0799988952502806,-0.0788472260768053 +11.694,0.243192462514201,1.04491206778356,1.54793595619278,1.60952136067033,-1.63070357163559,-0.0799988952538565,-0.0788472260735733 +11.696,0.243192462504517,1.04491206778762,1.54793595618888,1.60952136066244,-1.63070357163521,-0.0799988952571643,-0.0788472260706517 +11.698,0.243192462497305,1.04491206779047,1.54793595618613,1.60952136065603,-1.63070357163487,-0.0799988952601384,-0.078847226068093 +11.7,0.243192462492575,1.0449120677921,1.5479359561845,1.60952136065117,-1.63070357163457,-0.0799988952627261,-0.0788472260659367 +11.702,0.243192462490274,1.04491206779257,1.54793595618398,1.60952136064787,-1.63070357163433,-0.0799988952648886,-0.0788472260642096 +11.704,0.243192462490287,1.04491206779194,1.54793595618449,1.60952136064611,-1.63070357163414,-0.0799988952666009,-0.0788472260629258 +11.706,0.243192462492452,1.0449120677903,1.54793595618594,1.60952136064581,-1.63070357163401,-0.079998895267851,-0.078847226062087 +11.708,0.243192462496562,1.04491206778777,1.54793595618825,1.60952136064689,-1.63070357163392,-0.07999889526864,-0.0788472260616839 +11.71,0.243192462502375,1.04491206778446,1.54793595619128,1.60952136064921,-1.63070357163389,-0.0799988952689805,-0.0788472260616964 +11.712,0.243192462509622,1.04491206778051,1.54793595619492,1.60952136065263,-1.63070357163391,-0.0799988952688958,-0.0788472260620955 +11.714,0.243192462518017,1.04491206777608,1.54793595619903,1.60952136065698,-1.63070357163398,-0.0799988952684183,-0.0788472260628444 +11.716,0.243192462527266,1.0449120677713,1.54793595620347,1.60952136066209,-1.63070357163408,-0.0799988952675883,-0.0788472260638997 +11.718,0.243192462537072,1.04491206776631,1.54793595620811,1.60952136066777,-1.63070357163422,-0.0799988952664521,-0.0788472260652137 +11.72,0.243192462547146,1.04491206776127,1.54793595621281,1.60952136067383,-1.63070357163439,-0.0799988952650605,-0.0788472260667349 +11.722,0.243192462557212,1.0449120677563,1.54793595621746,1.6095213606801,-1.63070357163459,-0.0799988952634674,-0.0788472260684105 +11.724,0.243192462567014,1.04491206775152,1.54793595622194,1.60952136068639,-1.63070357163479,-0.0799988952617278,-0.0788472260701872 +11.726,0.243192462576322,1.04491206774704,1.54793595622614,1.60952136069255,-1.63070357163501,-0.0799988952598966,-0.0788472260720127 +11.728,0.243192462584932,1.04491206774295,1.54793595622998,1.60952136069843,-1.63070357163523,-0.079998895258027,-0.0788472260738375 +11.73,0.243192462592674,1.04491206773934,1.54793595623339,1.60952136070389,-1.63070357163545,-0.0799988952561695,-0.078847226075615 +11.732,0.243192462599412,1.04491206773625,1.54793595623631,1.60952136070884,-1.63070357163566,-0.0799988952543706,-0.0788472260773034 +11.734,0.243192462605045,1.04491206773374,1.54793595623869,1.60952136071317,-1.63070357163585,-0.0799988952526722,-0.0788472260788659 +11.736,0.243192462609507,1.04491206773183,1.54793595624052,1.60952136071682,-1.63070357163603,-0.0799988952511102,-0.0788472260802714 +11.738,0.243192462612768,1.04491206773052,1.54793595624178,1.60952136071975,-1.63070357163619,-0.079998895249715,-0.0788472260814949 +11.74,0.243192462614828,1.04491206772981,1.54793595624249,1.60952136072193,-1.63070357163633,-0.0799988952485102,-0.0788472260825181 +11.742,0.243192462615719,1.04491206772967,1.54793595624266,1.60952136072337,-1.63070357163644,-0.0799988952475129,-0.0788472260833286 +11.744,0.243192462615501,1.04491206773006,1.54793595624233,1.60952136072407,-1.63070357163653,-0.079998895246734,-0.0788472260839207 +11.746,0.243192462614257,1.04491206773095,1.54793595624154,1.60952136072407,-1.63070357163659,-0.0799988952461777,-0.0788472260842942 +11.748,0.243192462612092,1.04491206773228,1.54793595624033,1.60952136072343,-1.63070357163662,-0.0799988952458424,-0.0788472260844549 +11.75,0.243192462609125,1.04491206773397,1.54793595623878,1.6095213607222,-1.63070357163663,-0.079998895245721,-0.0788472260844134 +11.752,0.243192462605488,1.04491206773597,1.54793595623694,1.60952136072045,-1.63070357163662,-0.0799988952458014,-0.0788472260841849 +11.754,0.243192462601321,1.04491206773819,1.54793595623488,1.60952136071827,-1.63070357163658,-0.0799988952460673,-0.078847226083788 +11.756,0.243192462596768,1.04491206774058,1.54793595623267,1.60952136071575,-1.63070357163653,-0.0799988952464987,-0.0788472260832447 +11.758,0.24319246259197,1.04491206774305,1.54793595623038,1.60952136071296,-1.63070357163646,-0.0799988952470731,-0.0788472260825789 +11.76,0.243192462587069,1.04491206774553,1.54793595622807,1.60952136071001,-1.63070357163637,-0.0799988952477655,-0.0788472260818161 +11.762,0.243192462582195,1.04491206774797,1.54793595622579,1.60952136070697,-1.63070357163628,-0.0799988952485502,-0.0788472260809825 +11.764,0.243192462577471,1.0449120677503,1.54793595622361,1.60952136070394,-1.63070357163618,-0.0799988952494005,-0.0788472260801044 +11.766,0.243192462573008,1.04491206775247,1.54793595622158,1.60952136070099,-1.63070357163607,-0.0799988952502902,-0.0788472260792072 +11.768,0.243192462568899,1.04491206775444,1.54793595621973,1.60952136069818,-1.63070357163596,-0.079998895251194,-0.0788472260783151 +11.77,0.243192462565225,1.04491206775616,1.5479359562181,1.60952136069558,-1.63070357163586,-0.0799988952520878,-0.0788472260774506 +11.772,0.243192462562049,1.04491206775762,1.54793595621672,1.60952136069324,-1.63070357163576,-0.0799988952529496,-0.0788472260766338 +11.774,0.243192462559418,1.0449120677588,1.54793595621561,1.6095213606912,-1.63070357163567,-0.0799988952537597,-0.0788472260758823 +11.776,0.243192462557358,1.04491206775967,1.54793595621477,1.6095213606895,-1.63070357163558,-0.0799988952545013,-0.0788472260752107 +11.778,0.243192462555884,1.04491206776025,1.54793595621421,1.60952136068814,-1.6307035716355,-0.0799988952551602,-0.0788472260746305 +11.78,0.243192462554991,1.04491206776054,1.54793595621392,1.60952136068715,-1.63070357163544,-0.0799988952557255,-0.0788472260741503 +11.782,0.243192462554662,1.04491206776055,1.54793595621389,1.60952136068652,-1.63070357163539,-0.0799988952561895,-0.0788472260737753 +11.784,0.243192462554865,1.0449120677603,1.5479359562141,1.60952136068624,-1.63070357163535,-0.0799988952565475,-0.0788472260735078 +11.786,0.243192462555558,1.04491206775981,1.54793595621454,1.60952136068629,-1.63070357163532,-0.0799988952567978,-0.0788472260733471 +11.788,0.243192462556689,1.04491206775911,1.54793595621517,1.60952136068666,-1.63070357163531,-0.0799988952569418,-0.0788472260732898 +11.79,0.243192462558198,1.04491206775824,1.54793595621597,1.6095213606873,-1.6307035716353,-0.0799988952569831,-0.0788472260733303 +11.792,0.24319246256002,1.04491206775724,1.54793595621689,1.60952136068819,-1.63070357163531,-0.079998895256928,-0.0788472260734606 +11.794,0.243192462562087,1.04491206775612,1.54793595621792,1.60952136068927,-1.63070357163533,-0.0799988952567846,-0.0788472260736711 +11.796,0.24319246256433,1.04491206775494,1.54793595621902,1.60952136069052,-1.63070357163536,-0.0799988952565629,-0.078847226073951 +11.798,0.243192462566678,1.04491206775372,1.54793595622015,1.60952136069189,-1.6307035716354,-0.0799988952562738,-0.0788472260742881 +11.8,0.243192462569065,1.04491206775251,1.54793595622128,1.60952136069333,-1.63070357163544,-0.0799988952559296,-0.0788472260746699 +11.802,0.243192462571427,1.04491206775132,1.54793595622238,1.60952136069481,-1.63070357163548,-0.0799988952555428,-0.0788472260750834 +11.804,0.243192462573705,1.0449120677502,1.54793595622344,1.60952136069627,-1.63070357163553,-0.0799988952551262,-0.078847226075516 +11.806,0.243192462575848,1.04491206774916,1.54793595622441,1.6095213606977,-1.63070357163559,-0.0799988952546926,-0.0788472260759552 +11.808,0.24319246257781,1.04491206774822,1.5479359562253,1.60952136069905,-1.63070357163564,-0.0799988952542541,-0.0788472260763893 +11.81,0.243192462579555,1.0449120677474,1.54793595622606,1.60952136070029,-1.63070357163569,-0.0799988952538223,-0.0788472260768076 +11.812,0.243192462581052,1.04491206774672,1.54793595622671,1.6095213607014,-1.63070357163574,-0.0799988952534076,-0.0788472260772005 +11.814,0.243192462582281,1.04491206774618,1.54793595622723,1.60952136070236,-1.63070357163578,-0.0799988952530194,-0.0788472260775598 +11.816,0.24319246258323,1.04491206774578,1.54793595622761,1.60952136070316,-1.63070357163582,-0.0799988952526657,-0.0788472260778786 +11.818,0.243192462583894,1.04491206774553,1.54793595622785,1.60952136070379,-1.63070357163586,-0.0799988952523531,-0.0788472260781516 +11.82,0.243192462584276,1.04491206774543,1.54793595622796,1.60952136070424,-1.63070357163589,-0.0799988952520867,-0.0788472260783751 +11.822,0.243192462584386,1.04491206774545,1.54793595622795,1.60952136070452,-1.63070357163591,-0.0799988952518699,-0.0788472260785468 +11.824,0.24319246258424,1.0449120677456,1.54793595622782,1.60952136070463,-1.63070357163593,-0.0799988952517049,-0.0788472260786659 +11.826,0.24319246258386,1.04491206774587,1.54793595622758,1.60952136070457,-1.63070357163594,-0.0799988952515922,-0.0788472260787332 +11.828,0.243192462583272,1.04491206774623,1.54793595622725,1.60952136070437,-1.63070357163595,-0.079998895251531,-0.0788472260787504 +11.83,0.243192462582506,1.04491206774667,1.54793595622685,1.60952136070404,-1.63070357163595,-0.0799988952515193,-0.0788472260787207 +11.832,0.243192462581593,1.04491206774718,1.54793595622638,1.60952136070359,-1.63070357163594,-0.0799988952515538,-0.0788472260786481 +11.834,0.243192462580567,1.04491206774773,1.54793595622587,1.60952136070304,-1.63070357163593,-0.0799988952516306,-0.0788472260785375 +11.836,0.243192462579462,1.04491206774831,1.54793595622533,1.60952136070242,-1.63070357163592,-0.0799988952517446,-0.0788472260783944 +11.838,0.243192462578312,1.0449120677489,1.54793595622478,1.60952136070175,-1.6307035716359,-0.0799988952518904,-0.0788472260782247 +11.84,0.24319246257715,1.0449120677495,1.54793595622423,1.60952136070104,-1.63070357163588,-0.079998895252062,-0.0788472260780346 +11.842,0.243192462576005,1.04491206775007,1.5479359562237,1.60952136070032,-1.63070357163586,-0.0799988952522533,-0.0788472260778304 +11.844,0.243192462574906,1.04491206775061,1.54793595622319,1.60952136069961,-1.63070357163583,-0.0799988952524581,-0.0788472260776183 +11.846,0.243192462573877,1.04491206775111,1.54793595622272,1.60952136069892,-1.63070357163581,-0.0799988952526701,-0.0788472260774043 +11.848,0.24319246257294,1.04491206775155,1.54793595622231,1.60952136069828,-1.63070357163578,-0.0799988952528834,-0.0788472260771939 +11.85,0.243192462572113,1.04491206775193,1.54793595622194,1.60952136069768,-1.63070357163576,-0.0799988952530926,-0.0788472260769923 +11.852,0.243192462571408,1.04491206775225,1.54793595622164,1.60952136069715,-1.63070357163573,-0.0799988952532927,-0.0788472260768041 +11.854,0.243192462570835,1.0449120677525,1.54793595622141,1.6095213606967,-1.63070357163571,-0.079998895253479,-0.0788472260766331 +11.856,0.2431924625704,1.04491206775267,1.54793595622124,1.60952136069632,-1.63070357163569,-0.0799988952536479,-0.0788472260764823 +11.858,0.243192462570103,1.04491206775278,1.54793595622113,1.60952136069603,-1.63070357163568,-0.0799988952537963,-0.0788472260763544 +11.86,0.243192462569943,1.04491206775282,1.54793595622109,1.60952136069583,-1.63070357163566,-0.0799988952539219,-0.0788472260762509 +11.862,0.243192462569915,1.04491206775279,1.54793595622111,1.60952136069571,-1.63070357163565,-0.079998895254023,-0.0788472260761727 +11.864,0.243192462570009,1.0449120677527,1.54793595622119,1.60952136069567,-1.63070357163564,-0.0799988952540987,-0.0788472260761201 +11.866,0.243192462570215,1.04491206775257,1.54793595622131,1.60952136069571,-1.63070357163564,-0.079998895254149,-0.0788472260760927 +11.868,0.24319246257052,1.04491206775238,1.54793595622148,1.60952136069582,-1.63070357163564,-0.0799988952541743,-0.0788472260760893 +11.87,0.243192462570909,1.04491206775216,1.54793595622168,1.609521360696,-1.63070357163564,-0.0799988952541757,-0.0788472260761083 +11.872,0.243192462571365,1.04491206775191,1.54793595622191,1.60952136069622,-1.63070357163564,-0.0799988952541548,-0.0788472260761478 +11.874,0.243192462571874,1.04491206775163,1.54793595622217,1.6095213606965,-1.63070357163564,-0.0799988952541138,-0.0788472260762052 +11.876,0.243192462572418,1.04491206775135,1.54793595622243,1.60952136069681,-1.63070357163565,-0.0799988952540551,-0.0788472260762778 +11.878,0.243192462572981,1.04491206775106,1.5479359562227,1.60952136069714,-1.63070357163566,-0.0799988952539814,-0.0788472260763628 +11.88,0.243192462573547,1.04491206775077,1.54793595622297,1.60952136069748,-1.63070357163567,-0.0799988952538956,-0.078847226076457 +11.882,0.243192462574101,1.0449120677505,1.54793595622322,1.60952136069784,-1.63070357163568,-0.0799988952538008,-0.0788472260765574 +11.884,0.243192462574631,1.04491206775024,1.54793595622347,1.60952136069818,-1.63070357163569,-0.0799988952537001,-0.0788472260766611 +11.886,0.243192462575124,1.04491206775,1.54793595622369,1.60952136069851,-1.63070357163571,-0.0799988952535964,-0.0788472260767651 +11.888,0.243192462575571,1.04491206774979,1.54793595622389,1.60952136069882,-1.63070357163572,-0.0799988952534925,-0.0788472260768668 +11.89,0.243192462575963,1.04491206774961,1.54793595622406,1.60952136069911,-1.63070357163573,-0.0799988952533911,-0.0788472260769637 +11.892,0.243192462576294,1.04491206774946,1.5479359562242,1.60952136069936,-1.63070357163574,-0.0799988952532947,-0.0788472260770537 +11.894,0.24319246257656,1.04491206774935,1.54793595622431,1.60952136069958,-1.63070357163575,-0.0799988952532053,-0.078847226077135 +11.896,0.243192462576759,1.04491206774927,1.54793595622438,1.60952136069975,-1.63070357163576,-0.0799988952531247,-0.0788472260772061 +11.898,0.24319246257689,1.04491206774923,1.54793595622443,1.60952136069988,-1.63070357163577,-0.0799988952530544,-0.078847226077266 +11.9,0.243192462576955,1.04491206774922,1.54793595622444,1.60952136069998,-1.63070357163578,-0.0799988952529955,-0.0788472260773138 +11.902,0.243192462576956,1.04491206774924,1.54793595622442,1.60952136070003,-1.63070357163578,-0.0799988952529485,-0.0788472260773493 +11.904,0.243192462576899,1.04491206774928,1.54793595622438,1.60952136070004,-1.63070357163578,-0.079998895252914,-0.0788472260773723 +11.906,0.243192462576788,1.04491206774936,1.54793595622432,1.60952136070001,-1.63070357163579,-0.0799988952528919,-0.0788472260773833 +11.908,0.243192462576631,1.04491206774945,1.54793595622423,1.60952136069995,-1.63070357163579,-0.079998895252882,-0.0788472260773826 +11.91,0.243192462576434,1.04491206774956,1.54793595622413,1.60952136069986,-1.63070357163579,-0.0799988952528835,-0.0788472260773713 +11.912,0.243192462576206,1.04491206774969,1.54793595622401,1.60952136069974,-1.63070357163579,-0.0799988952528957,-0.0788472260773502 +11.914,0.243192462575954,1.04491206774982,1.54793595622389,1.6095213606996,-1.63070357163578,-0.0799988952529175,-0.0788472260773207 +11.916,0.243192462575686,1.04491206774996,1.54793595622376,1.60952136069945,-1.63070357163578,-0.0799988952529477,-0.078847226077284 +11.918,0.243192462575411,1.0449120677501,1.54793595622363,1.60952136069929,-1.63070357163577,-0.0799988952529849,-0.0788472260772416 +11.92,0.243192462575136,1.04491206775024,1.5479359562235,1.60952136069912,-1.63070357163577,-0.0799988952530278,-0.0788472260771951 +11.922,0.243192462574868,1.04491206775037,1.54793595622338,1.60952136069895,-1.63070357163576,-0.0799988952530747,-0.0788472260771458 +11.924,0.243192462574613,1.0449120677505,1.54793595622326,1.60952136069878,-1.63070357163576,-0.0799988952531242,-0.0788472260770952 +11.926,0.243192462574377,1.04491206775061,1.54793595622315,1.60952136069862,-1.63070357163575,-0.0799988952531749,-0.0788472260770448 +11.928,0.243192462574164,1.04491206775071,1.54793595622306,1.60952136069847,-1.63070357163575,-0.0799988952532254,-0.0788472260769957 +11.93,0.243192462573979,1.04491206775079,1.54793595622298,1.60952136069833,-1.63070357163574,-0.0799988952532745,-0.0788472260769491 +11.932,0.243192462573824,1.04491206775086,1.54793595622292,1.60952136069822,-1.63070357163573,-0.0799988952533209,-0.0788472260769061 +11.934,0.243192462573701,1.04491206775091,1.54793595622287,1.60952136069811,-1.63070357163573,-0.0799988952533637,-0.0788472260768675 +11.936,0.243192462573611,1.04491206775095,1.54793595622283,1.60952136069803,-1.63070357163573,-0.079998895253402,-0.0788472260768339 +11.938,0.243192462573553,1.04491206775096,1.54793595622281,1.60952136069797,-1.63070357163572,-0.0799988952534352,-0.0788472260768059 +11.94,0.243192462573528,1.04491206775097,1.54793595622281,1.60952136069793,-1.63070357163572,-0.0799988952534628,-0.0788472260767838 +11.942,0.243192462573533,1.04491206775096,1.54793595622282,1.60952136069791,-1.63070357163572,-0.0799988952534845,-0.0788472260767678 +11.944,0.243192462573567,1.04491206775093,1.54793595622284,1.60952136069791,-1.63070357163571,-0.0799988952535001,-0.0788472260767577 +11.946,0.243192462573625,1.04491206775089,1.54793595622288,1.60952136069793,-1.63070357163571,-0.0799988952535096,-0.0788472260767536 +11.948,0.243192462573706,1.04491206775084,1.54793595622292,1.60952136069796,-1.63070357163571,-0.0799988952535133,-0.0788472260767549 +11.95,0.243192462573805,1.04491206775079,1.54793595622297,1.60952136069801,-1.63070357163571,-0.0799988952535115,-0.0788472260767615 +11.952,0.243192462573919,1.04491206775073,1.54793595622303,1.60952136069806,-1.63070357163571,-0.0799988952535045,-0.0788472260767726 +11.954,0.243192462574044,1.04491206775066,1.54793595622309,1.60952136069813,-1.63070357163572,-0.079998895253493,-0.0788472260767877 +11.956,0.243192462574175,1.04491206775059,1.54793595622315,1.60952136069821,-1.63070357163572,-0.0799988952534776,-0.0788472260768061 +11.958,0.243192462574309,1.04491206775053,1.54793595622322,1.60952136069829,-1.63070357163572,-0.0799988952534588,-0.0788472260768272 +11.96,0.243192462574443,1.04491206775046,1.54793595622328,1.60952136069837,-1.63070357163572,-0.0799988952534375,-0.0788472260768502 +11.962,0.243192462574573,1.04491206775039,1.54793595622334,1.60952136069846,-1.63070357163573,-0.0799988952534143,-0.0788472260768743 +11.964,0.243192462574695,1.04491206775034,1.54793595622339,1.60952136069854,-1.63070357163573,-0.0799988952533899,-0.078847226076899 +11.966,0.243192462574808,1.04491206775028,1.54793595622344,1.60952136069861,-1.63070357163573,-0.0799988952533652,-0.0788472260769235 +11.968,0.243192462574909,1.04491206775023,1.54793595622349,1.60952136069869,-1.63070357163573,-0.0799988952533407,-0.0788472260769472 +11.97,0.243192462574996,1.0449120677502,1.54793595622353,1.60952136069875,-1.63070357163574,-0.079998895253317,-0.0788472260769695 +11.972,0.243192462575069,1.04491206775016,1.54793595622356,1.60952136069881,-1.63070357163574,-0.0799988952532947,-0.0788472260769901 +11.974,0.243192462575126,1.04491206775014,1.54793595622358,1.60952136069885,-1.63070357163574,-0.0799988952532743,-0.0788472260770084 +11.976,0.243192462575166,1.04491206775012,1.54793595622359,1.60952136069889,-1.63070357163574,-0.0799988952532561,-0.0788472260770242 +11.978,0.243192462575191,1.04491206775012,1.5479359562236,1.60952136069892,-1.63070357163575,-0.0799988952532404,-0.0788472260770373 +11.98,0.2431924625752,1.04491206775012,1.5479359562236,1.60952136069894,-1.63070357163575,-0.0799988952532276,-0.0788472260770475 +11.982,0.243192462575195,1.04491206775012,1.5479359562236,1.60952136069895,-1.63070357163575,-0.0799988952532176,-0.0788472260770547 +11.984,0.243192462575176,1.04491206775014,1.54793595622358,1.60952136069894,-1.63070357163575,-0.0799988952532106,-0.078847226077059 +11.986,0.243192462575146,1.04491206775016,1.54793595622357,1.60952136069893,-1.63070357163575,-0.0799988952532066,-0.0788472260770605 +11.988,0.243192462575104,1.04491206775018,1.54793595622354,1.60952136069892,-1.63070357163575,-0.0799988952532053,-0.0788472260770593 +11.99,0.243192462575054,1.04491206775021,1.54793595622352,1.60952136069889,-1.63070357163575,-0.0799988952532067,-0.0788472260770557 +11.992,0.243192462574998,1.04491206775024,1.54793595622349,1.60952136069886,-1.63070357163575,-0.0799988952532106,-0.0788472260770499 +11.994,0.243192462574936,1.04491206775027,1.54793595622346,1.60952136069883,-1.63070357163575,-0.0799988952532166,-0.0788472260770422 +11.996,0.243192462574872,1.04491206775031,1.54793595622343,1.60952136069879,-1.63070357163575,-0.0799988952532245,-0.0788472260770329 +11.998,0.243192462574806,1.04491206775034,1.5479359562234,1.60952136069875,-1.63070357163575,-0.0799988952532339,-0.0788472260770225 +12,0.243192462574742,1.04491206775037,1.54793595622337,1.60952136069871,-1.63070357163574,-0.0799988952532445,-0.0788472260770112 +12.002,0.243192462574679,1.0449120677504,1.54793595622334,1.60952136069867,-1.63070357163574,-0.0799988952532559,-0.0788472260769993 +12.004,0.24319246257462,1.04491206775043,1.54793595622331,1.60952136069863,-1.63070357163574,-0.0799988952532679,-0.0788472260769873 +12.006,0.243192462574566,1.04491206775046,1.54793595622329,1.60952136069859,-1.63070357163574,-0.0799988952532799,-0.0788472260769755 +12.008,0.243192462574518,1.04491206775048,1.54793595622327,1.60952136069856,-1.63070357163574,-0.0799988952532918,-0.078847226076964 +12.01,0.243192462574477,1.0449120677505,1.54793595622325,1.60952136069853,-1.63070357163574,-0.0799988952533032,-0.0788472260769533 +12.012,0.243192462574443,1.04491206775051,1.54793595622324,1.6095213606985,-1.63070357163574,-0.0799988952533139,-0.0788472260769435 +12.014,0.243192462574417,1.04491206775052,1.54793595622323,1.60952136069848,-1.63070357163574,-0.0799988952533237,-0.0788472260769348 +12.016,0.243192462574399,1.04491206775053,1.54793595622322,1.60952136069846,-1.63070357163573,-0.0799988952533323,-0.0788472260769274 +12.018,0.243192462574388,1.04491206775053,1.54793595622322,1.60952136069845,-1.63070357163573,-0.0799988952533397,-0.0788472260769213 +12.02,0.243192462574385,1.04491206775053,1.54793595622322,1.60952136069844,-1.63070357163573,-0.0799988952533457,-0.0788472260769166 +12.022,0.243192462574389,1.04491206775053,1.54793595622322,1.60952136069844,-1.63070357163573,-0.0799988952533502,-0.0788472260769133 +12.024,0.2431924625744,1.04491206775052,1.54793595622323,1.60952136069844,-1.63070357163573,-0.0799988952533534,-0.0788472260769115 +12.026,0.243192462574416,1.04491206775051,1.54793595622324,1.60952136069845,-1.63070357163573,-0.079998895253355,-0.078847226076911 +12.028,0.243192462574437,1.0449120677505,1.54793595622325,1.60952136069846,-1.63070357163573,-0.0799988952533554,-0.0788472260769118 +12.03,0.243192462574462,1.04491206775048,1.54793595622326,1.60952136069847,-1.63070357163573,-0.0799988952533544,-0.0788472260769138 +12.032,0.24319246257449,1.04491206775047,1.54793595622327,1.60952136069848,-1.63070357163573,-0.0799988952533523,-0.0788472260769169 +12.034,0.24319246257452,1.04491206775045,1.54793595622329,1.6095213606985,-1.63070357163573,-0.0799988952533492,-0.0788472260769208 +12.036,0.243192462574552,1.04491206775044,1.5479359562233,1.60952136069852,-1.63070357163573,-0.0799988952533452,-0.0788472260769254 +12.038,0.243192462574584,1.04491206775042,1.54793595622332,1.60952136069854,-1.63070357163573,-0.0799988952533404,-0.0788472260769306 +12.04,0.243192462574615,1.0449120677504,1.54793595622333,1.60952136069856,-1.63070357163573,-0.0799988952533352,-0.0788472260769362 +12.042,0.243192462574645,1.04491206775039,1.54793595622335,1.60952136069858,-1.63070357163574,-0.0799988952533295,-0.078847226076942 +12.044,0.243192462574673,1.04491206775038,1.54793595622336,1.6095213606986,-1.63070357163574,-0.0799988952533237,-0.0788472260769478 +12.046,0.243192462574699,1.04491206775036,1.54793595622337,1.60952136069861,-1.63070357163574,-0.0799988952533179,-0.0788472260769536 +12.048,0.243192462574722,1.04491206775035,1.54793595622338,1.60952136069863,-1.63070357163574,-0.0799988952533121,-0.0788472260769591 +12.05,0.243192462574741,1.04491206775034,1.54793595622339,1.60952136069865,-1.63070357163574,-0.0799988952533066,-0.0788472260769642 +12.052,0.243192462574757,1.04491206775034,1.5479359562234,1.60952136069866,-1.63070357163574,-0.0799988952533015,-0.0788472260769689 +12.054,0.243192462574769,1.04491206775033,1.5479359562234,1.60952136069867,-1.63070357163574,-0.0799988952532969,-0.078847226076973 +12.056,0.243192462574777,1.04491206775033,1.5479359562234,1.60952136069868,-1.63070357163574,-0.0799988952532928,-0.0788472260769765 +12.058,0.243192462574782,1.04491206775033,1.5479359562234,1.60952136069868,-1.63070357163574,-0.0799988952532894,-0.0788472260769793 +12.06,0.243192462574782,1.04491206775033,1.5479359562234,1.60952136069869,-1.63070357163574,-0.0799988952532866,-0.0788472260769815 +12.062,0.24319246257478,1.04491206775033,1.5479359562234,1.60952136069869,-1.63070357163574,-0.0799988952532845,-0.0788472260769829 +12.064,0.243192462574774,1.04491206775034,1.5479359562234,1.60952136069869,-1.63070357163574,-0.0799988952532831,-0.0788472260769837 +12.066,0.243192462574766,1.04491206775034,1.54793595622339,1.60952136069868,-1.63070357163574,-0.0799988952532824,-0.0788472260769838 +12.068,0.243192462574755,1.04491206775035,1.54793595622339,1.60952136069868,-1.63070357163574,-0.0799988952532824,-0.0788472260769833 +12.07,0.243192462574743,1.04491206775035,1.54793595622338,1.60952136069867,-1.63070357163574,-0.0799988952532829,-0.0788472260769822 +12.072,0.243192462574729,1.04491206775036,1.54793595622338,1.60952136069866,-1.63070357163574,-0.079998895253284,-0.0788472260769807 +12.074,0.243192462574714,1.04491206775037,1.54793595622337,1.60952136069866,-1.63070357163574,-0.0799988952532857,-0.0788472260769787 +12.076,0.243192462574699,1.04491206775038,1.54793595622336,1.60952136069865,-1.63070357163574,-0.0799988952532877,-0.0788472260769763 +12.078,0.243192462574683,1.04491206775038,1.54793595622335,1.60952136069864,-1.63070357163574,-0.07999889525329,-0.0788472260769738 +12.08,0.243192462574668,1.04491206775039,1.54793595622335,1.60952136069863,-1.63070357163574,-0.0799988952532926,-0.078847226076971 +12.082,0.243192462574653,1.0449120677504,1.54793595622334,1.60952136069862,-1.63070357163574,-0.0799988952532954,-0.0788472260769682 +12.084,0.24319246257464,1.04491206775041,1.54793595622333,1.60952136069861,-1.63070357163574,-0.0799988952532982,-0.0788472260769653 +12.086,0.243192462574627,1.04491206775041,1.54793595622333,1.6095213606986,-1.63070357163574,-0.079998895253301,-0.0788472260769625 +12.088,0.243192462574616,1.04491206775042,1.54793595622332,1.60952136069859,-1.63070357163574,-0.0799988952533038,-0.0788472260769599 +12.09,0.243192462574607,1.04491206775042,1.54793595622332,1.60952136069859,-1.63070357163574,-0.0799988952533065,-0.0788472260769574 +12.092,0.2431924625746,1.04491206775042,1.54793595622332,1.60952136069858,-1.63070357163574,-0.0799988952533089,-0.0788472260769552 +12.094,0.243192462574594,1.04491206775043,1.54793595622331,1.60952136069857,-1.63070357163574,-0.0799988952533112,-0.0788472260769533 +12.096,0.243192462574591,1.04491206775043,1.54793595622331,1.60952136069857,-1.63070357163574,-0.0799988952533131,-0.0788472260769516 +12.098,0.243192462574589,1.04491206775043,1.54793595622331,1.60952136069857,-1.63070357163574,-0.0799988952533147,-0.0788472260769503 +12.1,0.243192462574589,1.04491206775043,1.54793595622331,1.60952136069857,-1.63070357163574,-0.079998895253316,-0.0788472260769493 +12.102,0.24319246257459,1.04491206775043,1.54793595622331,1.60952136069857,-1.63070357163574,-0.079998895253317,-0.0788472260769487 +12.104,0.243192462574593,1.04491206775042,1.54793595622332,1.60952136069857,-1.63070357163574,-0.0799988952533176,-0.0788472260769484 +12.106,0.243192462574598,1.04491206775042,1.54793595622332,1.60952136069857,-1.63070357163574,-0.0799988952533179,-0.0788472260769484 +12.108,0.243192462574603,1.04491206775042,1.54793595622332,1.60952136069857,-1.63070357163574,-0.0799988952533178,-0.0788472260769487 +12.11,0.243192462574609,1.04491206775041,1.54793595622332,1.60952136069857,-1.63070357163574,-0.0799988952533175,-0.0788472260769493 +12.112,0.243192462574616,1.04491206775041,1.54793595622333,1.60952136069858,-1.63070357163574,-0.0799988952533169,-0.0788472260769501 +12.114,0.243192462574624,1.04491206775041,1.54793595622333,1.60952136069858,-1.63070357163574,-0.0799988952533161,-0.0788472260769511 +12.116,0.243192462574631,1.0449120677504,1.54793595622334,1.60952136069859,-1.63070357163574,-0.0799988952533151,-0.0788472260769522 +12.118,0.243192462574639,1.0449120677504,1.54793595622334,1.60952136069859,-1.63070357163574,-0.0799988952533139,-0.0788472260769535 +12.12,0.243192462574646,1.0449120677504,1.54793595622334,1.6095213606986,-1.63070357163574,-0.0799988952533126,-0.0788472260769549 +12.122,0.243192462574653,1.04491206775039,1.54793595622335,1.6095213606986,-1.63070357163574,-0.0799988952533113,-0.0788472260769562 +12.124,0.24319246257466,1.04491206775039,1.54793595622335,1.60952136069861,-1.63070357163574,-0.0799988952533099,-0.0788472260769576 +12.126,0.243192462574666,1.04491206775039,1.54793595622335,1.60952136069861,-1.63070357163574,-0.0799988952533085,-0.0788472260769589 +12.128,0.243192462574671,1.04491206775038,1.54793595622335,1.60952136069861,-1.63070357163574,-0.0799988952533072,-0.0788472260769602 +12.13,0.243192462574675,1.04491206775038,1.54793595622335,1.60952136069862,-1.63070357163574,-0.0799988952533059,-0.0788472260769614 +12.132,0.243192462574678,1.04491206775038,1.54793595622336,1.60952136069862,-1.63070357163574,-0.0799988952533047,-0.0788472260769625 +12.134,0.243192462574681,1.04491206775038,1.54793595622336,1.60952136069862,-1.63070357163574,-0.0799988952533036,-0.0788472260769634 +12.136,0.243192462574682,1.04491206775038,1.54793595622336,1.60952136069862,-1.63070357163574,-0.0799988952533027,-0.0788472260769642 +12.138,0.243192462574683,1.04491206775038,1.54793595622336,1.60952136069862,-1.63070357163574,-0.0799988952533019,-0.0788472260769648 +12.14,0.243192462574683,1.04491206775038,1.54793595622336,1.60952136069862,-1.63070357163574,-0.0799988952533013,-0.0788472260769653 +12.142,0.243192462574682,1.04491206775038,1.54793595622336,1.60952136069862,-1.63070357163574,-0.0799988952533009,-0.0788472260769656 +12.144,0.24319246257468,1.04491206775038,1.54793595622336,1.60952136069862,-1.63070357163574,-0.0799988952533006,-0.0788472260769657 +12.146,0.243192462574678,1.04491206775038,1.54793595622336,1.60952136069862,-1.63070357163574,-0.0799988952533005,-0.0788472260769657 +12.148,0.243192462574676,1.04491206775038,1.54793595622335,1.60952136069862,-1.63070357163574,-0.0799988952533006,-0.0788472260769655 +12.15,0.243192462574672,1.04491206775039,1.54793595622335,1.60952136069862,-1.63070357163574,-0.0799988952533008,-0.0788472260769652 +12.152,0.243192462574669,1.04491206775039,1.54793595622335,1.60952136069862,-1.63070357163574,-0.0799988952533011,-0.0788472260769648 +12.154,0.243192462574665,1.04491206775039,1.54793595622335,1.60952136069862,-1.63070357163574,-0.0799988952533015,-0.0788472260769643 +12.156,0.243192462574662,1.04491206775039,1.54793595622335,1.60952136069861,-1.63070357163574,-0.0799988952533021,-0.0788472260769637 +12.158,0.243192462574658,1.04491206775039,1.54793595622335,1.60952136069861,-1.63070357163574,-0.0799988952533026,-0.078847226076963 +12.16,0.243192462574655,1.0449120677504,1.54793595622334,1.60952136069861,-1.63070357163574,-0.0799988952533033,-0.0788472260769623 +12.162,0.243192462574651,1.0449120677504,1.54793595622334,1.60952136069861,-1.63070357163574,-0.0799988952533039,-0.0788472260769617 +12.164,0.243192462574648,1.0449120677504,1.54793595622334,1.60952136069861,-1.63070357163574,-0.0799988952533046,-0.078847226076961 +12.166,0.243192462574645,1.0449120677504,1.54793595622334,1.6095213606986,-1.63070357163574,-0.0799988952533053,-0.0788472260769603 +12.168,0.243192462574643,1.0449120677504,1.54793595622334,1.6095213606986,-1.63070357163574,-0.0799988952533059,-0.0788472260769597 +12.17,0.243192462574641,1.0449120677504,1.54793595622334,1.6095213606986,-1.63070357163574,-0.0799988952533065,-0.0788472260769592 +12.172,0.243192462574639,1.0449120677504,1.54793595622334,1.6095213606986,-1.63070357163574,-0.0799988952533071,-0.0788472260769586 +12.174,0.243192462574638,1.0449120677504,1.54793595622334,1.6095213606986,-1.63070357163574,-0.0799988952533076,-0.0788472260769582 +12.176,0.243192462574638,1.0449120677504,1.54793595622334,1.6095213606986,-1.63070357163574,-0.079998895253308,-0.0788472260769578 +12.178,0.243192462574637,1.0449120677504,1.54793595622334,1.6095213606986,-1.63070357163574,-0.0799988952533083,-0.0788472260769576 +12.18,0.243192462574637,1.0449120677504,1.54793595622334,1.6095213606986,-1.63070357163574,-0.0799988952533086,-0.0788472260769574 +12.182,0.243192462574638,1.0449120677504,1.54793595622334,1.6095213606986,-1.63070357163574,-0.0799988952533088,-0.0788472260769573 +12.184,0.243192462574639,1.0449120677504,1.54793595622334,1.6095213606986,-1.63070357163574,-0.0799988952533089,-0.0788472260769572 +12.186,0.24319246257464,1.0449120677504,1.54793595622334,1.6095213606986,-1.63070357163574,-0.079998895253309,-0.0788472260769572 +12.188,0.243192462574641,1.0449120677504,1.54793595622334,1.6095213606986,-1.63070357163574,-0.0799988952533089,-0.0788472260769573 +12.19,0.243192462574643,1.0449120677504,1.54793595622334,1.6095213606986,-1.63070357163574,-0.0799988952533088,-0.0788472260769575 +12.192,0.243192462574644,1.0449120677504,1.54793595622334,1.6095213606986,-1.63070357163574,-0.0799988952533087,-0.0788472260769577 +12.194,0.243192462574646,1.0449120677504,1.54793595622334,1.6095213606986,-1.63070357163574,-0.0799988952533085,-0.078847226076958 +12.196,0.243192462574648,1.0449120677504,1.54793595622334,1.6095213606986,-1.63070357163574,-0.0799988952533082,-0.0788472260769583 +12.198,0.24319246257465,1.0449120677504,1.54793595622334,1.6095213606986,-1.63070357163574,-0.0799988952533079,-0.0788472260769586 +12.2,0.243192462574651,1.0449120677504,1.54793595622334,1.6095213606986,-1.63070357163574,-0.0799988952533076,-0.0788472260769589 +12.202,0.243192462574653,1.04491206775039,1.54793595622334,1.60952136069861,-1.63070357163574,-0.0799988952533073,-0.0788472260769592 +12.204,0.243192462574654,1.04491206775039,1.54793595622334,1.60952136069861,-1.63070357163574,-0.079998895253307,-0.0788472260769595 +12.206,0.243192462574656,1.04491206775039,1.54793595622335,1.60952136069861,-1.63070357163574,-0.0799988952533066,-0.0788472260769598 +12.208,0.243192462574657,1.04491206775039,1.54793595622335,1.60952136069861,-1.63070357163574,-0.0799988952533063,-0.0788472260769601 +12.21,0.243192462574658,1.04491206775039,1.54793595622335,1.60952136069861,-1.63070357163574,-0.079998895253306,-0.0788472260769604 +12.212,0.243192462574659,1.04491206775039,1.54793595622335,1.60952136069861,-1.63070357163574,-0.0799988952533058,-0.0788472260769607 +12.214,0.243192462574659,1.04491206775039,1.54793595622335,1.60952136069861,-1.63070357163574,-0.0799988952533055,-0.0788472260769608 +12.216,0.24319246257466,1.04491206775039,1.54793595622335,1.60952136069861,-1.63070357163574,-0.0799988952533053,-0.078847226076961 +12.218,0.24319246257466,1.04491206775039,1.54793595622335,1.60952136069861,-1.63070357163574,-0.0799988952533052,-0.0788472260769611 +12.22,0.24319246257466,1.04491206775039,1.54793595622335,1.60952136069861,-1.63070357163574,-0.079998895253305,-0.0788472260769612 +12.222,0.243192462574659,1.04491206775039,1.54793595622335,1.60952136069861,-1.63070357163574,-0.079998895253305,-0.0788472260769613 +12.224,0.243192462574659,1.04491206775039,1.54793595622335,1.60952136069861,-1.63070357163574,-0.0799988952533049,-0.0788472260769613 +12.226,0.243192462574658,1.04491206775039,1.54793595622335,1.60952136069861,-1.63070357163574,-0.0799988952533049,-0.0788472260769613 +12.228,0.243192462574658,1.04491206775039,1.54793595622335,1.60952136069861,-1.63070357163574,-0.0799988952533049,-0.0788472260769612 +12.23,0.243192462574657,1.04491206775039,1.54793595622335,1.60952136069861,-1.63070357163574,-0.079998895253305,-0.0788472260769612 +12.232,0.243192462574656,1.04491206775039,1.54793595622334,1.60952136069861,-1.63070357163574,-0.0799988952533051,-0.0788472260769611 +12.234,0.243192462574655,1.04491206775039,1.54793595622334,1.60952136069861,-1.63070357163574,-0.0799988952533052,-0.0788472260769609 +12.236,0.243192462574654,1.04491206775039,1.54793595622334,1.60952136069861,-1.63070357163574,-0.0799988952533053,-0.0788472260769608 +12.238,0.243192462574653,1.0449120677504,1.54793595622334,1.60952136069861,-1.63070357163574,-0.0799988952533054,-0.0788472260769606 +12.24,0.243192462574652,1.0449120677504,1.54793595622334,1.60952136069861,-1.63070357163574,-0.0799988952533055,-0.0788472260769605 +12.242,0.243192462574652,1.0449120677504,1.54793595622334,1.60952136069861,-1.63070357163574,-0.0799988952533057,-0.0788472260769603 +12.244,0.243192462574651,1.0449120677504,1.54793595622334,1.60952136069861,-1.63070357163574,-0.0799988952533058,-0.0788472260769602 +12.246,0.24319246257465,1.0449120677504,1.54793595622334,1.60952136069861,-1.63070357163574,-0.079998895253306,-0.07884722607696 +12.248,0.24319246257465,1.0449120677504,1.54793595622334,1.60952136069861,-1.63070357163574,-0.0799988952533062,-0.0788472260769599 +12.25,0.243192462574649,1.0449120677504,1.54793595622334,1.6095213606986,-1.63070357163574,-0.0799988952533063,-0.0788472260769598 +12.252,0.243192462574649,1.0449120677504,1.54793595622334,1.6095213606986,-1.63070357163574,-0.0799988952533064,-0.0788472260769596 +12.254,0.243192462574649,1.0449120677504,1.54793595622334,1.6095213606986,-1.63070357163574,-0.0799988952533066,-0.0788472260769595 +12.256,0.243192462574649,1.0449120677504,1.54793595622334,1.6095213606986,-1.63070357163574,-0.0799988952533067,-0.0788472260769595 +12.258,0.243192462574649,1.0449120677504,1.54793595622334,1.6095213606986,-1.63070357163574,-0.0799988952533068,-0.0788472260769594 +12.26,0.243192462574649,1.0449120677504,1.54793595622334,1.6095213606986,-1.63070357163574,-0.0799988952533069,-0.0788472260769594 +12.262,0.243192462574649,1.0449120677504,1.54793595622334,1.6095213606986,-1.63070357163574,-0.0799988952533069,-0.0788472260769593 +12.264,0.243192462574649,1.0449120677504,1.54793595622334,1.6095213606986,-1.63070357163574,-0.0799988952533069,-0.0788472260769593 +12.266,0.243192462574649,1.0449120677504,1.54793595622334,1.6095213606986,-1.63070357163574,-0.0799988952533069,-0.0788472260769593 +12.268,0.24319246257465,1.0449120677504,1.54793595622334,1.6095213606986,-1.63070357163574,-0.0799988952533069,-0.0788472260769593 +12.27,0.24319246257465,1.0449120677504,1.54793595622334,1.6095213606986,-1.63070357163574,-0.0799988952533069,-0.0788472260769594 +12.272,0.243192462574651,1.0449120677504,1.54793595622334,1.6095213606986,-1.63070357163574,-0.0799988952533069,-0.0788472260769594 +12.274,0.243192462574651,1.0449120677504,1.54793595622334,1.6095213606986,-1.63070357163574,-0.0799988952533068,-0.0788472260769595 +12.276,0.243192462574652,1.0449120677504,1.54793595622334,1.6095213606986,-1.63070357163574,-0.0799988952533067,-0.0788472260769596 +12.278,0.243192462574652,1.0449120677504,1.54793595622334,1.60952136069861,-1.63070357163574,-0.0799988952533066,-0.0788472260769597 +12.28,0.243192462574652,1.04491206775039,1.54793595622334,1.60952136069861,-1.63070357163574,-0.0799988952533066,-0.0788472260769598 +12.282,0.243192462574653,1.04491206775039,1.54793595622334,1.60952136069861,-1.63070357163574,-0.0799988952533065,-0.0788472260769598 +12.284,0.243192462574653,1.04491206775039,1.54793595622334,1.60952136069861,-1.63070357163574,-0.0799988952533064,-0.0788472260769599 +12.286,0.243192462574653,1.04491206775039,1.54793595622334,1.60952136069861,-1.63070357163574,-0.0799988952533063,-0.07884722607696 +12.288,0.243192462574654,1.04491206775039,1.54793595622334,1.60952136069861,-1.63070357163574,-0.0799988952533062,-0.0788472260769601 +12.29,0.243192462574654,1.04491206775039,1.54793595622334,1.60952136069861,-1.63070357163574,-0.0799988952533062,-0.0788472260769601 +12.292,0.243192462574654,1.04491206775039,1.54793595622334,1.60952136069861,-1.63070357163574,-0.0799988952533061,-0.0788472260769602 +12.294,0.243192462574654,1.04491206775039,1.54793595622334,1.60952136069861,-1.63070357163574,-0.079998895253306,-0.0788472260769602 +12.296,0.243192462574654,1.04491206775039,1.54793595622334,1.60952136069861,-1.63070357163574,-0.079998895253306,-0.0788472260769603 +12.298,0.243192462574654,1.04491206775039,1.54793595622334,1.60952136069861,-1.63070357163574,-0.0799988952533059,-0.0788472260769603 +12.3,0.243192462574654,1.04491206775039,1.54793595622334,1.60952136069861,-1.63070357163574,-0.0799988952533059,-0.0788472260769603 +12.302,0.243192462574653,1.04491206775039,1.54793595622334,1.60952136069861,-1.63070357163574,-0.0799988952533058,-0.0788472260769603 +12.304,0.243192462574653,1.04491206775039,1.54793595622334,1.60952136069861,-1.63070357163574,-0.0799988952533058,-0.0788472260769603 +12.306,0.243192462574653,1.04491206775039,1.54793595622334,1.60952136069861,-1.63070357163574,-0.0799988952533059,-0.0788472260769603 +12.308,0.243192462574653,1.04491206775039,1.54793595622334,1.60952136069861,-1.63070357163574,-0.0799988952533059,-0.0788472260769602 +12.31,0.243192462574653,1.04491206775039,1.54793595622334,1.60952136069861,-1.63070357163574,-0.0799988952533059,-0.0788472260769602 +12.312,0.243192462574653,1.0449120677504,1.54793595622334,1.60952136069861,-1.63070357163574,-0.079998895253306,-0.0788472260769602 +12.314,0.243192462574652,1.0449120677504,1.54793595622334,1.60952136069861,-1.63070357163574,-0.079998895253306,-0.0788472260769602 +12.316,0.243192462574652,1.0449120677504,1.54793595622334,1.60952136069861,-1.63070357163574,-0.0799988952533061,-0.0788472260769601 +12.318,0.243192462574652,1.0449120677504,1.54793595622334,1.60952136069861,-1.63070357163574,-0.0799988952533061,-0.07884722607696 +12.32,0.243192462574652,1.0449120677504,1.54793595622334,1.60952136069861,-1.63070357163574,-0.0799988952533062,-0.07884722607696 +12.322,0.243192462574652,1.0449120677504,1.54793595622334,1.60952136069861,-1.63070357163574,-0.0799988952533062,-0.07884722607696 +12.324,0.243192462574652,1.0449120677504,1.54793595622334,1.60952136069861,-1.63070357163574,-0.0799988952533063,-0.0788472260769599 +12.326,0.243192462574652,1.0449120677504,1.54793595622334,1.60952136069861,-1.63070357163574,-0.0799988952533063,-0.0788472260769599 +12.328,0.243192462574652,1.0449120677504,1.54793595622334,1.60952136069861,-1.63070357163574,-0.0799988952533064,-0.0788472260769599 +12.33,0.243192462574652,1.0449120677504,1.54793595622334,1.60952136069861,-1.63070357163574,-0.0799988952533064,-0.0788472260769599 +12.332,0.243192462574652,1.0449120677504,1.54793595622334,1.60952136069861,-1.63070357163574,-0.0799988952533064,-0.0788472260769599 +12.334,0.243192462574652,1.0449120677504,1.54793595622334,1.60952136069861,-1.63070357163574,-0.0799988952533064,-0.0788472260769599 +12.336,0.243192462574652,1.0449120677504,1.54793595622334,1.60952136069861,-1.63070357163574,-0.0799988952533064,-0.0788472260769599 +12.338,0.243192462574652,1.0449120677504,1.54793595622334,1.60952136069861,-1.63070357163574,-0.0799988952533064,-0.0788472260769599 +12.34,0.243192462574652,1.0449120677504,1.54793595622334,1.60952136069861,-1.63070357163574,-0.0799988952533064,-0.0788472260769599 +12.342,0.243192462574652,1.0449120677504,1.54793595622334,1.60952136069861,-1.63070357163574,-0.0799988952533064,-0.0788472260769599 +12.344,0.243192462574652,1.0449120677504,1.54793595622334,1.60952136069861,-1.63070357163574,-0.0799988952533064,-0.0788472260769599 +12.346,0.243192462574652,1.0449120677504,1.54793595622334,1.60952136069861,-1.63070357163574,-0.0799988952533063,-0.0788472260769599 +12.348,0.243192462574652,1.0449120677504,1.54793595622334,1.60952136069861,-1.63070357163574,-0.0799988952533063,-0.0788472260769599 +12.35,0.243192462574652,1.0449120677504,1.54793595622334,1.60952136069861,-1.63070357163574,-0.0799988952533063,-0.0788472260769599 +12.352,0.243192462574652,1.0449120677504,1.54793595622334,1.60952136069861,-1.63070357163574,-0.0799988952533063,-0.0788472260769599 +12.354,0.243192462574652,1.0449120677504,1.54793595622334,1.60952136069861,-1.63070357163574,-0.0799988952533062,-0.0788472260769599 +12.356,0.243192462574652,1.0449120677504,1.54793595622334,1.60952136069861,-1.63070357163574,-0.0799988952533062,-0.0788472260769599 +12.358,0.243192462574652,1.0449120677504,1.54793595622334,1.60952136069861,-1.63070357163574,-0.0799988952533062,-0.0788472260769599 +12.36,0.243192462574652,1.0449120677504,1.54793595622334,1.60952136069861,-1.63070357163574,-0.0799988952533062,-0.0788472260769599 +12.362,0.243192462574653,1.0449120677504,1.54793595622334,1.60952136069861,-1.63070357163574,-0.0799988952533062,-0.0788472260769599 +12.364,0.243192462574653,1.0449120677504,1.54793595622334,1.60952136069861,-1.63070357163574,-0.0799988952533062,-0.0788472260769599 +12.366,0.243192462574653,1.0449120677504,1.54793595622334,1.60952136069861,-1.63070357163574,-0.0799988952533062,-0.0788472260769599 +12.368,0.243192462574653,1.0449120677504,1.54793595622334,1.60952136069861,-1.63070357163574,-0.0799988952533062,-0.0788472260769599 +12.37,0.243192462574653,1.0449120677504,1.54793595622334,1.60952136069861,-1.63070357163574,-0.0799988952533062,-0.0788472260769599 +12.372,0.243192462574653,1.0449120677504,1.54793595622334,1.60952136069861,-1.63070357163574,-0.0799988952533062,-0.0788472260769599 +12.374,0.243192462574653,1.0449120677504,1.54793595622334,1.60952136069861,-1.63070357163574,-0.0799988952533062,-0.07884722607696 +12.376,0.243192462574653,1.0449120677504,1.54793595622334,1.60952136069861,-1.63070357163574,-0.0799988952533062,-0.07884722607696 +12.378,0.243192462574653,1.0449120677504,1.54793595622334,1.60952136069861,-1.63070357163574,-0.0799988952533062,-0.07884722607696 +12.38,0.243192462574653,1.0449120677504,1.54793595622334,1.60952136069861,-1.63070357163574,-0.0799988952533062,-0.07884722607696 +12.382,0.243192462574653,1.0449120677504,1.54793595622334,1.60952136069861,-1.63070357163574,-0.0799988952533062,-0.07884722607696 +12.384,0.243192462574653,1.0449120677504,1.54793595622334,1.60952136069861,-1.63070357163574,-0.0799988952533062,-0.07884722607696 +12.386,0.243192462574653,1.0449120677504,1.54793595622334,1.60952136069861,-1.63070357163574,-0.0799988952533062,-0.07884722607696 +12.388,0.243192462574653,1.0449120677504,1.54793595622334,1.60952136069861,-1.63070357163574,-0.0799988952533062,-0.07884722607696 +12.39,0.243192462574653,1.0449120677504,1.54793595622334,1.60952136069861,-1.63070357163574,-0.0799988952533062,-0.07884722607696 +12.392,0.243192462574653,1.0449120677504,1.54793595622334,1.60952136069861,-1.63070357163574,-0.0799988952533062,-0.07884722607696 +12.394,0.243192462574653,1.0449120677504,1.54793595622334,1.60952136069861,-1.63070357163574,-0.0799988952533062,-0.07884722607696 +12.396,0.243192462574653,1.0449120677504,1.54793595622334,1.60952136069861,-1.63070357163574,-0.0799988952533062,-0.07884722607696 +12.398,0.243192462574653,1.0449120677504,1.54793595622334,1.60952136069861,-1.63070357163574,-0.0799988952533062,-0.07884722607696 +12.4,0.243192462574653,1.0449120677504,1.54793595622334,1.60952136069861,-1.63070357163574,-0.0799988952533062,-0.07884722607696 +12.402,0.243192462574653,1.0449120677504,1.54793595622334,1.60952136069861,-1.63070357163574,-0.0799988952533062,-0.07884722607696 +12.404,0.243192462574653,1.0449120677504,1.54793595622334,1.60952136069861,-1.63070357163574,-0.0799988952533062,-0.07884722607696 +12.406,0.243192462574653,1.0449120677504,1.54793595622334,1.60952136069861,-1.63070357163574,-0.0799988952533062,-0.07884722607696 +12.408,0.243192462574653,1.0449120677504,1.54793595622334,1.60952136069861,-1.63070357163574,-0.0799988952533062,-0.07884722607696 +12.41,0.243192462574653,1.0449120677504,1.54793595622334,1.60952136069861,-1.63070357163574,-0.0799988952533062,-0.07884722607696 +12.412,0.243192462574653,1.0449120677504,1.54793595622334,1.60952136069861,-1.63070357163574,-0.0799988952533062,-0.07884722607696 +12.414,0.243192462574653,1.0449120677504,1.54793595622334,1.60952136069861,-1.63070357163574,-0.0799988952533062,-0.07884722607696 +12.416,0.243192462574653,1.0449120677504,1.54793595622334,1.60952136069861,-1.63070357163574,-0.0799988952533062,-0.07884722607696 +12.418,0.243192462574653,1.0449120677504,1.54793595622334,1.60952136069861,-1.63070357163574,-0.0799988952533062,-0.07884722607696 +12.42,0.243192462574653,1.0449120677504,1.54793595622334,1.60952136069861,-1.63070357163574,-0.0799988952533062,-0.07884722607696 +12.422,0.243192462574653,1.0449120677504,1.54793595622334,1.60952136069861,-1.63070357163574,-0.0799988952533062,-0.07884722607696 +12.424,0.243192462574653,1.0449120677504,1.54793595622334,1.60952136069861,-1.63070357163574,-0.0799988952533062,-0.07884722607696 +12.426,0.243192462574653,1.0449120677504,1.54793595622334,1.60952136069861,-1.63070357163574,-0.0799988952533062,-0.07884722607696 +12.428,0.243192462574653,1.0449120677504,1.54793595622334,1.60952136069861,-1.63070357163574,-0.0799988952533062,-0.07884722607696 +12.43,0.243192462574653,1.0449120677504,1.54793595622334,1.60952136069861,-1.63070357163574,-0.0799988952533062,-0.07884722607696 +12.432,0.243192462574653,1.0449120677504,1.54793595622334,1.60952136069861,-1.63070357163574,-0.0799988952533062,-0.07884722607696 +12.434,0.243192462574653,1.0449120677504,1.54793595622334,1.60952136069861,-1.63070357163574,-0.0799988952533062,-0.07884722607696 +12.436,0.243192462574653,1.0449120677504,1.54793595622334,1.60952136069861,-1.63070357163574,-0.0799988952533062,-0.07884722607696 +12.438,0.243192462574653,1.0449120677504,1.54793595622334,1.60952136069861,-1.63070357163574,-0.0799988952533062,-0.07884722607696 +12.44,0.243192462574653,1.0449120677504,1.54793595622334,1.60952136069861,-1.63070357163574,-0.0799988952533062,-0.07884722607696 +12.442,0.243192462574653,1.0449120677504,1.54793595622334,1.60952136069861,-1.63070357163574,-0.0799988952533062,-0.07884722607696 +12.444,0.243192462574653,1.0449120677504,1.54793595622334,1.60952136069861,-1.63070357163574,-0.0799988952533062,-0.07884722607696 +12.446,0.243192462574653,1.0449120677504,1.54793595622334,1.60952136069861,-1.63070357163574,-0.0799988952533062,-0.07884722607696 +12.448,0.243192462574653,1.0449120677504,1.54793595622334,1.60952136069861,-1.63070357163574,-0.0799988952533062,-0.07884722607696 +12.45,0.243192462574653,1.0449120677504,1.54793595622334,1.60952136069861,-1.63070357163574,-0.0799988952533062,-0.07884722607696 +12.452,0.243192462574653,1.0449120677504,1.54793595622334,1.60952136069861,-1.63070357163574,-0.0799988952533062,-0.07884722607696 +12.454,0.243192462574653,1.0449120677504,1.54793595622334,1.60952136069861,-1.63070357163574,-0.0799988952533062,-0.07884722607696 +12.456,0.243192462574653,1.0449120677504,1.54793595622334,1.60952136069861,-1.63070357163574,-0.0799988952533062,-0.07884722607696 +12.458,0.243192462574653,1.0449120677504,1.54793595622334,1.60952136069861,-1.63070357163574,-0.0799988952533062,-0.07884722607696 +12.46,0.243192462574653,1.0449120677504,1.54793595622334,1.60952136069861,-1.63070357163574,-0.0799988952533062,-0.07884722607696 +12.462,0.243192462574653,1.0449120677504,1.54793595622334,1.60952136069861,-1.63070357163574,-0.0799988952533062,-0.07884722607696 +12.464,0.243192462574653,1.0449120677504,1.54793595622334,1.60952136069861,-1.63070357163574,-0.0799988952533062,-0.07884722607696 +12.466,0.243192462574653,1.0449120677504,1.54793595622334,1.60952136069861,-1.63070357163574,-0.0799988952533062,-0.07884722607696 +12.468,0.243192462574653,1.0449120677504,1.54793595622334,1.60952136069861,-1.63070357163574,-0.0799988952533062,-0.07884722607696 +12.47,0.243192462574653,1.0449120677504,1.54793595622334,1.60952136069861,-1.63070357163574,-0.0799988952533062,-0.07884722607696 +12.472,0.243192462574653,1.0449120677504,1.54793595622334,1.60952136069861,-1.63070357163574,-0.0799988952533062,-0.07884722607696 +12.474,0.243192462574653,1.0449120677504,1.54793595622334,1.60952136069861,-1.63070357163574,-0.0799988952533062,-0.07884722607696 +12.476,0.243192462574653,1.0449120677504,1.54793595622334,1.60952136069861,-1.63070357163574,-0.0799988952533062,-0.07884722607696 +12.478,0.243192462574653,1.0449120677504,1.54793595622334,1.60952136069861,-1.63070357163574,-0.0799988952533062,-0.07884722607696 +12.48,0.243192462574653,1.0449120677504,1.54793595622334,1.60952136069861,-1.63070357163574,-0.0799988952533062,-0.07884722607696 +12.482,0.243192462574653,1.0449120677504,1.54793595622334,1.60952136069861,-1.63070357163574,-0.0799988952533062,-0.07884722607696 +12.484,0.243192462574653,1.0449120677504,1.54793595622334,1.60952136069861,-1.63070357163574,-0.0799988952533062,-0.07884722607696 +12.486,0.243192462574653,1.0449120677504,1.54793595622334,1.60952136069861,-1.63070357163574,-0.0799988952533062,-0.07884722607696 +12.488,0.243192462574653,1.0449120677504,1.54793595622334,1.60952136069861,-1.63070357163574,-0.0799988952533062,-0.07884722607696 +12.49,0.243192462574653,1.0449120677504,1.54793595622334,1.60952136069861,-1.63070357163574,-0.0799988952533062,-0.07884722607696 +12.492,0.243192462574653,1.0449120677504,1.54793595622334,1.60952136069861,-1.63070357163574,-0.0799988952533062,-0.07884722607696 +12.494,0.243192462574653,1.0449120677504,1.54793595622334,1.60952136069861,-1.63070357163574,-0.0799988952533062,-0.07884722607696 +12.496,0.243192462574653,1.0449120677504,1.54793595622334,1.60952136069861,-1.63070357163574,-0.0799988952533062,-0.07884722607696 +12.498,0.243192462574653,1.0449120677504,1.54793595622334,1.60952136069861,-1.63070357163574,-0.0799988952533062,-0.07884722607696 +12.5,0.243192462574653,1.0449120677504,1.54793595622334,1.60952136069861,-1.63070357163574,-0.0799988952533062,-0.07884722607696 +12.502,0.243192462574653,1.0449120677504,1.54793595622334,1.60952136069861,-1.63070357163574,-0.0799988952533062,-0.07884722607696 +12.504,0.243192462574653,1.0449120677504,1.54793595622334,1.60952136069861,-1.63070357163574,-0.0799988952533062,-0.07884722607696 +12.506,0.243192462574653,1.0449120677504,1.54793595622334,1.60952136069861,-1.63070357163574,-0.0799988952533062,-0.07884722607696 +12.508,0.243192462574653,1.0449120677504,1.54793595622334,1.60952136069861,-1.63070357163574,-0.0799988952533062,-0.07884722607696 +12.51,0.243192462574653,1.0449120677504,1.54793595622334,1.60952136069861,-1.63070357163574,-0.0799988952533062,-0.07884722607696 +12.512,0.243192462574653,1.0449120677504,1.54793595622334,1.60952136069861,-1.63070357163574,-0.0799988952533062,-0.07884722607696 +12.514,0.243192462574653,1.0449120677504,1.54793595622334,1.60952136069861,-1.63070357163574,-0.0799988952533062,-0.07884722607696 +12.516,0.243192462574653,1.0449120677504,1.54793595622334,1.60952136069861,-1.63070357163574,-0.0799988952533062,-0.07884722607696 +12.518,0.243192462574653,1.0449120677504,1.54793595622334,1.60952136069861,-1.63070357163574,-0.0799988952533062,-0.07884722607696 +12.52,0.243192462574653,1.0449120677504,1.54793595622334,1.60952136069861,-1.63070357163574,-0.0799988952533062,-0.07884722607696 +12.522,0.243192462574653,1.0449120677504,1.54793595622334,1.60952136069861,-1.63070357163574,-0.0799988952533062,-0.07884722607696 +12.524,0.243192462574653,1.0449120677504,1.54793595622334,1.60952136069861,-1.63070357163574,-0.0799988952533062,-0.07884722607696 +12.526,0.243192462574653,1.0449120677504,1.54793595622334,1.60952136069861,-1.63070357163574,-0.0799988952533062,-0.07884722607696 +12.528,0.243192462574653,1.0449120677504,1.54793595622334,1.60952136069861,-1.63070357163574,-0.0799988952533062,-0.07884722607696 +12.53,0.243192462574653,1.0449120677504,1.54793595622334,1.60952136069861,-1.63070357163574,-0.0799988952533062,-0.07884722607696 +12.532,0.243192462574653,1.0449120677504,1.54793595622334,1.60952136069861,-1.63070357163574,-0.0799988952533062,-0.07884722607696 +12.534,0.243192462574653,1.0449120677504,1.54793595622334,1.60952136069861,-1.63070357163574,-0.0799988952533062,-0.07884722607696 +12.536,0.243192462574653,1.0449120677504,1.54793595622334,1.60952136069861,-1.63070357163574,-0.0799988952533062,-0.07884722607696 +12.538,0.243192462574653,1.0449120677504,1.54793595622334,1.60952136069861,-1.63070357163574,-0.0799988952533062,-0.07884722607696 +12.54,0.243192462574653,1.0449120677504,1.54793595622334,1.60952136069861,-1.63070357163574,-0.0799988952533062,-0.07884722607696 +12.542,0.243192462574653,1.0449120677504,1.54793595622334,1.60952136069861,-1.63070357163574,-0.0799988952533062,-0.07884722607696 +12.544,0.243192462574653,1.0449120677504,1.54793595622334,1.60952136069861,-1.63070357163574,-0.0799988952533062,-0.07884722607696 +12.546,0.243192462574653,1.0449120677504,1.54793595622334,1.60952136069861,-1.63070357163574,-0.0799988952533062,-0.07884722607696 +12.548,0.243192462574653,1.0449120677504,1.54793595622334,1.60952136069861,-1.63070357163574,-0.0799988952533062,-0.07884722607696 +12.55,0.243192462574653,1.0449120677504,1.54793595622334,1.60952136069861,-1.63070357163574,-0.0799988952533062,-0.07884722607696 +12.552,0.243192462574653,1.0449120677504,1.54793595622334,1.60952136069861,-1.63070357163574,-0.0799988952533062,-0.07884722607696 +12.554,0.243192462574653,1.0449120677504,1.54793595622334,1.60952136069861,-1.63070357163574,-0.0799988952533062,-0.07884722607696 +12.556,0.243192462574653,1.0449120677504,1.54793595622334,1.60952136069861,-1.63070357163574,-0.0799988952533062,-0.07884722607696 +12.558,0.243192462574653,1.0449120677504,1.54793595622334,1.60952136069861,-1.63070357163574,-0.0799988952533062,-0.07884722607696 +12.56,0.243192462574653,1.0449120677504,1.54793595622334,1.60952136069861,-1.63070357163574,-0.0799988952533062,-0.07884722607696 +12.562,0.243192462574653,1.0449120677504,1.54793595622334,1.60952136069861,-1.63070357163574,-0.0799988952533062,-0.07884722607696 +12.564,0.243192462574653,1.0449120677504,1.54793595622334,1.60952136069861,-1.63070357163574,-0.0799988952533062,-0.07884722607696 +12.566,0.243192462574653,1.0449120677504,1.54793595622334,1.60952136069861,-1.63070357163574,-0.0799988952533062,-0.07884722607696 +12.568,0.243192462574653,1.0449120677504,1.54793595622334,1.60952136069861,-1.63070357163574,-0.0799988952533062,-0.07884722607696 +12.57,0.243192462574653,1.0449120677504,1.54793595622334,1.60952136069861,-1.63070357163574,-0.0799988952533062,-0.07884722607696 +12.572,0.243192462574653,1.0449120677504,1.54793595622334,1.60952136069861,-1.63070357163574,-0.0799988952533062,-0.07884722607696 +12.574,0.243192462574653,1.0449120677504,1.54793595622334,1.60952136069861,-1.63070357163574,-0.0799988952533062,-0.07884722607696 +12.576,0.243192462574653,1.0449120677504,1.54793595622334,1.60952136069861,-1.63070357163574,-0.0799988952533062,-0.07884722607696 +12.578,0.243192462574653,1.0449120677504,1.54793595622334,1.60952136069861,-1.63070357163574,-0.0799988952533062,-0.07884722607696 +12.58,0.243192462574653,1.0449120677504,1.54793595622334,1.60952136069861,-1.63070357163574,-0.0799988952533062,-0.07884722607696 +12.582,0.243192462574653,1.0449120677504,1.54793595622334,1.60952136069861,-1.63070357163574,-0.0799988952533062,-0.07884722607696 +12.584,0.243192462574653,1.0449120677504,1.54793595622334,1.60952136069861,-1.63070357163574,-0.0799988952533062,-0.07884722607696 +12.586,0.243192462574653,1.0449120677504,1.54793595622334,1.60952136069861,-1.63070357163574,-0.0799988952533062,-0.07884722607696 +12.588,0.243192462574653,1.0449120677504,1.54793595622334,1.60952136069861,-1.63070357163574,-0.0799988952533062,-0.07884722607696 +12.59,0.243192462574653,1.0449120677504,1.54793595622334,1.60952136069861,-1.63070357163574,-0.0799988952533062,-0.07884722607696 +12.592,0.243192462574653,1.0449120677504,1.54793595622334,1.60952136069861,-1.63070357163574,-0.0799988952533062,-0.07884722607696 +12.594,0.243192462574653,1.0449120677504,1.54793595622334,1.60952136069861,-1.63070357163574,-0.0799988952533062,-0.07884722607696 +12.596,0.243192462574653,1.0449120677504,1.54793595622334,1.60952136069861,-1.63070357163574,-0.0799988952533062,-0.07884722607696 +12.598,0.243192462574653,1.0449120677504,1.54793595622334,1.60952136069861,-1.63070357163574,-0.0799988952533062,-0.07884722607696 +12.6,0.243192462574653,1.0449120677504,1.54793595622334,1.60952136069861,-1.63070357163574,-0.0799988952533062,-0.07884722607696 +12.602,0.243192462574653,1.0449120677504,1.54793595622334,1.60952136069861,-1.63070357163574,-0.0799988952533062,-0.07884722607696 +12.604,0.243192462574653,1.0449120677504,1.54793595622334,1.60952136069861,-1.63070357163574,-0.0799988952533062,-0.07884722607696 +12.606,0.243192462574653,1.0449120677504,1.54793595622334,1.60952136069861,-1.63070357163574,-0.0799988952533062,-0.07884722607696 +12.608,0.243192462574653,1.0449120677504,1.54793595622334,1.60952136069861,-1.63070357163574,-0.0799988952533062,-0.07884722607696 +12.61,0.243192462574653,1.0449120677504,1.54793595622334,1.60952136069861,-1.63070357163574,-0.0799988952533062,-0.07884722607696 +12.612,0.243192462574653,1.0449120677504,1.54793595622334,1.60952136069861,-1.63070357163574,-0.0799988952533062,-0.07884722607696 +12.614,0.243192462574653,1.0449120677504,1.54793595622334,1.60952136069861,-1.63070357163574,-0.0799988952533062,-0.07884722607696 +12.616,0.243192462574653,1.0449120677504,1.54793595622334,1.60952136069861,-1.63070357163574,-0.0799988952533062,-0.07884722607696 +12.618,0.243192462574653,1.0449120677504,1.54793595622334,1.60952136069861,-1.63070357163574,-0.0799988952533062,-0.07884722607696 +12.62,0.243192462574653,1.0449120677504,1.54793595622334,1.60952136069861,-1.63070357163574,-0.0799988952533062,-0.07884722607696 +12.622,0.243192462574653,1.0449120677504,1.54793595622334,1.60952136069861,-1.63070357163574,-0.0799988952533062,-0.07884722607696 +12.624,0.243192462574653,1.0449120677504,1.54793595622334,1.60952136069861,-1.63070357163574,-0.0799988952533062,-0.07884722607696 +12.626,0.243192462574653,1.0449120677504,1.54793595622334,1.60952136069861,-1.63070357163574,-0.0799988952533062,-0.07884722607696 +12.628,0.243192462574653,1.0449120677504,1.54793595622334,1.60952136069861,-1.63070357163574,-0.0799988952533062,-0.07884722607696 +12.63,0.243192462574653,1.0449120677504,1.54793595622334,1.60952136069861,-1.63070357163574,-0.0799988952533062,-0.07884722607696 +12.632,0.243192462574653,1.0449120677504,1.54793595622334,1.60952136069861,-1.63070357163574,-0.0799988952533062,-0.07884722607696 +12.634,0.243192462574653,1.0449120677504,1.54793595622334,1.60952136069861,-1.63070357163574,-0.0799988952533062,-0.07884722607696 +12.636,0.243192462574653,1.0449120677504,1.54793595622334,1.60952136069861,-1.63070357163574,-0.0799988952533062,-0.07884722607696 +12.638,0.243192462574653,1.0449120677504,1.54793595622334,1.60952136069861,-1.63070357163574,-0.0799988952533062,-0.07884722607696 +12.64,0.243192462574653,1.0449120677504,1.54793595622334,1.60952136069861,-1.63070357163574,-0.0799988952533062,-0.07884722607696 +12.642,0.243192462574653,1.0449120677504,1.54793595622334,1.60952136069861,-1.63070357163574,-0.0799988952533062,-0.07884722607696 +12.644,0.243192462574653,1.0449120677504,1.54793595622334,1.60952136069861,-1.63070357163574,-0.0799988952533062,-0.07884722607696 +12.646,0.243192462574653,1.0449120677504,1.54793595622334,1.60952136069861,-1.63070357163574,-0.0799988952533062,-0.07884722607696 +12.648,0.243192462574653,1.0449120677504,1.54793595622334,1.60952136069861,-1.63070357163574,-0.0799988952533062,-0.07884722607696 +12.65,0.243192462574653,1.0449120677504,1.54793595622334,1.60952136069861,-1.63070357163574,-0.0799988952533062,-0.07884722607696 +12.652,0.243192462574653,1.0449120677504,1.54793595622334,1.60952136069861,-1.63070357163574,-0.0799988952533062,-0.07884722607696 +12.654,0.243192462574653,1.0449120677504,1.54793595622334,1.60952136069861,-1.63070357163574,-0.0799988952533062,-0.07884722607696 +12.656,0.243192462574653,1.0449120677504,1.54793595622334,1.60952136069861,-1.63070357163574,-0.0799988952533062,-0.07884722607696 +12.658,0.243192462574653,1.0449120677504,1.54793595622334,1.60952136069861,-1.63070357163574,-0.0799988952533062,-0.07884722607696 +12.66,0.243192462574653,1.0449120677504,1.54793595622334,1.60952136069861,-1.63070357163574,-0.0799988952533062,-0.07884722607696 +12.662,0.243192462574653,1.0449120677504,1.54793595622334,1.60952136069861,-1.63070357163574,-0.0799988952533062,-0.07884722607696 +12.664,0.243192462574653,1.0449120677504,1.54793595622334,1.60952136069861,-1.63070357163574,-0.0799988952533062,-0.07884722607696 +12.666,0.243192462574653,1.0449120677504,1.54793595622334,1.60952136069861,-1.63070357163574,-0.0799988952533062,-0.07884722607696 +12.668,0.243192462574653,1.0449120677504,1.54793595622334,1.60952136069861,-1.63070357163574,-0.0799988952533062,-0.07884722607696 +12.67,0.243192462574653,1.0449120677504,1.54793595622334,1.60952136069861,-1.63070357163574,-0.0799988952533062,-0.07884722607696 +12.672,0.243192462574653,1.0449120677504,1.54793595622334,1.60952136069861,-1.63070357163574,-0.0799988952533062,-0.07884722607696 +12.674,0.243192462574653,1.0449120677504,1.54793595622334,1.60952136069861,-1.63070357163574,-0.0799988952533062,-0.07884722607696 +12.676,0.243192462574653,1.0449120677504,1.54793595622334,1.60952136069861,-1.63070357163574,-0.0799988952533062,-0.07884722607696 +12.678,0.243192462574653,1.0449120677504,1.54793595622334,1.60952136069861,-1.63070357163574,-0.0799988952533062,-0.07884722607696 +12.68,0.243192462574653,1.0449120677504,1.54793595622334,1.60952136069861,-1.63070357163574,-0.0799988952533062,-0.07884722607696 +12.682,0.243192462574653,1.0449120677504,1.54793595622334,1.60952136069861,-1.63070357163574,-0.0799988952533062,-0.07884722607696 +12.684,0.243192462574653,1.0449120677504,1.54793595622334,1.60952136069861,-1.63070357163574,-0.0799988952533062,-0.07884722607696 +12.686,0.243192462574653,1.0449120677504,1.54793595622334,1.60952136069861,-1.63070357163574,-0.0799988952533062,-0.07884722607696 +12.688,0.243192462574653,1.0449120677504,1.54793595622334,1.60952136069861,-1.63070357163574,-0.0799988952533062,-0.07884722607696 +12.69,0.243192462574653,1.0449120677504,1.54793595622334,1.60952136069861,-1.63070357163574,-0.0799988952533062,-0.07884722607696 +12.692,0.243192462574653,1.0449120677504,1.54793595622334,1.60952136069861,-1.63070357163574,-0.0799988952533062,-0.07884722607696 +12.694,0.243192462574653,1.0449120677504,1.54793595622334,1.60952136069861,-1.63070357163574,-0.0799988952533062,-0.07884722607696 +12.696,0.243192462574653,1.0449120677504,1.54793595622334,1.60952136069861,-1.63070357163574,-0.0799988952533062,-0.07884722607696 +12.698,0.243192462574653,1.0449120677504,1.54793595622334,1.60952136069861,-1.63070357163574,-0.0799988952533062,-0.07884722607696 +12.7,0.243192462574653,1.0449120677504,1.54793595622334,1.60952136069861,-1.63070357163574,-0.0799988952533062,-0.07884722607696 +12.702,0.243192462574653,1.0449120677504,1.54793595622334,1.60952136069861,-1.63070357163574,-0.0799988952533062,-0.07884722607696 +12.704,0.243192462574653,1.0449120677504,1.54793595622334,1.60952136069861,-1.63070357163574,-0.0799988952533062,-0.07884722607696 +12.706,0.243192462574653,1.0449120677504,1.54793595622334,1.60952136069861,-1.63070357163574,-0.0799988952533062,-0.07884722607696 +12.708,0.243192462574653,1.0449120677504,1.54793595622334,1.60952136069861,-1.63070357163574,-0.0799988952533062,-0.07884722607696 +12.71,0.243192462574653,1.0449120677504,1.54793595622334,1.60952136069861,-1.63070357163574,-0.0799988952533062,-0.07884722607696 +12.712,0.243192462574653,1.0449120677504,1.54793595622334,1.60952136069861,-1.63070357163574,-0.0799988952533062,-0.07884722607696 +12.714,0.243192462574653,1.0449120677504,1.54793595622334,1.60952136069861,-1.63070357163574,-0.0799988952533062,-0.07884722607696 +12.716,0.243192462574653,1.0449120677504,1.54793595622334,1.60952136069861,-1.63070357163574,-0.0799988952533062,-0.07884722607696 +12.718,0.243192462574653,1.0449120677504,1.54793595622334,1.60952136069861,-1.63070357163574,-0.0799988952533062,-0.07884722607696 +12.72,0.243192462574653,1.0449120677504,1.54793595622334,1.60952136069861,-1.63070357163574,-0.0799988952533062,-0.07884722607696 +12.722,0.243192462574653,1.0449120677504,1.54793595622334,1.60952136069861,-1.63070357163574,-0.0799988952533062,-0.07884722607696 +12.724,0.243192462574653,1.0449120677504,1.54793595622334,1.60952136069861,-1.63070357163574,-0.0799988952533062,-0.07884722607696 +12.726,0.243192462574653,1.0449120677504,1.54793595622334,1.60952136069861,-1.63070357163574,-0.0799988952533062,-0.07884722607696 +12.728,0.243192462574653,1.0449120677504,1.54793595622334,1.60952136069861,-1.63070357163574,-0.0799988952533062,-0.07884722607696 +12.73,0.243192462574653,1.0449120677504,1.54793595622334,1.60952136069861,-1.63070357163574,-0.0799988952533062,-0.07884722607696 +12.732,0.243192462574653,1.0449120677504,1.54793595622334,1.60952136069861,-1.63070357163574,-0.0799988952533062,-0.07884722607696 +12.734,0.243192462574653,1.0449120677504,1.54793595622334,1.60952136069861,-1.63070357163574,-0.0799988952533062,-0.07884722607696 +12.736,0.243192462574653,1.0449120677504,1.54793595622334,1.60952136069861,-1.63070357163574,-0.0799988952533062,-0.07884722607696 +12.738,0.243192462574653,1.0449120677504,1.54793595622334,1.60952136069861,-1.63070357163574,-0.0799988952533062,-0.07884722607696 +12.74,0.243192462574653,1.0449120677504,1.54793595622334,1.60952136069861,-1.63070357163574,-0.0799988952533062,-0.07884722607696 +12.742,0.243192462574653,1.0449120677504,1.54793595622334,1.60952136069861,-1.63070357163574,-0.0799988952533062,-0.07884722607696 +12.744,0.243192462574653,1.0449120677504,1.54793595622334,1.60952136069861,-1.63070357163574,-0.0799988952533062,-0.07884722607696 +12.746,0.243192462574653,1.0449120677504,1.54793595622334,1.60952136069861,-1.63070357163574,-0.0799988952533062,-0.07884722607696 +12.748,0.243192462574653,1.0449120677504,1.54793595622334,1.60952136069861,-1.63070357163574,-0.0799988952533062,-0.07884722607696 +12.75,0.243192462574653,1.0449120677504,1.54793595622334,1.60952136069861,-1.63070357163574,-0.0799988952533062,-0.07884722607696 +12.752,0.243192462574653,1.0449120677504,1.54793595622334,1.60952136069861,-1.63070357163574,-0.0799988952533062,-0.07884722607696 +12.754,0.243192462574653,1.0449120677504,1.54793595622334,1.60952136069861,-1.63070357163574,-0.0799988952533062,-0.07884722607696 +12.756,0.243192462574653,1.0449120677504,1.54793595622334,1.60952136069861,-1.63070357163574,-0.0799988952533062,-0.07884722607696 +12.758,0.243192462574653,1.0449120677504,1.54793595622334,1.60952136069861,-1.63070357163574,-0.0799988952533062,-0.07884722607696 +12.76,0.243192462574653,1.0449120677504,1.54793595622334,1.60952136069861,-1.63070357163574,-0.0799988952533062,-0.07884722607696 +12.762,0.243192462574653,1.0449120677504,1.54793595622334,1.60952136069861,-1.63070357163574,-0.0799988952533062,-0.07884722607696 +12.764,0.243192462574653,1.0449120677504,1.54793595622334,1.60952136069861,-1.63070357163574,-0.0799988952533062,-0.07884722607696 +12.766,0.243192462574653,1.0449120677504,1.54793595622334,1.60952136069861,-1.63070357163574,-0.0799988952533062,-0.07884722607696 +12.768,0.243192462574653,1.0449120677504,1.54793595622334,1.60952136069861,-1.63070357163574,-0.0799988952533062,-0.07884722607696 +12.77,0.243192462574653,1.0449120677504,1.54793595622334,1.60952136069861,-1.63070357163574,-0.0799988952533062,-0.07884722607696 +12.772,0.243192462574653,1.0449120677504,1.54793595622334,1.60952136069861,-1.63070357163574,-0.0799988952533062,-0.07884722607696 +12.774,0.243192462574653,1.0449120677504,1.54793595622334,1.60952136069861,-1.63070357163574,-0.0799988952533062,-0.07884722607696 +12.776,0.243192462574653,1.0449120677504,1.54793595622334,1.60952136069861,-1.63070357163574,-0.0799988952533062,-0.07884722607696 +12.778,0.243192462574653,1.0449120677504,1.54793595622334,1.60952136069861,-1.63070357163574,-0.0799988952533062,-0.07884722607696 +12.78,0.243192462574653,1.0449120677504,1.54793595622334,1.60952136069861,-1.63070357163574,-0.0799988952533062,-0.07884722607696 +12.782,0.243192462574653,1.0449120677504,1.54793595622334,1.60952136069861,-1.63070357163574,-0.0799988952533062,-0.07884722607696 +12.784,0.243192462574653,1.0449120677504,1.54793595622334,1.60952136069861,-1.63070357163574,-0.0799988952533062,-0.07884722607696 +12.786,0.243192462574653,1.0449120677504,1.54793595622334,1.60952136069861,-1.63070357163574,-0.0799988952533062,-0.07884722607696 +12.788,0.243192462574653,1.0449120677504,1.54793595622334,1.60952136069861,-1.63070357163574,-0.0799988952533062,-0.07884722607696 +12.79,0.243192462574653,1.0449120677504,1.54793595622334,1.60952136069861,-1.63070357163574,-0.0799988952533062,-0.07884722607696 +12.792,0.243192462574653,1.0449120677504,1.54793595622334,1.60952136069861,-1.63070357163574,-0.0799988952533062,-0.07884722607696 +12.794,0.243192462574653,1.0449120677504,1.54793595622334,1.60952136069861,-1.63070357163574,-0.0799988952533062,-0.07884722607696 +12.796,0.243192462574653,1.0449120677504,1.54793595622334,1.60952136069861,-1.63070357163574,-0.0799988952533062,-0.07884722607696 +12.798,0.243192462574653,1.0449120677504,1.54793595622334,1.60952136069861,-1.63070357163574,-0.0799988952533062,-0.07884722607696 +12.8,0.243192462574653,1.0449120677504,1.54793595622334,1.60952136069861,-1.63070357163574,-0.0799988952533062,-0.07884722607696 +12.802,0.243192462574653,1.0449120677504,1.54793595622334,1.60952136069861,-1.63070357163574,-0.0799988952533062,-0.07884722607696 +12.804,0.243192462574653,1.0449120677504,1.54793595622334,1.60952136069861,-1.63070357163574,-0.0799988952533062,-0.07884722607696 +12.806,0.243192462574653,1.0449120677504,1.54793595622334,1.60952136069861,-1.63070357163574,-0.0799988952533062,-0.07884722607696 +12.808,0.243192462574653,1.0449120677504,1.54793595622334,1.60952136069861,-1.63070357163574,-0.0799988952533062,-0.07884722607696 +12.81,0.243192462574653,1.0449120677504,1.54793595622334,1.60952136069861,-1.63070357163574,-0.0799988952533062,-0.07884722607696 +12.812,0.243192462574653,1.0449120677504,1.54793595622334,1.60952136069861,-1.63070357163574,-0.0799988952533062,-0.07884722607696 +12.814,0.243192462574653,1.0449120677504,1.54793595622334,1.60952136069861,-1.63070357163574,-0.0799988952533062,-0.07884722607696 +12.816,0.243192462574653,1.0449120677504,1.54793595622334,1.60952136069861,-1.63070357163574,-0.0799988952533062,-0.07884722607696 +12.818,0.243192462574653,1.0449120677504,1.54793595622334,1.60952136069861,-1.63070357163574,-0.0799988952533062,-0.07884722607696 +12.82,0.243192462574653,1.0449120677504,1.54793595622334,1.60952136069861,-1.63070357163574,-0.0799988952533062,-0.07884722607696 +12.822,0.243192462574653,1.0449120677504,1.54793595622334,1.60952136069861,-1.63070357163574,-0.0799988952533062,-0.07884722607696 +12.824,0.243192462574653,1.0449120677504,1.54793595622334,1.60952136069861,-1.63070357163574,-0.0799988952533062,-0.07884722607696 +12.826,0.243192462574653,1.0449120677504,1.54793595622334,1.60952136069861,-1.63070357163574,-0.0799988952533062,-0.07884722607696 +12.828,0.243192462574653,1.0449120677504,1.54793595622334,1.60952136069861,-1.63070357163574,-0.0799988952533062,-0.07884722607696 +12.83,0.243192462574653,1.0449120677504,1.54793595622334,1.60952136069861,-1.63070357163574,-0.0799988952533062,-0.07884722607696 +12.832,0.243192462574653,1.0449120677504,1.54793595622334,1.60952136069861,-1.63070357163574,-0.0799988952533062,-0.07884722607696 +12.834,0.243192462574653,1.0449120677504,1.54793595622334,1.60952136069861,-1.63070357163574,-0.0799988952533062,-0.07884722607696 +12.836,0.243192462574653,1.0449120677504,1.54793595622334,1.60952136069861,-1.63070357163574,-0.0799988952533062,-0.07884722607696 +12.838,0.243192462574653,1.0449120677504,1.54793595622334,1.60952136069861,-1.63070357163574,-0.0799988952533062,-0.07884722607696 +12.84,0.243192462574653,1.0449120677504,1.54793595622334,1.60952136069861,-1.63070357163574,-0.0799988952533062,-0.07884722607696 +12.842,0.243192462574653,1.0449120677504,1.54793595622334,1.60952136069861,-1.63070357163574,-0.0799988952533062,-0.07884722607696 +12.844,0.243192462574653,1.0449120677504,1.54793595622334,1.60952136069861,-1.63070357163574,-0.0799988952533062,-0.07884722607696 +12.846,0.243192462574653,1.0449120677504,1.54793595622334,1.60952136069861,-1.63070357163574,-0.0799988952533062,-0.07884722607696 +12.848,0.243192462574653,1.0449120677504,1.54793595622334,1.60952136069861,-1.63070357163574,-0.0799988952533062,-0.07884722607696 +12.85,0.243192462574653,1.0449120677504,1.54793595622334,1.60952136069861,-1.63070357163574,-0.0799988952533062,-0.07884722607696 +12.852,0.243192462574653,1.0449120677504,1.54793595622334,1.60952136069861,-1.63070357163574,-0.0799988952533062,-0.07884722607696 +12.854,0.243192462574653,1.0449120677504,1.54793595622334,1.60952136069861,-1.63070357163574,-0.0799988952533062,-0.07884722607696 +12.856,0.243192462574653,1.0449120677504,1.54793595622334,1.60952136069861,-1.63070357163574,-0.0799988952533062,-0.07884722607696 +12.858,0.243192462574653,1.0449120677504,1.54793595622334,1.60952136069861,-1.63070357163574,-0.0799988952533062,-0.07884722607696 +12.86,0.243192462574653,1.0449120677504,1.54793595622334,1.60952136069861,-1.63070357163574,-0.0799988952533062,-0.07884722607696 +12.862,0.243192462574653,1.0449120677504,1.54793595622334,1.60952136069861,-1.63070357163574,-0.0799988952533062,-0.07884722607696 +12.864,0.243192462574653,1.0449120677504,1.54793595622334,1.60952136069861,-1.63070357163574,-0.0799988952533062,-0.07884722607696 +12.866,0.243192462574653,1.0449120677504,1.54793595622334,1.60952136069861,-1.63070357163574,-0.0799988952533062,-0.07884722607696 +12.868,0.243192462574653,1.0449120677504,1.54793595622334,1.60952136069861,-1.63070357163574,-0.0799988952533062,-0.07884722607696 +12.87,0.243192462574653,1.0449120677504,1.54793595622334,1.60952136069861,-1.63070357163574,-0.0799988952533062,-0.07884722607696 +12.872,0.243192462574653,1.0449120677504,1.54793595622334,1.60952136069861,-1.63070357163574,-0.0799988952533062,-0.07884722607696 +12.874,0.243192462574653,1.0449120677504,1.54793595622334,1.60952136069861,-1.63070357163574,-0.0799988952533062,-0.07884722607696 +12.876,0.243192462574653,1.0449120677504,1.54793595622334,1.60952136069861,-1.63070357163574,-0.0799988952533062,-0.07884722607696 +12.878,0.243192462574653,1.0449120677504,1.54793595622334,1.60952136069861,-1.63070357163574,-0.0799988952533062,-0.07884722607696 +12.88,0.243192462574653,1.0449120677504,1.54793595622334,1.60952136069861,-1.63070357163574,-0.0799988952533062,-0.07884722607696 +12.882,0.243192462574653,1.0449120677504,1.54793595622334,1.60952136069861,-1.63070357163574,-0.0799988952533062,-0.07884722607696 +12.884,0.243192462574653,1.0449120677504,1.54793595622334,1.60952136069861,-1.63070357163574,-0.0799988952533062,-0.07884722607696 +12.886,0.243192462574653,1.0449120677504,1.54793595622334,1.60952136069861,-1.63070357163574,-0.0799988952533062,-0.07884722607696 +12.888,0.243192462574653,1.0449120677504,1.54793595622334,1.60952136069861,-1.63070357163574,-0.0799988952533062,-0.07884722607696 +12.89,0.243192462574653,1.0449120677504,1.54793595622334,1.60952136069861,-1.63070357163574,-0.0799988952533062,-0.07884722607696 +12.892,0.243192462574653,1.0449120677504,1.54793595622334,1.60952136069861,-1.63070357163574,-0.0799988952533062,-0.07884722607696 +12.894,0.243192462574653,1.0449120677504,1.54793595622334,1.60952136069861,-1.63070357163574,-0.0799988952533062,-0.07884722607696 +12.896,0.243192462574653,1.0449120677504,1.54793595622334,1.60952136069861,-1.63070357163574,-0.0799988952533062,-0.07884722607696 +12.898,0.243192462574653,1.0449120677504,1.54793595622334,1.60952136069861,-1.63070357163574,-0.0799988952533062,-0.07884722607696 +12.9,0.243192462574653,1.0449120677504,1.54793595622334,1.60952136069861,-1.63070357163574,-0.0799988952533062,-0.07884722607696 +12.902,0.243192462574653,1.0449120677504,1.54793595622334,1.60952136069861,-1.63070357163574,-0.0799988952533062,-0.07884722607696 +12.904,0.243192462574653,1.0449120677504,1.54793595622334,1.60952136069861,-1.63070357163574,-0.0799988952533062,-0.07884722607696 +12.906,0.243192462574653,1.0449120677504,1.54793595622334,1.60952136069861,-1.63070357163574,-0.0799988952533062,-0.07884722607696 +12.908,0.243192462574653,1.0449120677504,1.54793595622334,1.60952136069861,-1.63070357163574,-0.0799988952533062,-0.07884722607696 +12.91,0.243192462574653,1.0449120677504,1.54793595622334,1.60952136069861,-1.63070357163574,-0.0799988952533062,-0.07884722607696 +12.912,0.243192462574653,1.0449120677504,1.54793595622334,1.60952136069861,-1.63070357163574,-0.0799988952533062,-0.07884722607696 +12.914,0.243192462574653,1.0449120677504,1.54793595622334,1.60952136069861,-1.63070357163574,-0.0799988952533062,-0.07884722607696 +12.916,0.243192462574653,1.0449120677504,1.54793595622334,1.60952136069861,-1.63070357163574,-0.0799988952533062,-0.07884722607696 +12.918,0.243192462574653,1.0449120677504,1.54793595622334,1.60952136069861,-1.63070357163574,-0.0799988952533062,-0.07884722607696 +12.92,0.243192462574653,1.0449120677504,1.54793595622334,1.60952136069861,-1.63070357163574,-0.0799988952533062,-0.07884722607696 +12.922,0.243192462574653,1.0449120677504,1.54793595622334,1.60952136069861,-1.63070357163574,-0.0799988952533062,-0.07884722607696 +12.924,0.243192462574653,1.0449120677504,1.54793595622334,1.60952136069861,-1.63070357163574,-0.0799988952533062,-0.07884722607696 +12.926,0.243192462574653,1.0449120677504,1.54793595622334,1.60952136069861,-1.63070357163574,-0.0799988952533062,-0.07884722607696 +12.928,0.243192462574653,1.0449120677504,1.54793595622334,1.60952136069861,-1.63070357163574,-0.0799988952533062,-0.07884722607696 +12.93,0.243192462574653,1.0449120677504,1.54793595622334,1.60952136069861,-1.63070357163574,-0.0799988952533062,-0.07884722607696 +12.932,0.243192462574653,1.0449120677504,1.54793595622334,1.60952136069861,-1.63070357163574,-0.0799988952533062,-0.07884722607696 +12.934,0.243192462574653,1.0449120677504,1.54793595622334,1.60952136069861,-1.63070357163574,-0.0799988952533062,-0.07884722607696 +12.936,0.243192462574653,1.0449120677504,1.54793595622334,1.60952136069861,-1.63070357163574,-0.0799988952533062,-0.07884722607696 +12.938,0.243192462574653,1.0449120677504,1.54793595622334,1.60952136069861,-1.63070357163574,-0.0799988952533062,-0.07884722607696 +12.94,0.243192462574653,1.0449120677504,1.54793595622334,1.60952136069861,-1.63070357163574,-0.0799988952533062,-0.07884722607696 +12.942,0.243192462574653,1.0449120677504,1.54793595622334,1.60952136069861,-1.63070357163574,-0.0799988952533062,-0.07884722607696 +12.944,0.243192462574653,1.0449120677504,1.54793595622334,1.60952136069861,-1.63070357163574,-0.0799988952533062,-0.07884722607696 +12.946,0.243192462574653,1.0449120677504,1.54793595622334,1.60952136069861,-1.63070357163574,-0.0799988952533062,-0.07884722607696 +12.948,0.243192462574653,1.0449120677504,1.54793595622334,1.60952136069861,-1.63070357163574,-0.0799988952533062,-0.07884722607696 +12.95,0.243192462574653,1.0449120677504,1.54793595622334,1.60952136069861,-1.63070357163574,-0.0799988952533062,-0.07884722607696 +12.952,0.243192462574653,1.0449120677504,1.54793595622334,1.60952136069861,-1.63070357163574,-0.0799988952533062,-0.07884722607696 +12.954,0.243192462574653,1.0449120677504,1.54793595622334,1.60952136069861,-1.63070357163574,-0.0799988952533062,-0.07884722607696 +12.956,0.243192462574653,1.0449120677504,1.54793595622334,1.60952136069861,-1.63070357163574,-0.0799988952533062,-0.07884722607696 +12.958,0.243192462574653,1.0449120677504,1.54793595622334,1.60952136069861,-1.63070357163574,-0.0799988952533062,-0.07884722607696 +12.96,0.243192462574653,1.0449120677504,1.54793595622334,1.60952136069861,-1.63070357163574,-0.0799988952533062,-0.07884722607696 +12.962,0.243192462574653,1.0449120677504,1.54793595622334,1.60952136069861,-1.63070357163574,-0.0799988952533062,-0.07884722607696 +12.964,0.243192462574653,1.0449120677504,1.54793595622334,1.60952136069861,-1.63070357163574,-0.0799988952533062,-0.07884722607696 +12.966,0.243192462574653,1.0449120677504,1.54793595622334,1.60952136069861,-1.63070357163574,-0.0799988952533062,-0.07884722607696 +12.968,0.243192462574653,1.0449120677504,1.54793595622334,1.60952136069861,-1.63070357163574,-0.0799988952533062,-0.07884722607696 +12.97,0.243192462574653,1.0449120677504,1.54793595622334,1.60952136069861,-1.63070357163574,-0.0799988952533062,-0.07884722607696 +12.972,0.243192462574653,1.0449120677504,1.54793595622334,1.60952136069861,-1.63070357163574,-0.0799988952533062,-0.07884722607696 +12.974,0.243192462574653,1.0449120677504,1.54793595622334,1.60952136069861,-1.63070357163574,-0.0799988952533062,-0.07884722607696 +12.976,0.243192462574653,1.0449120677504,1.54793595622334,1.60952136069861,-1.63070357163574,-0.0799988952533062,-0.07884722607696 +12.978,0.243192462574653,1.0449120677504,1.54793595622334,1.60952136069861,-1.63070357163574,-0.0799988952533062,-0.07884722607696 +12.98,0.243192462574653,1.0449120677504,1.54793595622334,1.60952136069861,-1.63070357163574,-0.0799988952533062,-0.07884722607696 +12.982,0.243192462574653,1.0449120677504,1.54793595622334,1.60952136069861,-1.63070357163574,-0.0799988952533062,-0.07884722607696 +12.984,0.243192462574653,1.0449120677504,1.54793595622334,1.60952136069861,-1.63070357163574,-0.0799988952533062,-0.07884722607696 +12.986,0.243192462574653,1.0449120677504,1.54793595622334,1.60952136069861,-1.63070357163574,-0.0799988952533062,-0.07884722607696 +12.988,0.243192462574653,1.0449120677504,1.54793595622334,1.60952136069861,-1.63070357163574,-0.0799988952533062,-0.07884722607696 +12.99,0.243192462574653,1.0449120677504,1.54793595622334,1.60952136069861,-1.63070357163574,-0.0799988952533062,-0.07884722607696 +12.992,0.243192462574653,1.0449120677504,1.54793595622334,1.60952136069861,-1.63070357163574,-0.0799988952533062,-0.07884722607696 +12.994,0.243192462574653,1.0449120677504,1.54793595622334,1.60952136069861,-1.63070357163574,-0.0799988952533062,-0.07884722607696 +12.996,0.243192462574653,1.0449120677504,1.54793595622334,1.60952136069861,-1.63070357163574,-0.0799988952533062,-0.07884722607696 +12.998,0.243192462574653,1.0449120677504,1.54793595622334,1.60952136069861,-1.63070357163574,-0.0799988952533062,-0.07884722607696 diff --git a/data/ik_speedl_qd.csv b/data/ik_speedl_qd.csv new file mode 100644 index 00000000..d9ef0cab --- /dev/null +++ b/data/ik_speedl_qd.csv @@ -0,0 +1,6501 @@ +t,q1,q2,q3,q4,q5,q6,q7 +0,1.46343021439559e-06,-1.39970489951933e-05,6.64237905003887e-06,-1.53525330615032e-05,1.98119132323557e-05,2.66775342742368e-05,2.70648236097288e-05 +0.002,5.85372085758235e-06,-5.59881959807733e-05,2.65695162001555e-05,-6.14101322460129e-05,7.92476529294226e-05,0.000106710137096947,0.000108259294438915 +0.004,1.31708719295603e-05,-0.00012597344095674,5.97814114503501e-05,-0.000138172797553529,0.000178307219091201,0.000240097808468131,0.00024358341248756 +0.006,2.34148834303295e-05,-0.000223952783923093,0.000106278064800622,-0.000245640528984051,0.00031699061171769,0.000426840548387788,0.000433037177755661 +0.008,3.65750646728019e-05,-0.000349966392155822,0.000166052345360359,-0.000383775527481701,0.000495277636676746,0.000666870099862651,0.000676667822715638 +0.01,5.26409538400569e-05,-0.000504061651053298,0.000239096351474157,-0.000552543716256484,0.000713125636860659,0.000960141623717969,0.000974516126498992 +0.012,7.16154201177688e-05,-0.000686290634631185,0.000325392439522011,-0.000751924334448516,0.00097047709639447,0.00130662639109767,0.00132662305240422 +0.014,9.35148080393258e-05,-0.000896706024936924,0.000424915000097012,-0.000981912570549128,0.00126726422685099,0.00170631447664526,0.00173302625324681 +0.016,0.000118364515458077,-0.00113535837966584,0.000537634550116178,-0.0012425161697185,0.00160341513620164,0.00215921179534655,0.00219375765001506 +0.018,0.000146198988945019,-0.00140229215809762,0.00066351880111521,-0.00153375601424655,0.00197886159711719,0.00266533248376829,0.0027088459261244 +0.02,0.000177050166708743,-0.00169754551013029,0.00080253982649384,-0.00185565422512493,0.00239354327284903,0.00322469470905809,0.00327831252645309 +0.022,0.000210946594480109,-0.00202114733280264,0.00095467494508748,-0.00220823324330922,0.00284741334397426,0.00383731395139908,0.0039021741492247 +0.024,0.000247909968732006,-0.00237311561895385,0.00111990867064213,-0.00259151245717298,0.0033404412963852,0.00450320068694619,0.00458044207061993 +0.026,0.000287944391158895,-0.00275345878771931,0.00129823889162833,-0.00300549696761145,0.00387261281938183,0.00522236198854799,0.00531311624399526 +0.028,0.000331071093725346,-0.00316216380764828,0.00148965668237329,-0.00345021511957111,0.00444393755459166,0.00599479353913642,0.00610020530842449 +0.03,0.000377280834682016,-0.00359921003841361,0.0016941728185947,-0.0039256693390453,0.00505443623884559,0.00682049916586132,0.00694169524505128 +0.032,0.000426562433227159,-0.00406456124957488,0.00191180219904985,-0.00443186565315557,0.00570414811071182,0.00769948069920374,0.00783756759210566 +0.034,0.000478900495719565,-0.00455816738759539,0.0021425646962584,-0.00496881150934807,0.00639312789393281,0.00863174307103748,0.00878779592317463 +0.036,0.000534242571966157,-0.00507997676819592,0.0023865042449072,-0.0055364796851194,0.00712143765234925,0.00961730305913941,0.00979232653984303 +0.038,0.000592631284208438,-0.0056298981003493,0.00264361242886609,-0.00613494861377175,0.00788917164330517,0.0106561551556106,0.010851157079235 +0.04,0.000654022553280585,-0.00620785828380407,0.00291392983129204,-0.00676421137050504,0.00869640730084743,0.0117483346395093,0.0119642231013752 +0.042,0.000718391924126534,-0.00681377465242301,0.00319748805391434,-0.00742428307364902,0.00954323448012155,0.0128938680842656,0.0131314721251445 +0.044,0.000785644626948705,-0.00744758627691171,0.00349436049906805,-0.00811510243650205,0.0104297330153354,0.0140927983057898,0.014352809569203 +0.046,0.000855907854002108,-0.00810916793307753,0.00380449312440973,-0.008836842362171,0.0113560288346493,0.0153451063213849,0.0156282740375584 +0.048,0.000929116945031359,-0.00879845850296498,0.00412793538778376,-0.00958947545868519,0.0123221860776988,0.0166508516216244,0.0169577803385274 +0.05,0.00100525619807083,-0.00951539358338053,0.00446470946832822,-0.0103730188952462,0.0133282767844229,0.0180100610717768,0.018341285645346 +0.052,0.00108432359711625,-0.010259918325593,0.00481482693405396,-0.0111874974283253,0.0143743636219809,0.0194227532745248,0.0197787609273029 +0.054,0.00116632552917119,-0.0110319915525073,0.00517829075567863,-0.012032937108791,0.0154604940882671,0.020888940513795,0.0212701892551352 +0.056,0.00125127659889743,-0.0118315877624361,0.00555509485481573,-0.0129093643389021,0.016586697539756,0.0224086285550565,0.0228155668527575 +0.058,0.00133920010291504,-0.0126586982331224,0.00594522350087029,-0.0138168059370891,0.0177529833817369,0.0239818164486196,0.0244149040848873 +0.06,0.00143012838295873,-0.0135133314160121,0.00634865098301018,-0.0147552894738105,0.0189593401497379,0.0256084966031241,0.0260682259787157 +0.062,0.00152410292020099,-0.0143955126451913,0.006765341627463,-0.0157248437436988,0.0202057354370527,0.0272886551609065,0.0277755722081473 +0.064,0.00162117415372373,-0.0153052831773338,0.00719525015381473,-0.0167254993354132,0.0214921166335634,0.0290222726626444,0.0295369965375112 +0.066,0.00172140103568615,-0.0162426985985909,0.00763832234035858,-0.0177572892726753,0.0228184124180633,0.0308093249704535,0.0313525657514867 +0.068,0.00182485034783243,-0.0172078266574489,0.00809449595754549,-0.0188202496988233,0.0241845349232613,0.0326497844057151,0.0332223581198399 +0.07,0.00193159581152706,-0.0182007446040226,0.00856370192248204,-0.0199144205752668,0.0255903824748338,0.0345436210483081,0.0351464614635121 +0.072,0.00204171702909123,-0.0192215361343314,0.00904586562413654,-0.0210398463638882,0.0270358427933413,0.0364908041379687,0.0371249709028253 +0.074,0.00215529829854991,-0.0202702880519676,0.00954090836747305,-0.0221965766651682,0.0285207965397454,0.0384913035163831,0.0391579863788851 +0.076,0.00227242734717405,-0.0213470867686702,0.0100487488845432,-0.0233846667874168,0.0300451210808722,0.0405450910500834,0.0412456100455122 +0.078,0.00239319403138345,-0.022452014769473,0.0105693048612949,-0.0246041782275086,0.0316086943499235,0.0426521419786357,0.0433879436313091 +0.08,0.00251759713604131,-0.0235842861238361,0.0111020891019557,-0.0258542351318408,0.0332101862013161,0.0448108001326046,0.0455834216555889 +0.082,0.00264185964473851,-0.0247078005683165,0.0116299988885406,-0.02709525214379,0.034798551808791,0.0469523262497545,0.0477622271917739 +0.084,0.00276400557598024,-0.0258035340635448,0.012143987759088,-0.0283063451199417,0.0363468026092345,0.0490404344603577,0.0498875362747753 +0.086,0.00288408327575255,-0.0268715339576051,0.0126440093162621,-0.0294875549877494,0.0378548551112051,0.0510751211304313,0.0519594049357509 +0.088,0.00300212831466133,-0.0279118245003274,0.0131300302630151,-0.0306389216079671,0.0393226518550759,0.0530563920164656,0.0539778693645409 +0.09,0.00311816300705634,-0.0289244068615427,0.0136020309011678,-0.0317604826333784,0.0407501625503851,0.0549842613314356,0.0559429457432046 +0.092,0.0032321953375833,-0.0299092608550245,0.0140600062643376,-0.0328522707647927,0.0421373850901281,0.0568587497838121,0.057854631401011 +0.094,0.00334422578064572,-0.0308663420561725,0.0145039594649231,-0.033914322159962,0.0434843402204566,0.0586798872365666,0.0597129032647846 +0.096,0.00345405678813639,-0.0317957249142468,0.0149340917237844,-0.0349463999412061,0.0447912100994671,0.0604475968836554,0.0615178079013 +0.098,0.0035622021352829,-0.0326969371268506,0.0153498949930008,-0.0359492992966127,0.0460576698007867,0.0621622341024628,0.0632690445164653 +0.1,0.00366753819902498,-0.0335706974743784,0.0157525000468126,-0.0369214736268586,0.0472846122973362,0.0638231923303177,0.0649670568713765 +0.102,0.0037718614557538,-0.0344155437340544,0.0161401074078637,-0.0378655587107676,0.0484707817836539,0.0654315865403136,0.0666109113910734 +0.104,0.00387248394576933,-0.0352333426000199,0.0165154285700403,-0.0387777646902918,0.0496182553989958,0.0669858855438977,0.0682017720736262 +0.106,0.00397286037954052,-0.0360213735053598,0.0168749867029513,-0.0396631507259762,0.0507245488666087,0.0684882314815581,0.0697379026764965 +0.108,0.00406857054875155,-0.036782798926228,0.0172232451434358,-0.0405153311474267,0.0517930397812737,0.0699359581286817,0.0712212833403656 +0.11,0.00416479488189808,-0.037513613449011,0.0175549864797986,-0.0413420242427713,0.052819958336938,0.0713324150206105,0.0726493628944848 +0.112,0.00425540663185132,-0.0382182609155148,0.0178763858861923,-0.042134095894947,0.053809938873553,0.0726736270270545,0.0740249247378673 +0.114,0.00434724841287505,-0.0388915346468111,0.01818056891209,-0.0429020260007955,0.0547579820687243,0.0739643084365059,0.0753446654173969 +0.116,0.00443259108868553,-0.0395390693451356,0.0184752900515659,-0.0436338685742158,0.0556698647577679,0.0751990242001411,0.0766121051627569 +0.118,0.00451724751994742,-0.0401553882533152,0.018753685644524,-0.0443401022858623,0.0565390160879596,0.0763845173216031,0.0778218036345002 +0.12,0.00459607393553799,-0.0407463831828601,0.0190230285755489,-0.0450095658506501,0.0573741359919885,0.0775113245772167,0.0789814779397451 +0.122,0.00467986586229649,-0.041303258834301,0.019271690995011,-0.0456613877101475,0.0581651692317155,0.0785909800341773,0.0800837729105659 +0.124,0.00475483255578026,-0.0418357993894274,0.0195130824357261,-0.0462728908473578,0.0589216934261441,0.0796125444292708,0.0811344831066867 +0.126,0.00483257122132146,-0.0423356634441669,0.0197358434840129,-0.0468635597356419,0.0596353911929388,0.0805857176460916,0.0821284329542928 +0.128,0.00490073362893577,-0.0428104825333707,0.0199508735388325,-0.0474142795588676,0.0603124227849603,0.0815030808131877,0.0830680196797037 +0.13,0.00497138931214955,-0.043254017435126,0.0201487191484732,-0.0479419078827804,0.0609496669924236,0.0823682818913884,0.083954042716584 +0.132,0.00503355344598208,-0.0436730705358019,0.0203389377212157,-0.0484289417787544,0.0615522568011959,0.0831747757845331,0.0847884708032078 +0.134,0.00510304532313988,-0.0440565559778454,0.0205062471347055,-0.0489034230408223,0.062108801875337,0.0839374340588641,0.0855643547931994 +0.136,0.00516026302839834,-0.044416858541167,0.0206681506153884,-0.0493330767637003,0.0626299579338251,0.0846418951628065,0.0862866430397737 +0.138,0.00522018295754231,-0.0447460973878516,0.0208127399315239,-0.0497398619144907,0.0631111595940988,0.0852941984888402,0.0869556098428721 +0.14,0.00527032336164211,-0.0450518968715891,0.0209507505057915,-0.05010349104261,0.0635581644813266,0.0858864112046194,0.0875734620602813 +0.142,0.00533006470874366,-0.0453209839982554,0.0210637533849454,-0.0504586962830148,0.0639573356483434,0.0864371144433459,0.0881320333601639 +0.144,0.00537670576681797,-0.0455688073805345,0.0211730618779714,-0.0507652716302919,0.0643239238513553,0.0869251613750281,0.0886404253347756 +0.146,0.00542830754200196,-0.045783161733204,0.0212616651917589,-0.0510551420449374,0.0646456304715847,0.0873672630641163,0.0890913950852622 +0.148,0.0054676824423604,-0.0459758027702339,0.0213457438767784,-0.0512979363744606,0.0649340617810245,0.0877474790166595,0.0894918976134447 +0.15,0.00551455142566297,-0.0461333539935514,0.0214066865081683,-0.0515283758313482,0.0651757508999035,0.0880839602236406,0.0898339824326461 +0.152,0.00554816382312691,-0.0462700263119172,0.021464074992716,-0.0517099351060133,0.0653847646675861,0.088357628240197,0.0901260662583092 +0.154,0.00558862459478991,-0.0463721240485916,0.0214988941123936,-0.0518778250940558,0.0655473315015511,0.088586825934624,0.0903599889068457 +0.156,0.00561565640384221,-0.0464535612541567,0.021530326670006,-0.0519966523255016,0.0656772505721971,0.088753213630305,0.0905439993263601 +0.158,0.0056503606213288,-0.046499891813737,0.0215383684951629,-0.0521030132862427,0.0657600291340641,0.0888756938956594,0.0906694699399419 +0.16,0.00567107805257731,-0.0465259933956703,0.0215435533550809,-0.0521595657575984,0.0658104667049409,0.0889351327430625,0.0907452311259326 +0.162,0.00569972953254798,-0.0465186497408584,0.0215260513966277,-0.052205409023721,0.0658160453315112,0.0889537809818038,0.0907656913206425 +0.164,0.00571676263900034,-0.0465133231659769,0.0215161946795165,-0.0522258953033797,0.0658206184867877,0.0889515482068952,0.0907794863509132 +0.166,0.00574164593276635,-0.0465016055245127,0.0214975896237542,-0.0522614732858346,0.0658165021647035,0.0889594356517538,0.0907868087991862 +0.168,0.00575693996903801,-0.0464982392258024,0.0214895173108001,-0.0522783653859303,0.0658223032376869,0.0889545828150137,0.0908021305753942 +0.17,0.00578832798347335,-0.0464843843316614,0.0214663696006431,-0.0523215051918319,0.0658172964888327,0.0889625000677024,0.0908115738416469 +0.172,0.00580694529491377,-0.0464795898666329,0.0214553052856777,-0.0523433685717694,0.0658207806605497,0.0889600313905507,0.0908264332729321 +0.174,0.00583267082258029,-0.046468807894925,0.0214362007014018,-0.0523786992437062,0.065816026481996,0.0889668265420667,0.0908349716219434 +0.176,0.00584811040683728,-0.0464666202655584,0.0214281942058423,-0.052395061362866,0.0658215602160184,0.0889612575082698,0.0908515331466793 +0.178,0.00588127809052576,-0.0464526529688164,0.0214035584024758,-0.0524398497350591,0.0658151737553541,0.0889693107691077,0.0908613779834423 +0.18,0.00590060120768353,-0.0464482370458511,0.0213919575303978,-0.0524623270045437,0.0658179938512676,0.0889668465867247,0.0908768369088802 +0.182,0.00593055039353617,-0.0464365558423993,0.0213702290151082,-0.0525019266401424,0.0658132987524216,0.0889727258125917,0.0908879040140231 +0.184,0.0059483187647625,-0.0464331893234688,0.021359984222367,-0.0525221618077636,0.0658167732367279,0.0889695116149111,0.0909038382644944 +0.186,0.00597942534566788,-0.0464205434619033,0.0213369970509436,-0.0525639392602954,0.0658109338035667,0.0889766867154676,0.0909141779524333 +0.188,0.00599773579080205,-0.0464166042580771,0.0213261386124816,-0.0525853033083702,0.0658138452670131,0.088974166433489,0.0909296493114014 +0.19,0.00602776288206555,-0.0464044014794998,0.0213040577084666,-0.0526257531403037,0.0658086141673704,0.0889809076133086,0.0909401324891844 +0.192,0.00604555971322131,-0.0464005067083745,0.0212936227354947,-0.0526465262167096,0.06581186591099,0.088978201177457,0.0909555328141961 +0.194,0.00607559882372068,-0.0463879259991427,0.0212714586083206,-0.0526873829425407,0.065806656110869,0.0889853179118211,0.0909656972544987 +0.196,0.00609341947509599,-0.0463836434562478,0.0212609675113245,-0.0527084011887024,0.0658100036895721,0.0889828179962918,0.09098078708829 +0.198,0.00612303184621174,-0.0463709686671022,0.0212391887093967,-0.0527488821762295,0.065805245553671,0.0889899069575745,0.0909908267464757 +0.2,0.00614067647295748,-0.0463664187089395,0.0212288622876398,-0.0527697725369158,0.0658089182214703,0.0889874183055505,0.0910056948689655 +0.202,0.00617016240575162,-0.0463534553571417,0.0212072223386038,-0.0528102875397728,0.065804490484991,0.0889946436016498,0.0910155153671302 +0.204,0.00618777683462314,-0.0463485519255573,0.0211969428797392,-0.0528312412722403,0.065808441195891,0.0889922362354258,0.0910301258332941 +0.206,0.00621707341849018,-0.0463353848669003,0.021175529957685,-0.0528716089640323,0.0658044347228794,0.0889994659951129,0.0910397967041687 +0.208,0.00623462711123503,-0.0463301930233104,0.0211653395373205,-0.0528925288558437,0.0658087031016175,0.0889970630832805,0.0910542022431733 +0.21,0.00626383304582383,-0.0463168159687914,0.021144073929192,-0.0529328420820471,0.0658050566499085,0.0890043020776903,0.0910637350433851 +0.212,0.00628137054709743,-0.0463113715795568,0.0211339348604504,-0.0529537604319334,0.0658095968786769,0.0890018944034742,0.0910779693889372 +0.214,0.00631050175704166,-0.0462978501268931,0.0211128038199541,-0.0529939825723242,0.0658062709410132,0.0890090904826894,0.0910874151334282 +0.216,0.00632770827765602,-0.0462911269983368,0.0211017733885481,-0.0530164389921857,0.0658081688050007,0.0890101115115093,0.0910981282073766 +0.218,0.00635339858648706,-0.0462798559937049,0.0210840555259914,-0.0530507552425012,0.0658077694090925,0.0890137991943963,0.0911090702846606 +0.22,0.00636900900577271,-0.0462756506779338,0.0210760378392448,-0.0530678952398242,0.0658146976990794,0.0890087576005343,0.0911244553902439 +0.222,0.00640115887760842,-0.0462602530151482,0.0210524781587835,-0.0531124490718096,0.0658103507007694,0.0890174932081578,0.0911332581487202 +0.224,0.00642004302157814,-0.0462538363603676,0.0210413484583258,-0.0531350944328345,0.0658148873212294,0.0890155389249127,0.091147256475962 +0.226,0.00644895745588278,-0.0462406055815257,0.0210207439878494,-0.0531743154479438,0.0658124915027567,0.0890218611955827,0.0911572072363313 +0.228,0.00646634341696702,-0.0462352148853331,0.0210109539204339,-0.053194604336245,0.0658178377920119,0.0890189163066134,0.0911717110810879 +0.23,0.00649653294473518,-0.0462211192853097,0.0209890499132261,-0.053236024223444,0.0658143488231008,0.089026424167667,0.0911810714997364 +0.232,0.00651452341784313,-0.046215370706757,0.0209786189993621,-0.0532573787946694,0.0658190936858868,0.089024051635341,0.0911953091364149 +0.234,0.00654388071007153,-0.0462018923161299,0.0209574033803741,-0.0532975005136403,0.0658159555953323,0.0890309563403052,0.0912049825728147 +0.236,0.00656147557497945,-0.0461965199383169,0.0209472855927333,-0.0533182270447128,0.0658207881833516,0.089028281765989,0.0912194153727521 +0.238,0.00659108865847829,-0.0461829645906746,0.0209257446216929,-0.0533587739661787,0.0658172626299749,0.0890354036196232,0.0912290199133029 +0.24,0.00660881195378585,-0.0461776493706947,0.0209154585555437,-0.0533796949235841,0.0658218305648272,0.0890328262280013,0.0912434822482749 +0.242,0.00663826035474495,-0.0461643395051752,0.0208940103502422,-0.0534199026906837,0.0658182227438684,0.0890397665495824,0.0912532281638303 +0.244,0.0066556402829567,-0.0461580854164217,0.0208827718048116,-0.0534422543135536,0.0658197593848679,0.0890405613345821,0.0912643802384691 +0.246,0.00668172019659627,-0.0461472449722227,0.0208645796280623,-0.0534766540598766,0.0658186656562418,0.089044061204741,0.0912757517791438 +0.248,0.00669746039446072,-0.0461438230257064,0.0208563730644495,-0.0534936928448339,0.0658250182789457,0.0890388591608484,0.091291797556039 +0.25,0.00673012750476142,-0.0461289130173367,0.0208321273665854,-0.0535383355860092,0.0658195928745943,0.0890473452338616,0.0913010724463276 +0.252,0.00674922091169851,-0.0461233495002928,0.0208206877853004,-0.0535609059863622,0.0658232938472994,0.0890452158947155,0.0913157871602434 +0.254,0.00677493183248258,-0.0461118860958842,0.0208016403161751,-0.0535962685869482,0.065819120828145,0.0890520817903182,0.0913241897169781 +0.256,0.00679029902375063,-0.0461089347258265,0.0207937606353782,-0.0536126114867579,0.0658254676386066,0.0890464806444893,0.0913405098846167 +0.258,0.00682361747359066,-0.0460938889590332,0.0207690008331494,-0.0536579020738706,0.0658197406555135,0.0890549106790692,0.0913499745594243 +0.26,0.00684298544777107,-0.0460884141188123,0.020757402495121,-0.0536806340029023,0.0658234176598502,0.0890525842901675,0.091364999695242 +0.262,0.00687278338161421,-0.0460757407739674,0.0207358433634714,-0.053720292216378,0.0658197066275118,0.089058625642147,0.0913757002054686 +0.264,0.00689049268263689,-0.0460713322484584,0.0207257029247908,-0.0537405910260296,0.0658241790413531,0.0890554429624124,0.0913911870389086 +0.266,0.00692151196859131,-0.0460576648027763,0.0207028303688486,-0.0537824880839363,0.0658193080631752,0.0890628079003505,0.0914011405390548 +0.268,0.00693981612069229,-0.0460527194912995,0.0206920286388235,-0.0538039409981807,0.06582317394155,0.0890603196936785,0.0914161874072999 +0.27,0.00696976841832325,-0.0460396225206699,0.0206700613852589,-0.0538443732439292,0.0658188769494707,0.0890671146099694,0.0914263657847953 +0.272,0.00698757942106132,-0.0460348837672844,0.0206596673421719,-0.0538651585848062,0.0658230057168749,0.0890643600023721,0.0914414504352855 +0.274,0.00701765603447307,-0.046021549874439,0.020637515618894,-0.0539059726817969,0.065818563825444,0.0890714272014902,0.0914514162068316 +0.276,0.00703555280732279,-0.0460166263039973,0.0206270070692548,-0.0539269718823961,0.0658226297195694,0.0890688102313981,0.0914663368233099 +0.278,0.00706531158219501,-0.0460033918512433,0.0206051360790235,-0.0539673538155119,0.0658184294250504,0.0890757135982355,0.0914763202274638 +0.28,0.00708308612651069,-0.0459984464283001,0.0205947379803074,-0.0539881769186298,0.0658226311928754,0.0890730268492387,0.0914911962180575 +0.282,0.00711284972993571,-0.0459851175282814,0.0205728717417347,-0.0540285744299185,0.0658185017186989,0.0890799512638932,0.0915011064330184 +0.284,0.00713065413220115,-0.0459800644514645,0.020562456332031,-0.0540494319202363,0.06582276699154,0.0890772799613912,0.0915159040309075 +0.286,0.00716034722049846,-0.0459667210845947,0.0205406877769325,-0.054089670619085,0.065818792860255,0.0890841110948498,0.0915258052786102 +0.288,0.00717814074845688,-0.0459616090370124,0.0205303036120043,-0.0541104722320152,0.0658231655287704,0.0890813942310498,0.0915405648480168 +0.29,0.00720784909297457,-0.0459482156658163,0.0205085600544219,-0.0541506650242058,0.0658192971438203,0.0890881684152715,0.0915504466302719 +0.292,0.00722537459606348,-0.0459418892319734,0.020497203365417,-0.0541730065616145,0.0658208180876552,0.0890888505545807,0.0915617103831177 +0.294,0.00725160037420096,-0.0459308850679368,0.0204789107880792,-0.0542072975459893,0.0658198299458573,0.0890921469304518,0.0915731616021674 +0.296,0.00726745099647638,-0.0459272411183415,0.0204706566676833,-0.0542243321355617,0.0658264331064225,0.0890868308929744,0.0915892242980763 +0.298,0.00730029275579692,-0.0459120038852184,0.0204463352623701,-0.0542688783473853,0.0658212885123967,0.0890951005414123,0.0915984997217554 +0.3,0.0073195114850907,-0.0459060686748972,0.02043486039718,-0.0542914550936277,0.0658253774124803,0.0890928492874116,0.0916131416922104 +0.302,0.00734901526450964,-0.0458930583293932,0.0204136071912789,-0.0543306526904556,0.0658222707211187,0.0890987579643354,0.0916235944516232 +0.304,0.00736667967779546,-0.0458881435775109,0.0204035358836034,-0.0543508656654541,0.065827235542279,0.0890955448417258,0.0916387317794568 +0.306,0.00739747004800415,-0.0458741742879818,0.0203809673797253,-0.0543922925897555,0.0658230504201609,0.0891026625861424,0.0916485312778597 +0.308,0.00741574864992141,-0.0458687925449021,0.0203702460431643,-0.054413608340269,0.0658274525908698,0.0891000495188047,0.0916633256741329 +0.31,0.00744563062661718,-0.0458553866590171,0.0203484519983162,-0.0544537273922894,0.0658237469790106,0.0891066090348043,0.0916733913304779 +0.312,0.00746347762642803,-0.0458502807223015,0.0203380861143665,-0.0544744231363319,0.0658283416546435,0.0891037253603075,0.0916883032604589 +0.314,0.0074935731164108,-0.0458366949848024,0.0203160179110195,-0.0545149875690163,0.0658243664427692,0.0891105541693831,0.0916982237170478 +0.316,0.00751153117409152,-0.0458315167877186,0.0203055066687127,-0.054535903071684,0.06582879822573,0.0891078034105574,0.0917130697668448 +0.318,0.00754139709431362,-0.0458180875512586,0.0202836080087806,-0.0545761269133342,0.0658248875726899,0.0891144973726772,0.0917230627025811 +0.32,0.00755925704136431,-0.0458130031209834,0.0202731669815546,-0.0545968882025265,0.0658293238469845,0.0891116895086159,0.091737957018913 +0.322,0.00758918247864483,-0.0457995528163512,0.0202511829845913,-0.0546371829688236,0.0658253052033009,0.0891184253214677,0.091747934864059 +0.324,0.007607082405315,-0.0457944780455662,0.0202406936135585,-0.0546579861548955,0.065829672842073,0.0891156417009942,0.0917628403299665 +0.326,0.00763697942895275,-0.0457810809572863,0.0202187259391196,-0.0546981721756854,0.065825636955953,0.0891223081786534,0.0917728590100195 +0.328,0.00765487598099142,-0.0457760492022736,0.0202082396830942,-0.0547189287099551,0.0658299889098308,0.089119489584759,0.091787803017174 +0.33,0.00768481472784557,-0.0457626615497268,0.0201862346125091,-0.0547591003909275,0.0658259131455358,0.0891261155869177,0.0917978444689287 +0.332,0.00770274036579054,-0.0457576473363051,0.0201757270868151,-0.0547798535741269,0.0658302459303872,0.0891232715800986,0.0918128157994002 +0.334,0.00773270090807987,-0.0457442817199824,0.0201537125398243,-0.0548199733935337,0.0658261647952922,0.0891298304174047,0.0918228910829436 +0.336,0.00775064485314937,-0.0457392858810597,0.0201431977122183,-0.0548407046342876,0.0658304999556833,0.089126947369855,0.0918378909981211 +0.338,0.0077769235663034,-0.04572709629231,0.020123419080972,-0.0548768723712163,0.0658258090413233,0.0891342474495757,0.0918458575266107 +0.34,0.00779284319910782,-0.0457235265255742,0.0201149409735414,-0.0548940159723751,0.0658319381749039,0.0891289814822055,0.0918618509917012 +0.342,0.00782534894822783,-0.0457087486680602,0.0200908623558315,-0.0549376082624833,0.0658269397896749,0.0891364677717617,0.0918716107886166 +0.344,0.00784447787682843,-0.0457032133245388,0.0200794795531336,-0.0549596865962227,0.0658311132883054,0.0891336951647895,0.0918867354982726 +0.346,0.00787458560892551,-0.0456901065976291,0.0200576319061933,-0.0549993176434981,0.0658275350623748,0.0891395293893974,0.0918973902698207 +0.348,0.00789255122751932,-0.0456853406482709,0.0200472867017787,-0.0550196955996619,0.065832265030218,0.0891362310405079,0.0919128546661304 +0.35,0.00791990665488805,-0.0456726446834679,0.0200266740556971,-0.0550570899785363,0.0658271693311863,0.0891438654515069,0.0919208173080032 +0.352,0.00793632224882664,-0.0456688779342999,0.0200178303447375,-0.055074847495932,0.0658331825327273,0.0891388019861415,0.0919369199752961 +0.354,0.00796906228113294,-0.0456540487188799,0.0199936126263,-0.0551185551658908,0.065828192633058,0.0891462178507348,0.0919468482985415 +0.356,0.00798823964240883,-0.0456485351619418,0.0199822232970517,-0.0551406534994459,0.0658324436961476,0.0891434163792932,0.0919621386438358 +0.358,0.00801869496278702,-0.0456351887223996,0.0199600415548537,-0.0551808194437988,0.0658286708114978,0.0891494927615129,0.0919727782577513 +0.36,0.00803676326823255,-0.0456303404593883,0.0199495914729688,-0.0552014034671554,0.0658333657977774,0.0891462982972994,0.0919882960175109 +0.362,0.00806417221819353,-0.045617530697314,0.0199288672273621,-0.0552390031858802,0.0658281956201903,0.0891540872892284,0.0919962627623652 +0.364,0.00808056264143892,-0.0456137336030183,0.0199200174887812,-0.0552568075758719,0.065834225383862,0.0891490775636612,0.0920124156003326 +0.366,0.00811335879201512,-0.0455987473163377,0.0198956528853111,-0.0553007740889137,0.0658291196851794,0.0891567106033729,0.0920222989065135 +0.368,0.00813252745449981,-0.045593166082453,0.0198842245528402,-0.0553229646979251,0.0658333510089162,0.0891540061979038,0.0920376005245834 +0.37,0.00816297043627272,-0.0455797097947952,0.0198619670412885,-0.0553632566357261,0.0658295150085111,0.0891602293563286,0.0920482135805275 +0.372,0.0081810125193338,-0.0455748096898375,0.019851502561761,-0.055383879434863,0.0658342136392013,0.0891570967748171,0.0920637465742611 +0.374,0.00821215139621477,-0.0455607163061358,0.0198284351957011,-0.0554255074193763,0.0658295962684458,0.0891641967176774,0.0920738280722833 +0.376,0.00823054332321314,-0.0455554674701255,0.0198175496479338,-0.0554468406907386,0.0658338701515858,0.0891615307557093,0.0920890382493583 +0.378,0.00826090392411676,-0.0455417967450714,0.0197951333289869,-0.0554873995710852,0.0658296490111153,0.0891682156143412,0.0920992649927877 +0.38,0.00827894750424225,-0.0455367138990117,0.0197845302325185,-0.0555082466370071,0.0658340904475539,0.0891653425670791,0.092114497642614 +0.382,0.00830935191512219,-0.0455229416296597,0.0197620254425675,-0.0555489500889925,0.0658297826982151,0.0891721278902896,0.0921246066175224 +0.384,0.00832744988978182,-0.0455177792015695,0.0197513491821228,-0.0555698894016643,0.0658341701159961,0.0891692938104905,0.0921397506617831 +0.386,0.00835390134676768,-0.0455053126743329,0.019731322393541,-0.0556062980138372,0.0658294137258974,0.0891766950426873,0.0921477584227014 +0.388,0.0083698787026987,-0.0455016213823716,0.0197227748300238,-0.0556235090635931,0.0658356773066579,0.0891714137736373,0.092163879635724 +0.39,0.00840258570523653,-0.0454865374431183,0.0196984155030303,-0.0556673190064991,0.065830614291404,0.0891789740517695,0.0921736643339659 +0.392,0.00842180493661587,-0.0454808483809863,0.0196869289179478,-0.0556894644890247,0.0658348985945573,0.0891761765175173,0.0921888923682958 +0.394,0.00845207815305783,-0.0454674997111679,0.0196648715201782,-0.0557291837625026,0.0658313268736521,0.0891819823291981,0.0921996063681301 +0.396,0.00847013253036713,-0.0454626109578223,0.0196544450006353,-0.0557495765117034,0.0658361965302117,0.089178606685711,0.0922151887451163 +0.398,0.00849766063219311,-0.045449703831751,0.0196336460588035,-0.055787001329347,0.065831119040025,0.0891861461121315,0.0922232122990892 +0.4,0.00851418724935495,-0.0454458384359052,0.019624717927966,-0.0558047692449921,0.0658372840606806,0.0891809756048145,0.0922394387564025 +0.402,0.00854714762316945,-0.0454308277689055,0.0196002954218947,-0.0558484351215036,0.0658323260418246,0.0891881928886372,0.092249477131263 +0.404,0.00856646340691757,-0.0454252393527737,0.0195888095622674,-0.055870497096849,0.0658367155824443,0.0891852222595551,0.0922649210823104 +0.406,0.00859717163584639,-0.0454117502472289,0.0195664211014891,-0.0559106153149154,0.0658329745799656,0.0891910589575334,0.0922757003373898 +0.408,0.00861532397059532,-0.0454055360436222,0.0195546915417432,-0.055932973783089,0.0658346602146142,0.089191200651828,0.0922877956330545 +0.41,0.0086429705100929,-0.0453940520773843,0.0195351704840247,-0.0559683325159713,0.065833106377581,0.089194443796289,0.0922997201707968 +0.412,0.00865942434565728,-0.0453905217634285,0.0195264579148028,-0.055985747703632,0.0658396738523911,0.0891889963658796,0.0923165155676752 +0.414,0.00869332893861356,-0.0453749304244586,0.0195010888218795,-0.0560307859516233,0.0658338838189635,0.0891970037489585,0.0923262600308914 +0.416,0.00871297757830838,-0.0453691464365876,0.0194892180177285,-0.0560534851004283,0.0658378264614886,0.0891945374787977,0.0923415882447931 +0.418,0.00874334870460008,-0.0453558474497298,0.0194670240994886,-0.056093201648483,0.0658340599455383,0.0892003481291898,0.0923524570450963 +0.42,0.00876135724887137,-0.0453511028976093,0.0194566022184629,-0.0561135415921176,0.0658388513606391,0.0891969847859661,0.0923682314690151 +0.422,0.00879285024708798,-0.0453368727638881,0.0194331837875125,-0.0561552918990998,0.0658340145141752,0.0892039601178192,0.0923784106781878 +0.424,0.00881142285258511,-0.0453316372555221,0.0194221312751873,-0.0561766724197341,0.0658382333804937,0.0892011879166348,0.0923937899837678 +0.426,0.0088419188195525,-0.0453179902698511,0.0193995700358354,-0.0562170295789904,0.0658339440202542,0.089207593799673,0.0924042143842034 +0.428,0.00886004140289684,-0.0453130008777926,0.0193888972882467,-0.0562377691251731,0.0658383969724979,0.0892045482045804,0.0924196695726836 +0.43,0.00889070939474079,-0.0452991638821042,0.019366120173215,-0.0562784731945714,0.0658339182907088,0.0892111642567189,0.0924299292536477 +0.432,0.00890863861947697,-0.0452928563833358,0.019354332432577,-0.0563009055705683,0.0658352537909246,0.089211632990612,0.0924417334328684 +0.434,0.00893550882697307,-0.0452816546668355,0.0193352910415614,-0.0563354094941965,0.065833829451121,0.0892147105580408,0.0924536402598944 +0.436,0.00895161584747602,-0.0452782253043256,0.0193267756941385,-0.0563524286343205,0.0658404275243382,0.0892091747899841,0.0924703809198579 +0.438,0.00898527374339995,-0.0452626119814752,0.0193014726412565,-0.0563972036832647,0.0658345939659416,0.0892171747238218,0.0924800323437048 +0.44,0.00900487894399968,-0.0452567672802657,0.0192895819045298,-0.0564198206545474,0.0658385148898251,0.089214692369564,0.0924952916198648 +0.442,0.00903505470665808,-0.0452435250107562,0.0192675358037569,-0.0564590885365598,0.0658348825952757,0.0892202610769875,0.0925061971791004 +0.444,0.00905304804519166,-0.0452387545968449,0.0192571358359885,-0.0564792680670026,0.0658397710063396,0.0892167710284786,0.0925219784928468 +0.446,0.00908457035219962,-0.045224499023016,0.0192337350643506,-0.0565207405946077,0.0658350535968612,0.0892234787326075,0.0925322047598108 +0.448,0.00910323087069431,-0.0452192033063695,0.0192226501555289,-0.0565420329566822,0.0658393893474182,0.0892205511560908,0.0925476074656051 +0.45,0.00913380777303807,-0.0452055457996304,0.0192001096298984,-0.0565821092067366,0.0658352746747599,0.0892266238283869,0.0925581210723349 +0.452,0.00915203069350555,-0.0452005112065807,0.0191894135175757,-0.056602748058428,0.0658398831349119,0.0892233837737036,0.0925736265730214 +0.454,0.00918284955850689,-0.0451866452549747,0.0191666127400625,-0.0566432520243336,0.0658355668202821,0.089229678667749,0.0925839818999231 +0.456,0.00920090920466766,-0.0451802942431996,0.0191547879278228,-0.0566656043294061,0.0658370436514348,0.0892299453975541,0.0925958417879908 +0.458,0.00922792050636614,-0.045169071837964,0.0191357164492655,-0.056699964443594,0.065835770047652,0.0892327597952593,0.0926078413273104 +0.46,0.0092441190095144,-0.045165623136324,0.0191271727788492,-0.0567169269881248,0.0658425065405893,0.0892270763253339,0.0926246505482702 +0.462,0.00927797502432164,-0.0451499642834037,0.0191017786511415,-0.0567616219052395,0.0658367466525705,0.0892348485024852,0.0926343938301289 +0.464,0.00929768940980498,-0.0451441020561675,0.0190898339079633,-0.0567842113015521,0.065840750011648,0.0892322486370513,0.0926497306577043 +0.466,0.00932802572233293,-0.0451308203853893,0.0190676885389705,-0.0568234474259454,0.0658371409676483,0.0892376752496235,0.0926607173338187 +0.468,0.0093460983371266,-0.0451260536545015,0.0190572395648015,-0.0568436152162991,0.0658420747943457,0.0892341165885425,0.0926765843658859 +0.47,0.0093777760488253,-0.0451117471089992,0.0190337077432207,-0.0568851014806306,0.0658373105977459,0.089240744741506,0.0926868787517651 +0.472,0.00939650428974512,-0.0451064620079572,0.0190225637898496,-0.0569064009660623,0.065841645067715,0.0892377869219467,0.0927023702219876 +0.474,0.00942720850443855,-0.0450927550120448,0.0189998839979898,-0.0569465135479423,0.065837438597533,0.0892438321069241,0.0927129443490299 +0.476,0.00944548001031886,-0.0450877417246943,0.0189891304616365,-0.0569671657746743,0.0658420170933422,0.0892405886609387,0.0927285437288904 +0.478,0.00947640908480835,-0.0450738210230346,0.0189661797447435,-0.0570077208120906,0.0658375721384385,0.089246889379171,0.092738951508648 +0.48,0.00949480623166943,-0.0450686907999358,0.0189552766958315,-0.0570286016726191,0.0658420178715933,0.0892437727784792,0.0927544540505478 +0.482,0.00952548422085785,-0.0450549175733688,0.0189325392244566,-0.0570687856757389,0.0658377114850082,0.0892499190832667,0.0927649266116408 +0.484,0.00954377861919854,-0.0450498486200973,0.0189217237087921,-0.0570895041217982,0.0658422145123176,0.0892467357572495,0.0927804527538482 +0.486,0.00957451656667281,-0.045036025952894,0.0188989213628921,-0.0571297536506532,0.0658378566961142,0.089252914762558,0.0927908925523357 +0.488,0.00959285574440949,-0.0450309265564727,0.0188880635412259,-0.0571505176949729,0.0658423336178889,0.0892497521748524,0.0928064014793482 +0.49,0.00962355587177856,-0.0450171373546721,0.0188653049927118,-0.0571906477016507,0.065838017590689,0.0892558549205526,0.0928168686194718 +0.492,0.00964188935022293,-0.0450120497674136,0.0188544608085606,-0.057211363750888,0.0658425198110498,0.0892526548845188,0.0928323929129619 +0.494,0.00967262706436611,-0.0449982488078313,0.0188316816415761,-0.057251478732239,0.0658382071022071,0.0892587176475554,0.0928428683416426 +0.496,0.00969098828591948,-0.0449931526857208,0.018820822257721,-0.0572721934032589,0.06584271951988,0.089255493601805,0.0928584004708379 +0.498,0.00972174087298824,-0.0449793592251103,0.0187980474082851,-0.0573122561879372,0.0658384329901503,0.0892614932367487,0.0928688987090457 +0.5,0.00974011634283672,-0.0449742651368356,0.0187871862529084,-0.0573329493534787,0.0658429674168046,0.0892582332802226,0.0928844464027269 +0.502,0.00977090082290048,-0.0449604673796143,0.018764398432635,-0.0573729926842444,0.0658386940786416,0.0892641874821838,0.0928949612721823 +0.504,0.00978929641140634,-0.0449553710944894,0.0187535282641842,-0.0573936790973244,0.0658432432700008,0.0892609018525898,0.0929105221517723 +0.506,0.00982010636898811,-0.0449415715235579,0.0187307298793459,-0.0574337033985893,0.0658389811462596,0.0892668176625521,0.0929210542274293 +0.508,0.00983851672220294,-0.0449364759334666,0.0187198529851853,-0.0574543827089329,0.0658435424076093,0.0892635123746903,0.0929366294289353 +0.51,0.00986935406802053,-0.0449226697279299,0.0186970367194448,-0.0574944032397918,0.0658392803311052,0.089269405855214,0.092947174437275 +0.512,0.00988777807681085,-0.0449175742370747,0.0186861507572356,-0.0575150822531802,0.0658438465211863,0.0892660909076001,0.0929627630383725 +0.514,0.00991863840327462,-0.0449037602579107,0.0186633148160753,-0.0575551042369614,0.0658395769686926,0.0892719730430872,0.0929733188170308 +0.516,0.00993707237443917,-0.0448986657927408,0.01865242003047,-0.0575757848132089,0.0658441431336908,0.0892686550276484,0.0929889209949544 +0.518,0.00996795289158743,-0.044884841724455,0.0186295615802167,-0.0576158142041192,0.0658398586395783,0.089274535439226,0.0929994850131244 +0.52,0.00998639456647822,-0.0448797481483352,0.0186186574650839,-0.0576364985594777,0.0658444204670385,0.0892712192780504,0.0930151006013527 +0.522,0.0100172913685175,-0.0448659130440745,0.0185957760762304,-0.0576765366769474,0.0658401169913042,0.089277102999823,0.0930256715741929 +0.524,0.0100357386530457,-0.0448608202734186,0.0185848629262445,-0.0576972249492795,0.0658446724468725,0.0892737906220093,0.0930413006587058 +0.526,0.0100666490979963,-0.0448469733329205,0.0185619587413918,-0.0577372716635487,0.0658403483700282,0.0892796795039107,0.0930518778640362 +0.528,0.0100851011176601,-0.044841880776125,0.0185510367489371,-0.0577579635346544,0.0658448971151442,0.0892763708246992,0.0930675203835994 +0.53,0.0101160234343554,-0.0448280218332353,0.0185281109305785,-0.0577980167294084,0.0658405535030041,0.0892822635452376,0.0930781038947182 +0.532,0.0101344801540084,-0.0448229287655244,0.0185171804626395,-0.057818711159063,0.0658450968664722,0.0892789567387257,0.0930937597911689 +0.534,0.0101654139591916,-0.0448090579055126,0.0184942344406995,-0.0578587680915189,0.065840736535368,0.0892848499575009,0.0931043501636832 +0.536,0.0101838762074907,-0.0448039634820723,0.0184832957823057,-0.0578794639034322,0.065845276880926,0.0892815422135468,0.0931200193410575 +0.538,0.0102148221779182,-0.0447900810705862,0.0184603311005812,-0.0579195215566699,0.0658409037244035,0.0892874313656309,0.0931306175136529 +0.54,0.0102332912815876,-0.0447849845456056,0.0184493844998593,-0.0579402175168546,0.0658454439490163,0.0892841194138806,0.0931462999302573 +0.542,0.0102642509418268,-0.0447710910663749,0.0184264024639698,-0.057980273241641,0.0658410620650184,0.0892899996613589,0.0931569070071863 +0.544,0.0102827284667808,-0.0447659918865669,0.0184154480677336,-0.0580009682886025,0.0658456050285063,0.089286680322932,0.0931726027032692 +0.546,0.0103137037703482,-0.044752087887414,0.0183924496167903,-0.0580410200624669,0.0658412180693981,0.0892925472577335,0.0931832198070963 +0.548,0.0103321912273012,-0.0447469857811838,0.0183814874858639,-0.058061713380694,0.0658457661763128,0.0892892178355159,0.0931989289351802 +0.55,0.0103631842148107,-0.0447330717891029,0.0183584730951752,-0.0581017600010567,0.0658413768558643,0.089295068018783,0.0932095570629996 +0.552,0.010381682864669,-0.0447279667763942,0.0183475032011778,-0.0581224510925687,0.0658459317658605,0.0892917265702925,0.093225279877824 +0.554,0.0104126953561122,-0.0447140432531972,0.0183244729007492,-0.0581624921703492,0.0658415416251997,0.089297557807406,0.0932359198119827 +0.556,0.010431206083194,-0.0447089356156601,0.01831349514723,-0.0581831808534507,0.0658461041402749,0.0892942032546385,0.0932516566447134 +0.558,0.0104622394809751,-0.0446950029216733,0.0182904485916633,-0.0582232167119282,0.0658417135287098,0.0893000146485346,0.0932623089033174 +0.56,0.0104804917178272,-0.0446886457883904,0.0182784455251274,-0.0582454011752243,0.0658431865511971,0.0893000395167114,0.0932744445749252 +0.562,0.0105040545301142,-0.044678494608543,0.0182613639523063,-0.0582757029052299,0.0658411860730775,0.089303397978854,0.0932844947602134 +0.564,0.0105175918572862,-0.044677055301466,0.018255458656396,-0.058287904082099,0.0658503888691672,0.0892946897441384,0.0933028896756615 +0.566,0.0105552422566624,-0.0446591755451534,0.0182267596038032,-0.0583371259151457,0.0658429039262897,0.0893036169376031,0.0933122481007354 +0.568,0.0105765433908789,-0.0446526287356959,0.0182135668385734,-0.0583612192820895,0.0658466360422024,0.089301030734962,0.0933279877447182 +0.57,0.0106072529006823,-0.0446394888370076,0.0181913050468022,-0.058399757552328,0.0658434244863099,0.0893054537936734,0.093339847024077 +0.572,0.0106254145261349,-0.044635043944718,0.0181809691882205,-0.0584193892853899,0.065848873196366,0.0893012698891253,0.0933565841885748 +0.574,0.0106587249784641,-0.0446198955864395,0.0181560028626654,-0.0584622229162791,0.0658433423092306,0.0893080213380806,0.093367073907831 +0.576,0.010678180640252,-0.0446144045717752,0.0181442818521729,-0.0584840834082375,0.065847555318294,0.0893050506970064,0.0933830369182595 +0.578,0.0107095166457575,-0.0446004529931552,0.0181210343487146,-0.0585242752267156,0.0658431365764935,0.0893107548994991,0.0933940500125446 +0.58,0.0107280436830297,-0.0445954933297879,0.018110099768162,-0.0585448950622745,0.0658478308721193,0.0893072704180717,0.0934101925411996 +0.582,0.010759765792426,-0.0445811245570582,0.0180863546407607,-0.0585859426138544,0.0658429553421564,0.0893135022941586,0.0934208512241603 +0.584,0.0107785124335694,-0.0445759226166738,0.0180751388512259,-0.0586070080547484,0.0658473876574471,0.089310280764538,0.0934367703676867 +0.586,0.010809688464429,-0.0445618547397954,0.0180518542802385,-0.0586473341107104,0.065842811815957,0.0893162482242335,0.0934475352159687 +0.588,0.0108282078311406,-0.0445567677315488,0.0180408283876672,-0.058668081834536,0.0658473650726319,0.0893129128017439,0.0934634751758915 +0.59,0.0108594660715338,-0.0445426052862111,0.018017444212839,-0.0587085347711393,0.0658427045404417,0.0893189671866139,0.0934741556040032 +0.592,0.0108780583630433,-0.0445374499046859,0.0180063457698555,-0.0587293715578431,0.0658472094440915,0.0893156831163014,0.093490039258997 +0.594,0.0109092136119834,-0.0445233609213751,0.0179830761036921,-0.0587695843113818,0.0658426514105971,0.0893215999435259,0.0935007602138407 +0.596,0.0109277828274782,-0.0445182248687169,0.0179720162372912,-0.0587903235223955,0.0658472122994868,0.0893182458620714,0.0935166573055284 +0.598,0.0109589920396985,-0.044504120704863,0.0179487299761399,-0.0588304972880829,0.0658426793095258,0.0893240843042675,0.0935273848797906 +0.6,0.0109776084889992,-0.0444989654637994,0.0179376497537482,-0.0588512285036282,0.0658472659935016,0.0893206793520401,0.0935432834851118 +0.602,0.0110088302730168,-0.0444848882649874,0.0179143965676651,-0.0588912870696647,0.065842805339286,0.0893263859607207,0.0935540504749882 +0.604,0.0110274687593077,-0.0444797380550275,0.0179033227842004,-0.0589119689461692,0.0658474420397528,0.0893229024622945,0.0935699685197582 +0.606,0.0110587405935268,-0.0444656662429905,0.0178800666246818,-0.0589519772381155,0.0658430266355705,0.0893285089434955,0.0935807645716484 +0.608,0.0110774143086912,-0.0444605147041919,0.0178689839782653,-0.0589726394219424,0.0658476974302041,0.0893249665386597,0.0935966986218889 +0.61,0.0111087254927644,-0.0444464548354718,0.0178457282009935,-0.0590126005584015,0.065843320990843,0.089330488131075,0.0936075257972824 +0.612,0.0111274241406013,-0.0444413096697129,0.0178346407048889,-0.0590332438852855,0.0658480181586411,0.0893269011428356,0.0936234789203257 +0.614,0.0111587799060572,-0.0444272523828633,0.0178113684465238,-0.0590731920332298,0.0658436541103597,0.0893323740275559,0.0936343283982626 +0.616,0.0111775011219778,-0.0444221135773417,0.0178002706656017,-0.0590938322926676,0.0658483600434701,0.0893287663825703,0.0936502990086024 +0.618,0.0112088926575658,-0.0444080562888978,0.017776976385487,-0.0591337819316919,0.0658439886679655,0.0893342182567098,0.0936611655498855 +0.62,0.0112276281104799,-0.0444029263875831,0.0177658683649478,-0.0591544249953234,0.0658486901355253,0.0893306076227199,0.0936771539488092 +0.622,0.0112590487822,-0.0443888635325005,0.0177425447842558,-0.059194391649605,0.0658442920046418,0.0893360637196927,0.0936880311135739 +0.624,0.0112777925940215,-0.044383742288605,0.0177314252613459,-0.0592150437468892,0.0658489774911614,0.0893324640872361,0.0937040365705555 +0.626,0.0113092325806447,-0.0443696707720119,0.0177080706713694,-0.059255032690982,0.0658445411210009,0.0893379398275896,0.0937149202413252 +0.628,0.0113279789670215,-0.0443645574741131,0.0176969402776564,-0.0592756953323171,0.0658492046139361,0.0893343583837933,0.0937309422321965 +0.63,0.0113594305435689,-0.0443504743154727,0.0176735548237202,-0.059315707827395,0.065844724804927,0.0893398616036444,0.0937418293890951 +0.632,0.0113781762554191,-0.0443453666941298,0.0176624141677185,-0.0593363810775059,0.0658493647818667,0.089336300482258,0.0937578668113389 +0.634,0.0114096333891528,-0.0443312701877613,0.0176390007122914,-0.0593764133141362,0.0658448433238916,0.0893418312052872,0.093768756156259 +0.636,0.0114283771302855,-0.0443261653287136,0.0176278508904846,-0.0593970953119571,0.0658494627158486,0.0893382880088877,0.093784807720117 +0.638,0.0114598368997001,-0.0443120543715682,0.0176044133021311,-0.0594371413464191,0.065844906342726,0.0893438407462394,0.0937956991450661 +0.64,0.0114785795048206,-0.0443069489179884,0.0175932552989855,-0.0594578295905135,0.0658495110813997,0.0893403101604414,0.0938117634048125 +0.642,0.0115100416539947,-0.0442928231722178,0.0175697979470143,-0.0594978823041398,0.0658449297866652,0.089345875674409,0.0938226578699973 +0.644,0.0115287853714637,-0.0442877139759455,0.017558632674349,-0.0595185739094626,0.065849527520508,0.0893423506905645,0.0938387335473109 +0.646,0.0115602519868998,-0.044273573601179,0.0175351595016497,-0.0595586265847974,0.065844932339636,0.0893479182009114,0.0938496326753472 +0.648,0.0115789999192613,-0.0442684580969982,0.0175239876191845,-0.0595793188528832,0.065849530947024,0.0893443914456407,0.0938657188389346 +0.65,0.0116104745688685,-0.0442543036789521,0.0175005017044672,-0.0596193659519697,0.0658449321718431,0.0893499503995522,0.0938766246173627 +0.652,0.0116292299936681,-0.0442491802132125,0.017489323619974,-0.0596400566149066,0.0658495385876606,0.0893464151595234,0.0938927208391179 +0.654,0.0116607169479234,-0.0442350125951064,0.017465826842841,-0.0596800943840361,0.065844944340265,0.0893519566822058,0.0939036352955215 +0.656,0.0116794828246316,-0.0442298805345722,0.0174546426845234,-0.059700781835705,0.0658495636875508,0.0893484076850155,0.0939197416810064 +0.658,0.0117109862981296,-0.0442157007061872,0.0174311356830028,-0.0597408084429564,0.065844979121654,0.0893539254562196,0.0939306666462996 +0.66,0.0117297649113875,-0.0442105604061813,0.0174199453353079,-0.0597614918035401,0.0658496142830452,0.089350359286854,0.0939467837890743 +0.662,0.0117612885134088,-0.0441963693868427,0.0173964276221838,-0.0598015072179337,0.0658450413497404,0.089355849894754,0.093957720728012 +0.664,0.0117800813111372,-0.0441912220169503,0.0173852307716444,-0.0598221863128779,0.0658496929322785,0.08935226508317,0.0939738495923443 +0.666,0.0118116276945063,-0.0441770207713639,0.0173617010016388,-0.0598621919340557,0.0658451306656623,0.0893577278806326,0.0939847995260173 +0.668,0.0118304352781878,-0.0441718680612152,0.0173504972069521,-0.0598828671719513,0.0658497973064537,0.089354124693124,0.0940009412970362 +0.67,0.0118620060074569,-0.044157657432683,0.0173269535091712,-0.0599228653426385,0.0658452424735633,0.0893595612920437,0.0940119047988973 +0.672,0.0118808282489701,-0.0441525013785503,0.0173157422741023,-0.0599435375406574,0.0658499213720078,0.0893559413196255,0.0940280607230861 +0.674,0.0119124238451265,-0.0441382820466051,0.0172921826002551,-0.0599835310200129,0.0658453693306618,0.0893613548647832,0.0940390379746687 +0.676,0.0119312600792004,-0.0441331246273562,0.0172809634443647,-0.0600042012043033,0.0658500568919222,0.0893577205058085,0.0940552092149951 +0.678,0.0119628801978788,-0.0441188970834213,0.0172573858769189,-0.0600441926922786,0.0658455024908466,0.0893631148839071,0.0940662000961385 +0.68,0.0119817294472707,-0.0441137400193845,0.0172461583928609,-0.0600648619108649,0.0658501949662141,0.0893594688205412,0.0940823876160516 +0.682,0.0120133731325308,-0.0440995045594714,0.0172225613804188,-0.060104853678113,0.0658456333534099,0.0893648479326207,0.0940933918082845 +0.684,0.0120322343249848,-0.0440943491388633,0.0172113252734207,-0.0601255228498707,0.0658503273880716,0.089361192679274,0.0941095962938928 +0.686,0.0120639002869796,-0.0440801058695473,0.017187707773749,-0.0601655165065957,0.0658457546301372,0.0893665598706255,0.0941206133780673 +0.688,0.0120827724350495,-0.0440749528532501,0.017176462880464,-0.0601861863220101,0.0658504476580326,0.0893628974462927,0.0941368352012134 +0.69,0.0121144593068889,-0.0440607017088167,0.0171528244096387,-0.0602261827296686,0.0658458611197888,0.0893682551433553,0.0941478647372515 +0.692,0.0121333416327881,-0.0440555513132971,0.0171415706976698,-0.0602468536066478,0.0658505515789547,0.0893645868894035,0.0941641039577119 +0.694,0.012165048175831,-0.0440412920815509,0.0171179112961666,-0.0602868529159033,0.0658459500554386,0.0893699364522482,0.0941751455403452 +0.696,0.0121839401758126,-0.0440361440297634,0.0171066488475731,-0.0603075250052839,0.065850637427193,0.0893662629908068,0.0941914019413524 +0.698,0.0122156654166134,-0.044021876384424,0.0170829689836853,-0.0603475267880147,0.0658460210563258,0.0893716047556474,0.0942024552314941 +0.7,0.0122345668692976,-0.0440167300079309,0.0170716979674831,-0.0603682000167731,0.0658507057556467,0.0893679260636032,0.0942187283801706 +0.702,0.0122663101652285,-0.0440024535453672,0.0170479984028127,-0.0604082034531696,0.0658460757646965,0.0893732595272116,0.0942297931155709 +0.704,0.0122852210956435,-0.0439973079172417,0.0170367190418628,-0.0604288775904235,0.0658507589244059,0.0893695750890573,0.0942460824382965 +0.706,0.0123169821370789,-0.0439830221952432,0.0170130006840214,-0.0604688816722529,0.0658461172761577,0.0893748991763289,0.0942571584294821 +0.708,0.0123359027520686,-0.0439778762729336,0.0170017132214321,-0.0604895564030217,0.06585080047401,0.0893712081754635,0.0942734632920037 +0.71,0.0123676815164159,-0.0439635808490153,0.0169779769858284,-0.0605295601200926,0.0658461494795934,0.0893765215318764,0.0942845504100581 +0.712,0.0123866121278339,-0.0439584336085376,0.0169666816550388,-0.0605502351140544,0.0658508344557334,0.0893728230431937,0.0943008701930052 +0.714,0.012418408804092,-0.0439441280752492,0.0169429283521368,-0.0605902376003988,0.065846176412716,0.0893781243029822,0.0943119683550481 +0.716,0.0124373497543178,-0.0439389786222463,0.0169316253535905,-0.0606109125665324,0.0658508648171794,0.0893744174576628,0.0943283025173379 +0.718,0.0124691646567286,-0.0439246626370393,0.0169078556113354,-0.0606509131937688,0.0658462017166819,0.0893797054529496,0.0943394116739225 +0.72,0.0124881162574101,-0.043919510285463,0.016896545097273,-0.0606715879159787,0.0658508949148962,0.0893759895569831,0.0943557597989371 +0.722,0.0125199497438819,-0.0439051835930388,0.0168727593217845,-0.0607115863317447,0.0658462282435939,0.0893812634495995,0.0943668799256632 +0.724,0.0125389122343213,-0.0439000279076555,0.016861441389397,-0.0607322606845441,0.0658509271946246,0.0893775380486057,0.0943832417477229 +0.726,0.0125707646407406,-0.0438856903532987,0.0168376397613352,-0.0607722568023796,0.0658462578396002,0.0893827973819336,0.0943943728415012 +0.728,0.0125897381678705,-0.0438805311571576,0.0168263144534647,-0.0607929307489325,0.0658509630492799,0.0893790622745594,0.0944107482526799 +0.73,0.0126216097642385,-0.0438661826903604,0.0168024969533176,-0.060832924701718,0.065846291298305,0.0893843069553544,0.0944218903316707 +0.732,0.0126405943823563,-0.0438610200422791,0.0167911642651558,-0.0608535982786947,0.065851002839002,0.0893805621647824,0.0944382793711436 +0.734,0.0126724853518272,-0.0438466607108585,0.0167673307183105,-0.0608935903504459,0.0658463284575427,0.0893857923933056,0.094449432476548 +0.736,0.0126912143396556,-0.0438401954434754,0.0167549522990595,-0.0609157193524937,0.0658478473961714,0.0893854071857775,0.0944621186197905 +0.738,0.0127193568307238,-0.0438284938327823,0.0167348226691404,-0.0609499480438602,0.065846279580025,0.0893874077519446,0.094474886566972 +0.74,0.0127361603309672,-0.0438251014184908,0.016725838048519,-0.0609668737485876,0.0658533559370305,0.0893812267706978,0.0944927416841573 +0.742,0.012771466761035,-0.0438086740679334,0.0166990436819165,-0.0610113922022254,0.065846966438653,0.0893879981352619,0.0945032186577461 +0.744,0.0127919709730733,-0.0438026907136184,0.016686460954326,-0.061033935101296,0.0658510968792987,0.0893847886677279,0.0945195652962912 +0.746,0.0128235960764549,-0.0437887875530268,0.0166630999020047,-0.0610730389892398,0.0658470323386043,0.0893893062076786,0.0945313619331528 +0.748,0.0128423674400982,-0.0437839801214554,0.016652117475455,-0.0610931500378351,0.0658521928356598,0.0893851522557676,0.0945482842841252 +0.75,0.012871485966959,-0.0437702299257802,0.0166297424766848,-0.0611305735474431,0.0658463029208053,0.0893917360713171,0.0945570729014483 +0.752,0.0128888890746088,-0.0437663056779769,0.0166200824854481,-0.0611484885970965,0.0658526882772709,0.0893860031185739,0.0945744889388943 +0.754,0.0129233951501481,-0.0437504872942599,0.0165940876892928,-0.0611918060165071,0.0658470679027047,0.0893920182091496,0.0945855115555416 +0.756,0.0129435465627868,-0.0437448273709788,0.0165818946503184,-0.0612137269132056,0.0658516636905549,0.089388305553015,0.0946022444421411 +0.758,0.012975907939008,-0.0437304577673991,0.0165578524851124,-0.0612538623525131,0.0658472067213519,0.0893931745784682,0.094613962974278 +0.76,0.0129950119638976,-0.0437254729597615,0.0165465762044553,-0.0612744233196373,0.065852232640908,0.0893891503614772,0.0946309440050232 +0.762,0.0130241205452299,-0.0437117513640819,0.0165242066448076,-0.0613118032276353,0.0658463853228327,0.0893956865101562,0.0946398796172444 +0.764,0.013041460149626,-0.043707911828755,0.0165146192725559,-0.0613296112983103,0.0658528609911555,0.0893898878672918,0.0946574603739384 +0.766,0.0130762764129859,-0.0436918725843122,0.0164883019867578,-0.0613733719857641,0.0658470106702987,0.0893961154428232,0.0946684646979103 +0.768,0.0130965501346725,-0.0436861461954078,0.0164759904637758,-0.0613954713941383,0.0658515361818737,0.0893924864099003,0.0946852559884526 +0.77,0.0131289629172144,-0.0436717287761388,0.0164518745416051,-0.0614356662686516,0.0658470297854078,0.0893973856970465,0.0946970325216082 +0.772,0.0131480766678747,-0.0436667488300955,0.0164405887290643,-0.061456233153227,0.0658520702561479,0.089393355098457,0.0947140971222322 +0.774,0.0131772920530318,-0.0436529330753128,0.0164180953074013,-0.0614937481452951,0.0658461390761516,0.0893999434675136,0.0947230463580492 +0.776,0.0131946879121115,-0.0436490603515509,0.0164084565644765,-0.0615116175504491,0.0658526087693947,0.0893941463651861,0.0947406747778528 +0.778,0.0132295474873249,-0.0436329790621877,0.0163820889722985,-0.0615553840434555,0.0658467493150853,0.0894003445119623,0.0947517256102783 +0.78,0.0132498477247609,-0.0436272399009748,0.0163697606069543,-0.061577475986339,0.0658513058853994,0.0893966708555838,0.09476857429222 +0.782,0.0132823347370875,-0.0436127706261411,0.0163455814097621,-0.0616176944553618,0.0658467940338026,0.0894015277119189,0.0947803889500201 +0.784,0.0133014943183183,-0.0436077691392057,0.0163342681953059,-0.0616382661724776,0.0658518681642207,0.0893974469330726,0.0947975026084833 +0.786,0.0133307684575772,-0.0435939229314242,0.0163117398198512,-0.0616757593393075,0.0658459588879863,0.0894039579992215,0.0948064955425438 +0.788,0.0133482038798004,-0.0435900370417595,0.0163020837246318,-0.0616936158069521,0.0658524768643975,0.0893980960405389,0.0948241709861472 +0.79,0.0133831468523731,-0.0435739225828059,0.0162756692292583,-0.0617373636415798,0.0658466421192104,0.0894042041005491,0.0948352726808974 +0.792,0.0134035001590771,-0.0435681686770255,0.0162633166716117,-0.0617594439034244,0.0658512435817933,0.0894004603803611,0.0948521709578568 +0.794,0.0134360690906836,-0.0435536739644075,0.0162390955975415,-0.0617996387289808,0.0658467595576262,0.0894052227443109,0.0948640383465269 +0.796,0.0134552798720798,-0.0435486638052081,0.0162277604940848,-0.0618201981887517,0.0658518776060385,0.0894010742221124,0.0948812034182701 +0.798,0.0134846358423657,-0.0435347961733284,0.0162051908145186,-0.0618576703214861,0.0658459878000393,0.0894074951503528,0.0948902441616672 +0.8,0.0135021175768107,-0.043530906481046,0.0161955134403662,-0.0618755174691057,0.0658525441485755,0.0894015730361279,0.0949079677400157 +0.802,0.0135371516194986,-0.0435147687780272,0.0161690464319834,-0.0619192514980965,0.0658467181529112,0.0894075972804939,0.0949191230535702 +0.804,0.0135575550430897,-0.0435090126266329,0.0161566682326906,-0.0619413242952077,0.0658513457336631,0.0894037985652497,0.094936074191829 +0.806,0.0135902074237454,-0.0434944956988541,0.0161323929927915,-0.06198151549899,0.0658468575133141,0.0894084948532456,0.0949479910784896 +0.808,0.013609402131035,-0.0434880291021076,0.0161197942050133,-0.0620037876176897,0.0658486109414773,0.0894077783593829,0.0949613755445267 +0.81,0.0136387687877395,-0.0434756976900087,0.0160986306883773,-0.0620391756018354,0.0658465688893814,0.0894099155569073,0.0949744175293064 +0.812,0.0136561134924155,-0.0434722006624332,0.0160892834763518,-0.0620566040278467,0.0658536989050514,0.0894037385524646,0.0949928136227097 +0.814,0.0136921635656085,-0.0434553796372702,0.0160618316354087,-0.0621016016385815,0.0658470044071346,0.0894104037322649,0.0950036086246419 +0.816,0.0137129751849625,-0.0434493576892042,0.0160490389860595,-0.0621243063922727,0.0658512056733095,0.0894070522836876,0.0950204214934017 +0.818,0.0137452315837931,-0.0434350913283445,0.0160250896759998,-0.0621639001357153,0.0658468532559046,0.0894115470187238,0.0950324633814606 +0.82,0.0137642757541148,-0.0434302315038401,0.0160139049385015,-0.0621841818315053,0.0658520640009762,0.0894072810907662,0.0950497685572788 +0.822,0.0137977791455025,-0.0434149388725442,0.0159886207503456,-0.0622258098334399,0.0658465536797558,0.0894128649897595,0.0950610761704609 +0.824,0.0138174719621619,-0.0434095208438365,0.01597672594935,-0.0622471549961464,0.0658511348096993,0.0894091563531275,0.095077939523258 +0.826,0.0138499015722924,-0.0433949032234274,0.0159524067142534,-0.0622873399309341,0.0658462889566612,0.089414157662914,0.0950895278511258 +0.828,0.0138691070146874,-0.0433897723780694,0.0159409395165503,-0.0623080166875467,0.065851157155751,0.0894101706245631,0.095106472760919 +0.83,0.0139017613920833,-0.0433749396326944,0.015916365565879,-0.0623485815279095,0.0658460948582902,0.0894153852283905,0.0951178785249505 +0.832,0.0139211103787187,-0.0433696720833083,0.0159047405075235,-0.0623694749897589,0.0658508347826889,0.0894115139139563,0.095134700268899 +0.834,0.0139535007953029,-0.0433550112422449,0.0158804201782108,-0.0624096222445472,0.0658459637780183,0.0894165398709941,0.0951461763206856 +0.836,0.0139727482194131,-0.0433498061015338,0.0158688955883559,-0.062430336958296,0.0658507873008404,0.0894125860481186,0.0951630144683403 +0.838,0.0140052115904726,-0.0433350983984956,0.0158445211871532,-0.0624705185991878,0.065845889208561,0.0894176042260339,0.0951744593924952 +0.84,0.0140245147762017,-0.0433298566045442,0.0158329547506878,-0.0624912678438057,0.0658506989943856,0.0894136496003309,0.0951912747750537 +0.842,0.0140529673783935,-0.0433164807140928,0.0158111500175064,-0.0625273399306689,0.0658452905988114,0.08941946997856,0.0952004392603724 +0.844,0.0140700836898265,-0.0433127798152997,0.0158017735556285,-0.0625445573066967,0.0658520907594175,0.0894132415427376,0.0952181772758075 +0.846,0.014105153891449,-0.043296586045377,0.0157752724736774,-0.0625880066172987,0.0658462670553792,0.0894190304226004,0.0952293018250888 +0.848,0.0141256744457777,-0.043290752682959,0.0157627998811962,-0.0626100180540854,0.0658509022151144,0.0894151163775171,0.0952462315241465 +0.85,0.0141582354772854,-0.0432763515713328,0.0157386796386595,-0.062649616637561,0.0658466138381165,0.0894193630957863,0.095258303215404 +0.852,0.0141775262393485,-0.0432713739839931,0.0157273402686781,-0.0626699545214701,0.0658518752268677,0.089414952530558,0.0952756280046087 +0.854,0.0142111070938916,-0.0432561649291666,0.0157021366857698,-0.0627111402365107,0.0658465857380667,0.0894200764090566,0.0952871352586055 +0.856,0.014230898721023,-0.0432507731726816,0.0156902452838956,-0.0627323146776466,0.0658513136613727,0.0894161351695308,0.095304136309185 +0.858,0.0142636397869806,-0.043236077243927,0.0156657662194304,-0.0627724325570342,0.0658464809591538,0.0894208600905003,0.095315843694448 +0.86,0.014283029389139,-0.0432309168444281,0.0156542063716585,-0.0627931063444091,0.0658514032302988,0.0894167278539906,0.0953329037346499 +0.862,0.0143158876150534,-0.0432160665014312,0.0156295458303846,-0.0628335228972614,0.0658463816847012,0.0894216576294896,0.0953444595690525 +0.864,0.0143353492509344,-0.0432108129214109,0.0156178750832507,-0.0628543619844951,0.0658511858853861,0.0894176388105038,0.0953614185383572 +0.866,0.0143679596096805,-0.0431960930573447,0.0155934105185999,-0.0628944882416677,0.0658462781046413,0.0894224935285391,0.0953730090023457 +0.868,0.0143873158905856,-0.0431908909962541,0.0155818186673222,-0.0629152052677269,0.0658511190399296,0.0894184573035077,0.0953899712824408 +0.87,0.014419948682589,-0.0431761276743227,0.0155573075359951,-0.0629553846008279,0.0658461528191518,0.0894233747300627,0.095401519588454 +0.872,0.014439329026754,-0.0431708969730623,0.01554568223449,-0.0629761440851478,0.0658509556677957,0.0894193840664184,0.0954184578244006 +0.874,0.0144719115023716,-0.0431561570877459,0.0155212104960605,-0.0630162325734021,0.0658460086634717,0.0894242725162108,0.0954300181343464 +0.876,0.0144912773159376,-0.0431509334657825,0.0155095984699388,-0.0630369580995624,0.0658508204787294,0.0894202722202891,0.0954469647428612 +0.878,0.014519884499624,-0.0431374742499459,0.0154876353764205,-0.0630730647666449,0.0658452854944894,0.0894260623057864,0.0954561962715709 +0.88,0.0145370789678852,-0.0431337711801973,0.0154781859181044,-0.0630903254212058,0.065852057217099,0.0894198361223382,0.0954740459741489 +0.882,0.0145722846456855,-0.0431174907600169,0.0154515259018982,-0.063133782316519,0.0658461085318793,0.0894255955272977,0.0954852622749122 +0.884,0.0145928689684444,-0.0431116510783136,0.0154389856963711,-0.0631558095045057,0.0658507085587555,0.08942167618563,0.0955023169069201 +0.886,0.014625568608785,-0.0430971497466651,0.0154146977347749,-0.0631954571204168,0.0658462847034373,0.0894259223866888,0.0955144714999859 +0.888,0.0146449251762427,-0.0430921599704976,0.0154032904390193,-0.063215826211134,0.0658515142757033,0.0894215129772755,0.0955319219106222 +0.89,0.0146746330191419,-0.043078145634099,0.0153804568969251,-0.0632530696797723,0.0658455198704343,0.0894275423542134,0.0955411770486717 +0.892,0.0146923510953477,-0.0430742228822353,0.0153706196577517,-0.0632708931797434,0.0658521396287059,0.0894214208955953,0.0955591648031185 +0.894,0.0147277725495582,-0.043057937131586,0.0153438613415197,-0.0633143731557853,0.0658462376281338,0.0894270076261453,0.0955706273837716 +0.896,0.0147484108221634,-0.0430521565669114,0.0153313325006177,-0.0633363644352687,0.0658509333513932,0.0894229611640869,0.0955879027412888 +0.898,0.0147814947645812,-0.0430374476549849,0.0153067096138819,-0.0633764628215108,0.0658463189139755,0.0894273192142623,0.095600103620023 +0.9,0.0148009358000815,-0.0430309292336583,0.0152939387841294,-0.0633986922654714,0.0658480823748884,0.0894263897572015,0.095613772582608 +0.902,0.0148306621532215,-0.0430184297658998,0.0152724687840894,-0.0634339968903119,0.0658459370531168,0.0894282187527005,0.0956270659391121 +0.904,0.0148482043886884,-0.043014954716548,0.015263006684699,-0.063451438158652,0.0658531942607787,0.0894219082134276,0.0956458459211288 +0.906,0.0148847237205747,-0.0429978563395442,0.0152351251129869,-0.0634964047868102,0.065846270317214,0.0894282792680611,0.0956568717764323 +0.908,0.0149057931843671,-0.0429917814083551,0.0152221431083429,-0.0635191447191181,0.0658505037755974,0.0894247881671703,0.0956740309588215 +0.91,0.0149384457274007,-0.0429772887262476,0.0151978297056354,-0.0635587187742199,0.0658459769126087,0.0894290396252042,0.0956863253977717 +0.912,0.0149577226663444,-0.0429708529334145,0.0151851606938831,-0.0635808297110368,0.0658477415223763,0.0894281652055692,0.0957000498738497 +0.914,0.0149874881280353,-0.0429582485826056,0.0151635673172007,-0.0636163118513728,0.0658454360009189,0.0894301634768076,0.0957132809643383 +0.916,0.0150050717232466,-0.0429547136266083,0.015154026413185,-0.0636338746763588,0.0658526065940008,0.0894239417683972,0.0957320394344615 +0.918,0.0150414417459099,-0.0429376440757631,0.0151262163475577,-0.0636787049580901,0.0658457013444805,0.0894303078182616,0.0957430916708283 +0.92,0.0150624557289947,-0.0429315794104434,0.0151132610258503,-0.0637013904343735,0.0658499530557238,0.0894268057462117,0.0957602810886992 +0.922,0.0150951172684391,-0.042917035507819,0.0150889049881988,-0.0637409793948209,0.0658453909557831,0.0894310741252931,0.0957725746661957 +0.924,0.0151144029620068,-0.0429121199505169,0.0150775404662154,-0.063761306589203,0.0658506652259924,0.0894266796275013,0.0957902572632243 +0.926,0.0151443070452985,-0.0428978617073854,0.0150544034116361,-0.0637989039842907,0.0658443968150517,0.0894329146601946,0.0957994948236725 +0.928,0.0151621356729141,-0.0428938474527089,0.0150444252244466,-0.0638169127311801,0.0658509455659125,0.0894268563305287,0.0958175632351332 +0.93,0.0151975445840137,-0.0428774867224518,0.0150175952092476,-0.0638603733309864,0.0658450042631935,0.0894324563610075,0.0958291317268808 +0.932,0.0152181894713077,-0.0428716869045619,0.0150050412782226,-0.0638823449243429,0.065849739551397,0.0894283695700479,0.0958465365097914 +0.934,0.0152514185754137,-0.042856827242504,0.0149802427386884,-0.0639225500974403,0.0658450379155104,0.0894327435665085,0.095858807370432 +0.936,0.0152709367172738,-0.0428502484082196,0.0149674014288285,-0.0639448045371165,0.0658468172717872,0.0894317728302928,0.0958725760497008 +0.938,0.015296768435906,-0.0428389976636693,0.0149483860167402,-0.0639761667456885,0.0658441427936278,0.0894344988990212,0.0958836845360063 +0.94,0.0153113778040046,-0.0428375012374192,0.0149417717928186,-0.0639889031099301,0.0658539094982863,0.0894252341486078,0.0959036289994554 +0.942,0.0153515164356111,-0.0428182564001237,0.014910833946751,-0.0640384769361337,0.0658454796149141,0.0894329800630003,0.0959142262941292 +0.944,0.015374060584479,-0.0428113953813957,0.0148967076544525,-0.0640626879474817,0.0658494147645254,0.0894294956262564,0.0959315059428182 +0.946,0.0154068401459364,-0.0427971984727753,0.0148726258660125,-0.0641016825540166,0.0658455679648619,0.0894329640093534,0.0959446097720081 +0.948,0.0154263507012451,-0.0427908766640637,0.014859982225066,-0.0641236099526317,0.065847697767534,0.0894316319583054,0.0959588858033713 +0.95,0.0154572232221453,-0.0427777255961118,0.0148375342994903,-0.0641600491425324,0.0658450061361727,0.0894336573374386,0.0959722466576691 +0.952,0.0154753535916346,-0.0427740406701847,0.0148276436959791,-0.0641781098529274,0.0658521791446744,0.0894274509777883,0.0959913492201472 +0.954,0.0155121893075134,-0.0427568282875522,0.0147995387077363,-0.0642230545376101,0.0658452247226789,0.089433528370831,0.0960026882367354 +0.956,0.0155333987771175,-0.042750794467662,0.0147865096609986,-0.0642457709983278,0.065849600033519,0.0894298414814405,0.096020221559736 +0.958,0.0155665625598308,-0.0427360110064209,0.014761749285267,-0.0642857425529921,0.0658448505404007,0.0894340538013346,0.0960326640096018 +0.96,0.0155860642575832,-0.042731064459404,0.0147502435572531,-0.0643062227308398,0.0658501494832625,0.0894295836602089,0.0960505835099687 +0.962,0.015616227007701,-0.0427166920774875,0.0147268901506337,-0.0643439733072847,0.0658437844338912,0.089435748608323,0.0960599706098009 +0.964,0.0156341548870588,-0.042712688284396,0.0147168461024581,-0.0643620185654492,0.0658503699892627,0.089429602181545,0.0960782285182808 +0.966,0.0156698411234044,-0.0426961770740542,0.0146897555268312,-0.0644056947200942,0.0658442861199211,0.0894352208956511,0.0960899230653375 +0.968,0.0156906059676471,-0.042690353900787,0.0146771018675156,-0.0644277472874417,0.0658490046649523,0.0894311095529995,0.0961074888678704 +0.97,0.0157240382305765,-0.0426753765279746,0.0146521002753327,-0.0644680893400795,0.0658441792371794,0.0894354951840528,0.0961198790427078 +0.972,0.0157437226471636,-0.0426702634147648,0.0146404214023591,-0.0644887336497048,0.0658493845577562,0.0894310459052342,0.0961376976977698 +0.974,0.0157778481928245,-0.0426546636970819,0.0146146367402696,-0.0645301684802746,0.0658437668567767,0.0894360925738301,0.0961495777815629 +0.976,0.01579790821607,-0.0426491980637901,0.0146025263933,-0.0645514339193246,0.0658485353593084,0.0894320098450252,0.096167074322338 +0.978,0.0158312456079401,-0.0426340789274834,0.0145774443538039,-0.0645918194972522,0.0658433846917643,0.0894366288451314,0.0961791107208739 +0.98,0.0158509549890991,-0.0426288056026168,0.0145656359957841,-0.064612609542006,0.0658483584918122,0.0894323343860545,0.0961966273104086 +0.982,0.0158843485079977,-0.0426135955017919,0.014540474038001,-0.0646530988349094,0.0658431362765434,0.0894370012198847,0.0962085414971374 +0.984,0.0159041218278762,-0.042608240395039,0.0145285884876983,-0.0646739708036024,0.065848057837504,0.0894327322424822,0.0962259569330472 +0.986,0.0159373005140873,-0.0425931724038156,0.0145036420197194,-0.0647141141323911,0.0658430130737302,0.0894372241258137,0.0962379147460273 +0.988,0.0159569987657044,-0.0425878603738675,0.0144918332322354,-0.0647348438585389,0.0658480099787967,0.0894328787951414,0.0962553260065362 +0.99,0.0159902096275813,-0.0425727799604947,0.0144668785950991,-0.0647749587890555,0.0658429780280892,0.0894373292199757,0.0962672650307489 +0.992,0.0160099449108931,-0.0425674460728738,0.0144550465453814,-0.0647956963529295,0.0658479746419971,0.0894329738095349,0.0962846545534341 +0.994,0.0160431345895478,-0.0425524041538124,0.0144301406056961,-0.0648356945637697,0.065842998019695,0.0894373366360125,0.0962966186690078 +0.996,0.0160628717185981,-0.0425470825264218,0.0144183213042393,-0.0648563892786103,0.0658480188865659,0.0894329450777343,0.096314017346236 +0.998,0.0160960970291843,-0.0425320407656805,0.0143934051494439,-0.0648963596999965,0.0658430476868895,0.0894372608544425,0.0963259930386086 +1,0.0161158571655132,-0.0425267192074522,0.0143815752852831,-0.0649170490670274,0.0658480697585593,0.0894328499984152,0.0963434003273344 +1.002,0.0161490986946244,-0.0425116885761046,0.0143566598294054,-0.0649569812836027,0.0658431051942513,0.089437120939513,0.0963553967971842 +1.004,0.0161688678994813,-0.042506376830144,0.0143448283196981,-0.0649776564970793,0.0658481288124389,0.0894326913688814,0.0963728209140906 +1.006,0.016202133773127,-0.0424913454681666,0.0143198964607718,-0.0650175821514483,0.065843149887422,0.0894369430812017,0.0963848317607268 +1.008,0.0162219134896538,-0.0424860402500075,0.0143080570950555,-0.0650382571459932,0.0658481638236468,0.0894325087323617,0.0964022717390738 +1.01,0.0162551949479322,-0.0424710074727788,0.0142831088807067,-0.0650781818995093,0.0658431634247375,0.0894367560519317,0.0964142956480619 +1.012,0.0162749795970673,-0.0424657095779435,0.0142712630542546,-0.0650988589913492,0.0658481635822604,0.0894323258730546,0.0964317520616888 +1.014,0.016308275513251,-0.042450669377029,0.0142462929861783,-0.0651387951747357,0.0658431324682934,0.089436584509318,0.0964437846228344 +1.016,0.0163280641876146,-0.0424453758424021,0.0142344388108284,-0.0651594802954365,0.06584811455399,0.0894321669255577,0.0964612558465714 +1.018,0.016361369983342,-0.042430325677222,0.0142094471792533,-0.0651994301545135,0.0658430508283053,0.0894364440949819,0.0964732950212724 +1.02,0.0163811608008139,-0.0424250343172031,0.0141975851374057,-0.0652201242472437,0.065848015108251,0.0894320419805335,0.0964907800320467 +1.022,0.0164144744724057,-0.0424099712886314,0.0141725723243587,-0.0652600884946044,0.0658429200194841,0.0894363397920814,0.0965028241899476 +1.024,0.0164342673790659,-0.0424046790504278,0.0141607025000308,-0.0652807916721758,0.0658478690415849,0.0894319523696908,0.0965203216753665 +1.026,0.0164675871002011,-0.0423896019222871,0.0141356711239225,-0.0653207666698784,0.0658427482038925,0.0894362671104754,0.096532370679512 +1.028,0.0164873824944284,-0.0423843061766941,0.0141237943265268,-0.0653414769173914,0.0658476870419596,0.089431890141961,0.0965498796870254 +1.03,0.0165207082331422,-0.0423692142469651,0.0140987471916093,-0.0653814580286207,0.0658425480410055,0.0894362149000136,0.0965619341082398 +1.032,0.0165405075221067,-0.042363912567375,0.014086864073302,-0.0654021729238124,0.0658474827416649,0.089431842520849,0.0965794538327726 +1.034,0.016573840368611,-0.0423488059592459,0.0140618041406226,-0.0654421548682975,0.06584233409715,0.0894361686309913,0.0965915149288082 +1.036,0.016593645398831,-0.0423434965866763,0.0140499153427347,-0.0654628717617922,0.0658472708539349,0.0894317944544153,0.0966090449103301 +1.038,0.0166269876416444,-0.0423283758153523,0.0140248448915765,-0.065502850090978,0.0658421203724714,0.0894361133555568,0.0966211142130604 +1.04,0.0166468005465594,-0.0423230576984909,0.014012950788482,-0.065523566784979,0.0658470644969297,0.0894317315946387,0.0966386543297006 +1.042,0.0166801550843629,-0.0423079236203298,0.013987871275102,-0.0655635382670998,0.0658419183312031,0.0894360359522323,0.0966507334802628 +1.044,0.016699977886165,-0.0423025965365402,0.0139759720242902,-0.0655842531439267,0.0658468736806196,0.0894316420281913,0.0966682840109772 +1.046,0.0167333478283843,-0.0422874501498678,0.0139508839146226,-0.0656242161227444,0.0658417356449754,0.0894359265330203,0.0966803745523729 +1.048,0.0167531822212048,-0.0422821146325781,0.013938979439429,-0.0656449282778672,0.0658467042798103,0.0894315174218935,0.0966979361420412 +1.05,0.016786570418679,-0.0422669569900254,0.0139138823299337,-0.0656848825589176,0.065841575705426,0.0894357790546051,0.0967100394146267 +1.052,0.0168064175924774,-0.0422616142018573,0.0139019723880724,-0.0657055917323892,0.0658465578990474,0.0894313533125807,0.0967276130096855 +1.054,0.0168398263433782,-0.0422464463021333,0.0138768651880343,-0.0657455383410844,0.0658414378393091,0.0894355912604572,0.0967397300719498 +1.056,0.0168596869439135,-0.0422410978178643,0.0138649494245461,-0.0657662448142294,0.0658464323221075,0.0894311488514914,0.0967573168019778 +1.058,0.0168931178138195,-0.0422259205397107,0.0138398306296619,-0.0658061855941512,0.0658413180708595,0.0894353641231923,0.0967694484059152 +1.06,0.016912991980199,-0.0422205681076991,0.0138279086452564,-0.0658268900248707,0.0658463224616474,0.0894309060935543,0.0967870494495128 +1.062,0.0169464457735566,-0.0422053821545413,0.0138027766094073,-0.0658668272213675,0.0658412102257544,0.0894351009739373,0.0967991960453932 +1.064,0.0169663332465291,-0.0422000274589427,0.0137908480157712,-0.0658875304768626,0.0658462215435837,0.0894306290594088,0.0968168124949638 +1.066,0.0169998100811722,-0.04218483332938,0.013765701200312,-0.0659274663433584,0.0658411071588113,0.0894348065028344,0.0968289742652288 +1.068,0.0170197103400113,-0.042179477792269,0.0137537656673175,-0.0659481693388017,0.0658461223355603,0.0894303227283951,0.0968466070149431 +1.07,0.0170532097981497,-0.0421642757677005,0.0137286028288584,-0.0659881058282972,0.0658410019090212,0.0894344857935566,0.0968587839233581 +1.072,0.0170731222026367,-0.0421589204086174,0.0137166601154153,-0.0660088093964848,0.0658460182269856,0.0894299921234691,0.0968764335916975 +1.074,0.0171066435148124,-0.0421437105597443,0.0136914804219892,-0.0660487479572449,0.0658408886315544,0.089434143517523,0.0968886254405942 +1.076,0.017126567427976,-0.0421383559242829,0.0136795303918014,-0.0660694527567749,0.0658459040393381,0.0894296415918923,0.0969062923345197 +1.078,0.0171601096589243,-0.0421231381318989,0.0136543334627739,-0.0661093942419306,0.065840763215676,0.0894337833663652,0.0969184988212917 +1.08,0.017180044538318,-0.0421177842874827,0.0136423760845318,-0.0661301007096785,0.065845776498911,0.0894292743432027,0.0969361829407038 +1.082,0.0172136067481163,-0.0421025582752125,0.013617161964035,-0.0661700453881871,0.0658406235586806,0.0894334077516343,0.0969484037084743 +1.084,0.0172335521996602,-0.0420972048649773,0.0136051972990964,-0.066190753732552,0.0658456343679746,0.0894288922536669,0.0969661047851432 +1.086,0.0172671335650595,-0.0420819702399565,0.0135799663783977,-0.0662307013795808,0.0658404695197133,0.0894330177565201,0.0969783394641974 +1.088,0.0172870893612073,-0.0420766165791957,0.0135679945593018,-0.0662514116070552,0.0658454782770732,0.0894284959074664,0.0969960570255988 +1.09,0.0173206892505029,-0.0420613728772493,0.0135427474682606,-0.0662913616440886,0.0658403026173687,0.0894326132910157,0.0970083052647579 +1.092,0.0173406553189218,-0.042056018074414,0.0135307686724184,-0.0663120736079087,0.0658453103355131,0.0894280848159768,0.0970260387119331 +1.094,0.0173742733221295,-0.0420407648059774,0.0135055061600911,-0.066352025262521,0.0658401255583193,0.0894321933826222,0.0970383002004509 +1.096,0.017394249714084,-0.0420354078899939,0.0134935205826776,-0.0663727387215917,0.0658451336127011,0.0894276577434016,0.0970560488890056 +1.098,0.0174278856357411,-0.042020144583397,0.0134682434049113,-0.0664126911800213,0.065839941690964,0.0894317565294649,0.0970683233705706 +1.1,0.0174478724840387,-0.0420147846213513,0.0134562512344791,-0.0664334058572214,0.0658449515834375,0.0894272130668133,0.0970860866853182 +1.102,0.0174815263094104,-0.0419995108603779,0.013430960061824,-0.0664733583896883,0.0658397544706109,0.0894313010495021,0.0970983739659417 +1.104,0.0175015237849822,-0.0419941470533225,0.0134189614611188,-0.0664940740212354,0.0658447676175169,0.0894267491095215,0.0971161513818622 +1.106,0.0175351956313961,-0.0419788625065777,0.0133936568151391,-0.0665340260680112,0.0658395670048631,0.0894308253747614,0.097128451333244 +1.108,0.0175552039055554,-0.0419734942558342,0.0133816519085108,-0.0665547424387279,0.0658445845729515,0.0894262644041844,0.0971462424580954 +1.11,0.0175888939697084,-0.0419581986961815,0.013356334129181,-0.0665946936532179,0.0658393817241883,0.0894303282591494,0.0971585550175823 +1.112,0.0176089131865852,-0.0419528256372062,0.0133443229968647,-0.066615410615852,0.0658444045270432,0.0894257578623627,0.0971763596142343 +1.114,0.0176426216963804,-0.0419375189504396,0.0133189922391431,-0.0666553608678894,0.0658392001975057,0.0894298088883879,0.097188684782002 +1.116,0.0176626519573412,-0.0419321409555886,0.0133069749177951,-0.0666760783474531,0.0658442286548059,0.0894252288464899,0.097206502771095 +1.118,0.0176963791338912,-0.0419168231384388,0.0132816311719996,-0.0667160276950788,0.0658390230897292,0.0894292668979774,0.0972188406048016 +1.12,0.0177164204934524,-0.0419114402933124,0.0132696076601987,-0.0667367456812165,0.0658440572430012,0.0894246771558678,0.0972366720503789 +1.122,0.0177501665258251,-0.0418961114418265,0.0132442507888285,-0.0667766943219459,0.0658388502402061,0.089428702317689,0.0972490226573756 +1.124,0.0177702189968288,-0.0418907240021124,0.0132322210559176,-0.0667974128534491,0.0658438898126137,0.0894241029487248,0.0972668677395814 +1.126,0.017803984029488,-0.0418753842922301,0.0132068508389133,-0.0668373610665912,0.0658386808293226,0.0894281154681007,0.0972792312667939 +1.128,0.0178240475943552,-0.0418699926289888,0.0131948148354627,-0.0668580802124151,0.0658437253137375,0.0894235066271307,0.0972970902464892 +1.13,0.0178578317252821,-0.0418546422917539,0.0131694310164966,-0.0668980283027575,0.0658385135955326,0.0894275068363034,0.0973094668683043 +1.132,0.0178779063498837,-0.0418492468330396,0.0131573886848469,-0.0669187481433773,0.0658435623545622,0.0894228887112208,0.0973273400485563 +1.134,0.0179117096362572,-0.0418338861271909,0.0131319910126255,-0.066958696394078,0.0658383470659661,0.0894268769549795,0.0973397299533067 +1.136,0.0179317952833331,-0.0418284873029378,0.0131199422962602,-0.0669794170060815,0.0658433994292679,0.0894222497248797,0.0973576176422658 +1.138,0.0179656177513044,-0.0418131164876935,0.0130945305567674,-0.0670193656455092,0.065838179769348,0.0894262263031416,0.0973700210182127 +1.14,0.0179857143911079,-0.0418077146832539,0.0130824754076947,-0.0670400870910805,0.0658432351167973,0.0894215901082731,0.0973879234970233 +1.142,0.018019556046557,-0.0417923339938289,0.0130570494452957,-0.0670800362752817,0.0658380104084123,0.0894255552393403,0.0974003405189078 +1.144,0.0180396636634187,-0.0417869295156469,0.0130449878290042,-0.0671007585970892,0.0658430682317126,0.0894209101650272,0.0974182580171828 +1.146,0.0180735245013211,-0.0417715391435931,0.0130195475562248,-0.0671407084068632,0.0658378379787002,0.0894248639706829,0.097430688834495 +1.148,0.0180936430957936,-0.0417661321986,0.0130074794541825,-0.0671614316278343,0.0658428979182171,0.0894202100446548,0.0974486215147016 +1.15,0.0181275231068173,-0.0417507322783679,0.0129820248514134,-0.06720138207751,0.0658376618299796,0.0894241525546134,0.0974610662426819 +1.152,0.0181476526939149,-0.0417453229669156,0.0129699502613456,-0.0672221062043189,0.0658427236872558,0.0894194897551633,0.0974790141936208 +1.154,0.018181551867816,-0.0417299135693282,0.0129444813687372,-0.0672620572582344,0.0658374816744228,0.089423420925889,0.0974914729077955 +1.156,0.0182016924724315,-0.0417245018901048,0.0129324003031431,-0.0672827822869689,0.0658425454037519,0.0894187491970757,0.097509436146426 +1.158,0.0182356107986155,-0.0417090830226482,0.0129069172073872,-0.0673227338794234,0.0658372975513616,0.0894226689387837,0.097521908881064 +1.16,0.0182554966723565,-0.0417022873258619,0.0128937562190822,-0.0673448202070229,0.0658389583517693,0.0894213411210714,0.0975359568482816 +1.162,0.0182853923577826,-0.0416896857506832,0.0128721873152133,-0.0673789691092,0.0658369966236618,0.0894220375427264,0.0975499034862011 +1.164,0.0183031892946686,-0.0416863067079755,0.0128626732157542,-0.0673960726059072,0.0658447856097556,0.0894151880683568,0.0975695923522492 +1.166,0.0183407558812664,-0.0416685400910925,0.012833954751735,-0.0674405240837351,0.0658374971622768,0.0894204895015496,0.0975812088455096 +1.168,0.018362552185959,-0.0416622581519993,0.0128205328432406,-0.0674632430302826,0.0658419442780029,0.0894164529714227,0.0975992497502899 +1.17,0.0183961301787132,-0.0416472941159594,0.012795573277168,-0.0675022253665408,0.0658372762740911,0.0894195766644529,0.0976123164128373 +1.172,0.0184160356269926,-0.0416423314529574,0.0127839191303863,-0.0675224543321676,0.0658429026875323,0.0894145976820478,0.0976309947431483 +1.174,0.0184511606471985,-0.0416261432298695,0.0127573523527844,-0.0675637337492006,0.0658368620743399,0.0894188523596582,0.0976432841758632 +1.176,0.0184718542334759,-0.0416205318418219,0.012744858307104,-0.0675851427409973,0.065841756698297,0.0894144326172812,0.0976615059346828 +1.178,0.0185058454191439,-0.0416050896118139,0.0127193201801383,-0.0676249984284209,0.0658364597611018,0.0894181337107223,0.0976741340054653 +1.18,0.0185260024446573,-0.0415998124430678,0.0127072996506467,-0.067645721813504,0.0658416887606217,0.0894134340091517,0.097692471525869 +1.182,0.0185603007467012,-0.0415840889373655,0.0126814164296718,-0.0676860873620825,0.0658361020770873,0.0894174169873193,0.0977048937623549 +1.184,0.0185806329200968,-0.0415786466969898,0.0126691992878645,-0.0677070836981432,0.0658411664672851,0.0894128674823899,0.0977230995786769 +1.186,0.0186146467909963,-0.0415631002828079,0.0126435758262861,-0.067747072983024,0.0658357723394308,0.089416717079641,0.0977355961549133 +1.188,0.01863485834366,-0.0415577282280355,0.012631470104863,-0.0677679034636131,0.0658409224461394,0.0894121148638646,0.0977538261177627 +1.19,0.0186689625121433,-0.0415421033409337,0.0126057596827082,-0.0678079914459542,0.065835462534271,0.0894160142876783,0.0977662749056484 +1.192,0.0186892337409575,-0.0415366814331061,0.0125936009901767,-0.0678288851806316,0.0658405805812709,0.0894114417093943,0.0977844791277916 +1.194,0.0187232868821201,-0.0415210946187006,0.0125679536616431,-0.0678688489845002,0.0658351811510301,0.0894152653726441,0.0977969584370929 +1.196,0.0187435438739001,-0.0415156843788703,0.0125558203318504,-0.0678896891948169,0.065840336120437,0.0894106504151583,0.0978151806029085 +1.198,0.0187776360646485,-0.0415000778933745,0.0125301546815586,-0.0679296424512221,0.0658349416743397,0.089414430951769,0.0978276659920543 +1.2,0.0187979209515882,-0.0414946530196881,0.0125180081964512,-0.0679504811060347,0.0658401088438343,0.0894097842798553,0.097845895817713 +1.202,0.018832017705761,-0.0414790572863713,0.0124923606088313,-0.0679903739921059,0.0658347512488974,0.0894134926066537,0.0978584074784667 +1.204,0.0188523118314905,-0.0414736346568148,0.0124802196530781,-0.0680111852083199,0.065839946316177,0.0894088000876178,0.0978766557225435 +1.206,0.0188864372679899,-0.041458034671795,0.0124545662549624,-0.0680510551549221,0.065834606213738,0.0894124550001943,0.0978891858927291 +1.208,0.018906751077152,-0.041452608956193,0.0124424196448063,-0.0680718579514971,0.0658398180168315,0.0894077297493303,0.0979074497072595 +1.21,0.0189408987116483,-0.0414370098756758,0.0124167639029481,-0.0681117038391122,0.0658344935686674,0.0894113386501911,0.0979200004303476 +1.212,0.0189612272975091,-0.0414315860704962,0.0124046143445741,-0.0681324986027139,0.065839719159764,0.0894065891367232,0.0979382823986348 +1.214,0.0189954033479861,-0.0414159817241969,0.0123789454809453,-0.0681723390732106,0.0658343952831164,0.0894101704154942,0.0979508489579514 +1.216,0.0190157480225409,-0.041410559266414,0.0123667889583029,-0.0681931355878197,0.0658396253979316,0.0894054096912665,0.0979691487207033 +1.218,0.0190499492663625,-0.0413949488161621,0.012341104458268,-0.0682329768509306,0.0658342928899187,0.0894089759439644,0.0979817293813812 +1.22,0.0190703069356029,-0.0413895293728333,0.0123289410872917,-0.0682537782235724,0.0658395217574553,0.0894042126357457,0.0980000480298892 +1.222,0.0191045319605437,-0.0413739097610716,0.0123032367724487,-0.0682936280861677,0.0658341710371285,0.089407775342357,0.0980126400827409 +1.224,0.0191249009776881,-0.0413684931276054,0.0122910655949945,-0.068314437880979,0.0658393933990739,0.0894030160088285,0.098030977793564 +1.226,0.0191591457233727,-0.041352863082673,0.0122653408782677,-0.0683542983813393,0.0658340195910429,0.08940658157812,0.0980435798432429 +1.228,0.0191795237972435,-0.0413474489979704,0.0122531622748145,-0.0683751172456151,0.0658392331887323,0.089401829141464,0.0980619367540241 +1.23,0.0192137851282147,-0.0413318070688505,0.0122274172760292,-0.0684149888613099,0.065833834366227,0.0894054006271047,0.0980745476289411 +1.232,0.0192341710290767,-0.0413263942899896,0.0122152314906345,-0.0684358167819629,0.0658390389529137,0.0894006556516917,0.0980929232374421 +1.234,0.0192684461136255,-0.0413107397396441,0.0121894678448291,-0.0684756974199114,0.0658336167449699,0.0894042325386043,0.0981055424533204 +1.236,0.0192888391848245,-0.0413053266978603,0.0121772754532801,-0.0684965332721901,0.0658388142159283,0.0893994934746639,0.0981239359542904 +1.238,0.019323126496496,-0.041289658968396,0.0121514951814495,-0.06853641998627,0.0658333725098202,0.0894030729088741,0.098136563373715 +1.24,0.0193435269266178,-0.0412842438070886,0.0121392966671226,-0.0685572623444423,0.0658385660643908,0.0893983369523809,0.0981549737050953 +1.242,0.019377825970073,-0.0412685627035523,0.0121135020388475,-0.0685971516333177,0.0658331102270146,0.0894019144859874,0.0981676095832026 +1.244,0.0193982344517048,-0.0412631436854339,0.0121012978791402,-0.0686179988474425,0.0658383037901536,0.0893971781242726,0.0981860357027211 +1.246,0.0194325457522488,-0.0412474492113479,0.0120754908975555,-0.0686578874684194,0.0658328395054807,0.0894007487363943,0.0981986805295488 +1.248,0.0194529633248893,-0.0412420249068878,0.0120632814472543,-0.0686787380063186,0.0658380369862929,0.0893960083784191,0.0982171215720278 +1.25,0.0194872880638819,-0.0412263172721954,0.0120374636771139,-0.068718623290213,0.0658325694115373,0.0893995672368241,0.0982297760046247 +1.252,0.0195077158470085,-0.0412208867515052,0.0120252491856094,-0.0687394758598666,0.0658377741662591,0.0893948196723757,0.098248231427192 +1.254,0.0195420555822554,-0.0412051662920876,0.0119994215836098,-0.0687793560086256,0.0658323072453615,0.0893983627737457,0.098260896175714 +1.256,0.0195624946116782,-0.041199729177915,0.0119872021701667,-0.0688002096991185,0.0658375216753042,0.0893936055298413,0.0982793658061905 +1.258,0.0195926753908421,-0.0411854313687783,0.0119640575251231,-0.0688361223211297,0.065831540935745,0.0893981936103291,0.0982896204712111 +1.26,0.0196107934187109,-0.0411815131221146,0.0119540483887463,-0.0688534351912269,0.0658387035991132,0.0893911137456599,0.0983087417389295 +1.262,0.0196479158704732,-0.0411642456445776,0.0119259458325977,-0.0688968381441597,0.065832312671189,0.0893956911848677,0.0983212799914795 +1.264,0.0196695788190089,-0.0411580817250594,0.0119127395112602,-0.0689188839989127,0.0658371766553918,0.0893908692958811,0.0983397135448067 +1.266,0.0197041143207251,-0.0411426341562509,0.0118870764423741,-0.0689585863678825,0.0658323226855839,0.089394026036884,0.0983531680950187 +1.268,0.0197245045659523,-0.0411373685914067,0.0118750561544509,-0.0689790273384729,0.0658378477415281,0.089388766959481,0.0983720293424947 +1.27,0.0197558696914662,-0.0411224769966295,0.0118509759346637,-0.0690162315266851,0.0658313677026322,0.0893937400282332,0.0983824035585103 +1.272,0.0197745371025987,-0.0411183069318573,0.0118405507350195,-0.0690341441798611,0.0658383160348258,0.0893867826331395,0.0984016775675577 +1.274,0.0198118622975015,-0.041101025485161,0.0118123465459972,-0.0690776280892177,0.0658319409350107,0.0893912578980939,0.0984144901866869 +1.276,0.0198335627209441,-0.0410949236500983,0.0117991597992749,-0.0690996509618274,0.0658368765475526,0.0893863244891734,0.0984331624133961 +1.278,0.0198684918476265,-0.0410792465221464,0.0117731400089176,-0.0691398465512716,0.0658317888734763,0.0893896362671808,0.0984466775772095 +1.28,0.0198890283835882,-0.0410739217275558,0.0117609949583201,-0.0691604752795351,0.0658372469956145,0.0893844019372652,0.0984656443787444 +1.282,0.0199204780556394,-0.0410589760713398,0.011736816453895,-0.0691978315694994,0.0658307016416219,0.0893894430552063,0.0984761066254024 +1.284,0.019939151724781,-0.0410548229965383,0.0117263829918552,-0.0692157702547584,0.0658376575521,0.0893824774742126,0.0984954810882687 +1.286,0.0199766143456595,-0.0410374244671532,0.0116980141302773,-0.0692594970867406,0.0658311555872035,0.0893870986445009,0.0985083233443507 +1.288,0.0199983641650462,-0.041031290008686,0.0116847694886432,-0.0692816161156351,0.0658360502135107,0.0893822195828043,0.0985270515375979 +1.29,0.0200333517460437,-0.041015548033284,0.0116586660019419,-0.0693219292236301,0.0658308937505411,0.0893856238134635,0.098540607138238 +1.292,0.020053909080252,-0.0410102075335281,0.0116464957283302,-0.069342604199429,0.0658363377691263,0.0893804233992778,0.098559630144011 +1.294,0.020085424095178,-0.040995189363959,0.0116222330707421,-0.0693800649119815,0.0658297243707019,0.0893855394614162,0.0985701145427121 +1.296,0.0201041351374697,-0.0409910068617843,0.0116117643403799,-0.0693980528287295,0.0658366681764836,0.0893785920922971,0.0985895296939129 +1.298,0.0201416470546974,-0.0409735551571273,0.0115833426350259,-0.0694418179568274,0.0658301409304942,0.0893832287513138,0.0986024145202335 +1.3,0.0201634271604263,-0.040967396273256,0.0115700781544788,-0.0694639486889526,0.0658350477552184,0.0893783295336616,0.098621190417191 +1.302,0.0201984743764029,-0.0409516055036387,0.0115439299079242,-0.06950427900765,0.0658298874215737,0.089381705324823,0.098634790754038 +1.304,0.0202190708655639,-0.0409462385580354,0.0115317404233208,-0.0695249565188129,0.0658353584008117,0.0893764577306545,0.0986538600461181 +1.306,0.0202548512025987,-0.0409297681209587,0.0115047534754608,-0.0695664133190425,0.0658293317900403,0.089380494065675,0.0986669056513338 +1.308,0.0202755237282948,-0.0409226797449292,0.0114910752855169,-0.0695890053378453,0.0658309324299009,0.0893789782392132,0.0986816893175308 +1.31,0.0203063448458,-0.0409095328334597,0.0114687713326171,-0.069623580076481,0.0658286522916944,0.0893793263751202,0.0986961576869955 +1.312,0.0203245884623629,-0.040906163376387,0.0114590839589415,-0.0696409500321826,0.0658367883705033,0.0893722958394864,0.0987167931188653 +1.314,0.0203632214748279,-0.040887662052471,0.0114294652081495,-0.0696858853252629,0.0658289918071109,0.0893772862223168,0.0987288164290854 +1.316,0.0203847700592042,-0.0408801530638952,0.0114151312372729,-0.0697094593179722,0.0658304545747579,0.089376014837764,0.0987437329859939 +1.318,0.020411342309539,-0.0408687778384432,0.0113958223964801,-0.0697397708568608,0.0658281996189352,0.089377199515767,0.0987563328010159 +1.32,0.0204259229698475,-0.040867778328688,0.0113895932723381,-0.0697515005283889,0.0658391652671544,0.0893666236798948,0.098777968100191 +1.322,0.0204692622373698,-0.0408466526833219,0.0113560732019121,-0.0698024270246359,0.0658294145935403,0.0893737362377243,0.0987896705663243 +1.324,0.0204933257005211,-0.0408391249553563,0.0113408968037896,-0.0698271039550451,0.0658332582002013,0.0893694608936771,0.0988082581347595 +1.326,0.0205277368883895,-0.0408241798458534,0.0113157148470929,-0.069865953459288,0.0658292160434864,0.0893717790923868,0.0988229321182173 +1.328,0.0205478156029755,-0.0408194345338678,0.0113042456024887,-0.069885598982969,0.0658354665561223,0.0893657980417129,0.0988427890580864 +1.33,0.0205853085694845,-0.0408019715322638,0.0112758133571155,-0.0699289177231886,0.0658285032362826,0.0893703401316234,0.0988557412172803 +1.332,0.0206065297379093,-0.0407946615853954,0.0112617351633791,-0.0699520351071242,0.0658299164381034,0.08936884850425,0.0988707370249424 +1.334,0.0206375417871387,-0.0407815020785258,0.0112393368762943,-0.0699866367445069,0.0658276380076745,0.0893689936754428,0.0988854662229939 +1.336,0.0206557778521935,-0.0407782885469971,0.0112297412124744,-0.0700039207917825,0.0658359556020737,0.0893618141328012,0.0989064652997438 +1.338,0.0206948977250579,-0.0407594854919145,0.0111996742591484,-0.0700493920603171,0.0658278317555175,0.0893669283868439,0.0989185276195809 +1.34,0.020717450128993,-0.0407529647220846,0.0111857675819667,-0.0700726495644826,0.0658323441946367,0.0893627368070917,0.0989374796508955 +1.342,0.0207519023455166,-0.0407374314635947,0.0111600937252704,-0.0701119384198687,0.0658273301228098,0.0893654844188961,0.0989511324423888 +1.344,0.02077233641735,-0.0407307163922681,0.0111467827642758,-0.0701341180500979,0.0658294116557804,0.089363766846648,0.0989664847414856 +1.346,0.0208039703613689,-0.0407170311524674,0.0111237374745771,-0.0701695977664184,0.0658266095122607,0.089364408537245,0.0989808842323019 +1.348,0.0208227121591014,-0.0407134106242611,0.0111136425003449,-0.0701875738031776,0.0658345259392302,0.0893576071020188,0.0990016389926417 +1.35,0.020861325299698,-0.0406949499931566,0.0110840769583246,-0.0702322513617903,0.0658267815680673,0.0893623891818865,0.0990138978923739 +1.352,0.0208837069744559,-0.0406885501602939,0.0110703611407094,-0.0702552205263296,0.065831459855077,0.0893580825979079,0.0990329508267381 +1.354,0.0209182596974706,-0.0406729876035083,0.0110445940688786,-0.0702946410437044,0.065826452278959,0.0893609175197378,0.0990464695810601 +1.356,0.0209388354969662,-0.0406678779526032,0.0110324605736463,-0.0703154200929241,0.0658322176513532,0.0893559161293675,0.0990657313271758 +1.358,0.0209745811463619,-0.0406515574800231,0.0110054646911017,-0.0703567165207849,0.0658261402649536,0.0893598684849554,0.0990785430754492 +1.36,0.0209958043274658,-0.0406460968270471,0.0109926199115173,-0.0703784999005515,0.0658311672702935,0.0893555331635188,0.0990973842172777 +1.362,0.0210307353341354,-0.0406305440655737,0.0109663608950783,-0.0704187742226651,0.0658254390358183,0.0893592398412711,0.0991104840699388 +1.364,0.021051563824924,-0.0406255706036407,0.0109538606639502,-0.0704400718093115,0.0658304763878018,0.0893548495687424,0.0991295286754694 +1.366,0.0210829498823691,-0.0406111195285337,0.010929711795302,-0.0704770179578739,0.065823381589064,0.0893598850332961,0.0991403517872726 +1.368,0.0211018015934479,-0.0406074574653964,0.0109189946606087,-0.0704952709834207,0.0658297284263015,0.0893533314974302,0.0991598210772495 +1.37,0.0211391321343292,-0.0405909171944114,0.0108907093419992,-0.0705386048675042,0.0658228369899702,0.089357973624829,0.0991730211380343 +1.372,0.0211610229271742,-0.040585607814062,0.0108772906323596,-0.0705608157898432,0.0658271106388359,0.089353347581377,0.0991921057759627 +1.374,0.0211964897601307,-0.0405706108690896,0.0108507767206708,-0.0706013756156212,0.0658210169953225,0.0893570117953866,0.0992061483918112 +1.376,0.0212173761607064,-0.0405646180407325,0.0108371096311442,-0.0706237253351461,0.0658218829071763,0.0893553955029082,0.0992221019344494 +1.378,0.0212493954122557,-0.0405517402028539,0.0108136611248285,-0.070659377712053,0.0658178676210444,0.0893561586622255,0.0992368909180052 +1.38,0.0212684609160551,-0.040549091145383,0.0108032488470124,-0.0706776731081965,0.0658246884185603,0.0893496121959863,0.0992581340311074 +1.382,0.0213073389229627,-0.0405316886988618,0.0107734518911843,-0.0707223124032709,0.0658158322183133,0.0893543653136878,0.0992709625080216 +1.384,0.0213299307776686,-0.0405264443946792,0.0107595676365886,-0.0707453804031217,0.0658194454851315,0.0893501982087488,0.0992907153406534 +1.386,0.0213651625214152,-0.0405115939025909,0.0107331897082148,-0.0707851802055497,0.0658128650497385,0.0893530916289298,0.0993048498425719 +1.388,0.0213859967668586,-0.040507532200592,0.0107209522683647,-0.0708059912973763,0.0658175166052,0.0893480707095368,0.0993251750159212 +1.39,0.021422502779211,-0.0404915362140176,0.0106932237336995,-0.0708476100288192,0.0658097378462549,0.0893518200406367,0.0993385916090234 +1.392,0.0214440078308987,-0.040486765559492,0.0106802593541334,-0.0708693629854584,0.0658137803824531,0.0893471766310116,0.0993584167229658 +1.394,0.0214793470714666,-0.0404714098707833,0.010653615509998,-0.0709095408509945,0.0658069170938149,0.0893503254063137,0.0993721055292262 +1.396,0.0215003169054442,-0.0404667908495424,0.010641128114929,-0.070930609224429,0.0658114463768736,0.0893453529967027,0.0993919005887305 +1.398,0.0215358251528234,-0.0404510900496665,0.0106143091102684,-0.0709710921920988,0.0658046207586925,0.0893486602211201,0.0994053217816753 +1.4,0.0215569279403279,-0.0404461266529834,0.010601668926992,-0.0709923669628577,0.0658092176686026,0.0893437864889865,0.0994248210709937 +1.402,0.0215920903041747,-0.0404304878758612,0.0105752114032168,-0.071032423113605,0.0658028992072884,0.0893469484997271,0.0994382103946822 +1.404,0.0216130612491573,-0.0404254010038431,0.0105626942638091,-0.0710535459269782,0.0658078032764956,0.0893420495563877,0.099457555668731 +1.406,0.0216482558258061,-0.0404095731740243,0.0105362396212892,-0.0710936550854825,0.0658017067859817,0.0893452778994213,0.0994707923511472 +1.408,0.0216689864264279,-0.0404027917034589,0.0105227021014014,-0.0711158750981104,0.065803210954467,0.0893435095022591,0.099486225501244 +1.41,0.0217000324707984,-0.0403896451403942,0.0105002408326687,-0.0711503153803878,0.0658007714640319,0.0893436580485386,0.099500761004586 +1.412,0.0217187332534864,-0.0403860546110198,0.0104901209719937,-0.0711681095865988,0.0658087339740302,0.0893367183640929,0.0995211927064163 +1.414,0.0217571326469525,-0.0403679664651598,0.0104609436483433,-0.0712121652485855,0.065801495606481,0.0893412008380779,0.0995335356893367 +1.416,0.0217796231581345,-0.0403615900699611,0.0104471742547834,-0.0712351349738091,0.065806350239902,0.0893369801385368,0.0995524305687175 +1.418,0.0218144617889729,-0.0403459859789841,0.0104213417550653,-0.0712744372171122,0.0658014281813192,0.0893397218954831,0.0995660489848856 +1.42,0.0218352053487368,-0.0403408348726387,0.0104092103964462,-0.0712952045088773,0.0658073312684929,0.089334776737539,0.0995855936001997 +1.422,0.0218715405104931,-0.0403240048396088,0.0103818039210154,-0.0713366026830633,0.0658009590091115,0.0893385290658519,0.0995985077995458 +1.424,0.0218930107937289,-0.0403182491335713,0.0103688973491228,-0.0713583942000762,0.0658060996002464,0.089334022687557,0.0996177113061692 +1.426,0.0219282400069806,-0.0403021102069221,0.0103424514984661,-0.07139843260023,0.065800353013505,0.0893371981058852,0.0996309887513728 +1.428,0.0219491593638083,-0.0402966968476029,0.0103300272421918,-0.0714195061525348,0.0658057891453912,0.0893323124430721,0.0996503762877235 +1.43,0.0219846177997871,-0.0402802952059541,0.0103032848387214,-0.0714599117904977,0.0657997425066392,0.0893356207291277,0.0996635054497574 +1.432,0.0220053633998332,-0.0402732482697856,0.0102897307461704,-0.0714821467415766,0.0658014448070106,0.0893337916862105,0.0996790581085415 +1.434,0.0220364399772973,-0.0402597962439481,0.0102671655359298,-0.0715165769319893,0.0657990049418221,0.0893338112249088,0.099693656100569 +1.436,0.0220550848726739,-0.0402561485338468,0.0102571254284384,-0.0715342409232352,0.0658071251640352,0.0893266592371912,0.099714373232978 +1.438,0.0220935515885095,-0.040237781208137,0.0102277805313947,-0.0715782819792892,0.0657997051597187,0.0893309663612588,0.0997268052922984 +1.44,0.0221160416852454,-0.0402313608967959,0.0102140316237832,-0.0716011402586175,0.0658045727360924,0.0893265008177096,0.0997459863581696 +1.442,0.0221509226861262,-0.0402156083193777,0.0101881137435164,-0.0716403229156417,0.0657994997572038,0.0893289692994206,0.0997597718932649 +1.444,0.0221716802397163,-0.0402104691114896,0.0101760220310312,-0.0716609543958073,0.0658054114998933,0.0893237439692121,0.0997796181691503 +1.446,0.0222081090024159,-0.0401935174183955,0.0101485257620337,-0.0717022263161523,0.0657988905969266,0.0893271884795359,0.0997927000587403 +1.448,0.0222296447096313,-0.0401877620278876,0.0101356292388877,-0.0717239109285525,0.0658040297386008,0.0893224046131861,0.0998121651379928 +1.45,0.022264986117406,-0.0401715491328393,0.0101091317578957,-0.0717637969480005,0.0657982090753952,0.0893252425396397,0.0998256191847402 +1.452,0.0222859932645703,-0.0401661316685111,0.01009671302378,-0.0717847765880541,0.0658036764621708,0.0893200895983943,0.0998452282035598 +1.454,0.0223215989875385,-0.040149666234725,0.0100699259084331,-0.0718250450007381,0.0657976120093504,0.0893230646643574,0.0998585179442522 +1.456,0.0223424568823544,-0.0401425946784947,0.0100563669122981,-0.0718471994356186,0.0657993637044298,0.0893209836141261,0.0998742388501385 +1.458,0.0223736791815556,-0.0401290911347518,0.0100337722872049,-0.0718815208505612,0.0657969661294325,0.0893207100819065,0.0998889710441393 +1.46,0.0223924313318318,-0.0401254109127614,0.0100237180844263,-0.0718991535436124,0.0658051784411887,0.0893133734603518,0.0999098246648907 +1.462,0.0224310790125032,-0.0401069767047524,0.00999432951803794,-0.0719431007754208,0.0657978152508449,0.089317406078538,0.0999223756703392 +1.464,0.0224536905716512,-0.0401005086823367,0.00998055526008142,-0.0719659427182524,0.0658027763778929,0.0893127861424717,0.0999416686795841 +1.466,0.022488739875287,-0.0400846812728121,0.00995458723913276,-0.0720050841848935,0.0657977617398717,0.0893150597077817,0.0999555469459186 +1.468,0.0225096231117689,-0.0400777877630355,0.0099412071175092,-0.0720270980952455,0.06579995027657,0.0893129165319686,0.0999716131621 +1.47,0.022541810286298,-0.0400637343111549,0.00991783417368818,-0.0720624349167532,0.0657970935943389,0.0893130229752672,0.0999862257748989 +1.472,0.0225610693710899,-0.0400598495853515,0.00990740759854225,-0.0720807038815085,0.0658051331734998,0.0893060383985754,0.100007194694256 +1.474,0.0225999234945773,-0.0400413878477897,0.00987789983569809,-0.0721247371918146,0.0657976892055514,0.0893100616200658,0.10001989894526 +1.476,0.0226225901550607,-0.0400350110237632,0.00986412989184049,-0.0721476358744862,0.0658026575545224,0.0893054906332326,0.100039438103053 +1.478,0.0226579900111222,-0.0400189827120247,0.00983781871086956,-0.0721871983361889,0.0657973019648231,0.0893079239452693,0.100053349684609 +1.48,0.0226789768674177,-0.0400138014701206,0.00982559909358921,-0.0722080181901173,0.0658031755688421,0.089302668461476,0.100073464675257 +1.482,0.0227156349569361,-0.0399967176291628,0.00979792422614219,-0.0722493921924055,0.0657964939056717,0.0893060148521123,0.100086712502933 +1.484,0.0227372656710276,-0.0399909741894783,0.00978499337416154,-0.0722711311739355,0.0658016383035591,0.0893011715301877,0.100106437337907 +1.486,0.0227728280646707,-0.0399745880133458,0.00975828773773289,-0.0723111855758371,0.0657956183470305,0.0893039985372109,0.100119999692638 +1.488,0.0227939424956996,-0.0399691415078034,0.00974580404461411,-0.0723322696296677,0.0658010613616611,0.0892988462373105,0.100139813271846 +1.49,0.022829688422026,-0.0399525323317647,0.00971887241666901,-0.072372628979453,0.065794849865822,0.0893018193161263,0.100153200268178 +1.492,0.0228509347619925,-0.0399469133786438,0.00970623312458856,-0.0723938891265426,0.0658001817933795,0.089296726820427,0.10017285705351 +1.494,0.022886370937412,-0.0399304863855424,0.00967960478903558,-0.0724338334624402,0.0657942511410878,0.0892995224593101,0.10018630514904 +1.496,0.0229075025970091,-0.0399249009547181,0.0096670762018501,-0.0724549232013797,0.0657997183780982,0.0892943545872418,0.10020593333559 +1.498,0.0229429990663746,-0.0399084122255954,0.00964041866325328,-0.0724948973968553,0.0657938276191153,0.0892971535435542,0.100219323685217 +1.5,0.0229641914635802,-0.0399027518953957,0.00962784383959946,-0.0725160371511594,0.0657993166476238,0.0892920078650436,0.100238880852258 +1.502,0.0229996451430782,-0.0398863009989246,0.00960126947610916,-0.0725558825351794,0.0657935553275063,0.0892947290928928,0.100252282739437 +1.504,0.0230208350672991,-0.0398806324016475,0.00958871553121569,-0.0725769829027138,0.0657991134690025,0.0892895599036821,0.100271822353087 +1.506,0.0230563394071052,-0.0398641627565645,0.00956213151992076,-0.0726168201448766,0.0657933939664551,0.0892922458963617,0.100285217816487 +1.508,0.0230775633291688,-0.0398584742742745,0.00954956260168299,-0.0726379292079601,0.0657989772620515,0.0892870652320878,0.100304748882902 +1.51,0.023113087332279,-0.039842014185138,0.00952299040205765,-0.0726777255122584,0.0657932953840302,0.0892896982405599,0.100318163342976 +1.512,0.0231343229174022,-0.0398363332503731,0.00951042529664817,-0.0726988179021907,0.0657988997985918,0.0892844904999536,0.100337713060988 +1.514,0.023169883815138,-0.0398198699074501,0.00948383724725935,-0.0727386089673735,0.065793211774265,0.0892870883657613,0.100351145979301 +1.516,0.0231911360903531,-0.0398141989861956,0.00947126746782567,-0.0727596978608837,0.0657988133050705,0.0892818597351252,0.100370724022272 +1.518,0.0232227646603788,-0.0397989750949191,0.00944724660332322,-0.0727957176461765,0.0657923730994029,0.0892855367344641,0.100381988613219 +1.52,0.0232418082400363,-0.0397945165042228,0.00943663942780114,-0.0728134825887957,0.0657996487012769,0.0892779186113989,0.100401792138647 +1.522,0.0232796232961228,-0.0397769332260318,0.00940830992024867,-0.0728561652761406,0.0657936609969248,0.0892813122270979,0.100415386570099 +1.524,0.0233018366111781,-0.039770587539833,0.00939491011719822,-0.0728780295185845,0.0657990272729819,0.0892757111424354,0.100434688744376 +1.526,0.0233377473387236,-0.039754460107715,0.00936840971312271,-0.0729180324005493,0.0657940714809677,0.0892782704079796,0.100449026747403 +1.528,0.0233589636518473,-0.0397488984159245,0.00935594841873931,-0.0729387241102943,0.0657997818362934,0.089272542580394,0.100468739057194 +1.53,0.0233958332340531,-0.0397320177062691,0.00932841084618326,-0.0729800594606142,0.0657936546918382,0.0892758829897597,0.100482624071048 +1.532,0.0234175039403788,-0.039726118383272,0.00931545029328315,-0.0730014381225573,0.0657987169183458,0.089270551435717,0.100502136823449 +1.534,0.0234535984020006,-0.0397097146254221,0.00928854150893134,-0.0730418885074175,0.0657928701639303,0.0892735798934814,0.100516229511452 +1.536,0.0234748797636372,-0.0397040670523471,0.00927589999098431,-0.0730628170059354,0.0657980577013476,0.0892680464003451,0.100535858654699 +1.538,0.0235110110326637,-0.0396875350876688,0.00924886089855691,-0.0731034242302646,0.0657920011515882,0.0892711554235729,0.100549833853382 +1.54,0.0235323330576257,-0.0396818039100441,0.00923613752110233,-0.0731244400657192,0.0657970820558811,0.0892656373227971,0.100569390094725 +1.542,0.023568169334394,-0.0396654107126086,0.00920933715608156,-0.0731647181526515,0.0657911892255859,0.0892686134789056,0.100583400294366 +1.544,0.0235893793558259,-0.0396597099719716,0.00919670441094668,-0.073185600522079,0.0657963566568005,0.0892630367723406,0.100602943201266 +1.546,0.0236251990794216,-0.0396432757302123,0.00916991227368376,-0.0732258623352224,0.065790496850734,0.0892660143593124,0.100616899420818 +1.548,0.0236464359399495,-0.0396375102446016,0.00915725310121271,-0.0732467775253179,0.0657956898649233,0.0892604650613227,0.100636379534852 +1.55,0.0236821967179013,-0.0396210923564208,0.00913053787084459,-0.0732869295717312,0.0657899457066973,0.0892633972255611,0.100650324467669 +1.552,0.0237034313110782,-0.0396152962384713,0.00911789146074959,-0.0733078269185779,0.0657952083390258,0.0892578526961651,0.100669767832838 +1.554,0.0237392161329849,-0.0395988519308815,0.00909118422524412,-0.0733479588801538,0.0657895326096245,0.0892607662053503,0.100683690305307 +1.556,0.0237604798311876,-0.0395930150419397,0.00907852402783985,-0.0733688714343355,0.0657948415241202,0.0892552299603764,0.100703101732172 +1.558,0.0237962785551593,-0.0395765647000859,0.00905183579254523,-0.0734089646989751,0.0657892356925206,0.0892581056776459,0.100717024651031 +1.56,0.0238175574867494,-0.0395707098579467,0.00903917530510853,-0.073429870213652,0.0657945892797078,0.0892525560326058,0.100736427603524 +1.562,0.02385338753579,-0.039554248302321,0.00901248419131587,-0.0734699507262332,0.0657890200046928,0.0892553984632656,0.10075035832482 +1.564,0.0238746842363934,-0.0395483841153287,0.00899981913055974,-0.0734908518998459,0.0657943977134443,0.0892498281349741,0.100769767318875 +1.566,0.0239105399854959,-0.0395319196376602,0.00897312366514319,-0.0735309191968179,0.0657888451339068,0.0892526358411239,0.100783718069425 +1.568,0.0239318481129774,-0.0395260584729696,0.00896045798772491,-0.0735518095864851,0.0657942329498653,0.0892470387471033,0.10080314725231 +1.57,0.0239677316670369,-0.0395095908123779,0.00893374951719701,-0.0735918742942273,0.0657886733642559,0.089249819107646,0.100817122769312 +1.572,0.0239890508319267,-0.039503737352275,0.00892108162467981,-0.0736127566852417,0.0657940562783342,0.089244197213027,0.100836579230048 +1.574,0.0240249589053624,-0.0394872680782386,0.00889435818164014,-0.0736528219020039,0.0657884759741225,0.0892469565241161,0.100850582526792 +1.576,0.0240462874562735,-0.0394814247769749,0.00888168812005641,-0.0736736979886669,0.0657938454478843,0.0892413136972187,0.100870069409458 +1.578,0.0240822186789323,-0.0394649524436584,0.00885494760205721,-0.0737137681706817,0.0657882362742723,0.0892440592916618,0.10088409963762 +1.58,0.0241035567702354,-0.0394591178043118,0.0088422740734069,-0.0737346418959522,0.0657935880445752,0.0892384012044098,0.100903615763119 +1.582,0.02413950842219,-0.0394426410091102,0.00881551726560657,-0.0737747183389858,0.0657879493839199,0.0892411384686086,0.100917670582804 +1.584,0.0241608559186681,-0.0394368119955444,0.00880283960785749,-0.0737955927305939,0.0657932841066241,0.0892354702510015,0.100937212514393 +1.586,0.0241968259920918,-0.0394203284938154,0.00877606783738256,-0.0738356762124137,0.0657876196969402,0.0892382032501767,0.100951288364444 +1.588,0.0242181831556662,-0.0394145009641164,0.00876338529938864,-0.0738565540453915,0.0657929408684039,0.0892325292369744,0.100970851412264 +1.59,0.0242541697708118,-0.0393980086786104,0.00873660061318603,-0.0738966441464639,0.0657872572973549,0.0892352602906714,0.10098494471843 +1.592,0.0242755367388575,-0.0393921786208749,0.00872391281255104,-0.0739175271795171,0.0657925700281569,0.0892295834613367,0.101004524261967 +1.594,0.0243115387596194,-0.0393756756093719,0.00869711701974064,-0.0739576232569714,0.0657868744126143,0.0892323136153695,0.101018631904493 +1.596,0.0243329157306853,-0.0393698396316951,0.00868442371818426,-0.0739785124961242,0.0657921839043973,0.0892266356448533,0.101038224117528 +1.598,0.0243689325790705,-0.0393533244642949,0.00865761828669072,-0.074018613668278,0.0657864826045708,0.0892293648100114,0.101052343916524 +1.6,0.0243903196919552,-0.0393474802436963,0.00864491946774236,-0.0740395093031023,0.0657917932885362,0.0892236860878674,0.101071946256285 +1.602,0.0244263513762579,-0.0393309520396261,0.00861810530630176,-0.0740796147318197,0.0657860909946933,0.0892264133462229,0.101086077079887 +1.604,0.0244477487663644,-0.0393250983812136,0.00860540108460102,-0.0741005163492477,0.065791405992671,0.0892207331938931,0.101105688371238 +1.606,0.0244837956844841,-0.0393085568658866,0.00857857863301993,-0.0741406252215764,0.0657857055084196,0.0892234570001933,0.101119830103242 +1.608,0.0245052034684464,-0.0393026936102293,0.00856586923690492,-0.0741615319534108,0.0657910265483454,0.0892177739225046,0.101139450393991 +1.61,0.0245412662815491,-0.0392861390200785,0.00853903855737485,-0.0742016435309616,0.0657853289339597,0.0892204923475722,0.101153603720788 +1.612,0.0245626845886663,-0.0392802667819543,0.00852632426747015,-0.0742225542724129,0.065790656512942,0.0892148043544813,0.101173233956801 +1.614,0.0245987640722403,-0.0392636997350398,0.0084994851995734,-0.0742626678821773,0.0657849615110519,0.089217515304937,0.101187400091596 +1.616,0.0246201930535795,-0.0392578195979022,0.00848676630836846,-0.0742835814763676,0.0657902952300652,0.0892118202301108,0.101207041735348 +1.618,0.0246562899994824,-0.0392412409180351,0.00845991858919332,-0.0743236965387329,0.0657846017664162,0.0892145216698997,0.101221222118372 +1.62,0.0246777298383411,-0.0392353541285329,0.00844719535749831,-0.0743446119444073,0.065789940702731,0.0892088174637295,0.101240876780402 +1.622,0.0247138449769922,-0.0392187646789202,0.00842033871719888,-0.0743847279989185,0.0657842473642354,0.0892115076047042,0.101255072817731 +1.624,0.0247352958815753,-0.0392128724004899,0.00840761134720015,-0.0744056444052084,0.0657895904120911,0.0892057925617597,0.10127474196325 +1.626,0.0247714298345756,-0.0391962729414527,0.00838074556037896,-0.0744457611460423,0.0657838958150991,0.0892084700148778,0.101288954829916 +1.628,0.0247928920214933,-0.0391903760862088,0.00836801418001377,-0.0744666780373419,0.0657892419404439,0.0892027429215131,0.101308639585424 +1.63,0.0248290452712611,-0.0391737671787234,0.00834113908578392,-0.0745067953376482,0.0657835449646636,0.0892054067909614,0.101322870109407 +1.632,0.0248505189406268,-0.0391678663252155,0.00832840374777119,-0.0745277125054889,0.0657888933597035,0.0891996669862634,0.101342571174272 +1.634,0.0248866918167,-0.0391512482829677,0.00830151924513547,-0.0745678304264832,0.0657831932494847,0.0892023169018113,0.101356819797658 +1.636,0.0249081771271898,-0.0391453436679114,0.00828877993630818,-0.0745887479395906,0.0657885433922381,0.089196564260291,0.10137653744535 +1.638,0.0249443698047217,-0.039128716556051,0.00826188596819843,-0.0746288667169925,0.0657828397542078,0.08919920034783,0.101390804250225 +1.64,0.0249658668537537,-0.0391228081213934,0.00824914262645672,-0.074649784860897,0.0657881913954749,0.0891934351992736,0.101410538394772 +1.642,0.0250020793636458,-0.0391061717917923,0.00822223916122566,-0.0746899048701678,0.065782484129373,0.0891960579986842,0.101424823174126 +1.644,0.0250235881774386,-0.0391002592642586,0.00820949169573486,-0.0747108240708939,0.0657878372345063,0.0891902810062718,0.101444573473581 +1.646,0.0250598204262434,-0.0390836134148454,0.00818257871309644,-0.074750945775461,0.0657821264348884,0.0891928913510787,0.101458875826513 +1.648,0.0250813409611934,-0.0390776963970622,0.00816982702445652,-0.0747718665199909,0.0657874811072854,0.0891871033698583,0.101478641797683 +1.65,0.0251175927591714,-0.039061040641582,0.00814290450856336,-0.0748119904107758,0.0657817669658574,0.0891897022472534,0.101492961229722 +1.652,0.0251391249138022,-0.03905511869788,0.0081301485061151,-0.0748329131751226,0.0657871233730955,0.0891839041837289,0.101512742353892 +1.654,0.0251753960083929,-0.0390384526341148,0.00810321644573161,-0.0748730397105422,0.0657814061010578,0.0891864925942727,0.101527078367471 +1.656,0.0251969396429701,-0.0390325253598432,0.00809045606032163,-0.0748939649028961,0.0657867644169423,0.0891806852840598,0.101546874173994 +1.658,0.0252332297544412,-0.0390158486269866,0.00806351445380531,-0.0749340944581397,0.0657810441957071,0.0891832641185998,0.1015612263391 +1.66,0.025254784714348,-0.0390099156957372,0.00805074964522511,-0.0749550223812964,0.0657864045637196,0.0891774482340609,0.101581036460696 +1.662,0.0252910935699738,-0.0389932280151618,0.00802379850723683,-0.0749951552134492,0.0657806815235913,0.0891800181812417,0.101595404460875 +1.664,0.0253126597087103,-0.0389872892031162,0.00801102926644943,-0.0750160860474903,0.0657860440410802,0.0891741941753349,0.101615228660339 +1.666,0.02534898707205,-0.0389705904002366,0.00798406863342103,-0.0750562222800426,0.0657803182616768,0.0891767556675083,0.101629612313662 +1.668,0.0253705642703307,-0.0389646455903224,0.00797129498032409,-0.0750771560835915,0.0657856829801688,0.0891709237546071,0.101649450485856 +1.67,0.0254069099628226,-0.0389479355983224,0.00794432491260331,-0.0751172957105084,0.0657799545038564,0.0891734769539049,0.101663849743787 +1.672,0.0254284981413666,-0.0389419847689288,0.00793154689049436,-0.0751382324369583,0.0657853214391975,0.0891676371237031,0.101683701899174 +1.674,0.025464862054533,-0.0389252636174203,0.00790456747031072,-0.0751783753435146,0.0657795902890045,0.0891701819444914,0.101698116828464 +1.676,0.0254864611794747,-0.0389193068212245,0.00789178513841318,-0.0751993148674508,0.065784959435228,0.0891643340016455,0.101717983065253 +1.678,0.0255228432773103,-0.0389025746142791,0.00786479646396913,-0.0752394608628624,0.0657792256306477,0.0891668701612434,0.101732413818894 +1.68,0.0255444533584786,-0.0388966119525026,0.00785200988933084,-0.0752604030115625,0.0657845969728352,0.0891610137814632,0.101752294290428 +1.682,0.0255808536708495,-0.0388798688410252,0.00782501206625252,-0.0753005518673477,0.0657788605397296,0.0891635408684017,0.10176674107372 +1.684,0.0256024747542104,-0.0388739004376079,0.00781222131616587,-0.0753214964525507,0.0657842340630806,0.0891576756612014,0.101786635956563 +1.686,0.0256388933631664,-0.0388571465907557,0.00778521444800782,-0.0753616479405328,0.0657784950366233,0.0891601932095096,0.101801098993559 +1.688,0.0256605255193993,-0.0388511725697152,0.00777241958379532,-0.0753825947865027,0.0657838707308076,0.0891543187786356,0.101821008460183 +1.69,0.0256969625409993,-0.038834408149264,0.00774540376334495,-0.0754227487112641,0.0657781291525509,0.0891568263375453,0.101835487964582 +1.692,0.0257186058524341,-0.0388284286172564,0.00773260483603418,-0.075443697676335,0.0657835070119004,0.0891509423318885,0.101855412162906 +1.694,0.0257550614169594,-0.0388116537576595,0.00770558013883255,-0.0754838538984874,0.0657777629232924,0.089153439522579,0.101869908316037 +1.696,0.0257767159649849,-0.0388056687925968,0.00769277718690291,-0.0755048048885817,0.0657831429442492,0.0891475456727832,0.101889847356675 +1.698,0.0258131901982681,-0.0387888835882293,0.00766574366785854,-0.0755449633370369,0.0657773963792948,0.0891500322267833,0.101904360293817 +1.7,0.0258348560528846,-0.0387828932338784,0.00765293671696332,-0.075565916310872,0.0657827785568068,0.0891441283653413,0.101924314244726 +1.702,0.0258713490609775,-0.0387660977337323,0.00762589441027849,-0.0756060769841383,0.0657770295361676,0.0891466041425029,0.10193884404974 +1.704,0.0258930262736011,-0.0387601019995472,0.00761308347461435,-0.0756270319509426,0.0657824138605164,0.0891406902076014,0.101958812937179 +1.706,0.0259295381322536,-0.0387432962086695,0.00758603239668451,-0.0756671949089697,0.0657766623885532,0.0891431551945698,0.101973359644472 +1.708,0.0259512267322076,-0.0387372950737026,0.00757321748155114,-0.0756881519202758,0.0657820488436031,0.0891372312199346,0.101993343458725 +1.71,0.0259877574818005,-0.0387204789599378,0.00754615763603877,-0.0757283172694587,0.0657762949088774,0.0891396855124865,0.102007907060893 +1.712,0.0260094574763523,-0.0387144723794881,0.00753333874105847,-0.075749276407018,0.0657816834721258,0.0891337516068653,0.102027905765043 +1.714,0.0260460071221023,-0.038697645883692,0.00750627012511704,-0.07578944428147,0.0657759270509864,0.0891361953810523,0.10204248622417 +1.716,0.0260677184994308,-0.0386916337973611,0.00749344724760834,-0.0758104056434612,0.0657813176952685,0.0891302517016806,0.10206249976427 +1.718,0.0261042870160302,-0.038674796845164,0.00746636985819343,-0.0758505761856673,0.065775558757536,0.0891326851793715,0.102077097024863 +1.72,0.0261260097502132,-0.0386687791851183,0.00745354299625753,-0.0758715398732099,0.0657809514538341,0.0891267319037934,0.102097125340049 +1.722,0.0261625970896086,-0.0386519316984805,0.00742645683560531,-0.0759117132167488,0.0657751899692914,0.0891291553180237,0.102111739341742 +1.724,0.0261843311466102,-0.0386459083969564,0.00741362599059937,-0.0759326793223501,0.0657805846899393,0.0891231926181073,0.10213178237316 +1.726,0.0262209372474168,-0.0386290503040955,0.00738653107020723,-0.0759728555786358,0.0657748206343402,0.0891256061827666,0.102146413061699 +1.728,0.0262426825910988,-0.0386230212994482,0.00737369624840285,-0.0759938241776866,0.0657802173559071,0.0891196342038298,0.102166470759484 +1.73,0.0262793073881703,-0.0386061525422007,0.00734659259118282,-0.0760340034278167,0.0657744507155056,0.0891220380908875,0.102181118094987 +1.732,0.0263010639855236,-0.0386001177831027,0.00733375380455255,-0.0760549745736833,0.0657798494208283,0.0891160569377203,0.102201190422866 +1.734,0.0263377074184225,-0.038583238321246,0.00730664144512212,-0.0760951568656056,0.0657740801948139,0.0891184512636589,0.10221585438485 +1.736,0.0263594752434679,-0.0385771977688955,0.00729379871129611,-0.0761161305883198,0.0657794808738621,0.0891124609940388,0.102235941322306 +1.738,0.0263961372629212,-0.038560307581444,0.00726667769466378,-0.0761563159387984,0.0657737090745635,0.0891148458157061,0.102250621911439 +1.74,0.0264179162990051,-0.0385542612099033,0.00725383103620687,-0.0761772922469053,0.0657791117241136,0.0891088464409634,0.102270723453636 +1.742,0.0264545968708531,-0.0385373602937485,0.00722670141528134,-0.0762174806472102,0.0657733373752207,0.0891112217597721,0.102285420690591 +1.744,0.0264763871113231,-0.0385313080887004,0.00721385085848789,-0.0762384595320004,0.0657787419975146,0.0891052132511376,0.102305536846462 +1.746,0.0265130862178714,-0.0385143964552363,0.00718671269093549,-0.0762786509559382,0.0657729651308626,0.0891075790236527,0.102320250768502 +1.748,0.0265348876653355,-0.0385083384115828,0.0071738582643715,-0.0762996323971368,0.0657783717315948,0.0891015613226041,0.102340381557563 +1.75,0.0265675382741004,-0.0384926135461926,0.00714934276554356,-0.0763359604681549,0.0657717204840445,0.0891049327479679,0.10235267141082 +1.752,0.0265871811296017,-0.038487880343942,0.00713845970894293,-0.076353922551202,0.0657790529075842,0.0890968688344948,0.102373262382819 +1.754,0.0266259953936142,-0.038469716773206,0.00710959787694593,-0.0763966444789834,0.0657728792553849,0.0890996896119841,0.102387808275598 +1.756,0.0266488151353298,-0.0384630751161548,0.00709595027331719,-0.0764185918582624,0.065778342809766,0.089093571444369,0.102407951872581 +1.758,0.0266858197662138,-0.0384463124219737,0.00706885260792359,-0.0764588189841073,0.0657731768525452,0.0890956567305021,0.102423221838465 +1.76,0.0267076867425577,-0.0384404249297118,0.00705611998471456,-0.0764796842891975,0.0657789760788945,0.08908945951706,0.10244376790504 +1.762,0.0267415632449635,-0.0384241122483451,0.00703065934964511,-0.0765173049059864,0.0657717840376073,0.0890932932454852,0.102456153003263 +1.764,0.0267617471582029,-0.0384191832971102,0.00701938103965585,-0.0765358588984985,0.0657788361266913,0.0890854495483853,0.102476921760461 +1.766,0.0267968915152541,-0.0384021556849338,0.00699289125133423,-0.0765750804418846,0.0657715905681565,0.0890894152077958,0.102489333727913 +1.768,0.0268177448023712,-0.0383968478838871,0.00698107963420252,-0.0765942290481716,0.0657787731384625,0.0890813084266106,0.102510156301949 +1.77,0.0268571827294113,-0.0383787423392195,0.00695197609218562,-0.0766373938362973,0.0657728958797975,0.0890840179923007,0.102525451140245 +1.772,0.0268801600656414,-0.0383723158076435,0.00693837497508214,-0.07665934157271,0.0657785596654004,0.0890777117773968,0.102546203564793 +1.774,0.0269185269577921,-0.0383549208225718,0.00691016851647747,-0.0767011090409727,0.0657726018895216,0.0890803648732384,0.102561717520107 +1.776,0.0269409178365246,-0.0383489231424329,0.00689705943480128,-0.0767225496853182,0.0657780229438515,0.0890743199406787,0.102582624818789 +1.778,0.0269793614272598,-0.0383312752686471,0.00686856214494319,-0.0767646184952978,0.0657712860330872,0.0890773617128601,0.102597834800511 +1.78,0.027001799183239,-0.0383251595913533,0.00685530043887925,-0.0767862589643877,0.0657762569371133,0.0890714913180896,0.102618586941779 +1.782,0.0270394372238112,-0.0383078956213555,0.00682739632229488,-0.0768275080180473,0.0657697299185484,0.0890742386218782,0.102633834078118 +1.784,0.0270615185078727,-0.0383019287094184,0.00681439117212905,-0.0768487670029415,0.0657748058452923,0.0890681711444652,0.102654565955453 +1.786,0.0270988720031173,-0.0382846946062162,0.00678665263710126,-0.0768897694903302,0.0657683450029648,0.0890708020442353,0.102669685721177 +1.788,0.0271208825413276,-0.0382786583974627,0.00677366497330389,-0.0769109614664442,0.0657734684154889,0.0890646754791126,0.102690281004197 +1.79,0.0271579160408656,-0.0382615419540967,0.00674620808394112,-0.0769515712680541,0.0657672910265449,0.0890671229014119,0.102705352836737 +1.792,0.0271798392596559,-0.038255469388529,0.00673329220887244,-0.0769726426586829,0.0657725756441477,0.0890609475134624,0.102725841486055 +1.794,0.0272167975679428,-0.0382383438081819,0.00670593573159317,-0.0770130961692751,0.0657665945107817,0.0890633108807317,0.102740829745687 +1.796,0.0272387404444817,-0.038232183347143,0.00669301189897774,-0.0770341630697502,0.0657719972606827,0.0890571503200964,0.10276120406976 +1.798,0.027275661407987,-0.0382150645953511,0.00666574635710925,-0.0770744720540402,0.0657662159293513,0.0890594269241163,0.1027761487766 +1.8,0.0272973938197743,-0.0382074056564395,0.00665189989268727,-0.07709664811707,0.0657681714272014,0.0890565361564224,0.102792847913189 +1.802,0.0273298873552061,-0.0381929238881381,0.00662861857525417,-0.0771308705520853,0.0657656602609889,0.0890551827805244,0.102808385987438 +1.804,0.0273496753782417,-0.0381888644390343,0.00661819671799913,-0.0771491360858233,0.0657746097229366,0.0890475673901303,0.102830723519003 +1.806,0.0273898548546733,-0.0381693160509208,0.00658800386051372,-0.0771928056450764,0.0657670198980172,0.0890503197733344,0.102844221994052 +1.808,0.0274135960454543,-0.0381623759988598,0.00657381999260771,-0.0772160850658363,0.0657725388072561,0.0890452126859812,0.102864990715635 +1.81,0.027450177000969,-0.0381454942968995,0.00654704158936351,-0.0772551632537688,0.0657672816737454,0.0890463353011504,0.102879857752078 +1.812,0.0274721442002704,-0.0381399185133536,0.00653454824373717,-0.0772763158206522,0.0657738343115972,0.0890405602235984,0.102901359323879 +1.814,0.0275103132763663,-0.0381218143371235,0.00650615028495777,-0.0773174675286764,0.0657669766743819,0.08904263746581,0.102915546137626 +1.816,0.0275330622378837,-0.0381156425493325,0.00649284449951533,-0.0773396403038546,0.0657726427836838,0.0890372689207856,0.102936700410796 +1.818,0.0275700877404572,-0.0380983319229126,0.00646545709618757,-0.0773794754755788,0.065766418916082,0.0890388191542063,0.102951292827627 +1.82,0.0275922612052202,-0.038092560469784,0.00645265488885644,-0.0774009455195457,0.0657723570494245,0.0890330978392999,0.102972633036371 +1.822,0.0276295408304404,-0.0380749980633195,0.00642495450411246,-0.0774411858654827,0.0657657799477133,0.0890348203605074,0.102987071222024 +1.824,0.0276518609012032,-0.0380690785860664,0.00641197631160531,-0.0774628505796952,0.0657715107048775,0.0890291464143165,0.103008304058227 +1.826,0.0276887952773158,-0.0380517291782616,0.00638458017751629,-0.0775026923535528,0.0657651423242411,0.0890307142106202,0.10302283797679 +1.828,0.027710970943559,-0.0380458837659732,0.00637172949506992,-0.0775241771459894,0.0657709636283308,0.0890249661157622,0.103044086131399 +1.83,0.0277479671401403,-0.0380284572225159,0.00634427232726911,-0.0775640920900087,0.0657645517482924,0.0890265797118752,0.103058561933458 +1.832,0.0277702019419433,-0.0380225376347204,0.00633136560527489,-0.0775856475198348,0.0657703485720681,0.0890208797342616,0.103079749986892 +1.834,0.0278071304689082,-0.0380051453908106,0.00630399070720752,-0.0776254477200615,0.06576403580874,0.0890224550149364,0.103094232510761 +1.836,0.0278293525303308,-0.0379992122470457,0.00629110445211516,-0.0776469781166862,0.0657698875712064,0.0890167628556785,0.103115399162229 +1.838,0.0278663191864446,-0.0379817836834809,0.00626371548029937,-0.0776867879126522,0.0657636058219566,0.0890183422265207,0.103129857166445 +1.84,0.0278885740399317,-0.0379758098366138,0.0062508074446256,-0.0777083475577735,0.0657694817735933,0.0890126717805644,0.10315099576758 +1.842,0.0279255425855119,-0.0379583778241449,0.0062234386359426,-0.077748121651654,0.0657632557723012,0.0890142276554584,0.103165454271278 +1.844,0.0279475020151588,-0.0379508204162796,0.00620958305490779,-0.0777705655229111,0.0657653818129609,0.0890115503108587,0.103182654870082 +1.846,0.0279801786109016,-0.0379362868111455,0.00618622293101162,-0.077804801960889,0.06576276367352,0.0890100999902297,0.103198380631956 +1.848,0.0280000655299121,-0.0379322571009147,0.0061757842801487,-0.0778230972834018,0.0657716638857347,0.0890024173968524,0.103220949608607 +1.85,0.0280404462688385,-0.0379125958048342,0.00614545897273464,-0.0778667777563669,0.0657638355563457,0.0890050543007429,0.1032345985285 +1.852,0.0280643151166558,-0.0379056781982672,0.00613123701064254,-0.077890135748729,0.0657692669946773,0.0889999277374652,0.10325564842307 +1.854,0.0281010631983526,-0.0378887000221517,0.00610434354698491,-0.0779292484878495,0.0657637712479688,0.0890009773106098,0.103270681283092 +1.856,0.028123144129168,-0.0378831500267127,0.00609182206094996,-0.0779504873958508,0.0657702394558343,0.0889951966199913,0.103292465061643 +1.858,0.0281614785506574,-0.0378649253036628,0.00606330197640295,-0.0779916835689078,0.0657631353039963,0.088997220716962,0.103306800963443 +1.86,0.0281843495115649,-0.0378587515487744,0.00604995647944331,-0.0780139563022863,0.065768719283576,0.0889918596118225,0.103328214114967 +1.862,0.0282215244051752,-0.0378413215016934,0.00602246636832919,-0.0780538279701995,0.0657622939978442,0.0889933606484158,0.103342949438993 +1.864,0.0282438185236679,-0.0378355308476865,0.00600962610302093,-0.0780753988882103,0.0657681823720461,0.0889876489231559,0.103364526570459 +1.866,0.0282812482445686,-0.0378178375120558,0.0059818308285752,-0.0781156684159609,0.065761447108662,0.0889893158087172,0.103379094547709 +1.868,0.0283036952503349,-0.0378118757866889,0.00596881023099623,-0.0781374344697264,0.0657671597328284,0.0889836470562058,0.103400539955798 +1.87,0.0283407784985472,-0.0377943930112246,0.00594133274880462,-0.07817729080683,0.0657606856194309,0.088985142038686,0.103415197389032 +1.872,0.0283630839511978,-0.0377884907414933,0.00592844031639106,-0.0781988708908966,0.0657665241602145,0.088979387312305,0.103436641452832 +1.874,0.0283962282615384,-0.0377722693468216,0.00590359246119981,-0.0782352014551422,0.0657593828402578,0.0889822586496424,0.103449105526075 +1.876,0.0284162089819862,-0.0377673281949838,0.00589255474484861,-0.078253272538359,0.0657666611120799,0.0889738547165326,0.103470108537422 +1.878,0.0284555506384876,-0.0377488677197386,0.00586347394698572,-0.0782960960209421,0.0657604566786633,0.0889764139345991,0.103485294139828 +1.88,0.0284786945180188,-0.0377420394688918,0.00584973077559088,-0.0783180965760095,0.0657660016086255,0.0889699758249004,0.103505923104247 +1.882,0.0285163032014424,-0.0377248947967565,0.00582235186047221,-0.0783584865234479,0.0657607683947431,0.0889717912861777,0.103521718300097 +1.884,0.02853854492689,-0.0377187705764299,0.00580948710740355,-0.078379472345711,0.0657666508077912,0.0889653119285585,0.103542702727727 +1.886,0.0285770733747143,-0.0377008999784828,0.00578116318143801,-0.0784210461494426,0.0657603313678891,0.0889678148330943,0.103558068882313 +1.888,0.0285997611641025,-0.0376944364691925,0.00576783398389021,-0.0784426575939194,0.0657656095269365,0.0889616835621453,0.103578851940454 +1.89,0.0286375346145758,-0.037677046029811,0.00574014607752353,-0.0784833813164418,0.0657596055513029,0.0889638636256042,0.103594411803332 +1.892,0.0286598434587891,-0.0376708354656251,0.00572713719712153,-0.0785045571328828,0.0657650323307875,0.0889575166908909,0.103615304934681 +1.894,0.0286976419635184,-0.0376533390738503,0.00569935008054163,-0.0785453889167336,0.0657588481537774,0.0889597207731366,0.103630755917534 +1.896,0.0287197616607968,-0.0376456270551438,0.00568536350054556,-0.0785677636137452,0.0657606183361759,0.0889566664667961,0.10364800900245 +1.898,0.028752887021964,-0.0376311323807552,0.00566182048008552,-0.078602591304987,0.0657580658803728,0.0889555522749973,0.103664543501547 +1.9,0.0287726383370052,-0.0376267778356005,0.00565130068851906,-0.0786201984461177,0.065766293943119,0.0889468480605711,0.103686515726064 +1.902,0.0288135611785793,-0.0376072486598851,0.00562081349386456,-0.0786647249464488,0.0657587682852235,0.0889501517079751,0.103701323630651 +1.904,0.0288373634972796,-0.0375999979533263,0.00560649081098358,-0.0786875334753501,0.0657636123169835,0.0889441707970457,0.103721878548466 +1.906,0.0288745704181846,-0.0375831771348263,0.00557951592999786,-0.078727368909865,0.0657584959963132,0.0889458154881864,0.103738009186205 +1.908,0.0288965691788158,-0.0375772769294041,0.00556691192168685,-0.0787480407372445,0.065764428526115,0.0889391889951982,0.103759247910958 +1.91,0.0289353659014548,-0.0375591794471757,0.00553832012861377,-0.0787899201331696,0.0657577408776209,0.0889417848396519,0.103774624481273 +1.912,0.0289581834176779,-0.03755262742995,0.00552488087344261,-0.0788116622740148,0.0657628407916821,0.0889356251200071,0.103795476503996 +1.914,0.0289958017225703,-0.0375353203869856,0.00549734700651849,-0.0788521592716124,0.0657568864794742,0.0889376520512367,0.103811202919178 +1.916,0.0290180504225842,-0.0375291472808085,0.00548441839252324,-0.0788732174024523,0.0657623529042527,0.0889311715057285,0.103832218147136 +1.918,0.029055926923284,-0.0375115615030979,0.00545658398485076,-0.0789140812654747,0.0657561146068994,0.0889333287910581,0.103847737200445 +1.92,0.0290783390207711,-0.0375052123446488,0.00544347396921936,-0.0789353468960835,0.0657614420336923,0.0889269062643673,0.103868621241626 +1.922,0.0291158663412823,-0.0374878348116312,0.0054159635925911,-0.0789757767464878,0.0657554842757258,0.0889288676881782,0.103884211002913 +1.924,0.029138136859077,-0.0374815496523458,0.00540298557444029,-0.0789968574371631,0.0657609587304332,0.0889223632547979,0.103905099289848 +1.926,0.029175735515206,-0.0374640884943245,0.00537541844499344,-0.0790373432828552,0.0657549977039502,0.0889243381130107,0.103920619818203 +1.928,0.0291980690699668,-0.0374577251969382,0.00536238602093392,-0.0790584867072652,0.0657604768780048,0.088917866366275,0.103941445849399 +1.93,0.0292356070888954,-0.0374403003403608,0.00533490326776657,-0.0790988478133741,0.0657546342441683,0.0889197786875411,0.103956975985444 +1.932,0.0292579271524209,-0.0374339297048642,0.00532189569541179,-0.0791199551328407,0.0657601788905793,0.0889132971293984,0.103977788524758 +1.934,0.0292955130111892,-0.0374164715447242,0.00529439467054116,-0.0791603252118952,0.065754363094625,0.0889151982957842,0.103993303613105 +1.936,0.0293178652173154,-0.037410070326288,0.00528136858882705,-0.0791814525487514,0.0657599251953348,0.0889087226020839,0.104014101011074 +1.938,0.0293513367088813,-0.0373938355043694,0.00525656192087086,-0.0792179398069725,0.0657532467894896,0.0889116544539095,0.104027118748571 +1.94,0.0293714897414616,-0.0373887599713483,0.00524549699370655,-0.0792360551933026,0.0657607565978581,0.0889031427964277,0.104048289388533 +1.942,0.0294111615989389,-0.0373700886279593,0.0052163192715638,-0.0792788367229228,0.0657546550248586,0.0889054297984093,0.104063665668577 +1.944,0.0294345097872671,-0.0373631148330634,0.00520251718175348,-0.0793008652858946,0.0657603197711769,0.088898817791012,0.104084470627191 +1.946,0.0294724416048599,-0.0373458041724643,0.00517504127220543,-0.0793412823194899,0.0657551518365851,0.0889004333359912,0.104100550507323 +1.948,0.0294948653914581,-0.0373395813694961,0.00516213723610189,-0.0793622927027633,0.0657611057936262,0.0888937771214455,0.104121769971274 +1.95,0.0295296020864954,-0.0373227604319242,0.00513637024471238,-0.0794000790483941,0.065753848653487,0.0888971651499986,0.104134919757298 +1.952,0.0295502997019889,-0.0373175134955433,0.00512491887840855,-0.0794187724811629,0.0657610292838359,0.0888888576006465,0.104156304084254 +1.954,0.0295903976060402,-0.0372987922061795,0.00509546390840673,-0.0794619546675498,0.065754654844929,0.0888912896649718,0.104172036979207 +1.956,0.029613841798487,-0.0372919544922148,0.00508165037169009,-0.0794840581480335,0.0657601492772789,0.0888846565746021,0.104193194978184 +1.958,0.0296522513415025,-0.0372744501212074,0.00505375069374973,-0.0795250705378919,0.0657544587517051,0.0888865070771046,0.104209474822906 +1.96,0.0296748217597826,-0.0372682760848274,0.00504074635685084,-0.0795462522977568,0.0657601253688954,0.0888798429902083,0.104230955971782 +1.962,0.0297138193427204,-0.0372502076438866,0.00501214869784723,-0.0795881235461588,0.0657534463999358,0.0888822595024525,0.104246839979235 +1.964,0.029736475918174,-0.0372423510796452,0.00499790062904593,-0.0796109373563203,0.0657550249701042,0.0888792426061702,0.10426459787634 +1.966,0.0297702546826684,-0.0372275734661078,0.00497394818228263,-0.0796462559218633,0.0657520952372163,0.0888781598334531,0.104281556501805 +1.968,0.029790267812522,-0.037223212524383,0.00496335005766717,-0.0796640245936451,0.065760192914535,0.0888693406861467,0.104304000209205 +1.97,0.0298318506364914,-0.0372033514495371,0.00493242215618156,-0.0797090748536071,0.0657522336189249,0.0888727204283188,0.104319240407034 +1.972,0.0298559387274256,-0.0371960202851712,0.00491797373150343,-0.079732067051817,0.0657568858418339,0.0888666192521983,0.104340207516531 +1.974,0.0298935581064793,-0.0371789918308192,0.00489076101657385,-0.079772189655395,0.0657515007377061,0.0888682310112371,0.104356758786036 +1.976,0.0299157520441875,-0.0371730376058244,0.00487810394314894,-0.0797929547547951,0.065757338802601,0.0888614383350046,0.104378377517762 +1.978,0.0299549145638476,-0.0371547121731397,0.00484931019311813,-0.0798350550827109,0.0657504426225162,0.0888639679305814,0.104394113350628 +1.98,0.0299779331158894,-0.0371480551735645,0.00483580611543527,-0.0798568896181086,0.065755489252435,0.0888576472434869,0.104415277656141 +1.982,0.0300158530720304,-0.0371305471996033,0.00480814293776884,-0.0798975138432075,0.0657494482842781,0.0888595626135166,0.104431336038153 +1.984,0.0300382900745093,-0.0371242496326422,0.00479516318262593,-0.0799186445861072,0.0657549339704042,0.0888529231407034,0.104452619277622 +1.986,0.0300764708234783,-0.0371064498645614,0.0047672146680183,-0.0799596027527252,0.0657486775771232,0.0888549454179721,0.104468436075571 +1.988,0.0300990835556119,-0.0370999477763017,0.00475404631695533,-0.0799809428494699,0.0657540672756812,0.0888483701181689,0.104489550348554 +1.99,0.0301369126777972,-0.0370823597067394,0.00472644106150215,-0.0800214345186704,0.0657481530733939,0.0888501708732677,0.104505423786875 +1.992,0.0301593854033011,-0.037075913143504,0.0047134075402101,-0.0800425813107442,0.0657537252702113,0.088843509634473,0.104526525285554 +1.994,0.0301972972786179,-0.0370582394953027,0.00468574732862596,-0.0800831175130338,0.0657478343644847,0.0888453051890616,0.104542322903083 +1.996,0.0302198367904766,-0.0370517133082724,0.0046726595166004,-0.0801043212098762,0.0657534244816324,0.0888386681932367,0.104563358066541 +1.998,0.0302576935126674,-0.0370340813296198,0.00464508515912911,-0.0801447254637242,0.0657476591342426,0.0888403868761021,0.104579169376115 +2,0.0302802177640748,-0.0370275566002488,0.00463202615454592,-0.0801658845446423,0.065753314112755,0.0888337291907289,0.104600198611179 +2.002,0.0303181285050607,-0.0370098964745123,0.00460442972654365,-0.080206299339178,0.0657475620409308,0.0888354298499682,0.104616003183453 +2.004,0.0303406830484045,-0.0370033531037509,0.0045913553683148,-0.0802274727200421,0.0657532206474937,0.088828769347667,0.104637030121734 +2.006,0.0303786054304876,-0.0369857022439494,0.00456377043193197,-0.080267860095706,0.0657474837371676,0.0888304383018103,0.10465285968444 +2.008,0.0304011633729298,-0.0369791697768056,0.00455070463117155,-0.0802890193243966,0.0657531428188272,0.0888237589718703,0.104673910409414 +2.01,0.0304391183659543,-0.036961512820105,0.00452310313629119,-0.0803294196419564,0.0657473766056081,0.0888254173130568,0.104689764042101 +2.012,0.0304616882723985,-0.0369549892348714,0.00451003545600681,-0.0803505803314855,0.0657530110122923,0.0888187250150447,0.104710843673495 +2.014,0.0304996605103988,-0.0369373353766101,0.00448242598427494,-0.080390986421715,0.0657472086199175,0.0888203758292947,0.104726729507176 +2.016,0.0305222350122817,-0.0369308266853698,0.00446936174983373,-0.0804121441595135,0.0657528140209577,0.0888136711994401,0.104747843644319 +2.018,0.0305602271023806,-0.0369131700900678,0.00444173794587664,-0.0804525669047313,0.0657469647143652,0.088815324778019,0.104763758719286 +2.02,0.0305828091675144,-0.0369066715764653,0.00442867307699982,-0.0804737288776755,0.0657525366699256,0.0888086144548179,0.104784904354833 +2.022,0.0306208156052105,-0.0368890120779019,0.0044010385886305,-0.0805141653870581,0.0657466452415102,0.0888102739483685,0.104800846689033 +2.024,0.0306434045076298,-0.0368825200980556,0.00438797302913234,-0.080535332910158,0.0657521885286508,0.0888035618973763,0.104822019574281 +2.026,0.0306814250687777,-0.0368648538022084,0.00436032807735204,-0.0805757837344069,0.0657462620595377,0.0888052298093368,0.104837984256018 +2.028,0.0307040225817632,-0.0368583622523749,0.00434725973423267,-0.080596959873168,0.0657517833093181,0.0887985195812041,0.104859178100031 +2.03,0.030742055543226,-0.0368406871665008,0.00431960704126075,-0.0806374216302781,0.065745833465993,0.0888001948197082,0.104875161198571 +2.032,0.0307646622195773,-0.0368341912430863,0.00430653529978596,-0.0806586068499266,0.0657513416539331,0.0887934875022395,0.104896370539469 +2.034,0.0308027077237222,-0.0368165050219832,0.00427887633071698,-0.080699077222611,0.065745379287218,0.0887951678669408,0.104912368549605 +2.036,0.0308253244933201,-0.0368100006499111,0.00426580046881984,-0.0807202716441917,0.0657508824996716,0.0887884631314361,0.104933589026598 +2.038,0.0308592301062495,-0.0367935359585288,0.00424083911932752,-0.0807569058887567,0.0657439988117789,0.0887912328035271,0.104947048729928 +2.04,0.0308796358301587,-0.0367883482091605,0.00422970309372922,-0.08077511546956,0.065751432233837,0.0887825101527751,0.104968598312627 +2.042,0.0309197313926625,-0.0367694467611854,0.00420037093256499,-0.0808179869387314,0.065745184213395,0.0887846034243699,0.104984471521193 +2.044,0.0309433323718052,-0.0367623538026143,0.00418651463392504,-0.0808400788397306,0.0657507974107897,0.0887777737175303,0.105005689253033 +2.046,0.0309817281306259,-0.0367447746852707,0.00415884903648502,-0.0808806606461228,0.0657454636034549,0.0887792374263185,0.105022240358293 +2.048,0.0310044298140514,-0.0367384058725959,0.00414587282706437,-0.080901781852606,0.065751364682837,0.0887723936056934,0.105043857383273 +2.05,0.0310437421151459,-0.0367200922655366,0.0041172591127485,-0.0809435510133458,0.065744873433419,0.0887745526584478,0.105059991957285 +2.052,0.0310668912086019,-0.0367133877616689,0.00410382064178724,-0.0809652991950996,0.0657501283570315,0.0887680548371349,0.105081425227028 +2.054,0.0311054284974744,-0.0366955641677245,0.00407585174808466,-0.08100623639049,0.0657439333228316,0.0887699121677482,0.105097758092427 +2.056,0.0311281924260154,-0.0366891179547458,0.00406273810649793,-0.0810275579271908,0.0657493290794518,0.0887632056066517,0.105119305611143 +2.058,0.0311667434952815,-0.0366711864922917,0.00403467765756488,-0.0810685989167466,0.0657429509938707,0.0887650888057572,0.105135523475067 +2.06,0.0311895418451616,-0.0366646632533115,0.0040214961843083,-0.0810899792202403,0.0657482580311682,0.0887583619070444,0.105156999214155 +2.062,0.0312277934567334,-0.0366468828097872,0.0039936867598752,-0.0811306881839591,0.065742068092195,0.0887600902760518,0.10517325050198 +2.064,0.0312504781886022,-0.0366403942403791,0.00398060024818776,-0.0811519282704532,0.065747479176569,0.0887532876552922,0.105194712925829 +2.066,0.0312887141283001,-0.0366225763824593,0.00395280498808036,-0.0811926021380835,0.0657413375257393,0.0887549893060597,0.105210910668813 +2.068,0.0313114260588644,-0.0366160229669158,0.00393969366211515,-0.0812138626562787,0.065746784962099,0.0887481973378576,0.105232311304576 +2.07,0.0313496066979272,-0.0365982223646839,0.00391197449768689,-0.0812544214744201,0.0657407695561464,0.0887498388839654,0.105248498153351 +2.072,0.0313723164517239,-0.0365916381783816,0.00389887584005162,-0.0812756593556157,0.0657462938970348,0.0887430436064255,0.105269863536696 +2.074,0.0314105247148251,-0.0365738091603152,0.00387116231223233,-0.081316193446883,0.0657403504351465,0.0887446565490516,0.105286028326676 +2.076,0.0314332634548704,-0.036567183021712,0.00385804952575193,-0.0813374437474463,0.0657459229068705,0.0887378654532193,0.105307363177022 +2.078,0.0314714866275346,-0.0365493461773226,0.00383035365599001,-0.0813779406047561,0.0657400492759432,0.0887394393028711,0.105323529004648 +2.08,0.0314942391074237,-0.0365427012404166,0.00381724136026761,-0.0813991849745013,0.0657456650113147,0.0887326358416108,0.105344856653876 +2.082,0.0315324930134363,-0.036524850602946,0.0037895427971832,-0.0814396740373541,0.0657398240133482,0.0887341811349886,0.105361030846611 +2.084,0.0315552614374369,-0.0365181947208064,0.00377642759766071,-0.0814609176733168,0.0657454592212146,0.0887273614662426,0.105382365260167 +2.086,0.0315935387088326,-0.036500338599663,0.00374872705078294,-0.0815014018316367,0.0657396294345665,0.0887288820284918,0.105398560283364 +2.088,0.031616316418326,-0.0364936836066441,0.00373561396093823,-0.0815226402980375,0.065745268564488,0.0887220426736531,0.105419915137096 +2.09,0.031654618498112,-0.036475821338499,0.00370790441247551,-0.0815631318160223,0.065739425584859,0.088723548685189,0.105436135822272 +2.092,0.0316774054388989,-0.036469171067853,0.00369479235424071,-0.0815843688860882,0.0657450529817336,0.0887166927060273,0.105457517665976 +2.094,0.0317157286193547,-0.0364513042966561,0.0036670732747546,-0.081624871089975,0.0657391839308247,0.0887181912053953,0.105473767225328 +2.096,0.0317385235174508,-0.0364446607026201,0.00365396261217156,-0.0816461085300055,0.0657447916288417,0.0887113223187406,0.10549517884978 +2.098,0.0317768665816004,-0.0364267881581005,0.00362623271594176,-0.0816866248582463,0.0657388898643153,0.0887128194254136,0.105511456605901 +2.1,0.0317996701439168,-0.0364201494650145,0.00361312211203217,-0.0817078659428958,0.0657444747859151,0.0887059420731073,0.105532896636157 +2.102,0.0318380307450219,-0.0364022702481018,0.00358538260494951,-0.0817483958645105,0.0657385416998811,0.0887074406552095,0.105549200529168 +2.104,0.0318608433280276,-0.0363956335200547,0.00357227122007568,-0.0817696424490671,0.0657441060691702,0.0887005580579762,0.105570665578243 +2.106,0.0318992201181524,-0.0363777459883241,0.00354452340375219,-0.0818101846202252,0.0657381473299888,0.0887020589840335,0.105586992403562 +2.108,0.0319220424551365,-0.0363711074196233,0.00353141019337591,-0.0818314381195724,0.0657436961557381,0.0886951732766884,0.105608478031628 +2.11,0.0319604343154337,-0.0363532101684483,0.00350365583627466,-0.0818719900958973,0.0657377199716303,0.088696675609635,0.105624824671615 +2.112,0.0319832669202113,-0.0363465662577108,0.00349054013358778,-0.0818932509566797,0.0657432596124353,0.0886897876410898,0.105646326673167 +2.114,0.0320216735152542,-0.0363286579474431,0.0034627806067308,-0.0819338104818555,0.0657372741881373,0.0886912895850071,0.105662690503076 +2.116,0.0320445168787469,-0.0363220058503413,0.00344966193435309,-0.081955078647052,0.0657428106669131,0.0886843992443699,0.105684205540264 +2.118,0.032082938338714,-0.0363040855354833,0.00342189825360477,-0.0819956437793109,0.0657368229031254,0.088685898590315,0.105700584858839 +2.12,0.0321056087160441,-0.0362959916591202,0.00340788392682205,-0.0820181059317929,0.0657387576217028,0.0886823986297393,0.105718548693769 +2.122,0.0321394935101889,-0.0362809637051536,0.00338416961297858,-0.0820529177844917,0.0657362800460175,0.0886806892318335,0.105735838239149 +2.124,0.0321597943126547,-0.0362762105359731,0.00337352277487718,-0.0820706998853643,0.0657447056333993,0.0886715361592364,0.105758467811186 +2.126,0.0322017415944481,-0.0362560712719407,0.00334276015438834,-0.082115290978567,0.0657372016879025,0.0886742660594217,0.105774269336435 +2.128,0.0322261951185603,-0.0362483914320607,0.00332828943526389,-0.0821382559571868,0.0657421529532047,0.0886677966644971,0.105795585918875 +2.13,0.0322644397099126,-0.0362309700744043,0.00330099895180687,-0.0821783213871283,0.0657369871404833,0.088668961817088,0.10581271970222 +2.132,0.0322870761954051,-0.0362246863646659,0.00328825827822256,-0.0821992046340648,0.0657429960561026,0.0886618665133843,0.105834773460883 +2.134,0.0323269368111847,-0.0362059723581512,0.00325933455431179,-0.0822413176425243,0.0657361659876212,0.0886639647558616,0.105851182445841 +2.136,0.0323503999031363,-0.0361990458027838,0.0032457597748739,-0.082263256943924,0.0657412858918424,0.0886573027170167,0.105872882864554 +2.138,0.0323890531744003,-0.0361811491785835,0.00321790361697774,-0.0823040216719298,0.0657351653679325,0.0886588530377913,0.105889661442482 +2.14,0.03241192907071,-0.0361746269795742,0.00320485236903023,-0.0823252794814015,0.0657406404085819,0.0886518636410207,0.105911548065344 +2.142,0.0324508368907173,-0.0361564467439001,0.00317669259878547,-0.0823664147245777,0.0657342051623559,0.0886535435997229,0.105928121759424 +2.144,0.032473877047006,-0.0361497458491115,0.00316345823862751,-0.0823878790018829,0.0657395270608887,0.0886466063744091,0.105949880719761 +2.146,0.0325124220362452,-0.0361317782178858,0.00313562914546064,-0.0824285825074067,0.0657333783053381,0.0886480952206387,0.105966524978997 +2.148,0.0325353168077487,-0.0361251382525534,0.00312252816120605,-0.0824498636911591,0.0657388560128187,0.0886410782496189,0.105988284880397 +2.15,0.0325739324588318,-0.0361070782954614,0.00309464267981539,-0.0824906193732422,0.0657327149850921,0.0886425781044031,0.106004851869518 +2.152,0.0325968940268395,-0.0361003468308307,0.00308148319733467,-0.0825119658043485,0.0657382101010683,0.0886355955849175,0.106026538613125 +2.154,0.0326354454467256,-0.0360823184444631,0.0030536872465738,-0.0825525896223708,0.0657322133953709,0.0886370277954196,0.106043107487997 +2.156,0.0326583948426834,-0.0360755679916076,0.00304055106375599,-0.0825739009763939,0.0657377949031459,0.0886300362093702,0.106064769297056 +2.158,0.0326969948895563,-0.0360574991367212,0.00301274021254527,-0.0826145268791251,0.0657318507262208,0.0886314494963044,0.106081314943298 +2.16,0.0327199791387482,-0.0360507062620377,0.00299958363633154,-0.0826358588400517,0.0657374693533691,0.0886244624928169,0.10610295076891 +2.162,0.0327585884005451,-0.0360326355233939,0.00297179284356436,-0.0826764469234226,0.0657315889418143,0.0886258368589124,0.106119505400851 +2.164,0.0327815802236456,-0.036025832010456,0.00295864154862734,-0.0826977680297691,0.0657372454720802,0.0886188334121571,0.10614114298748 +2.166,0.0328202227474009,-0.0360077457527732,0.00293084212559834,-0.0827383589844237,0.0657313821474149,0.0886201858590025,0.106157709239574 +2.168,0.0328432300408709,-0.0360009342662123,0.00291768756670692,-0.0827596817643591,0.0657370476456132,0.0886131668072105,0.106179359104414 +2.17,0.0328818926199102,-0.0359828444956071,0.0028898865253337,-0.0828002710535493,0.0657311855384833,0.0886144993038082,0.106195950414079 +2.172,0.0329049069843548,-0.0359760371634679,0.00287673589769646,-0.0828215889397903,0.0657368476187266,0.0886074616141391,0.106217625300419 +2.174,0.0329435938258669,-0.0359579407250145,0.00284892477574658,-0.0828621906241201,0.0657309632746175,0.0886087850720706,0.106234244095766 +2.176,0.0329666174359702,-0.0359511386322053,0.0028357753522783,-0.0828835095145343,0.0657366075220978,0.0886017331139878,0.10625594793944 +2.178,0.0330053236358783,-0.0359330379296069,0.00280795596844606,-0.0829241236659769,0.0657306930535949,0.0886030524154107,0.106272596808287 +2.18,0.0330283550867208,-0.0359262422360492,0.00279480857876888,-0.0829454444076277,0.0657363148806016,0.088595989302645,0.106294330950029 +2.182,0.0330670803315558,-0.0359081353404175,0.00276697978127201,-0.0829860737675267,0.0657303667882645,0.0885973090539434,0.10631100808469 +2.184,0.0330901209787222,-0.035901343159031,0.00275383267346294,-0.0830073996057765,0.0657359654154184,0.0885902386439768,0.106332769815842 +2.186,0.0331288628598279,-0.0358832294005406,0.00272599643515546,-0.0830480420941171,0.0657299881784722,0.0885915598813227,0.106349472808162 +2.188,0.0331519130081367,-0.0358764375414879,0.00271284892122819,-0.0830693741350903,0.065735567842541,0.0885844844744321,0.106371258191007 +2.19,0.0331906707212822,-0.0358583151491442,0.00268500644040372,-0.0831100279902906,0.0657295686129734,0.0885858069594973,0.106387983611177 +2.192,0.0332137312200289,-0.0358515197175279,0.00267185739853944,-0.0831313672929418,0.0657351352508615,0.0885787280480697,0.106409788048652 +2.194,0.0332525039407841,-0.0358333873894326,0.00264401032246055,-0.0831720298014913,0.0657291228007433,0.0885800501570832,0.106426532919269 +2.196,0.03327557522204,-0.0358265851567849,0.00263085915253093,-0.0831933764404026,0.0657346830106561,0.0885729681199613,0.10644835246944 +2.198,0.0333143629884732,-0.0358084415713106,0.00260300845649772,-0.0832340455819008,0.0657286651234902,0.0885742879196794,0.10646511441092 +2.2,0.0333374454893881,-0.0358016300534684,0.00258985469245795,-0.0832553993626814,0.0657342245236075,0.0885672024463979,0.106486946179555 +2.202,0.0333762486238313,-0.0357834743465746,0.00256200103695688,-0.0832960735456525,0.0657282072011439,0.0885685179141697,0.106503723823313 +2.204,0.0333993425544629,-0.0357766521368037,0.00254884456499402,-0.0833174338934113,0.0657337698932513,0.0885614281074299,0.106525566260809 +2.206,0.0334381617076407,-0.0357584837915532,0.00252098813929141,-0.0833581122683116,0.0657277567412393,0.0885627374847455,0.10654235915837 +2.208,0.0334612671828837,-0.0357516504157682,0.00250782904971145,-0.0833794785043718,0.0657333250149622,0.0885556421212504,0.106564211923663 +2.21,0.0335001030407554,-0.0357334693388919,0.00247996981185748,-0.0834201607160637,0.0657273174660488,0.0885569439533533,0.106581020427422 +2.212,0.0335232200556724,-0.0357266250959034,0.00246680839044167,-0.0834415321017082,0.0657328920259869,0.0885498416465384,0.10660288412924 +2.214,0.0335620732657912,-0.035708431499547,0.00243894614967791,-0.083482218188715,0.0657268897772728,0.0885511348185541,0.106619709112049 +2.216,0.033585201768428,-0.0357015771625941,0.00242578277108083,-0.0835035940513518,0.0657324701262239,0.0885440242040356,0.10664158492873 +2.218,0.033624072836561,-0.0356833714748133,0.00239791732716307,-0.083544284240528,0.0657264717960795,0.0885453078936358,0.106658427517026 +2.22,0.0336472127551676,-0.0356765080233702,0.00238475239210831,-0.0835656640219774,0.0657320567334695,0.0885381877627044,0.106680316838527 +2.222,0.0336861020380654,-0.0356582907536799,0.00235688358918179,-0.08360635861414,0.0657260604680292,0.0885394614049801,0.106697178159558 +2.224,0.0337092533207683,-0.0356514191339519,0.00234371745346255,-0.0836277419201018,0.065731648536824,0.0885323308092578,0.106719082287663 +2.226,0.0337481610318305,-0.0356331907688171,0.00231584521333149,-0.0836684411993103,0.0657256525124687,0.0885335940569856,0.106735963290851 +2.228,0.0337713236599155,-0.0356263117360475,0.00230267814870518,-0.0836898278096655,0.0657312423511899,0.08852645236274,0.106757883243618 +2.23,0.0338102499042644,-0.0356080726543595,0.00227480246091129,-0.0837305320135153,0.0657252450958233,0.0885277050626262,0.106774784595019 +2.232,0.0338334238962119,-0.0356011866901862,0.00226163463360614,-0.0837519218770478,0.0657308356528552,0.0885205519638626,0.106796721013781 +2.234,0.0338723687038667,-0.0355829371189079,0.00223375553248703,-0.0837926311945228,0.0657248361973229,0.0885217941371163,0.106813643066393 +2.236,0.0338955541050353,-0.0355760444209808,0.00222058700535252,-0.0838140244027556,0.0657304268188061,0.0885146296291576,0.106835596214112 +2.238,0.0339303081450566,-0.0355590458384395,0.00219544858490477,-0.0838509157658991,0.0657234705085221,0.0885170029534082,0.106849904673227 +2.24,0.0339512420015075,-0.0355534722341801,0.00218419806008531,-0.0838693256122875,0.0657309898783834,0.0885078144948894,0.106872102706811 +2.242,0.0339922094473518,-0.0355340431216171,0.00215467771104806,-0.083912348727715,0.0657247790151668,0.088509408663608,0.106888955306452 +2.244,0.0340163551566118,-0.0355265775887231,0.00214074637414317,-0.0839345763965195,0.06573051110032,0.0885020691083007,0.106910922543263 +2.246,0.0340557072260827,-0.03550841459638,0.00211281812394527,-0.0839754469240838,0.0657251265116936,0.0885030932557745,0.106928428492646 +2.248,0.0340789951566746,-0.035501656404323,0.00209974170557155,-0.0839967778344182,0.065731095518704,0.0884957742620901,0.1069508031708 +2.25,0.0341192487787379,-0.0354827752946585,0.00207090185604361,-0.084038795629437,0.0657245358483776,0.088497471409968,0.106967918812116 +2.252,0.0341429793517297,-0.0354756936252451,0.0020573827072954,-0.0840607349996558,0.065729841570778,0.0884904832684103,0.106990128170802 +2.254,0.0341824593693277,-0.0354573076675375,0.00202918743657184,-0.0841019495376558,0.0657235571485423,0.0884918908708044,0.107007439872165 +2.256,0.0342058063421228,-0.0354504901353657,0.00201599366259797,-0.0841234755339163,0.065728991507857,0.088484697266256,0.107029766203337 +2.258,0.0342452873319565,-0.0354320060986513,0.00198772154568452,-0.0841647817338137,0.0657225201971034,0.0884861230142834,0.107046964113237 +2.26,0.0342686636209407,-0.0354251158490069,0.00197446590185241,-0.0841863603157079,0.06572786353881,0.0884789050783367,0.107069219118376 +2.262,0.0343078404744859,-0.0354067848568251,0.00194644665230005,-0.0842273397305795,0.0657215804774307,0.0884801804040388,0.107086445524737 +2.264,0.0343309370927223,-0.0353985005114565,0.00193240485215181,-0.0842500206821242,0.0657234087549046,0.0884763692302474,0.107105141134361 +2.266,0.0343654386960358,-0.0353830692732257,0.00190848095374607,-0.0842851277036628,0.0657207040841035,0.0884743575914622,0.107123094143032 +2.268,0.0343861155751201,-0.0353780849270777,0.00189777319877668,-0.0843030717003595,0.065729117097983,0.0884648108225016,0.107146318204512 +2.27,0.0344287388557475,-0.0353575126747903,0.00186683371918418,-0.0843479033317366,0.0657215086932905,0.0884672463013596,0.107162890488047 +2.272,0.0344536087460439,-0.0353495388031719,0.00185230521644074,-0.0843710088290424,0.0657264830701904,0.0884604009898277,0.107184789782967 +2.274,0.0344883023035531,-0.0353329490781401,0.00182760281840352,-0.0844075013188514,0.0657203216275463,0.0884624223772268,0.107199986035822 +2.276,0.03450893183044,-0.0353277843507044,0.00181685606026372,-0.0844253784615175,0.0657284400658724,0.088452889935632,0.107222835890923 +2.278,0.0345516072721732,-0.0353073638507625,0.00178602133135952,-0.0844701678665531,0.0657213183798282,0.0884551052726626,0.107239793051343 +2.28,0.0345764836661796,-0.0352995131032455,0.00177158385210066,-0.0844931367868854,0.0657266488483507,0.0884479536000317,0.107261977419043 +2.282,0.0346161200147761,-0.0352813284507273,0.00174359701522125,-0.0845341937742226,0.0657212369235811,0.0884489616236553,0.107279978769854 +2.284,0.0346394648997655,-0.0352746538278237,0.00173061090497487,-0.0845555055893193,0.0657272338785933,0.088441486700633,0.107302761509884 +2.286,0.0346803168815392,-0.035255426561511,0.00170135138346592,-0.0845981420988025,0.0657202806644853,0.0884433190153349,0.107320119301766 +2.288,0.0347043004469397,-0.035248229192702,0.00168770349202264,-0.0846203054087987,0.0657254229992872,0.0884362464737133,0.107342579796 +2.29,0.0347439498545306,-0.0352297647943586,0.00165946669987441,-0.0846616548414936,0.0657190615438393,0.0884375860023097,0.107360205378135 +2.292,0.0347673659430376,-0.0352229302663551,0.00164630390716604,-0.084683189013856,0.0657244953974778,0.0884302234083014,0.107382787101816 +2.294,0.0348070891741806,-0.0352042753968119,0.00161791457850195,-0.0847247037336112,0.065717915720348,0.0884316116312071,0.107400199467546 +2.296,0.0348305964279191,-0.0351972875366046,0.00160462537403691,-0.0847463600722933,0.0657232467883444,0.0884242711238194,0.107422628648527 +2.298,0.0348656939831279,-0.0351801131740105,0.00157934380444975,-0.0847835872129673,0.0657160184923229,0.0884266102006319,0.107437403220858 +2.3,0.0348867789227379,-0.0351744915234369,0.00156809339008375,-0.0848020643540576,0.065723455683466,0.0884171738314996,0.107459989045728 +2.302,0.0349280869080119,-0.0351548267003194,0.00153842502945715,-0.0848453643508832,0.0657170855467286,0.0884187022278181,0.107477226019522 +2.304,0.0349524218303294,-0.035147222744703,0.00152445899480697,-0.0848676876107885,0.0657228020174111,0.0884111621690099,0.107499491237398 +2.306,0.0349920517165252,-0.0351288467750846,0.00149646300772573,-0.0849087044358981,0.065717417025977,0.0884120584861527,0.107517329427447 +2.308,0.0350155212286408,-0.0351219176290069,0.00148336207932975,-0.0849301142007273,0.0657234618045238,0.0884045598516963,0.107539936748581 +2.31,0.0350518361262357,-0.0351040749939012,0.0014572255297973,-0.0849684212158924,0.065716016081784,0.088407267357324,0.107554670954678 +2.312,0.0350735203872633,-0.0350980824123897,0.00144554510888033,-0.084987505460683,0.0657233396150778,0.0883981250194383,0.107577235662305 +2.314,0.0351152217238759,-0.0350783567259481,0.00141572985101344,-0.0850310086854414,0.0657170643892846,0.0883996905451358,0.10759473793476 +2.316,0.0351396786946124,-0.0350707841124197,0.00140176012163559,-0.0850533997515464,0.0657228238845261,0.0883921631364976,0.107617215129483 +2.318,0.0351798328312907,-0.0350521782998353,0.00137339137202801,-0.0850949365671782,0.065717133774124,0.0883932204912256,0.107635191183476 +2.32,0.0352034875433276,-0.0350452312717958,0.00136018791456308,-0.085116524405475,0.0657230084118188,0.0883857159845214,0.107657981331671 +2.322,0.0352441926367663,-0.0350261038553043,0.00133119820354419,-0.0851588346958726,0.0657163362474378,0.0883872848140734,0.107675598263747 +2.324,0.0352681404364964,-0.0350189072869533,0.00131767405756961,-0.0851808605100258,0.0657216434588862,0.0883800343805018,0.107698215775636 +2.326,0.0353080509470861,-0.0350002481353873,0.00128932927267406,-0.0852223560260598,0.0657152477923994,0.0883813099113782,0.107715954702853 +2.328,0.035331631278672,-0.034993272212057,0.00127610474577236,-0.0852439916181507,0.0657206834128292,0.0883738781814282,0.107738624637267 +2.33,0.0353714545125436,-0.0349745590481185,0.00124776732933154,-0.0852854577001206,0.065714194288793,0.0883751301725834,0.107756230252952 +2.332,0.0353950384429035,-0.0349675074425017,0.00123450304943562,-0.0853071125014759,0.0657195867497075,0.0883676830729427,0.107778794888034 +2.334,0.0354345650210452,-0.0349489329938224,0.00120641812929435,-0.085348237275095,0.0657133167590932,0.0883687842062198,0.107796391269869 +2.336,0.0354580471894096,-0.0349418910274162,0.00119323482360092,-0.0853697677481361,0.0657188316970363,0.0883612893312165,0.107818902283013 +2.338,0.035497541096581,-0.0349232864185099,0.0011651855655359,-0.0854108166089389,0.0657126560867928,0.0883623512953385,0.107836425305986 +2.34,0.0355210455204737,-0.034916172432007,0.00115197979454121,-0.0854323596173413,0.0657182327898301,0.0883548786781662,0.107858852939356 +2.342,0.0355604880463948,-0.0348975795440153,0.00112400358202942,-0.085473287815222,0.0657122018035065,0.0883558819533948,0.107876347248822 +2.344,0.0355839913894206,-0.034890428587718,0.0011108057777445,-0.085494811186717,0.0657178645460386,0.0883484170943798,0.10789872605777 +2.346,0.0356234568265482,-0.0348718095605675,0.00108283755127615,-0.0855357057701496,0.0657119144828162,0.0883493922624849,0.107916192298754 +2.348,0.0356469839893669,-0.0348646196705657,0.00106962720710659,-0.0855572386326233,0.0657176265382273,0.0883419369719579,0.107938538290457 +2.35,0.0356864630500021,-0.0348459935192924,0.00104167351552929,-0.0855981000979372,0.0657117379623438,0.0883428812471992,0.107956004086705 +2.352,0.0357100001440456,-0.0348387901580687,0.00102846468216693,-0.0856196284047389,0.0657174830447044,0.0883354197558132,0.107978346229919 +2.354,0.0357495061437597,-0.0348201533386554,0.00100050740171892,-0.0856604881029752,0.065711610367956,0.0883363464614172,0.107995823896455 +2.356,0.035773054756569,-0.0348129466126257,0.000987298674188966,-0.0856820173412039,0.0657173588760968,0.0883288747194755,0.108018180068883 +2.358,0.0358083390574874,-0.0347955858169879,0.00096210437773854,-0.0857190706296373,0.0657104979376153,0.0883309657930411,0.108032996891897 +2.36,0.0358296010302221,-0.0347897122314017,0.000950803977516165,-0.0857376083667162,0.0657181596234949,0.0883214700645634,0.108055551410121 +2.362,0.03587111441562,-0.0347699305781623,0.000921218520287356,-0.0857807425481039,0.0657120853983817,0.0883227315911209,0.108073001228499 +2.364,0.0358955983170151,-0.0347621878886005,0.000907264715413234,-0.0858030669214633,0.0657179564686508,0.0883150650285738,0.108095401930329 +2.366,0.0359355411344557,-0.0347436442623262,0.00087922339287981,-0.0858441365988385,0.0657126174991502,0.0883158064275238,0.108113497650438 +2.368,0.0359591877078827,-0.0347366125398528,0.000866112622755003,-0.0858656088456161,0.0657186636206327,0.0883081862626397,0.108136324638672 +2.37,0.0359957755610655,-0.034718648536252,0.000839947427488719,-0.0859040056024164,0.0657111231695209,0.0883107833373867,0.108151363064593 +2.372,0.0360175968835725,-0.0347126111580532,0.000828278827466014,-0.0859231323480953,0.0657183640944628,0.0883014971914301,0.108174192731182 +2.374,0.0360595825806763,-0.0346927613532367,0.000798404589837542,-0.0859667644976682,0.065711915562988,0.0883029744522805,0.10819206137611 +2.376,0.0360841890436711,-0.0346851554275029,0.000784448722819103,-0.0859892126069665,0.0657175346220034,0.0882953080996437,0.108214857907513 +2.378,0.0361246257742364,-0.034666420934255,0.000756012791929481,-0.0860309144817188,0.0657116121035358,0.0882963082511027,0.108233205455864 +2.38,0.0361484367864533,-0.0346594380751295,0.000742820390056978,-0.0860525816576513,0.0657173179999903,0.0882886804446126,0.108256321644125 +2.382,0.0361851650198035,-0.0346414586959055,0.00071654299916768,-0.0860912465136773,0.0657094255483405,0.0882913855984166,0.108271607140784 +2.384,0.0362070133572433,-0.0346355095798362,0.000704895075185411,-0.0861104080575764,0.0657164685060286,0.0882820184733059,0.108294675707059 +2.386,0.0362491075168734,-0.0346156019804723,0.00067492095901206,-0.086154261312903,0.0657097548031416,0.0882835817482344,0.108312701121426 +2.388,0.0362737575414473,-0.0346080052863778,0.000660954294996643,-0.0861767667943649,0.0657152408615895,0.0882758687887118,0.108335639727649 +2.39,0.036314230260665,-0.0345892356631414,0.000632499746703638,-0.0862185531563536,0.0657092212911797,0.0882768875305822,0.108354097754907 +2.392,0.0363380718539108,-0.034582225503116,0.000619305688382699,-0.0862402502454876,0.0657149001840224,0.0882692221536334,0.108377288445943 +2.394,0.0363748410599214,-0.0345641856552421,0.000593019373634429,-0.0862789628624642,0.0657070103143856,0.0882719267848986,0.108392624034319 +2.396,0.0363967369942623,-0.0345581615220605,0.000581348469548215,-0.0862981648635127,0.0657140924652315,0.088262540662128,0.108415701912087 +2.398,0.0364388657181949,-0.0345381938819883,0.000551387904071707,-0.0863420091969393,0.0657074832107512,0.0882640635411505,0.108433759979113 +2.4,0.03646355998041,-0.0345305105425638,0.000537405974368854,-0.0863645355021581,0.0657130719465445,0.0882563260597854,0.108456687500396 +2.402,0.0365040893405479,-0.0345116659563365,0.000508954471345094,-0.0864063129768379,0.065707190100477,0.0882572915037696,0.108475159368755 +2.404,0.0365279829464001,-0.0345045596603535,0.000495738736188744,-0.0864280338104655,0.0657129891629733,0.088249600160831,0.10849832769801 +2.406,0.0365690618670123,-0.0344851687086502,0.000466690057095695,-0.0864705316236501,0.0657062366315177,0.0882510486317729,0.108516385512828 +2.408,0.036593264423339,-0.034477763286055,0.000453141714207697,-0.0864926941543277,0.0657115458794941,0.0882436266504828,0.108539318639768 +2.41,0.036633541795779,-0.0344588370516003,0.000424761622981787,-0.0865343301503362,0.0657051762983086,0.0882447459449371,0.108557462538319 +2.412,0.0366573787027547,-0.0344516289653493,0.000411511161086564,-0.0865560948020952,0.0657106834972899,0.0882371414655325,0.108580409555822 +2.414,0.0366975750913335,-0.0344326427274687,0.000383146075699503,-0.0865976751102327,0.0657042850913347,0.0882382068826542,0.108598399331648 +2.416,0.0367214169331672,-0.0344253487702397,0.000369855496117136,-0.0866194488138093,0.0657097893764775,0.0882305761392355,0.108621223597634 +2.418,0.0367570620457836,-0.0344077910507578,0.000344521834452147,-0.0866568694558441,0.0657026524098905,0.0882326624332629,0.108636486153947 +2.42,0.0367784973690737,-0.0344018363019191,0.000333209148997468,-0.0866755124076295,0.0657102213322989,0.0882229509998161,0.10865939858938 +2.422,0.0368203218935277,-0.0343818352045944,0.000303525626114076,-0.0867188923682685,0.0657040359981037,0.0882241384453365,0.108677235535531 +2.424,0.0368449873156829,-0.0343739452590606,0.000289553916952859,-0.0867413099966532,0.0657099136446,0.0882162770796711,0.108699920832083 +2.426,0.036885209310775,-0.0343551810920906,0.000261462815335886,-0.0867825300654332,0.0657045994927508,0.088216890089635,0.108718342447029 +2.428,0.0369090422140125,-0.034347961096885,0.000248331347727629,-0.0868040912297609,0.0657107327285352,0.0882090942854367,0.108741388220417 +2.43,0.0369501542141461,-0.0343284869479468,0.000219373178158039,-0.0868463931239074,0.0657042858972957,0.0882103507041933,0.108759406663343 +2.432,0.0369744326337992,-0.0343209386901903,0.000205811812118414,-0.0868685496578504,0.0657097687793186,0.0882028907761976,0.108782271892748 +2.434,0.0370147691886635,-0.0343019717067079,0.000177509464236697,-0.086910044567575,0.0657036068931508,0.0882038540828071,0.108800471566694 +2.436,0.0370386629000696,-0.0342946975065954,0.000164277640181607,-0.0869317916364168,0.065709213896764,0.0881961949055551,0.108823449247806 +2.438,0.0370747310894935,-0.0342769402222311,0.000138690523040733,-0.086969561356435,0.0657018599056712,0.0881983653362625,0.108838814507601 +2.44,0.0370969475685517,-0.0342691202610085,0.00012583867931408,-0.0869906398554605,0.0657052849436615,0.0881927370051043,0.108858340624799 +2.442,0.0371333893314323,-0.0342524908381337,0.000100819249761158,-0.0870272051568723,0.065702863420274,0.0881900751541651,0.108877045677202 +2.444,0.0371551425385979,-0.034246790097336,8.95907736076507e-05,-0.0870457576303782,0.0657117437170827,0.0881797052985234,0.108900971459427 +2.446,0.0371993843330716,-0.0342255725775889,5.81471503926095e-05,-0.0870914783556846,0.0657045351184037,0.088181717424875,0.10891901092254 +2.448,0.0372250499479764,-0.0342172336745852,4.35030185738372e-05,-0.0871149240762487,0.0657097669423859,0.0881743462824039,0.108941960017303 +2.45,0.0372658872752685,-0.0341983958307429,1.51287630554137e-05,-0.0871566815319487,0.0657040686585648,0.0881752590499704,0.108960969018853 +2.452,0.0372898793649731,-0.0341913521793748,2.05207247809536e-06,-0.0871783894636003,0.0657099184414171,0.0881675398162616,0.108984552278841 +2.454,0.0373318178289526,-0.0341715111070086,-2.75220618986688e-05,-0.0872216407354791,0.0657026081589897,0.0881691991584735,0.109002883403703 +2.456,0.0373563967221452,-0.0341639699253596,-4.12319744767242e-05,-0.08724414033828,0.0657075793146718,0.0881617862318632,0.10902613187519 +2.458,0.0373969294870064,-0.0341450022970932,-6.96395524919513e-05,-0.0872859536808609,0.0657009548009734,0.0881628580354911,0.109044724522154 +2.46,0.0374208531258142,-0.0341378657871081,-8.28086962486319e-05,-0.0873077387983826,0.0657062788010492,0.088155080353721,0.109068078070694 +2.462,0.0374571095945726,-0.034120021970491,-0.000108533575265038,-0.087345843925221,0.0656984940805692,0.0881573610948474,0.10908368686809 +2.464,0.0374788212180921,-0.0341140249741233,-0.000119959981442222,-0.087364753138421,0.065705663552381,0.0881475726529849,0.10910695648317 +2.466,0.0375208045243547,-0.0340940056175113,-0.000149653804024888,-0.0874083142366126,0.0656991805770013,0.088148750193498,0.109125236354731 +2.468,0.0375455326661327,-0.0340861747728091,-0.000163556166246401,-0.0874307556174415,0.0657048644138426,0.0881407314354195,0.109148296575768 +2.47,0.0375860275925477,-0.0340672564105193,-0.000191772225189055,-0.0874722741480392,0.0656992220998821,0.0881413808415348,0.109167028389477 +2.472,0.0376100102427732,-0.0340599769768039,-0.000204924480321722,-0.0874939582758235,0.0657051716442666,0.0881334914734302,0.109190337322253 +2.474,0.0376512771047762,-0.0340403989525279,-0.000233888905601998,-0.0875363844164174,0.0656985891680398,0.0881347209343987,0.109208642229453 +2.476,0.037675506387823,-0.0340314184759398,-0.000248246066037308,-0.0875598623429686,0.0657004415643329,0.0881307306724529,0.109228268019534 +2.478,0.0377112569698716,-0.0340152219506705,-0.000272525879022309,-0.087595602060751,0.0656976960142793,0.0881283596735126,0.109247241302265 +2.48,0.0377325993419123,-0.0340097766841801,-0.00028330329682201,-0.0876138942612859,0.0657062725582468,0.0881183440978944,0.109271338700716 +2.482,0.0377766903493155,-0.0339883427937451,-0.000314704251553666,-0.0876595179773517,0.0656984890611347,0.0881204699682439,0.109289112037707 +2.484,0.0378023372686678,-0.033979838790478,-0.000329358890774539,-0.0876830192437429,0.0657034690682083,0.0881131179467106,0.109311925773118 +2.486,0.0378423692779713,-0.0339613145959806,-0.000357036806500358,-0.0877238807228503,0.0656981863234041,0.0881135749287658,0.109330965890321 +2.488,0.0378660625669555,-0.0339542875422112,-0.00036985852947663,-0.0877452258639921,0.0657043111045462,0.088105568851423,0.109354497361347 +2.49,0.0379076892830283,-0.0339344444449322,-0.000399122022687631,-0.0877880463802843,0.0656973428140626,0.0881069048173203,0.109372763365374 +2.492,0.037932229407779,-0.0339267325219216,-0.000412782449343271,-0.0878104336252594,0.06570255409106,0.0880993244501193,0.109395891005157 +2.494,0.0379725413195236,-0.0339077795805488,-0.000440886462054244,-0.087851820286737,0.0656963885595128,0.0881000846325256,0.109414504441096 +2.496,0.0379964560718596,-0.0339004914021206,-0.000453994149705511,-0.0878735042439892,0.0657019990392508,0.0880921868306392,0.109437791660381 +2.498,0.0380370234417242,-0.0338812468192681,-0.000482389987208953,-0.0879152294093978,0.0656955277154683,0.0880930609800051,0.109456165902113 +2.5,0.038061111932274,-0.0338737639648902,-0.000495686733337553,-0.0879371192415439,0.0657009853296429,0.0880852272428012,0.10947929672494 +2.502,0.03810129378965,-0.0338547513403743,-0.000523731251970749,-0.0879783848757888,0.065694831332976,0.0880859038610659,0.109497728359288 +2.504,0.0381252262124773,-0.0338473357278346,-0.000536888439494218,-0.0880000842981097,0.0657004571276279,0.0880779998578121,0.10952084911595 +2.506,0.0381654829308827,-0.0338282284402428,-0.000564992694059574,-0.088041394428664,0.0656943068005399,0.0880786863613664,0.109539192002587 +2.508,0.0381894824185309,-0.0338207216960949,-0.000578210763925252,-0.088063157899623,0.0656999428044355,0.0880708235958981,0.109562234333376 +2.51,0.0382296675188909,-0.0338016533574664,-0.000606224122789115,-0.0881043313968784,0.065693931306622,0.0880714467834282,0.109580577573594 +2.512,0.0382536478231791,-0.0337941364568842,-0.000619416123360639,-0.0881260573636077,0.0656996444109574,0.0880635810935266,0.109603598133667 +2.514,0.0382938797616333,-0.0337750295462203,-0.00064744835396692,-0.088167237478996,0.0656936653398642,0.0880641954183739,0.109621918622626 +2.516,0.0383178913871185,-0.0337674771841408,-0.000660659900287242,-0.0881889861242856,0.0656993974471992,0.0880563420659649,0.109644918588342 +2.518,0.0383581268786338,-0.0337483728040107,-0.000688672789087408,-0.0882301356123329,0.0656934605786677,0.0880569318009638,0.109663251719009 +2.52,0.0383821415880446,-0.0337408175510477,-0.000701876450855635,-0.0882518772277341,0.065699211450666,0.0880490715106563,0.109686260276293 +2.522,0.0384224065452063,-0.0337216997701755,-0.00072989849337253,-0.0882930401001465,0.0656932681452538,0.0880496560694888,0.109704608659173 +2.524,0.0384464344837875,-0.0337141415198668,-0.000743103369742204,-0.0883147897925662,0.0656990083801076,0.0880417908801607,0.109727635110754 +2.526,0.0384867149595399,-0.0336950223571274,-0.000771124879181267,-0.0883559611165663,0.0656930468691685,0.0880423719004645,0.109746012151475 +2.528,0.0385107484210581,-0.0336874713094202,-0.00078432329066859,-0.0883777128183904,0.0656987674646116,0.0880344984910157,0.109769067632433 +2.53,0.0385510494746949,-0.0336683464646371,-0.000812351266674449,-0.0884189055190439,0.0656927692355655,0.0880350846041322,0.109787474734867 +2.532,0.0385750918680701,-0.033660801229749,-0.000825546157118079,-0.0884406650260618,0.0656984598997041,0.0880272059270275,0.109810561057778 +2.534,0.0386154087108075,-0.0336416728560394,-0.000853577077182713,-0.0884818765905803,0.0656924234937392,0.0880277983163034,0.109828999980807 +2.536,0.0386394591142287,-0.0336341329701477,-0.000866767545508781,-0.0885036435661345,0.0656980845314225,0.0880199151934538,0.109852116772416 +2.538,0.0386797920878449,-0.0336149987349023,-0.000894801764596914,-0.0885448742197168,0.0656920120232088,0.0880205143938966,0.109870584919383 +2.54,0.0387038522885608,-0.0336074601278335,-0.000907989699491102,-0.0885666504899545,0.0656976468459737,0.0880126281239262,0.109893728224883 +2.542,0.0387441995272134,-0.0335883193139368,-0.000936024856986142,-0.0886078958102187,0.0656915472097124,0.0880132313439739,0.109912222819349 +2.544,0.0387682699329751,-0.0335807783340784,-0.000949210986450733,-0.0886296809389998,0.0656971633037198,0.0880053417671856,0.109935388146044 +2.546,0.0388086313658064,-0.0335616291278326,-0.00097724607858049,-0.0886709375605958,0.0656910464396431,0.0880059457209185,0.10995390571474 +2.548,0.0388327128567687,-0.0335540818664187,-0.000990431593041144,-0.0886927313337499,0.0656966516749348,0.08799805230042,0.109977088478805 +2.55,0.0388730883176769,-0.0335349230280193,-0.001018465429522,-0.088733995648355,0.0656905275568409,0.0879986532876475,0.109995626326664 +2.552,0.0388971812443411,-0.033527366601477,-0.00103165093408962,-0.0887557972107013,0.065696129304811,0.0879907549463833,0.110018823043477 +2.554,0.0389375713720127,-0.0335081968459406,-0.00105968316092686,-0.088797067029687,0.0656900055854649,0.0879913499723647,0.110037379243122 +2.556,0.0389616760722357,-0.0335006292503615,-0.00107286910621084,-0.08881887568943,0.0656956092834393,0.0879834455774731,0.110060587697627 +2.558,0.0390020816224194,-0.0334814477293144,-0.00110089966239889,-0.0888601497877881,0.0656894909781287,0.0879840324423994,0.110079161385198 +2.56,0.0390261981911037,-0.0334738680403093,-0.00111408611659625,-0.0888819648575933,0.0656950999506525,0.0879761208615576,0.110102380742583 +2.562,0.039066620082931,-0.0334546741832062,-0.00114211531963497,-0.088923243114416,0.0656889892447696,0.0879766983161459,0.110120971899143 +2.564,0.0390907485353941,-0.0334470822889146,-0.00115530214623284,-0.0889450641221893,0.0656946047281435,0.087968778578389,0.110144202411669 +2.566,0.0391311875490521,-0.0334278758814452,-0.00118333039768885,-0.0889863470688852,0.0656885015916998,0.0879693461213159,0.110162811670537 +2.568,0.0391553277958707,-0.0334202722721246,-0.00119651727437872,-0.0890081736910109,0.0656941232426675,0.0879614174366381,0.110186054332081 +2.57,0.0391957845337525,-0.0334010533379252,-0.00122454498083059,-0.0890494622526729,0.0656880261295018,0.0879619751182653,0.110204682664063 +2.572,0.0392199364574323,-0.0333934387972609,-0.00123773151987711,-0.0890712943333238,0.0656936525927229,0.0879540369093913,0.110227938802742 +2.574,0.0392604112763554,-0.0333742075315304,-0.00126575897269292,-0.0891125895003049,0.065687559246773,0.0879545850816402,0.11024658726218 +2.576,0.0392845747525688,-0.0333665829012964,-0.00127894478468327,-0.0891344269994294,0.0656931887500083,0.0879466369707354,0.110269858209557 +2.578,0.0393250678018802,-0.0333473395632669,-0.0013069721416518,-0.0891757296433847,0.0656870968469738,0.0879471760996011,0.110288527723812 +2.58,0.039349242735613,-0.03333970555654,-0.00132015690293656,-0.0891975726115052,0.065692727661553,0.0879392178921424,0.110311814574959 +2.582,0.0393897540022621,-0.0333204503970479,-0.00134818418867436,-0.0892388833674528,0.0656866352679588,0.0879397484199747,0.110330505825615 +2.584,0.0394139403373929,-0.0333128075012938,-0.00136136767077479,-0.089260731908325,0.0656922660177542,0.0879317800733133,0.110353809317891 +2.586,0.0394544697150164,-0.0332935407056212,-0.00138939481593352,-0.0893020511553021,0.0656861718191394,0.0879323023506447,0.110372522696107 +2.588,0.0394786674379243,-0.0332858891539598,-0.00140257689631727,-0.0893239054021401,0.0656918016187334,0.0879243239407018,0.110395843186734 +2.59,0.0395192147838057,-0.0332666108176814,-0.00143060378047158,-0.0893652332955911,0.0656857049615863,0.0879248382074003,0.110414578814735 +2.592,0.0395434239143331,-0.0332589506181748,-0.00144378443033401,-0.0893870933902128,0.0656913334194886,0.0879168498926028,0.110437916334249 +2.594,0.039583989094653,-0.0332396607450653,-0.00147181092483828,-0.0894284299301505,0.0656852342135267,0.0879173562951692,0.110456674126467 +2.596,0.0396082096739069,-0.0332319917416972,-0.00148499018590417,-0.0894502960104748,0.0656908613404331,0.0879093582827981,0.110480028473828 +2.598,0.0396487925888477,-0.0332126902609433,-0.00151301618362061,-0.0894916411149522,0.0656847598878201,0.0879098569069029,0.110498808216678 +2.6,0.0396730246653361,-0.0332050122068856,-0.00152619413890887,-0.089513513306587,0.0656903859592704,0.0879018494226176,0.110522179067081 +2.602,0.0397136252580525,-0.0331856989996824,-0.00155421956995189,-0.0895548668756264,0.0656842827649688,0.0879023403267535,0.110540980497086 +2.604,0.0397378688765071,-0.0331780116250183,-0.00156739631595078,-0.0895767452875567,0.0656899081780827,0.0878943235891256,0.110564367498939 +2.606,0.0397784871289152,-0.0331586865541299,-0.00159542114902282,-0.0896181072462199,0.0656838037840335,0.0878948068288977,0.11058319036652 +2.608,0.0398027423227869,-0.0331509896179374,-0.00160859677291918,-0.0896399919684861,0.0656894289376211,0.0878867810293651,0.110606593213843 +2.61,0.0398433782442162,-0.0331316525538845,-0.00163662100643742,-0.0896813622875156,0.0656833238040706,0.0878872566686972,0.110625437325871 +2.612,0.0398676450325819,-0.0331239458759456,-0.00164979557092687,-0.0897032533903978,0.0656889490170543,0.0878792219575141,0.110648855800706 +2.614,0.0399082986460037,-0.033104596716378,-0.00167781921840343,-0.0897446320872253,0.0656828434585573,0.0878796900674441,0.110667721041007 +2.616,0.0399325770341379,-0.0330968801891967,-0.00169099275427742,-0.0897665296212999,0.0656884689299732,0.0878716465456738,0.110691155027588 +2.618,0.0399732483640101,-0.033077518869746,-0.00171901582883051,-0.089807916748003,0.0656823631004998,0.0878721071948243,0.110710041358489 +2.62,0.039997538346592,-0.0330697924546683,-0.00173218833444055,-0.0898298207451214,0.0656879889052854,0.0878640549122661,0.110733490835325 +2.622,0.0400382274104971,-0.0330504189515846,-0.00176021083602991,-0.0898712163704234,0.0656818828194549,0.0878645081541715,0.110752398285742 +2.624,0.0400625289760917,-0.0330426826645172,-0.0017733822817977,-0.08989312684565,0.0656875089293927,0.0878564471126845,0.110775863303786 +2.626,0.040103235780945,-0.033023296990552,-0.0018014041894277,-0.0899345310373336,0.0656814025040198,0.087856892974862,0.110794791949884 +2.628,0.0401275489165936,-0.0330155508828349,-0.00181457452535974,-0.0899564479919485,0.065687028821775,0.0878488231361921,0.11081827260486 +2.63,0.0401682734588901,-0.0329961530785658,-0.00184259579487454,-0.0899978608039613,0.0656809219231183,0.0878492616143193,0.110837222548751 +2.632,0.0401925981539084,-0.0329883972176829,-0.00185576495913448,-0.0900197842294261,0.0656865483186888,0.0878411829111555,0.110860718954219 +2.634,0.0402333404227827,-0.0329689873406207,-0.00188378552597708,-0.0900612056957209,0.065680440804351,0.0878416139698154,0.110879690304766 +2.636,0.0402576766712566,-0.0329612217939774,-0.00189695345297299,-0.0900831355783144,0.0656860671461712,0.0878335263185614,0.110903202570291 +2.638,0.0402984366528337,-0.0329417999075493,-0.0019249732384265,-0.0901245657133393,0.0656799588951684,0.0878339498981413,0.110922195428477 +2.64,0.040322784454671,-0.0329340247310214,-0.00193813986537528,-0.0901465020390077,0.0656855850716138,0.0878258532118226,0.110945723645031 +2.642,0.0403635621363273,-0.0329145908950233,-0.00196615878445312,-0.0901879408432802,0.0656794760004912,0.0878262692397604,0.11096473809481 +2.644,0.0403879214970184,-0.0329068061266271,-0.00197932405590155,-0.0902098836021471,0.0656851019307124,0.0878181634395832,0.110988282327596 +2.646,0.0404287168705471,-0.0328873603901433,-0.00200734202512379,-0.0902513310705815,0.065678991996993,0.087818571843431,0.111007318431964 +2.648,0.0404530877999713,-0.0328795660482259,-0.00202050589534057,-0.0902732802605888,0.0656846176324107,0.087810456867816,0.11103087871952 +2.65,0.0404939008631432,-0.0328601084454129,-0.00204852283902551,-0.0903147363911799,0.0656785068287372,0.0878108575875313,0.111049936520785 +2.652,0.0405182833738436,-0.0328523045301993,-0.00206168527250297,-0.0903366920204542,0.0656841321478972,0.0878027333978559,0.11107351287852 +2.654,0.0405591141303135,-0.0328328350788526,-0.00208970112673912,-0.0903781568213322,0.0656780204910141,0.0878031263951759,0.111092592401411 +2.656,0.0405835082356472,-0.0328250215760395,-0.0021028620972276,-0.0904001189090738,0.0656836454909457,0.0877949929779603,0.111116184827594 +2.658,0.040624356693525,-0.032805540278495,-0.00213087681127277,-0.0904415924027238,0.0656775330093822,0.0877953782415664,0.111135286083845 +2.66,0.0406486550074645,-0.0327963332913479,-0.00214485940113707,-0.0904648899114625,0.0656795086491811,0.0877908741674512,0.111155401577779 +2.662,0.0406845817135437,-0.0327798476697836,-0.00216877004849748,-0.0905003763940737,0.0656769432564124,0.0877879098220743,0.111174994868531 +2.664,0.040706234139623,-0.0327740084324092,-0.00217945596831914,-0.0905187603695639,0.0656855929317509,0.0877774488993175,0.111199545224288 +2.666,0.0407507505340392,-0.0327522353035717,-0.0022105273159313,-0.0905642236743593,0.0656780234291201,0.0877790322828109,0.111218214737323 +2.668,0.0407767984263914,-0.0327433403620698,-0.0022250554590747,-0.0905878313831942,0.0656830600616543,0.0877712715816199,0.111241638091195 +2.67,0.0408132035058955,-0.0327256637707556,-0.00224982902130522,-0.0906251183059185,0.0656767406846412,0.0877726376535961,0.111258731319552 +2.672,0.0408348791687334,-0.0327196518007455,-0.00226060717441418,-0.0906435362934052,0.0656848515678128,0.087762209373367,0.111282967815808 +2.674,0.0408793331216166,-0.032698126644503,-0.00229150545809867,-0.0906889322313121,0.0656776836398292,0.0877635776023381,0.111302132142048 +2.676,0.0409053206606294,-0.0326894446737158,-0.00230588224349151,-0.0907123557279724,0.0656830068146915,0.0877554609769327,0.111325941398126 +2.678,0.040946842271991,-0.0326700800225182,-0.00233405467061663,-0.0907542924775359,0.0656773600503429,0.087755755714239,0.111346089999792 +2.68,0.0409715597309463,-0.0326610079629006,-0.0023480869747371,-0.0907779046845953,0.0656794500187603,0.0877512134270303,0.111367023062217 +2.682,0.0410090020998763,-0.0326438032024923,-0.00237309422334307,-0.0908149879489238,0.0656759153741238,0.0877487847260515,0.111387012458109 +2.684,0.041031302107697,-0.0326378152660659,-0.00238413838969469,-0.0908340305161364,0.0656839990230986,0.0877384338160541,0.111412051395821 +2.686,0.0410764939083369,-0.0326158847242272,-0.00241559724174124,-0.0908803057810643,0.0656758620185875,0.0877403252259325,0.11143135375326 +2.688,0.0411027481458923,-0.0326071076033195,-0.00243013074616795,-0.0909041372593932,0.0656805403574545,0.0877325017756622,0.111455330452968 +2.69,0.0411397139062437,-0.032589207661884,-0.0024552837476166,-0.0909421790802398,0.0656735610704308,0.0877341171413074,0.111472812113571 +2.692,0.041161611644166,-0.0325832110769738,-0.00246613586657939,-0.0909608316056078,0.0656812964402343,0.0877235899483324,0.111497420186717 +2.694,0.0412062431212967,-0.0325616309985622,-0.00249711342388594,-0.0910065640720688,0.065673800507937,0.0877250441215389,0.111516936445276 +2.696,0.0412322896219151,-0.0325529830753407,-0.00251145211062995,-0.09103005123472,0.0656789614674635,0.0877167943884776,0.111541033147619 +2.698,0.0412739803628265,-0.0325335053856002,-0.00253970279073736,-0.0910722409200206,0.0656731192690975,0.0877171135368922,0.111561390993377 +2.7,0.0412987737880464,-0.032524378937943,-0.00255373049495385,-0.0910959324092692,0.0656751567154492,0.0877124866089411,0.111582482110091 +2.702,0.0413362955899404,-0.0325070799355519,-0.00257873815215581,-0.0911330951320936,0.0656716334087213,0.0877099999450893,0.111602592476364 +2.704,0.0413586644025979,-0.0325009815487993,-0.00258979446016377,-0.0911521804851066,0.0656797863403362,0.0876995614797231,0.111627685510004 +2.706,0.0414039430113521,-0.0324789384955361,-0.00262123695950758,-0.0911984805238485,0.065671797797922,0.0877013714267497,0.111647075735898 +2.708,0.0414302738018861,-0.0324700193774586,-0.00263578574785268,-0.0912223433217451,0.0656766310548221,0.0876934731434119,0.111671062448162 +2.71,0.0414673277112926,-0.0324519985149195,-0.00266092265472541,-0.0912603822264862,0.0656698624722447,0.0876949907913088,0.111688583215559 +2.712,0.0414892970531359,-0.0324458441194909,-0.00267180253223302,-0.0912790672817425,0.0656777848533598,0.0876844017460076,0.111713162364854 +2.714,0.0415340259547682,-0.0324241516377072,-0.00270275733874188,-0.0913247654388617,0.0656705401747893,0.0876857255887952,0.111732733228272 +2.716,0.0415601438001158,-0.0324153629085381,-0.00271710917651899,-0.0913482649069493,0.065675901397509,0.0876773971473064,0.111756822317736 +2.718,0.0416019451731367,-0.0323957684201169,-0.00274535474025422,-0.0913904494265299,0.0656702722874707,0.0876776033970102,0.111777235957009 +2.72,0.0416266280165337,-0.0323880524045032,-0.00275834544027967,-0.091412471624613,0.0656762592658404,0.0876690652281811,0.111801817168143 +2.722,0.0416695131596668,-0.0323674818660146,-0.0027876795718679,-0.0914560032562573,0.065669217749545,0.0876700024795199,0.111821579918379 +2.724,0.0416947962666883,-0.0323592430921015,-0.00280126752139703,-0.0914788000566446,0.0656744181546505,0.0876618563659279,0.111845805548088 +2.726,0.0417364774011414,-0.032339428618894,-0.00282958222334996,-0.091521066184946,0.0656680140857135,0.0876623105223645,0.111865757039459 +2.728,0.0417612033346828,-0.0323315298913942,-0.00284270512829937,-0.0915432668831855,0.0656735380750073,0.0876539055994787,0.111890046236038 +2.73,0.041802914797512,-0.0323115516069895,-0.00287112106542925,-0.0915856159349748,0.0656669840650193,0.0876543648285198,0.111909757597916 +2.732,0.0418277114628157,-0.0323035042404447,-0.00288435386140444,-0.0916079047261178,0.0656724442636749,0.0876459735397351,0.111933871313899 +2.734,0.0418690180551069,-0.0322837393218329,-0.00291242330454419,-0.0916497795017424,0.065666229319076,0.0876462214092438,0.111953578259501 +2.736,0.0418936579404553,-0.0322757328240635,-0.00292553331428408,-0.0916718804175248,0.065671876139804,0.0876377612993651,0.11197763434835 +2.738,0.0419349662046344,-0.0322559069512683,-0.00295360437701513,-0.0917137056672935,0.0656657404392541,0.0876379770582946,0.111997237628912 +2.74,0.0419596424860892,-0.0322478142935482,-0.00296675564498138,-0.0917358327135885,0.0656714387169904,0.0876295482356572,0.112021196414776 +2.742,0.0420008744446407,-0.0322280193733438,-0.00299473781412464,-0.091777507969364,0.0656654604583152,0.0876296962575445,0.112040776740836 +2.744,0.0420255325626906,-0.0322199065299209,-0.00300786904817121,-0.0917995987487554,0.0656712439492523,0.0876212728268374,0.11206469655016 +2.746,0.0420667974113844,-0.0322000799928536,-0.00303585821060434,-0.0918412574152833,0.0656653145188692,0.0876214057656358,0.112084249304615 +2.748,0.0420914808136132,-0.0321919347012079,-0.00304900403626433,-0.0918633643625374,0.0656711204268701,0.0876129988204502,0.112108145944137 +2.75,0.0421327520651635,-0.0321721100664581,-0.00307697601449058,-0.0919049950261158,0.0656652248558418,0.0876131123626161,0.112127709320573 +2.752,0.0421574396512748,-0.0321639648959233,-0.00309011338622066,-0.0919270986771133,0.0656710379219883,0.0876047046205901,0.112151617147931 +2.754,0.0421987388564351,-0.0321441323248366,-0.0031180910260787,-0.0919687450320069,0.0656651216523223,0.0876048182477826,0.112171201288078 +2.756,0.0422234381880824,-0.0321359921320803,-0.00313122482390908,-0.0919908583134458,0.065670908180633,0.0875964088855876,0.11219513532623 +2.758,0.0422647541047136,-0.0321161625968387,-0.0031592003597201,-0.0920325223572189,0.0656649518630621,0.0875965271165702,0.112214755098286 +2.76,0.042289459132506,-0.0321080372502732,-0.00317232364970581,-0.0920546417425605,0.0656706989242792,0.087588112714454,0.112238727484419 +2.762,0.0423307948041824,-0.0320882077892824,-0.00320030167093653,-0.092096335371881,0.0656646845151759,0.0875882436352242,0.112258385374183 +2.764,0.0423555085085635,-0.0320800956035602,-0.00321341674256509,-0.0921184660677888,0.0656703829671107,0.0875798264945289,0.112282397536045 +2.766,0.0423968594141522,-0.0320602672818266,-0.00324139382769233,-0.0921601867852434,0.0656643112137653,0.0875799709247314,0.112302093924068 +2.768,0.042421581600762,-0.032052165673558,-0.00325450079948379,-0.0921823289221829,0.0656699640588397,0.0875715520580182,0.112326143212125 +2.77,0.0424629474029217,-0.0320323354715677,-0.00328247670410094,-0.092224074638627,0.0656638422359836,0.0875717089577425,0.112345873756397 +2.772,0.0424876799338249,-0.0320242383423993,-0.00329557820297477,-0.0922462295119826,0.0656694573696825,0.0875632895689106,0.112369953601163 +2.774,0.0425290588180411,-0.0320044042662406,-0.00332355087418545,-0.0922879939246575,0.0656632999182863,0.0875634545973573,0.112389713365684 +2.776,0.0425538023083478,-0.0319963058679929,-0.00333664866144689,-0.0923101607192379,0.0656688893601668,0.0875550344605517,0.112413816664163 +2.778,0.04259519412213,-0.0319764650761532,-0.00336461737853762,-0.0923519384840412,0.0656627114315441,0.087555202744421,0.112433600417464 +2.78,0.0426199493742789,-0.0319683599435182,-0.00337771337462091,-0.0923741163632229,0.0656682871360623,0.0875467810732516,0.11245772060385 +2.782,0.0426613541395101,-0.0319485102138257,-0.00340567751480339,-0.0924159026355591,0.0656621026446117,0.0875469477635449,0.112477524374698 +2.784,0.0426861214071989,-0.0319403943919771,-0.00341877287734825,-0.092438090272205,0.0656676749396994,0.0875385232143804,0.112501656718684 +2.786,0.0427275399597593,-0.0319205337305584,-0.00344673260703512,-0.092479882193024,0.0656614940245349,0.0875386846017683,0.112521477945773 +2.788,0.0427523194095246,-0.0319124046934184,-0.00345982803489855,-0.0925020785138113,0.0656670700964345,0.0875302557531592,0.112545619760287 +2.79,0.0427937527641898,-0.0318925317545705,-0.00348778377185185,-0.0925438748107715,0.0656608987762001,0.0875304093794648,0.112565457475734 +2.792,0.0428185443411059,-0.0318843884638108,-0.00350087936172477,-0.0925660789247007,0.0656664825544817,0.0875219748402302,0.112589608059087 +2.794,0.0428599936273713,-0.0318645024207473,-0.00352883173437135,-0.0926078798049474,0.0656603228878015,0.0875221195015893,0.112609462545736 +2.796,0.0428847972138039,-0.0318563449445777,-0.00354192718916294,-0.0926300911543756,0.065665915371439,0.0875136780569878,0.112633622687563 +2.798,0.0429262633626484,-0.0318364455094012,-0.00356987673872798,-0.0926718976793991,0.0656597664720542,0.0875138134583243,0.112653495100904 +2.8,0.042951078776508,-0.0318282746636912,-0.00358297147032383,-0.0926941159438343,0.0656653665718289,0.0875053640854484,0.112677666511794 +2.802,0.0429925624524027,-0.0318083619276152,-0.00361091856623325,-0.0927359295708581,0.0656592257391027,0.0875054904947195,0.11269755841091 +2.804,0.0430173895169145,-0.0318001788562428,-0.00362401187648262,-0.0927581546284308,0.0656648311755804,0.087497032380638,0.112721743134533 +2.806,0.0430588910651562,-0.0317802531610056,-0.00365195664200893,-0.0927999767655489,0.0656586950330162,0.0874971502840982,0.112741656103627 +2.808,0.0430837296291539,-0.0317720590155926,-0.00366504784594011,-0.0928222086078634,0.0656643031787277,0.0874886828128761,0.112765856058874 +2.81,0.0431252491342906,-0.0317521207965501,-0.00369299019170422,-0.0928640403664347,0.0656581685361498,0.0874887926814378,0.112785791425102 +2.812,0.0431500990999488,-0.0317439165061782,-0.00370607872191213,-0.0928862790504503,0.0656637770294163,0.0874803154253081,0.112810008103882 +2.814,0.0431916364631961,-0.0317239661774867,-0.00373401840620857,-0.0929281211285966,0.065657641435053,0.0874804175821274,0.112829966790921 +2.816,0.0432164977895354,-0.0317157523391503,-0.00374710386357462,-0.0929503667362927,0.0656632485451399,0.0874719302858096,0.112854201127776 +2.818,0.043258052825451,-0.0316957902105177,-0.00377504058017114,-0.0929922194383221,0.0656571105075157,0.0874720248762761,0.112874183621057 +2.82,0.0432829255249647,-0.0316875670729358,-0.00378812274822324,-0.0930144720604125,0.0656627152551658,0.0874635274411524,0.112898436000792 +2.822,0.0433244980394886,-0.0316675933125172,-0.00381605620370593,-0.0930563353897319,0.0656565742103333,0.0874636144692996,0.112918442401246 +2.824,0.0433493821637826,-0.0316593608312045,-0.00382913502838689,-0.0930785951195715,0.065662176305761,0.087455106932882,0.112942712763018 +2.826,0.0433909720093335,-0.0316393754630861,-0.00385706500082754,-0.0931204689078483,0.06565603241447,0.0874551863333783,0.112962742890455 +2.828,0.0434158676323883,-0.0316311333916941,-0.00387014055143342,-0.0931427358440202,0.0656616320816425,0.0874466688450044,0.112987030878594 +2.83,0.0434574747329243,-0.0316111363209884,-0.00389806691969288,-0.0931846198738932,0.065655485953007,0.0874467405579891,0.113007084392509 +2.832,0.043482381934043,-0.0316028843119789,-0.00391113934101221,-0.0932068941236309,0.0656610837118738,0.0874382133497652,0.113031389513156 +2.834,0.043524006285862,-0.0315828753643425,-0.00393906208714599,-0.0932487882222048,0.0656549361293445,0.087438277377366,0.113051466023845 +2.836,0.0435489251362657,-0.0315746130571901,-0.00395213155356794,-0.0932710699029135,0.0656605325907433,0.0874297407318299,0.113075787777287 +2.838,0.0435905667911177,-0.0315545920228401,-0.00398005074325293,-0.0933129739937676,0.0656543842933268,0.0874297971647576,0.113095886931258 +2.84,0.0436154973451718,-0.0315463191081169,-0.00399311742101241,-0.0933352632302094,0.0656599800023228,0.087421251381118,0.113120224904146 +2.842,0.0436527921500673,-0.0315276404717307,-0.00401820584245836,-0.0933734186231761,0.0656527496235163,0.0874226278208887,0.113137427582488 +2.844,0.0436753224314783,-0.0315206827135289,-0.00402944399652148,-0.093392674261193,0.0656602631998698,0.0874120395669408,0.11316170141885 +2.846,0.0437188639419356,-0.0314995833077782,-0.00405890090698058,-0.0934366567805207,0.0656541820622514,0.0874123448030154,0.113181869782392 +2.848,0.0437446639736959,-0.0314907610164757,-0.00407268432440905,-0.0934596165810727,0.0656600624091252,0.0874035402765671,0.113206229304382 +2.85,0.0437868435078798,-0.0314707255791115,-0.00410077742346375,-0.0935018107896892,0.0656545416473392,0.0874034344432897,0.113226942901798 +2.852,0.0438119306101541,-0.0314625250277329,-0.00411379801547132,-0.0935241045995036,0.0656605035085727,0.087394766391843,0.113251708136769 +2.854,0.0438505865079196,-0.0314431822083569,-0.00413983734940199,-0.0935635920005922,0.0656527080112308,0.0873966288116237,0.113269177321331 +2.856,0.0438737115316084,-0.0314359905133432,-0.00415143463893344,-0.0935834510907004,0.0656598687424283,0.0873862496864187,0.113293716840319 +2.858,0.0439178028788196,-0.0314147655260368,-0.00418117560165507,-0.0936279905278771,0.0656534823742533,0.0873867700925502,0.113314329032612 +2.86,0.0439437741989934,-0.0314060231968337,-0.00419495984998197,-0.0936511245144634,0.0656591497998055,0.087377968848085,0.113339078724685 +2.862,0.0439864852659668,-0.0313857761971718,-0.00422340154178288,-0.0936939712778155,0.0656531051939708,0.0873780971386627,0.113360077052601 +2.864,0.0440117634076965,-0.0313775946830078,-0.00423648100809473,-0.0937164810787789,0.0656587539411864,0.0873694028464278,0.113385137697051 +2.866,0.0440549630445622,-0.0313568695742088,-0.004265424046834,-0.0937600294991089,0.0656517282493947,0.0873700191462686,0.113405814500705 +2.868,0.0440805199281979,-0.0313484482583027,-0.00427877375375416,-0.0937829532510679,0.0656568127489541,0.0873615654319176,0.11343071499801 +2.87,0.0441229120736243,-0.0313281919979918,-0.00430706230805539,-0.0938257206277008,0.06565007287796,0.087361894712274,0.113451466121924 +2.872,0.0441481055782165,-0.0313199740739621,-0.00432012183250344,-0.093848277387756,0.0656553112841824,0.0873532641271066,0.113476381237778 +2.874,0.0441903645588482,-0.0312996811747316,-0.00434835716894903,-0.09389095568101,0.0656485527213652,0.0873535290609208,0.113496970164974 +2.876,0.0442155437074332,-0.0312913750874525,-0.00436144764583919,-0.0939135042739158,0.0656538100883287,0.0873448659757587,0.113521745382137 +2.878,0.0442574904989781,-0.0312712139514703,-0.00438942821296094,-0.0939558171842086,0.0656473427598182,0.0873449560669164,0.113542286260567 +2.88,0.0442825605624124,-0.0312628953538861,-0.00440244730777767,-0.0939782307858517,0.0656527830686928,0.0873362385713672,0.113566970330394 +2.882,0.0443244607447756,-0.0312426951347284,-0.00443038876717185,-0.0940204297787109,0.0656464807304976,0.0873362612420829,0.113587410964569 +2.884,0.0443495442916005,-0.0312342863287241,-0.00444343544627968,-0.094042838438573,0.0656520373833212,0.0873275575185107,0.113611985202981 +2.886,0.044391389892687,-0.0312140845279166,-0.00447131197721212,-0.094084898061728,0.0656459302418533,0.0873275057592432,0.113632376813142 +2.888,0.0444164677231913,-0.0312056244292814,-0.00448435744958725,-0.0941072792180966,0.065651610400378,0.0873188065679056,0.113656885437847 +2.89,0.0444583347713334,-0.0311853864307958,-0.00451223153228471,-0.0941492937285633,0.0656456148614956,0.0873187177252818,0.113677239714475 +2.892,0.0444833645071246,-0.0311755286142009,-0.00452608328347767,-0.0941730825582837,0.0656477040621807,0.0873137762373705,0.113698247481369 +2.894,0.0445201353875624,-0.0311583229029735,-0.0045498458603947,-0.0942089482586392,0.0656453311197138,0.0873102556507826,0.113718870070236 +2.896,0.0445423857016444,-0.0311518129146254,-0.0045604542895913,-0.0942276827231761,0.0656541864280201,0.0872992175209134,0.113744170603528 +2.898,0.0445879842880487,-0.031129261749926,-0.00459139248366555,-0.0942736266449557,0.0656468742859528,0.0873002858888545,0.113764146986105 +2.9,0.0446147317833386,-0.0311196704272191,-0.00460581758581938,-0.0942976147168139,0.0656520867695492,0.0872919647367098,0.113788438885588 +2.902,0.0446565195791827,-0.0310998925093927,-0.00463329275005073,-0.0943392236728516,0.0656469856917391,0.0872915830471077,0.11380962082898 +2.904,0.0446816902812794,-0.0310902180080087,-0.0046470352729007,-0.0943630492757532,0.0656493237650086,0.0872866342179115,0.113831191432211 +2.906,0.0447197024807925,-0.0310723800495958,-0.00467170072780299,-0.0944001923063919,0.0656461251833545,0.087283598794015,0.113852008636109 +2.908,0.0447425236442267,-0.0310657016219265,-0.00468264332099802,-0.0944195265468212,0.0656544249377934,0.0872727393506615,0.113877617471265 +2.91,0.0447884823375332,-0.0310431681896276,-0.00471372241873474,-0.0944659347847763,0.0656466952760705,0.0872740115899641,0.11389811469159 +2.912,0.0448153146862916,-0.0310337658310294,-0.00472806696536475,-0.0944900394189814,0.0656515652094592,0.0872656492635326,0.113922875769745 +2.914,0.0448575366444878,-0.0310138502569217,-0.00475582195795826,-0.0945322754859419,0.0656457892344741,0.0872655021197853,0.113944375417371 +2.916,0.0448825881215237,-0.031005817260947,-0.00476850868267387,-0.0945545160829451,0.0656515436373146,0.0872565927460409,0.113969790111132 +2.918,0.0449261567940136,-0.0309847562518355,-0.00479757093320912,-0.0945984361505925,0.0656441776464507,0.0872572227924156,0.113990618981458 +2.92,0.0449519441691785,-0.0309761143756651,-0.00481096545877793,-0.094621577885336,0.0656490704329856,0.0872486744438644,0.114015669639701 +2.922,0.0449942268975475,-0.0309558996064565,-0.0048389264233366,-0.0946641628819062,0.0656424686757456,0.0872487678526749,0.114036761859513 +2.924,0.0450194189616838,-0.0309476331088408,-0.00485181728653621,-0.0946866603150955,0.0656477658679992,0.087239928391019,0.11406190565805 +2.926,0.0450618700180229,-0.0309271617505597,-0.00487998779472044,-0.09472946251099,0.0656409772073145,0.0872400795142099,0.114082734457125 +2.928,0.0450872041529564,-0.0309186845910747,-0.0048930486453917,-0.0947521181170925,0.0656462117098638,0.0872312909331019,0.114107676300273 +2.93,0.0451292703512101,-0.0308984170441505,-0.00492088381958705,-0.0947944446578353,0.0656398268503428,0.0872312296129646,0.114128502751134 +2.932,0.0451544554834369,-0.0308899622771065,-0.00493383213006943,-0.0948169154271783,0.0656453041776047,0.0872223810890482,0.114153373662951 +2.934,0.045196575803302,-0.0308695906523228,-0.00496171318790377,-0.0948592257705181,0.0656390307212779,0.087222294299456,0.114174076108602 +2.936,0.0452218200125742,-0.0308610169085863,-0.00497472879523077,-0.0948817411204367,0.0656445980524865,0.0872134842651055,0.114198827669639 +2.938,0.0452638724190847,-0.0308406634812943,-0.00500253037538673,-0.0949238944954192,0.0656385376175437,0.0872133171469158,0.114219499124968 +2.94,0.0452890983936583,-0.0308320553965635,-0.00501553260703322,-0.0949463694404236,0.065644236179555,0.0872045060614228,0.114244199748489 +2.942,0.0453311972036505,-0.0308116527196459,-0.00504335539505692,-0.0949885112585505,0.0656382598979383,0.0872043163358561,0.114264835210175 +2.944,0.0453564515549283,-0.0308029986295459,-0.00505637949745559,-0.0950110031786114,0.0656440105943505,0.0871955159232604,0.114289504430863 +2.946,0.0453985599323506,-0.0307825896583293,-0.00508418900540061,-0.0950531173763995,0.0656380956303436,0.0871953002950978,0.1143101497445 +2.948,0.0454238170531699,-0.0307739296042325,-0.00509720498922021,-0.0950756040117745,0.065643873456158,0.0871864929985261,0.11433482923744 +2.95,0.0454615704774932,-0.0307548771587065,-0.00512218950134755,-0.0951139955923183,0.0656368405811382,0.0871876414148338,0.114352522433668 +2.952,0.0454843935056418,-0.0307475442138609,-0.00513339342544503,-0.0951334314036574,0.0656445129813201,0.0871767894008884,0.114377089534947 +2.954,0.0455284031706966,-0.0307260848611091,-0.0051627407107268,-0.0951776118574399,0.0656386710975262,0.0871768201003047,0.114397852436595 +2.956,0.0455545067521574,-0.0307169194082365,-0.00517645278516578,-0.0952007401233958,0.0656447041298809,0.0871677401931719,0.114422598651272 +2.958,0.0455972024141748,-0.0306964941552245,-0.00520448197410076,-0.0952432194602728,0.0656393053413236,0.0871674087541373,0.114443906547602 +2.96,0.0456227855460688,-0.0306865066786287,-0.00521839163338968,-0.0952674016193213,0.0656415831329337,0.0871623871632788,0.114465660098619 +2.962,0.0456609307017353,-0.0306686099873956,-0.00524289984710478,-0.0953045395262549,0.0656385657300934,0.0871591743545803,0.11448687034 +2.964,0.0456838075665987,-0.0306618790144984,-0.00525369807865866,-0.0953238581992525,0.0656469732550747,0.0871481585625622,0.114512774549482 +2.966,0.0457303516854448,-0.0306389878857694,-0.00528497216326662,-0.095370752464482,0.065639046968822,0.0871494922269869,0.114533612957433 +2.968,0.0457574928481379,-0.0306293698952828,-0.00529936602208311,-0.0953951232213605,0.065643782664635,0.0871410979470399,0.114558633837405 +2.97,0.0458000180955841,-0.0306092947455088,-0.0053270809609396,-0.09543757907981,0.0656379407184694,0.0871409082443071,0.11458053728444 +2.972,0.045825246829567,-0.0306011509171684,-0.00533970274797549,-0.0954599574029138,0.0656436240830731,0.0871319004549193,0.114606256818025 +2.974,0.0458691729047634,-0.0305798766559236,-0.00536877824495817,-0.0955041778607804,0.0656361059365545,0.0871325082226877,0.114627450464695 +2.976,0.0458951700440558,-0.0305710929774733,-0.00538214045382256,-0.0955274952107327,0.0656408848740808,0.0871238593239948,0.114652783033991 +2.978,0.0459377101534748,-0.0305507278507096,-0.00541003602477466,-0.0955702860775311,0.0656341965586935,0.087123884383644,0.114674250543439 +2.98,0.0459630671086383,-0.0305423432501813,-0.00542286179578259,-0.0955929107860574,0.0656394187787581,0.0871149173681409,0.114699674340291 +2.982,0.0460057801271848,-0.0305217046447366,-0.00545097637851613,-0.0956359228132144,0.065632547500562,0.0871149976993582,0.114720855158921 +2.984,0.0460312864962448,-0.0305130904694664,-0.0054639842373591,-0.0956587115598181,0.0656377159020025,0.0871060843212071,0.114746055378736 +2.986,0.0460735897440156,-0.0304926648050237,-0.00549174539237944,-0.095701211897094,0.0656312893110978,0.0871059357683759,0.11476722520317 +2.988,0.0460989378264179,-0.030484068202775,-0.00550463771539902,-0.0957238028925526,0.065636728433624,0.0870969608366658,0.114792340902362 +2.99,0.0461412995193821,-0.0304635276147817,-0.00553245070730675,-0.0957662801025034,0.0656304338523386,0.0870967823224556,0.11481337195874 +2.992,0.0461667104587255,-0.0304547995914722,-0.00554541767098519,-0.0957889168393058,0.0656359796079881,0.0870878496375752,0.114838353879362 +2.994,0.046209000399304,-0.0304342753804889,-0.00557314939766206,-0.0958312231769839,0.0656299222068356,0.0870875833927789,0.114859346628232 +2.996,0.0462343444437477,-0.0304241671960268,-0.00558688746325402,-0.0958552628840086,0.0656319450354997,0.0870824585304973,0.114880815785673 +2.998,0.0462714922883259,-0.0304066583619115,-0.00561054194709891,-0.0958913688909321,0.0656295411516004,0.0870787309886098,0.114901948815184 +3,0.0462940169484332,-0.0303998613263287,-0.00562108542738586,-0.0959102968714068,0.0656383835122538,0.0870674462838403,0.114927623002358 +3.002,0.0463400753406924,-0.0303769848641818,-0.00565190180071684,-0.0959565047912207,0.0656311220178113,0.087068322309099,0.114948228098444 +3.004,0.0463671320383678,-0.0303670889365612,-0.00566624375764244,-0.09598069535561,0.0656363500654545,0.0870597695061457,0.114972935324179 +3.006,0.0464093844359605,-0.030346967846886,-0.0056936228979636,-0.0960225929004742,0.0656312864675512,0.0870592049979767,0.114994702455815 +3.008,0.046434600188726,-0.0303385379265215,-0.00570622407495743,-0.0960448697396645,0.0656374914332864,0.087050128135429,0.115020177122069 +3.01,0.0464785382443342,-0.0303171035081894,-0.00573515628897128,-0.0960887911994815,0.0656305838959003,0.0870504692875275,0.115041293054623 +3.012,0.0465046243834252,-0.0303080410550096,-0.00574854435565067,-0.0961121107342792,0.0656357597228842,0.0870417914522928,0.115066474465063 +3.014,0.0465472723971456,-0.0302875194841042,-0.00577635965669381,-0.0961547606265663,0.065629509092904,0.0870416345947297,0.115087970638783 +3.016,0.046572727948451,-0.0302789339624105,-0.00578918836198429,-0.0961774202768604,0.0656349923873134,0.0870326346776546,0.115113371373288 +3.018,0.0466156197052649,-0.0302581456169067,-0.00581727318667562,-0.0962204409458706,0.065628336907918,0.0870326031846052,0.115134672974742 +3.02,0.0466411544739324,-0.0302480830839637,-0.0058310175144359,-0.0962447372577596,0.0656299593703763,0.087027477946382,0.11515652816263 +3.022,0.046678471654152,-0.0302305932231534,-0.00585468016251559,-0.0962811508329043,0.0656270967884639,0.0870238122785261,0.115178045185087 +3.024,0.0467010276909488,-0.0302239500089115,-0.00586509881865059,-0.0963001152175182,0.0656355959360354,0.0870123808708203,0.115204114929525 +3.026,0.0467472761535081,-0.030201021258672,-0.00589595620961558,-0.0963467131331159,0.0656278284532635,0.0870134024881693,0.115225058285489 +3.028,0.0467744118132146,-0.0301911888438569,-0.00591022818858324,-0.0963710212646281,0.0656326952011569,0.0870047793062174,0.115250086031785 +3.03,0.0468167537031809,-0.0301710626413165,-0.00593755739534171,-0.0964131287197779,0.0656272799099455,0.0870042650243008,0.115272146163798 +3.032,0.0468420269033659,-0.030162666333877,-0.00595008120607668,-0.0964354764726353,0.065633235369824,0.0869951134446178,0.115297869078863 +3.034,0.0468860599308285,-0.0301411842366181,-0.005978969451858,-0.0964795645950469,0.0656260912493081,0.0869954851412131,0.115319200052067 +3.036,0.0469122245688078,-0.0301320872189066,-0.00599231553882286,-0.0965029648599348,0.065631114914925,0.0869867555597771,0.115344541945693 +3.038,0.0469549449033271,-0.0301115131693462,-0.00602006613704878,-0.0965456920337994,0.0656247843894676,0.0869865715065236,0.11536619928017 +3.04,0.0469804757758931,-0.0301028547778967,-0.00603286691026629,-0.0965684125977949,0.0656302281876688,0.0869775192452825,0.115391695738341 +3.042,0.0470234466822328,-0.0300819931020069,-0.00606089315005177,-0.0966114689088891,0.0656236050071511,0.0869774252091336,0.115413113718737 +3.044,0.0470491404826965,-0.0300731432119354,-0.00607387276178392,-0.096634374899249,0.0656289149763725,0.0869684096634433,0.115438454086878 +3.046,0.0470917111969076,-0.0300525180844952,-0.00610155428344468,-0.0966769821845856,0.0656226320712332,0.0869681151392607,0.115459921349954 +3.048,0.0471172346635742,-0.0300437371838418,-0.00611439557815459,-0.0966996907202367,0.0656281324637364,0.0869590184309355,0.115485247029893 +3.05,0.047159875327922,-0.030023008899646,-0.00614214047453997,-0.096742337878079,0.0656218667590233,0.0869587288089102,0.115506621625819 +3.052,0.0471854594441677,-0.0300141304738774,-0.00615504327521324,-0.096765102113007,0.0656273915048601,0.0869496674276349,0.115531865778504 +3.054,0.0472280245355157,-0.0299934327036265,-0.00618270559632905,-0.096807615355349,0.0656212768123332,0.0869493182118899,0.115553236341389 +3.056,0.0472535854325476,-0.0299845376554324,-0.00619558541122182,-0.0968303419740215,0.0656268894904601,0.0869402558187983,0.115578455815019 +3.058,0.047296197100876,-0.0299637916920791,-0.0062232709017209,-0.0968728633025963,0.065620813930023,0.0869399014495192,0.115599801868457 +3.06,0.0473217887913238,-0.029954854097982,-0.00623617142897863,-0.0968956146873113,0.0656264509914495,0.0869308544998904,0.115624999678149 +3.062,0.0473644035810792,-0.0299341042898853,-0.00626383856427472,-0.0969381103337937,0.0656204223396275,0.0869304804995163,0.115646358751355 +3.064,0.0473899987354481,-0.0299251585542604,-0.00627673049046151,-0.0969608595532092,0.0656260804140429,0.0869214300259508,0.115671565759144 +3.066,0.0474326434816707,-0.0299043908983551,-0.00630440325322519,-0.0970033746450096,0.0656200470349309,0.0869210546110399,0.115692942941186 +3.068,0.0474582534133614,-0.0298954379475936,-0.00631729324309124,-0.0970261374588329,0.0656256935385339,0.0869120011389976,0.115718170099481 +3.07,0.0475009141445438,-0.0298746668201332,-0.00634495864450982,-0.0970686685167,0.065619642168625,0.0869116249542398,0.115739580582559 +3.072,0.0475265314889447,-0.0298657180738191,-0.00635783724826981,-0.097091439156513,0.0656252663160905,0.0869025636841291,0.115764840128674 +3.074,0.0475692136253604,-0.0298449404938899,-0.00638549991352924,-0.0971339992643605,0.0656191772089581,0.0869021937781622,0.115786286402343 +3.076,0.0475948421023333,-0.0298359952055711,-0.006398368925535,-0.0971567830592399,0.0656247676103178,0.0868931261299313,0.115811580681497 +3.078,0.0476375407981918,-0.029815214397351,-0.0064260241655307,-0.0971993692848608,0.0656186390722941,0.086892762235736,0.11583306480961 +3.08,0.0476631793761129,-0.0298062726313356,-0.00643888224890005,-0.0972221651686365,0.0656241959043717,0.0868836878904445,0.115858393432995 +3.082,0.0477058949010412,-0.0297854867845861,-0.00646653018530088,-0.0972647767217464,0.0656180302141708,0.0868833292175738,0.115879912546327 +3.084,0.0477315451180908,-0.0297765447390068,-0.00647937932962228,-0.0972875856231422,0.0656235572697791,0.0868742487261244,0.115905271159853 +3.086,0.0477742753578163,-0.0297557533951284,-0.00650701809486931,-0.0973302169563751,0.0656173640018093,0.0868738916126991,0.115926821856214 +3.088,0.047799937208737,-0.0297468075828683,-0.00651985949871321,-0.0973530376413717,0.0656228694757222,0.0868648045723119,0.115952205364773 +3.09,0.0478426818791997,-0.0297260088679125,-0.00654748902871778,-0.0973956844273194,0.0656166591395286,0.0868644454132449,0.115973783418257 +3.092,0.047868355840624,-0.0297170554046542,-0.00656032454339076,-0.0974185161273691,0.0656221516034524,0.0868553515263168,0.115999186595784 +3.094,0.0479111146008152,-0.0296962478235743,-0.0065879447876027,-0.0974611741939405,0.0656159346462663,0.0868549869173521,0.116020788598374 +3.096,0.0479368006769336,-0.0296872837630679,-0.00660077572198081,-0.0974840158387542,0.0656214220087148,0.0868458857778116,0.116046207392792 +3.098,0.0479795740929827,-0.0296664656216334,-0.00662838745736052,-0.0975266828961812,0.0656152062814239,0.0868455135492821,0.116067830841702 +3.1,0.0480052723956016,-0.0296574888170714,-0.00664121490112375,-0.0975495339154155,0.0656206942461315,0.0868364050020833,0.116093262604921 +3.102,0.0480480612216019,-0.0296366587992994,-0.00666881903500004,-0.097592209051199,0.0656144846979072,0.0868360241489906,0.116114906235378 +3.104,0.0480737717338536,-0.0296276681403294,-0.00668164356225856,-0.0976150691451763,0.0656199765975906,0.0868269081920782,0.116140349848555 +3.106,0.0481165769305599,-0.0296068252141947,-0.0067092411265107,-0.0976577528269111,0.0656137751419258,0.0868265188144917,0.116162013406915 +3.108,0.0481422996516173,-0.0295978203844421,-0.00672206294342115,-0.097680622062831,0.0656192720247433,0.0868173955930167,0.116187468970355 +3.11,0.0481851220334187,-0.0295769639443831,-0.00674965476416692,-0.0977233155145636,0.0656130782642892,0.0868169984788541,0.116209152988757 +3.112,0.0482108569125566,-0.0295679452404693,-0.00676247372630215,-0.0977461941344409,0.065618579501278,0.0868078681587729,0.11623462144467 +3.114,0.0482492723970182,-0.0295484757649608,-0.00678721859964333,-0.0977851723357393,0.0656112423526772,0.0868088887831437,0.116253263229377 +3.116,0.048273261883643,-0.0295390563995578,-0.00679960244874873,-0.0978074476979882,0.0656146576667565,0.0868020960015152,0.116275155753396 +3.118,0.0483118883006725,-0.0295206540907449,-0.00682401976363899,-0.0978448657521134,0.0656125572504593,0.0867979012566964,0.116296966570389 +3.12,0.0483352019708435,-0.0295132990536794,-0.00683487991109914,-0.0978642685035945,0.0656216843456984,0.08678592546558,0.116323197329446 +3.122,0.048382657500962,-0.0294899106030654,-0.00686601777556096,-0.0979115824035813,0.0656146508611591,0.0867867298486956,0.11634519976232 +3.124,0.0484103851834114,-0.0294797284215021,-0.00688033665772866,-0.0979362543413127,0.0656198464038315,0.086777932410234,0.116370867168983 +3.126,0.0484543365464394,-0.0294587674481273,-0.00690836088066085,-0.0979797430774923,0.0656140680243474,0.0867777028866866,0.11639374133005 +3.128,0.048480381756133,-0.0294499641897857,-0.00692106329515367,-0.0980027998893622,0.0656197324854237,0.0867685918013668,0.116420125559862 +3.13,0.048525495615804,-0.0294280055978103,-0.00695020946098319,-0.0980478782935561,0.0656121373467761,0.0867691325332114,0.116442392917039 +3.132,0.0485521647765511,-0.0294187325707909,-0.0069634966290253,-0.0980717552314213,0.0656167906606401,0.0867602942590776,0.116468506282965 +3.134,0.0485957667484468,-0.0293977488543476,-0.00699140545196557,-0.0981154251790667,0.0656098449570214,0.0867602485450024,0.116491030812898 +3.136,0.048621727002775,-0.0293889424136456,-0.00700411461962343,-0.0981385741574608,0.0656148357473391,0.0867510125752529,0.116517260743427 +3.138,0.0486652919281258,-0.0293678061135003,-0.00703209154902293,-0.0981823275960782,0.0656077028623636,0.0867509500965235,0.116539519588705 +3.14,0.0486913040870985,-0.0293588324643692,-0.00704491124181382,-0.0982055472778,0.0656126331792598,0.0867416934771002,0.116565539260897 +3.142,0.0487343686979545,-0.0293379362979105,-0.00707248806428666,-0.0982487343772923,0.0656059408385795,0.086741378084802,0.116587760815404 +3.144,0.0487601929933744,-0.0293289749766663,-0.0070851840159262,-0.0982717286033027,0.0656111455877631,0.0867320444192801,0.11661366596114 +3.146,0.048803248906662,-0.0293079787909832,-0.00711277040365134,-0.0983148152579918,0.0656046381178146,0.086731672917741,0.116635720656651 +3.148,0.0488291178352203,-0.0292988666566026,-0.00712553864559289,-0.0983378308499507,0.0656099906917702,0.0867223845778538,0.116661452351453 +3.15,0.0488720812087647,-0.0292778742457046,-0.00715303671132812,-0.098380696808351,0.0656037822071664,0.0867219070100464,0.116683428149069 +3.152,0.0488979314647257,-0.0292686900447526,-0.00716580749764198,-0.0984036620421169,0.0656093324242353,0.0867126301367498,0.1167090546427 +3.154,0.0489409307303314,-0.0292476334748309,-0.00719332350260775,-0.0984464639331871,0.0656032948664432,0.0867121033390346,0.116730954993854 +3.156,0.0489668104670841,-0.0292383732369179,-0.00720612922466234,-0.0984694378389143,0.0656089608332658,0.0867028441672819,0.116756507531989 +3.158,0.0490098172555772,-0.0292172984158964,-0.00723363284584473,-0.0985121778654666,0.065603054888461,0.0867022692338986,0.116778389962806 +3.16,0.0490357008132442,-0.0292080127381201,-0.00724643919861175,-0.0985351412829125,0.0656087962732269,0.086693005365767,0.116803925382231 +3.162,0.0490787433899977,-0.0291869146988242,-0.00727395328001947,-0.0985778875049383,0.0656029259843523,0.0866924151900109,0.116825817001512 +3.164,0.0491046397356043,-0.0291776211743361,-0.00728675800080705,-0.0986008596743058,0.0656086754767223,0.0866831456614454,0.116851370213289 +3.166,0.0491477077371544,-0.0291565182887706,-0.00731427103480184,-0.0986436312055601,0.0656027847431677,0.0866825569144291,0.116873301169622 +3.168,0.0491736106226475,-0.0291472380745956,-0.0073270601939935,-0.098666612752876,0.0656085007656432,0.0866732791369846,0.116898900364201 +3.17,0.0492167083728389,-0.0291261317653478,-0.00735457444514011,-0.0987094343291966,0.0656025410746114,0.0866727094729196,0.116920882797265 +3.172,0.0492426161074751,-0.0291155512850592,-0.00736811555697095,-0.0987339585344202,0.0656045099635864,0.0866673340645879,0.116943104721865 +3.174,0.0492804056782388,-0.0290975514033248,-0.00739152794904983,-0.0987705278452412,0.0656020246660007,0.0866632976425176,0.116965166015522 +3.176,0.0493033556422398,-0.0290903497217813,-0.00740186139783849,-0.0987897857705585,0.0656107307725718,0.086651597012738,0.116991589463328 +3.178,0.0493502502278565,-0.0290669385026363,-0.00743244561719009,-0.0988366615974789,0.0656032790591253,0.0866522769230778,0.117013393768467 +3.18,0.0493778297806859,-0.0290566233422963,-0.00744655489478381,-0.0988612789849408,0.0656082517403232,0.0866433612670927,0.117038983381293 +3.182,0.0494208721211813,-0.0290359889386499,-0.00747369086669418,-0.0989038553212179,0.0656028985700116,0.0866426062710281,0.117061916104779 +3.184,0.0494466110072406,-0.0290271519185072,-0.00748605579535903,-0.0989265821443522,0.0656087970479226,0.0866331719189442,0.117088276557366 +3.186,0.0494913426599476,-0.0290052004860628,-0.00751470939806022,-0.098971193613288,0.0656015747416459,0.0866333357865837,0.117110564718511 +3.188,0.0495179672408784,-0.0289957125006934,-0.00752785524376441,-0.0989949775704947,0.0656064395897027,0.0866243090109636,0.117136618856706 +3.19,0.0495613802577234,-0.028974687120177,-0.00755537204725951,-0.0990382887388812,0.0655999229042481,0.0866239520989598,0.117159256816002 +3.192,0.0495873702415617,-0.0289656596097297,-0.0075679652376007,-0.0990614087076627,0.0656051408540582,0.0866145998143541,0.117185491858073 +3.194,0.0496310158612097,-0.0289443617645155,-0.00759573588026918,-0.0991050552513152,0.0655982902583518,0.0866143413631954,0.117207904183076 +3.196,0.0496571646093795,-0.0289351475055705,-0.00760849910822677,-0.099128359183687,0.06560335468969,0.0866050225006284,0.117233987497645 +3.198,0.0497003969239632,-0.0289140885943326,-0.00763591885662085,-0.0991715486802834,0.0655968477259903,0.0866045591373023,0.117256438796631 +3.2,0.0497263745907575,-0.0289049322697753,-0.00764854901154161,-0.0991946532310157,0.0656021161797406,0.0865951575720824,0.117282489519041 +3.202,0.0497696640009337,-0.028883767281365,-0.00767602385143226,-0.0992378554851932,0.0655956656552114,0.0865946822675759,0.117304830308407 +3.204,0.0497957009744281,-0.0288744956946838,-0.00768872218612275,-0.0992610079857689,0.0656009958229869,0.0865853131375066,0.117330773310633 +3.206,0.0498389068280735,-0.028853353709104,-0.00771611302276466,-0.0993040475530232,0.0655947515092719,0.086584757485871,0.117353087109305 +3.208,0.0498649201710319,-0.028844045605149,-0.00772879819318355,-0.0993271551990134,0.0656002157586738,0.0865753846473728,0.117378976770158 +3.21,0.0499081683406289,-0.0288228467800016,-0.00775621230042084,-0.099370176536203,0.065594067899167,0.0865748040216656,0.117401245822369 +3.212,0.0499342120918291,-0.028813478684112,-0.00776892640901458,-0.0993933022711284,0.0655996009448671,0.0865654443473882,0.11742708977598 +3.214,0.0499774636681081,-0.0287922670947449,-0.00779632539574955,-0.0994362809964907,0.0655935474208813,0.0865648300158334,0.117449356534137 +3.216,0.0500035111619458,-0.0287828775742271,-0.00780903748247944,-0.0994594010142244,0.0655991360468585,0.0865554661162973,0.117475192877483 +3.218,0.0500467960391163,-0.0287616404199079,-0.00783644598633695,-0.0995023919022582,0.0655931099062166,0.086554843242674,0.117497469314498 +3.22,0.0500728589356578,-0.0287522354663804,-0.00784915976243727,-0.0995255247792151,0.065598708523415,0.0865454770528368,0.11752331742396 +3.222,0.0501161650254707,-0.0287309887580773,-0.00787656495995809,-0.0995685334984115,0.0655926798166192,0.0865448530567482,0.11754562491695 +3.224,0.0501422362920555,-0.0287215843318377,-0.00788926840532812,-0.0995916761795846,0.0655982646076771,0.0865354809312217,0.117571504314905 +3.226,0.0501855692106206,-0.0287003271611601,-0.00791667372801887,-0.0996347218833963,0.0655921995019538,0.0865348676565982,0.117593850280115 +3.228,0.0502116525727012,-0.0286909260946226,-0.00792936630990324,-0.0996578812814143,0.0655977486772656,0.0865254914005851,0.117619768660831 +3.23,0.0502550065453113,-0.0286696636529757,-0.00795676545626814,-0.0997009641030717,0.0655916356916967,0.086524891090881,0.11764215810739 +3.232,0.0502811008134363,-0.0286602682457109,-0.00796944428182993,-0.0997241397960915,0.0655971426891522,0.0865155101305229,0.117668118003852 +3.234,0.0503244744352235,-0.0286390004334922,-0.00799683546755242,-0.099767259042873,0.0655909792167494,0.0865149222127565,0.117690549219076 +3.236,0.0503505808388024,-0.0286296078773759,-0.00800950163865009,-0.0997904516653891,0.0655964449012337,0.0865055363084723,0.117716547053349 +3.238,0.0503939701780766,-0.0286083354664296,-0.00803688132013698,-0.0998335998985121,0.0655902398455063,0.0865049556806235,0.117739016311316 +3.24,0.0504200883904559,-0.0285989422437237,-0.00804953581492927,-0.0998568073686895,0.0655956725906216,0.086495563398007,0.117765046131345 +3.242,0.0504634915826113,-0.0285776640916487,-0.00807690265180333,-0.0998999772870774,0.0655894388049102,0.0864949840769604,0.117787547971809 +3.244,0.0504896218067757,-0.0285682656309946,-0.00808954756485161,-0.0999231977324251,0.0655948494392279,0.0864855840891965,0.117813602760163 +3.246,0.0505330374391357,-0.0285469804987695,-0.00811690078785861,-0.0999663820580511,0.0655886012866499,0.0864850001135586,0.117836132142379 +3.248,0.0505591795134178,-0.0285375728567155,-0.00812953796861021,-0.0999896133668674,0.0655940009335547,0.0864755912091714,0.117862205748083 +3.25,0.0506026076600278,-0.0285162789398327,-0.00815687816746405,-0.100032807223765,0.0655877504859088,0.0864749982479326,0.11788475858003 +3.252,0.0506287616471084,-0.028506858959148,-0.0081695093587473,-0.100056048043776,0.0655931480863541,0.0864655798191194,0.117910846441598 +3.254,0.0506722031019464,-0.0284855545854821,-0.00819683770473101,-0.100099248842308,0.0655869038801784,0.0864649754636313,0.117933420189882 +3.256,0.0506983690430188,-0.0284761203242191,-0.00820946411845813,-0.100122498460624,0.065592305376983,0.0864555474571189,0.117959519752051 +3.258,0.0507418251956636,-0.028454803984905,-0.00823678221223755,-0.100165705989848,0.0655860717648604,0.0864549312809588,0.117982113346116 +3.26,0.0507680032229461,-0.0284453545681432,-0.00824940458880692,-0.100188964432658,0.0655914798697845,0.0864454941585995,0.11800822385907 +3.262,0.0508114755311959,-0.0284240251607588,-0.0082767139791579,-0.100232180114436,0.065585257611647,0.0864448672255349,0.118030837464592 +3.264,0.0508376657646863,-0.0284145606070077,-0.00828933256690398,-0.100255447889434,0.0655906723765305,0.0864354217470106,0.118056959567841 +3.266,0.0508811555102949,-0.0283932174281046,-0.00831663454164962,-0.100298674095089,0.0655844596049568,0.08643478602334,0.118079594145207 +3.268,0.0509073580600378,-0.0283837383124747,-0.00832924923224797,-0.100321951991424,0.0655898792511717,0.0864253330463991,0.118105729296725 +3.27,0.0509508661243947,-0.0283623810537525,-0.00835654463397156,-0.100365191283197,0.0655836726943225,0.0864246907596516,0.118128386181512 +3.272,0.0509770810517361,-0.0283528882114217,-0.00836915507679996,-0.100388480123492,0.06558909455673,0.086415231041159,0.118154536131896 +3.274,0.0510206078683946,-0.028331516868134,-0.0083964442774728,-0.100431734718873,0.0655828906130393,0.086414584173806,0.118177216665674 +3.276,0.0510468420944561,-0.0283207083937849,-0.00840980498725866,-0.100456603179191,0.0655846216654393,0.0864090879811285,0.118199953312199 +3.278,0.0510849857673272,-0.0283024466208417,-0.00843300493046684,-0.100493500494795,0.065581978971241,0.0864049110101621,0.118222590640827 +3.28,0.0511082156039855,-0.0282949728052027,-0.00844320848059407,-0.100513012204963,0.0655905386701912,0.0863929970420429,0.118249433039948 +3.282,0.0511555468381791,-0.028271265260121,-0.00847356282719838,-0.100560247369113,0.0655830507167874,0.0863935444793321,0.118271921210962 +3.284,0.0511834418639061,-0.0282606480687273,-0.00848752489324187,-0.100585136503571,0.0655879448457731,0.0863844323576965,0.118297961262885 +3.286,0.051226926875052,-0.0282396886142537,-0.00851446286333335,-0.100628071002589,0.0655825777760968,0.0863835300930695,0.118321518449723 +3.288,0.051252991850763,-0.0282305249775811,-0.00852670314430309,-0.100651088446309,0.0655884206148017,0.0863739072479212,0.118348299988185 +3.29,0.051298170612537,-0.0282082459298416,-0.00855513942473053,-0.10069604801083,0.0655812224362475,0.0863739154310782,0.118371218283067 +3.292,0.0513251210479155,-0.0281984272730755,-0.00856815064061245,-0.100720117638025,0.0655860562375856,0.086364696896875,0.118397693294631 +3.294,0.0513689851602255,-0.0281770684517513,-0.00859546057790615,-0.100763788555207,0.065579573245724,0.0863641859825044,0.118420950768021 +3.296,0.0513953843823974,-0.0281663532589998,-0.00860874185219306,-0.100788877853265,0.0655810227607345,0.0863586808981266,0.118444162365694 +3.298,0.0514339911354035,-0.0281479045964118,-0.00863215474696784,-0.100826396110329,0.0655778215371551,0.0863546776239426,0.11846712556971 +3.3,0.0514586903201737,-0.0281383986984897,-0.00864410172181197,-0.100849211280975,0.0655816809009119,0.0863473817921083,0.118490842325508 +3.302,0.0514994907013189,-0.028118532379874,-0.00866935096351593,-0.100888871808682,0.0655781190718746,0.0863437516807132,0.118513609078276 +3.304,0.051524146352937,-0.0281101555582162,-0.00868060971869709,-0.100909713156621,0.0655861054609273,0.0863319259927839,0.118540565422605 +3.306,0.0515718288312899,-0.0280866500413146,-0.00871083371361045,-0.100957167935242,0.0655791138341019,0.0863323991861766,0.118564122379982 +3.308,0.0515998365277534,-0.0280761915166458,-0.00872459129615824,-0.10098208143602,0.0655841584347678,0.0863231514556171,0.118590844809023 +3.31,0.05164030764005,-0.0280559003417124,-0.00874959642030132,-0.101022835445444,0.0655767257082409,0.0863242756758545,0.118611628332313 +3.312,0.0516643710840714,-0.0280478422997223,-0.00876032050853569,-0.101043259865756,0.0655840155947492,0.0863126563215826,0.118638443169424 +3.314,0.0517118534121413,-0.0280244468248537,-0.00879039224033411,-0.101090733473073,0.0655767926409826,0.0863130283312904,0.118662065312579 +3.316,0.0517397514655916,-0.0280141507465992,-0.00880402666615716,-0.101115516454506,0.0655818399877984,0.086303410870844,0.118688973072954 +3.318,0.0517846722835789,-0.0279925073881616,-0.00883181439840279,-0.101160100677446,0.0655755989141048,0.0863028929512377,0.118713144492153 +3.32,0.0518113539708882,-0.0279831371835534,-0.00884428446466168,-0.101183739617527,0.0655809417144936,0.0862931575224109,0.118740470491905 +3.322,0.0518569957443409,-0.0279607701925431,-0.00887276723624865,-0.101229331914722,0.065573433371763,0.0862932362111924,0.118764101042654 +3.324,0.0518841129606423,-0.027950992845627,-0.00888564848946392,-0.101253567166291,0.0655780742072798,0.0862838040171051,0.11879111819399 +3.326,0.0519285548412435,-0.0279293334825187,-0.00891317038000423,-0.101297975882576,0.0655711520844063,0.0862834250492804,0.118814806689874 +3.328,0.051955136151309,-0.0279198373331134,-0.00892564534073058,-0.10132166282282,0.0655761227440981,0.0862737530041013,0.118841789110312 +3.33,0.0519950031265491,-0.0278995113972594,-0.00895031996906528,-0.1013622859848,0.0655680063266338,0.0862748154167591,0.118862007627381 +3.332,0.0520190546512742,-0.0278911726946282,-0.00896116341624301,-0.101382826561643,0.0655749197580938,0.086263045384537,0.118888373472124 +3.334,0.0520647149235083,-0.0278686405344759,-0.0089898239940322,-0.101428502812571,0.0655687961317184,0.086262551509903,0.118911848913297 +3.336,0.0520918963758598,-0.0278584865773102,-0.00900298004223836,-0.10145250579911,0.0655745434781243,0.0862524976980229,0.118938457767182 +3.338,0.0521363772760041,-0.0278367575610414,-0.00903048752803554,-0.101496498731382,0.0655689268032515,0.0862516112389884,0.118962184938392 +3.34,0.0521630003602206,-0.0278270265274474,-0.00904303186043784,-0.101520013975787,0.0655747478065551,0.0862418198189518,0.118989024511905 +3.342,0.0522081721804003,-0.0278047150072639,-0.00907111847459038,-0.101564808842398,0.0655681853990317,0.0862414831228666,0.119012413077754 +3.344,0.0522351680763624,-0.0277946968175059,-0.00908396669299222,-0.101588824792694,0.0655734535120096,0.0862320132822276,0.119039090011286 +3.346,0.0522796081625863,-0.0277728451409055,-0.0091114499073397,-0.101632919502528,0.0655671499548569,0.0862314275197895,0.119062547875123 +3.348,0.0523062569742898,-0.0277630619729031,-0.00912401228992733,-0.101656605383289,0.0655725371388208,0.086221800863353,0.119089272616069 +3.35,0.0523506036069444,-0.0277411921228278,-0.00915146171351634,-0.10170068514687,0.065566122332871,0.0862211808268523,0.119112606241558 +3.352,0.0523772316002158,-0.0277313791137937,-0.00916403346534016,-0.101724369990802,0.0655714484636649,0.08621150990923,0.119139256862128 +3.354,0.0524212725166188,-0.0277096717943213,-0.00919124187456688,-0.101768157603631,0.0655651970927718,0.086210755442939,0.1191625915709 +3.356,0.0524477740769095,-0.0276999092928472,-0.00920371818784389,-0.101791710348103,0.0655706033516414,0.086201018262505,0.119189222510503 +3.358,0.0524917672789664,-0.0276781886353023,-0.00923089232928818,-0.101835446133585,0.0655643778412625,0.0862002402032091,0.119212508219457 +3.36,0.0525182699562973,-0.0276683867981609,-0.00924337392264035,-0.10185899889992,0.0655697943646476,0.0861905128024193,0.119239093596535 +3.362,0.0525622008729177,-0.0276466851166179,-0.00927048435931639,-0.101902643301725,0.0655636419601423,0.0861897025186034,0.119262370089061 +3.364,0.052588690747745,-0.02763686711712,-0.00928294966813298,-0.101926177915046,0.0655690924431811,0.0861799845247794,0.119288936016047 +3.366,0.0526281587271698,-0.0276165883128345,-0.00930721174418257,-0.101966111237195,0.0655617454754853,0.0861806921066585,0.119308993702602 +3.368,0.0526520908779307,-0.0276080715410657,-0.00931795745052186,-0.101986480389097,0.0655690968031071,0.0861688979495644,0.119335154445742 +3.37,0.0526977939801301,-0.0275853949496227,-0.0093465117063499,-0.102031957514278,0.0655633364503394,0.0861682470878289,0.119358597250661 +3.372,0.0527250587440733,-0.0275750512971082,-0.00935965917196854,-0.102056007637255,0.0655692379502491,0.0861582248574734,0.11938516290154 +3.374,0.0527696231319609,-0.0275532431998015,-0.00938704925246814,-0.102099952141642,0.0655637645033446,0.0861572664478025,0.119409030079397 +3.376,0.0527965712589723,-0.0275420505285439,-0.00940042206274433,-0.102125382931086,0.0655658061050707,0.0861516145757522,0.119432623334654 +3.378,0.0528362324909563,-0.0275228883978027,-0.00942421842573121,-0.102163662710883,0.065562745955047,0.0861476332473194,0.119456038529773 +3.38,0.0528602170686363,-0.0275149264611403,-0.00943454937328544,-0.102183887505638,0.0655710064234561,0.0861356525652885,0.119483539502174 +3.382,0.0529086910326223,-0.0274906818976972,-0.00946507151468963,-0.102232233327327,0.0655631691536796,0.0861363524291785,0.119507122824752 +3.384,0.0529371335303299,-0.027479793301085,-0.00947892035713739,-0.102257667325216,0.0655677452794398,0.0861270875254153,0.119533982240325 +3.386,0.0529815306725075,-0.0274583558713107,-0.00950592134628345,-0.102301605072666,0.065561857557613,0.0861262634933543,0.119558463047512 +3.388,0.0530080666811597,-0.0274489437484275,-0.00951802188782597,-0.102325109958754,0.0655673064865796,0.0861164109612688,0.119585987233366 +3.39,0.0530538756667797,-0.0274263330794438,-0.00954629944746019,-0.102370833021836,0.0655597131288789,0.0861164015448546,0.119609805059931 +3.392,0.0530811836754495,-0.027416299685405,-0.00955909475509326,-0.102395278180953,0.065564233944718,0.0861069074384161,0.119636967439461 +3.394,0.0531255743403829,-0.0273946226079291,-0.00958619614730565,-0.102439588343036,0.0655574486098339,0.0861063212540434,0.119661023090731 +3.396,0.0531522238289105,-0.0273850027784762,-0.0095984587933934,-0.10246334043453,0.0655624028226906,0.0860965060879456,0.11968826023245 +3.398,0.0531967656775623,-0.0273630672577036,-0.00962575784044119,-0.102507853144162,0.0655554369483786,0.0860959681946451,0.11971202445969 +3.4,0.0532235469001608,-0.0273532266668056,-0.0096381919760172,-0.102531747707853,0.0655603446650375,0.0860861972995568,0.119739032985074 +3.402,0.05326765899429,-0.0273315075805241,-0.00966514947004055,-0.102575734285542,0.0655538308465071,0.0860854259249999,0.119762767098774 +3.404,0.0532942665947904,-0.0273216861567346,-0.00967747528522656,-0.102599416399436,0.0655590205292375,0.0860755888810069,0.119789678260818 +3.406,0.0533384218112161,-0.0272998514486419,-0.00970448891189951,-0.102643356196684,0.0655526523923685,0.0860747800871978,0.119813264122636 +3.408,0.053365080717252,-0.0272898978776575,-0.00971689255217399,-0.102667068779193,0.0655579624846507,0.0860649818952428,0.119840034007504 +3.41,0.0534091537623627,-0.0272680759690972,-0.00974383587750173,-0.102710822721826,0.065551843270014,0.0860640824177193,0.11986357180732 +3.412,0.0534358235688418,-0.0272568022255713,-0.00975697462749259,-0.102736114557872,0.0655536160580354,0.0860583318830293,0.119886860876156 +3.414,0.0534744321085058,-0.0272380679952596,-0.00977988272677875,-0.102773371645496,0.065551159700589,0.0860538390074509,0.119910156318073 +3.416,0.0534980255218426,-0.027230063915696,-0.00978994236306023,-0.102793196253584,0.0655598474500369,0.0860415862284475,0.119937406813817 +3.418,0.0535459411374939,-0.0272058698708403,-0.00981997444247924,-0.102840829303517,0.0655526837019352,0.0860418259187243,0.11996073232801 +3.42,0.0535742454440908,-0.027194725995354,-0.00983375078037393,-0.102866049596425,0.0655577540287052,0.0860323956365396,0.11998726623024 +3.422,0.0536183314434131,-0.0271732479919589,-0.00986042039524324,-0.102909428174042,0.0655526372412973,0.0860312144135163,0.12001160041438 +3.424,0.053644822859667,-0.0271635571741663,-0.00987249501966099,-0.102932821836012,0.0655585984434849,0.0860213021628809,0.120038877970923 +3.426,0.0536906112489897,-0.0271407842022907,-0.00990062908153577,-0.102978247217371,0.0655516033204654,0.0860210504369546,0.120062619289498 +3.428,0.0537179876501777,-0.027130472886961,-0.00991344270004818,-0.103002698890925,0.0655565038439777,0.0860115465606865,0.120089636803919 +3.43,0.0537624694904541,-0.0271086315629885,-0.00994045913658312,-0.103046891274016,0.0655501357523204,0.0860108133720511,0.120113731930539 +3.432,0.0537892123609954,-0.0270988048314322,-0.00995271551579849,-0.103070703618519,0.0655553242426331,0.0860009937976507,0.120140957434616 +3.434,0.0538294366415498,-0.0270781693672697,-0.00997712653790236,-0.103111575989104,0.065547315300742,0.0860019343496385,0.120161613695893 +3.436,0.0538537528084974,-0.0270695040291175,-0.0099878336354717,-0.103132382099676,0.0655541684220104,0.0859900417782813,0.120188284170433 +3.438,0.0538997690324489,-0.0270467403543411,-0.010016177597457,-0.103178349419837,0.0655480643365394,0.0859894175756924,0.120212439882393 +3.44,0.0539272142394618,-0.0270363591360921,-0.0100291089318737,-0.103202622746719,0.0655536558611787,0.0859792113836574,0.120239556661722 +3.442,0.0539721768475069,-0.0270143367610669,-0.0100563874897012,-0.103247120036656,0.0655477908989661,0.0859782910982742,0.120264002590032 +3.444,0.0539991306008777,-0.027004378390071,-0.0100687265190434,-0.103270996588181,0.065553292640141,0.0859683636730559,0.120291412489605 +3.446,0.0540447604760712,-0.0269818129056195,-0.0100965332004366,-0.10331632203199,0.0655464029885698,0.0859680108002758,0.120315578899248 +3.448,0.054072079585949,-0.0269715940728092,-0.010109144668821,-0.103340700808489,0.0655513071990323,0.0859583921564592,0.12034286521902 +3.45,0.0541169847481378,-0.0269494834502998,-0.0101363496048619,-0.103385355794705,0.0655446368394768,0.0859577941011554,0.120367094516439 +3.452,0.0541439672471608,-0.0269394858141759,-0.0101486837783442,-0.103409415600526,0.0655496546505629,0.0859480106800767,0.120394414104715 +3.454,0.0541887519554191,-0.0269173655525775,-0.0101758312396062,-0.103454020642367,0.0655429220534738,0.0859473513351072,0.120418503913372 +3.456,0.054215705990246,-0.0269073208530019,-0.0101881770783511,-0.103478063816062,0.0655479298633997,0.0859375102387219,0.120445718266647 +3.458,0.0542556834573426,-0.0268868126005119,-0.0102122454967072,-0.103518656360284,0.0655401920388502,0.0859382446581454,0.120466513719676 +3.46,0.0542799032285409,-0.0268781191586015,-0.0102228059791676,-0.10353933241924,0.065547238755439,0.0859262120096335,0.120493212925808 +3.462,0.0543260481928218,-0.0268551946522443,-0.0102511341896678,-0.103585352469829,0.0655412628373744,0.0859254938914467,0.120517384550772 +3.464,0.0543535998488361,-0.0268446232055308,-0.0102640955958861,-0.103609698984493,0.0655469761245371,0.0859152374475177,0.120544458540659 +3.466,0.054398563701187,-0.0268225431966604,-0.010291247291851,-0.103654084111327,0.065541398016771,0.0859141605906815,0.120568977987708 +3.468,0.054425552939751,-0.0268124551746834,-0.0103035536387161,-0.103677960081705,0.0655470955937728,0.0859041631854154,0.120596385079545 +3.47,0.0544713020099382,-0.0267897592443063,-0.0103313289140214,-0.103723303240463,0.0655403990595441,0.0859037090017644,0.120620614228486 +3.472,0.0544987079958563,-0.0267793917745089,-0.0103439433436,-0.10374774255458,0.0655454350071545,0.085894044909898,0.120647911268418 +3.474,0.054543708000561,-0.0267571857880155,-0.0103710913394261,-0.103792416812251,0.0655389341802256,0.0858933600249369,0.120672246601414 +3.476,0.054570758021789,-0.0267470782095663,-0.0103834006726476,-0.103816528455807,0.0655440510764172,0.0858835291973767,0.12069962126167 +3.478,0.0546156719110227,-0.026724851496123,-0.0104105154045797,-0.103861222447097,0.0655373992237844,0.0858828252406275,0.120723838398819 +3.48,0.054642706418813,-0.0267147096188636,-0.0104228354858021,-0.103885343309799,0.0655424407196754,0.0858729480771241,0.120751138691699 +3.482,0.0546828028472603,-0.0266941148072482,-0.0104468624767637,-0.103926052808824,0.0655347187416112,0.0858736724896913,0.120772075649233 +3.484,0.0547079134127135,-0.0266837051828259,-0.0104586739495912,-0.103949492059054,0.0655377779001908,0.0858662554318939,0.12079562820037 +3.486,0.0547478485368874,-0.0266642290023058,-0.0104823504932176,-0.103988094696076,0.0655356147919474,0.0858613817671754,0.120819549009557 +3.488,0.0547720710355054,-0.0266558031093823,-0.0104926845331434,-0.104008275606065,0.065544584771414,0.0858484245967493,0.120847273707552 +3.49,0.0548167739061141,-0.0266326361483102,-0.0105202497767727,-0.104053424577777,0.0655363681023838,0.0858502915108973,0.12086858050664 +3.492,0.0548432153453562,-0.0266224503868966,-0.010532472050554,-0.104076119473103,0.0655431138243477,0.0858386789727062,0.120895387559165 +3.494,0.0548903955859245,-0.0265994517396056,-0.010561042663588,-0.104122666826496,0.0655378927034235,0.0858379642916386,0.120920951596022 +3.496,0.0549182648588743,-0.026589020231978,-0.0105738124939993,-0.104147187351489,0.0655438707834858,0.085827725102972,0.120949015213311 +3.498,0.054965768387819,-0.0265656676650243,-0.0106025351783758,-0.104194161219002,0.0655368330109917,0.085827647011824,0.120974247715503 +3.5,0.0549938655861606,-0.0265551975622953,-0.0106153138933382,-0.104219225508539,0.0655415710719427,0.0858180067132169,0.121002379533859 +3.502,0.0550404586534939,-0.0265323732375447,-0.0106432865134632,-0.104265648702975,0.0655340812830671,0.0858179358791785,0.12102760619054 +3.504,0.0550681548785203,-0.0265222091081356,-0.0106557102191462,-0.104290465525635,0.0655385045035869,0.0858081927573443,0.121055781507746 +3.506,0.0551140014744556,-0.0264997071902135,-0.0106831685726573,-0.104336385406347,0.0655309120745551,0.0858079053468981,0.121080801277238 +3.508,0.0551413999569637,-0.02648964375023,-0.0106954156896751,-0.104360955011171,0.0655353060532981,0.0857979712372171,0.121108821373839 +3.51,0.0551865741242382,-0.0264674203544945,-0.0107224117324982,-0.104406262515117,0.0655280264709763,0.0857973922904333,0.121133663171259 +3.512,0.0552137154492828,-0.026457369961422,-0.0107345340454202,-0.104430559996136,0.065532644795232,0.0857873155880264,0.121161472841133 +3.514,0.0552585376329591,-0.026435213868631,-0.0107613141310075,-0.104475435770346,0.0655257350088205,0.08578653175512,0.121186095684106 +3.516,0.0552855731597231,-0.0264250543919254,-0.0107734345200187,-0.104499589295603,0.0655306247212458,0.0857764257642817,0.121213658613523 +3.518,0.0553302013871955,-0.0264028960194901,-0.0108001020577062,-0.104544111726274,0.0655241216652859,0.0857754801434853,0.121238093349707 +3.52,0.0553571890480457,-0.0263926127977693,-0.0108122523122089,-0.104568171227568,0.0655292982242765,0.0857653888278089,0.121265443850619 +3.522,0.0554017572617287,-0.0263704020073817,-0.0108388977724539,-0.104612467565357,0.0655231301638135,0.0857643334180733,0.121289728973783 +3.524,0.0554287418977501,-0.0263600076614458,-0.0108510947295475,-0.10463648542724,0.0655285372055431,0.0857542706506318,0.121316923954438 +3.526,0.0554733011250663,-0.0263377519284606,-0.0108777423343557,-0.104680642299237,0.0655226134259727,0.0857531401016557,0.121341122630053 +3.528,0.0555002907791469,-0.0263272908187074,-0.0108899688220523,-0.104704640001052,0.0655281749854693,0.0857430961305957,0.121368235945907 +3.53,0.055544874254189,-0.0263050014672715,-0.010916630948647,-0.104748746602121,0.0655223767374984,0.0857419312410268,0.121392406862624 +3.532,0.0555718751371216,-0.0262945134518163,-0.0109288685118313,-0.104772746680953,0.0655280011967442,0.0857318987761865,0.121419504912393 +3.534,0.0556164933282065,-0.0262722083104692,-0.0109555404085402,-0.104816867845345,0.0655222213884909,0.0857307355066064,0.12144369862432 +3.536,0.0556435820750585,-0.0262604706129695,-0.0109685019043612,-0.104842573428739,0.0655241315701718,0.0857248247918517,0.121467435767228 +3.538,0.0556826265985851,-0.0262413250906527,-0.0109911285071639,-0.104880190915828,0.0655218354549877,0.085720092141115,0.121491361744501 +3.54,0.0557065267204188,-0.0262329186572714,-0.011000990312528,-0.104900317091542,0.0655305404623566,0.0857075657717538,0.121519079526913 +3.542,0.0557550431154855,-0.0262083040485392,-0.0110307287775168,-0.104948519724742,0.0655234059343365,0.0857076655971074,0.121543286924154 +3.544,0.0557837344540563,-0.0261967832434815,-0.0110442638625225,-0.104974141552578,0.0655283579411778,0.0856980064288003,0.121570441961683 +3.546,0.0558283960015216,-0.0261749017912094,-0.0110706346189097,-0.10501813701843,0.0655231021080755,0.0856967210242364,0.121595649317994 +3.548,0.0558552807334425,-0.0261648602035972,-0.0110824560115778,-0.105041960950697,0.0655288347963871,0.0856865872003189,0.121623579307971 +3.55,0.0559016506037313,-0.0261416990982372,-0.0111102524462279,-0.105088051813011,0.0655216190524124,0.085686268954725,0.121648228008225 +3.552,0.0559294317437793,-0.0261310457219947,-0.0111227930015321,-0.105112957506116,0.0655262396616335,0.0856765558133402,0.121675917396481 +3.554,0.0559744732696675,-0.0261088330101094,-0.011149453955846,-0.105157809088889,0.0655196317753709,0.0856757510675112,0.121700906578902 +3.556,0.0560016183027993,-0.0260986623684597,-0.0111614370318804,-0.10518207434343,0.0655245368127444,0.0856657183091374,0.12172878702008 +3.558,0.0560468720110539,-0.0260762058876076,-0.0111883106271443,-0.105227269524689,0.0655175528592222,0.0856650212285527,0.121753567632072 +3.56,0.0560741638115719,-0.0260658680871675,-0.0112004394933224,-0.105251711824815,0.0655222764399726,0.0856550157478702,0.121781309207303 +3.562,0.0561189855457635,-0.0260436621313165,-0.0112269573264323,-0.105296448483249,0.0655156145485389,0.0856541118785356,0.121806118797828 +3.564,0.0561460961970034,-0.0260333869728077,-0.0112389521320832,-0.105320683391627,0.0655205329866065,0.0856440157469259,0.121833820162503 +3.566,0.056190953101158,-0.0260110843611737,-0.0112655113508323,-0.105365407501657,0.0655139369323165,0.0856430853258727,0.121858512253585 +3.568,0.0562181113943902,-0.0260006946429873,-0.0112775709462891,-0.105389673835364,0.0655189293222892,0.0856330110682622,0.121886096313183 +3.57,0.056262868187149,-0.0259784170512643,-0.0113040452813077,-0.105434209116889,0.0655125602311439,0.0856319829828116,0.121910746995833 +3.572,0.0562899950264058,-0.0259679860453573,-0.0113160962363999,-0.10545841788177,0.0655177060318262,0.0856218969270866,0.121938263063523 +3.574,0.0563347813122256,-0.0259456524544242,-0.0113425915089932,-0.105502908921695,0.0655114615594849,0.0856208272234556,0.121962857950263 +3.576,0.0563619330248838,-0.0259351561703036,-0.0113546747996674,-0.105527125684427,0.0655166981404688,0.0856107492506788,0.121990315981705 +3.578,0.0564067171779209,-0.0259128077686794,-0.0113811567948885,-0.105571558259866,0.065510572527593,0.0856096352331198,0.122014899380296 +3.58,0.0564338711516755,-0.0259022841511346,-0.0113932424757621,-0.105595765972958,0.0655158819501809,0.0855995526633312,0.122042340050828 +3.582,0.0564786884301623,-0.0258799075132628,-0.0114197351675872,-0.105640204558717,0.0655098016979269,0.0855984263192032,0.12206692884807 +3.584,0.0565058590367073,-0.0258693636433566,-0.011431824986709,-0.105664427065619,0.0655151318392906,0.0855883450055921,0.122094376136282 +3.586,0.0565507020830097,-0.0258469739133126,-0.0114583159624745,-0.105708887718155,0.0655090577172023,0.0855872207397757,0.122118995393145 +3.588,0.0565778846050606,-0.0258364267073719,-0.0114703965916075,-0.105733126870437,0.0655143771805289,0.0855771401835909,0.122146472667472 +3.59,0.0566227611793084,-0.0258140231972561,-0.0114968879430686,-0.105777635700048,0.0655082674085233,0.0855760348291057,0.122171133111344 +3.592,0.0566499602553858,-0.025803476756146,-0.0115089569719021,-0.105801901089093,0.065513548385601,0.085565958382441,0.122198651268769 +3.594,0.0566948650250561,-0.0257810650541381,-0.0115354412502922,-0.105846462301231,0.0655073854590823,0.0855648770183272,0.12222335965292 +3.596,0.0567220795303748,-0.0257705225993966,-0.0115474944914683,-0.105870754587051,0.0655126173228946,0.0855548043138491,0.122250923012304 +3.598,0.0567670098276309,-0.0257481034333627,-0.0115739683455773,-0.10591536813172,0.065506395584482,0.08555374679488,0.122275678302373 +3.6,0.056794240212035,-0.0257375628602527,-0.0115860058381147,-0.105939687348422,0.065511577533042,0.0855436765728156,0.12230328394352 +3.602,0.0568391900376592,-0.025715137838499,-0.0116124644158598,-0.105984344118567,0.0655053053388192,0.0855426363961816,0.122328082069377 +3.604,0.0568664348333069,-0.0257045959693842,-0.0116244865579688,-0.106008686612408,0.0655104459779291,0.085532565443731,0.122355723725311 +3.606,0.056911399937034,-0.0256821647815895,-0.0116509273513135,-0.106053376110299,0.0655041376217027,0.0855315339887106,0.12238055837242 +3.608,0.0569386580864692,-0.0256716171510667,-0.0116629359369654,-0.1060777379067,0.0655092493576823,0.0855214588297879,0.122408228186332 +3.61,0.0569836349381259,-0.0256491792195233,-0.0116893573482419,-0.10612244922779,0.0655029216965601,0.0855204270218871,0.12243309325494 +3.612,0.0570109051951409,-0.025638621807422,-0.0117013541774489,-0.106146826134966,0.0655080178267494,0.0855103443388538,0.122460784043119 +3.614,0.0570558882922576,-0.0256161802364215,-0.0117277561008068,-0.106191545989045,0.0655016890503448,0.0855093036744099,0.122485671353279 +3.616,0.0570831700358944,-0.0256056136440017,-0.0117397481185858,-0.10621593393393,0.0655067826775361,0.0854992129792483,0.122513372174345 +3.618,0.0571281615213471,-0.0255831696344395,-0.0117661324060802,-0.106260657331055,0.0655004645284636,0.0854981598984411,0.12253828178856 +3.62,0.0571554542305655,-0.0255725931906253,-0.0117781165179509,-0.10628505436283,0.0655055606567223,0.0854880611235119,0.122565996280231 +3.622,0.0572004675829187,-0.0255501370195064,-0.0118044917872072,-0.106329794792985,0.0654992455762076,0.0854870012650495,0.122590928850392 +3.624,0.0572277766656332,-0.0255395461709431,-0.0118164708604168,-0.106354207384737,0.065504339888027,0.085476896714972,0.122618657932784 +3.626,0.057272808033563,-0.0255170796623149,-0.0118428329549577,-0.106398961760424,0.0654980290076018,0.0854758277921066,0.122643615656802 +3.628,0.057300130804662,-0.0255064759979586,-0.0118548039152709,-0.106423387637742,0.0655031222097355,0.0854657149277175,0.122671361599669 +3.63,0.0573451807754565,-0.0254839977569702,-0.0118811531216472,-0.106468158837369,0.0654968129586799,0.0854646373030877,0.122696344916194 +3.632,0.0573725170014333,-0.0254733809728534,-0.0118931154779521,-0.106492598463557,0.0655019037323915,0.0854545150290515,0.122724108571366 +3.634,0.0574175834986824,-0.0254508915939544,-0.0119194501290157,-0.10653738634063,0.0654955959408246,0.0854534286764021,0.122749118531155 +3.636,0.0574449318570802,-0.0254402621039392,-0.0119314026983563,-0.106561838965805,0.0655006841623904,0.0854432963958537,0.122776900679993 +3.638,0.0574900149821482,-0.0254177605714302,-0.0119577231491005,-0.106606645172854,0.0654943766427082,0.0854422027638768,0.122801937416666 +3.64,0.0575173754204696,-0.0254071177554129,-0.0119696659996183,-0.106631111351841,0.0654994617285317,0.085432061239055,0.122829738064196 +3.642,0.0575624750528339,-0.025384603313746,-0.0119959725011746,-0.106675936678776,0.0654931541941603,0.0854309618253027,0.122854801611706 +3.644,0.057589847490158,-0.0253739465759141,-0.0120079057967515,-0.106700416824031,0.0654982361200099,0.0854208121908374,0.122882620535785 +3.646,0.0576349640732274,-0.0253514181558258,-0.0120341991420735,-0.106745262195133,0.0654919283896156,0.0854197085596833,0.12290771056964 +3.648,0.0576623487440562,-0.0253407467222928,-0.0120461233950538,-0.106769756933919,0.0654970072648009,0.0854095520751143,0.122935547306934 +3.65,0.0577074824855325,-0.0253182035732572,-0.0120724041817593,-0.106814622715439,0.0654906996559828,0.0854084453483468,0.122960663494356 +3.652,0.0577348795112818,-0.0253075168698771,-0.0120843198188773,-0.106839132425662,0.0654957758638376,0.0853982829758123,0.122988517607499 +3.654,0.0577800305761347,-0.0252849584299498,-0.0121105885546154,-0.106884018777713,0.0654894688053101,0.0853971738692217,0.123013659627103 +3.656,0.0578074400588065,-0.0252742560459003,-0.0121224959290687,-0.106908543703596,0.0654945427443095,0.0853870062170905,0.123041530770706 +3.658,0.0578526084215651,-0.0252516820660744,-0.0121487528476829,-0.106953450514334,0.0654882367147352,0.0853858950045078,0.123066698437772 +3.66,0.0578800303724348,-0.0252409638257608,-0.0121606521250099,-0.106977990709385,0.0654933087245203,0.0853757222943687,0.123094586446185 +3.662,0.0579252159255687,-0.0252183742869035,-0.0121868972443416,-0.107022917767983,0.0654870040599437,0.0853746089122349,0.123119779712841 +3.664,0.0579526503244321,-0.0252076402020509,-0.0121987884284918,-0.107047473181366,0.0654920743074291,0.0853644310503493,0.123147684598169 +3.666,0.0579978528803026,-0.0251850352998686,-0.0122250215437835,-0.107092420207943,0.0654857711647609,0.0853633151669371,0.123172903555922 +3.668,0.0580252996786084,-0.0251742855465266,-0.0122369044833582,-0.107116990708851,0.0654908396326765,0.0853531318142106,0.12320082548835 +3.67,0.0580705190221251,-0.0251516656258837,-0.0122631252292062,-0.107161957421518,0.0654845379699662,0.085352012922133,0.123226070327666 +3.672,0.0580979781690376,-0.0251409004909756,-0.0122749996653919,-0.107186542846445,0.0654896044690179,0.08534182358304,0.123254009583563 +3.674,0.0581432140766729,-0.025118265998396,-0.0123012075660933,-0.107231528980965,0.0654833040895697,0.085340701076771,0.123279280553815 +3.676,0.0581706855257591,-0.0251074858350951,-0.0123130731763079,-0.107256129157915,0.0654883683092909,0.0853305051819265,0.123307237461494 +3.678,0.0582159377961979,-0.0250848372598314,-0.0123392677146997,-0.107301134494668,0.0654820689123974,0.0853293784377223,0.123332534826718 +3.68,0.0582434215164676,-0.0250740424402565,-0.012351124163146,-0.107325749270221,0.0654871304746897,0.0853191754240776,0.123360509713845 +3.682,0.0582886899912816,-0.0250513802649043,-0.0123773048413999,-0.107370773649433,0.065480831712183,0.0853180438700633,0.123385833719079 +3.684,0.0583161859725127,-0.0250405711428821,-0.0123891518207106,-0.107395402907595,0.0654858902226764,0.0853078332483465,0.123413826873259 +3.686,0.0583614705558988,-0.0250178957996571,-0.0124153182149424,-0.107440446245571,0.065479591741513,0.0853066964245018,0.123439177721159 +3.688,0.0583890727250857,-0.0250058417521728,-0.012427868444379,-0.107466859128799,0.0654809362590615,0.085300699242804,0.123463791757886 +3.69,0.0584286603124191,-0.0249863434852364,-0.0124500070105945,-0.107505230136784,0.0654781881259797,0.0852958930756501,0.123488710441105 +3.692,0.0584530018316174,-0.0249775563498782,-0.0124595345493866,-0.107525882863659,0.0654864271498217,0.085283097013399,0.123517170597174 +3.694,0.0585021461745245,-0.0249525557610571,-0.0124887181862623,-0.107574895549663,0.0654790337121423,0.0852831370732719,0.123542538470988 +3.696,0.0585313168468466,-0.0249406171451315,-0.0125018749084862,-0.107601084697422,0.0654836464665001,0.0852732412748227,0.123570487098075 +3.698,0.0585766131631732,-0.0249182938664455,-0.0125277467768372,-0.107645838092858,0.0654781788969591,0.0852718320196892,0.123596735532336 +3.7,0.0586039993824958,-0.0249077741843449,-0.0125392398512314,-0.107670239962571,0.0654836281698797,0.0852614565754064,0.123625382646813 +3.702,0.0586509936438609,-0.0248841718384351,-0.0125664964851916,-0.107717048511542,0.0654763206705958,0.0852609852763223,0.123651065659751 +3.704,0.0586792694533978,-0.0248730223049798,-0.0125786974070806,-0.107742517128071,0.0654807473721254,0.0852510240285593,0.123679447324494 +3.706,0.0587249426626104,-0.0248503457844071,-0.0126048437719619,-0.107788071160679,0.0654741128884354,0.0852500417442758,0.12370542700521 +3.708,0.0587525839153412,-0.0248396538617041,-0.0126165077550207,-0.107812897253518,0.0654788747919364,0.0852397570251643,0.123733963826211 +3.71,0.0587984671058173,-0.0248167291066448,-0.0126428633346908,-0.107858777364657,0.0654719235958799,0.0852388674565797,0.123759727249797 +3.712,0.0588262468298104,-0.0248058639294984,-0.0126546712324617,-0.107883768902544,0.0654765449619449,0.0852286048036991,0.123788116042307 +3.714,0.0588717072213011,-0.0247831754164512,-0.0126806895131345,-0.107929196237232,0.0654699337687425,0.085227508650256,0.1238138998315 +3.716,0.0588993037435406,-0.0247723673543361,-0.0126923692062001,-0.107953979439584,0.0654747617401976,0.0852171552633154,0.123842245507974 +3.718,0.0589448032408711,-0.0247495764895029,-0.0127184357100561,-0.107999401352862,0.065468217985039,0.0852160386125528,0.123867917942242 +3.72,0.0589724432902256,-0.0247386568787578,-0.0127301775059956,-0.108024214483894,0.065473118143773,0.0852057074727821,0.123896155577441 +3.722,0.0590178486505786,-0.0247158850368447,-0.0127561687122711,-0.108069463435613,0.0654667833769483,0.0852045053131159,0.123921794436049 +3.724,0.0590454563042714,-0.0247049282328177,-0.012767900227224,-0.108094222751342,0.0654718217507647,0.0851941647907417,0.123949976219151 +3.726,0.059090893344384,-0.0246820993651201,-0.0127939147741831,-0.108139441919953,0.0654655883819456,0.0851929332328898,0.123975570800651 +3.728,0.0591185249494684,-0.0246710834285455,-0.0128056739488855,-0.108164213318805,0.0654706985216048,0.0851826029339071,0.124003708530404 +3.73,0.0591639612549464,-0.0246482399985166,-0.0128316753263664,-0.108209388100165,0.0654645590841666,0.0851813379757952,0.12402930178661 +3.732,0.0591915956478185,-0.02463720175639,-0.0128434324834237,-0.108234155724817,0.0654697225961064,0.0851710048930027,0.124057433976133 +3.734,0.0592370643189518,-0.0246143323333168,-0.0128694405090106,-0.108279346478205,0.0654636084683552,0.0851697347617656,0.124083041250513 +3.736,0.0592647160602917,-0.0246032776904751,-0.0128811969054201,-0.108304133305607,0.0654687772127485,0.0851594035156358,0.124111188955758 +3.738,0.0593102089778003,-0.0245803977709767,-0.012907197414127,-0.108349352439838,0.0654626555513584,0.0851581386144426,0.124136832339663 +3.74,0.0593378737402662,-0.0245693417061774,-0.0129189403784518,-0.108374159477993,0.0654678032606578,0.0851478075110267,0.124165015200979 +3.742,0.0593833978815125,-0.0245464508509157,-0.0129449341017134,-0.108419429126128,0.065461639613547,0.0851465607770082,0.124190702824046 +3.744,0.059411080160004,-0.0245353959591535,-0.0129566617327265,-0.108444264617938,0.065466743997256,0.0851362320245869,0.124218928561766 +3.746,0.0594566301660747,-0.0245124993905187,-0.0129826412521165,-0.108489586244847,0.0654605268218927,0.0851350057334479,0.124244664871878 +3.748,0.0594843286958531,-0.0245014477049862,-0.0129943501517383,-0.108514449817037,0.0654655816394149,0.0851246782809131,0.124272935351091 +3.75,0.0595299021198151,-0.0244785457251833,-0.0130203127195871,-0.108559821695808,0.0654593094562248,0.0851234707437449,0.124298717853086 +3.752,0.0595576170849835,-0.0244674945593836,-0.0130320035716793,-0.108584712613035,0.0654643168258341,0.0851131431355642,0.124327028753755 +3.754,0.0596032085174615,-0.0244445882082096,-0.013057945536594,-0.108630125296425,0.065457999933668,0.0851119476674923,0.124352852640561 +3.756,0.0596309382702742,-0.0244335342386115,-0.0130696193385226,-0.108655039627168,0.0654629696996704,0.0851016170255066,0.124381197199963 +3.758,0.0596765441584767,-0.0244106226914193,-0.0130955395403375,-0.108700483244868,0.0654566224826702,0.0851004259024462,0.124407056110935 +3.76,0.0597042875272505,-0.0243995616646717,-0.0131071985263215,-0.108725417126277,0.0654615669271572,0.0850900894859356,0.124435426707175 +3.762,0.0597499050850499,-0.0243766438754505,-0.0131330967100311,-0.10877088208611,0.0654552049601681,0.0850888952575925,0.12446131494054 +3.764,0.0597776608243076,-0.0243655721468962,-0.0131447430099484,-0.108795831765048,0.065460136302129,0.0850785507375426,0.124489705050485 +3.766,0.0598232892055672,-0.0243426464302877,-0.0131706203421408,-0.108841311441291,0.065453772456993,0.085077348014995,0.124515618216101 +3.768,0.0598510566798436,-0.0243315611067129,-0.0131822559824616,-0.108866274438121,0.0654587002946574,0.0850669940674733,0.124544023177927 +3.77,0.0598966963222668,-0.024308625795604,-0.0132081142219585,-0.108911765289411,0.0654523434151714,0.0850657799193764,0.124569958751962 +3.772,0.0599244753080436,-0.0242975251100799,-0.0132197406856759,-0.108936740366922,0.0654572738885689,0.0850554162138604,0.124598376116492 +3.774,0.059970127729702,-0.0242745786188861,-0.0132455819310301,-0.108982241979799,0.065450928231499,0.0850541901881969,0.124624333279114 +3.776,0.0599979184529171,-0.0242634617800194,-0.0132572001769683,-0.109007229162509,0.0654558638923834,0.085043817291553,0.124652762537269 +3.778,0.0600435856025149,-0.0242405028574933,-0.0132830263734889,-0.109052743361986,0.0654495298375932,0.0850425808222113,0.124678741829051 +3.78,0.060071388528945,-0.0242293698737547,-0.0132946368201838,-0.109077743544244,0.0654544703518024,0.0850321998825749,0.124707183905159 +3.782,0.0601125307427806,-0.0242079136681808,-0.0133176409819446,-0.109119632079687,0.0654468032274389,0.0850326593509173,0.12472972562379 +3.784,0.0601376178964968,-0.0241980960513538,-0.0133276135452651,-0.109141290993102,0.0654536140879586,0.0850201059054604,0.124757509552316 +3.786,0.0601849817009355,-0.0241742536295015,-0.0133548261681356,-0.10918855661591,0.0654478963668419,0.0850189545563008,0.124783837132695 +3.788,0.0602134641660644,-0.0241626415231186,-0.0133670729142834,-0.109213936522022,0.0654534253092379,0.0850081566473114,0.124812332099257 +3.79,0.0602598647035633,-0.0241394933439231,-0.0133932734745728,-0.109259854624042,0.0654477671902293,0.0850067591848352,0.124838990713821 +3.792,0.0602879176532325,-0.0241283267380974,-0.0134049159530593,-0.109284938693797,0.0654530620660656,0.0849962710672537,0.124867888081201 +3.794,0.0603305438022788,-0.0241061458096112,-0.0134288309910738,-0.109328238059004,0.0654448394942889,0.0849972425841885,0.124890893484605 +3.796,0.0603562941828413,-0.0240960707946391,-0.0134390998171073,-0.109350570402554,0.0654512405050515,0.0849849219884692,0.124919071390968 +3.798,0.0603998403759077,-0.0240735420156879,-0.0134637901019203,-0.109394990474284,0.0654437210608972,0.0849857904707519,0.124942501733935 +3.8,0.060425918499892,-0.0240632577973228,-0.0134744265600347,-0.109417401103148,0.0654506900174189,0.0849729054188046,0.124970759553141 +3.802,0.0604745545326776,-0.0240390983225852,-0.0135022381923574,-0.109465804496236,0.065445052301462,0.0849718842293297,0.124998189751123 +3.804,0.0605034981545119,-0.0240275213138035,-0.0135145001494197,-0.109491549889786,0.0654505022763881,0.0849609906553468,0.125027508323758 +3.806,0.0605516215912974,-0.0240036391784694,-0.0135416423324008,-0.10953934143354,0.0654438270120435,0.0849602619575763,0.125054956265808 +3.808,0.0605807343827223,-0.0239910488950383,-0.013554315422775,-0.10956729585704,0.065444691472808,0.0849543735724649,0.125081277640899 +3.81,0.0606227597152713,-0.0239703973601186,-0.0135772065257773,-0.109608329613606,0.06544056763372,0.0849502059849674,0.125107816061343 +3.812,0.0606482605147981,-0.023961169458921,-0.013586683771102,-0.109630233845853,0.0654477674023722,0.0849373495014294,0.125137659391842 +3.814,0.0606992639720649,-0.0239354322089274,-0.0136160534706931,-0.109681612820581,0.065439138311135,0.0849379974003757,0.125164844040903 +3.816,0.0607290752045302,-0.0239223434488987,-0.0136292815760259,-0.109710384698131,0.0654394409801547,0.0849321782665034,0.125191030453353 +3.818,0.0607701703450963,-0.0239023686579958,-0.0136513575086339,-0.109750456449003,0.0654360609600848,0.0849274364772435,0.125217905891975 +3.82,0.0607950410192439,-0.0238935578095203,-0.013660293787122,-0.1097716464536,0.0654438207851128,0.0849141419801693,0.125247953712594 +3.822,0.0608466371547136,-0.0238673340984704,-0.0136901111008426,-0.109823665224575,0.0654348980596215,0.0849149567355296,0.125274996715314 +3.824,0.0608769603658218,-0.0238548400880579,-0.0137031825374001,-0.109851212907575,0.0654384940695031,0.0849049733384515,0.125304231199227 +3.826,0.0609233006953249,-0.0238320741414739,-0.0137287003121269,-0.109897439470813,0.0654323173845831,0.0849036612667109,0.125332003725786 +3.828,0.0609512486976089,-0.0238212609170087,-0.0137397523141847,-0.109922542075207,0.0654372300684691,0.0848929137009352,0.125361765743119 +3.83,0.0609992581834889,-0.0237970638928652,-0.0137667253663125,-0.109970779412722,0.0654293420688476,0.0848925150460493,0.125388645220642 +3.832,0.0610281264050914,-0.023785431929872,-0.0137786170903483,-0.109996975680418,0.0654333844779471,0.0848822248810839,0.125417849020006 +3.834,0.0610743976922244,-0.0237623256066973,-0.0138042477343879,-0.110043380397811,0.0654266828670517,0.0848810584495028,0.125444859570499 +3.836,0.0611024548840993,-0.0237511401916621,-0.0138155642380756,-0.11006870538716,0.0654313926396682,0.0848703957035387,0.125474034087967 +3.838,0.061148915168068,-0.0237277080651021,-0.0138414576626683,-0.110115293450813,0.0654246061680752,0.0848692643572894,0.125500652779084 +3.84,0.0611771128074259,-0.0237162543188255,-0.0138529909538566,-0.11014075787074,0.0654293426260688,0.0848586626996732,0.125529526044047 +3.842,0.0612230700493711,-0.0236930665591361,-0.0138785349261743,-0.110186707498479,0.0654231145088901,0.0848572565528041,0.12555608497316 +3.844,0.0612510468428988,-0.0236816518265788,-0.0138899544246735,-0.110211906098535,0.0654281858183116,0.084846581762563,0.125584848582076 +3.846,0.061297066357436,-0.0236583310274801,-0.0139155912504816,-0.110257823139719,0.0654220825988247,0.0848451584385888,0.125611255580728 +3.848,0.0613250945683664,-0.023646795695894,-0.0139270942364159,-0.110283057357601,0.0654272447204657,0.0848345364953539,0.12563989617493 +3.85,0.0613664765105947,-0.0236250278918435,-0.0139498700566412,-0.110325171179263,0.0654199718821178,0.0848347856451699,0.12566277663924 +3.852,0.0613917107867583,-0.0236148129861485,-0.0139597402639477,-0.110346973000939,0.0654270938604835,0.0848220019308458,0.125690668755135 +3.854,0.0614393538686384,-0.0235906275341192,-0.0139867573327046,-0.110394438443538,0.0654218410033975,0.0848206148744976,0.125717370404788 +3.856,0.0614680192866751,-0.0235786171507978,-0.0139989027679992,-0.110419990425064,0.0654276953189883,0.0848096177276747,0.12574602100853 +3.858,0.0615147196533056,-0.023555116209555,-0.0140249255783534,-0.110466139034294,0.0654224320570587,0.0848080231785353,0.125773052201418 +3.86,0.0615429767917564,-0.0235435689227015,-0.0140364632618148,-0.110491436513346,0.0654279760684501,0.0847973735027982,0.125802141200587 +3.862,0.0615859148223002,-0.0235210669800086,-0.0140601973048775,-0.110535031214245,0.0654200257686477,0.0847982256894008,0.125825516051183 +3.864,0.0616118526084674,-0.0235106508908609,-0.0140703521636651,-0.11055757689494,0.0654265751463758,0.0847857550981385,0.125853891155625 +3.866,0.0616602627318089,-0.023486310742404,-0.0140976398682076,-0.110605961955951,0.0654206194374805,0.0847847932728849,0.125881265870496 +3.868,0.0616892452033884,-0.0234744483763286,-0.0141097034511679,-0.110631935232676,0.0654258583610534,0.0847739201713681,0.125910555715241 +3.87,0.0617366107195248,-0.0234508012733328,-0.0141359392021817,-0.110679082651456,0.065419615554982,0.0847727532995242,0.125938122307379 +3.872,0.0617651610922435,-0.0234393839199823,-0.0141473971893726,-0.110704799904982,0.06542442332719,0.0847621560355185,0.125967755913911 +3.874,0.0618129221166247,-0.0234154075479862,-0.0141738613956851,-0.110752666703884,0.0654170771533636,0.084761528331053,0.125995124695514 +3.876,0.0618417251557869,-0.0234038463053753,-0.014185441380711,-0.110778814174066,0.0654212173454429,0.084751186252318,0.12602469280776 +3.878,0.0618886726573007,-0.0233803603283148,-0.0142112452615225,-0.110826010958109,0.0654139919961157,0.0847503187557494,0.12605205267848 +3.88,0.0619171182123473,-0.0233690134908473,-0.0142225417704407,-0.110851836699697,0.0654181994924693,0.0847398077324177,0.126081594966825 +3.882,0.0619638188963824,-0.0233455769040882,-0.0142481942007739,-0.110898862359594,0.0654109899086191,0.0847388362083538,0.126108765411961 +3.884,0.0619921857467979,-0.0233341756471173,-0.01425948411816,-0.110924615400203,0.0654152563573065,0.0847282586127479,0.12613813420405 +3.886,0.0620385179843911,-0.023310882476031,-0.0142848893282014,-0.110971216807912,0.065408383736968,0.0847270748701277,0.126165185132059 +3.888,0.0620667383775307,-0.0232994590427893,-0.0142961268018215,-0.110996788973479,0.0654128898461414,0.0847164194040533,0.126194400332417 +3.89,0.0621129566376636,-0.0232761393203744,-0.0143214877865892,-0.111043172854226,0.0654062795617673,0.0847151153086456,0.126221301927859 +3.892,0.0621411479377758,-0.0232646174440734,-0.0143327637004452,-0.111068680466625,0.06541098550746,0.0847044504773628,0.126250358339439 +3.894,0.0621872778253763,-0.02324128422784,-0.0143580856954733,-0.111114853675511,0.0654046523959432,0.0847030367548147,0.126277163925578 +3.896,0.0622155749144541,-0.0232285107459996,-0.0143700701398037,-0.11114217477522,0.0654058339716092,0.0846967201592417,0.12630272524742 +3.898,0.0622558415995082,-0.0232083435820389,-0.0143914564775179,-0.111181386289476,0.065403217093188,0.0846915196328928,0.126328804390832 +3.9,0.0622807524760515,-0.0231987283702709,-0.0144005566344927,-0.111202707683887,0.065411425508499,0.0846782336506642,0.126357989707253 +3.902,0.0623307390464785,-0.0231730461284717,-0.0144289139567388,-0.111252649716416,0.0654044082543546,0.0846779025037881,0.126384803840178 +3.904,0.0623605436663959,-0.0231602940430416,-0.0144415651322953,-0.111279568604564,0.0654091028006853,0.0846675746653678,0.126413622891701 +3.906,0.062406729459499,-0.0231372087163639,-0.0144667265764162,-0.11132529938222,0.0654038912244416,0.0846658309149554,0.126441195753411 +3.908,0.0624352860623106,-0.0231244622680229,-0.0144787195044992,-0.111352739970972,0.0654054463616813,0.084659579926966,0.126467309504466 +3.91,0.0624769662116224,-0.0231035518769371,-0.0145009995031584,-0.111393346575327,0.0654020698253429,0.0846549454310196,0.126493706367212 +3.912,0.06250256161443,-0.0230936996540475,-0.0145104017210107,-0.111415399861389,0.0654096880937341,0.0846419357393029,0.126523280644384 +3.914,0.0625531245699935,-0.0230679582964998,-0.0145389022380013,-0.111466103602245,0.0654021407359222,0.0846419606624995,0.126550759192293 +3.916,0.062583163319192,-0.0230553615658824,-0.0145514423107181,-0.111493372182559,0.0654063344611857,0.0846317172077005,0.126580166129817 +3.918,0.0626299265703721,-0.0230321300550184,-0.0145767865414547,-0.111540002253506,0.0654002658778213,0.0846303471422691,0.126608202844392 +3.92,0.0626587069743093,-0.0230194914720286,-0.0145886880542837,-0.111567830922169,0.065401197962435,0.0846241689084349,0.126634790014611 +3.922,0.0627006264693089,-0.0229986125817804,-0.0146109133760633,-0.111608984954555,0.0653971799373017,0.0846197445610379,0.126661606009279 +3.924,0.062726332753937,-0.0229888811939271,-0.0146201766963744,-0.111631224223568,0.0654043225176772,0.0846066791371168,0.126691555379572 +3.926,0.0627770296559961,-0.0229631450370744,-0.0146485842243232,-0.111682368564341,0.0653962948344347,0.0846068866012122,0.126719329592019 +3.928,0.062807143365105,-0.0229505924146477,-0.0146610114682982,-0.111709794246923,0.0654001640515787,0.0845966093721696,0.126748977668685 +3.93,0.0628539501541064,-0.0229273639192585,-0.0146862366707748,-0.111756628502949,0.0653938545477371,0.0845952803861212,0.126777194197815 +3.932,0.0628823179521265,-0.0229160743525989,-0.0146971332488957,-0.111782286268942,0.0653985207240808,0.0845845057990172,0.126807272627008 +3.934,0.0629304372778458,-0.0228917671714701,-0.0147234331477388,-0.111830754901155,0.0653907763615985,0.0845839556510682,0.126834872228185 +3.936,0.0629595219578232,-0.022879875721958,-0.0147349381091395,-0.111857288713257,0.0653946963946153,0.0845735514133075,0.126864570263592 +3.938,0.0630062763472382,-0.0228564250962522,-0.0147601802459069,-0.111904353200303,0.065387798929759,0.0845724043055798,0.126892257710233 +3.94,0.0630347250540689,-0.0228448872192732,-0.014771230747101,-0.111930211834096,0.0653922039347132,0.0845616897564809,0.12692192984018 +3.942,0.0630770076292741,-0.0228227607089463,-0.0147938412295563,-0.11197375501084,0.0653838691826676,0.0845623144765616,0.126945746844553 +3.944,0.0631027698982915,-0.0228123361023594,-0.0148034718212307,-0.111996270631809,0.0653901590944877,0.0845494172565865,0.126974377034339 +3.946,0.0631507877989113,-0.022788061674002,-0.0148299481645548,-0.112044537066145,0.0653844199896891,0.0845480740021501,0.127002053306617 +3.948,0.0631797360539627,-0.0227759160926669,-0.0148416937734248,-0.112070525115012,0.065389826995441,0.0845368513891716,0.127031400239079 +3.95,0.0632268910106777,-0.0227521565070852,-0.0148673122247217,-0.112117432406227,0.065384188723532,0.0845352393008529,0.127059190086618 +3.952,0.0632554931263826,-0.0227403161084688,-0.0148785698588785,-0.112143191256678,0.0653894146893335,0.0845243900649079,0.12708879366415 +3.954,0.0632987342531215,-0.0227176070666863,-0.0149018353826784,-0.112187305079543,0.0653813766170867,0.0845251564434847,0.127112792966755 +3.956,0.0633249150090484,-0.0227068653955143,-0.0149117306768837,-0.112210167034934,0.0653878216910012,0.0845124570007901,0.127141519648982 +3.958,0.0633736546083307,-0.0226822517676833,-0.0149385942989871,-0.112258975062297,0.065382013118717,0.0845113126695247,0.127169511598428 +3.96,0.0634029125808507,-0.0226700087433335,-0.014950424744264,-0.112285278924234,0.0653873001881192,0.0845002311127977,0.127199140825719 +3.962,0.0634506291596933,-0.0226460409704914,-0.0149762797805981,-0.112332810592579,0.06538128024043,0.0844988644168167,0.127227268995014 +3.964,0.0634794734751221,-0.0226342107825597,-0.0149875321326812,-0.112358876149689,0.0653861795750636,0.0844880874781984,0.127257215561939 +3.966,0.0635230484715972,-0.0226114466565044,-0.0150108498570912,-0.112403527435517,0.065377676637376,0.0844890705425683,0.127281567549088 +3.968,0.0635493703860364,-0.0226007892838341,-0.0150206572971805,-0.112426606006184,0.065383743094044,0.0844763697362099,0.127310637834113 +3.97,0.0635983230959236,-0.0225761641126584,-0.0150474893597184,-0.112475884038189,0.0653774693828203,0.0844754167922361,0.127338951673032 +3.972,0.0636276825036514,-0.0225639944356753,-0.0150592132908315,-0.112502377879674,0.065382392681073,0.0844643278765427,0.127368878342566 +3.974,0.0636755230518402,-0.0225400318029086,-0.0150849867356649,-0.112550252577446,0.0653759944060228,0.0844630926274162,0.127397264985744 +3.976,0.0637047911270966,-0.0225269896925855,-0.0150969516018622,-0.112578618246178,0.065376848547693,0.0844568323924473,0.127424127868605 +3.978,0.0637468809546259,-0.0225059797593296,-0.0151188927097111,-0.112619943724598,0.0653730697770164,0.0844522152193919,0.127451419488972 +3.98,0.0637726770145202,-0.0224960702863006,-0.0151279356859819,-0.112642278727781,0.0653803474925764,0.0844389575605188,0.127481665523836 +3.982,0.0638239825412188,-0.0224699185891638,-0.0151563469692642,-0.112694066687723,0.0653722759748089,0.08443919855033,0.127509875989475 +3.984,0.0638544354281286,-0.0224570334923348,-0.0151687160351155,-0.112721874512403,0.0653761012982834,0.0844288659515728,0.127539791681593 +3.986,0.0639015485401521,-0.0224335826880664,-0.015193731087953,-0.112769050638569,0.0653698839221581,0.0844274541303485,0.127568448501297 +3.988,0.0639301228224461,-0.0224220586319351,-0.0152044736615589,-0.112794962333293,0.0653745636530323,0.0844165688245814,0.127598810637093 +3.99,0.0639785984825604,-0.0223974949332035,-0.0152305998316924,-0.112843857275305,0.0653668348411633,0.0844159696490292,0.127626820912891 +3.992,0.0640079163030535,-0.022385356516853,-0.0152419700232832,-0.112870685230999,0.0653707209798128,0.0844054666034676,0.127656791302513 +3.994,0.064054937532339,-0.0223617095184064,-0.0152669787021134,-0.112918102362166,0.0653638648052388,0.084404247534393,0.127684895131163 +3.996,0.0640837930835234,-0.0223487475625574,-0.0152785937160181,-0.112946243078407,0.065364474753755,0.0843978971853756,0.127711448575654 +3.998,0.0641249155109828,-0.0223281466152524,-0.0152997929378659,-0.112986729869313,0.0653611185949999,0.0843928685938193,0.127738487252459 +4,0.0641503399493236,-0.0223182242302145,-0.015308638042655,-0.113008721643704,0.0653687187191684,0.0843793702159515,0.127768417099259 +4.002,0.0642008611829266,-0.0222922922841285,-0.0153365015233678,-0.113059642910366,0.065361344061186,0.0843791090483283,0.127796287563078 +4.004,0.0642310163956099,-0.0222792859923132,-0.0153487575287261,-0.113087092910594,0.0653656851398176,0.0843685565450147,0.127825838795666 +4.006,0.0642777220181669,-0.022255850102906,-0.015373505069519,-0.11313366472111,0.0653601850577005,0.0843667891187706,0.127854243361301 +4.008,0.0643061639197595,-0.0222441198409105,-0.0153842432774516,-0.113159384558038,0.065365362645261,0.0843558209002763,0.1278843020199 +4.01,0.0643544683468301,-0.0222194799990323,-0.0154102409603776,-0.113207864463892,0.0653582366654846,0.084354964813516,0.127912150820165 +4.012,0.064383754237732,-0.0222071424975568,-0.0154216325397255,-0.113234604630094,0.0653625146796142,0.0843444407465135,0.127941926305527 +4.014,0.0644307759944165,-0.0221833800914302,-0.0154465987641005,-0.113281840821498,0.065356059642034,0.0843430909468592,0.127969978819446 +4.016,0.0644594523788331,-0.0221714711255343,-0.0154575021381069,-0.113307970856746,0.0653606647812144,0.0843322855876325,0.127999859224968 +4.018,0.0645066612532939,-0.0221474942845066,-0.0154826488505357,-0.113355505319683,0.0653539234559383,0.0843310371937786,0.128027706014661 +4.02,0.064535458503872,-0.0221354423596512,-0.0154936746146244,-0.113381790845633,0.0653583874068144,0.0843202702392973,0.128057454865842 +4.022,0.0645822670500334,-0.0221116970663307,-0.015518513312329,-0.113428913969628,0.0653519248598161,0.0843188510373238,0.128085320819135 +4.024,0.0646108879449461,-0.022099718985189,-0.0155294143569189,-0.113455010988778,0.0653565390794463,0.0843080131620804,0.12811504551522 +4.026,0.0646577328714261,-0.022075892909596,-0.0155542921859773,-0.11350215485679,0.0653500822070576,0.0843066042720893,0.128142829563041 +4.028,0.0646863923672657,-0.0220638356425292,-0.0155652370572941,-0.113528290046796,0.0653547099684978,0.0842957995184188,0.128172483793646 +4.03,0.064733150032912,-0.022040039763256,-0.0155900414165976,-0.11357530230046,0.065348378539832,0.084294339760349,0.128200257443858 +4.032,0.0647617807496575,-0.0220279692062456,-0.0156009654905327,-0.113601400717291,0.065353076068092,0.0842835366651747,0.128229888117413 +4.034,0.0648085659184084,-0.0220041347335105,-0.0156257803410833,-0.113648410712098,0.0653467768427573,0.0842820731459427,0.128257642368336 +4.036,0.0648372211147552,-0.021992027495035,-0.0156367174385054,-0.113674533068276,0.0653514899078379,0.0842712872957685,0.128287257214815 +4.038,0.0648840022007406,-0.0219681923998727,-0.0156615074770933,-0.113721520812447,0.0653452281770661,0.084269808560386,0.128315025772284 +4.04,0.0649126631099532,-0.0219560769137992,-0.0156724325832479,-0.113747650936877,0.065349951094757,0.0842590250099295,0.128344652397531 +4.042,0.0649594691916023,-0.021932229547299,-0.0156972134649164,-0.113794664372076,0.0653436809890864,0.0842575491091594,0.128372444305836 +4.044,0.0649881490660102,-0.0219201062231645,-0.0157081291751179,-0.113820820848913,0.0653483836125487,0.0842467695177967,0.12840209473089 +4.046,0.0650349726110308,-0.0218962582736463,-0.015732888418349,-0.113867864952564,0.0653420910239613,0.0842452992406783,0.128429924573925 +4.048,0.0650636673474631,-0.0218841360834929,-0.0157437854836817,-0.113894046400255,0.0653467619276851,0.0842345201607171,0.128459610035892 +4.05,0.0651105154033287,-0.0218602846371056,-0.0157685249507974,-0.113941136951183,0.0653404286903173,0.0842330628265632,0.12848748137587 +4.052,0.0651392287705804,-0.0218481625544284,-0.0157794034356295,-0.113967349053939,0.065345057586417,0.0842222853012216,0.128517204396298 +4.054,0.065186097921403,-0.021824309711382,-0.0158041188708561,-0.114014485422054,0.065338681848389,0.0842208409280987,0.128545118777711 +4.056,0.0652148285590252,-0.0218121873658503,-0.0158149773388619,-0.114040726843653,0.065343269379318,0.0842100639144847,0.128574878526968 +4.058,0.0652617183122354,-0.021788331173772,-0.0158396689191398,-0.114087907609569,0.0653368540982782,0.0842086311224201,0.128602832897291 +4.06,0.0652904662235647,-0.0217762051342603,-0.0158505090769961,-0.114114177417087,0.0653414050997803,0.0841978539122197,0.128632624901778 +4.062,0.0653373734638184,-0.0217523447135407,-0.015875176176264,-0.114161395782831,0.0653349600842824,0.0841964284033351,0.128660615296774 +4.064,0.0653661371268387,-0.021740211815915,-0.0158859996150076,-0.114187690785432,0.0653394835434153,0.0841856494356329,0.128690434228787 +4.066,0.0654130601550398,-0.0217163451428789,-0.0159106433511713,-0.11423494040894,0.0653330197519364,0.0841842268433327,0.128718456132042 +4.068,0.0654418385519146,-0.0217042019409814,-0.0159214523444293,-0.114261257843654,0.0653375250330589,0.0841734448188187,0.128748296717195 +4.07,0.0654887759698468,-0.0216803272545127,-0.0159460740274084,-0.114308532803209,0.0653310531614846,0.0841720211825159,0.128776346542144 +4.072,0.0655175680788358,-0.0216681710671191,-0.0159568704609381,-0.114334870145986,0.0653355486922804,0.0841612350526404,0.128806204748478 +4.074,0.065564519746942,-0.0216442864518876,-0.0159814719443193,-0.114382166786354,0.0653290768078579,0.0841598078517405,0.12883428007584 +4.076,0.0655933250992681,-0.0216321152730118,-0.0159922573889924,-0.114408522572565,0.0653335686176237,0.084149017154998,0.12886415339904 +4.078,0.0656402915684239,-0.0216082191452999,-0.0160168404012617,-0.1144558392795,0.0653271017447829,0.0841475853033535,0.128892253197379 +4.08,0.0656691100372944,-0.0215960318315764,-0.0160276158204448,-0.114482212934634,0.0653315932652563,0.0841367900485435,0.128922140712561 +4.082,0.0657160924300924,-0.0215721229121733,-0.0160521818537431,-0.114529550041506,0.0653251333272396,0.0841353537686802,0.128950265070953 +4.084,0.0657449242306743,-0.0215599189996886,-0.0160629476827673,-0.114555941821926,0.0653296255641133,0.0841245543278728,0.128980167095045 +4.086,0.0657919237742192,-0.0215359964504301,-0.016087497727323,-0.11460330087662,0.065323172115146,0.0841231146687964,0.129008316894261 +4.088,0.0658207692660942,-0.0215237760076805,-0.0160982539122501,-0.114629711521231,0.0653276643106867,0.0841123115509976,0.129038234556199 +4.09,0.0658677870380514,-0.0214998393841247,-0.0161227884298521,-0.114677094645606,0.0653212153976321,0.0841108699121606,0.129066411050758 +4.092,0.0658966466113221,-0.0214876027820361,-0.0161335345785887,-0.114703525093188,0.065325705767315,0.0841000635815723,0.129096345824585 +4.094,0.0659436833163364,-0.0214636519938603,-0.0161580535111203,-0.114750934346543,0.0653192588486891,0.0840986212638725,0.129124550299607 +4.096,0.0659725572729648,-0.0214513997258944,-0.0161687890255796,-0.114777385461044,0.0653237452956624,0.0840878119923509,0.129154503628591 +4.098,0.0660196131797399,-0.021427434938697,-0.0161932919065543,-0.114824822433642,0.0653172979543293,0.0840863699012925,0.129182737146541 +4.1,0.0660485016818464,-0.0214151674742145,-0.0162040161172828,-0.114851294840554,0.0653217785977597,0.0840755576994392,0.129212710187057 +4.102,0.0660955766459488,-0.0213911890176846,-0.0162285022053935,-0.114898760443446,0.0653153290082583,0.0840741162007946,0.129240973459513 +4.104,0.0661244797004964,-0.0213789067204231,-0.0162392144686861,-0.114925254453916,0.0653198025000191,0.0840633008147443,0.129270966962572 +4.106,0.0661715732708022,-0.0213549149963348,-0.0162636828974591,-0.114972748916424,0.0653133496193442,0.0840618597430808,0.129299260326275 +4.108,0.066200490755942,-0.0213426180922139,-0.0162743826616826,-0.114999264542575,0.065317815246238,0.0840510407099987,0.129329274632169 +4.11,0.0662476023126102,-0.0213186135030926,-0.0162988325699072,-0.115046787547482,0.065311358785847,0.0840495994854947,0.129357598105518 +4.112,0.0662765340240866,-0.0213063020896272,-0.0163095194072761,-0.115073324574871,0.0653158164097205,0.0840387762233952,0.1293876332185 +4.114,0.0663236629213518,-0.0212822849866561,-0.01633395004164,-0.115120875473218,0.065309356658126,0.0840373340307648,0.129415986601297 +4.116,0.0663526086280478,-0.0212699590646759,-0.0163446236553796,-0.115147433564255,0.0653138065547996,0.0840265059410819,0.129446042303692 +4.118,0.0663997543120542,-0.0212459297176684,-0.0163690344357517,-0.115195011602851,0.0653073441344433,0.0840250619203483,0.129474425288694 +4.12,0.066428713806323,-0.0212335892314647,-0.0163796946495567,-0.115221590401346,0.0653117867964405,0.0840142284817351,0.129504501260511 +4.122,0.0664758758945415,-0.0212095478168089,-0.0164040851986647,-0.115269194916878,0.0653053224225896,0.0840127818927537,0.129532913531457 +4.124,0.0665048490297165,-0.0211971926905709,-0.0164147319370542,-0.115295794133989,0.0653097583760267,0.084001942731421,0.129563009450614 +4.126,0.0665520273461407,-0.0211731392937665,-0.0164391020787346,-0.115343424684027,0.0653032926661514,0.084000493067121,0.12959145075237 +4.128,0.0665810140566616,-0.0211607694580643,-0.0164497353439514,-0.115370044153344,0.0653077223347301,0.0839896479954262,0.129621566362627 +4.13,0.0666282086270593,-0.0211367040860638,-0.016474085077977,-0.115417700575656,0.0653012556915799,0.0839881950345404,0.129650036538498 +4.132,0.066657208931406,-0.0211243194921295,-0.0164847049274734,-0.115444340274608,0.0653056793209379,0.0839773440567416,0.129680171682375 +4.134,0.0667044199479541,-0.0211002420914993,-0.0165090343893204,-0.115492022681218,0.0652992118915958,0.0839758878594495,0.129708670681521 +4.136,0.0667334339372888,-0.0210878427147032,-0.0165196409156652,-0.115518682722597,0.0653036295315977,0.0839650311490157,0.129738825303178 +4.138,0.0667760771783584,-0.0210653281578081,-0.0165412025011636,-0.11556279493049,0.0652957002605365,0.0839654503045774,0.129763656289919 +4.14,0.0668022337646371,-0.0210542399140869,-0.0165502637412294,-0.115585929967453,0.06530194718675,0.0839523477751803,0.129792889294382 +4.142,0.0668510468586975,-0.0210293717277284,-0.0165759136109137,-0.115635243879547,0.0652963253637587,0.0839509059077359,0.12982187332876 +4.144,0.0668806468303166,-0.0210165338745746,-0.0165871182493852,-0.115662154572413,0.0653014580718117,0.0839395534496746,0.129852104608381 +4.146,0.0669286472219874,-0.0209922049300565,-0.0166118799173593,-0.115710263311945,0.0652956739568117,0.0839379141122485,0.129881321694423 +4.148,0.0669579450410182,-0.0209797347507111,-0.0166225382491191,-0.115737030454491,0.0653004293298835,0.0839269388804423,0.129911957034168 +4.15,0.0670066948527508,-0.02095490686177,-0.0166477148769527,-0.115786188942932,0.0652934107143053,0.0839259890696128,0.129941046983161 +4.152,0.0670364070149883,-0.0209422468041127,-0.0166585498193892,-0.115813570837932,0.0652974047880316,0.0839153613269791,0.129971702942912 +4.154,0.0670844702500336,-0.0209178934003326,-0.016683120217531,-0.115862233212126,0.0652903841392862,0.0839142517921794,0.130000869070153 +4.156,0.0671138685922217,-0.0209054890033551,-0.0166936577887034,-0.115889367284487,0.0652943439867207,0.0839034734762212,0.13003159907539 +4.158,0.0671617861341824,-0.020881178732428,-0.0167181094649614,-0.115938047115277,0.0652871704175741,0.083902343248402,0.130060660380975 +4.16,0.0671911355158233,-0.020868763334065,-0.0167286177927286,-0.115965170927786,0.0652910656083656,0.083891501850974,0.130091310033685 +4.162,0.0672387132899681,-0.0208446158180033,-0.0167528197736515,-0.116013542366112,0.0652840862800357,0.0838902153520471,0.13012032352892 +4.164,0.067267916328951,-0.0208322214315642,-0.0167632453961538,-0.116040510633093,0.065288118097153,0.0838792861599196,0.130150892202972 +4.166,0.0673153915467764,-0.0208080584351402,-0.0167873952887762,-0.116088745863079,0.0652812871511354,0.0838779214981062,0.130179805980301 +4.168,0.0673445635420421,-0.0207955899632621,-0.0167978377620011,-0.116115665117737,0.0652854435764264,0.0838669745383039,0.130210261759916 +4.17,0.0673919392552002,-0.0207714226840355,-0.0168219350168466,-0.116163720608492,0.0652788255198024,0.0838655175672286,0.130239104613883 +4.172,0.0674210761196522,-0.0207588951140823,-0.0168323865368404,-0.116190579474138,0.065283136181875,0.0838545571017061,0.130269472451453 +4.174,0.0674684341504063,-0.0207346848486924,-0.0168564870042063,-0.116238537759469,0.0652766798910579,0.0838530413312247,0.130298256871543 +4.176,0.0674975713780435,-0.0207220951924938,-0.0168669635579224,-0.116265378141519,0.0652811060166884,0.0838420815382764,0.130328561599973 +4.178,0.0675449237938129,-0.0206978570159354,-0.0168910626060611,-0.11631326989654,0.0652747764345635,0.0838405209397122,0.130357323904169 +4.18,0.0675740636703979,-0.0206852300222592,-0.0169015489413249,-0.116340102498361,0.0652792818543821,0.083829560283593,0.130387603933612 +4.182,0.0676214387065218,-0.0206609644260524,-0.0169256531811607,-0.116387986761849,0.0652730133097623,0.0838279833124415,0.130416372512998 +4.184,0.0676505936573004,-0.0206483146606481,-0.0169361413095797,-0.116414834962939,0.0652775463881426,0.0838170266230005,0.13044665949188 +4.186,0.0676979992412523,-0.0206240319733355,-0.0169602421990037,-0.116462748539877,0.0652712861600731,0.0838154545411665,0.130475460832053 +4.188,0.0677271731547655,-0.0206113743532274,-0.0169707197536136,-0.116489625298194,0.0652758056538262,0.0838045045582886,0.130505780303958 +4.19,0.0677746173178161,-0.0205870786164365,-0.016994812207754,-0.116537598996122,0.0652695090929077,0.0838029554010226,0.130534629966343 +4.192,0.0678038150861937,-0.0205744200764657,-0.017005272269881,-0.116564515738573,0.0652739837639191,0.0837920153480062,0.130564996193709 +4.194,0.067851296638179,-0.0205501162786822,-0.0170293482960415,-0.116612561765453,0.0652676268711449,0.0837904970126728,0.130593901549304 +4.196,0.0678805188580733,-0.0205374600621013,-0.0170397858638011,-0.116639522104209,0.0652720419358678,0.0837795670268751,0.130624319496776 +4.198,0.0679280337297824,-0.0205131506258536,-0.0170638395932638,-0.116687641141631,0.065265617463069,0.0837780795023179,0.130653279843819 +4.2,0.0679572794403444,-0.0205004957042623,-0.0170742532196128,-0.116714644157577,0.0652699714380303,0.0837671574519726,0.130683746618266 +4.202,0.0680048202765549,-0.0204761824233055,-0.0170982796775382,-0.116762826604635,0.0652634869500158,0.0837656938819984,0.130712756514732 +4.204,0.0680340865209878,-0.0204635258116631,-0.0171086697699832,-0.116789867146371,0.0652677888268455,0.0837547755684722,0.130743264697956 +4.206,0.0680816460767727,-0.0204392090084385,-0.0171326662793486,-0.116838099217907,0.0652612601343004,0.0837533258807557,0.130772316289731 +4.208,0.0681109295359925,-0.0204265465741074,-0.0171430347908231,-0.116865170647802,0.0652655241859768,0.0837424065147647,0.130802856657069 +4.21,0.0681585017391569,-0.0204022257227787,-0.0171670004968831,-0.116913437973312,0.0652589701592231,0.0837409601580122,0.130831942140157 +4.212,0.0681877993070839,-0.0203895534298218,-0.017177349920961,-0.116940533692976,0.065263211795896,0.0837300353769889,0.130862506075042 +4.214,0.0682353805144698,-0.0203652271904368,-0.0172012857328978,-0.116988824726734,0.0652566496071513,0.0837285837262851,0.130891619148515 +4.216,0.0682646900312135,-0.0203525416662556,-0.0172116186244322,-0.11701593965555,0.0652608820001749,0.0837176504619118,0.130922200069883 +4.218,0.0683122790728403,-0.020328208325234,-0.0172355265764924,-0.117064247106867,0.0652543244248818,0.0837161880088483,0.130951336744205 +4.22,0.0683415994708036,-0.020315507258934,-0.0172458450843075,-0.117091378229572,0.0652585567363611,0.0837052447989801,0.13098193074491 +4.222,0.0683891973588817,-0.0202911649844867,-0.0172697278225072,-0.117139699412522,0.0652520110065754,0.0837037694730534,0.131011089397715 +4.224,0.0684185286320348,-0.0202784471393101,-0.0172800335193028,-0.11716684585436,0.0652562478722097,0.0836928164193722,0.131041695141754 +4.226,0.0684661378240953,-0.0202540942582647,-0.017303893749524,-0.117215181924296,0.0652497160259327,0.0836913291102766,0.131070876126281 +4.228,0.0684954807468919,-0.0202413593131669,-0.0173141875848188,-0.117242344533383,0.0652539581039171,0.0836803675238639,0.131101494298377 +4.23,0.0685431043713005,-0.0202169944536294,-0.0173380276945918,-0.11729069923926,0.0652474381986292,0.0836788711836624,0.131130699278714 +4.232,0.0685724601640064,-0.020204242708989,-0.0173483100868885,-0.11731787997706,0.0652516832980054,0.0836679030976166,0.131161331813363 +4.234,0.0686201012971913,-0.0201798648767316,-0.0173721318957166,-0.117366258239319,0.0652451710384941,0.0836664016793163,0.131190563058073 +4.236,0.0686494712833219,-0.020167096949555,-0.0173824028700744,-0.117393459514888,0.0652494154559228,0.0836554293358417,0.131221212375665 +4.238,0.0686971324312286,-0.0201427055242191,-0.017406207534458,-0.117441866188312,0.0652429057707013,0.0836539268249744,0.131250472147648 +4.24,0.0687265177703565,-0.0201299220846227,-0.0174164668738391,-0.117469090296935,0.0652471455015541,0.0836429522421334,0.131281140537444 +4.242,0.0687742005736416,-0.0201055167765222,-0.0174402549000877,-0.117517529280514,0.0652406337933697,0.0836414519252279,0.131310430671946 +4.244,0.0688036020890823,-0.0200927183707995,-0.0174505022689548,-0.117544778012528,0.0652448654290834,0.083630476595414,0.131341119896857 +4.246,0.0688513072518255,-0.0200682991525772,-0.0174742736058525,-0.117593251783728,0.0652383483521847,0.0836289806375341,0.131370441587836 +4.248,0.0688807253628772,-0.0200554861168751,-0.0174845086355865,-0.117620526232647,0.0652425695841507,0.0836180053796612,0.131401152715949 +4.25,0.068928452753,-0.0200310531509413,-0.0175082628071423,-0.117669035768059,0.0652360453455913,0.0836165147023893,0.131430506488736 +4.252,0.0689578874937969,-0.0200182256042222,-0.017518485141021,-0.117696336315239,0.0652402551003537,0.0836055396555417,0.131461239913043 +4.254,0.069005636355095,-0.0199937791744952,-0.0175422213925689,-0.117744881306425,0.0652337233693949,0.0836040540590326,0.131490625730767 +4.256,0.0690350874551609,-0.019980937064527,-0.0175524307007356,-0.117772207737446,0.0652379216605415,0.0835930787863898,0.131521381313389 +4.258,0.0690828566656729,-0.0199564775186586,-0.0175761481367338,-0.117820786979464,0.06523138322169,0.0835915972305395,0.131550798756317 +4.26,0.0691123236618523,-0.0199436206933959,-0.0175863441137352,-0.117848138674797,0.0652355708331692,0.0835806208914135,0.131581576029936 +4.262,0.0691601119854532,-0.0199191483964421,-0.0176100418153464,-0.117896750510551,0.0652290271250363,0.0835791418477548,0.131611024491503 +4.264,0.0691895943386463,-0.0199062766762186,-0.017620224172816,-0.117924126657024,0.0652332052373632,0.0835681633954477,0.131641822860627 +4.266,0.0692374006318971,-0.0198817919753672,-0.0176439012891659,-0.117972769383151,0.0652266578989105,0.083566685193128,0.131671301718387 +4.268,0.0692668978280627,-0.0198689052093111,-0.017654069752149,-0.11800016916385,0.0652308277471046,0.0835557035624734,0.131702120621326 +4.27,0.0693147211825892,-0.0198444084081061,-0.0176777255642687,-0.118048841338266,0.0652242782546375,0.0835542246738962,0.131731629358661 +4.272,0.0693442328059404,-0.0198315065066731,-0.0176878798751842,-0.118076264074521,0.0652284408736743,0.0835432389329545,0.131762468371032 +4.274,0.0693920726220944,-0.0198069978474344,-0.0177115138342733,-0.118124964700001,0.0652218903100554,0.0835417581693882,0.131792006642328 +4.276,0.0694215983961596,-0.019794080790702,-0.0177216537640971,-0.118152409934779,0.065226046390277,0.0835307676214231,0.131822865520419 +4.278,0.069469454395601,-0.0197695604441429,-0.0177452655072886,-0.11820113852198,0.0652194953506234,0.0835292842316333,0.131852433165229 +4.28,0.0694992035543887,-0.0197555349624363,-0.0177560376335184,-0.1182306888345,0.0652199175540523,0.0835228958043815,0.13187992693273 +4.282,0.0695409378979488,-0.0197342517006942,-0.0177758156236374,-0.118272221772904,0.0652168739845014,0.0835175477957195,0.13190847435579 +4.284,0.0695670781309793,-0.0197233045695713,-0.0177838459776687,-0.118295334694287,0.065224221984439,0.0835037580916017,0.13193940662026 +4.286,0.0696188062381424,-0.0196965445422235,-0.017810334640578,-0.118347997366926,0.065216954744279,0.0835034051015509,0.131969356523771 +4.288,0.0696499612006403,-0.0196825335621516,-0.0178216911881322,-0.118376933782373,0.0652208433177872,0.0834926801326631,0.132000300195716 +4.29,0.0696979283417715,-0.0196582468164224,-0.017845120910221,-0.118425416775367,0.0652150803526313,0.0834908954528757,0.132030779610635 +4.292,0.0697279755290374,-0.0196442620621698,-0.0178558380119954,-0.118455159645901,0.0652156673121221,0.0834845155409275,0.132058954931735 +4.294,0.0697711483027119,-0.0196222510964522,-0.0178763897434734,-0.118498202656997,0.0652117574382244,0.0834797320613022,0.132087942199698 +4.296,0.0697980165226748,-0.0196110430434451,-0.0178846600934986,-0.118522106317075,0.0652184577476307,0.0834661819233448,0.132119318374752 +4.298,0.0698503192839244,-0.0195842161380863,-0.017911198931183,-0.118575559381197,0.0652106861296459,0.083466130578272,0.132149937634783 +4.3,0.0698817404891042,-0.0195703013424988,-0.0179224186492136,-0.118604878349059,0.06521412542771,0.0834554529294671,0.132181433463025 +4.302,0.0699302718073767,-0.019545855168374,-0.017945947910796,-0.118654227561786,0.0652076505084434,0.0834539587343794,0.132212335524159 +4.304,0.0699605563035704,-0.0195319084670099,-0.0179565606806649,-0.118684355489852,0.0652077471017868,0.0834476062161092,0.132240897965297 +4.306,0.0700039547912552,-0.0195099029528937,-0.0179770119692409,-0.118727886815009,0.0652033996890171,0.0834429447271532,0.132270238852957 +4.308,0.070030934245943,-0.0194987361730281,-0.0179851539636811,-0.118751969596222,0.0652097904818279,0.0834293154477186,0.132301890734552 +4.31,0.070083357377459,-0.0194718919664881,-0.0180115710932469,-0.118805779870526,0.0652017568688624,0.0834293430349619,0.132332735862434 +4.312,0.0701148424034037,-0.019457959312683,-0.0180226890212586,-0.118835226312818,0.0652050420059896,0.0834185981821258,0.132364383468976 +4.314,0.0701634129067313,-0.019433483250675,-0.018046100706573,-0.118884725183787,0.0651985078725579,0.0834170802159598,0.132395408449207 +4.316,0.0701937235491909,-0.0194194757368219,-0.0180566425767434,-0.118914911847985,0.0651986018437,0.0834106593164864,0.132424017842448 +4.318,0.0702371252523571,-0.0193974144482415,-0.0180770083160769,-0.118958469618375,0.0651943490399906,0.0834059206127068,0.132453399485098 +4.32,0.0702641185404663,-0.0193861385483781,-0.0180851279181472,-0.118982569927916,0.0652008430107642,0.0833922212533915,0.132485024110806 +4.322,0.0703165311814071,-0.0193592327101619,-0.0181114671701592,-0.119036332135286,0.0651930212578786,0.0833921330664921,0.132515890339833 +4.324,0.0703480182451518,-0.0193451865057532,-0.0181225692235299,-0.119065764677267,0.0651964848593329,0.083381314034056,0.132547493834085 +4.326,0.0703965984762045,-0.0193206257163233,-0.0181459396881129,-0.119115215756796,0.0651901837760958,0.0833796885240521,0.132578521982611 +4.328,0.0704264132096652,-0.0193077534040429,-0.0181556304681744,-0.119142957241625,0.0651943322297047,0.0833684188725878,0.132610454074595 +4.33,0.07047629441491,-0.0192821888951332,-0.0181799669685293,-0.119194079439941,0.0651866552810414,0.0833676195933069,0.132640959379989 +4.332,0.0705068047298357,-0.0192687756624075,-0.0181901933369575,-0.119222706538655,0.0651900796791744,0.0833567474926204,0.132672574813818 +4.334,0.07055536100688,-0.019244032704149,-0.0182135528916567,-0.119272494045423,0.0651831399882708,0.08335539944014,0.132703117152745 +4.336,0.070585251149555,-0.0192309702150868,-0.0182233575308264,-0.119300477168986,0.0651869743386084,0.0833442413056973,0.132734696575657 +4.338,0.0706292782918405,-0.0192076495072615,-0.0182441447478285,-0.119346813268882,0.0651784297368254,0.0833449057140788,0.132761136504507 +4.34,0.0706562947385099,-0.0191957272365375,-0.0182526199466591,-0.119371217093071,0.065184080070139,0.0833314892637387,0.132791395717511 +4.342,0.0707059930980094,-0.0191702949833738,-0.0182771582050275,-0.119422098740719,0.0651784851142286,0.0833299166779989,0.132822114783897 +4.344,0.0707362466332385,-0.019156718074391,-0.0182876074589605,-0.119450047550213,0.0651834066248142,0.0833181731805616,0.13285343324285 +4.346,0.0707852363561328,-0.0191316367352433,-0.0183114217030323,-0.119499729744662,0.0651776247830925,0.0833164092782969,0.132884170805579 +4.348,0.0708152813128555,-0.0191182945686432,-0.0183214392434078,-0.119527618529251,0.0651821760542982,0.0833051219918783,0.132915768836996 +4.35,0.0708649035386151,-0.0190927769805166,-0.0183455776313925,-0.119578179003352,0.0651753335068692,0.083304006242917,0.132946358079698 +4.352,0.0708955657612375,-0.0190782086479062,-0.01835638133367,-0.119608781518366,0.065175537280774,0.0832977660364018,0.132974643842645 +4.354,0.0709383373198559,-0.0190563520619624,-0.0183761919867676,-0.119651549451944,0.0651721347861169,0.0832926145457787,0.133004047090377 +4.356,0.0709650086626066,-0.019045059852873,-0.018384036148529,-0.119675335774344,0.0651791642511726,0.0832787542447237,0.133035640792525 +4.358,0.0710176824281392,-0.0190178427909064,-0.0184103995915233,-0.119729317521575,0.0651715165673637,0.0832786436719291,0.133066542568978 +4.36,0.0710493386946026,-0.0190035353929743,-0.0184215057510301,-0.11975897619672,0.0651750562660952,0.0832678595754025,0.133098168510654 +4.362,0.0710933082700908,-0.0189805436981838,-0.0184419327859216,-0.119804880355037,0.065167431863002,0.0832681668280636,0.133125591963078 +4.364,0.0711200759602758,-0.018968984071902,-0.0184499021401431,-0.119828911248694,0.0651734917669104,0.0832545289408898,0.133156595377942 +4.366,0.0711718525557016,-0.0189424653658423,-0.0184755444828182,-0.119882063848898,0.0651666339963532,0.083253863568196,0.13318789440449 +4.368,0.0712030951028579,-0.0189285100415406,-0.0184862967292326,-0.11991116266055,0.0651706538849944,0.0832425270587829,0.13321979221239 +4.37,0.0712525653401818,-0.0189034687288447,-0.0185099424444505,-0.119961614289616,0.0651642711873321,0.0832410580199098,0.133251354331287 +4.372,0.0712828489310448,-0.0188903092288339,-0.0185196570446667,-0.119989899517457,0.0651682368641993,0.0832298048889542,0.133283674778336 +4.374,0.0713286343406969,-0.0188661718032625,-0.0185411780476512,-0.120038125770957,0.0651588366138189,0.0832311479486927,0.133310974392786 +4.376,0.0713565163805113,-0.0188539470441582,-0.018549776048572,-0.120063525562911,0.0651637476840787,0.0832180207916977,0.133341956363623 +4.378,0.0714071787370819,-0.0188282554572584,-0.0185743709728286,-0.120115689678614,0.0651573478713847,0.0832169021270208,0.133373615930425 +4.38,0.07143792809585,-0.0188146832429757,-0.0185846069699019,-0.120144329469118,0.065161548249413,0.0832052735477125,0.133405737142817 +4.382,0.0714877394681839,-0.0187893713064917,-0.0186083933129157,-0.120195303038674,0.0651547911604063,0.0832039307966821,0.133437224518569 +4.384,0.0715182277801264,-0.0187760109477269,-0.0186181991046764,-0.12022385045473,0.0651585781813596,0.0831926840803228,0.133469480935452 +4.386,0.071563652253626,-0.0187520731713268,-0.018639364053377,-0.12027172879846,0.065149487927488,0.0831938037006441,0.133496843900693 +4.388,0.0715913528153506,-0.0187398778602608,-0.0186478018907983,-0.120296931825276,0.065154616239737,0.0831805238073207,0.133527804192308 +4.39,0.0716420849848786,-0.0187140584678687,-0.0186723974287157,-0.120349146099173,0.0651483327281736,0.0831793390996753,0.133559412491942 +4.392,0.0716728835085928,-0.0187003383171207,-0.018682664302797,-0.120377827831405,0.0651526528642284,0.0831676730800825,0.13359144851998 +4.394,0.0717226041291183,-0.0186750180030791,-0.0187063363007479,-0.120428638859643,0.0651461783324714,0.083166186878306,0.133622942723958 +4.396,0.0717534932855727,-0.0186604407080524,-0.0187168655768304,-0.120459519867962,0.0651464021802435,0.0831596850515851,0.133651867663728 +4.398,0.0717971571602627,-0.0186381266247862,-0.0187368272070157,-0.120503385638437,0.0651425623716232,0.0831547058080147,0.13368183618478 +4.4,0.0718243247083903,-0.0186265312454613,-0.0187446434421091,-0.120527751162019,0.0651492316713131,0.0831408130269092,0.133713833764405 +4.402,0.071877520480942,-0.0185991210496869,-0.0187708236097676,-0.120582466482521,0.0651414133542177,0.0831407973730386,0.133745398200196 +4.404,0.0719094766099497,-0.0185846498650664,-0.0187817354940054,-0.12061253909627,0.0651447613664984,0.08312996122168,0.133777460723879 +4.406,0.0719585565713579,-0.0185597815983989,-0.0188047356466741,-0.120662722297359,0.0651384353284214,0.0831283504267272,0.133809198203965 +4.408,0.0719892810502066,-0.0185453614850412,-0.0188149851139964,-0.120693528553025,0.0651385401585562,0.0831218857351161,0.133838279590577 +4.41,0.0720331751005221,-0.0185229104839037,-0.0188349831165538,-0.120737816270326,0.0651343262016534,0.0831171081737866,0.133868284892429 +4.412,0.0720605310940983,-0.0185112111280193,-0.0188428391520713,-0.120762463603666,0.0651407134016459,0.0831032941424401,0.133900327808438 +4.414,0.0721134589716486,-0.0184839880139838,-0.0188686998509836,-0.120817045128227,0.0651329462095079,0.0831032087482866,0.133932016179367 +4.416,0.0721453191685433,-0.0184695820682525,-0.0188794539276128,-0.12084707739907,0.0651362776692072,0.0830923100882834,0.133964162018747 +4.418,0.0721944268825193,-0.01844467628612,-0.0189023780365321,-0.120897391975342,0.0651298746709838,0.083090727284112,0.133995950163595 +4.42,0.07222517374791,-0.0184302139486946,-0.0189125735745502,-0.120928272821357,0.0651299290427988,0.083084264472572,0.134025060739117 +4.422,0.0722690249131686,-0.0184077647356906,-0.0189324568668633,-0.120972565167874,0.0651257504759076,0.0830794660591477,0.134055125972721 +4.424,0.0722963799937729,-0.0183960215525848,-0.0189402573115158,-0.120997238280584,0.065132147318791,0.0830656372915806,0.134087192507415 +4.426,0.0723493328760757,-0.0183687532357872,-0.0189660461718409,-0.121051872510191,0.0651244167040666,0.083065544810566,0.134118939716995 +4.428,0.0723812269289095,-0.018354279994472,-0.0189767652185331,-0.121081962132492,0.0651277624015305,0.0830546442198265,0.134151109515577 +4.43,0.0724257468891191,-0.0183309522817851,-0.0189969423550849,-0.121128750234642,0.0651198455035637,0.083055075599897,0.134179056069086 +4.432,0.0724528798139314,-0.0183190362675767,-0.0190047406019685,-0.12115331352851,0.0651256494990379,0.083041369176949,0.134210369900464 +4.434,0.0725048957143276,-0.0182923683008644,-0.0190299060393405,-0.121206955533578,0.0651188964242617,0.0830406242395889,0.134242270041175 +4.436,0.0725363446829739,-0.018278150148853,-0.0190403655245213,-0.121236409791157,0.0651229073697233,0.0830291522426818,0.134274515105737 +4.438,0.0725861668780985,-0.0182528286749993,-0.0190636734492578,-0.121287418861321,0.0651165849578799,0.0830276258148448,0.134306559190102 +4.44,0.0726167243892339,-0.0182393294342449,-0.0190731758542798,-0.121316123978475,0.065120530405583,0.0830162776437537,0.134339162872611 +4.442,0.072667389297166,-0.0182133559458117,-0.019096991120637,-0.121368374476938,0.0651128377238479,0.0830155276640363,0.134370817459004 +4.444,0.0726984390685958,-0.0181995308024173,-0.0191067758463324,-0.121397810195335,0.0651160005571347,0.0830045909896629,0.13440323856201 +4.446,0.0727479667594365,-0.0181742511689285,-0.0191297298702697,-0.121449036868823,0.0651086681031553,0.0830034662689067,0.134434837402615 +4.448,0.0727784994399973,-0.0181607281267963,-0.0191391481484339,-0.121477985801519,0.0651120288384232,0.0829923120870302,0.134467190914333 +4.45,0.072823236821154,-0.018137061126639,-0.0191593596254182,-0.12152556722008,0.0651031079149669,0.082993180163536,0.134494610340672 +4.452,0.0728507283544233,-0.0181247560871032,-0.0191673973664745,-0.121550747120393,0.0651083075090915,0.0829796771737684,0.134525543703315 +4.454,0.0729010563918795,-0.018098999032738,-0.0191912955492801,-0.121602782967244,0.0651024546889705,0.0829781937583784,0.134557295725926 +4.456,0.0729317765261435,-0.0180850422163405,-0.0192012730817118,-0.121631512129061,0.0651070017477172,0.0829663438184103,0.134589326382858 +4.458,0.0729813293658055,-0.0180596338848821,-0.0192244265412843,-0.121682247049433,0.0651009931831738,0.0829646135895739,0.134621022141442 +4.46,0.0730118282576358,-0.0180458902578933,-0.0192339791123725,-0.121710892805775,0.0651052017741393,0.0829532112682579,0.134653284381305 +4.462,0.0730573671963725,-0.0180216755176303,-0.0192547670692786,-0.121758896441633,0.0650966201717204,0.08295416139938,0.134680871899395 +4.464,0.0730852256115037,-0.0180090466269167,-0.0192630503264888,-0.12178436179051,0.0651019981605275,0.0829408276998938,0.134711871942246 +4.466,0.0731361718732121,-0.0179829722972728,-0.0192872607924899,-0.121836813203349,0.0650961538040789,0.082939492698311,0.134743919953675 +4.468,0.0731671929234924,-0.0179688948169649,-0.019297310570749,-0.121865846456481,0.065100620404486,0.0829277930805412,0.134776201989469 +4.47,0.0732172935481261,-0.017943274785028,-0.0193206542660935,-0.121917170734482,0.0650942920033872,0.0829262925842053,0.134808213509553 +4.472,0.0732480692582411,-0.0179295048725012,-0.0193302003613625,-0.121946167033328,0.0650982015558004,0.0829150014562504,0.134840788355946 +4.474,0.0732985724451292,-0.0179036108649242,-0.0193536620865042,-0.121998270537274,0.0650907929647894,0.0829141061790335,0.1348726464155 +4.476,0.0733296129380829,-0.0178897367463545,-0.0193632646643225,-0.122027756165777,0.0650940303818768,0.082903132944883,0.134905197545783 +4.478,0.0733793653910227,-0.017864308332064,-0.0193861163374671,-0.122079304524766,0.0650866324446553,0.0829020714792859,0.134936990288729 +4.48,0.0734100770939498,-0.0178506478998806,-0.0193954540539347,-0.122108528908733,0.0650898627913084,0.0828909736153349,0.134969499976041 +4.482,0.0734549463286056,-0.0178269383397552,-0.0194154669928381,-0.122156375726008,0.0650808641341043,0.082891909630185,0.134997176324988 +4.484,0.0734825514813051,-0.017814564216855,-0.019423364850042,-0.122181764147819,0.0650859136480316,0.0828784312568146,0.135028302100894 +4.486,0.0735330969218523,-0.0177887194044038,-0.0194471010911609,-0.122234186325802,0.0650798995902787,0.0828770492925966,0.135060352188147 +4.488,0.0735639843822384,-0.0177746766676796,-0.0194569482902014,-0.122263196330022,0.0650842439936611,0.0828652423391262,0.135092612178449 +4.49,0.0736137240659958,-0.0177492026765773,-0.0194799072159841,-0.12231429725585,0.0650780610910908,0.0828636010023397,0.135124615571001 +4.492,0.0736443791398837,-0.0177353829487182,-0.0194893123834784,-0.122343213741851,0.0650820619131828,0.0828522290600765,0.135157114840543 +4.494,0.0736901103691997,-0.0177110990553326,-0.0195099137043098,-0.122391605365334,0.0650732852407642,0.0828532883914453,0.135184979979892 +4.496,0.0737181175002622,-0.0176983817114849,-0.0195180646793797,-0.122417325853127,0.0650784574344655,0.0828399719937354,0.135216179958914 +4.498,0.0737692197509489,-0.0176722507704264,-0.0195420595423699,-0.12247011221509,0.0650724886113001,0.0828386952767396,0.135248526443275 +4.5,0.0738003768718216,-0.0176580859195607,-0.0195519614847783,-0.122499387217283,0.0650767992867891,0.0828269976334566,0.135281018201606 +4.502,0.0738506379501013,-0.0176323895948433,-0.0195751018965881,-0.122551033033956,0.0650703628152075,0.082825537771894,0.135313300961597 +4.504,0.0738815548223038,-0.0176185138405552,-0.019584511404752,-0.122580270728522,0.0650741372147585,0.0828142433530469,0.135346065351553 +4.506,0.0739322024787217,-0.0175925463245307,-0.0196077605912266,-0.12263266802723,0.0650666625018127,0.0828133695364816,0.135378184040406 +4.508,0.0739633749156549,-0.0175785612602967,-0.0196172259817423,-0.122662381769114,0.0650697979595687,0.0828023846608196,0.135410911347635 +4.51,0.0740132695149371,-0.0175530519486155,-0.0196398720112607,-0.122714208496667,0.0650623613823053,0.082801331025555,0.135442949517413 +4.512,0.0740441104679988,-0.0175392717908145,-0.0196490793039251,-0.122743653936367,0.0650655124839506,0.0827902163405152,0.135475621450308 +4.514,0.0740937281556378,-0.0175138545387119,-0.0196715473774036,-0.122795319330737,0.0650580883876643,0.0827890848975855,0.135507476322954 +4.516,0.0741244570305137,-0.0175000561553243,-0.0196807239965649,-0.122824677581525,0.06506129029347,0.0827779095831389,0.135539985052845 +4.518,0.0741737003004569,-0.0174747814771497,-0.0197029724090107,-0.122875941275232,0.0650541542726016,0.0827765928131823,0.135571706966777 +4.52,0.0742042642709385,-0.0174609753401654,-0.0197121005975763,-0.122905110123541,0.0650575642317714,0.0827653410023644,0.135604064423834 +4.522,0.0742533588376808,-0.0174356910445615,-0.0197343036678807,-0.122956142657905,0.0650506662791504,0.0827639143294593,0.135635646004226 +4.524,0.0742838654028956,-0.017421809211889,-0.0197434607062726,-0.122985224214233,0.0650542577629393,0.0827526456704571,0.135667859833417 +4.526,0.0743328487867066,-0.0173965159895713,-0.0197656330885629,-0.123036038203128,0.0650476041542196,0.0827511172662475,0.135699349713531 +4.528,0.0743633129119607,-0.0173825780197071,-0.0197748107304515,-0.123065047738979,0.0650513629841468,0.0827398404810415,0.135731468845576 +4.53,0.0744122729080337,-0.017357248841656,-0.0197969942469446,-0.123115753647835,0.0650448687243212,0.0827382577495335,0.135762905941964 +4.532,0.0744427355751765,-0.0173432634105491,-0.0198061956728591,-0.123144745973524,0.0650487272707551,0.0827269895383546,0.135794977712588 +4.534,0.0744917005836593,-0.0173179123505542,-0.0198283833197285,-0.123195409038231,0.0650423210105367,0.0827253830235993,0.135826410774402 +4.536,0.0745221749372052,-0.0173039054649371,-0.0198375892505483,-0.123224411874545,0.065046217636437,0.0827141277327515,0.135858483993065 +4.538,0.0745711775280364,-0.0172785364032185,-0.0198597788734502,-0.123275106650158,0.0650398175791895,0.0827125334748665,0.135889948748077 +4.54,0.0746016799317959,-0.017264523236191,-0.0198689764298261,-0.1233041507759,0.0650436906059731,0.0827012983647525,0.135922058667672 +4.542,0.0746507307352992,-0.0172391459545032,-0.0198911552139328,-0.123354921267274,0.0650372390852413,0.0826997396259992,0.135953580525127 +4.544,0.0746812672255369,-0.0172251382012643,-0.0199003311896116,-0.123384022741027,0.0650410471117607,0.0826885276558457,0.135985749088766 +4.546,0.0747303707887184,-0.0171997570996645,-0.0199224896705248,-0.123434895112831,0.0650345075848265,0.082687017899209,0.136017338767738 +4.548,0.074760944348083,-0.0171857581797943,-0.0199316372052619,-0.12346406233456,0.0650382284775195,0.0826758295669691,0.136049573225189 +4.55,0.0748100945027337,-0.017160377331383,-0.0199537657857883,-0.123515039046654,0.0650315911034016,0.0826743690469137,0.13608123070909 +4.552,0.0748407024223014,-0.0171463864304119,-0.0199628815654933,-0.123544270020519,0.0650352232002464,0.0826632005221496,0.136113527501242 +4.554,0.0748898890580255,-0.017121007339862,-0.019984974100224,-0.123595339295661,0.0650284975095082,0.082661780468024,0.136145244866825 +4.556,0.0749205261895335,-0.0171070200858114,-0.0199940586896857,-0.123624626220243,0.0650320533648179,0.0826506253310094,0.136177593392555 +4.558,0.0749697370918414,-0.0170816431263968,-0.0200161115702311,-0.123675767285813,0.0650252618993123,0.0826492313484377,0.136209359278722 +4.56,0.0750003968300888,-0.0170676539536649,-0.0200251675495365,-0.123705098937561,0.0650287623365283,0.082638081892681,0.136241746333274 +4.562,0.0750496215364633,-0.0170422779926719,-0.0200471802232739,-0.123756289753806,0.0650219320555026,0.082636698672234,0.13627354917125 +4.564,0.0750802978892025,-0.0170282812219063,-0.020056211334107,-0.123785655056291,0.0650253995800974,0.0826255478294916,0.136305962253221 +4.566,0.0751295291849341,-0.0170029042476615,-0.020078185466229,-0.123836876936231,0.0650185556101911,0.0826241623737468,0.136337792753015 +4.568,0.0751602176893912,-0.0169888951580189,-0.0200871955109651,-0.123866266974387,0.0650220097790664,0.0826130048984169,0.136370222315428 +4.57,0.0752094525193712,-0.0169635145332225,-0.0201091343826742,-0.123917507682289,0.0650151710448681,0.0826116086324261,0.136402074605931 +4.572,0.0752401508399159,-0.0169494897537308,-0.0201181266640924,-0.123946916982363,0.0650186256240055,0.0826004417663446,0.136434514970824 +4.574,0.0752893898796835,-0.0169241027008047,-0.0201400342769585,-0.123998171343982,0.065011803181923,0.0825990310725372,0.136466386775598 +4.576,0.0753200976907705,-0.016910060319269,-0.0201490112316632,-0.124027597969093,0.0650152653696203,0.0825878545010278,0.136498836043319 +4.578,0.0753693444002776,-0.0168846642324682,-0.020170891618708,-0.124078867015597,0.0650084626952316,0.0825864301803683,0.136530728071061 +4.58,0.0754000629591237,-0.0168706035671548,-0.0201798547672851,-0.124108312000768,0.0650119338075594,0.082575245550838,0.136563187314213 +4.582,0.075449322275032,-0.0168451962720398,-0.0202017114298056,-0.12415960105775,0.0650051485080724,0.082573811537913,0.136595102266968 +4.584,0.0754800537697587,-0.016831117516087,-0.0202106614772203,-0.124189067391166,0.0650086256077837,0.0825626217055584,0.136627574409945 +4.586,0.0755293308778044,-0.0168056973850087,-0.0202324970653029,-0.124240383897015,0.0650018517278641,0.0825611835344772,0.136659515895293 +4.588,0.0755600777843303,-0.0167916012023472,-0.0202414341071082,-0.12426987542633,0.0650053295607593,0.0825499917674949,0.136692004583281 +4.59,0.0756093771365348,-0.0167661671822882,-0.0202632502867451,-0.124321226934092,0.0649985598841035,0.0825485551277588,0.136723976178883 +4.592,0.0756401416820533,-0.0167520543643312,-0.0202721740263447,-0.124350747405653,0.0650020326688258,0.0825373644180688,0.13675648486278 +4.594,0.0756894663944402,-0.0167266059258169,-0.0202939715118559,-0.124402140123554,0.0649952605563189,0.0825359340550828,0.13678848946069 +4.596,0.0757202502085908,-0.0167124771495558,-0.0203028814491549,-0.124431692510906,0.0649987233187355,0.0825247466370744,0.13682102080421 +4.598,0.0757696018348266,-0.0166870141965986,-0.020324660138489,-0.124483130493469,0.0649919438763351,0.0825233257015229,0.136853060277804 +4.6,0.0758004057959453,-0.016672869902124,-0.0203335557009998,-0.124512716653074,0.0649953932135339,0.0825121428099067,0.136885615901524 +4.602,0.0758497844227329,-0.0166473926634738,-0.0203553148696169,-0.124564201617041,0.0649886037636323,0.082510732656763,0.136917691059681 +4.604,0.0758806086769807,-0.0166332330332935,-0.0203641954867519,-0.124593822245469,0.0649920380622028,0.0824995545085272,0.136950271565198 +4.606,0.0759300132381062,-0.0166077419550602,-0.0203859339977737,-0.124645353866524,0.0649852380394198,0.0824981548617721,0.136982382316619 +4.608,0.0759608573407875,-0.0165935669648559,-0.0203947991297407,-0.124675008680672,0.0649886572730405,0.0824869808109984,0.137014987498657 +4.61,0.076010286041745,-0.0165680626138387,-0.0204165156336747,-0.12472658518359,0.0649818477364027,0.0824855901700231,0.137047133132254 +4.612,0.076041149164695,-0.0165538721179583,-0.0204253647743504,-0.124756273229412,0.0649852530092954,0.0824744189692884,0.137079762278662 +4.614,0.0760905999191661,-0.0165283551011862,-0.0204470578809623,-0.124807892082041,0.0649784359795732,0.0824730351237349,0.137111941773409 +4.616,0.0761214810712759,-0.0165141489213941,-0.0204558905524004,-0.124837612080153,0.0649818289812438,0.0824618652246769,0.137144593967667 +4.618,0.0761709518771002,-0.0164886198228443,-0.0204775589670077,-0.124889270638249,0.0649750067820555,0.0824604857627183,0.137176806266194 +4.62,0.076201850097994,-0.0164743978180454,-0.0204863747184741,-0.124919021295159,0.064978389285256,0.0824493155993691,0.137209480633318 +4.622,0.0762513393097549,-0.0164488571519845,-0.02050801734048,-0.124970717297409,0.064971564012501,0.0824479383269575,0.137241724840603 +4.624,0.0762822538120506,-0.0164346192580881,-0.020516815757751,-0.125000497537573,0.0649749374983155,0.082436766542398,0.137274420706989 +4.626,0.0763317602961116,-0.0164090674375235,-0.0205384317430276,-0.125052229406156,0.0649681106806865,0.0824353897687601,0.137306696201272 +4.628,0.0763626905471991,-0.0163948136765364,-0.0205472124674169,-0.125082038507135,0.0649714761249694,0.0824242153645338,0.137339413164991 +4.63,0.0764122137272047,-0.0163692509953003,-0.0205688012578329,-0.12513380545619,0.0649646485835957,0.0824228380435371,0.137371719628125 +4.632,0.0764431594737664,-0.0163549814599379,-0.0205775640099389,-0.125163643091104,0.064968006398043,0.082411660448137,0.137404457554615 +4.634,0.0764926992890945,-0.0163294080870259,-0.0205991253341971,-0.125215445078283,0.0649611782736194,0.0824102821912822,0.137436794941545 +4.636,0.0765236605358373,-0.0163151229107842,-0.0206078699355072,-0.125245311284535,0.0649645283675307,0.0823991012569782,0.137469553909396 +4.638,0.0765732173419291,-0.0162895388956153,-0.0206294037858777,-0.125297148857432,0.0649576992616247,0.0823977222496078,0.137501922381208 +4.64,0.0766041942998097,-0.0162752382187388,-0.0206381301718319,-0.125327043957515,0.0649610411778972,0.0823865381947621,0.137534702604529 +4.642,0.0766537687393424,-0.0162496435058015,-0.0206596367617868,-0.125378918049343,0.0649542103500282,0.0823851590530965,0.137567102448271 +4.644,0.0766847617587929,-0.0162353274457459,-0.0206683449820769,-0.125408842549861,0.0649575434290096,0.0823739723703332,0.137599904198227 +4.646,0.0767343546282958,-0.0162097218966765,-0.0206898246903321,-0.12546075427106,0.0649507099983726,0.0823725939751488,0.13763233575152 +4.648,0.0767653641306666,-0.0161953905285134,-0.0206985148952098,-0.125490708761857,0.0649540335319243,0.0823614053251515,0.137665159292522 +4.65,0.0768149762605555,-0.0161697739491777,-0.0207199682021184,-0.125542659221035,0.0649471966471413,0.08236002866109,0.137697622884182 +4.652,0.0768460026773406,-0.0161554272979903,-0.020728640616451,-0.125572644289605,0.0649505099983667,0.0823488387685743,0.137730468432351 +4.654,0.0768956348363078,-0.0161297994677514,-0.0207500680389244,-0.125624634462454,0.0649436689553933,0.082347464788949,0.137762964343639 +4.656,0.0769266785618132,-0.0161154375121148,-0.0207587229280354,-0.125654650631738,0.064946971633093,0.0823362743528521,0.137795832048331 +4.658,0.0769763313902065,-0.0160897982123265,-0.0207801249589581,-0.125706681283248,0.0649401259365903,0.0823349038805056,0.137828360494159 +4.66,0.0770073927498404,-0.0160754208959723,-0.0207887625915379,-0.12573672897481,0.0649434176249485,0.0823237135056582,0.137861250438532 +4.662,0.0770570667218661,-0.0160497699349228,-0.020810139648905,-0.125788800630273,0.0649365669997201,0.0823223471726038,0.137893811564678 +4.664,0.0770881459555671,-0.0160353771827372,-0.0208187602624024,-0.125818880150349,0.0649398475515011,0.0823111573257679,0.137926723778807 +4.666,0.0771378413669982,-0.0160097144147951,-0.0208401126521555,-0.125870993104768,0.0649329919171776,0.0823097955486099,0.13795931766977 +4.668,0.0771689386256499,-0.0159953061493588,-0.0208487164252024,-0.12590110464817,0.0649362613225815,0.0822986065383427,0.137992252149471 +4.67,0.0772186556020008,-0.015969631486841,-0.0208700443200786,-0.125953259001362,0.0649294007468203,0.0822972495230043,0.138024878841697 +4.672,0.0772497709538241,-0.0159552076424268,-0.0208786313549948,-0.125983402667335,0.0649326590905503,0.082286061500344,0.138057835567291 +4.674,0.0772995094734091,-0.0159295210596597,-0.0208999347898497,-0.126035598372575,0.064925793734787,0.0822847092681483,0.138090495063599 +4.676,0.0773306429171746,-0.0159150815917635,-0.0209085051064496,-0.126065774187051,0.0649290411519552,0.0822735222436844,0.138123474014821 +4.678,0.0773804028436349,-0.0158893831217288,-0.0209297839887154,-0.126118011103279,0.0649221712203954,0.0822721746708017,0.138156166297336 +4.68,0.077411554325774,-0.0158749280113831,-0.0209383375289024,-0.126148219043038,0.0649254078586371,0.0822609885430641,0.138189167462596 +4.682,0.0774613354452408,-0.0158492177361759,-0.0209595916613118,-0.126200496983565,0.0649185335571108,0.0822596454062177,0.138221892502925 +4.684,0.0774925048784132,-0.0158347469893631,-0.0209681283025082,-0.126230736999145,0.0649217595488281,0.0822484599963462,0.138254915882959 +4.686,0.077542306937249,-0.0158090250262777,-0.020989357414158,-0.126283055772681,0.0649148810562901,0.0822471210190162,0.138287673649486 +4.688,0.0775734942184435,-0.0157945386694915,-0.0209978769886952,-0.12631332780814,0.0649180965019245,0.0822359361071353,0.138320719256575 +4.69,0.0776233169582722,-0.015768805154848,-0.0210190807700191,-0.126365687250236,0.0649112139543816,0.0822346010019118,0.138353509719361 +4.692,0.0776545219850418,-0.0157543032282546,-0.0210275830872412,-0.126395991258874,0.0649144189154966,0.0822234163613824,0.138386577573907 +4.694,0.0777043651725782,-0.0157285583011124,-0.0210487612245294,-0.126448391253577,0.0649075324002963,0.0822220848654956,0.138419400707973 +4.696,0.0777355878564081,-0.0157140408508154,-0.0210572460924808,-0.126478727209371,0.0649107269000628,0.0822109002920979,0.138452490834161 +4.698,0.0777854513063472,-0.015688284638453,-0.0210783982981686,-0.126531167701831,0.0649038364576351,0.0822095721943108,0.138485346621803 +4.7,0.0778166915825735,-0.0156737517091912,-0.0210868655422752,-0.126561535606811,0.0649070204860164,0.0821983875284193,0.138518459043785 +4.702,0.0778665751725528,-0.015647984315787,-0.0211079915781837,-0.126614016608068,0.0649001261161704,0.0821970626864942,0.138551347476361 +4.704,0.0778978330065458,-0.0156334359450258,-0.0211164410551201,-0.12664441649598,0.0649032996373581,0.0821858778272064,0.13858448221578 +4.706,0.0779477366839131,-0.0156076574444148,-0.0211375407469885,-0.126696938081293,0.0648964013077379,0.082184556175966,0.138617403295093 +4.708,0.0779790120735329,-0.0155930936583969,-0.0211459723528009,-0.126727370018024,0.0648995642680171,0.0821733710870665,0.138650560370203 +4.71,0.0780289358543805,-0.0155673040911759,-0.0211670455956856,-0.126779932320131,0.0648926619230293,0.0821720526378204,0.138683514109413 +4.712,0.0780602288290085,-0.0155527249030891,-0.0211754592681006,-0.126810396401411,0.064895814257943,0.0821608673462257,0.138716693535631 +4.714,0.078110172790513,-0.0155269242778062,-0.0211965060232994,-0.126862999600018,0.064888907827155,0.0821595521788461,0.138749679959491 +4.716,0.0781414834071646,-0.0155123296878981,-0.0212049017388554,-0.126893495946936,0.0648920494674234,0.0821483667667873,0.138782881750859 +4.718,0.0781914476748241,-0.0154865179856269,-0.0212259220238986,-0.126946140255785,0.0648851388729785,0.0821470550162232,0.138815900895126 +4.72,0.0782227760120678,-0.0154719079828857,-0.0212342997910488,-0.126976669008715,0.0648882697490962,0.0821358696088479,0.138849125066133 +4.722,0.078272760743702,-0.0154460851641854,-0.0212552936648703,-0.127029354661476,0.0648813549119861,0.0821345614480675,0.138882176976045 +4.724,0.0783041068942306,-0.0154314597290713,-0.0212636535144951,-0.127059915973088,0.0648844749576244,0.0821233761983743,0.138915423543271 +4.726,0.0783541122627605,-0.0154056257422155,-0.0212846210601323,-0.127112643209362,0.0648775558028394,0.082122071819871,0.138948508271197 +4.728,0.0783854763255022,-0.0153909848499082,-0.0212929630349596,-0.127143237237391,0.0648806649572717,0.0821108868929054,0.138981777254415 +4.73,0.0784355025024374,-0.0153651396392849,-0.0213139043420776,-0.127196006289987,0.0648737414178527,0.0821095864907671,0.139014894856903 +4.732,0.0784668845750491,-0.0153504832629723,-0.0213222284863836,-0.127226633190432,0.0648768396275884,0.0820984020488099,0.139048186279449 +4.734,0.0785169317163181,-0.0153246267766801,-0.0213431436356057,-0.127279444274934,0.0648699116475564,0.0820971058031008,0.139081336814007 +4.736,0.0785483318887994,-0.0153099548904864,-0.0213514499863237,-0.12731010419629,0.0648729988672886,0.0820859219932794,0.139114650702457 +4.738,0.0785984001241287,-0.0152840870864189,-0.0213723390368414,-0.127362957503632,0.0648660664034181,0.0820846300580276,0.139147834224455 +4.74,0.0786298184740832,-0.0152693996677263,-0.021380627616843,-0.127393650582613,0.064869142596342,0.0820734470033227,0.139181170607749 +4.742,0.0786799079006235,-0.0152435205176762,-0.0214014905982139,-0.127446546275108,0.0648622056187223,0.0820721594989161,0.139214387167817 +4.744,0.0787113444904704,-0.0152288175486774,-0.0214097614121809,-0.12747727263413,0.0648652707562147,0.0820609772930478,0.139247746076061 +4.746,0.0787614551708072,-0.0152029270403152,-0.0214305983205968,-0.127530210844953,0.0648583292476166,0.0820596943032706,0.139280995718253 +4.748,0.0787929100470055,-0.0151882085087862,-0.0214388513535272,-0.127560970591468,0.0648613833083198,0.0820485130094862,0.139314377181481 +4.75,0.0788430420112182,-0.0151623066456033,-0.0214596621523156,-0.127613951427307,0.0648544372624621,0.0820472345829074,0.139347659942379 +4.752,0.0788745152053398,-0.0151475725449438,-0.0214678973704242,-0.12764474465484,0.0648574802308206,0.0820360542362567,0.139381063989468 +4.754,0.0789246684563415,-0.015121659344475,-0.0214886819940954,-0.12769776820105,0.0648505296497458,0.0820347803912471,0.139414379898252 +4.756,0.078956159987633,-0.0151069096731486,-0.0214968993476357,-0.127728594991634,0.0648535615141281,0.0820236010036088,0.139447806556158 +4.758,0.079006334508784,-0.0150809851639263,-0.0215176577085103,-0.127781661319086,0.0648466064049933,0.0820223317359706,0.13948115563553 +4.76,0.0790378443877598,-0.015066219924465,-0.0215258571359172,-0.127812521746667,0.0648496271555862,0.0820111533029023,0.139514604928926 +4.762,0.0790880401516047,-0.0150402841422296,-0.0215465891322155,-0.127865630919327,0.06484266752723,0.0820098885949181,0.139547987196692 +4.764,0.0791195683841252,-0.0150255033399813,-0.0215547705649124,-0.127896525053637,0.064845677153915,0.0819987111033207,0.13958145914799 +4.766,0.0791697853611508,-0.0149995563236735,-0.0215754760892111,-0.127949677135965,0.0648387130135859,0.08199745093304,0.139614874619042 +4.768,0.079201331952495,-0.014984759965465,-0.0215836394564628,-0.1279806050464,0.0648417115040303,0.0819862743687017,0.139648369248758 +4.77,0.0792515701189243,-0.0149588017534737,-0.0216043184035277,-0.128033800109767,0.0648347428546136,0.081985018718407,0.139681817937149 +4.772,0.0792831350773806,-0.0149439898463411,-0.0216124636368014,-0.128064761868797,0.0648377301927563,0.0819738430725832,0.13971533526448 +4.774,0.0793333944212942,-0.0149180204733761,-0.0216331159100383,-0.128117999996344,0.064830757030766,0.0819725919356293,0.139748817185362 +4.776,0.0793649777609617,-0.0149031930234865,-0.0216412429464808,-0.128148995682171,0.0648337331958521,0.081961417210113,0.139782357228881 +4.778,0.0794152582862899,-0.0148772125183235,-0.0216618684625015,-0.128202276971757,0.0648267555103286,0.0819601705955869,0.139815872400074 +4.78,0.0794468600288751,-0.0148623695301634,-0.0216699772472844,-0.128233306670013,0.0648297204765411,0.0819489968059056,0.13984943517842 +4.782,0.079497161757128,-0.0148363779143765,-0.0216905759383722,-0.128286631235195,0.0648227382488902,0.0819477547409306,0.13988298362148 +4.784,0.0795290252456087,-0.0148205891620097,-0.0216992271108036,-0.128319991266154,0.0648219599619355,0.0819415027555528,0.139913126029845 +4.786,0.0795729186573831,-0.0147978183982324,-0.0217162833584366,-0.128365661906954,0.0648184239461029,0.0819362635494087,0.139945164312963 +4.788,0.0796009926688875,-0.0147848204431877,-0.0217225593595245,-0.12839204238759,0.0648245314431668,0.0819221114208402,0.139978419929352 +4.79,0.0796550483413457,-0.0147567586431449,-0.0217458146785884,-0.128449170944589,0.0648172732947388,0.0819218869464818,0.140012703740475 +4.792,0.0796881867512876,-0.0147409017230956,-0.0217550201982647,-0.128481595960926,0.0648201830307359,0.0819109098696192,0.140046495641508 +4.794,0.0797387144485235,-0.0147150112469629,-0.0217755548512322,-0.128534731321075,0.0648139184882881,0.0819093412011127,0.140080960371558 +4.796,0.079770971543754,-0.0146992017320528,-0.0217841821443848,-0.128568375898167,0.0648132476370571,0.0819031135810925,0.140111850211262 +4.798,0.0798163887972334,-0.0146757053298537,-0.0218019286561173,-0.128615702667613,0.0648088102079392,0.08189849244691,0.140144463373358 +4.8,0.0798452578863452,-0.0146624619385713,-0.0218083681241589,-0.128642985693263,0.064814206647224,0.0818846270157745,0.14017827845848 +4.802,0.0799000606149539,-0.014634283310938,-0.021831661464878,-0.12870117049945,0.0648062862256296,0.081884812453355,0.140213313637452 +4.804,0.0799335876938985,-0.0146185016049322,-0.0218407004848075,-0.1287341637398,0.0648086087734321,0.0818739636529372,0.140247734971607 +4.806,0.0799847858495859,-0.0145924595473203,-0.0218612606766025,-0.128788380106518,0.064801515730258,0.0818727820183437,0.140282704558795 +4.808,0.080017344301556,-0.0145766933615162,-0.0218697220382198,-0.128822537236021,0.064800241828715,0.0818666390564431,0.140314025088204 +4.81,0.0800630945951999,-0.0145531950239589,-0.0218873286014714,-0.128870560258272,0.0647952638930532,0.0818622335525712,0.140347051559235 +4.812,0.08009214346033,-0.0145399793549912,-0.0218936103852367,-0.128898147165945,0.0648002646389928,0.0818483454105418,0.140381175108638 +4.814,0.0801470890878304,-0.0145118010109919,-0.0219167183783192,-0.128956790367354,0.0647920339432706,0.0818486480019357,0.140416451459889 +4.816,0.0801806935298376,-0.014496001980661,-0.0219256173018247,-0.128989967389649,0.0647941689437396,0.0818377520673079,0.140451030614806 +4.818,0.0802273080387339,-0.0144715991288247,-0.0219434783897524,-0.129040868793767,0.0647852824676299,0.0818388249037932,0.140481928152511 +4.82,0.0802561126337409,-0.014458174244983,-0.021949761510661,-0.12906834755175,0.0647896536153085,0.0818250575853008,0.140515161259643 +4.822,0.0803099681183558,-0.0144306385053912,-0.021972217809931,-0.129125804585171,0.0647825898356865,0.081824586451871,0.140550534085629 +4.824,0.08034301885034,-0.0144150664493588,-0.0219808729378613,-0.129158185007982,0.0647855577778101,0.0818130111102751,0.140585079395581 +4.826,0.0803949078035287,-0.0143885939651343,-0.0220017339700045,-0.129213165037291,0.0647786365096383,0.081811804309424,0.14062033315881 +4.828,0.0804272365066352,-0.014373581126299,-0.0220095701198365,-0.12924496718053,0.064781400882193,0.0818004280623187,0.140655137509418 +4.83,0.0804798879820997,-0.0143465525010971,-0.0220307960406528,-0.12930115346966,0.0647732426820058,0.0818000064756617,0.140690054252589 +4.832,0.0805126612610746,-0.0143312590339576,-0.0220388418943362,-0.129333668017233,0.064775320103301,0.0817890547394148,0.140724691716258 +4.834,0.0805642309857476,-0.0143048546863456,-0.0220592990928797,-0.129388869181989,0.0647674895537132,0.0817882763420379,0.140759452238244 +4.836,0.0805965082432194,-0.0142898157068595,-0.0220670353345778,-0.12942091482771,0.0647697714088026,0.081777122444199,0.140793950447545 +4.838,0.0806432135920147,-0.0142651010581116,-0.0220848637147754,-0.129472438935134,0.0647602969036921,0.0817785411354635,0.140824230236923 +4.84,0.080672257000366,-0.0142512482890861,-0.0220913765357775,-0.12950041882568,0.0647644343004664,0.0817649461404842,0.140856944087438 +4.842,0.0807243814833067,-0.0142245117114974,-0.0221127169085765,-0.129556073747819,0.0647585597387891,0.0817636148040966,0.140891960121267 +4.844,0.0807566391352724,-0.0142090907491357,-0.0221210018923853,-0.129587612810658,0.0647623314424933,0.0817516168761822,0.140926099157414 +4.846,0.0808081724281258,-0.0141824998487584,-0.0221417643291605,-0.12964212326747,0.064756065998383,0.0817501105925603,0.140960937003196 +4.848,0.0808403618201024,-0.0141671977220292,-0.0221496974142479,-0.129673755080106,0.0647593538147146,0.0817386472101628,0.140995313702726 +4.85,0.0808878632117967,-0.0141418956018232,-0.0221681421532829,-0.129725632878157,0.0647503417785793,0.0817401068313072,0.141025819501129 +4.852,0.0809172608510157,-0.0141277137760548,-0.022174901146294,-0.129753867321309,0.0647547187640462,0.0817266641458475,0.141058646305758 +4.854,0.0809700943146435,-0.0141006039224136,-0.0221965978115364,-0.129810036426665,0.0647488215690509,0.0817255291124861,0.141094035540623 +4.856,0.0810027184106906,-0.0140850494779831,-0.0222049560664465,-0.129841965408988,0.0647524580019826,0.0817137232461175,0.141128503021215 +4.858,0.081054896010066,-0.0140582289346733,-0.0222259016537261,-0.129897217557951,0.064745778779247,0.0817125261445123,0.141163749616028 +4.86,0.0810874367463457,-0.0140429074922755,-0.0222337997171525,-0.129929315737737,0.0647486667124147,0.0817012324330116,0.141198529404632 +4.862,0.081135407328589,-0.0140175352351369,-0.0222522415720723,-0.129981938300981,0.0647391037097317,0.0817030088782662,0.141229454174965 +4.864,0.0811650720520954,-0.0140034112271409,-0.0222588785058906,-0.130010583621145,0.0647429985224005,0.0816896757132793,0.141262681985787 +4.866,0.0812182423661776,-0.0139762932894828,-0.0222804687623627,-0.130067439637498,0.0647365423933183,0.0816888238431156,0.14129844928722 +4.868,0.0812510706019323,-0.0139607993270418,-0.0222886712128718,-0.130099732650663,0.0647397159208657,0.0816770975181269,0.141333260307033 +4.87,0.0813034658293895,-0.0139339948964966,-0.022309457921485,-0.13015552432416,0.0647325742266103,0.081676109650457,0.141368806122077 +4.872,0.0813361462655418,-0.0139187086625171,-0.0223172011672141,-0.130187897982972,0.0647350982692665,0.0816648561675584,0.141403836218953 +4.874,0.0813888655799217,-0.0138916814496804,-0.0223379945941414,-0.130244420888734,0.0647269635604025,0.0816644729318119,0.141439192528262 +4.876,0.0814220243115235,-0.0138754052219013,-0.0223462946310319,-0.130279632646849,0.0647251941777316,0.0816585607442162,0.141470726839952 +4.878,0.0814674787595188,-0.013852028705845,-0.0223630562354138,-0.13032770665565,0.0647205511729045,0.0816539160256897,0.141504217386458 +4.88,0.081496459989246,-0.0138386434857,-0.0223688639677361,-0.130355452140478,0.0647257035863355,0.0816398190076949,0.141538578127149 +4.882,0.0815516976187295,-0.0138101782893,-0.0223915253064566,-0.130414757291457,0.0647176337046978,0.0816400915045286,0.141574244016878 +4.884,0.0815855467664838,-0.0137939909805958,-0.0224001606587257,-0.130448428811409,0.0647198398254268,0.0816291312601798,0.1416090174188 +4.886,0.0816322386825132,-0.0137694369888904,-0.0224174975581281,-0.130499671126574,0.0647112870664361,0.0816300938470547,0.141640291020334 +4.888,0.0816611713453083,-0.0137556789455637,-0.0224234950039921,-0.13052748206641,0.0647157918635157,0.0816162265889711,0.141673685802771 +4.89,0.0817152870019781,-0.0137279080226455,-0.0224455033810646,-0.130585452327764,0.0647090234342429,0.0816156761048948,0.141709538881902 +4.892,0.0817485820809185,-0.013711990939518,-0.0224538826383261,-0.130618304448199,0.0647120739228429,0.0816040560090941,0.14174435527683 +4.894,0.0818007674812271,-0.0136852859340273,-0.022474300034327,-0.130673856376119,0.0647053367530274,0.0816028151156145,0.141780116501618 +4.896,0.081833904794229,-0.0136689459608005,-0.022482550123653,-0.130708849016663,0.0647042916075831,0.0815965694708752,0.141811906349191 +4.898,0.0818801688606707,-0.0136450253599847,-0.0224997300204405,-0.130757626782301,0.0646996752300519,0.0815920128892917,0.141845617265718 +4.9,0.0819112653055336,-0.0136298386516088,-0.022507051336231,-0.130789903076487,0.0647007719996605,0.0815838250812083,0.141877305106634 +4.902,0.0819590836375832,-0.013604993525302,-0.0225255010376324,-0.130840155479634,0.0646964291082708,0.081579315594492,0.141911190719377 +4.904,0.0819892007241876,-0.0135907208583379,-0.0225321048869538,-0.130868857603225,0.0647017361924112,0.0815651329792009,0.141945683767405 +4.906,0.0820451867322475,-0.013562108899982,-0.0225549005230314,-0.130928575792634,0.06469435402891,0.0815652536525882,0.141982543461184 +4.908,0.0820796121940407,-0.0135451041462203,-0.0225638787307125,-0.130964847398789,0.0646931480911846,0.0815592535406696,0.142014857808073 +4.91,0.0821262450022538,-0.0135211626121157,-0.0225810433216712,-0.131013806543322,0.0646886696678026,0.081554568524761,0.142049286098 +4.912,0.0821556926065665,-0.0135076418670571,-0.0225867015658099,-0.131041965698003,0.0646937766229999,0.0815404189149731,0.142084459053873 +4.914,0.082213091176811,-0.0134782546927744,-0.0226100976973631,-0.131103728118415,0.0646846936017175,0.0815415514292579,0.142121292106724 +4.916,0.0822480041715445,-0.0134617604481764,-0.0226187774303319,-0.131138724982958,0.0646860543645586,0.0815309834663989,0.142157003293531 +4.918,0.0823004564400531,-0.0134352572691231,-0.0226386118290547,-0.13119510810989,0.0646782789252558,0.0815301942443858,0.142193528265318 +4.92,0.0823338321614542,-0.0134191073515678,-0.0226463869996053,-0.131230707385467,0.0646762852950601,0.0815241556590585,0.142225935134415 +4.922,0.0823807672092182,-0.0133950751898334,-0.0226634009252438,-0.131280847970734,0.064670631595543,0.0815201526787009,0.142260197434062 +4.924,0.0824106055311753,-0.0133813081595966,-0.0226691891723359,-0.131309745986528,0.0646749887216914,0.0815062598493353,0.142295145764749 +4.926,0.0824662794010057,-0.0133528348997761,-0.0226913777585667,-0.131370003762387,0.0646665783006225,0.0815067294434112,0.142331649627831 +4.928,0.0825004228139846,-0.0133365905626451,-0.0226996339972423,-0.131404241824881,0.0646684189811668,0.081495757918253,0.142367005753304 +4.93,0.0825523925623161,-0.0133100923743951,-0.0227192771429107,-0.131460141381523,0.0646611381488155,0.0814946862313383,0.142403081416873 +4.932,0.0825849991334814,-0.0132947768609059,-0.0227263849060749,-0.131492763016465,0.064663498837262,0.0814833232980143,0.142438450497636 +4.934,0.0826380223584563,-0.0132674828537883,-0.0227467266275176,-0.131550110945428,0.0646552022384623,0.0814830323836875,0.142474059380676 +4.936,0.0826711827449937,-0.0132517153494888,-0.0227542539305033,-0.131583501178442,0.0646570885419887,0.0814720682011606,0.142509097340331 +4.938,0.082722885988371,-0.0132251381908994,-0.0227737824299851,-0.131639410928482,0.0646495442028867,0.081471182572366,0.142544517765936 +4.94,0.0827554299975033,-0.0132096413068072,-0.0227810022413088,-0.131672124644443,0.0646518868894666,0.0814599368181955,0.142579367016811 +4.942,0.0828070754258443,-0.0131829550103988,-0.0228006088953241,-0.131727967229382,0.0646444731873949,0.0814590075792031,0.142614500276153 +4.944,0.0828397985309404,-0.0131664840508009,-0.0228084380444958,-0.131762969253475,0.0646432560093858,0.0814527645925236,0.142645631896956 +4.946,0.0828845463706618,-0.0131431411569276,-0.022824487633861,-0.131810423493983,0.0646396932995776,0.0814475600152779,0.142678937089707 +4.948,0.0829132991620598,-0.0131293285659269,-0.0228301097851448,-0.131838069843478,0.064645588015741,0.0814332142507547,0.142712927547902 +4.95,0.0829680977026966,-0.0131007840730642,-0.0228521810172212,-0.131896821103951,0.064638703448494,0.0814329232329768,0.142748614115959 +4.952,0.0830018448471015,-0.0130841815405818,-0.022860623958848,-0.131930457685162,0.0646416497257826,0.0814217723990707,0.14278321769361 +4.954,0.0830531877129197,-0.0130576740825419,-0.0228801450623697,-0.131985189100692,0.0646356792153947,0.0814201684672206,0.142818918726174 +4.956,0.0830855553826944,-0.0130421480920962,-0.0228873315275552,-0.132017453335156,0.0646388410308562,0.0814087652329493,0.142853941421871 +4.958,0.0831385581758106,-0.0130146824994348,-0.0229077410668155,-0.13207444814954,0.0646311470285022,0.0814083131906087,0.142889462292586 +4.96,0.0831718009720584,-0.0129987438944301,-0.0229153344370862,-0.132107911500491,0.0646332922625699,0.0813974711199468,0.14292447244801 +4.962,0.083223698748051,-0.0129720717871695,-0.0229348528545202,-0.132163958422664,0.0646258414857452,0.0813966758806342,0.142960095828642 +4.964,0.0832564384728372,-0.0129565348071173,-0.0229420128624175,-0.132196962619599,0.0646280381492379,0.0813856182908279,0.14299518581942 +4.966,0.0833084841422623,-0.0129297694980449,-0.0229615698881667,-0.132253398210215,0.0646202497285443,0.0813849953340265,0.143030695856826 +4.968,0.083341311820354,-0.0129141602846328,-0.0229687675759897,-0.132286573771654,0.0646222698399577,0.0813739900105412,0.143065701333269 +4.97,0.0833929543618608,-0.0128876146349102,-0.0229880393801173,-0.132342629686683,0.0646146751411101,0.0813732082219508,0.143101169012621 +4.972,0.0834255988377374,-0.0128720633310289,-0.0229951299946662,-0.132375615672784,0.0646168146061374,0.0813621216276957,0.143136101796763 +4.974,0.0834771871876803,-0.0128454822993395,-0.0230143851977028,-0.132431609631384,0.0646092966791049,0.0813613079917899,0.143171468264371 +4.976,0.0835098167724068,-0.0128298614909781,-0.0230215017860912,-0.132464578168377,0.0646115160304298,0.0813502202179268,0.143206298547998 +4.978,0.0835612537488247,-0.0128033110683764,-0.0230406829889135,-0.132520350857731,0.0646041939552457,0.0813492986232387,0.143241596209124 +4.98,0.0835940296074523,-0.0127868131375685,-0.0230482994243554,-0.132555564883491,0.0646028168962165,0.0813432025994561,0.143272844529944 +4.982,0.0836389260461261,-0.0127634356507161,-0.0230641168310332,-0.13260337716556,0.0645990565122146,0.0813381797876778,0.14330637620786 +4.984,0.0836678962164154,-0.0127495359626767,-0.0230695927536929,-0.132631417936089,0.0646046375864398,0.0813240091566345,0.143340575785026 +4.986,0.0837246732123762,-0.0127191630272416,-0.0230909100287855,-0.132693600626655,0.0645959808256988,0.0813249792769275,0.14337803759654 +4.988,0.0837591960392819,-0.0127008040331052,-0.0230969276404797,-0.132729813074512,0.0645972066875072,0.0813144868411148,0.143415063315807 +4.99,0.083812922932455,-0.0126705392663694,-0.0231147582652566,-0.132790630542463,0.0645876741884614,0.0813149219568933,0.143452038798592 +4.992,0.0838456663379256,-0.0126520546806801,-0.0231191948878993,-0.132825787356032,0.0645893429869661,0.081303394222888,0.14348837139726 +4.994,0.0838967280499526,-0.0126222134627274,-0.0231356819502967,-0.132884627673516,0.0645817281073394,0.0813023638933534,0.143523807055158 +4.996,0.0839279736475371,-0.0126034794345465,-0.0231402060014269,-0.132918172846329,0.0645856498799314,0.0812894601311964,0.143558358041765 +4.998,0.083975828023139,-0.0125746535989173,-0.0231559207246335,-0.132972708275416,0.0645820253679179,0.0812860194577793,0.143592291424623 +5,0.0840054988976473,-0.0125559051497521,-0.0231609277420393,-0.133003835129044,0.0645889975127082,0.0812719274350674,0.143625148659579 +5.002,0.0840523522125664,-0.0125270689029263,-0.0231774386691535,-0.133055759504186,0.0645884048598391,0.0812672859047689,0.143657994340895 +5.004,0.0840814868845585,-0.0125080675384245,-0.0231834165811006,-0.133085456879799,0.0645975010325275,0.0812529648110232,0.14368964695381 +5.006,0.0841286435583435,-0.0124789433309381,-0.023201210357313,-0.133136124287934,0.0645986443349617,0.0812480991078864,0.143722160554765 +5.008,0.0841579038791588,-0.0124598712918754,-0.0232080763102634,-0.133165279716901,0.0646086733998701,0.0812341920601522,0.143753386067066 +5.01,0.0842063365983686,-0.0124303857038033,-0.0232272480651997,-0.133216198599524,0.0646099531210186,0.0812299302107323,0.143786196523066 +5.012,0.0842363364355595,-0.012411447001124,-0.0232348257246273,-0.133245789173427,0.0646196293510711,0.0812168534748289,0.143817726386367 +5.014,0.0842862190216163,-0.0123819021857924,-0.0232549631548719,-0.13329778497403,0.0646198489451045,0.0812135754504484,0.14385127383228 +5.016,0.0843171845114708,-0.0123633851166337,-0.0232629174378607,-0.133328344172288,0.064628245043253,0.0812014137357133,0.14388364312019 +5.018,0.0843684152381854,-0.0123340716851118,-0.0232835552922218,-0.133381905639165,0.0646265889574379,0.0811992670412764,0.143918119639678 +5.02,0.0844003563650758,-0.0123161736244635,-0.0232915817448612,-0.13341364777437,0.0646331603500412,0.0811879268155689,0.143951575608184 +5.022,0.0844526250753955,-0.012287335148545,-0.023312282501607,-0.133468854116792,0.064629299798909,0.0811868428906853,0.143986974935523 +5.024,0.0844853761867582,-0.012270155912475,-0.0233201386683829,-0.133501708033337,0.0646339081381731,0.0811761248972124,0.144021514862522 +5.026,0.0845383228236555,-0.0122419223849173,-0.0233405907972987,-0.133558361367321,0.0646279046803476,0.0811758935647808,0.144057674782299 +5.028,0.084571654415323,-0.0122254473136863,-0.0233481390279005,-0.133592105107596,0.0646307137722571,0.081165565800189,0.144093112183889 +5.03,0.0846249059727444,-0.0121978670621696,-0.0233681415213381,-0.133649807319138,0.0646229262685743,0.0811658839873939,0.144129792139683 +5.032,0.084658570335981,-0.012182007118159,-0.023375327807953,-0.133684144328029,0.0646243004265031,0.0811557160438543,0.144165849246127 +5.034,0.0847118038332386,-0.0121550573388237,-0.0233947846676505,-0.133742430958785,0.0646152381988842,0.0811562589183725,0.14420279178838 +5.036,0.0847455815497161,-0.0121396802633312,-0.0234016185475035,-0.133777067521237,0.0646156260279517,0.0811460531448161,0.144239176822587 +5.038,0.0847933530657652,-0.0121155464561747,-0.0234181990742568,-0.133831049591387,0.0646044894174771,0.0811485824852155,0.144271341698058 +5.04,0.084823649401719,-0.012101990687229,-0.0234235479647429,-0.133861143356125,0.0646062845890917,0.0811355504121856,0.144306061539045 +5.042,0.0848781659964508,-0.0120752588359879,-0.0234434925767144,-0.133921287636694,0.0645974572457726,0.08113589329437,0.144344002270672 +5.044,0.0849123760807174,-0.0120599786497531,-0.0234503909331449,-0.133956152323629,0.064597914476491,0.0811248037465747,0.144380748632183 +5.046,0.0849655112438811,-0.0120338723930365,-0.0234689168098229,-0.134014640366338,0.0645882918788432,0.0811244957906166,0.144418228785779 +5.048,0.0849992863070244,-0.0120189577223189,-0.0234750546793129,-0.134049278488281,0.0645881407545493,0.0811134772152495,0.144455087253546 +5.05,0.0850526232810244,-0.0119927407707372,-0.0234933970131452,-0.134108525979621,0.0645776438643381,0.0811135357797245,0.144492233103236 +5.052,0.0850864986454221,-0.0119777391572147,-0.0234994866342464,-0.13414351901048,0.0645770960806749,0.0811025811190956,0.144528817431122 +5.054,0.0851387328176671,-0.0119521159898593,-0.0235170843324227,-0.1342017338266,0.0645670862774468,0.0811020609145604,0.144565591687454 +5.056,0.0851720571603132,-0.0119372790233694,-0.023522933361669,-0.134236146041659,0.0645669522373435,0.0810907325124296,0.144601800343853 +5.058,0.0852238725286985,-0.011911725878475,-0.0235404009560614,-0.13429390014356,0.0645574565390912,0.0810899102771497,0.144638188386757 +5.06,0.085256975409254,-0.0118967537028034,-0.0235463298517011,-0.134328033166599,0.0645578037629412,0.08107843987615,0.144673992794173 +5.062,0.0853083997649514,-0.0118711909034648,-0.023563769633057,-0.1343851381388,0.0645490271821688,0.0810773162792277,0.144710080405227 +5.064,0.085341299263493,-0.0118560438616184,-0.0235698186532274,-0.13441895014066,0.0645499586812029,0.081065790802544,0.144745552180437 +5.066,0.0853927075715801,-0.0118302341205909,-0.0235874905902358,-0.134475752158797,0.0645417517409093,0.0810645940512786,0.144781427987473 +5.068,0.0854255789344223,-0.0118148269101526,-0.0235937543562577,-0.134509436163478,0.0645431674684622,0.0810531632012652,0.144816654505929 +5.07,0.0854771003327739,-0.0117887243109045,-0.0236117179516195,-0.1345660714356,0.0645354312355407,0.0810520033329192,0.144852435328613 +5.072,0.0855099991049892,-0.0117730726837903,-0.0236181892209458,-0.134599701730116,0.0645372382953575,0.0810407243205999,0.144887518051828 +5.074,0.0855617679123911,-0.0117466422700072,-0.0236364869622671,-0.134656371327409,0.0645298156412119,0.0810397136775224,0.144923302093962 +5.076,0.0855947549020575,-0.0117307638309123,-0.0236431535811763,-0.134690041908015,0.0645318895695436,0.081028622937758,0.144958326412063 +5.078,0.0856467984203402,-0.0117040343792123,-0.0236617530443014,-0.134746842685283,0.064524665680364,0.081027808347767,0.144994190112104 +5.08,0.0856798877271962,-0.0116879689160302,-0.0236685740633858,-0.134780595144901,0.0645269086327475,0.0810169018220489,0.145029222446053 +5.082,0.085732199171957,-0.0116609792454865,-0.0236874240850132,-0.134837586233981,0.0645197881284551,0.0810162963629637,0.145065207409811 +5.084,0.0857653924838213,-0.011644762271287,-0.02369435747115,-0.134871445511705,0.0645221221473831,0.0810055511163817,0.145100289059944 +5.086,0.0858179171890842,-0.0116175694449249,-0.0237133824121322,-0.13492862199439,0.0645150498376222,0.0810051258107673,0.145136407588865 +5.088,0.0858511957593329,-0.0116012379263669,-0.0237203811062672,-0.134962585293596,0.0645174270782077,0.0809944994445519,0.145171559324512 +5.09,0.0859038592248093,-0.011573902348749,-0.023739499398931,-0.135019908703498,0.0645103746849665,0.0809941997211074,0.145207799664847 +5.092,0.0859371959331236,-0.0115574899303796,-0.0237465184039802,-0.135053959666338,0.0645127684678631,0.0809836399167469,0.145243026212818 +5.094,0.085989911950662,-0.0115300744831863,-0.0237656463733461,-0.13511136852315,0.0645057293260392,0.0809833952453828,0.145279362776668 +5.096,0.0860232740087451,-0.0115136134310653,-0.0237726427211785,-0.135145481044321,0.0645081281952158,0.0809728455452609,0.145314659375101 +5.098,0.0860759613210965,-0.011486176667578,-0.0237917039772345,-0.135202912021673,0.0645011045076646,0.0809725843344632,0.145351061145694 +5.1,0.0861093174481672,-0.0114696963894705,-0.0237986398622345,-0.135237059113411,0.0645035030175917,0.0809619923022851,0.145386418519413 +5.102,0.0861619091234838,-0.0114422893540607,-0.0238175704706632,-0.135294459138591,0.0644964977352606,0.0809616527661424,0.145422856368787 +5.104,0.0861952335481419,-0.0114258159946775,-0.0238244149470423,-0.135328617766279,0.0644988905150032,0.0809509760394584,0.145458264598529 +5.106,0.0862476848936573,-0.0113984785691922,-0.023843168494581,-0.135385953505659,0.0644919009232507,0.080950514676746,0.145494715800665 +5.108,0.0862809609751828,-0.0113820337055744,-0.0238498996658794,-0.135420108681002,0.064494278754304,0.0809397255623888,0.145530166490859 +5.11,0.0863332522537269,-0.0113547930083092,-0.0238684495245739,-0.135477369373664,0.0644872943013462,0.080939120980452,0.145566617011653 +5.112,0.086366473856697,-0.0113383928049078,-0.0238750557231877,-0.135511515542312,0.0644896432608364,0.0809282083677686,0.145602104309038 +5.114,0.0864186097300689,-0.0113112626328789,-0.0238933954374613,-0.135568711890838,0.0644826460269361,0.0809274614335923,0.145638549009301 +5.116,0.0864517811975086,-0.0112949171603143,-0.0238998756135973,-0.135602852804726,0.0644849485748656,0.0809164304446825,0.145674069726174 +5.118,0.0865037868916118,-0.0112678988571695,-0.0239180170247678,-0.135660012357091,0.0644779159207892,0.0809155611698235,0.145710511177288 +5.12,0.0865369214989815,-0.0112516119606978,-0.0239243799654327,-0.135694159438476,0.0644801533268484,0.0809044307529446,0.14574606441841 +5.122,0.0865888371089517,-0.0112246961928425,-0.0239423497394421,-0.135751320382154,0.0644730614222407,0.0809034731636422,0.145782510866105 +5.124,0.0866219545705939,-0.0112084658282635,-0.023948612322455,-0.135785490288546,0.0644752165712415,0.0808922723087273,0.145818097372523 +5.126,0.086673828402984,-0.0111816350682589,-0.0239664473376949,-0.135842694775104,0.0644680440253567,0.0808912683184473,0.145854560408483 +5.128,0.0867069517900632,-0.0111654541169151,-0.0239726320162302,-0.135876906532653,0.064470103982729,0.0808800315173381,0.145890181791247 +5.13,0.0867588338002342,-0.0111386854473915,-0.0239903743133507,-0.135934194668884,0.0644628348746214,0.0808790248248519,0.1459266741287 +5.132,0.0867919863748118,-0.0111225428701746,-0.0239965062247669,-0.135968466853192,0.0644647927375543,0.0808677874523172,0.145962332101751 +5.134,0.0868439224112843,-0.0110958108347126,-0.0240141980966217,-0.13602587197256,0.0644574186890086,0.0808668181964377,0.145998865724362 +5.136,0.0868771247794768,-0.0110796930303607,-0.0240203021789217,-0.136060220276987,0.064459274520028,0.0808556123744418,0.146034561438759 +5.138,0.0869291521565156,-0.0110529722624818,-0.0240379819146752,-0.136117765830868,0.0644517956385745,0.0808547130453188,0.146071146243962 +5.14,0.0869624200843904,-0.011036864469772,-0.024044080391882,-0.136152201306583,0.0644535564522228,0.0808435644302003,0.146106879808492 +5.142,0.0870145647265105,-0.0110101319084624,-0.0240617790225721,-0.136209899397932,0.0644459811664748,0.0808427572704513,0.146143522764612 +5.144,0.0870479078157493,-0.0109940195198948,-0.0240678895135587,-0.136244427509941,0.0644476600881215,0.0808316830193893,0.146179293011476 +5.146,0.0871001830228978,-0.0109672560743106,-0.0240856287567479,-0.136302278919389,0.0644400040172344,0.0808309789452624,0.146215997784615 +5.148,0.0871336043023028,-0.0109511257567549,-0.0240917631438093,-0.13633689943626,0.0644416188123003,0.0808199869356643,0.14625180229357 +5.15,0.0871860110130117,-0.0109243173538371,-0.0241095545871104,-0.136394894871824,0.0644339029042167,0.0808193858443199,0.146288569276925 +5.152,0.0872195073639146,-0.0109081579105332,-0.0241157186575536,-0.136429602481956,0.0644354741158784,0.0808084750503828,0.146324404623897 +5.154,0.0872720356751477,-0.0108812959219968,-0.0241335640890532,-0.136487724732617,0.0644277223379575,0.0808079672678476,0.146361231296796 +5.156,0.0873055989126806,-0.0108650988636181,-0.0241397578660897,-0.136522510198611,0.0644292712745888,0.0807971290735145,0.14639709345731 +5.158,0.0873582305286081,-0.0108381799680099,-0.0241576505526364,-0.136580736847524,0.0644215081565058,0.0807966976245456,0.146433974998797 +5.16,0.0873918489081348,-0.0108219397899897,-0.0241638691657501,-0.136615588471705,0.0644230549519565,0.0807859177778413,0.146469859821725 +5.162,0.0874445601422767,-0.0107949653710282,-0.0241817958091284,-0.136673894825146,0.0644153032621263,0.0807855411241344,0.14650678989587 +5.164,0.0874782200514503,-0.0107786795570555,-0.0241880307219484,-0.136708800003124,0.0644168651972297,0.0807748020150052,0.146542693567556 +5.166,0.0875309849958241,-0.010751654769708,-0.0242059737891618,-0.136767161911151,0.0644091439882172,0.0807744569083697,0.146579665187696 +5.168,0.0875646726151186,-0.0107353235588946,-0.0242122141983783,-0.136802108581787,0.064410734216192,0.0807637398706287,0.146615584623801 +5.17,0.0876174661191625,-0.0107082562067179,-0.0242301543264269,-0.136860504871457,0.0644030574086167,0.0807634040023595,0.146652590997825 +5.172,0.0876511688761605,-0.0106918821744093,-0.0242363885618369,-0.13689548271864,0.0644046841734496,0.0807526913885996,0.146688524122398 +5.174,0.0877039690424093,-0.010664781537062,-0.0242543067739814,-0.136953897028765,0.0643970597718095,0.080752345579705,0.146725559387116 +5.176,0.0877376767369383,-0.0106483690471183,-0.024260523559911,-0.136988898342515,0.0643987261518765,0.0807416224241203,0.146761505279967 +5.178,0.0877904667307197,-0.0106212447783555,-0.0242784030911651,-0.13704732023484,0.0643911561085624,0.0807412521846251,0.146798565051062 +5.18,0.0878241722620256,-0.0106047993677928,-0.0242845925673696,-0.137082340390163,0.0643928602626338,0.0807305073423634,0.146834523962709 +5.182,0.0878769413351776,-0.0105776605562615,-0.0243024201710017,-0.137140765704495,0.0643853409366518,0.0807301037200548,0.146871605655203 +5.184,0.0879106410133375,-0.0105611883113865,-0.0243085746117259,-0.137175803261824,0.0643870767812215,0.0807193304442171,0.146907578902569 +5.186,0.0879633847430797,-0.0105340427639108,-0.0243263412950842,-0.137234233769984,0.0643795998822055,0.080718890172131,0.146944681809731 +5.188,0.0879970782112962,-0.0105175497407692,-0.0243324555043578,-0.137269290238565,0.0643813580924027,0.0807080861541221,0.146980671575689 +5.19,0.0880497980423983,-0.0104904035150676,-0.0243501567119312,-0.137327732723421,0.0643739119626976,0.080707611181724,0.147017796725925 +5.192,0.0880834878720221,-0.010473895246793,-0.0243562281082551,-0.137362812056743,0.0643756811668467,0.0806967781321846,0.147053805791978 +5.194,0.088136190114624,-0.0104467524313495,-0.024373863425664,-0.137421276990646,0.0643682522367169,0.0806962746804259,0.147090955628708 +5.196,0.0881698811590926,-0.0104302335520783,-0.0243798918575988,-0.137456384900381,0.0643700202682581,0.0806854175635901,0.147126987073117 +5.198,0.0882225756314215,-0.0104030962675352,-0.0243974643482372,-0.137514884918726,0.0643625945209702,0.0806848948752728,0.147164165018626 +5.2,0.0882562742380033,-0.0103865702683507,-0.0244034517024628,-0.137550028100395,0.0643643496001321,0.0806740209281244,0.147200221912352 +5.202,0.088308972752719,-0.0103594388485803,-0.0244209670077075,-0.137608576461702,0.0643569139022654,0.0806734898921788,0.147237431882197 +5.204,0.0883426859321661,-0.0103429079670946,-0.0244269166820776,-0.137643761822155,0.0643586456411733,0.0806626075620088,0.147273517012391 +5.206,0.0883971890423957,-0.0103140262964298,-0.0244439212049214,-0.137705405446378,0.0643497024761284,0.0806632259561453,0.147312156787804 +5.208,0.0884313500316815,-0.0102961121216499,-0.0244480187306755,-0.137742437746546,0.0643501808354219,0.0806528151721487,0.147349831273172 +5.21,0.0884852918320966,-0.0102665744930774,-0.0244642713725641,-0.13780500974721,0.0643405785664809,0.0806536643184524,0.147387489435193 +5.212,0.0885189653647462,-0.0102482749757756,-0.0244687155512192,-0.13784182092363,0.064341819608617,0.0806426064064379,0.147423779384403 +5.214,0.0885691131343543,-0.010220532978576,-0.0244836815203613,-0.137899602671704,0.0643357353327801,0.080640831944991,0.147460167937238 +5.216,0.0886009869847957,-0.0102027913683395,-0.0244882932547978,-0.137933728205629,0.0643395684881137,0.0806282984485104,0.147495107305741 +5.218,0.0886505594795802,-0.0101751232315352,-0.0245040597219939,-0.137989700419986,0.064335696520542,0.0806255468542821,0.147530758099954 +5.22,0.0886821426999439,-0.0101572375922247,-0.024509468816941,-0.138022803218977,0.0643410076847797,0.0806127564180794,0.147564916728552 +5.222,0.0887320005747416,-0.0101293751750879,-0.024526128606004,-0.13807788574668,0.0643382880611104,0.0806097914504998,0.147600513254331 +5.224,0.0887637637313737,-0.0101114206820621,-0.0245320811848763,-0.138110701392911,0.0643441165275516,0.0805973023282722,0.147634588943584 +5.226,0.0888147967939922,-0.0100831172510211,-0.0245496980738797,-0.138166361925592,0.0643411618977018,0.0805948975467896,0.147670531380836 +5.228,0.088847260184839,-0.0100651378049997,-0.0245560695942043,-0.13819975857027,0.0643465295002219,0.0805830531832386,0.147704996568375 +5.23,0.0888993344540944,-0.0100367232361769,-0.0245741911718694,-0.138256359589567,0.0643426814080156,0.0805813561846568,0.147741510723055 +5.232,0.0889324900013357,-0.0100189676588812,-0.0245806992491678,-0.138290528220641,0.0643471135621282,0.0805701075236739,0.147776621019851 +5.234,0.0889854689200312,-0.00999065715372291,-0.0245990322289466,-0.138348311494861,0.0643419875949482,0.0805691589092496,0.147813752155247 +5.236,0.0890192487783882,-0.00997325160507018,-0.0246055131873123,-0.138383285499311,0.064345261568174,0.0805583948168516,0.147849550658036 +5.238,0.0890728681407205,-0.00994522116705165,-0.0246238094347414,-0.138442165542044,0.0643388203844246,0.0805580969385956,0.147887250515415 +5.24,0.0891071155728337,-0.00992822010346034,-0.0246301462288499,-0.138477810923514,0.0643409614355462,0.080547677457823,0.147923661464241 +5.242,0.0891611689553862,-0.0099005147748101,-0.0246482803205085,-0.138537618302877,0.0643333269008033,0.080547899132612,0.147961805162833 +5.244,0.0891957487108394,-0.00988387738650415,-0.024654429946157,-0.138573788485025,0.0643344849228646,0.0805377073383605,0.147998684819346 +5.246,0.0892500206959,-0.009856493893308,-0.0246723176352527,-0.13863425462822,0.0643259074156193,0.0805382720656917,0.148037119021862 +5.248,0.0892847926419837,-0.00984014415318049,-0.0246782629771002,-0.138670781242006,0.0643263178356865,0.0805281922792624,0.148074304565429 +5.25,0.0893390958320439,-0.00981304141336672,-0.024695859188381,-0.138731631107748,0.0643170943082862,0.080528915926738,0.148112873929619 +5.252,0.0893739343243344,-0.00979688700290152,-0.02470160260358,-0.138768357204766,0.064317019719319,0.0805188400290331,0.148150208956228 +5.254,0.0894281050868318,-0.00977001384792311,-0.0247188829403714,-0.138829332295654,0.0643074558703438,0.0805195483560683,0.14818878058893 +5.256,0.0894628989177078,-0.00975396718519025,-0.0247244352449115,-0.138866114978895,0.064307153575963,0.0805093802712246,0.1482261323203 +5.258,0.0895168204677597,-0.00972726353873735,-0.0247414024238607,-0.138927011011239,0.0642975227230296,0.0805099356743025,0.148264607035859 +5.26,0.089551487170764,-0.00971124597261863,-0.0247467857458947,-0.138963737860827,0.0642972155573584,0.0804996059043304,0.148301874593714 +5.262,0.0896050962536778,-0.0096846475124599,-0.0247634694282186,-0.139024414217047,0.0642877370710086,0.0804999197174056,0.148340191231059 +5.264,0.0896395877458762,-0.00966859301851261,-0.0247687170394956,-0.139061009106089,0.0642875981153213,0.080489393399281,0.148377309076191 +5.266,0.0896928786736327,-0.00964203247631318,-0.0247851735974475,-0.139121393769476,0.0642784241379816,0.0804894310166422,0.148415442670551 +5.268,0.0897271836158876,-0.00962588844597853,-0.0247903290696623,-0.139157820162435,0.0642785690801357,0.0804787101233094,0.148452379460942 +5.27,0.0897802008244657,-0.00959930022562006,-0.0248066346964997,-0.139217902684194,0.0642697833650934,0.0804784857204946,0.14849033645015 +5.272,0.0898143394068988,-0.00958302874848194,-0.0248117473263525,-0.139254159290138,0.0642702713486838,0.0804676033173533,0.148527090580445 +5.274,0.0898671647502312,-0.00955635374505412,-0.0248279883672562,-0.139313979544587,0.0642618956084967,0.0804671690315554,0.14856490210741 +5.276,0.089901179888694,-0.00953993192240865,-0.0248331073285373,-0.139350092600433,0.0642627355717479,0.0804561791533351,0.148601494967307 +5.278,0.0899539155972806,-0.00951312260106085,-0.0248493687804833,-0.139409725053118,0.064254741868883,0.0804556105360339,0.148639209104071 +5.28,0.0899878622331318,-0.00949654207681092,-0.0248545370652892,-0.139445738454033,0.0642559030434288,0.0804445762637372,0.148675677472753 +5.282,0.0900406134677214,-0.0094695661991139,-0.0248708920032198,-0.139505275210907,0.0642482288977289,0.0804439571313265,0.148713350776803 +5.284,0.090074548630963,-0.00945283151706205,-0.0248761417364111,-0.13954124102781,0.0642496532987565,0.0804329396337667,0.148749739468311 +5.286,0.0901274078201514,-0.00942567417141116,-0.0248926430428926,-0.139600775316349,0.0642422172555578,0.0804323482811423,0.14878742861029 +5.288,0.0901613825575304,-0.00940880030123947,-0.0248979926872992,-0.139636745594954,0.0642438324587675,0.0804213982380252,0.148823784094613 +5.29,0.0902144177957859,-0.00938146391277786,-0.0249146682229796,-0.139696358115458,0.0642365480087126,0.0804208968320984,0.148861538525606 +5.292,0.0902484716017621,-0.00936447327642209,-0.0249201218215209,-0.139732378590777,0.064238278583724,0.080410048947005,0.148897903839709 +5.294,0.0903017202244402,-0.00933697580551779,-0.0249369733044752,-0.139792128254082,0.0642310651819095,0.0804096770761981,0.148935760464614 +5.296,0.0903358779818761,-0.00931989524163404,-0.0249425214657626,-0.139828234088614,0.0642328416902796,0.0803989477121526,0.148972171524226 +5.298,0.0903893455992545,-0.00929226692341731,-0.024959526819026,-0.139888153909294,0.0642256322085319,0.0803987203731322,0.149010151964043 +5.3,0.0904236168687545,-0.00927512488911647,-0.0249651490505768,-0.139924367505259,0.0642273971868344,0.0803881080171821,0.149046635294748 +5.302,0.0904772811529067,-0.00924740404582189,-0.0249822674678963,-0.139984465316378,0.0642201417689971,0.0803880175603544,0.149084745784485 +5.304,0.090511661473215,-0.00923022824658687,-0.024987935404285,-0.140020796086419,0.0642218526747111,0.0803775055703227,0.14912131762984 +5.306,0.0905654793790629,-0.00920245672920489,-0.0250051141284605,-0.140081059006123,0.0642145194128819,0.0803775266223222,0.149159551113923 +5.308,0.0905999531327134,-0.00918527224746563,-0.0250107952197549,-0.140117504840952,0.0642161489288849,0.0803670875587202,0.149196217787935 +5.31,0.0906538699250858,-0.00915749104142666,-0.0250279769376342,-0.14017790600416,0.0642087221014234,0.0803671836733936,0.149234557482991 +5.312,0.0906884142087256,-0.00914031896806361,-0.0250336381827425,-0.140214455996155,0.0642102564714692,0.0803567844355684,0.149271316733405 +5.314,0.0907423727050762,-0.00911256440197272,-0.0250507680336386,-0.140274962033407,0.064202733226615,0.080356915213539,0.149309740339828 +5.316,0.0907769615909646,-0.00909542093899146,-0.025056379385506,-0.140311599906018,0.0642041694022505,0.0803465222129803,0.149346583407917 +5.318,0.0908309102903011,-0.00906772180946838,-0.0250734107843592,-0.140372177862562,0.0641965557672994,0.0803466497967331,0.149385067225194 +5.32,0.0908655188810924,-0.00905061780356592,-0.0250789479151374,-0.140408885528543,0.0641978981167345,0.0803362335011957,0.149421981250139 +5.322,0.0909194180521691,-0.00902299358487363,-0.0250958466659855,-0.140469508282905,0.0641902050849121,0.0803363276403718,0.149460503625901 +5.324,0.090954025824059,-0.0090059344516632,-0.0251012928672522,-0.140506269016535,0.0641914622780627,0.0803258659927242,0.149497474050476 +5.326,0.0910078510750248,-0.00897839462057079,-0.0251180393334527,-0.140566918679663,0.0641837025229504,0.0803259072172501,0.149536017816719 +5.328,0.091042444153829,-0.00896138061962856,-0.0251233864318352,-0.140603719511806,0.0641848850100786,0.0803153876402055,0.149573030499018 +5.33,0.0910961874348195,-0.008933925007028,-0.0251399757995341,-0.140664388699501,0.0641770705447763,0.0803153684241687,0.149611584276406 +5.332,0.091130759632704,-0.00891695182228597,-0.0251452240825669,-0.140701221805731,0.0641781888318136,0.0803047883368291,0.149648627090107 +5.334,0.0911844279761828,-0.00888957181463801,-0.0251616649718903,-0.140761913019825,0.0641703297071448,0.0803047124355385,0.14968718553663 +5.336,0.0912189806063967,-0.00887263138308123,-0.0251668222290069,-0.140798776046827,0.0641713934375305,0.080294078404926,0.149724249340348 +5.338,0.0912725931530796,-0.00884531174261274,-0.0251831340556773,-0.14085949963621,0.0641634973882301,0.0802939587665329,0.149762812558074 +5.34,0.0913071338107122,-0.0088283932601225,-0.0251882139312714,-0.14089639507872,0.0641645150961881,0.0802832845773669,0.149799891521436 +5.342,0.0913607177882013,-0.00880111431140199,-0.0252044234943054,-0.140957166362735,0.0641565879124631,0.0802831403508403,0.149838463902761 +5.344,0.0913952584128965,-0.0087842053332137,-0.0252094434114879,-0.140994100239374,0.064157567229515,0.0802724443843965,0.149875555277676 +5.346,0.0914488447394145,-0.00875694526971682,-0.0252255811870314,-0.141054936372492,0.0641496135598431,0.0802722975690098,0.14991414407518 +5.348,0.0914833993428425,-0.0087400328186889,-0.0252305601241375,-0.141091916531866,0.0641505616340055,0.0802615999265605,0.149951247577018 +5.35,0.09153701844645,-0.00871276990898232,-0.0252466566961597,-0.141152833600142,0.0641425859123815,0.0802614721528915,0.149989861437792 +5.352,0.0915716008852948,-0.00869584150968372,-0.0252516130818604,-0.141189868004173,0.0641435098257933,0.080250791938217,0.150026978437381 +5.354,0.0916252791939089,-0.00866855602220681,-0.0252676960555395,-0.141250878709821,0.0641355170555854,0.0802507017641489,0.150065626078814 +5.356,0.0916599013045236,-0.00865160059172804,-0.0252726459986307,-0.141287973990538,0.0641364240836381,0.0802400548611482,0.150102758796562 +5.358,0.0917136587054316,-0.00862427630464954,-0.0252887376388239,-0.141349086135861,0.0641284202880494,0.0802400158360081,0.15014144793742 +5.36,0.0917483290088051,-0.0086072848491679,-0.0252936936373742,-0.141386246622596,0.0641293179138661,0.0802294134000877,0.150178598783165 +5.362,0.0918021774206154,-0.00857991006346698,-0.0253098093660287,-0.141447462470263,0.0641213101622779,0.0802294330172146,0.150217335392343 +5.364,0.0918369004831983,-0.00856287614966933,-0.02531477956207,-0.141484689765363,0.0641222058306589,0.0802188807675738,0.150254506527069 +5.366,0.0918908435413547,-0.00853544417597812,-0.0253309273445741,-0.141546006237581,0.0641142018511082,0.0802189603037899,0.150293294412621 +5.368,0.0919256199647377,-0.00851836416581347,-0.0253359153181142,-0.141583299309738,0.0641151025061229,0.0802084585822159,0.150330487541916 +5.37,0.0919796537013129,-0.00849087330508938,-0.0253520958766811,-0.141644708896366,0.0641071099787967,0.0802085937203142,0.150369328270036 +5.372,0.092013828131461,-0.00847440370577851,-0.0253590508867956,-0.14168247480307,0.0641053677899216,0.0802027442573313,0.15040106382945 +5.374,0.0920586395864372,-0.00845016215437686,-0.0253714065411856,-0.141730910021918,0.0640998538753414,0.080196126754587,0.150434730189547 +5.376,0.0920934494303495,-0.00843536648380261,-0.0253750988710195,-0.141769020638349,0.0641065622292279,0.0801861162320157,0.150478920577716 +5.378,0.0921517707833358,-0.008403861482499,-0.0253940362639133,-0.141834550684841,0.0640945619359314,0.0801870697555673,0.150515673592191 +5.38,0.0921910290541476,-0.00838518208422195,-0.0254004889902525,-0.141877888586449,0.0640953715965275,0.0801791995604846,0.150556706944211 +5.382,0.0922370608397162,-0.00836160158928068,-0.0254139798805897,-0.141930391360913,0.0640868900532602,0.0801793526008852,0.150588767517098 +5.384,0.0922665104856963,-0.00834668412847425,-0.0254163115833673,-0.14196042670882,0.0640902169582275,0.0801646811800364,0.150624396962198 +5.386,0.0923209705151041,-0.00831962837192582,-0.0254342739583797,-0.142023344896414,0.0640811514259929,0.0801689837963074,0.150660568725839 +5.388,0.0923544370318096,-0.0083025486146226,-0.0254386119289513,-0.14205823478009,0.0640835313460284,0.0801560116085916,0.150697656051338 +5.39,0.0924138364520498,-0.00827239647371991,-0.0254566884528888,-0.142125935867602,0.0640754278261624,0.0801576587025578,0.150740539925472 +5.392,0.09245069538661,-0.00825397902747688,-0.0254615467395892,-0.142165820259504,0.064075935023798,0.0801472481395113,0.150780137021021 +5.394,0.0925007193455901,-0.00822865542147677,-0.0254764528200393,-0.142223699793865,0.0640665369871991,0.0801493575207574,0.150814643867638 +5.396,0.0925321407122929,-0.00821274608105105,-0.0254792955276959,-0.142256319198858,0.0640690829039021,0.0801353246265149,0.150851444015631 +5.398,0.0925931529695365,-0.00818196902594198,-0.0254981226545134,-0.142326575899915,0.0640600892099925,0.0801380557863673,0.150894532526927 +5.4,0.0926306335711292,-0.00816328894733226,-0.0255034224195456,-0.142367310300586,0.0640602529060745,0.0801278679825627,0.150933944126673 +5.402,0.0926863592273532,-0.00813486430166807,-0.0255192771930072,-0.1424312266766,0.0640517385909444,0.0801281599706466,0.150974788532458 +5.404,0.0927214838894077,-0.00811789754163383,-0.0255257415528914,-0.14247046412073,0.0640496265694799,0.080122109194801,0.151008007230834 +5.406,0.0927680195135619,-0.00809277967795716,-0.0255381666231423,-0.142521491306579,0.0640433762075711,0.0801158941117288,0.151042951983532 +5.408,0.092803675963524,-0.00807750015826417,-0.0255416967094143,-0.142560768313075,0.0640497006218614,0.0801056413524434,0.151087967157749 +5.41,0.0928627571049582,-0.00804577234821618,-0.025560364094009,-0.142627693653807,0.0640377098050589,0.0801066664179809,0.151125728322498 +5.412,0.0929023891155585,-0.00802693066249313,-0.0255665866911062,-0.142671613593151,0.0640385858484443,0.0800985250803695,0.151167359998953 +5.414,0.0929551723388518,-0.00799906320407634,-0.0255814250889251,-0.142731272079723,0.0640295259077885,0.0800968444455602,0.151204980521988 +5.416,0.0929920101849735,-0.00798199150293927,-0.0255861430625925,-0.142771868983597,0.0640317418252423,0.080087467852568,0.151246305079284 +5.418,0.0930403691802406,-0.00795725591500016,-0.0256008528401233,-0.142827454835195,0.0640223240452491,0.0800886618446091,0.151278415761291 +5.42,0.0930713445499358,-0.00794138745002088,-0.0256041036413709,-0.142859343534102,0.0640249927411444,0.0800745288496831,0.151313826171451 +5.422,0.0931313851356994,-0.0079114113809019,-0.0256225983076061,-0.14292810446688,0.0640173524243169,0.0800768241132718,0.151356935941889 +5.424,0.0931685071685367,-0.00789291442220375,-0.0256279055261526,-0.142968304818456,0.0640180550528033,0.0800666933251654,0.151396066543897 +5.426,0.0932243061186904,-0.0078643823483458,-0.0256438629129344,-0.143032044101782,0.0640096453133885,0.080067051500671,0.151436654761763 +5.428,0.0932600159910869,-0.00784671612693671,-0.0256482593466719,-0.143070759031452,0.0640101947914068,0.080056495975505,0.151475241888616 +5.43,0.0933161881606214,-0.00781819200242606,-0.0256644366351538,-0.143135386000963,0.0640013649924323,0.0800574088682412,0.15151562582102 +5.432,0.0933520654997375,-0.00780052472457787,-0.0256691020986477,-0.143174395025346,0.0640017334076686,0.0800470289534379,0.151553867134907 +5.434,0.0934070381018223,-0.00777272863945766,-0.0256847488189499,-0.143237579338729,0.0639935260136721,0.0800473606287629,0.151593889263573 +5.436,0.093442394023228,-0.00775535285566567,-0.0256892843355594,-0.143275916614886,0.063994229214433,0.0800367612872033,0.151631860580189 +5.438,0.0934973642670564,-0.00772754086881036,-0.0257050582828901,-0.143339013260327,0.0639861176314999,0.0800371260246721,0.151671703120274 +5.44,0.0935320547096338,-0.00771084287883078,-0.0257116865915188,-0.143377695767238,0.0639842850059101,0.0800312421896515,0.151704017699584 +5.442,0.0935774430406366,-0.00768639015763517,-0.0257236032944517,-0.143427228727542,0.0639787715463647,0.0800246907641677,0.151738436153048 +5.444,0.0936127308002212,-0.00767124998306995,-0.0257269475495999,-0.143466168855824,0.0639852788054413,0.0800146033805142,0.151783123125749 +5.446,0.0936717981649777,-0.00763957251185143,-0.0257453560810451,-0.143533141930677,0.0639733027794326,0.0800158194822015,0.151820840164305 +5.448,0.093711506203932,-0.00762061503240918,-0.025751364550335,-0.143577354271501,0.0639738569658039,0.0800079420971187,0.151862337274686 +5.45,0.0937642942085962,-0.0075928876779138,-0.0257657109748154,-0.143637398231067,0.0639647358310612,0.0800065251065658,0.15190028537249 +5.452,0.0937999484575558,-0.00757619496056244,-0.0257720316111388,-0.143677773066211,0.0639631144538703,0.0800013437978571,0.151934591237315 +5.454,0.0938468366227911,-0.00755126266161302,-0.0257841072704659,-0.143729725650132,0.063957057968631,0.0799957097677159,0.151970273419908 +5.456,0.093882200945878,-0.00753580231879855,-0.0257872325858222,-0.143768776706254,0.0639626174865851,0.0799852541194322,0.1520144966411 +5.458,0.0939412571502107,-0.00750436090399911,-0.0258051530082097,-0.143836293793477,0.0639506526685305,0.0799865332715093,0.152052796162464 +5.46,0.0939808678167577,-0.00748550283963831,-0.0258108436587557,-0.143880552034251,0.063951093760234,0.0799784208318111,0.152094458216117 +5.462,0.0940277131636146,-0.00746177024797379,-0.0258237736233353,-0.143934762176516,0.0639424212574161,0.0799788462524858,0.152127451968898 +5.464,0.0940577664608885,-0.007446499747012,-0.0258256863820032,-0.143965905874705,0.0639453722883077,0.0799641754950608,0.152163646777666 +5.466,0.0941198202509393,-0.0074154530440842,-0.0258444562930424,-0.144037856768477,0.0639363189574722,0.0799675900783242,0.152207295700195 +5.468,0.094157942793082,-0.00739642953183456,-0.0258496485917442,-0.144079711829868,0.0639361833917179,0.0799578958040836,0.15224690045242 +5.47,0.0942135009617186,-0.00736820809348354,-0.0258646649961859,-0.144143804761356,0.063927786771703,0.0799581791117252,0.152288078624331 +5.472,0.0942491796233829,-0.00735060181213032,-0.0258684778828387,-0.144182814916603,0.0639281872762223,0.0799475064668576,0.152327044096124 +5.474,0.0942989272152411,-0.00732582591078129,-0.0258828373755637,-0.144240991879243,0.0639190161961055,0.0799497995139701,0.152361280785424 +5.476,0.0943306025480948,-0.00730976598427593,-0.0258856939924221,-0.144274208707103,0.0639214487102096,0.0799360571142216,0.152397696142994 +5.478,0.0943909449865311,-0.00727959375504433,-0.0259035200221023,-0.144343926868938,0.063913245051775,0.0799384623217844,0.15244102678603 +5.48,0.0944284509025932,-0.00726087981427795,-0.0259083752333366,-0.144384984522945,0.0639135367347213,0.0799284529455729,0.152480561393881 +5.482,0.0944847870658415,-0.00723222900099352,-0.0259238027994351,-0.144449973678074,0.0639049353449866,0.0799291398869407,0.152521848635787 +5.484,0.0945208893670837,-0.00721435298076772,-0.0259278242772268,-0.144489513796957,0.0639052111525457,0.0799187391845249,0.152560851468833 +5.486,0.0945704757156478,-0.00718966876054949,-0.0259420226770125,-0.144547434577796,0.0638962363961355,0.0799209341699715,0.152595172203859 +5.488,0.0946037944805023,-0.00717367185596895,-0.0259479018280103,-0.144584097186496,0.0638961765600769,0.0799133448589468,0.152627762068577 +5.49,0.0946550732578056,-0.0071475402465131,-0.0259615850638111,-0.144641477099373,0.0638920645725393,0.0799095906880806,0.152668206285294 +5.492,0.0946878980870976,-0.00713096964812171,-0.0259636646661952,-0.144676254667085,0.063895375528744,0.0798960982644455,0.15270784314203 +5.494,0.0947516653411276,-0.00709832038851962,-0.0259826433237715,-0.14475021549206,0.063884271825586,0.0799001586247524,0.152751459960389 +5.496,0.0947908771499235,-0.00707864718447479,-0.0259876595111075,-0.144793750198445,0.0638830965224029,0.0798910910441726,0.152791761556316 +5.498,0.094839889624185,-0.00705427713066964,-0.0260007319560469,-0.144851252225112,0.063874212207657,0.0798927575534295,0.152827025165005 +5.5,0.0849089564647247,-0.00631744434812345,-0.023278051708054,-0.129684662337538,0.0571884101724036,0.0715295280590512,0.136827025165005 +5.502,0.0749775540093577,-0.00558161372847868,-0.0205556322496342,-0.114518183756963,0.0505033799174463,0.0631681669262663,0.120827025165005 +5.504,0.0650380842430615,-0.00485077106699626,-0.01782881789489,-0.0993419890682898,0.0438228993765594,0.0548035932002642,0.104827025165005 +5.506,0.0551013511025298,-0.00411886211750514,-0.0151039831623633,-0.0841696648731527,0.0371413761805599,0.0464419208244484,0.0888270251650054 +5.508,0.0451682827375138,-0.00338525701546727,-0.0123815874605724,-0.0690023066291463,0.0304582367927315,0.0380834041045176,0.0728270251650054 +5.51,0.0352353697562009,-0.00265182047820366,-0.0096594819419364,-0.0538354230101628,0.0237751980464765,0.0297258175988887,0.0568270251650054 +5.512,0.0252871552614159,-0.00192715115601403,-0.00692854946881617,-0.0386495502836473,0.0171001942919906,0.0213604000459251,0.0408270251650054 +5.514,0.0153501068619467,-0.00119597011305667,-0.00420394555062477,-0.0234775927858449,0.0104191097198093,0.013000672198835,0.0248270251650054 +5.516,0.00542282417758943,-0.000458642155314742,-0.00148450947044582,-0.00831738337375942,0.00373230852159917,0.00464460687188857,0.00882702516500539 +5.518,-0.00449964365896991,0.00028304345105104,0.00123341597641325,0.00683819183601145,-0.00295842980032148,-0.00371340791630561,-0.00717297483499461 +5.52,-0.013289348355753,0.000948810460654995,0.00364451945513258,0.0202703506814352,-0.00889503578072652,-0.0111363272351201,-0.0213528905386269 +5.522,-0.00667840493590116,0.000479950068761087,0.00182984682154907,0.0101875979064515,-0.00447655514275551,-0.00559699193787321,-0.0107391271055692 +5.524,-0.000133891519818493,9.61329080221066e-06,3.66889510591091e-05,0.000204233852103008,-8.97419530157652e-05,-0.000112191606015923,-0.000215287766418947 +5.526,0.0063548649191659,-0.000455958817544028,-0.00174154486772736,-0.00969302608482364,0.00425929998203146,0.0053241892211623,0.0102176037199142 +5.528,0.0127873941502587,-0.000916976795226315,-0.00350475834921266,-0.019503629087387,0.00857064560625225,0.0107121885020633,0.0205591581428267 +5.53,0.0191635286740817,-0.00137349417871784,-0.00525286091021685,-0.0292274314112493,0.0128442500145374,0.0160518679090085,0.0308092715637087 +5.532,0.0254833195559528,-0.00182546285348868,-0.00698575074725728,-0.0388646055980242,0.0170799557239479,0.0213433071837423,0.0409680502499403 +5.534,0.0317469585072833,-0.00227277994578212,-0.00870331484376029,-0.0484155342093048,0.0212775337443989,0.0265865820775727,0.0510357413475703 +5.536,0.0217938784034145,-0.00156050278320429,-0.00597467230116545,-0.0332369170384235,0.0146069513680714,0.0182518528010442,0.0350357413475703 +5.538,0.0118404799842451,-0.000848605195861288,-0.00324594914680445,-0.0180581520191413,0.00793655797614395,0.00991758230412738,0.0190357413475703 +5.54,0.00188669137962171,-0.000137184456557438,-0.000517194709624953,-0.00287914734492235,0.00126651928101627,0.00158388545247743,0.00303574134757025 +5.542,-0.00806751178420228,0.000573727394032245,0.00221152507844897,0.0123001676928167,-0.00540302891244782,-0.00674916191038095,-0.0129642586524297 +5.544,-0.0180220905445243,0.00128418425909502,0.00494014350124051,0.0274798135722885,-0.0120720320497298,-0.0150815321792274,-0.0289642586524297 +5.546,-0.0279769345243976,0.00199433671391719,0.00766860958814069,0.0426597392443292,-0.0187405570861563,-0.0234132607071886,-0.0449642586524297 +5.548,-0.0379318577788814,0.00270443812141015,0.0103969023050865,0.0578398082929584,-0.0254088210041112,-0.0317444672724147,-0.0609642586524297 +5.55,-0.047886594082299,0.00341485175076703,0.0131250406002086,0.0730197896687788,-0.0320772109750868,-0.0400753833752796,-0.0769642586524298 +5.552,-0.0578407870997065,0.00412606428006732,0.0158530885335512,0.0881993489639453,-0.0387463015898981,-0.0484063848070411,-0.0929642586524298 +5.554,-0.0677939708022416,0.00483871104617845,0.0185811555513933,0.103378035603666,-0.0454168758777313,-0.0567380307989724,-0.10896425865243 +5.556,-0.077745586966602,0.00555358529845219,0.0213094265050731,0.118555324090057,-0.0520899293913015,-0.0650711442010663,-0.12496425865243 +5.558,-0.0876946954091019,0.00627186184785638,0.0240380050488167,0.133730294015475,-0.0587668573061036,-0.0734067524668494,-0.14096425865243 +5.56,-0.0976452960798816,0.00699190259344044,0.0267701652192338,0.148908972036954,-0.0654465640319988,-0.0817497758975406,-0.15696425865243 +5.562,-0.107582585605821,0.00772383594344255,0.0294982442686082,0.164071761641279,-0.0721386855791201,-0.0900935979754292,-0.17296425865243 +5.564,-0.117531113814103,0.00845472322084152,0.0322383471477142,0.179254521970903,-0.0788317958264775,-0.0984597984429126,-0.18896425865243 +5.566,-0.124482084633333,0.00899637764735556,0.0341472660081316,0.189871533073497,-0.083561408843751,-0.104327785994824,-0.20020361161838 +5.568,-0.129752497762955,0.00940179583469453,0.0356030510176888,0.197923767043641,-0.0871346742496108,-0.108786827956867,-0.208702204523729 +5.57,-0.134940154293124,0.00981675300889567,0.0370328278814204,0.205854842723969,-0.0906788550221714,-0.113188089264322,-0.21709878137357 +5.572,-0.140098625722925,0.0102116760118496,0.0384667069204376,0.213739906879455,-0.0941676115420602,-0.117567382269883,-0.225397009893903 +5.574,-0.145128984893186,0.0106411557791957,0.0398488576767642,0.221441394800675,-0.0976493065942848,-0.121859699034865,-0.233590352742057 +5.576,-0.150121763002535,0.0110551855974166,0.041230210675465,0.229085406159709,-0.101079219596089,-0.126124717844187,-0.241684649192016 +5.578,-0.155105270712079,0.0114376749020928,0.0426270439552646,0.236709382964933,-0.104442346761309,-0.130379409300146,-0.249680258598342 +5.58,-0.159912562482514,0.0118820975882741,0.0439440385805189,0.24408734484079,-0.107822917380151,-0.134519293378742,-0.257570270225146 +5.582,-0.164692839489814,0.0123049652258956,0.0452662590684125,0.251421710740574,-0.111145344615839,-0.13863813760225,-0.265360782420349 +5.584,-0.169483689870434,0.012684309306693,0.0466159016553817,0.258760524436706,-0.114388962610169,-0.142757179210367,-0.273050901575764 +5.586,-0.174078557739848,0.0131382279100491,0.0478731394407931,0.265831922906845,-0.117662128857057,-0.146753501987028,-0.280638140879526 +5.588,-0.178648283755267,0.0135690366444919,0.0491371306254715,0.272860861686798,-0.120875039991411,-0.150728949312612,-0.288124303463933 +5.59,-0.18324903919325,0.013943518378668,0.0504413910747338,0.279918256522349,-0.123996440841564,-0.15471462589918,-0.295507379103617 +5.592,-0.187629655080022,0.0144080699991177,0.0516379961178387,0.286681242279872,-0.12716254051545,-0.158567280716736,-0.302790836742834 +5.594,-0.191983830518969,0.0148497645542243,0.0528411142085805,0.293398774739151,-0.130268212807766,-0.162397526433761,-0.309971776676784 +5.596,-0.196390386245475,0.0152217752176677,0.0540979616366882,0.300169894191131,-0.133269340408463,-0.166248645165074,-0.317047028838374 +5.598,-0.200556894895851,0.0156967031642911,0.0552345064423257,0.306624196381487,-0.13632782479561,-0.169958185769802,-0.324025478464061 +5.6,-0.204697282659015,0.0161482399216363,0.0563781411703199,0.313032542639168,-0.139325143411324,-0.173645065200051,-0.330900437275811 +5.602,-0.20879657461757,0.0165851613579937,0.057520042833889,0.319375775151499,-0.142269478462118,-0.177300893682892,-0.337672171220753 +5.604,-0.212977772180316,0.0169341400301193,0.058734137366444,0.325807976212577,-0.145091602930321,-0.180992787515386,-0.344335298326806 +5.606,-0.216870837383028,0.0174154521595131,0.0597984085148902,0.331864801362652,-0.147999231609229,-0.184518497585636,-0.350905184447025 +5.608,-0.22069629136547,0.0178978567800871,0.0608451071056495,0.3378230791637,-0.150868618021775,-0.187998723496707,-0.357372741187607 +5.61,-0.224502041505502,0.0183528244252388,0.0619030338606249,0.34374282699959,-0.153672830555378,-0.191459615657893,-0.363735906413541 +5.612,-0.228420406983563,0.0187013066934346,0.0630519896583537,0.349789476226867,-0.15633712733406,-0.194973093896805,-0.369988534098841 +5.614,-0.232022149210484,0.0191994935986979,0.0640333958952385,0.355425891652252,-0.159103598873551,-0.198305613316356,-0.376150090856348 +5.616,-0.235571526016815,0.0196896438881881,0.0650063800050366,0.360982798528181,-0.161823204045912,-0.201601003971016,-0.382208634702328 +5.618,-0.239101109648874,0.0201523271825662,0.0659905792745358,0.36650092991883,-0.164477591495237,-0.204876959218302,-0.388162706874767 +5.62,-0.242774601104506,0.0204896959736549,0.0670849537547399,0.372184855765244,-0.166974177451245,-0.208222347570211,-0.394004537732143 +5.622,-0.246099015544857,0.0209962994648621,0.0679916051269224,0.37741837657365,-0.169591679902227,-0.211369381867108,-0.399757450219158 +5.624,-0.249356989513541,0.0215032338918799,0.0688812098340585,0.38255483505463,-0.172170331757813,-0.214471587218298,-0.405408162467702 +5.626,-0.252596144729342,0.0219820710649294,0.0697825318104818,0.387653749971904,-0.174683268789822,-0.217554770434405,-0.410954493807211 +5.628,-0.255797205636022,0.0224443028535586,0.0706839020068465,0.392691020785517,-0.177141399499295,-0.220608405576318,-0.416397393461684 +5.63,-0.259181611918307,0.0227573056460739,0.0717197383827426,0.397942926632269,-0.179419013123083,-0.223752373690846,-0.421725719508691 +5.632,-0.262178275974314,0.0232629973458304,0.0725433756462067,0.402696843447196,-0.181840259203265,-0.226677191879176,-0.426968253760426 +5.634,-0.265070068458294,0.0237920087733319,0.0733263151077725,0.407305880886521,-0.184244662841168,-0.2295361324796,-0.432110940739835 +5.636,-0.267931947779695,0.0242995228098418,0.0741139924886955,0.411863594743458,-0.186589790203887,-0.232369719818881,-0.437150163431706 +5.638,-0.270774305695817,0.0247792796305074,0.0749127189921723,0.416382880804847,-0.188869724067044,-0.235183442230577,-0.442085416934837 +5.64,-0.273839100219448,0.0250855881600782,0.0758704009953648,0.421164475632927,-0.190945929257615,-0.238107518085601,-0.446903009659594 +5.642,-0.276478421498546,0.0256082133716033,0.0765911434652931,0.425402595304933,-0.193188959873818,-0.240792572711225,-0.451639335900618 +5.644,-0.279022299488375,0.0261486680041697,0.0772763202749046,0.429507874324052,-0.195410205922348,-0.243416538658162,-0.456276198635421 +5.646,-0.28154258255831,0.026663811291269,0.0779697504554825,0.433569671835487,-0.197568695247717,-0.246018022136952,-0.460809769491257 +5.648,-0.284043953387007,0.0271507553227136,0.0786743088141106,0.437593673871727,-0.199661678063754,-0.248599340100802,-0.4652397770895 +5.65,-0.286805507105288,0.0274400625068814,0.0795621570252142,0.441924844036039,-0.20152737535957,-0.251309425356508,-0.469547884254005 +5.652,-0.28910579593317,0.0279691961647432,0.0801885368205699,0.445670667509824,-0.203583313425073,-0.253762337924433,-0.473781027066951 +5.654,-0.291303666902623,0.0285206704335104,0.0807743108068546,0.449275316042559,-0.205622027674866,-0.256150026231581,-0.477916344629248 +5.656,-0.293473205815246,0.029049684268974,0.0813650321992114,0.452830455755974,-0.2076008149032,-0.258511976277629,-0.481949316321319 +5.658,-0.295625265111707,0.0295495804982018,0.0819674093416016,0.456349325908621,-0.209513318798876,-0.260853738128964,-0.485879242933564 +5.66,-0.297740698837453,0.0300318931862289,0.0825696002138869,0.459808121719022,-0.211370560725833,-0.263164871743878,-0.489707427644047 +5.662,-0.300158766003904,0.0302882285806128,0.0833834656931471,0.463622931398165,-0.212972513895717,-0.265624300425045,-0.493407238671916 +5.664,-0.302076126733755,0.0308117183673949,0.0839074430176784,0.466807819128053,-0.21479244354202,-0.267807437446502,-0.497041671870871 +5.666,-0.303879192530661,0.031365295887229,0.0843823753195245,0.469837281684434,-0.216602991841964,-0.269918492938631,-0.50058102115549 +5.668,-0.305620590090247,0.0319168855911879,0.0848408783627157,0.472776047125378,-0.218373516349601,-0.271985210466101,-0.504021694021903 +5.67,-0.307345614664907,0.0324386294703275,0.0853112530014754,0.475679488275634,-0.22007731512988,-0.2740312262694,-0.507360207796624 +5.672,-0.309053086537795,0.0329310797414012,0.0857928248544514,0.478545888201963,-0.221714931912477,-0.276055603297609,-0.510596587660419 +5.674,-0.311102087069523,0.0331707472817208,0.0865129030057288,0.481812001469982,-0.223070694823355,-0.278245355381639,-0.513697586845042 +5.676,-0.312615242713941,0.0337030657666908,0.0869164485103743,0.48440965739618,-0.224670942144899,-0.280142358385807,-0.516744065096934 +5.678,-0.314018196776001,0.0342635373551715,0.0872723035473708,0.486857284373104,-0.226260651583865,-0.281968795943197,-0.519697425755614 +5.68,-0.315374492096922,0.0348128601311192,0.0876204596310927,0.489232313376413,-0.227802068993601,-0.283757701479716,-0.522552325352527 +5.682,-0.316715605028539,0.0353314158020985,0.0879808355299267,0.49157286781917,-0.229276352629777,-0.285525203920815,-0.525305987948004 +5.684,-0.318040364753956,0.0358197610557645,0.0883527463898079,0.493877273549265,-0.230684104156193,-0.287270373242321,-0.52795850359135 +5.686,-0.319741339598239,0.0360307333159278,0.0889878460603286,0.49661971522973,-0.231785697335874,-0.289195567381754,-0.530468632530409 +5.688,-0.320875654648969,0.0365573955854187,0.0892820414696026,0.498660397111945,-0.233156265291112,-0.290813593419182,-0.532935271502122 +5.69,-0.321909940323874,0.0371022708835649,0.0895252897252224,0.500567082962067,-0.234508595104382,-0.292365559395708,-0.53531784051229 +5.692,-0.322889858119254,0.0376370861540976,0.0897497804216278,0.50239804099572,-0.235813871684217,-0.293877427250703,-0.537606479634976 +5.694,-0.323852119141549,0.0381390963601245,0.0899822635156518,0.504197106931109,-0.23705292970672,-0.295366940569315,-0.539794401208595 +5.696,-0.324793830242523,0.0386094947608719,0.0902240597222024,0.50595675041175,-0.238229907656026,-0.296829136918172,-0.541878525402186 +5.698,-0.32569219239773,0.039062382355881,0.0904625512568018,0.507646661886902,-0.239361109269948,-0.298250512159015,-0.543859946462395 +5.7,-0.326990332200255,0.0392076753092568,0.0909924862498662,0.509779330480639,-0.240162221037576,-0.299843174004533,-0.545670759146372 +5.702,-0.327697175632518,0.0396952774290271,0.0911572719095923,0.51120545349743,-0.241275217613249,-0.301133363735256,-0.547464977403523 +5.704,-0.328295200428764,0.0402094268472676,0.0912764767575224,0.512482373187685,-0.242388219839088,-0.302351282861633,-0.549168799625407 +5.706,-0.328800350071316,0.0407398201800848,0.0913605844695663,0.513625691993816,-0.243489657626515,-0.303502793042801,-0.550779553712744 +5.708,-0.329282796382056,0.0412414466015351,0.0914553642815373,0.514717084068442,-0.244533573862022,-0.30462215779226,-0.552288141345019 +5.71,-0.329753344609349,0.0417086448187592,0.0915667584980889,0.515771002850217,-0.245512673722283,-0.305716270722531,-0.553695574173021 +5.712,-0.330211776536534,0.0421431888432054,0.091693159231953,0.516789870025152,-0.24642691320541,-0.306787105778087,-0.555004940465239 +5.714,-0.331126288261074,0.0422515025324158,0.092136650955511,0.518355237915883,-0.24699067960853,-0.308090762575426,-0.556172760391567 +5.716,-0.331408360235519,0.04272067540782,0.0921907958734978,0.519121352172311,-0.24786612301909,-0.309035709569529,-0.557307764063796 +5.718,-0.331589426270231,0.0432157043981581,0.0921992958566529,0.519745361347612,-0.248727590358516,-0.309910101755451,-0.558357589442308 +5.72,-0.331700132313729,0.0437177035291414,0.0921813018840467,0.520265708849078,-0.249555504177456,-0.310730472105637,-0.559319944009561 +5.722,-0.331803032674047,0.0441879180093486,0.0921766459520422,0.520760987580083,-0.250311570100463,-0.311531232691249,-0.560189866548918 +5.724,-0.331900231821542,0.044625355240043,0.0921862078579383,0.521234452938154,-0.25099429266103,-0.312313505480617,-0.560967818244127 +5.726,-0.331987061405781,0.0450328874654424,0.0922067795189,0.521680182055198,-0.25160613855675,-0.313074104442542,-0.561654220746166 +5.728,-0.332540874042627,0.0451068265096222,0.0925519466659078,0.522677182792085,-0.251851006036162,-0.314062310791366,-0.562193702988805 +5.73,-0.332452826165005,0.0455509953693971,0.0924940652122919,0.522876935062628,-0.252414923919615,-0.314694545278465,-0.562712129446838 +5.732,-0.33226480610459,0.046021281488817,0.0923882075943158,0.522939607233122,-0.25296350593925,-0.315256315212186,-0.56314868501771 +5.734,-0.332000991212287,0.0465026994440746,0.092249758734025,0.522895971894652,-0.253483270431342,-0.315761040202306,-0.563501824171329 +5.736,-0.33172717846092,0.0469530473463619,0.0921221866322149,0.522825207549929,-0.25393390931492,-0.316242260306353,-0.563763554529913 +5.738,-0.33144687551334,0.0473694178302793,0.0920082283737383,0.522730354166473,-0.254313394456722,-0.316700506069382,-0.563932603417873 +5.74,-0.331157286029544,0.0477527367303772,0.0919065905274054,0.522606633147153,-0.254623410585973,-0.317132929394633,-0.564008217538881 +5.742,-0.331336336685634,0.0477872888202908,0.0921418232240339,0.52300981022945,-0.254551998384209,-0.317770688790047,-0.563912700965965 +5.744,-0.330874781630012,0.0482029897600978,0.0919627060490851,0.522645902755318,-0.254822922348903,-0.318073295776667,-0.563823007956664 +5.746,-0.330315387103024,0.04864262936213,0.0917364168197508,0.522148533596374,-0.25508351059536,-0.318305222367998,-0.563653439207393 +5.748,-0.32968269321645,0.0490904946444785,0.0914791550660238,0.521546805213083,-0.255319217061,-0.318478518373952,-0.563401218312035 +5.75,-0.329040261309596,0.0495043889055675,0.0912342616370874,0.520914147507791,-0.25548891169754,-0.318623412408337,-0.563056004448028 +5.752,-0.328391554988864,0.0498815465170637,0.0910044085895372,0.520253880832639,-0.255590407146474,-0.318740929613435,-0.562616932633681 +5.754,-0.327734928014856,0.0502225280280311,0.0907888141969333,0.519563485986346,-0.255624718774183,-0.318829751650011,-0.562083966342615 +5.756,-0.327549358776656,0.050202463585106,0.0909205271506036,0.519392150321029,-0.255268024009421,-0.319117042730227,-0.561366522348582 +5.758,-0.326736830462356,0.0505603636877938,0.0906277657938594,0.518482806993407,-0.255259793520397,-0.319080403059389,-0.560680725606823 +5.76,-0.325831539403043,0.050933797886464,0.0902841254651072,0.517451113450752,-0.255236929172673,-0.318975426087201,-0.559920038933402 +5.762,-0.324853740037005,0.0513099624403762,0.0899060604682969,0.516322667840308,-0.255190263700348,-0.318812718420569,-0.559079352661347 +5.764,-0.323862484556048,0.0516485955192272,0.0895375510965457,0.515162786386466,-0.255083366614334,-0.318617999180667,-0.558144920891818 +5.766,-0.322859569907544,0.0519476744620329,0.0891825480086839,0.51396923341512,-0.254917227671995,-0.31838905393017,-0.557113655173128 +5.768,-0.321843529786671,0.0522074398258746,0.0888421224302596,0.512736463388088,-0.254694188683984,-0.318123070695893,-0.555983934105475 +5.77,-0.321284818297396,0.0520971325574123,0.0888546325373768,0.511983074323749,-0.254081531867151,-0.318028620363471,-0.554645942505936 +5.772,-0.320104056478044,0.0523776054006796,0.0884458046835814,0.51051789926231,-0.253848430240603,-0.317630358054957,-0.553355302533909 +5.774,-0.318831796310546,0.052675856420519,0.0879961202157976,0.508924019204058,-0.253617106021431,-0.317161498743119,-0.551987647333892 +5.776,-0.317490514131297,0.0529764567545097,0.0875217292560696,0.507223049254642,-0.25337010798872,-0.316629971323472,-0.550537507252399 +5.778,-0.316142052404299,0.0532372272203387,0.0870662581916625,0.505483862711427,-0.25306285118278,-0.31606405200309,-0.548992406892977 +5.78,-0.314792215336299,0.053455829379132,0.0866326674769109,0.503714968916569,-0.252690790953494,-0.31546824085271,-0.547353905553401 +5.782,-0.31344272508287,0.0536331261619159,0.0862206326521625,0.501921478761371,-0.252252553256266,-0.314845890345391,-0.545625170119274 +5.784,-0.312569797395872,0.0534523263444596,0.0861599337432238,0.500680983509051,-0.251432798776608,-0.314450405816999,-0.543732075808613 +5.786,-0.311070585235567,0.0536535329276234,0.0856819149736835,0.498664423441192,-0.250960547782658,-0.313700696125431,-0.541856464754236 +5.788,-0.309487254792039,0.0538733664623452,0.0851633602733484,0.496524813837052,-0.250474201861523,-0.31288138418755,-0.539909505733057 +5.79,-0.307855180952039,0.054088406937236,0.0846283339986779,0.494304892717362,-0.249948676219483,-0.312010597971789,-0.537885781901386 +5.792,-0.306227350483557,0.0542641340360979,0.08411278973249,0.492070152986459,-0.249348564592826,-0.311116899628905,-0.535778227295396 +5.794,-0.304604774474251,0.0544006151211845,0.0836166393135541,0.489823010355711,-0.24867303092836,-0.310201104999205,-0.533587894110152 +5.796,-0.30298454948918,0.0545001724277976,0.0831373486001536,0.487560323971654,-0.247923767610891,-0.309261265539259,-0.531315792497578 +5.798,-0.301816690754686,0.0542656305623144,0.0829874154116514,0.485821753178564,-0.246806079978265,-0.308529921977505,-0.528890858803021 +5.8,-0.300046257861032,0.054393202116092,0.0824341702947124,0.483339436879008,-0.246009393899316,-0.307457327663202,-0.526478198583448 +5.802,-0.298191408046315,0.0545406537957375,0.081836984118803,0.480737292789084,-0.245195515605877,-0.306313714653936,-0.523997112007234 +5.804,-0.296286595503889,0.0546854529444719,0.0812194223975424,0.478058012998135,-0.244343073757267,-0.305117617545867,-0.52144302097855 +5.806,-0.294386000340242,0.0547915711718094,0.0806193131106824,0.475365944622227,-0.243417183091737,-0.303896125220867,-0.518806987544345 +5.808,-0.292489917548536,0.0548582635906371,0.0800372564386647,0.472660150929886,-0.24241793431681,-0.302647930124199,-0.516088084809337 +5.81,-0.290593045322511,0.0548882824803528,0.079470107958593,0.469932785877053,-0.241348901616884,-0.301368758732969,-0.51328603651725 +5.812,-0.289112170397604,0.0545959255254418,0.0792171877211606,0.467657322348249,-0.239923393108933,-0.300252706268353,-0.510313903047752 +5.814,-0.28706654130231,0.054650551594382,0.0785765462485263,0.464714607881394,-0.23881586426501,-0.298838299073471,-0.507372130224715 +5.816,-0.284937923815147,0.0547234552968907,0.077892644529311,0.461655044055334,-0.237696774302563,-0.297352509182658,-0.50436316530577 +5.818,-0.282760298317343,0.0547919265403062,0.0771894738343867,0.458517923781968,-0.236544329184564,-0.295811577863653,-0.501281109148907 +5.82,-0.280586617452556,0.0548193932109127,0.0765053918807967,0.455362692656278,-0.235322406162487,-0.294239584786708,-0.498114666670872 +5.822,-0.278417329799195,0.0548049667264546,0.0758412346205828,0.452188871724682,-0.234030657725564,-0.292635993400913,-0.494863137555511 +5.824,-0.276246038854311,0.054752490591752,0.0751928616272065,0.44898846628633,-0.232673417803058,-0.290997335787281,-0.491527409422324 +5.826,-0.274455583378329,0.0543897979840695,0.0748436160913528,0.446186382570722,-0.230974789851932,-0.289495573188704,-0.4880133312233 +5.828,-0.272142423111595,0.0543578911763694,0.074126103558432,0.442778438225381,-0.22958576019349,-0.287724153551911,-0.484542409455413 +5.83,-0.269750836839263,0.0543418930719486,0.0733680754180175,0.439258486517362,-0.228187075967872,-0.28588308278511,-0.481006758476439 +5.832,-0.267317887429134,0.0543158647202634,0.0725966819600938,0.435667661779009,-0.22675267480822,-0.283988963525656,-0.477398036301217 +5.834,-0.264890831965662,0.0542461366912418,0.0718470349115534,0.432058278760904,-0.225248529936848,-0.282062971762753,-0.473704780707598 +5.836,-0.262469939121739,0.0541323121845382,0.0711195271818411,0.428430549585975,-0.223674358867773,-0.280105254914671,-0.469927011340551 +5.838,-0.260046088082944,0.0539807784315738,0.0704074861693129,0.424774391940458,-0.222036760304827,-0.278111807565902,-0.466067221259563 +5.84,-0.257965314792164,0.0535428709938176,0.0699700196195047,0.421475540240267,-0.220083120745402,-0.276240166693156,-0.462037473966391 +5.842,-0.255459965587717,0.0533914809618027,0.0692213201751049,0.417666377683682,-0.218434022489824,-0.274097742233778,-0.458097627134568 +5.844,-0.25283926092991,0.0532655796221638,0.0684081302030323,0.413714048914358,-0.216738494469814,-0.271916200875809,-0.454051545753459 +5.846,-0.250175217071707,0.053127248087796,0.0675821597226403,0.409693465024056,-0.214996877431191,-0.269686192842262,-0.449922973148796 +5.848,-0.247512559885099,0.0529472654012201,0.0667768158876272,0.405652538359705,-0.213191088124237,-0.267421806343963,-0.445709669095976 +5.85,-0.24490309878329,0.0527062204976598,0.0660221730985783,0.401628284601378,-0.211338728761623,-0.265098639333271,-0.441455026782777 +5.852,-0.242249019137065,0.052443513703976,0.0652547741657887,0.397545807234571,-0.209401964310881,-0.262768949062886,-0.437085868885965 +5.854,-0.239865199920332,0.0519627626728933,0.0647006706352289,0.393730600892921,-0.207249789977615,-0.260490335159194,-0.432612897745641 +5.856,-0.237036369345841,0.0517413167811936,0.0638384054495368,0.389401882445799,-0.205300140940474,-0.258013402277037,-0.428117511371885 +5.858,-0.234165988372356,0.0515064183801403,0.0629657157422998,0.385007035111204,-0.203312671279818,-0.255485621030077,-0.423542067355682 +5.86,-0.231298877489769,0.0512280909473556,0.0621160005166338,0.380590958693749,-0.201266014864177,-0.252919946716568,-0.418882610537854 +5.862,-0.228481420348364,0.0508889682132165,0.0613158480297222,0.376186659983152,-0.19917406452253,-0.250295550825708,-0.414177756368409 +5.864,-0.225939723290724,0.0503012350438053,0.0607430703578392,0.372080570680281,-0.196775487052909,-0.247804661782142,-0.409285607227216 +5.866,-0.223022570658709,0.0499544114774495,0.0598998640784875,0.367518416054874,-0.194627007647347,-0.245071702010956,-0.404447723546473 +5.868,-0.219996159383988,0.0496306088908144,0.0589974377055327,0.362816928123648,-0.192446902842071,-0.242287844480653,-0.399513146672958 +5.87,-0.21692108522958,0.0492986450813385,0.058078467726386,0.358038274632882,-0.190234556261337,-0.239446460588888,-0.394502397697057 +5.872,-0.213851882330986,0.0489224838806563,0.0571829478676897,0.353241494438229,-0.187960790177696,-0.236567908199724,-0.389409917287042 +5.874,-0.210829649328569,0.0484869023370625,0.0563344042132433,0.348456935097837,-0.185636965658817,-0.233635072561104,-0.384269387556585 +5.876,-0.208045835512268,0.0478330619146379,0.0556835460918876,0.34393148098739,-0.183040432709836,-0.230815649719368,-0.378960423918497 +5.878,-0.20488321998814,0.0474055878401767,0.0547671121714297,0.33895116478825,-0.180647343667664,-0.227781311425944,-0.373656855433239 +5.88,-0.201649069886207,0.046989311403275,0.0538146688820598,0.333865707595886,-0.178246000668791,-0.224674796304369,-0.368292015060518 +5.882,-0.198404766839886,0.0465414932274351,0.0528715670457388,0.328743595716622,-0.175793334087532,-0.221524279851495,-0.362852858076597 +5.884,-0.195172154556757,0.0460467786586164,0.0519537777681213,0.323608683046548,-0.17327259028935,-0.218339901742844,-0.357334389211186 +5.886,-0.191975966602514,0.0454991883713617,0.0510739747201182,0.318477598181993,-0.170699103621315,-0.215104364495625,-0.351766363259219 +5.888,-0.188972046540293,0.0447685740275916,0.0503559308232918,0.313553593273957,-0.167889121754392,-0.211957064894254,-0.346047759082857 +5.89,-0.185669258458474,0.0442202829347068,0.049424373994097,0.308256732220374,-0.165257012753421,-0.208606173025286,-0.340352202533481 +5.892,-0.182270629906991,0.0436906357016828,0.0484403371343467,0.302834490179629,-0.162594521248462,-0.205200006394483,-0.33457096639318 +5.894,-0.178868991830244,0.0431390601305908,0.0474633878581392,0.297398004442218,-0.159895311787869,-0.201769385306901,-0.328743474374392 +5.896,-0.17555645568755,0.042562918476054,0.0465314754659706,0.29208217777261,-0.157204554305068,-0.198395134433678,-0.322985819160903 +5.898,-0.172327493050448,0.0419716430095576,0.0456375772293468,0.286881010874433,-0.154536355124618,-0.195077209221072,-0.317311950255471 +5.9,-0.169321251491159,0.0412752971888219,0.0448825490123654,0.281941104605282,-0.151816369541971,-0.191857030853042,-0.311715027914855 +5.902,-0.166132324193022,0.040746284387009,0.043964141427099,0.276828095342264,-0.14928129072229,-0.188601433142493,-0.306246717085514 +5.904,-0.163025956592824,0.0402012913995525,0.0430832807109603,0.271832374778803,-0.146761720749774,-0.185408343456683,-0.300857327095565 +5.906,-0.160011927617969,0.0396341323296153,0.0422478322265745,0.266961905664481,-0.144255584833472,-0.182277968161172,-0.295546785774037 +5.908,-0.157210598735691,0.0389572139597096,0.0415508586073052,0.262345803263506,-0.141673262454472,-0.17926103694949,-0.29028118621788 +5.91,-0.154241482430485,0.038447191238531,0.0406985643138625,0.257571777119005,-0.139298109314583,-0.176196037388836,-0.285167756732332 +5.912,-0.15136500177992,0.0379226357817322,0.0398878277305597,0.252915755505151,-0.136957686217453,-0.173176663728846,-0.280156586111725 +5.914,-0.148568185353197,0.0373787391555364,0.0391140077246393,0.24837670685741,-0.134613505396426,-0.170236669427608,-0.275207650257934 +5.916,-0.145956526396468,0.0367435843041222,0.0384582846554434,0.244065779461105,-0.132206172447099,-0.167403967792927,-0.270306207542421 +5.918,-0.143205056216844,0.0362539174682716,0.0376699119636706,0.239626287574634,-0.129982051676435,-0.164534500017101,-0.265545092522727 +5.92,-0.140534776442854,0.0357497201046588,0.0369192711939326,0.235299580726198,-0.127777555086311,-0.161724523817401,-0.260863624317087 +5.922,-0.137952988649192,0.0352255762531435,0.0362120316255639,0.23109329035744,-0.125586712611793,-0.158977533352977,-0.256259505613959 +5.924,-0.135536746591845,0.0346253568851396,0.035607895389815,0.227091937946628,-0.123351420268612,-0.156327864172688,-0.251710926742484 +5.926,-0.133000321524584,0.0341568313978465,0.0348855562848026,0.222983237509621,-0.121284233056236,-0.153651613563704,-0.247297652203561 +5.928,-0.130542030530465,0.0336756324429475,0.0341987024284944,0.218983987201656,-0.119236572871521,-0.151035365823541,-0.242963628452742 +5.93,-0.128169329406863,0.0331763620786577,0.0335531647885949,0.215102686954775,-0.117202514599025,-0.148482849391601,-0.238706519473764 +5.932,-0.125942247384175,0.0326157552525393,0.0329953102353123,0.21140620201141,-0.115137465620964,-0.14602135499695,-0.234509889338967 +5.934,-0.123629519350773,0.0321662354849585,0.0323439502374522,0.207634655930926,-0.113227622898327,-0.143535870456871,-0.2304523192283 +5.936,-0.121386161728747,0.0317057827348917,0.0317227395699862,0.203967802498404,-0.111325512523937,-0.141121553339019,-0.226461450756819 +5.938,-0.119230549573109,0.0312294847340134,0.0311430658767229,0.200419254424305,-0.109445453155845,-0.138762995664318,-0.222557403316004 +5.94,-0.117201721067206,0.0307010386965373,0.0306384966749465,0.197038276463259,-0.107532107714047,-0.136499121836685,-0.218703769040619 +5.942,-0.115076981360254,0.0302836055196706,0.030037018870097,0.193578006527851,-0.105762842031299,-0.134221658744085,-0.214971007442958 +5.944,-0.113018026239845,0.0298616221465541,0.0294632152001483,0.190214675023891,-0.104021718613186,-0.131999508667921,-0.211317124173827 +5.946,-0.111037867809285,0.0294256494935541,0.0289271717519629,0.186961068593293,-0.102299203265361,-0.12983757251729,-0.207738422631947 +5.948,-0.109174943373767,0.028947570135856,0.0284588400865723,0.183858229202592,-0.100565970568978,-0.127752293318451,-0.204223625749146 +5.95,-0.107242368525099,0.0285634131757383,0.0279125164678007,0.180705802063414,-0.0989615749036418,-0.125666625963329,-0.200826736966506 +5.952,-0.105391842671843,0.0281627716630646,0.0274063593115035,0.177666397175086,-0.0973717592247951,-0.123643754289556,-0.197503637031189 +5.954,-0.103649207693889,0.0277271404384809,0.026960301109802,0.174769558157534,-0.0957771330701484,-0.121696233411246,-0.194247475711212 +5.956,-0.10187169845548,0.0273597929236809,0.0264635836045341,0.171858170103485,-0.0942831145059696,-0.119761276930933,-0.191097389408979 +5.958,-0.100176184642973,0.0269762675129391,0.0260068827153095,0.169061402631589,-0.0928027238312739,-0.117890919706695,-0.188021100881736 +5.96,-0.098573130073156,0.0265728758298437,0.025596333162244,0.16638947728725,-0.0913383962059584,-0.116083251462506,-0.185026699958627 +5.962,-0.0969475641917991,0.0262253093230849,0.0251460102893027,0.16371725562528,-0.089952613609307,-0.114300906376066,-0.182124133975435 +5.964,-0.0953952685150602,0.0258674351764624,0.0247293015470285,0.161152536188104,-0.0885844031806644,-0.11258184037451,-0.179295800831797 +5.966,-0.0939344207566798,0.0254861329745519,0.0243607475511108,0.158712804827857,-0.0872217430968732,-0.1109311676969,-0.176536736533243 +5.968,-0.0924342475319647,0.0251761801626177,0.0239385368012352,0.156254863858893,-0.08596222950862,-0.109292185964016,-0.173883727180792 +5.97,-0.0910213413781772,0.0248488544287691,0.0235596933722217,0.153914608908355,-0.0847201091061566,-0.107713264242738,-0.171310125169458 +5.972,-0.0896927573681729,0.0245008965248872,0.0232239666480645,0.151694123518614,-0.0834796022046529,-0.106208345365708,-0.168800547775977 +5.974,-0.0883331350263161,0.0242176017659146,0.0228413476355288,0.149464932405113,-0.0823336704949006,-0.104720039448657,-0.166392581748074 +5.976,-0.0870499106977626,0.0239214817139026,0.0224955823088084,0.147344264423662,-0.0812041216835342,-0.103294295700104,-0.164057121029174 +5.978,-0.085847076887209,0.0236095040637722,0.0221899415691762,0.145335576895658,-0.0800879077291223,-0.101932256908119,-0.161792740737456 +5.98,-0.0846260560875335,0.0233537790157929,0.0218469800601185,0.143332935986991,-0.0790591767834457,-0.100593024788082,-0.159628413271954 +5.982,-0.0834791118620412,0.0230867947732588,0.0215391513128136,0.141435488238993,-0.0780481146265692,-0.09931535598237,-0.157536879171491 +5.984,-0.0824076500028541,0.0228075299141128,0.0212675590941694,0.139645311780988,-0.0770534754449652,-0.0981005286804527,-0.155517770634068 +5.986,-0.0813231965937433,0.0225806613675531,0.0209627513550286,0.137865937482211,-0.0761415336145993,-0.0969103836290499,-0.153596498626797 +5.988,-0.0803106095589795,0.0223441353635306,0.0206913935649594,0.136190027965124,-0.0752482789575038,-0.0957818239310682,-0.151748408933166 +5.99,-0.0793688937700373,0.0220986935814329,0.020452730496036,0.134616861722939,-0.0743743290568687,-0.0947148117445365,-0.149973755327176 +5.992,-0.0784201680963515,0.021901158903161,0.0201856976673054,0.133060594896994,-0.0735778716171522,-0.093674864751197,-0.148294503013466 +5.994,-0.0775461195097471,0.0216940972741188,0.019953326195202,0.131609475910313,-0.0728038064007925,-0.0926932890170827,-0.146693749670963 +5.996,-0.0767380537422391,0.0214799471644735,0.0197503018404069,0.130258053456164,-0.0720456496888941,-0.0917774054228342,-0.145162220977126 +5.998,-0.0759202165607902,0.0213149886765505,0.019517274949324,0.128920682644747,-0.071365083972834,-0.0908878307426439,-0.143724820516252 +6,-0.0751702687541002,0.0211430288843791,0.0193150864159711,0.127683150363965,-0.0707055576159403,-0.0900587400474232,-0.1423605557102 +6.002,-0.0744844979661373,0.020966646002081,0.0191409649447092,0.126540463696416,-0.0700698277257289,-0.0892878133574454,-0.141070167317755 +6.004,-0.0738001839267895,0.0208319188741076,0.0189453444483776,0.12542518853943,-0.0695053711343164,-0.0885489894065662,-0.139872368604325 +6.006,-0.0731796672556454,0.0206930040935803,0.0187774810905466,0.124404321143846,-0.0689648046577403,-0.0878685219826959,-0.138748451899359 +6.008,-0.0726209436882558,0.0205513598002245,0.0186358013633081,0.123475914704009,-0.0684495255666578,-0.0872459002414929,-0.137698980901694 +6.01,-0.0720675302332,0.0204484738530583,0.0184756855881465,0.122578736637586,-0.0680021377197651,-0.0866570896182447,-0.136740557570571 +6.012,-0.0715825051050979,0.02033799202776,0.0183470003777041,0.121781297790381,-0.0675747847182245,-0.0861292191847027,-0.135854442632073 +6.014,-0.071126577240928,0.0202487410071383,0.0182187428353787,0.121040818816343,-0.0671970249591463,-0.0856453860214309,-0.135052054379151 +6.016,-0.0707313479265577,0.0201575348350943,0.0181158873109485,0.120391978662461,-0.0668449153481683,-0.0852195121971276,-0.134324094212321 +6.018,-0.0703558255983403,0.0200943927436049,0.0180061207857474,0.119789748894151,-0.0665492241767831,-0.084833586421387,-0.133682310328991 +6.02,-0.0700422381371404,0.0200283505673899,0.0179228029906219,0.119280626204929,-0.0662780485838332,-0.0845063399223207,-0.133114383669994 +6.022,-0.0697542599060653,0.0199860022850093,0.017837296769072,0.118824629272882,-0.0660586516165835,-0.0842217465766631,-0.132630693679132 +6.024,-0.0695258876245185,0.0199424022398085,0.0177764849915346,0.118459217949637,-0.0658653354912202,-0.0839949254894633,-0.132221295534055 +6.026,-0.0693209313150313,0.019924060960761,0.0177118107227278,0.118144575222297,-0.0657252996325704,-0.0838099275962941,-0.131896564155716 +6.028,-0.069175466167875,0.0199044838062861,0.0176718283093313,0.117920385537387,-0.0656112586669594,-0.0836827409858546,-0.131645906694964 +6.03,-0.0690549697753157,0.0199089846049539,0.017629266091622,0.11774873840863,-0.0655492039758878,-0.0835982198329708,-0.131479274043252 +6.032,-0.0689930610875256,0.019912839329726,0.0176107724891757,0.117666526823671,-0.0655136663300261,-0.0835711903686598,-0.131386723570097 +6.034,-0.0689440312781574,0.0199378082788661,0.0175863691677533,0.11761663028392,-0.0655194717911868,-0.0835727530825757,-0.131356205552268 +6.036,-0.0689142444462101,0.0199509039243724,0.0175759640871188,0.117589153963008,-0.0655146394022502,-0.0835843410854556,-0.131325059661079 +6.038,-0.0688660693279144,0.0199756751878152,0.0175518919052857,0.11754044944994,-0.0655207707381704,-0.0835863948872299,-0.131295473897653 +6.04,-0.0688365299460198,0.0199886212538953,0.0175415681172572,0.117513263002682,-0.0655160810252531,-0.083597945179896,-0.131264573814655 +6.042,-0.0687883762153113,0.0200132737877026,0.017517471747359,0.117464521556304,-0.0655223038339981,-0.0835997765836507,-0.131234974719435 +6.044,-0.0687588305036316,0.0200261372883046,0.0175071145507479,0.117437288549673,-0.0655177708577391,-0.0836111457719775,-0.131204101045313 +6.046,-0.0687108307399855,0.0200506564228833,0.0174830782735644,0.11738869661682,-0.0655241331751519,-0.0836129079624881,-0.131174586991283 +6.048,-0.068681329731187,0.0200634161238529,0.0174727391001152,0.117361485708393,-0.065519744113738,-0.0836241683774878,-0.131143724357448 +6.05,-0.0686333687442933,0.0200878633210964,0.0174487010350655,0.117312892706117,-0.0655262782069098,-0.0836258141620041,-0.131114242759104 +6.052,-0.0686038705377028,0.0201005536433067,0.0174383584763315,0.117285657497783,-0.0655220398072425,-0.0836369733291431,-0.13108337639108 +6.054,-0.068555966942054,0.0201249282253311,0.0174143382432577,0.117237084259779,-0.0655287098893673,-0.0836385367660297,-0.131053916964836 +6.056,-0.0685264866566818,0.0201375555411073,0.0174040036574743,0.117209846583079,-0.065524583642077,-0.0836496274954287,-0.13102304603459 +6.058,-0.0684786256942229,0.0201618824962587,0.0173799889243736,0.117161283536479,-0.0655313612371371,-0.0836511268000963,-0.130993614173109 +6.06,-0.0684491614510682,0.0201744690885507,0.0173696543525334,0.11713404805023,-0.0655273123756896,-0.0836621698155472,-0.130962752034156 +6.062,-0.06840135526386,0.0201987562995604,0.0173456492383821,0.117085522004306,-0.0655341449894921,-0.0836636361699544,-0.130933355157644 +6.064,-0.0683719171540113,0.020211315922792,0.0173353134553096,0.117058307476753,-0.0655301278589724,-0.0836746535557651,-0.130902515994572 +6.066,-0.0683241667640396,0.0202355776450727,0.017311312000962,0.117009835253671,-0.0655369716853115,-0.0836761107138207,-0.130873165459163 +6.068,-0.0682947585465484,0.0202481255747598,0.0173009689626414,0.116982652988744,-0.0655329486305199,-0.0836871175632843,-0.130842363728738 +6.07,-0.0682470673118361,0.0202723706553979,0.0172769679637693,0.116934252803507,-0.0655397640752942,-0.0836885858625831,-0.130813067172219 +6.072,-0.0682176932756423,0.0202849167572886,0.017266614187109,0.116907113213196,-0.065535704297357,-0.0836995935524383,-0.130782312405353 +6.074,-0.068170058321221,0.0203091541384765,0.0172426076132777,0.11685879279544,-0.0655424659890553,-0.0837010848998944,-0.130753074341947 +6.076,-0.0681407190853165,0.0203217054141501,0.0172322397118791,0.116831700258298,-0.06553835077584,-0.083712099642876,-0.130722371205757 +6.078,-0.0680931358503123,0.0203459409724643,0.0172082227083656,0.116783460797915,-0.0655450454368415,-0.0837136193981052,-0.13069319161899 +6.08,-0.0680638306560722,0.0203585003476442,0.0171978392480304,0.116756416143193,-0.0655408665000731,-0.0837246438663729,-0.130662539644716 +6.082,-0.0680162920891107,0.0203827383441177,0.0171738072165796,0.116708251553946,-0.0655474928880348,-0.0837261912251659,-0.130633415344912 +6.084,-0.0679870184088139,0.0203953061068672,0.0171634078235118,0.116681251964521,-0.0655432512415212,-0.0837372251074645,-0.130602810454166 +6.086,-0.0679395172727431,0.0204195486226333,0.0171393576144452,0.116633152394543,-0.065549816317073,-0.083738795437942,-0.130573736052532 +6.088,-0.067910271997658,0.0204321229542156,0.0171289430455299,0.116606193255959,-0.0655455190776914,-0.0837498367375352,-0.130543172009208 +6.09,-0.0678628014992032,0.0204563705685552,0.0171048726826275,0.116558147147436,-0.0655520347774777,-0.083751423393578,-0.13051414142347 +6.092,-0.0678335813213247,0.0204689486187991,0.0170944442075887,0.116531223063641,-0.0655476923510653,-0.0837624693179244,-0.130483611454896 +6.094,-0.0677861361206239,0.020493200603524,0.0170703529868869,0.116483219637211,-0.0655541720512641,-0.0837640655238076,-0.130454618966129 +6.096,-0.0677569381304966,0.020505779137725,0.0170599120911555,0.116456325609514,-0.0655497954241404,-0.0837751133353088,-0.130424116930024 +6.098,-0.0677095145573553,0.0205300339417489,0.0170358002307087,0.116408356221261,-0.0655562514702642,-0.0837767134040011,-0.130395157969001 +6.1,-0.0676803364566489,0.0205426099069822,0.0170253482582279,0.116381488255569,-0.0655518503762374,-0.0837877609164539,-0.130364679108875 +6.102,-0.0676329325374619,0.0205668654702487,0.0170012166262844,0.116333547155176,-0.0655582924726682,-0.0837893609620291,-0.130335750568419 +6.104,-0.0676037727540708,0.0205794362642056,0.0169907546153303,0.116306702587314,-0.0655538743263824,-0.0838004067974443,-0.130305291774784 +6.106,-0.0675563878734582,0.0206036903414514,0.0169666043786785,0.116258786866764,-0.0655603089718049,-0.0838020048635019,-0.130276391994221 +6.108,-0.0675272454793726,0.020616253922723,0.0169561329730774,0.116231964311698,-0.0655558785967488,-0.0838130484483428,-0.130245951706763 +6.11,-0.0674798799449952,0.0206405042990171,0.0169319653274387,0.11618407340359,-0.0655623092568196,-0.0838146442460631,-0.130217080197206 +6.112,-0.0674507545045529,0.0206530591429604,0.0169214847950564,0.116157272508683,-0.0655578691593216,-0.0838256856488725,-0.130186658061485 +6.114,-0.0674034090643925,0.0206773037926808,0.0168973007490188,0.116109407398276,-0.0655642969479827,-0.0838272800434092,-0.130157815118434 +6.116,-0.0673743004354147,0.020689848780661,0.0168868110459467,0.116082628475862,-0.0655598479264456,-0.0838383197191413,-0.130127411546542 +6.118,-0.0673269758737685,0.0207140859518311,0.0168626112960429,0.116034790885397,-0.065566272482562,-0.0838399141448066,-0.13009859784833 +6.12,-0.0672978840264627,0.0207266202340839,0.0168521121587029,0.116008034543862,-0.0655618143352374,-0.0838509526671316,-0.130068213592112 +6.122,-0.067250580874293,0.0207508484846495,0.01682789703598,0.115960226232862,-0.0655682346737243,-0.0838525485950353,-0.130039429867307 +6.124,-0.0672215057499004,0.0207633713614792,0.0168173880691204,0.115933493067886,-0.065563766840987,-0.0838635864280864,-0.130009065682176 +6.126,-0.0671742241351042,0.02078758955585,0.0167931575498114,0.115885715351325,-0.065570182017214,-0.0838651849735733,-0.129980312484023 +6.128,-0.0671451655623924,0.0208001003944279,0.0167826382988458,0.115859005740291,-0.0655657040521105,-0.0838762223177406,-0.129949968916154 +6.13,-0.0670979051832192,0.0208243076774357,0.0167583920570296,0.115811259244977,-0.0655721135730287,-0.083877824020091,-0.129921246513117 +6.132,-0.0670688628497405,0.02083680587088,0.0167478620571838,0.115784573250146,-0.0655676254051459,-0.083888860741641,-0.129890923810229 +6.134,-0.0670216230429526,0.0208610016286286,0.0167235995427775,0.115736857885276,-0.065574029386703,-0.0838904655104274,-0.129862232175307 +6.136,-0.0669925965113322,0.020873486590278,0.0167130583474081,0.115710195252387,-0.0655695313939768,-0.0839015011485096,-0.129831930296534 +6.138,-0.0669453763758695,0.0208976704066421,0.0166887788728202,0.115662510335331,-0.0655759305156769,-0.0839031083417569,-0.129803269165512 +6.14,-0.0669163651287683,0.0209101415875935,0.0166782260661153,0.115635870559555,-0.0655714234527677,-0.0839141421741502,-0.129772987854976 +6.142,-0.0668691636687054,0.0209343132009554,0.016653928890096,0.115588215028441,-0.0655778187828292,-0.0839157507605079,-0.12974435681967 +6.144,-0.0668401671662598,0.0209467701169251,0.0166433640913194,0.115561597456322,-0.0655733036271259,-0.0839267819044763,-0.129714095707152 +6.146,-0.0667929834233089,0.0209709293801233,0.0166190484918934,0.115513970104837,-0.065579696394634,-0.0839283906600037,-0.129685494313943 +6.148,-0.0667640011589455,0.020983371636084,0.0166084713570707,0.115487374043326,-0.0655751741684013,-0.0839394181845468,-0.129655253012662 +6.15,-0.06671683431527,0.021007518480827,0.0165841366892436,0.115439773728492,-0.0655815655454911,-0.0839410258824901,-0.129626680844866 +6.152,-0.0666878658601669,0.0210199457857295,0.0165735469141755,0.115413198539446,-0.0655770371592239,-0.0839520489122082,-0.129596459026571 +6.154,-0.0666407153023962,0.0210440801921501,0.0165491926506242,0.11536562433226,-0.0655834280954101,-0.0839536544765228,-0.129567915759115 +6.156,-0.0666117603334391,0.0210564923606158,0.0165385899765345,0.115339069499583,-0.065578894239639,-0.0839646722732889,-0.129537713197631 +6.158,-0.0665646256775636,0.0210806143322817,0.0165142157314298,0.115291520767293,-0.0655852853676615,-0.0839662748804652,-0.129509198621411 +6.16,-0.0665356839878082,0.0210930112739998,0.0165035999525019,0.115264985932224,-0.0655807464627423,-0.083977286895592,-0.12947901520491 +6.162,-0.0664885650707507,0.0211171208186375,0.016479205489803,0.115217462356175,-0.0655871380759034,-0.0839788860216568,-0.129450529224895 +6.164,-0.0664596365645013,0.0211295025188678,0.0164685764605678,0.115190947322947,-0.0655825942752506,-0.0839898919172038,-0.129420364943441 +6.166,-0.0664125334115127,0.021153599634944,0.016444161688883,0.115143448865744,-0.0655889863626388,-0.0839914873360113,-0.12939190755833 +6.168,-0.0663836180879617,0.0211659661307165,0.016433519329085,0.115116953584027,-0.0655844375958536,-0.0840024869784299,-0.1293617624762 +6.17,-0.0663365308659508,0.0211900507998386,0.0164090842856727,0.115069480424334,-0.0655908299149564,-0.0840040787229842,-0.12933333374861 +6.172,-0.0663076287960097,0.021202402156387,0.0163984285806743,0.115043004956811,-0.065586275953619,-0.0840150721552797,-0.129303207971093 +6.174,-0.0662605577620298,0.0212264743411288,0.0163739734074547,0.114995557410099,-0.0655926681187443,-0.0840166604560389,-0.12927480799625 +6.176,-0.0662316690627593,0.0212388106320941,0.0163633044032116,0.114969101893478,-0.065588108648251,-0.0840276478559894,-0.12924470163883 +6.178,-0.066184614514962,0.0212628702785093,0.016338829317803,0.114921680334009,-0.0655945002164544,-0.0840292330695642,-0.129216330517655 +6.18,-0.0661557393251622,0.0212751915720113,0.0163281471105579,0.114895244940379,-0.065589934900817,-0.0840402147015643,-0.129186243682664 +6.182,-0.0661087015611799,0.0212992386156687,0.0163036523753896,0.114847849735116,-0.0655963254425649,-0.0840417972409508,-0.1291579015025 +6.184,-0.0660798400206529,0.0213115449668274,0.016292957097279,0.114821434638595,-0.0655917539739611,-0.0840527734081595,-0.12912783426539 +6.186,-0.0660328193060845,0.0213355793409812,0.0162684429896439,0.114774066098809,-0.0655981431219932,-0.0840543536824528,-0.129099521089252 +6.188,-0.0660039715399311,0.021347870790222,0.0162577347920982,0.114747671450243,-0.0655935652517776,-0.0840653246844127,-0.129069473494155 +6.19,-0.0659569680877403,0.0213718924345944,0.0162332015776823,0.11470032980236,-0.0655999527270945,-0.0840669030526847,-0.129041189357605 +6.192,-0.0659281341961065,0.0213841690102381,0.0162224806147906,0.114673955712971,-0.0655953682789939,-0.0840778691518503,-0.129011161420148 +6.194,-0.065881148156309,0.0214081778789813,0.0161979285266588,0.114626641087023,-0.0656017538968882,-0.0840794458929321,-0.128982906333765 +6.196,-0.0658523282092975,0.0214204396022675,0.0161871949405492,0.11460028762054,-0.0655971627658135,-0.0840904072918734,-0.12895289804838 +6.198,-0.0658053596674475,0.021444435669964,0.0161626241648578,0.114553000052718,-0.0656035464271809,-0.0840919825895385,-0.128924672003523 +6.2,-0.0657765537043772,0.0214566825607242,0.0161518780746595,0.114526667224546,-0.0655989485683535,-0.0841029394190526,-0.128894683352409 +6.202,-0.0657296026869242,0.0214806658256526,0.0161272887436153,0.114479406669634,-0.0656053302421674,-0.0841045133605634,-0.128866486328103 +6.204,-0.0657008107189482,0.0214928979072001,0.0161165302389318,0.114453094451325,-0.0656007256553421,-0.0841154656778017,-0.128836517289594 +6.206,-0.0656538772033428,0.0215168683915691,0.0160919224307027,0.114405860800765,-0.0656071053576796,-0.0841170382628842,-0.128808349258904 +6.208,-0.0656250992183253,0.0215290856939002,0.0160811515697873,0.11437956912791,-0.0656024940704898,-0.0841279860577342,-0.128778399813743 +6.21,-0.0655781831459032,0.021553043441215,0.0160565253144029,0.114332362230021,-0.0656088718442778,-0.0841295572147715,-0.128750260748662 +6.212,-0.0655494191145322,0.0215652460021634,0.0160457421265726,0.114306091011879,-0.0656042538975513,-0.0841405004222491,-0.128720330883575 +6.214,-0.0655025204043797,0.0215891910722539,0.0160210974163245,0.114258910691494,-0.0656106297956839,-0.0841420700285322,-0.128692220758076 +6.216,-0.0654737702866411,0.0216013789367042,0.0160103019076629,0.114232659821028,-0.0656060052322907,-0.0841530085447922,-0.128662310466711 +6.218,-0.0654268888489453,0.0216253113992197,0.0159856387102051,0.114185505896719,-0.0656123793053546,-0.0841545764480001,-0.128634229258056 +6.22,-0.0653981526002385,0.0216374846168308,0.0159748308713009,0.114159275259962,-0.0656077481630637,-0.0841655101476144,-0.128604338539875 +6.222,-0.0653512883479737,0.0216614045441261,0.0159501491435907,0.114112147557844,-0.065614120451799,-0.0841670761862007,-0.128576286228596 +6.224,-0.0653225659243563,0.0216735631661841,0.0159393289580003,0.11408593704191,-0.0656094827598041,-0.08417800493868,-0.128546415086518 +6.226,-0.065275718782477,0.0216974706265005,0.0159146286593655,0.114038835405542,-0.0656158532916652,-0.0841795689593814,-0.128518391655581 +6.228,-0.0652470101446958,0.0217096147025521,0.0159037961115962,0.11401264490483,-0.0656112090699845,-0.0841904926433156,-0.128488540093185 +6.23,-0.0652001800563875,0.0217335097542682,0.0158790772145539,0.113965569201247,-0.0656175778588332,-0.0841920545146113,-0.128460545526838 +6.232,-0.0651714851725398,0.0217456393291032,0.0158682322966304,0.113939398621662,-0.0656129271196263,-0.0842029730283309,-0.128430713545826 +6.234,-0.0651246721023798,0.0217695220166016,0.0158434947945274,0.113892348743819,-0.0656192941674829,-0.0842045326492204,-0.128402747828483 +6.236,-0.0650959909491869,0.0217816371279876,0.0158326375105366,0.113866198004974,-0.0656146369173817,-0.084215445917413,-0.128372935426817 +6.238,-0.065049194883395,0.0218055074794259,0.0158078814215884,0.113819173871123,-0.0656210022173076,-0.0842170032214256,-0.12834499854223 +6.24,-0.0650205274462172,0.0218176081568199,0.015797011789962,0.113793042906709,-0.0656163384600452,-0.0842279111976408,-0.128315205713177 +6.242,-0.0649737483904138,0.0218414661838326,0.0157722371577415,0.113746044457304,-0.0656227019994335,-0.0842294661524287,-0.128287297643964 +6.244,-0.064945094662215,0.0218535524481042,0.0157613552113558,0.113719933213885,-0.0656180317382885,-0.0842403688178747,-0.12825752437601 +6.246,-0.0648983326373106,0.0218773981472195,0.0157365621022031,0.113672960406752,-0.0656243935020681,-0.0842419214211229,-0.128229645103526 +6.248,-0.0648696926168701,0.0218894700112811,0.0157256678866437,0.113646868841357,-0.0656197167418529,-0.0842528187804466,-0.128199891381009 +6.25,-0.0648229476537949,0.0219133033666705,0.0157008563847523,0.113599921645816,-0.0656260767153083,-0.0842543690530837,-0.128172040885464 +6.252,-0.0647943213434773,0.0219253608367987,0.0156899499552541,0.113573849722757,-0.0656213934638006,-0.0842652611280841,-0.128142306689666 +6.254,-0.0647475934775155,0.0219491818238791,0.015665120156355,0.113526928113453,-0.0656277516348666,-0.0842668091059064,-0.128114484950395 +6.256,-0.0647189808809211,0.0219612249014731,0.0156542015740063,0.113500875800793,-0.0656230619036993,-0.0842776959281922,-0.128084770260838 +6.258,-0.0646722701463259,0.0219850334908322,0.0156293535786054,0.113453979751841,-0.0656294182646477,-0.0842792416530297,-0.128056977256592 +6.26,-0.0646436712661137,0.0219970621743329,0.0156184229064023,0.113427947017963,-0.0656247220697164,-0.0842901232566138,-0.128027282052304 +6.262,-0.0645969776915834,0.022020858335514,0.0155935568134238,0.113381076497988,-0.0656310766182483,-0.0842916667680706,-0.127999517761528 +6.264,-0.064568392527679,0.0220328726222532,0.0155826141126681,0.113355063308583,-0.0656263739797271,-0.0843025431827393,-0.1279698420221 +6.266,-0.0645217161330848,0.0220566563269918,0.0155577300141975,0.113308218277025,-0.0656327267194636,-0.0843040845113249,-0.127942106423119 +6.268,-0.0644931446814387,0.0220686562147779,0.0155467753416222,0.113282224592798,-0.0656280176615019,-0.0843149557574243,-0.127912450129461 +6.27,-0.0644464854760112,0.0220924274394347,0.0155218733191925,0.113235404997731,-0.0656343686019349,-0.0843164949196611,-0.1278847432006 +6.272,-0.0644179277279701,0.0221044129277622,0.0155109067250351,0.113209430772976,-0.0656296531521182,-0.084327361004695,-0.127855106335364 +6.274,-0.0643712857099475,0.022128171654797,0.0154859868476676,0.113162636550472,-0.0656360023080557,-0.0843288980004637,-0.127827428054989 +6.276,-0.0643427416522335,0.0221401427456139,0.0154750083747777,0.113136681732559,-0.0656312804966798,-0.0843397589176192,-0.127797810602683 +6.278,-0.0642961168098107,0.0221638889641121,0.0154500706987321,0.113089912807468,-0.0656376278872955,-0.0843412937297356,-0.127770160949211 +6.28,-0.0642675864250233,0.0221758456621599,0.0154390803826448,0.113063977337193,-0.0656328997465296,-0.0843521494582386,-0.127740562896057 +6.282,-0.0642209787383189,0.0221995793674934,0.0154141249526647,0.113017233625091,-0.0656392453941068,-0.08435368205401,-0.127712941847941 +6.284,-0.0641924620058368,0.0222115216802572,0.0154031228224919,0.112991317437726,-0.0656345109570949,-0.0843645325610028,-0.127683363181564 +6.286,-0.0641458714494994,0.0222352428730739,0.0153781496741674,0.112944598847646,-0.065640854885609,-0.0843660628953102,-0.127655770717288 +6.288,-0.064117368346628,0.0222471708104333,0.0153671357540709,0.112918701874491,-0.0656361141855882,-0.0843769081388266,-0.127626211426315 +6.29,-0.064070794892696,0.022270879495199,0.0153421449168829,0.112872008312047,-0.0656424564192664,-0.08437843615817,-0.127598647524397 +6.292,-0.0640423053958879,0.0222827930688722,0.015331119227872,0.11284613048223,-0.0656377094887588,-0.0843892760907078,-0.127569107598019 +6.294,-0.063995749016541,0.022306489252209,0.0153061107284644,0.112799461852717,-0.065644050050762,-0.0843908017376342,-0.127541572237041 +6.296,-0.06396727310255,0.0223183884750962,0.0152950732902649,0.112773603095018,-0.0656392969209126,-0.0844016363098379,-0.127512051664628 +6.298,-0.063920733772447,0.0223420721641437,0.0152700471555364,0.112726959306155,-0.0656456358322535,-0.0844031595271836,-0.12748454482326 +6.3,-0.0638922714192864,0.0223539570496583,0.0152589979883063,0.11270111955063,-0.0656408765323527,-0.0844139886912064,-0.127455043594032 +6.302,-0.063845749117283,0.0223776282506438,0.0152339542479957,0.112654500514664,-0.0656472138111455,-0.0844155094257041,-0.127427565251074 +6.304,-0.0638173003049159,0.0223894988121144,0.0152228933737208,0.112628679693925,-0.0656424483683728,-0.0844263331379136,-0.127398083353872 +6.306,-0.0637707950150604,0.0224131575292652,0.0151978320622696,0.112582085328963,-0.0656487840294584,-0.0844278513428492,-0.127370633488276 +6.308,-0.0637423597257737,0.0224250137794591,0.0151867595057303,0.112556283379004,-0.0656440124688493,-0.0844386695656645,-0.127341170911425 +6.31,-0.0636958714375711,0.0224486600143298,0.015161680663321,0.112509713609516,-0.0656503465237935,-0.0844401852024139,-0.127313749502315 +6.312,-0.0636674496560451,0.0224605019651351,0.0151505964525897,0.112483930470058,-0.0656455688684137,-0.0844509979051981,-0.127284306233581 +6.314,-0.0636209783640693,0.0224841357163579,0.0151255001253724,0.112437385226603,-0.0656519013258382,-0.0844525109436277,-0.127256913260238 +6.316,-0.0635925700771786,0.0224959633786282,0.015114404291862,0.112411620840999,-0.0656471175971234,-0.0844633181026781,-0.127227489286859 +6.318,-0.0635461157801824,0.0225195846420577,0.0150892905314638,0.112365100059343,-0.0656534484633003,-0.0844648285205472,-0.127200124728713 +6.32,-0.0635177209765866,0.0225313980256165,0.0150781831095878,0.112339354374089,-0.0656486586815102,-0.0844756301183079,-0.127170720037492 +6.322,-0.0634712836762834,0.0225550067947761,0.0150530519720834,0.112292857993873,-0.0656549879611065,-0.0844771378998687,-0.127143383874076 +6.324,-0.0634429023459009,0.0225668059085453,0.0150419329986357,0.112267130957878,-0.0656501921458278,-0.0844879339235898,-0.127113998451509 +6.326,-0.0633964820456091,0.0225904021752941,0.015016784543166,0.112220658921071,-0.0656565198427173,-0.0844894390576784,-0.127086690662429 +6.328,-0.0633681141790289,0.0226021870275237,0.0150056540565232,0.112194950484761,-0.0656517180133591,-0.0845002294977332,-0.12705732449485 +6.33,-0.0633217108823642,0.0226257707828151,0.0149804883437923,0.112148502734106,-0.0656580441313828,-0.0845017319756368,-0.127030045059743 +6.332,-0.0632933564702979,0.0226375413813568,0.0149693463830691,0.112122812848529,-0.0656532363076043,-0.0845125168237684,-0.127000698133468 +6.334,-0.0632469701800452,0.0226611126160018,0.0149441634738939,0.112076389326153,-0.0656595608512168,-0.0845140166371515,-0.126973447031971 +6.336,-0.0632186292128569,0.0226728689686036,0.0149330100781447,0.112050717942158,-0.0656547470532567,-0.0845247958848322,-0.126944119333427 +6.338,-0.0631722599301326,0.0226964276739375,0.0149078100322266,0.112004318588493,-0.0656610700279884,-0.0845262930239469,-0.126916896545156 +6.34,-0.0631439323974961,0.0227081697885071,0.0148966452397838,0.111978665656082,-0.0656562502768646,-0.0845370666610414,-0.12688758806098 +6.342,-0.0630975801212469,0.0227317159569092,0.0148714281147996,0.111932290409166,-0.0656625716895852,-0.0845385611133852,-0.126860393565517 +6.344,-0.0630692660119473,0.0227434438417357,0.0148602519627947,0.111906655877054,-0.0656577460071726,-0.0845493291272039,-0.126831104282629 +6.346,-0.0630229307387919,0.0227669774669522,0.0148350178138683,0.111860304672231,-0.0656640658661448,-0.0845508208767059,-0.126803938059527 +6.348,-0.0629946300406756,0.0227786911308507,0.0148238303379716,0.111834688487654,-0.065659234275127,-0.0845615832515206,-0.126774667965157 +6.35,-0.062948311765048,0.0228022122081252,0.014798579217518,0.111788361257655,-0.065665552589888,-0.0845630722782744,-0.126747529993946 +6.352,-0.0629200244650911,0.0228139116605127,0.0147873804518792,0.111762763366377,-0.0656607151136205,-0.0845738289952505,-0.126718279075629 +6.354,-0.0628737231796322,0.022837420186528,0.014762112409792,0.111716460041711,-0.0656670318947194,-0.084575315275736,-0.126691169335831 +6.356,-0.0628454492641172,0.0228491054374217,0.0147509023871709,0.111690880388238,-0.0656621885570259,-0.084586066313259,-0.12666193758138 +6.358,-0.0627991649602121,0.0228726014100969,0.0147256174712643,0.111644600897789,-0.0656685038156821,-0.0845875498209507,-0.126634856052527 +6.36,-0.0627709044149571,0.0228842724700521,0.0147143962232943,0.11161903942569,-0.0656636546406235,-0.0845982951552123,-0.126605643449972 +6.362,-0.0627246370833541,0.0229077558882328,0.0146890944799221,0.111572783697444,-0.0656699683883511,-0.0845997758614589,-0.126578590111619 +6.364,-0.0626963898939739,0.0229194127682324,0.0146778620374648,0.111547240349771,-0.0656651133999967,-0.0846105154672318,-0.126549396649138 +6.366,-0.0626501395253775,0.0229428836313257,0.0146525435122096,0.111501008311538,-0.0656714256482422,-0.0846119933422416,-0.126522371480867 +6.368,-0.0626219056775336,0.0229545263426425,0.0146412999057418,0.111475483031241,-0.065666564870471,-0.0846227271936976,-0.126493197146719 +6.37,-0.0625756722631246,0.0229779846502572,0.0146159646440839,0.111429274611311,-0.0656728756303201,-0.0846242022075155,-0.12646620012815 +6.372,-0.0625474517427347,0.022989613204308,0.0146047099040652,0.111403767341622,-0.0656680090866719,-0.084634930278999,-0.126437044910598 +6.374,-0.062501235274564,0.0230130589559214,0.0145793579519667,0.111357582469292,-0.0656743183686273,-0.0846364024023721,-0.126410076021386 +6.376,-0.062473028067961,0.023024673364128,0.0145680921091553,0.111332093154045,-0.0656694460822101,-0.0846471246690483,-0.126380939908638 +6.378,-0.062426828539182,0.02304810655883,0.0145427235134934,0.11128593175995,-0.0656757538960731,-0.0846485938740703,-0.126353999128462 +6.38,-0.0623986346332062,0.0230597068325075,0.0145314465991753,0.111260460343784,-0.0656708758895375,-0.0846593103123849,-0.126324882108637 +6.382,-0.0623524520381578,0.02308312746883,0.0145060614080058,0.111214322360058,-0.0656771822443841,-0.08466077657291,-0.126297969417196 +6.384,-0.0623242714201815,0.0230947136191058,0.0144947734541268,0.111188868788525,-0.0656722985399484,-0.0846714871608435,-0.126268871478292 +6.386,-0.0622781057543302,0.0231181216949445,0.0144693717167757,0.111142754148776,-0.0656786034441861,-0.0846729504526378,-0.126241986855293 +6.388,-0.0622499384122261,0.0231296937327102,0.0144580727559795,0.111117318368339,-0.065673714063702,-0.0846836551697533,-0.126212907985182 +6.39,-0.0622037896719912,0.0231530892453401,0.0144326545229698,0.111071227007478,-0.0656800175251965,-0.0846851154704122,-0.126186051410329 +6.392,-0.0621756355940558,0.0231646471812473,0.0144213445885452,0.111045808965424,-0.0656751224902525,-0.084695814297727,-0.126156991596775 +6.394,-0.0621295037765652,0.0231880301274028,0.0143959099114046,0.110999740819392,-0.0656814245164851,-0.0846972715864062,-0.126130163049762 +6.396,-0.0621013629514127,0.0231995739718846,0.0143845890371693,0.110974340463676,-0.0656765238485132,-0.0847079645061193,-0.126101122280435 +6.398,-0.0620552480542219,0.0232229443479003,0.0143591379681489,0.110928295469112,-0.0656828244467626,-0.0847094187631368,-0.126074321740946 +6.4,-0.0620271204706662,0.0232344741112208,0.0143478061882877,0.110902912748173,-0.0656779181671501,-0.0847201057582781,-0.126045300003467 +6.402,-0.0619810224914819,0.0232578319131951,0.0143223387800447,0.110856890842074,-0.0656842173446572,-0.0847215569646512,-0.126018527451168 +6.404,-0.0619529081384192,0.0232693476055106,0.0143109961289306,0.110831525704631,-0.0656793054748364,-0.0847322380186938,-0.125989524733137 +6.406,-0.0619068270748589,0.0232926928294766,0.0142855124342142,0.110785526824038,-0.0656856032389485,-0.0847336861556759,-0.125962780147686 +6.408,-0.0618787259411724,0.0233041944609076,0.0142741589462344,0.11076017921891,-0.0656806858004725,-0.0847443612521681,-0.125933796436725 +6.41,-0.0618326617905781,0.0233275271029893,0.01424865901761,0.110714203300664,-0.0656869821587457,-0.0847458063008402,-0.125907079797771 +6.412,-0.0618045738650625,0.0233390146836833,0.0142372947270162,0.11068887317662,-0.0656820591733266,-0.0847564754230951,-0.125878115081552 +6.414,-0.0617585266243877,0.0233623347402217,0.0142117786166547,0.110642920157187,-0.0656883541335852,-0.0847579173640403,-0.125851426368747 +6.416,-0.0617304518957035,0.0233738082804111,0.0142004035574507,0.110617607462837,-0.0656834256231109,-0.0847685804949053,-0.125822480635015 +6.418,-0.0616844215614705,0.0233971157480466,0.0141748713169975,0.110571677278234,-0.0656897191934586,-0.084770019308011,-0.125795819828016 +6.42,-0.061656360018133,0.0234085752580878,0.0141634855228731,0.110546381961977,-0.0656847851799793,-0.0847806764297377,-0.125766893064607 +6.422,-0.0616103465864536,0.0234318701338047,0.0141379372033962,0.110500474547769,-0.0656910773687772,-0.084782112094105,-0.125740260143087 +6.424,-0.0615822982168415,0.0234433156242044,0.0141265407077029,0.110475196557786,-0.0656861378744753,-0.0847927631883126,-0.125711352337928 +6.426,-0.0615363016834952,0.0234665979053276,0.0141009763597198,0.110429311849163,-0.0656924286902822,-0.0847941956822859,-0.125684747281579 +6.428,-0.0615082664758888,0.0234780293867456,0.0140895691954935,0.110404051133459,-0.0656874837374241,-0.0848048407300206,-0.125655858422687 +6.43,-0.0614622868364284,0.0235012990709093,0.0140639888690517,0.110358189065351,-0.0656937731889255,-0.0848062700312966,-0.125629281211223 +6.432,-0.0614342647790518,0.023512716554152,0.0140525710690595,0.110332945571819,-0.0656888227998117,-0.0848169090131436,-0.125600411286694 +6.434,-0.0613883020289342,0.0235359736392326,0.0140269748138675,0.110287106079053,-0.0656951108957306,-0.0848183350989616,-0.125573861899849 +6.436,-0.0613602931100154,0.02354737713523,0.0140155464106857,0.110261879755564,-0.0656901550926426,-0.0848289679952128,-0.12554501089784 +6.438,-0.0613143472447253,0.0235706216192771,0.013989934276253,0.11021606277302,-0.0656964418416672,-0.0848303908425603,-0.125518489315371 +6.44,-0.0612863514525419,0.0235820111390555,0.013978495302345,0.11019085356751,-0.0656914806468234,-0.0848410176333902,-0.12548965722408 +6.442,-0.0612404224677071,0.0236052430202071,0.0139528673381338,0.110145059030272,-0.0656977660575339,-0.084842437219229,-0.125463163425762 +6.444,-0.0612124397906366,0.0236166185748552,0.0139414178259345,0.110119866890836,-0.0656927994930547,-0.0848530578848724,-0.125434350233415 +6.446,-0.0611665276821101,0.0236398378512676,0.0139157740814849,0.110074094734305,-0.0656990835738745,-0.0848544741863287,-0.125407884199033 +6.448,-0.0611385581086605,0.0236511994519072,0.0139043140634692,0.110048919609262,-0.0656941116617616,-0.0848650887072284,-0.125379089893863 +6.45,-0.0610926628725791,0.0236744061216929,0.0138786545885038,0.110003169769245,-0.0657003944209275,-0.0848665017017524,-0.125352651603215 +6.452,-0.0610647063914128,0.0236857537794504,0.0138671840972427,0.109978011607195,-0.065695417183054,-0.0848771100586729,-0.12532387617345 +6.454,-0.0610188280242141,0.0237089478406384,0.0138415089417284,0.109932284019937,-0.0657016986286079,-0.0848785197241357,-0.125297465606334 +6.456,-0.0609908846241525,0.0237202815666261,0.0138300280099205,0.109907142769783,-0.0656967160867233,-0.0848891218982271,-0.12526870904019 +6.458,-0.0609450231225696,0.023743463017139,0.0138043372240968,0.10986143737198,-0.0657029962265214,-0.084890528212974,-0.125242326176409 +6.46,-0.0609170927925897,0.0237547828224437,0.0137928458845812,0.109836312982938,-0.0656980084022664,-0.0849011241857959,-0.125213588462089 +6.462,-0.0608712481536149,0.023777951660096,0.0137671395189527,0.109790629711695,-0.0657042872440022,-0.0849025271286326,-0.125187233281437 +6.464,-0.0608433308828334,0.0237892575557737,0.0137556378047028,0.109765522133275,-0.0656992941589264,-0.0849131168821308,-0.125158514407129 +6.466,-0.0607975031036713,0.0238124137782884,0.0137299159100004,0.109719860926062,-0.0657055717101685,-0.0849145164322794,-0.125132186889401 +6.468,-0.0607695988813218,0.0238237057753699,0.0137184038540997,0.109694770108033,-0.0657005733857564,-0.0849250999487331,-0.125103486843285 +6.47,-0.0607237879593286,0.0238468493804043,0.0136926664812265,0.109649130902607,-0.0657068496539828,-0.0849264960857449,-0.12507718696827 +6.472,-0.060695896774741,0.023858127489904,0.0136811441168374,0.109624056794967,-0.0657018461116776,-0.0849370733476951,-0.125048505738526 +6.474,-0.0606501027073656,0.0238812584750859,0.0136553913167985,0.109578439529297,-0.0657081211043153,-0.0849384660513529,-0.125022233486012 +6.476,-0.0606222245499347,0.0238925227080145,0.0136438586771234,0.109553382082215,-0.0657031123655372,-0.0849490370415122,-0.124993571060826 +6.478,-0.0605764473346692,0.0239156410709783,0.013618090500961,0.10950778669442,-0.0657093860899941,-0.0849504262917293,-0.1249673264106 +6.48,-0.0605485821938411,0.0239268914383597,0.0136065476192044,0.109482745858207,-0.0657043721761609,-0.0849609909929047,-0.124938682778177 +6.482,-0.0605028218281758,0.0239499971767815,0.0135807641179339,0.109437172286488,-0.0657106446398484,-0.0849623767696262,-0.124912465710028 +6.484,-0.0604749696934256,0.0239612336896658,0.0135692110272694,0.109412148011554,-0.0657056255723831,-0.0849729351646447,-0.124883840858597 +6.486,-0.0604292261748272,0.0239843268012925,0.0135434122518337,0.109366596194162,-0.0657118967827339,-0.0849743174477789,-0.124857651352321 +6.488,-0.0604013870356527,0.0239955494707689,0.0135318489853783,0.109341588430993,-0.0657068725830689,-0.0849848695194322,-0.124829045270142 +6.49,-0.0603556603615482,0.0240186299534384,0.0135060349866132,0.109296058306201,-0.0657131425475406,-0.0849862482887911,-0.12480288330554 +6.492,-0.0603278342074641,0.0240298387906467,0.0134944615774103,0.109271067005346,-0.0657081132371192,-0.0849967940198041,-0.12477429598091 +6.494,-0.0602821243752465,0.0240529066422984,0.0134686324060326,0.109225558511446,-0.0657143819631899,-0.0849981692550852,-0.124748161537794 +6.496,-0.060254311195786,0.0240641016584321,0.0134570488870458,0.109200583623512,-0.0657093475634572,-0.0850087086281023,-0.124719592959046 +6.498,-0.0602086182028277,0.0240871568771093,0.0134312045936537,0.109155096698831,-0.0657156150586167,-0.085010080308885,-0.124693486017238 +6.5,-0.0601808179875485,0.0240983380834205,0.0134196109977686,0.109130138174482,-0.065710575591013,-0.0850206133064747,-0.12466493617274 +6.502,-0.0601351418312238,0.0241213806672628,0.0133937516328594,0.109084672757406,-0.0657168418627459,-0.0850219814122462,-0.124638856712074 +6.504,-0.0601073545697192,0.0241325480750574,0.0133821479928944,0.109059730547392,-0.0657117973486938,-0.0850325080169315,-0.124610325590229 +6.506,-0.0600616952474273,0.0241555780222902,0.0133562736068868,0.109014286576389,-0.0657180624044631,-0.0850338725271165,-0.124584273590549 +6.508,-0.0600339209293334,0.024166731642927,0.0133446599556059,0.108989360631548,-0.0657130128653583,-0.0850443927213995,-0.12455576117979 +6.51,-0.0599882784385284,0.0241897489518433,0.0133187705988734,0.108943938045211,-0.0657192767125872,-0.0850457536154117,-0.124529736620947 +6.512,-0.0599605170535391,0.0242008887967241,0.013307146969006,0.108919028316501,-0.0657142221697868,-0.0850562673818216,-0.124501242909733 +6.514,-0.0599148913917515,0.02422389346567,0.0132812426919061,0.108873627053578,-0.0657204848158457,-0.0850576246391094,-0.124475245771591 +6.516,-0.0598871429296238,0.0242350195462355,0.0132696091161617,0.108848733492085,-0.065715425290662,-0.0850681319602334,-0.124446770748399 +6.518,-0.0598415340944785,0.02425801157359,0.0132436899690656,0.108803353491503,-0.0657216867428531,-0.0850694855603233,-0.124420801010825 +6.52,-0.0598137985450428,0.0242691239013111,0.0132320464801518,0.108778476048468,-0.0657166222565481,-0.0850799864188467,-0.124392344664152 +6.522,-0.0597682065342718,0.0242921032854756,0.0132061125134659,0.108733117249353,-0.0657228825221018,-0.0850813363413799,-0.124366402307016 +6.524,-0.0597404838874328,0.0243032018718473,0.0131944591440988,0.108708255876175,-0.065717813095884,-0.0850918307201057,-0.124337964625371 +6.526,-0.0596949086988798,0.0243261686112343,0.0131685104082804,0.108662918217864,-0.0657240721819547,-0.0850931769448624,-0.124312049628547 +6.528,-0.0596671989446221,0.024337253467771,0.0131568471911933,0.108638072866113,-0.0657189978369809,-0.0851036648267365,-0.12428363060045 +6.53,-0.0596216405762401,0.024360207560798,0.0131308837367577,0.108592756288155,-0.0657252557506477,-0.085105007333649,-0.124257742943812 +6.532,-0.0595939437046239,0.024371278699031,0.013119210704704,0.108567926909568,-0.0657201765080251,-0.0851154887017563,-0.124229342557793 +6.534,-0.0595484021544702,0.0243942201441211,0.0130932325822233,0.108522631351717,-0.065726433256299,-0.0851168274709109,-0.12420348222122 +6.536,-0.0595207181556296,0.024405277575597,0.0130815497679759,0.108497817898202,-0.0657213491370895,-0.0851273023084809,-0.12417510046582 +6.538,-0.0594751934218529,0.0244282063711789,0.0130555570280726,0.108452543300404,-0.0657276047269173,-0.0851286373201017,-0.124149267429184 +6.54,-0.0594475222859907,0.0244392501074594,0.0130438644644196,0.108427745724025,-0.0657225157521414,-0.0851391056104929,-0.124120904292953 +6.542,-0.0594020143668212,0.0244621662519758,0.0130178571577542,0.108382492026409,-0.0657287701904169,-0.0851404368449337,-0.124095098536131 +6.544,-0.0593743560842032,0.0244731963046413,0.0130061548774913,0.108357710279381,-0.065723676381061,-0.0851508985716184,-0.124066754007633 +6.546,-0.0593288649779387,0.0244960997965527,0.0129801330547498,0.108312477422237,-0.0657299296746303,-0.0851522260093374,-0.124040975510502 +6.548,-0.0593012195388909,0.024507116177203,0.0129684210906745,0.108287711456921,-0.0657248310516491,-0.0851626811558853,-0.124012649578315 +6.55,-0.0592557452438843,0.0245300070149998,0.0129423848025505,0.108242499380685,-0.0657310832073214,-0.0851640047774193,-0.123986898320754 +6.552,-0.0592281126387837,0.024541009735259,0.0129306631874509,0.108217749149569,-0.065725979791643,-0.0851744533274768,-0.123958590973471 +6.554,-0.0591826551534368,0.024563887917466,0.0129046124846355,0.108172557794813,-0.0657322308161929,-0.0851757731134252,-0.12393286693536 +6.556,-0.0591550353727124,0.0245748769889852,0.0128928812512848,0.10814782325051,-0.0657271226287213,-0.0851862150507,-0.123904578161597 +6.558,-0.0591095946954672,0.0245977425141688,0.0128668161844541,0.108102652557927,-0.0657333725288936,-0.0851875309817032,-0.123878881322818 +6.56,-0.059081987729595,0.0246087179486291,0.0128550753656048,0.108077933653167,-0.0657282595905098,-0.0851979662899518,-0.123850611111208 +6.562,-0.0590365638589317,0.0246315708154029,0.0128289959854123,0.108032783563571,-0.0657345083730215,-0.0851992783466809,-0.123824941451651 +6.564,-0.0590089696984337,0.0246425326245167,0.0128172456137915,0.108008080251198,-0.065729390704582,-0.0852097070096989,-0.123796689790847 +6.566,-0.0589635626328709,0.0246653728315438,0.0127911519708647,0.107962950705513,-0.0657356383761217,-0.0852110151728465,-0.123771047290402 +6.568,-0.0589359812683158,0.0246763210270578,0.0127793920791725,0.107938262938483,-0.0657305159984599,-0.0852214371744663,-0.123742814169083 +6.57,-0.0588905910064121,0.0246991485730504,0.0127532842241128,0.107893153877758,-0.0657367625656845,-0.0852227414247501,-0.123717198807646 +6.572,-0.0588630224284161,0.0247100831667447,0.012741514845023,0.107868481609137,-0.0657316354996061,-0.0852331567488396,-0.123688984214508 +6.574,-0.0588176489687751,0.0247328980504649,0.012715392828408,0.107823392974538,-0.06573788096914,-0.0852344570670008,-0.12366339597198 +6.576,-0.0587900931680033,0.0247438190541538,0.0127036139945689,0.107798736157508,-0.0657327492354232,-0.0852448656974703,-0.123635199895742 +6.578,-0.0587447365092792,0.0247666212744102,0.0126774778669578,0.107753667890332,-0.0657389936138537,-0.0852461620642838,-0.123609638752031 +6.58,-0.0587171934764472,0.0247775286999404,0.0126656896109958,0.107729026478194,-0.065733857233245,-0.0852565639850906,-0.123581461181431 +6.582,-0.0586718536173482,0.0248003182555834,0.0126395394229358,0.107683978519873,-0.0657401005271163,-0.0852578563813752,-0.123555927116444 +6.584,-0.0586443233432258,0.0248112121148336,0.0126277417774593,0.107659352466049,-0.0657349595203297,-0.0852682515765332,-0.123527768040241 +6.586,-0.0585990002825195,0.0248339890047538,0.0126015775794913,0.107614324758155,-0.0657412017361432,-0.0852695399831584,-0.12350226103389 +6.588,-0.0585714827579304,0.0248448693096319,0.0125897705770934,0.107589714016195,-0.0657360561238573,-0.0852799284367469,-0.12347412044086 +6.59,-0.0585261764944477,0.0248676335327556,0.0125635924197587,0.107544706500448,-0.0657422972680667,-0.0852812128346438,-0.123448640473061 +6.592,-0.0584986717102713,0.0248785002951971,0.0125517760930209,0.107520111024028,-0.0657371470709236,-0.085291594530813,-0.123420518351994 +6.594,-0.0584533822429096,0.024901251850483,0.0125255840268664,0.107475123642302,-0.0657433871499345,-0.0852928749009875,-0.123395065402665 +6.596,-0.058425890190083,0.0249121050824512,0.0125137584083616,0.107450543385233,-0.0657382323885408,-0.0853032498239661,-0.12336696174237 +6.598,-0.0583806175178043,0.0249348439688884,0.0124875524839414,0.107405576079554,-0.0657444714087092,-0.0853045261474951,-0.123341535791431 +6.6,-0.0583531381873198,0.0249456836823721,0.0124757176062344,0.107381010995777,-0.0657393121036347,-0.0853148942815923,-0.123313450580731 +6.602,-0.0583078823091525,0.0249684098989766,0.0124494978741149,0.107336063708324,-0.065745550071265,-0.0853161665396338,-0.123288051608098 +6.604,-0.0582804156920616,0.024979236105988,0.0124376537697662,0.107311513751918,-0.0657403862430427,-0.0853265278692443,-0.123259984835831 +6.606,-0.0582351766070972,0.0250019496518067,0.0124114202805204,0.107266586425024,-0.0657466231643952,-0.0853277960430364,-0.123234612821427 +6.608,-0.0582077226945034,0.0250127623643844,0.0123995669820814,0.107242051550195,-0.0657414548335237,-0.0853381505526335,-0.123206564476445 +6.61,-0.058162500401897,0.025035463238491,0.0123733197862942,0.107197144126343,-0.0657476907148092,-0.0853394146234901,-0.123181219400191 +6.612,-0.0581350591849612,0.025046262468696,0.012361457326311,0.107172624287432,-0.0657425179017521,-0.0853497622976318,-0.12315318947136 +6.614,-0.0580898536839242,0.0250689506701949,0.0123351964745709,0.107127736709251,-0.0657487527491377,-0.0853510222469415,-0.123127871313179 +6.616,-0.0580624251538586,0.0250797364301144,0.0123233248855794,0.107103231860726,-0.0657435754743264,-0.0853613630702595,-0.123099859789382 +6.618,-0.0580172364436594,0.0251024119581409,0.0122970504284789,0.107058364070986,-0.0657498092939353,-0.0853626188794778,-0.123074568529194 +6.62,-0.0579898205917287,0.0251131842598863,0.0122851697430051,0.107033874167442,-0.0657446275777688,-0.0853729528366785,-0.123046575399328 +6.622,-0.0579446486716891,0.0251358471136089,0.0122588817311363,0.106989026109055,-0.0657508603756837,-0.0853742044873271,-0.123021311017059 +6.624,-0.0579172454892086,0.0251466059693184,0.0122469919816933,0.106964551105209,-0.0657456742385304,-0.0853845315631837,-0.122993336270037 +6.626,-0.0578720903586999,0.0251692561479396,0.0122206904656446,0.10691972272122,-0.0657519060207925,-0.0853857790368409,-0.122968098745609 +6.628,-0.0578446998370346,0.0251800015697772,0.0122087916847322,0.106895262571913,-0.0657467154829896,-0.0853960992161928,-0.122940142370362 +6.63,-0.0577995614954785,0.0252026390725359,0.0121824767150864,0.1068504538055,-0.0657529462556021,-0.0853973424944919,-0.122914931683701 +6.632,-0.057772183626042,0.0252133710726929,0.0121705689351884,0.106826008465692,-0.0657477513374565,-0.0854076557622383,-0.122886993669174 +6.634,-0.0577270620729076,0.0252359958988648,0.0121442405625202,0.106781219260164,-0.0657539811063832,-0.0854088948268647,-0.122861809800206 +6.636,-0.0576996968471621,0.0252467144895606,0.0121323238161041,0.106756788684932,-0.0657487818281719,-0.0854192011679644,-0.122833890135362 +6.638,-0.0576545920819683,0.0252693266384597,0.01210598209098,0.106712018983733,-0.0657550105993385,-0.0854204360006538,-0.122808733064017 +6.64,-0.0576272394914238,0.025280031831941,0.0120940564104964,0.106687603128272,-0.0657498069813078,-0.085430735400124,-0.122780831737836 +6.642,-0.057582151513736,0.0253026313029184,0.0120677013834733,0.10664285287497,-0.0657560347606002,-0.0854319659826585,-0.122755701444043 +6.644,-0.0575548115499517,0.0253133231114605,0.0120557668013559,0.106618451694596,-0.0657508268229662,-0.085442258425576,-0.122727818445521 +6.646,-0.0575097403593844,0.0253359099039045,0.012029398522983,0.106573720832893,-0.0657570536162298,-0.0854434847397885,-0.122702714909211 +6.648,-0.0574824130139678,0.02534658833981,0.0120174550716491,0.106549334283037,-0.0657518413791767,-0.0854537702112867,-0.122674850227362 +6.65,-0.057437358610185,0.0253691624531469,0.011991073592467,0.106504622756765,-0.065758067192218,-0.0854549922390611,-0.122649773428468 +6.652,-0.0574100438747916,0.0253798275287467,0.0119791213043174,0.106480250792978,-0.0657528506758985,-0.0854652707243332,-0.122621927052321 +6.654,-0.0573650062575082,0.0254023889624384,0.0119527266748603,0.106435558546103,-0.0657590755144817,-0.0854664884476052,-0.122596876970775 +6.656,-0.0573377041238421,0.0254130406900901,0.0119407655822802,0.106411201124054,-0.0657538547390164,-0.0854767599319076,-0.122569048889377 +6.658,-0.0572926832928234,0.0254355894436344,0.0119143578530775,0.106366528100675,-0.065760078608864,-0.085477973332667,-0.122544025505114 +6.66,-0.0572653937526384,0.025446227835723,0.0119023879884377,0.106342185176153,-0.0657548535943407,-0.0854882378013186,-0.122516215707525 +6.662,-0.0572203897077006,0.0254687639086509,0.0118759672100144,0.106297531320504,-0.0657610765011317,-0.0854894468616109,-0.122491219000478 +6.664,-0.0571931127527999,0.0254793889775879,0.0118639886056714,0.106273202849418,-0.0657558472676059,-0.0854997042999954,-0.122463427475776 +6.666,-0.0571481254938122,0.0255019123694666,0.0118375548285487,0.106228568105871,-0.0657620692169789,-0.0855009090019269,-0.122438457425883 +6.668,-0.0571208611160458,0.025512524127689,0.0118255675168453,0.106204254044248,-0.0657568357844721,-0.0855111593954925,-0.122410684163159 +6.67,-0.0570758906429283,0.0255350348381167,0.0117991207915429,0.106159638357307,-0.0657630567820203,-0.0855123597212256,-0.122385740750353 +6.672,-0.0570486388341964,0.0255456332980877,0.0117871248048086,0.106135338661296,-0.0657578191705214,-0.085522603055487,-0.122357985738714 +6.674,-0.0570036851469205,0.0255681313266968,0.0117606651818431,0.106090741975604,-0.0657640392217969,-0.0855237989872467,-0.122333068942931 +6.676,-0.0569764458991726,0.0255787165009054,0.0117486605523946,0.106066456601477,-0.0657587974512631,-0.0855340352477884,-0.1223053321715 +6.678,-0.0569315089977597,0.0256012018473608,0.0117221880822801,0.106021878861807,-0.0657650165617739,-0.0855352267678547,-0.122280441972674 +6.68,-0.0569042823029915,0.025611773748321,0.0117101748424202,0.10599760776595,-0.0657597706521283,-0.0855454559403247,-0.122252723430586 +6.682,-0.0568593621875138,0.02563424641232,0.0116836895756686,0.105953048917216,-0.0657659888273416,-0.0855466430310415,-0.122227859808653 +6.684,-0.05683214803777,0.0256448050525711,0.0116716677576872,0.105928792056137,-0.0657607387984754,-0.0855568651011545,-0.122200159485061 +6.686,-0.056787244708347,0.0256672650338441,0.0116451697448063,0.105884252043378,-0.0657669560438151,-0.0855580477449197,-0.122175322419953 +6.688,-0.0567600440466091,0.0256778115708713,0.0116331432731344,0.105860010247341,-0.0657617021089802,-0.0855682643406327,-0.122147636476676 +6.69,-0.0567151486993469,0.0257002691875205,0.011606630227117,0.105815476988154,-0.0657679266319639,-0.0855694391410415,-0.122122822308064 +6.692,-0.0566879580149274,0.0257108090893637,0.0115945958468155,0.105791245003141,-0.0657626718254414,-0.0855796495314923,-0.122095153390873 +6.694,-0.0566430890194366,0.025733253796975,0.0115680782579521,0.105746738807955,-0.065768889771807,-0.0855808266063249,-0.122070366982244 +6.696,-0.0566159158465863,0.0257437824753409,0.0115560387688257,0.105722526177962,-0.0657636241847794,-0.0855910357699352,-0.122042718547632 +6.698,-0.0565710697291996,0.0257662158534382,0.0115295119373272,0.105678045018103,-0.0657698322175574,-0.0855922141353639,-0.122017962504814 +6.7,-0.0565439120126123,0.0257767346342559,0.0115174640313901,0.105653850229044,-0.0657645541905709,-0.0856024198911084,-0.121990337084342 +6.702,-0.0564990875954586,0.0257991561200409,0.011490926512735,0.105609394715905,-0.065770749991305,-0.0856035982002279,-0.121965611264518 +6.704,-0.0564719446105017,0.0258096644657926,0.0114788693329328,0.105585217163135,-0.0657654591566399,-0.0856137980101794,-0.121938008787907 +6.706,-0.0564271376314126,0.0258320755092465,0.0114523177363109,0.105540783540512,-0.0657716455441587,-0.0856149729743586,-0.121913312912817 +6.708,-0.0564000072835695,0.0258425733354673,0.0114402499442373,0.105516620730252,-0.0657663445298058,-0.0856251641529463,-0.121885732532509 +6.71,-0.0563552158825932,0.0258649735845606,0.0114136832372327,0.105472206751889,-0.0657725246007126,-0.0856263336053216,-0.121861065221435 +6.712,-0.0563280973633591,0.0258754596406603,0.0114016049195283,0.105448057404729,-0.0657672162508133,-0.0856365149202559,-0.121833505160701 +6.714,-0.0562833202156435,0.0258978485992631,0.0113750225977401,0.10540366064972,-0.0657733939271543,-0.085637677267284,-0.121808865040514 +6.716,-0.0562562129543113,0.0259083216186482,0.0113629341196678,0.105379523734771,-0.0657680813901946,-0.0856478483741954,-0.121781323506796 +6.718,-0.0562114500292293,0.0259306981782019,0.011336336780401,0.105335142935078,-0.0657742598697984,-0.0856490029956229,-0.121756709178427 +6.72,-0.0561843540244454,0.025941156840108,0.0113242389361029,0.105311018144052,-0.0657689456759516,-0.0856591642864416,-0.121729184577888 +6.722,-0.0561396056596141,0.0259635200094482,0.0112976274288021,0.105266652595616,-0.0657751274391036,-0.0856603111473253,-0.121704595043691 +6.724,-0.056112521009262,0.0259739633899079,0.0112855209446627,0.105242539885949,-0.0657698134282329,-0.0856704632916292,-0.121677086312176 +6.726,-0.0560677878701761,0.0259963122831773,0.0112588963071783,0.105198189636492,-0.0657759998342315,-0.0856716028860881,-0.121652520981334 +6.728,-0.0560407147828307,0.0260067398350484,0.0112467818059667,0.105174089245096,-0.0657706869395263,-0.0856817466618979,-0.121625027600041 +6.73,-0.055995997520208,0.0260290738621294,0.0112201449458022,0.105129754773201,-0.0657768783637741,-0.0856828797795165,-0.121600486325369 +6.732,-0.0559689361826148,0.026039485440693,0.0112080228227189,0.105105667036507,-0.065771566727174,-0.0856930159082018,-0.121573008284455 +6.734,-0.0559242353781854,0.0260618042660917,0.0111813744634533,0.105061349116675,-0.0657777626982693,-0.0856941434798414,-0.121548491245041 +6.736,-0.0558971859631417,0.02607220001359,0.0111692449173609,0.105037274422478,-0.065772451823764,-0.0857042725574882,-0.121521028894291 +6.738,-0.0558525020249531,0.0260945035591827,0.0111425855153064,0.104992973871995,-0.0657786513433306,-0.0857053954604745,-0.121496536481067 +6.74,-0.0558254646603857,0.0261048838134925,0.0111304485674549,0.104968912565207,-0.0657733403562921,-0.0857155178959349,-0.121469090375434 +6.742,-0.0557807978129696,0.0261271722020611,0.0111037783223017,0.104924630083362,-0.065779542196091,-0.0857166368122291,-0.121444623058529 +6.744,-0.0557537725850601,0.0261375373930814,0.0110916338728409,0.10490058241816,-0.0657742300823621,-0.0857267528021883,-0.121417193807358 +6.746,-0.0557091228673639,0.0261598109042155,0.011064952750519,0.104856318458473,-0.0657804330585154,-0.0857278681197836,-0.121392752038574 +6.748,-0.0556821098159688,0.0261701614818395,0.011052800624566,0.104832284560029,-0.0657751188689568,-0.085737977646511,-0.121365340196304 +6.75,-0.0556374771213337,0.0261924204939938,0.0110261084173569,0.104788039290713,-0.0657813220205127,-0.0857390894330889,-0.121340924342556 +6.752,-0.0556104762490151,0.0262027568751087,0.0110139484119361,0.104764019152738,-0.0657760049987128,-0.0857491922943261,-0.121313530341758 +6.754,-0.0555658603763994,0.0262250018145339,0.010987244805792,0.10471979247598,-0.0657822076757368,-0.085750300330207,-0.121289140657138 +6.756,-0.0555388716594328,0.0262353243555707,0.0109750767248424,0.104695785979699,-0.0657768873135248,-0.0857603961912751,-0.121261764784948 +6.758,-0.0554942723742584,0.0262575556483878,0.0109483613713575,0.104651577602168,-0.065783089177443,-0.0857615000497759,-0.121237401410699 +6.76,-0.0554672957782716,0.0262678646348506,0.0109361850521561,0.104627584554576,-0.0657777652061683,-0.0857715885099971,-0.12121004381702 +6.762,-0.0554227128659549,0.0262900826699611,0.010909457630401,0.1045833940791,-0.0657839661717019,-0.0857726876604388,-0.121185706801298 +6.764,-0.0553957483601495,0.0263003783194406,0.0108972729591356,0.104559414257304,-0.0657786385124869,-0.0857827683207748,-0.121158367527269 +6.766,-0.0553511816665969,0.026322583422174,0.0108705332228066,0.104515241275754,-0.0657848386584408,-0.0857838622328804,-0.121134056853421 +6.768,-0.0553242292351648,0.0263328658941979,0.0108583401416478,0.104491274469281,-0.0657795073530472,-0.0857939347546691,-0.121106735867648 +6.77,-0.0552796786886668,0.0263550583120983,0.0108315879470027,0.104447118637747,-0.0657857068297147,-0.0857950229857326,-0.121082451483088 +6.772,-0.0552527383370877,0.0263653277207171,0.010819386453741,0.104423164680974,-0.0657803719720507,-0.0858050871326598,-0.121055148716491 +6.774,-0.0552082039522802,0.0263875076198436,0.0107926217689655,0.104379025768008,-0.065786570924098,-0.0858061693864166,-0.121030890556323 +6.776,-0.0551812757085372,0.0263977640454417,0.0107804119113973,0.10435508455926,-0.0657812326054358,-0.085816225046178,-0.121003605929604 +6.778,-0.0551367575751802,0.0264199315154657,0.0107536348096612,0.104310962464158,-0.0657874311211769,-0.0858173011989593,-0.120979373932483 +6.78,-0.0551098414864223,0.026430175014239,0.0107414166763383,0.104287033970652,-0.0657820893957951,-0.0858273483845468,-0.120952107373872 +6.782,-0.0550653397480896,0.0264523300797667,0.0107146273168371,0.104242928715217,-0.0657882874851164,-0.0858284184806718,-0.120927901489883 +6.784,-0.0550384358741987,0.0264625606903862,0.0107024010258169,0.104219012965828,-0.065782942356884,-0.0858384573142889,-0.120900652943492 +6.786,-0.0549939507022277,0.026484703326107,0.0106755996274972,0.104174924666601,-0.0657891399540627,-0.0858395215369968,-0.12087647313562 +6.788,-0.0549670591078441,0.0264949210740703,0.0106633653143399,0.104151021735868,-0.0657837913803157,-0.0858495522215128,-0.120849242562524 +6.79,-0.0549225906755311,0.0265170512214151,0.0106365521270066,0.104106950565623,-0.065789988364158,-0.0858506108482569,-0.120825088803994 +6.792,-0.0548957114220908,0.0265272561219243,0.0106243099331032,0.104083060553151,-0.065784636270867,-0.0858606336319856,-0.120797876178852 +6.794,-0.0548512598829063,0.0265493737053412,0.010597485209886,0.104039006700112,-0.0657908324934446,-0.0858616869834455,-0.120773748448726 +6.796,-0.0548243930219004,0.0265595657655761,0.0105852352719648,0.10401512970934,-0.0657854767952356,-0.0858717021239704,-0.120746553754643 +6.798,-0.0547799584940877,0.0265816707069179,0.0105583992461672,0.103971093341093,-0.0657916721112215,-0.085872750515208,-0.120722452033543 +6.8,-0.054753104062355,0.0265918499283131,0.0105461416876613,0.103947229460708,-0.0657863127306962,-0.0858827582471167,-0.120695275257253 +6.802,-0.05470868662082,0.0266139421583197,0.0105192945558823,0.103903210697435,-0.065792507021365,-0.0858838019473079,-0.120671199524403 +6.804,-0.0546818446382153,0.0266241085390894,0.0105070294806457,0.103879359987614,-0.0657871439038435,-0.0858938024573631,-0.120644040652953 +6.806,-0.0546419379930591,0.0266447283582985,0.0104830200084922,0.103839031270605,-0.065794590626903,-0.0858932653303401,-0.120623273286322 +6.808,-0.0546177322185817,0.026653547540603,0.0104724592568911,0.103818426870386,-0.065787332398293,-0.0859053786603556,-0.120596600590357 +6.81,-0.054571605775459,0.0266765478334707,0.0104441207788915,0.103772606735855,-0.0657931186327738,-0.0859062496897359,-0.120572373130113 +6.812,-0.0545440580320758,0.0266871707623898,0.0104311580473234,0.103748319919508,-0.0657872765082808,-0.0859165788061504,-0.120545240897112 +6.814,-0.0544990695891138,0.0267093136570517,0.0104039394837448,0.103704021053274,-0.0657928223564672,-0.0859177414605172,-0.120520656128919 +6.816,-0.0544720813521197,0.0267193963558806,0.0103916284698089,0.103680183499154,-0.0657870899789313,-0.0859278067817417,-0.120493151389986 +6.818,-0.0544263367131012,0.0267421070049949,0.010363776857905,0.103634904340767,-0.0657938459881763,-0.0859283185274917,-0.12046885280902 +6.82,-0.0543989136941067,0.0267536627068993,0.0103504446233674,0.103608857281567,-0.0657924869126699,-0.0859339467583673,-0.120444802807409 +6.822,-0.0543594944842675,0.0267727214164486,0.0103272606890062,0.103570757718003,-0.0657955933101116,-0.0859382816705389,-0.12042073256681 +6.824,-0.054335598515089,0.0267806726522662,0.0103173248243147,0.103550643711309,-0.0657873505220622,-0.0859507162206387,-0.120392714570038 +6.826,-0.0542869494496387,0.0268051687285602,0.0102870170871092,0.103502069843564,-0.0657953399157646,-0.0859502278435611,-0.120368637549224 +6.828,-0.0542583523629432,0.0268162824865419,0.0102733192544554,0.103476507537158,-0.0657908220875457,-0.0859598137891532,-0.120341411375613 +6.83,-0.0542139501750142,0.0268378409932698,0.0102466399692707,0.103432618186947,-0.0657965599470448,-0.0859609563298007,-0.120316448342602 +6.832,-0.0541873365538302,0.0268474410631294,0.0102347199400318,0.103409088034402,-0.0657909938029351,-0.0859711149997388,-0.120288601577461 +6.834,-0.0541413530806918,0.0268702987711292,0.0102065863299885,0.103363296673813,-0.0657984651817326,-0.0859713640492374,-0.120264408668346 +6.836,-0.0541138920079239,0.0268805850542952,0.0101938725186263,0.103338759751287,-0.0657938217054043,-0.0859810882143313,-0.120237002236271 +6.838,-0.0540693556922207,0.0269024749261673,0.0101668970305051,0.103294445507793,-0.0658004066039555,-0.0859819196358662,-0.120212610338427 +6.84,-0.0540425852609583,0.0269123148703848,0.0101547078895238,0.103270638854205,-0.0657952771650442,-0.0859919502416895,-0.120185156232077 +6.842,-0.0540023581873487,0.0269330201550602,0.0101303146118688,0.103229780580023,-0.0658033064922365,-0.0859911495668854,-0.1201643711712 +6.844,-0.0539780455036511,0.0269417448150936,0.0101196221973525,0.103209038665542,-0.0657963543673783,-0.0860032352163739,-0.120137625227833 +6.846,-0.0539320694164702,0.0269645750954184,0.0100912459160415,0.10316322215699,-0.0658022933600671,-0.0860040513283017,-0.12011343809058 +6.848,-0.0539046498206617,0.0269750307670925,0.0100782827960109,0.10313905655207,-0.0657964739919615,-0.0860144260354461,-0.120086335097356 +6.85,-0.0538597499049333,0.0269971184073303,0.0100509328891448,0.103094779569957,-0.0658020748290981,-0.0860155558755277,-0.120061950124184 +6.852,-0.0538328446075507,0.0270071458958884,0.0100385338270869,0.103071038670706,-0.0657962747534897,-0.0860256285014011,-0.120034616723895 +6.854,-0.0537872987964092,0.02702976167593,0.0100106167674252,0.103025974170506,-0.0658028610429062,-0.0860261847710081,-0.120010569925406 +6.856,-0.053760054757051,0.0270400230372579,0.00999792681464505,0.103001759597388,-0.0657976363937961,-0.086035929832178,-0.119983393638337 +6.858,-0.0537152514448527,0.0270621635681477,0.00997057667376894,0.102957373637514,-0.0658040178995513,-0.0860367027482244,-0.119959323094639 +6.86,-0.0536883684621822,0.0270721653532789,0.00995815438837361,0.102933495346463,-0.0657986955980806,-0.0860465900170528,-0.119932126166755 +6.862,-0.0536437070243479,0.0270942890880766,0.0099308311939104,0.102889159167003,-0.0658051893805323,-0.086047388244073,-0.119908224312687 +6.864,-0.053616839864621,0.0271055765317713,0.00991765489169,0.102863657552499,-0.0658036128304069,-0.086053225852899,-0.119884547089788 +6.866,-0.0535780296293944,0.0271243737747914,0.00989462225807995,0.102826136687089,-0.0658063817181684,-0.0860577487283817,-0.119860923721348 +6.868,-0.0535530709546923,0.0271342990053774,0.00988288329699098,0.102803145555844,-0.0658022116787639,-0.0860654329961067,-0.119836741510475 +6.87,-0.0535118615336227,0.0271546498304285,0.00985779525226967,0.102763292888207,-0.0658054832123526,-0.0860694726254304,-0.11981338866878 +6.872,-0.0534869275371365,0.027163487633753,0.00984664978843175,0.10274228144525,-0.0657972623518943,-0.0860817096357468,-0.119786034734267 +6.874,-0.0534387720214922,0.0271874335195204,0.00981659058480698,0.102694586933567,-0.0658039507636803,-0.0860815803788223,-0.119761726944219 +6.876,-0.0534104667508903,0.0271982910838065,0.00980297651843613,0.102669479243253,-0.0657987100947695,-0.0860911855026322,-0.11973451007327 +6.878,-0.0533695356418984,0.0272190071718167,0.00977809767121469,0.102628400161941,-0.06580602971277,-0.0860902995358653,-0.119713121336659 +6.88,-0.0533452145267222,0.0272274198569865,0.00976749271032037,0.102607792158185,-0.0657986439654741,-0.0861022605484263,-0.119685884973856 +6.882,-0.0532973128516878,0.0272511757892869,0.00973755439230471,0.102560049270095,-0.0658057431068946,-0.0861021492759623,-0.119661569442801 +6.884,-0.0532691627574741,0.0272617637473786,0.00972406430150333,0.102535090558047,-0.0658006222636184,-0.0861120885402128,-0.119634167152273 +6.886,-0.0532238333698129,0.027283753719705,0.00969637441016302,0.10249020183742,-0.0658068514896561,-0.0861128286232215,-0.119609370705911 +6.888,-0.0531969041510436,0.0272933831486369,0.00968403529429279,0.10246637277158,-0.0658014994222386,-0.0861228581548009,-0.119581568390609 +6.89,-0.0531509112767009,0.0273160447930953,0.00965566493480649,0.102420510200782,-0.0658090331799923,-0.0861229833640902,-0.119557347013636 +6.892,-0.0531235811405763,0.0273260387275657,0.00964291883211681,0.102396115199318,-0.0658044028819069,-0.0861326970187742,-0.119529877092165 +6.894,-0.0530788335744093,0.0273479580703065,0.00961549528643653,0.10235146568349,-0.0658113697622888,-0.0861332687994892,-0.119505659362478 +6.896,-0.0530520674723442,0.027357642836743,0.00960314125795844,0.102327644939065,-0.0658064117433502,-0.0861432098092507,-0.119478268079713 +6.898,-0.0530074804566572,0.0273796321480699,0.00957571379888723,0.102283135589312,-0.0658133546221652,-0.0861438483490522,-0.11945439599402 +6.9,-0.0529807356115622,0.0273894514750989,0.00956326116075935,0.102259338042022,-0.0658083188642551,-0.0861537826920379,-0.119427294021169 +6.902,-0.0529366085173919,0.0274112390186777,0.009536127753277,0.10221539591377,-0.0658147949270975,-0.0861546566390477,-0.119403582597597 +6.904,-0.0529100498631397,0.0274210537087261,0.00952373788889045,0.102191825915588,-0.0658094528678737,-0.0861646352555936,-0.11937667457447 +6.906,-0.0528660006623191,0.027442888220838,0.00949658938457759,0.102148076194121,-0.0658156846450401,-0.0861655855054757,-0.119353182486347 +6.908,-0.0528394524638188,0.0274528015105998,0.00948412677976027,0.10212454510753,-0.0658101611175083,-0.0861755203326051,-0.119326475750002 +6.91,-0.052795515869948,0.0274746118509806,0.00945701817809436,0.102081024958502,-0.0658161220164741,-0.0861765543581063,-0.119303112457708 +6.912,-0.0527690132497904,0.0274845554701034,0.00944453577996601,0.102057564874353,-0.0658104243478025,-0.0861864618999183,-0.119276528457111 +6.914,-0.0527250813487981,0.0275063891459679,0.00941738776211809,0.102014125513133,-0.0658162571651629,-0.0861875153942257,-0.11925326742991 +6.916,-0.0526985824937068,0.0275163558374662,0.00940486833390444,0.101990679705121,-0.0658104817292578,-0.0861973850730694,-0.1192267601544 +6.918,-0.0526546672449598,0.0275381776797054,0.00937770304966347,0.101947293063414,-0.0658162534047438,-0.0861984401717247,-0.119203544672164 +6.92,-0.052628185629615,0.0275481250748982,0.00936517553396289,0.101923864668952,-0.0658104557208478,-0.0862082843239651,-0.119177059132621 +6.922,-0.0525842652641843,0.0275699356760318,0.00933798139536209,0.101880469754811,-0.0658162565759083,-0.0862093099597638,-0.119153861387525 +6.924,-0.0525577922883367,0.0275798488091456,0.00932545087371124,0.101857040445586,-0.0658104978656852,-0.0862191291070692,-0.119127366634332 +6.926,-0.0525138764397015,0.0276016328966476,0.00929824132343278,0.1018136216336,-0.0658163737666746,-0.0862201134651116,-0.119104163410267 +6.928,-0.0524874160502755,0.027611497735848,0.00928571913671004,0.101790190540899,-0.0658106848356704,-0.0862299116494082,-0.119077640330438 +6.93,-0.0524435056381197,0.027633253237519,0.00925849736577264,0.101746735983898,-0.0658166637282315,-0.0862308479142295,-0.119054425821907 +6.932,-0.0524170555514872,0.0276430696676554,0.00924598446936527,0.10172329940733,-0.0658110589096895,-0.0862406262666754,-0.119027872006738 +6.934,-0.0523731591689164,0.0276647929399641,0.00921875848249139,0.101679817193658,-0.065817138796226,-0.0862415193751402,-0.119004647907813 +6.936,-0.0523467205448085,0.0276745647478215,0.00920625494095179,0.101656378329319,-0.065811611702677,-0.0862512810248685,-0.118978070029821 +6.938,-0.0523028432943903,0.0276962571551906,0.00917902821267186,0.101612880906469,-0.065817775345952,-0.0862521407739794,-0.118954845259603 +6.94,-0.0522764159654882,0.0277059928522016,0.00916653030168274,0.101589443431847,-0.0658123088236257,-0.0862618888204215,-0.118928256210734 +6.942,-0.0522325629913876,0.0277276563131234,0.00913930559463699,0.10154594753871,-0.0658185283993848,-0.0862627282107804,-0.118905041448314 +6.944,-0.052206147742991,0.027737364754372,0.00912680929020847,0.10152251680928,-0.0658130992505816,-0.0862724661495717,-0.118878455227699 +6.946,-0.0521623210938136,0.0277590029393519,0.00909958643601473,0.10147903658958,-0.0658193461926098,-0.0862732970074411,-0.11885526095744 +6.948,-0.0521359181955207,0.027768692477799,0.00908708732419476,0.101455616971694,-0.065813931973868,-0.0862830274751946,-0.11882869004276 +6.95,-0.0520921180346532,0.0277903091877665,0.00905986470886075,0.101412162764203,-0.0658201817369324,-0.0862838587079972,-0.118805524267846 +6.952,-0.0520657277336257,0.0277999861060188,0.00904735924209643,0.10138875748511,-0.065814764217035,-0.0862935832706687,-0.118778977594396 +6.954,-0.0520264192534171,0.0278201517653599,0.00902298865959331,0.10134902511358,-0.0658222114591575,-0.0862929044136287,-0.118759039921074 +6.956,-0.0520026119713271,0.0278284872456973,0.0090122169269424,0.101328814047564,-0.0658148785994129,-0.0863047208187258,-0.118732894174737 +6.958,-0.0519570849821284,0.0278510364668631,0.00898349639732067,0.101283533846882,-0.0658207717057885,-0.0863053735480054,-0.118709638944163 +6.96,-0.0519299581676933,0.0278611928971108,0.00897027787477267,0.101259649485828,-0.0658148951749911,-0.0863154027282929,-0.118683148102632 +6.962,-0.0518856310670678,0.0278828275035029,0.00894273409924749,0.101215965176424,-0.0658204446900697,-0.0863163790179748,-0.118659508745367 +6.964,-0.0518591078896041,0.0278924224759206,0.00893018936086851,0.101192588004558,-0.0658146111396649,-0.0863261697480228,-0.118632655957244 +6.966,-0.0518140123827735,0.0279146452414225,0.00890197278790035,0.101147924925862,-0.0658213471058403,-0.0863265033714488,-0.118609330343799 +6.968,-0.0517870984025602,0.0279244795007466,0.00888910292224974,0.101124007022937,-0.0658162082451109,-0.08633596908495,-0.118582596478612 +6.97,-0.0517427881022576,0.0279461789351689,0.00886150311168049,0.101080030514474,-0.065822769033661,-0.0863365233250164,-0.118559182283643 +6.972,-0.0517162598552346,0.0279557203038137,0.00884893524976817,0.101056472450087,-0.0658175513676419,-0.0863461577396015,-0.118532386087986 +6.974,-0.0516720658205425,0.0279774243685697,0.00882134136842194,0.101012498550224,-0.0658242716117137,-0.0863467210242733,-0.118509135829764 +6.976,-0.0516455736617056,0.0279869850053337,0.00880874338214775,0.100988953492335,-0.0658191211650131,-0.0863563921415162,-0.118482451565615 +6.978,-0.0516017377819895,0.0280085030441732,0.0087813857400323,0.100945323473084,-0.0658256405956465,-0.0863570951185021,-0.118459257325498 +6.98,-0.0515753996803221,0.02801801027629,0.008768865247926,0.100921943441289,-0.0658203608039493,-0.086366826198584,-0.118432652928712 +6.982,-0.0515316503520059,0.0280395359366231,0.00874152045815128,0.100878422530023,-0.0658267860298477,-0.0863675639854859,-0.118409587027809 +6.984,-0.0515053322372613,0.0280490936891394,0.00872896469986457,0.100855071835043,-0.0658214256635639,-0.08637727376312,-0.11838310520682 +6.986,-0.0514616870256135,0.0280705926802515,0.00870166463991412,0.100811713343912,-0.0658276844968057,-0.0863780630598345,-0.118360130457354 +6.988,-0.0514354067259749,0.0280801755065614,0.00868909753747268,0.100788415686956,-0.0658222076109139,-0.0863877531300416,-0.118333745207855 +6.99,-0.0513917837909612,0.0281016919015953,0.00866177892564914,0.100745135691938,-0.0658283550982369,-0.0863885629041438,-0.118310862993459 +6.992,-0.0513655090767079,0.0281113078386818,0.00864917906857057,0.100721854679662,-0.0658227961293628,-0.0863982245036606,-0.118284561165129 +6.994,-0.0513219140676625,0.0281328211649618,0.00862185320981912,0.100678647552469,-0.0658288473369899,-0.0863990549491351,-0.118261741860735 +6.996,-0.0512956551162163,0.0281424445381212,0.00860923726677523,0.100655390364643,-0.0658232240085654,-0.0864087001695597,-0.118235492874784 +6.998,-0.0512520698756521,0.028163956579031,0.00858189211244555,0.100612217172942,-0.0658292284595401,-0.0864095357137999,-0.118212719327665 +7,-0.0512258218359587,0.0281735754584053,0.0085692630623464,0.100588973547046,-0.0658235767842242,-0.0864191680340497,-0.118186500876803 +7.002,-0.0511822498345801,0.028195075000538,0.00854190500312493,0.100545819383969,-0.0658295685540088,-0.0864199998967738,-0.118163753123722 +7.004,-0.0511560162453342,0.0282046747877592,0.00852927240241595,0.100522588662263,-0.0658239149025735,-0.0864296232497013,-0.118137545305721 +7.006,-0.0511124542629651,0.0282261592569335,0.00850190102275564,0.100479435799436,-0.0658299269270931,-0.0864304408132491,-0.11811481250557 +7.008,-0.051086233389524,0.0282357339359438,0.00848926795051698,0.100456212909627,-0.0658242937956353,-0.086440054922143,-0.118088604448934 +7.01,-0.0510426841313337,0.0282571991386946,0.00846188726000804,0.10041305595958,-0.0658303433520985,-0.0864408533802177,-0.118065880140723 +7.012,-0.0510164761855384,0.0282667454995213,0.00844925641689505,0.100389839626217,-0.0658247416383453,-0.0864504582161077,-0.118039667165661 +7.014,-0.0509729410642497,0.028288190518728,0.00842186834412972,0.100346677302897,-0.065830835533998,-0.0864512362180282,-0.118016950860548 +7.016,-0.0509467451965661,0.028297709665031,0.00840923946824959,0.10032346662052,-0.0658252677527266,-0.0864608315424937,-0.117990734292959 +7.018,-0.0509032271276668,0.0283191338912537,0.008381846524397,0.100280303497087,-0.0658314018830216,-0.0864615917794087,-0.117968028586233 +7.02,-0.0508770433263241,0.0283286286055142,0.00836921859334921,0.100257099562955,-0.0658258629958074,-0.0864711781182977,-0.117941813073068 +7.022,-0.0508335442859148,0.0283500328416939,0.00834182194042755,0.100213941762406,-0.0658320274708365,-0.0864719249843882,-0.117919122609421 +7.024,-0.0508073724211198,0.0283595071097669,0.00832919296173669,0.100190746077655,-0.0658265086376566,-0.0864815030043211,-0.117892914442361 +7.026,-0.050763893846026,0.0283808926175854,0.00830179304936908,0.100147600124419,-0.0658326908981061,-0.0864822413416224,-0.117870244116108 +7.028,-0.0507377339970661,0.0283903503398991,0.00828916096855073,0.100124414441761,-0.0658271820192586,-0.0864918116810501,-0.117844049414438 +7.03,-0.0506942761638836,0.0284117188925703,0.00826175719255866,0.100081285307812,-0.0658333703317748,-0.086492545359011,-0.117821403500213 +7.032,-0.0506681282968435,0.0284211634145117,0.00824912006277798,0.100058110909324,-0.0658278624638993,-0.0865021082715862,-0.117795227202898 +7.034,-0.0506246906862307,0.0284425168115772,0.00822171122604064,0.100015001581225,-0.0658340477379078,-0.0865028396391618,-0.117772608694812 +7.036,-0.0505985547448362,0.0284519504845159,0.00820906755698918,0.0999918391869274,-0.0658285343154764,-0.0865123949638312,-0.117746453993546 +7.038,-0.0505551362416501,0.0284732903808946,0.008181652106186,0.0999487505161759,-0.0658347110443721,-0.0865131246980586,-0.117723864494845 +7.04,-0.0505290121086425,0.0284827145308863,0.00816900091976917,0.0999256002177231,-0.0658291883692287,-0.0865226719066987,-0.117697732820583 +7.042,-0.0504856114313562,0.0285040422114203,0.00814157733652927,0.0998825314185474,-0.0658353544759364,-0.0865233993344491,-0.117675172675696 +7.044,-0.0504594989995935,0.0285134572412843,0.00812891819072234,0.099859392857704,-0.0658298214532813,-0.0865329377082047,-0.117649063988234 +7.046,-0.0504161149868593,0.0285347735624021,0.00810148522684855,0.099816342123519,-0.0658359775834547,-0.0865336613025875,-0.117626532629843 +7.048,-0.0503900141802492,0.0285441792091847,0.00808881811749859,0.0997932146847254,-0.0658304350784741,-0.0865431901133596,-0.117600445898695 +7.05,-0.050346646013999,0.0285654845915014,0.00806137496451829,0.0997501798717811,-0.0658365835701108,-0.0865439080550332,-0.117577942237262 +7.052,-0.0503205568159412,0.0285748802038817,0.00804870020552885,0.0997270628986374,-0.0658310335860975,-0.0865534267322981,-0.117551875943622 +7.054,-0.0502772040978176,0.0285961747049138,0.00802124653412396,0.0996840420608823,-0.0658371774571642,-0.0865541373806121,-0.117529398732809 +7.056,-0.0502511265496884,0.0286055595039702,0.00800856461819673,0.0996609350139999,-0.0658316223690061,-0.0865636456187677,-0.117503351302547 +7.058,-0.0502077892833707,0.0286268429147983,0.00798110053870495,0.0996179267559793,-0.0658377644891374,-0.0865643478348086,-0.11748089941022 +7.06,-0.050181723474807,0.028636216185104,0.0079684120198168,0.099594829311187,-0.0658322064490052,-0.0865738456375029,-0.117454869514513 +7.062,-0.0501384019697469,0.0286574881396076,0.0079409379772581,0.0995518329268109,-0.0658383490068644,-0.0865745389278958,-0.117432442084639 +7.064,-0.0501123480175389,0.0286668493436282,0.00792824338041058,0.0995287450019513,-0.0658327895862042,-0.0865840265888109,-0.117406428797684 +7.066,-0.0500690427610395,0.0286881094148742,0.00790076002391975,0.0994857604403069,-0.0658389338566958,-0.0865847110903223,-0.117384025306141 +7.068,-0.0500430007872542,0.0286974582326576,0.0078880597901982,0.0994626821675262,-0.0658333739154713,-0.0865941891260836,-0.11735802813582 +7.07,-0.0499997123136754,0.0287187060095149,0.00786056784029172,0.0994197098763947,-0.065839520281243,-0.0865948654708652,-0.117335648366185 +7.072,-0.0499736824253882,0.028728042323326,0.00784786230169789,0.0993966415365264,-0.0658339600194437,-0.0866043345244108,-0.117309667194291 +7.074,-0.0499348550761561,0.0287478651811826,0.00782321861827107,0.0993573879180714,-0.0658412869513816,-0.0866035358370456,-0.117290436806765 +7.076,-0.0499113687891775,0.0287558570497169,0.00781227568863202,0.0993374686695514,-0.0658338193175241,-0.0866150762133617,-0.117264768672589 +7.078,-0.0498663158736665,0.0287780685355238,0.0077832621308153,0.0992925931631748,-0.0658397156027925,-0.0866155307523785,-0.11724231280719 +7.08,-0.0498395253063602,0.0287878848145249,0.00776984374729545,0.0992689975203078,-0.0658337679518635,-0.0866252807321118,-0.117216364809889 +7.082,-0.049795722780024,0.0288091338209118,0.00774205616433681,0.0992257578712276,-0.0658392809128866,-0.0866260684025622,-0.117193486314222 +7.084,-0.0497695717700874,0.028818361037882,0.00772933893338609,0.0992027110230566,-0.0658333553783572,-0.086635601464832,-0.117167163057689 +7.086,-0.0497249920051885,0.0288402103300103,0.00770085190641535,0.0991584777908523,-0.0658400717669216,-0.0866357437828471,-0.117144606511557 +7.088,-0.0496984480606105,0.0288496818914142,0.00768779824635023,0.0991348877026288,-0.0658348505870964,-0.0866449554311494,-0.1171184049856 +7.09,-0.049654662152256,0.0288710030381478,0.00765993879071014,0.0990913553133209,-0.0658413864311274,-0.0866453256504167,-0.117095745459962 +7.092,-0.0496285088062897,0.0288801786141848,0.00764719498632216,0.099068133989824,-0.0658360853826817,-0.0866547128442775,-0.117069472902422 +7.094,-0.0495848331280636,0.0289015106185178,0.00761933683529002,0.0990245990748202,-0.0658427887692307,-0.086655093288482,-0.117046974536728 +7.096,-0.0495587108946701,0.02891070902884,0.00760656133831794,0.0990013863871413,-0.0658375610411132,-0.0866645190804752,-0.117020811130708 +7.098,-0.0495153949493239,0.0289318526416288,0.00757894802038915,0.0989581991483374,-0.0658440630456329,-0.0866650448623911,-0.116998362446024 +7.1,-0.0494894251213308,0.0289409974548711,0.00756625442477167,0.09893515091432,-0.0658387075858287,-0.0866745340563745,-0.116972275009889 +7.102,-0.0494461933560819,0.0289621481574885,0.00753865864772067,0.0988920701300383,-0.0658451167986937,-0.0866750981361903,-0.116949952217352 +7.104,-0.0494202399153499,0.0289713447405263,0.00752593172195198,0.0988690474079541,-0.0658396832040082,-0.0866845678172512,-0.116923986151765 +7.106,-0.0493771115605405,0.0289924662693916,0.00749838795408066,0.0988261281169006,-0.0658459245250052,-0.0866851872255537,-0.116901751812525 +7.108,-0.0493512034666146,0.0290030189900642,0.00748488497712768,0.098801617671666,-0.0658440717109347,-0.0866907073676771,-0.116879329322562 +7.11,-0.0493134245764474,0.0290210462049136,0.00746143521744906,0.098765084821662,-0.0658466321950092,-0.0866948578466668,-0.116857163851534 +7.112,-0.0492904795611046,0.0290282601034642,0.00745109257670765,0.098745883315514,-0.0658378693078939,-0.0867066996563177,-0.116830666798333 +7.114,-0.0492436443679433,0.0290517059862289,0.00742043639214519,0.0986991613350604,-0.0658452260971752,-0.0867061587557717,-0.116808874514035 +7.116,-0.0492160993567331,0.029062056732537,0.00740627788070666,0.0986746505507193,-0.0658400711226166,-0.0867151952322583,-0.116783316929271 +7.118,-0.0491731335072906,0.0290827224216546,0.00737905128812646,0.0986322828127977,-0.0658452071040165,-0.0867161080833887,-0.116760482120221 +7.12,-0.0491474492718295,0.0290915972283284,0.00736661690607701,0.0986096818486845,-0.0658390423475295,-0.0867256395780253,-0.116734220475922 +7.122,-0.0491028223259233,0.0291135647913666,0.0073378430014466,0.0985653314596054,-0.065845990983071,-0.0867256422834728,-0.116712094841103 +7.124,-0.0490762820948004,0.0291230693756532,0.00732461244333255,0.0985417075679508,-0.0658408250785096,-0.0867347563342051,-0.116686180282374 +7.126,-0.0490329937517358,0.029144092196359,0.00729695063587647,0.0984986666027287,-0.0658470648659278,-0.0867352588189499,-0.116663745137379 +7.128,-0.0490071140633895,0.0291531029231401,0.00728426781866934,0.098475724382582,-0.0658415500808693,-0.0867446805555181,-0.116637665735027 +7.13,-0.0489636183245947,0.0291743722683697,0.00725632717276335,0.0984323535555392,-0.0658481609766155,-0.0867450584475568,-0.116615487265732 +7.132,-0.0489376064942672,0.0291835284520898,0.00724347113796718,0.0984092452510026,-0.0658428319550656,-0.0867544306727447,-0.11658956635188 +7.134,-0.0488945506542777,0.0292045291399359,0.00721586327073526,0.0983663269578439,-0.0658491555704887,-0.0867549782919404,-0.11656737309608 +7.136,-0.0488687345605252,0.0292135840966215,0.0072031404837057,0.0983434310865516,-0.0658436662197792,-0.0867644144651689,-0.116541487700126 +7.138,-0.0488256528405643,0.0292346585399829,0.00717546243697234,0.0983005002711036,-0.0658499937557643,-0.0867649411799511,-0.116519431759611 +7.14,-0.0487998014527054,0.0292437877861237,0.00716267012398512,0.0982775696778322,-0.0658444866833635,-0.0867743264900633,-0.116493661978989 +7.142,-0.0487568379315888,0.0292648056930885,0.00713506618519458,0.0982348087649063,-0.0658506583697725,-0.0867749056354646,-0.116471663949849 +7.144,-0.0487310337108076,0.0292739346570736,0.00712228489787017,0.0982119376284086,-0.0658450515868355,-0.0867842771239139,-0.116445962544831 +7.146,-0.0486880653197889,0.0292949765857879,0.00709464951696838,0.0981692116980794,-0.0658511615525172,-0.0867848607461071,-0.116424047385192 +7.148,-0.0486622541144875,0.0293041341352636,0.00708183440203579,0.0981463394480895,-0.0658455071448815,-0.0867942029052306,-0.116398415762295 +7.15,-0.0486193212940677,0.0293251572993226,0.00705420726552634,0.0981036818167275,-0.0658515395300494,-0.0867948069524666,-0.116376547268106 +7.152,-0.0485935299179377,0.0293343095888786,0.00704138712244534,0.0980808349138952,-0.0658458366392264,-0.0868041384852791,-0.11635095499342 +7.154,-0.0485506029662739,0.0293553288486415,0.0070137425977042,0.0980381973439988,-0.0658518431622792,-0.0868047432067056,-0.116329126658637 +7.156,-0.0485248198889468,0.0293644736692575,0.00700091131242628,0.0980153591571025,-0.0658461259383365,-0.0868140628210986,-0.116303560263328 +7.158,-0.0484819101392944,0.0293854749419916,0.00697326061356467,0.0979727397624125,-0.0658521255414468,-0.0868146638809731,-0.116281754051974 +7.16,-0.0484561425544836,0.0293945985858484,0.00696042855046036,0.0979499145571032,-0.0658464100129736,-0.0868239752198219,-0.116256197311315 +7.162,-0.048413242946787,0.0294155845615538,0.00693276585657567,0.0979072949982311,-0.0658524308539549,-0.086824561355764,-0.116234407397936 +7.164,-0.0483874871801803,0.0294246851498062,0.00691993235416809,0.0978844761034793,-0.0658467351806209,-0.0868338619458879,-0.116208853700708 +7.166,-0.0483446018803709,0.0294456519267721,0.00689226173129756,0.0978418549192754,-0.0658527876239628,-0.0868344295935961,-0.116187074993957 +7.168,-0.0483188591233087,0.0294547270105849,0.00687942917513223,0.0978190423246858,-0.0658471181674177,-0.0868437189627248,-0.116161521077523 +7.17,-0.0482759880549986,0.029475675525412,0.00685175049371374,0.0977764174971582,-0.0658532071439087,-0.0868442661667233,-0.116139754175611 +7.172,-0.0482502570071578,0.0294847271112745,0.00683891773380363,0.0977536096614994,-0.0658475652732532,-0.0868535433657112,-0.116114201839279 +7.174,-0.0482074030280719,0.0295056569531349,0.00681123330112754,0.0977109855095347,-0.0658536860523905,-0.0868540723237939,-0.116092448803878 +7.176,-0.0481816839278061,0.0295146874646929,0.00679839969120204,0.0976881834710239,-0.0658480668273594,-0.0868633377244434,-0.116066901810009 +7.178,-0.0481388483152802,0.0295355997786454,0.00677071027907632,0.0976455644591603,-0.0658542112111209,-0.086863851793238,-0.116045166402501 +7.18,-0.0481131408722935,0.0295446127287057,0.00675787423930402,0.097622769138592,-0.0658486074033419,-0.0868731059609335,-0.116019629725531 +7.182,-0.0480703249407865,0.0295655084944499,0.0067301806824251,0.0975801604945573,-0.0658547650793973,-0.0868736092167999,-0.115997915567484 +7.184,-0.0480446292661088,0.0295745069926856,0.00671734094517842,0.0975573733322802,-0.0658491685614511,-0.0868828530103756,-0.115972393790386 +7.186,-0.0480018332295929,0.0295953876161649,0.00668964317543631,0.0975147788570898,-0.0658553302932148,-0.0868833488412256,-0.115950704019672 +7.188,-0.0479761492579133,0.0296043743007722,0.0066767985356386,0.0974920008891475,-0.0658497341125635,-0.0868925829377852,-0.115925200756846 +7.19,-0.0479333728636621,0.0296252410081134,0.00664909617995249,0.0974494230455566,-0.0658558927787782,-0.0868930737378047,-0.115903537442448 +7.192,-0.0479077006047252,0.0296342176068412,0.0066362458671058,0.0974266550246264,-0.0658502918801714,-0.0869022986266534,-0.115878054896473 +7.194,-0.0478649431084608,0.0296550714881681,0.00660853820849872,0.0973840946380162,-0.0658564432639872,-0.0869027855536171,-0.115856419064536 +7.196,-0.0478392825235334,0.0296640389019509,0.00659568180087829,0.0973613368618874,-0.065850834875008,-0.0869120014659439,-0.115830958099176 +7.198,-0.0477965430895601,0.0296848807118897,0.00656796811255181,0.0973187935802719,-0.0658569774149543,-0.0869124846608283,-0.115809349827822 +7.2,-0.0477708941771982,0.029693839095842,0.00655510556250005,0.097296046042761,-0.0658513607633834,-0.0869216916533358,-0.115783910206299 +7.202,-0.0477281720270089,0.0297146692837522,0.00652738521255314,0.0972535187193291,-0.0658574950132179,-0.0869221705317318,-0.115762328924294 +7.204,-0.0477025347980667,0.029723618294693,0.00651451672805223,0.0972307811910178,-0.065851870829626,-0.0869313685522374,-0.115736909705843 +7.206,-0.0476598293809706,0.0297444370121057,0.0064867893126998,0.0971882683895104,-0.0658579986341194,-0.0869318421842522,-0.115715354486241 +7.208,-0.0476342038765513,0.029753376034882,0.00647391526747658,0.0971655405606916,-0.065852368504962,-0.086941031158633,-0.115689954412105 +7.21,-0.0475915149019698,0.0297741832195938,0.00644618062794318,0.097123040915722,-0.0658584922314713,-0.0869414985836809,-0.115668424253416 +7.212,-0.0475659011766336,0.0297831115840463,0.00643330145161583,0.097100322486759,-0.0658528580188691,-0.0869506784725564,-0.115643042077132 +7.214,-0.0475232286042265,0.029803907036237,0.00640555966048292,0.0970578349602505,-0.0658589799219556,-0.0869511389328474,-0.115621536100746 +7.216,-0.0474976267193418,0.0298128241642157,0.00639267576240449,0.0970351257114725,-0.0658533433119917,-0.0869603097677162,-0.115596170807296 +7.218,-0.0474549706912965,0.0298336076282646,0.0063649270614989,0.0969926496935786,-0.0658594651328278,-0.0869607628253193,-0.115574688373063 +7.22,-0.0474293807015845,0.0298425131181178,0.00635203877673607,0.096969949509896,-0.0658538273683784,-0.0869699247146493,-0.115549339287537 +7.222,-0.0473867414635749,0.0298632843427991,0.0063242835056722,0.0969274848095466,-0.065859950157362,-0.0869703702697096,-0.11552788002635 +7.224,-0.0473611634098962,0.0298721779900692,0.00631139107260147,0.0969047936772704,-0.0658543119403909,-0.0869795233842154,-0.115502546824136 +7.226,-0.0473185412314364,0.0298929367705265,0.00628362959546619,0.0968623404286773,-0.0658604360723052,-0.0869799616153755,-0.115481110611266 +7.228,-0.0472929751355854,0.0299018185451788,0.00627073315483409,0.0968396584087785,-0.0658547976033369,-0.0869891061580838,-0.11545579326096 +7.23,-0.0472503702494299,0.029922564742809,0.00624296580201596,0.0967972169417082,-0.0658609229180561,-0.0869895374203723,-0.115434380152816 +7.232,-0.0472248161136964,0.0299314347402002,0.00623006541234707,0.0967745441339212,-0.0658552840199944,-0.086998673591651,-0.115409078823284 +7.234,-0.0471822286783476,0.0299521682861063,0.00620229244148862,0.0967321148413846,-0.0658614100238902,-0.0869990983026854,-0.115387688982045 +7.236,-0.0471566864877951,0.0299610266705452,0.00618938810180861,0.0967094513478205,-0.0658557703005763,-0.0870082262678788,-0.115362403942926 +7.238,-0.047114116574824,0.0299817475566111,0.0061616096804966,0.0966670345788619,-0.0658618963700335,-0.0870086448083776,-0.1153410375667 +7.24,-0.0470885863019186,0.0299905945103349,0.006148701354573,0.0966443804752858,-0.0658562553576722,-0.0870177646744071,-0.11531576910281 +7.242,-0.0470460339030682,0.0300113027737843,0.00612091756155524,0.0966019764658603,-0.0658623809052496,-0.0870181773184887,-0.115294426372738 +7.244,-0.047020515513151,0.0300201384595093,0.00610800519891798,0.0965793317842259,-0.0658567381899867,-0.0870272891224993,-0.115269174723957 +7.246,-0.0469779805607665,0.0300408341652497,0.00608021603920383,0.0965369406290502,-0.0658628627724928,-0.0870276960038671,-0.115247855772437 +7.248,-0.0469524740175009,0.0300496587048431,0.0060672995908219,0.0965143053522312,-0.065857218061904,-0.0870367997143607,-0.115222621101956 +7.25,-0.0469099564107618,0.0300703419290978,0.00603950501860608,0.0964719270114302,-0.0658633414274898,-0.0870372008259361,-0.115201326000953 +7.252,-0.0468844616806623,0.0300791553971352,0.00602658444661568,0.0964493010782806,-0.0658576945765147,-0.0870462963543913,-0.115176108388553 +7.254,-0.0468419613113411,0.0300998262143047,0.00599878439052093,0.0964069354081311,-0.0658638166602462,-0.0870466915735387,-0.1151548371534 +7.256,-0.0468164783669561,0.0301086286427399,0.00598585967275285,0.0963843187256549,-0.0658581676605589,-0.0870557787930749,-0.115129636606746 +7.258,-0.0467739951401259,0.0301292871163505,0.00595805405887931,0.096341965521099,-0.0658642885449329,-0.0870561679218393,-0.115108389209417 +7.26,-0.0467485239616899,0.030138078505661,0.00594512518950523,0.0963193579799393,-0.0658586374909695,-0.0870652466888779,-0.115083205685241 +7.262,-0.0467060578090417,0.0301587246833166,0.00591731395936268,0.0962770170179068,-0.0658647573494632,-0.0870656294986881,-0.115061982071295 +7.264,-0.0466805983847066,0.0301675050157541,0.00590438094715384,0.0962544185076799,-0.0658591043946973,-0.0870746996737884,-0.115036815499105 +7.266,-0.046638149270051,0.0301881389274649,0.00587656406909549,0.0962120895831038,-0.0658652234341861,-0.087075075945904,-0.115015615603689 +7.268,-0.0466127015949952,0.0301969081791007,0.00586362693457985,0.0961895000049899,-0.0658595687489528,-0.0870841374107886,-0.114990465906598 +7.27,-0.0465702695130165,0.0302175298381192,0.00583580440869862,0.0961471829549494,-0.0658656871622735,-0.0870845069666552,-0.114969289666678 +7.272,-0.0465448335878087,0.0302262879877191,0.00582286318113463,0.0961246022299909,-0.0658600309006987,-0.0870935596355427,-0.114944156776265 +7.274,-0.046502418558035,0.0302468973929975,0.00579503503856614,0.0960822969447978,-0.0658661488353494,-0.0870939223543624,-0.114923004137948 +7.276,-0.0464769943866573,0.0302556444270621,0.00578208975325528,0.0960597250174736,-0.0658604911149362,-0.0871029661789548,-0.114897888002274 +7.278,-0.0464345964448714,0.0302762415665685,0.00575425605138073,0.0960174314401071,-0.0658666086590809,-0.0871033220025357,-0.114876758923461 +7.28,-0.0464091840327486,0.0302849774808795,0.00574130674750271,0.0959948682776171,-0.0658609495530461,-0.0871123569710566,-0.11485165950898 +7.282,-0.0463668032219188,0.0303055623351894,0.00571346756273905,0.0959525863945695,-0.065867066736418,-0.0871127058980569,-0.114830553958469 +7.284,-0.046341402574222,0.0303142871338078,0.0057005142816805,0.0959300319828543,-0.0658614062764516,-0.087121732029525,-0.114805471247551 +7.286,-0.0462990389365361,0.0303348596795772,0.00567266970142744,0.0958877618100892,-0.0658675230816939,-0.0871220741023824,-0.114784389202071 +7.288,-0.0462736500569177,0.030343573372452,0.00565971248546854,0.0958652161478885,-0.0658618612675598,-0.0871310914377576,-0.114759323188155 +7.29,-0.0462313036279089,0.030364133585514,0.00563186260049336,0.095822957715438,-0.065867977646916,-0.0871314267259231,-0.114738264628725 +7.292,-0.0462059265177427,0.0303728361857584,0.00561890149171874,0.095800420807706,-0.0658623144591037,-0.0871404353179023,-0.114713215310932 +7.294,-0.046163597322891,0.0303933840437104,0.00559104638985539,0.0957581741457453,-0.065868430351895,-0.0871407639007229,-0.114692180219668 +7.296,-0.0461382319809919,0.0304020755653288,0.00557808142919841,0.0957356459975156,-0.0658627657641029,-0.0871497638037882,-0.114667147598215 +7.298,-0.0460959200346933,0.0304226110495163,0.00555022119085427,0.09569341112573,-0.0658688811115874,-0.0871500857555958,-0.114646135956149 +7.3,-0.0460705664574529,0.0304312915059859,0.00553725241726404,0.0956708917372323,-0.0658632151007852,-0.0871590770176027,-0.114621120029279 +7.302,-0.0460282717639086,0.0304518146028616,0.00550938711286007,0.0956286686583216,-0.0658693298564901,-0.0871593923966735,-0.114600131815439 +7.304,-0.0460029299457336,0.0304604840066524,0.00549641456262993,0.0956061580217726,-0.0658636624094354,-0.0871683750528007,-0.114575132578043 +7.306,-0.0459606525011416,0.030480994708505,0.0054685442518335,0.0955639467190374,-0.0658697765443977,-0.0871686838948544,-0.114554167769592 +7.308,-0.0459353224350706,0.0304896530713618,0.00545556795816125,0.0955414448171926,-0.0658641076604443,-0.0871776579642724,-0.11452918521326 +7.31,-0.04589745651481,0.0305087799709371,0.00543054249548972,0.0955029793442289,-0.0658713391612983,-0.087176580244277,-0.114511239512575 +7.312,-0.0458745953713225,0.0305160975566019,0.00541937477146905,0.0954835610560404,-0.0658637514073333,-0.0871875973865546,-0.114486429815755 +7.314,-0.0458348986751347,0.0305362479785399,0.00539280476674166,0.0954430932868878,-0.0658708535698622,-0.0871862677994157,-0.114468446407859 +7.316,-0.0458111335181643,0.0305441608251383,0.00538082393541045,0.0954229536019094,-0.0658630410082344,-0.0871974878974391,-0.11444371709607 +7.318,-0.0457666304300301,0.0305655840838316,0.00535127396743364,0.0953785918923108,-0.0658683027229816,-0.0871977127281786,-0.114422148492693 +7.32,-0.0457404049137597,0.0305746144702517,0.00533762178815374,0.0953555405368932,-0.0658619256264973,-0.0872070279247101,-0.114396829963803 +7.322,-0.0457007082495255,0.0305943638723551,0.00531137113977599,0.0953154866497425,-0.0658691110531892,-0.0872055468262963,-0.11437816993824 +7.324,-0.0456772370292873,0.0306017250151498,0.00529990878867821,0.0952955790011853,-0.0658614867479261,-0.0872164198407328,-0.114352782959416 +7.326,-0.0456312783773034,0.0306239780914483,0.00526915671142351,0.0952494773381096,-0.0658683970956465,-0.0872156638923885,-0.114331253972313 +7.328,-0.04560446503492,0.0306331835611495,0.00525508325102297,0.0952256590027468,-0.0658629817172274,-0.0872245902469676,-0.114305753835638 +7.33,-0.0455607614641275,0.0306538955622876,0.00522631107583049,0.0951820353573379,-0.0658693424408399,-0.0872244811259585,-0.114283761664695 +7.332,-0.04553505995266,0.0306622212793596,0.00521327724094665,0.0951592321356063,-0.0658638506849747,-0.0872334689966772,-0.114257877660613 +7.334,-0.0454909581366509,0.0306834398219032,0.00518397476578983,0.0951148770946202,-0.0658713936892407,-0.0872328567832228,-0.114236393335504 +7.336,-0.0454650802301593,0.0306933523712962,0.00516986270510451,0.0950901952650257,-0.0658701763286314,-0.0872377684972297,-0.114214187077977 +7.338,-0.0454273098871778,0.0307108629411147,0.00514556686475258,0.0950531655838824,-0.0658737259864268,-0.087241072446317,-0.114192543732551 +7.34,-0.045404748643598,0.0307171591738439,0.00513504670072687,0.0950341830385154,-0.0658655291750559,-0.0872524804243993,-0.114166218058818 +7.342,-0.0453583856259202,0.0307400260370636,0.00510364176446949,0.0949871853477093,-0.0658739013282184,-0.0872511342140942,-0.114145397440701 +7.344,-0.045331372328914,0.0307495469622641,0.00508922768561855,0.0949629333947253,-0.0658692597436716,-0.0872597364398681,-0.114120339573335 +7.346,-0.0452892645736204,0.0307694521330222,0.00506160649813017,0.0949208571545594,-0.0658749469020024,-0.0872601299862251,-0.114098532455965 +7.348,-0.04526424716799,0.0307775351463627,0.00504899853204321,0.0948987381107279,-0.0658690016181096,-0.0872693053756604,-0.114072938510843 +7.35,-0.0452205786234982,0.0307987957445588,0.00501983998852265,0.0948548547791557,-0.0658762094848234,-0.0872688595022295,-0.114052046426568 +7.352,-0.0451947085857461,0.0308076419124845,0.00500636657935326,0.0948317263018065,-0.065871048048446,-0.0872775688037969,-0.114027008852018 +7.354,-0.045152443021261,0.0308279766102165,0.00497838936116621,0.0947893797864239,-0.0658772318650371,-0.0872777364862626,-0.114005914543137 +7.356,-0.0451272399810791,0.0308364159958705,0.00496544674906903,0.0947669804100652,-0.0658715147549573,-0.0872867327869948,-0.113980844138896 +7.358,-0.045084756650353,0.0308570413339622,0.00493717822211927,0.0947243895779405,-0.0658778679536455,-0.0872868269201341,-0.113960098871021 +7.36,-0.0450594074121003,0.0308656879977007,0.00492403005996063,0.0947018262547501,-0.065872207216419,-0.0872957504391081,-0.113935273879435 +7.362,-0.0450173540861171,0.0308860602251934,0.00489610027782153,0.0946597432800065,-0.0658781510096687,-0.0872960511590279,-0.113914548653879 +7.364,-0.0449921989132818,0.0308946225541489,0.00488308294014193,0.09463740130581,-0.065872264981441,-0.0873050323627156,-0.113889785924083 +7.366,-0.0449500978836505,0.030915074386146,0.0048550731378805,0.0945952999066159,-0.0658781867131498,-0.0873053161945931,-0.11386920130787 +7.368,-0.0449249059853202,0.0309237005566999,0.00484199093812482,0.0945729194500103,-0.0658722858595212,-0.0873142437314709,-0.113844541916039 +7.37,-0.0448872880125152,0.0309427267388282,0.00481689897706927,0.0945346991180799,-0.0658791964781587,-0.0873132049338633,-0.113826954020255 +7.372,-0.0448645909045277,0.0309499933169699,0.00480566927431944,0.0945154360919602,-0.0658713253128017,-0.0873241613963534,-0.113802446674049 +7.374,-0.0448207094131927,0.0309714385495725,0.0047761459017238,0.0944714241077198,-0.0658770600385142,-0.0873242008445731,-0.113781896387222 +7.376,-0.0447947234967677,0.0309805534241947,0.0047623508664405,0.0944484494634115,-0.0658708377122978,-0.0873333333982766,-0.113757295631109 +7.378,-0.0447522345143725,0.0310009038125199,0.00473418710097859,0.0944062271278276,-0.0658760623506534,-0.0873337492628375,-0.113736243883353 +7.38,-0.0447269822977616,0.0310093524643699,0.0047211619928394,0.0943839156742098,-0.0658698068671388,-0.0873427081206692,-0.11371124201052 +7.382,-0.0446880541593264,0.0310289692572928,0.00469506385722337,0.0943443854187771,-0.0658773963098479,-0.0873410987450046,-0.113693491423061 +7.384,-0.0446648098199907,0.031036356335912,0.00468347008573393,0.0943245352323063,-0.0658700021142327,-0.0873517551046668,-0.113668745369966 +7.386,-0.0446204758513454,0.0310578068463738,0.00465364697444112,0.0942799792003426,-0.0658762170672185,-0.0873514804980268,-0.113647829482592 +7.388,-0.0445943941186857,0.0310666949391142,0.00463986793006491,0.0942568602627405,-0.0658703651730731,-0.087360535790348,-0.113622846020061 +7.39,-0.0445514731665579,0.0310871328164174,0.00461133964106065,0.0942139854772347,-0.0658763186827221,-0.0873606177911441,-0.113601581428027 +7.392,-0.044526104470699,0.031095417144993,0.004598269365839,0.0941914905299764,-0.0658705414509717,-0.0873695397427761,-0.113576294245671 +7.394,-0.0444871152682002,0.0311149330671251,0.0045720879204685,0.0941516731128647,-0.0658786264448459,-0.0873677570270308,-0.113558333918072 +7.396,-0.0444638978084151,0.0311221116973994,0.00456055094291066,0.0941318088521107,-0.0658715579376833,-0.0873784583092271,-0.113533351660325 +7.398,-0.0444195505932893,0.0311435061326802,0.00453065391301716,0.094087027579968,-0.0658781776814231,-0.0873780342919965,-0.113512351747255 +7.4,-0.0443934873411131,0.0311522780333047,0.00451688497642727,0.0940638792156293,-0.0658725680340051,-0.0873870985470153,-0.11348726399497 +7.402,-0.0443506446796662,0.0311726369707824,0.004488362142417,0.0940209574945494,-0.0658787075626519,-0.0873871182409443,-0.113465980395158 +7.404,-0.0443253176078708,0.0311808537276875,0.00447530137266798,0.0939984789433614,-0.0658730231220614,-0.0873960422058421,-0.113440682172078 +7.406,-0.0442820240509157,0.0312016903959895,0.00444627123571539,0.0939549274459617,-0.0658800519982927,-0.087395578187754,-0.113419832215068 +7.408,-0.0442565120834045,0.0312115056405126,0.00443213520626519,0.0939306275119114,-0.0658784849420279,-0.0874004244335933,-0.113398208720581 +7.41,-0.0442191651147117,0.0312288321634182,0.00440786569778348,0.0938940619504827,-0.065881617301231,-0.0874037075643546,-0.113377147483749 +7.412,-0.0441968070537149,0.0312350924814063,0.00439724466980766,0.0938752431140347,-0.0658731368933369,-0.0874148726719052,-0.113351342279917 +7.414,-0.0441508497506439,0.0312577491177315,0.00436583078711174,0.0938287128081706,-0.0658811445359539,-0.0874135428491926,-0.113331133345172 +7.416,-0.0441245451431931,0.0312681721868224,0.00435093861306964,0.0938036955508569,-0.0658795108783375,-0.0874183408747647,-0.113309780561794 +7.418,-0.0440874346252701,0.031285206989371,0.00432695905131505,0.0937676027761022,-0.0658817983327444,-0.0874219325571204,-0.113288467899141 +7.42,-0.0440639635929835,0.0312934783672266,0.00431461824315728,0.0937460280335452,-0.0658772064239524,-0.0874286667077035,-0.113266094443927 +7.422,-0.0440235876703254,0.0313127949861667,0.00428772191105461,0.0937064169878067,-0.0658812029793807,-0.0874311766825649,-0.113245602435866 +7.424,-0.0439995284510324,0.0313202644463523,0.00427558984790843,0.0936859226085898,-0.0658732300618238,-0.0874418665098203,-0.113220208780089 +7.426,-0.0439536355031095,0.0313424104223363,0.00424450864842402,0.0936397871359163,-0.0658801896409896,-0.0874407565605733,-0.11319921333942 +7.428,-0.0439269581934483,0.0313515156477435,0.0042302440022898,0.0936159587699399,-0.0658748199445067,-0.0874492124275339,-0.113174186385265 +7.43,-0.0438836899291136,0.031372010392313,0.00420136227493831,0.0935726598994845,-0.0658811175875718,-0.0874488845259049,-0.113152884853669 +7.432,-0.0438582669971127,0.0313801794924791,0.00418821063302059,0.0935500348192292,-0.0658754975910056,-0.0874575813067624,-0.113127532483882 +7.434,-0.04381468063459,0.0314011315376721,0.00415883716106086,0.0935060923948768,-0.0658828141213237,-0.0874568709433784,-0.113106749332822 +7.436,-0.0437890467549986,0.0314095462000564,0.00414538109795488,0.0934831152754301,-0.0658777532314994,-0.0874654411424627,-0.113081693584125 +7.438,-0.0437466794901057,0.0314297972513677,0.00411694240764457,0.0934403531069794,-0.0658845144859088,-0.0874652081659507,-0.113060881847078 +7.44,-0.0437216200473663,0.0314393269091776,0.00410303397976815,0.0934164513327893,-0.0658828472520924,-0.0874702263511327,-0.11303935083388 +7.442,-0.0436845728881155,0.0314565404875092,0.00407880696438193,0.0933800320553699,-0.0658859885269206,-0.0874735398556761,-0.113018520334383 +7.444,-0.0436623400251702,0.0314627642465629,0.00406814766774941,0.0933613048387391,-0.0658775003016304,-0.0874847412781886,-0.112992912757619 +7.446,-0.0436168946920288,0.0314851752470867,0.00403696423893478,0.093315196715685,-0.0658852579978745,-0.0874835265719698,-0.112972925363578 +7.448,-0.0435903366143405,0.0314945014881098,0.00402251889960287,0.0932913522812859,-0.0658801888017446,-0.0874919594458143,-0.112948545587441 +7.45,-0.0435487737284385,0.0315141516268629,0.00399484909258867,0.0932497953780913,-0.0658854768807177,-0.087492300500881,-0.11292755038084 +7.452,-0.0435240647932708,0.0315220995414571,0.00398211237426936,0.0932279253744812,-0.0658792409891004,-0.0875012206240626,-0.112902598542048 +7.454,-0.0434809269800762,0.0315430494257726,0.00395291042039589,0.093184536128678,-0.0658861019746889,-0.0875007094301764,-0.112882428931124 +7.456,-0.0434553854417061,0.0315516820434122,0.00393934755894068,0.0931616707073733,-0.0658807069132098,-0.0875091803154179,-0.112857939070307 +7.458,-0.0434135536822516,0.0315717358486515,0.00391125760232412,0.0931196738381567,-0.0658867212729008,-0.087509214862907,-0.112837514079797 +7.46,-0.0433886492431397,0.0315799315286621,0.00389822183381242,0.0930974952478029,-0.0658808928947153,-0.0875179724465089,-0.112812920776879 +7.462,-0.043350965177382,0.0315988926578499,0.00387268967431718,0.093058961440457,-0.0658882655307717,-0.0875165813014858,-0.112795695511106 +7.464,-0.0433283184343646,0.0316059318091982,0.00386129383152428,0.0930396404183664,-0.0658806707108083,-0.0875273118388095,-0.1127713613836 +7.466,-0.0432848357338997,0.0316270237865818,0.00383171204076363,0.0929957583214105,-0.065886591701878,-0.0875271582101525,-0.11275117303759 +7.468,-0.043259140538569,0.0316357932778684,0.00381791242433926,0.0929729667816009,-0.0658804686140771,-0.0875361571225955,-0.112726791600491 +7.47,-0.0432169872611296,0.0316558782168726,0.00378961766160896,0.0929308319216234,-0.0658858715941563,-0.0875363736035233,-0.112706203021267 +7.472,-0.0431919782557177,0.0316640664978847,0.00377652122864379,0.0929086671066844,-0.06587968895408,-0.0875451733172101,-0.11268151833203 +7.474,-0.0431534708951934,0.0316833852475436,0.003750364967422,0.092869383798256,-0.0658872668478558,-0.0875434515402098,-0.112664209632271 +7.476,-0.0431304866904563,0.0316905191609422,0.00373873602674034,0.0928497166807614,-0.0658798363281448,-0.0875539392870826,-0.112639775142762 +7.478,-0.0430865359347462,0.0317117229507198,0.00370881282264737,0.0928053633509198,-0.0658860562903528,-0.0875535052622006,-0.112619422708982 +7.48,-0.0430606992541786,0.0317204095429613,0.00369494495364768,0.0927823983427629,-0.0658801581385012,-0.0875623594691078,-0.112594852140098 +7.482,-0.0430182127950173,0.0317405664011904,0.00366636498202449,0.0927398184580959,-0.0658860011430676,-0.0875623191832341,-0.112574146560328 +7.484,-0.0429931193801093,0.0317486433167468,0.003653222172133,0.0927175209251129,-0.0658801102949705,-0.0875710489092121,-0.112549288526169 +7.486,-0.0429545162470319,0.0317679180271992,0.00362694703555408,0.0926779938476352,-0.0658880446114531,-0.0875691721653437,-0.112531862152656 +7.488,-0.0429315388783129,0.0317749040764578,0.00361533532881625,0.0926582968019976,-0.0658808504829222,-0.0875796627821627,-0.11250727174877 +7.49,-0.0428875820041217,0.0317960546723945,0.00358534347223378,0.0926137747310991,-0.0658873727830356,-0.0875791036778487,-0.112486864595252 +7.492,-0.0428617751065331,0.0318046299782001,0.0035714862710912,0.0925907953323241,-0.0658816640574404,-0.0875879562158262,-0.112462209769265 +7.494,-0.0428193476377896,0.0318247192433779,0.00354289177015386,0.0925481558812006,-0.06588768848011,-0.0875878434925237,-0.112441491771278 +7.496,-0.0427942969942773,0.0318327189162566,0.00352975875309669,0.0925258706046043,-0.0658819029139634,-0.0875965671307431,-0.112416611135458 +7.498,-0.0427514081204126,0.031853289460977,0.00350063838434016,0.0924825783510415,-0.0658888445479556,-0.0875959584420142,-0.112396320815812 +7.5,-0.0427260879552072,0.0318615466506141,0.00348720167588658,0.0924598841692083,-0.065883578894115,-0.0876043959926854,-0.112371690229582 +7.502,-0.0426840563932856,0.0318816198208827,0.00345874863111054,0.0924174478353859,-0.0658901589561766,-0.0876040819583727,-0.112351392306073 +7.504,-0.0426591273291171,0.0318896629979093,0.00344559707595839,0.0923951478183087,-0.0658846952825865,-0.0876126692786196,-0.112326804625852 +7.506,-0.0426172525697616,0.0319097575973624,0.00341718173787321,0.0923528292439384,-0.0658912677608339,-0.0876124095411767,-0.112306731523433 +7.508,-0.0425923561046527,0.0319178744558396,0.00340398676034145,0.092330549530107,-0.0658857727873251,-0.0876210038104802,-0.112282328469229 +7.51,-0.0425508272347776,0.0319378084529553,0.00337582304656973,0.0922886227140064,-0.0658920460790234,-0.0876209064953769,-0.112262347571051 +7.512,-0.0425260650120041,0.0319459093147023,0.00336269810050331,0.0922664950361786,-0.0658863709842568,-0.0876295355684351,-0.112238063533035 +7.514,-0.0424846114330752,0.0319658544270545,0.00333456399599191,0.0922246908293596,-0.0658924981376573,-0.0876294833663399,-0.112218221643445 +7.516,-0.0424598586486458,0.0319740137358002,0.00332140938624668,0.0922025795610447,-0.0658867266550491,-0.0876380780542255,-0.112194068516764 +7.518,-0.0424184920963338,0.0319939286333813,0.00329333456945351,0.0921609214129471,-0.0658926880263858,-0.0876380745654561,-0.112174308894408 +7.52,-0.0423937693796333,0.0320021046914193,0.00328018174928493,0.0921388495473381,-0.0658868192207636,-0.0876466441627689,-0.112150238521746 +7.522,-0.0423524138510091,0.0320220248817503,0.00325210261575959,0.0920972408791541,-0.0658927036011225,-0.0876466498756415,-0.112130549883228 +7.524,-0.042327694633778,0.0320302144609364,0.00323893452415815,0.0920751747491609,-0.065886793015224,-0.0876551901348744,-0.112106536237555 +7.526,-0.0422863590502758,0.0320501180951478,0.00321086016250267,0.0920336055683925,-0.0658926365874928,-0.0876552001447041,-0.112086884440529 +7.528,-0.0422616555889972,0.0320582928939124,0.00319769320541761,0.0920115542396794,-0.0658867124724236,-0.0876637244245645,-0.112062893319773 +7.53,-0.0422246711493068,0.0320768466737055,0.00317244345509782,0.0919737495757984,-0.0658936343274105,-0.0876624183581188,-0.112046144283232 +7.532,-0.0422023783191521,0.032083668321913,0.0031611296233872,0.0919547368404533,-0.0658858066073262,-0.0876729597230361,-0.11202219068861 +7.534,-0.0421591703450631,0.0321046079116891,0.00313147016495435,0.0919110745241744,-0.0658916839742266,-0.0876726604684508,-0.112002561871479 +7.536,-0.0421336303787276,0.032113258684696,0.00311757665172867,0.0918883550273641,-0.0658855626000702,-0.0876813905248016,-0.111978577708308 +7.538,-0.0420918662068747,0.032133058170132,0.00308932275489099,0.0918465326416958,-0.0658908888596419,-0.08768149088004,-0.111958409588105 +7.54,-0.0420670939939698,0.0321410226429465,0.00307621967147617,0.0918245265093702,-0.0658847039572329,-0.0876900808054749,-0.11193401945835 +7.542,-0.0420245110490376,0.032161459539926,0.00304715816933677,0.0917816413445901,-0.0658912826585827,-0.0876895089177516,-0.111914209579094 +7.544,-0.0419993362442316,0.03216967969794,0.00303367060445371,0.0917590709674734,-0.0658858324454672,-0.0876977680880253,-0.111889955697525 +7.546,-0.0419575635749591,0.0321895775608831,0.00300525347389739,0.0917169278156519,-0.0658922268923497,-0.0876974287162695,-0.111869997520029 +7.548,-0.0419327924602672,0.0321974895586656,0.00299209287703497,0.0916947500147596,-0.0658867071178404,-0.0877058653795518,-0.111845644434115 +7.55,-0.0418910973472424,0.0322174230559164,0.00296364169602993,0.0916525619375189,-0.0658933167248545,-0.0877055058330956,-0.111825835374849 +7.552,-0.0418663382868124,0.0322253656744381,0.00295043669817791,0.0916303644186328,-0.0658879077095916,-0.0877139616569767,-0.111801578325522 +7.554,-0.0418249995991202,0.0322451089090381,0.00292224293201883,0.0915885166474527,-0.0658943403517804,-0.0877137340452091,-0.111781794764241 +7.556,-0.0418003856547119,0.0322529949146472,0.00290912879018461,0.0915664706184246,-0.0658888286463095,-0.0877222424199621,-0.111757596513175 +7.558,-0.0417591200228739,0.0322727470116511,0.00288095756042789,0.0915247015460697,-0.0658951954153707,-0.0877220343821776,-0.11173792685953 +7.56,-0.041734510392299,0.0322806866727877,0.00286781315706727,0.0915026582248732,-0.0658896297378474,-0.0877305101773106,-0.111713841934441 +7.562,-0.041693346084937,0.0323004044770351,0.00283971223444802,0.0914610351955988,-0.0658958409263532,-0.0877303470852349,-0.111694249193172 +7.564,-0.0416687653682148,0.0323083704210982,0.00282656829754831,0.0914390281583708,-0.0658901729879852,-0.0877387970415931,-0.111670254950253 +7.566,-0.0416276174854736,0.032328102372735,0.00279846797443578,0.0913974641440004,-0.0658962779545734,-0.0877386484954398,-0.111650748078811 +7.568,-0.0416030339796473,0.0323361061488292,0.00278529925002688,0.0913754583354517,-0.0658905356200837,-0.0877470650162238,-0.111626837366362 +7.57,-0.0415619117559243,0.0323558321377993,0.00275721061852743,0.0913339563955311,-0.0658965401818703,-0.0877469361515853,-0.111607389510732 +7.572,-0.0415373396730593,0.0323638483346748,0.00274403355421599,0.0913119659292707,-0.0658907333145797,-0.0877553346285979,-0.111583534155909 +7.574,-0.0414962254473243,0.0323835728572505,0.00271593876031989,0.0912704907120628,-0.0658966830484621,-0.0877552119490523,-0.111564131796213 +7.576,-0.0414716620753453,0.032391590137914,0.00270275358780322,0.0912485089295913,-0.0658908434888751,-0.0877635974699686,-0.111540311344476 +7.578,-0.0414305614460653,0.0324113027691713,0.00267465556183573,0.0912070505820904,-0.0658967698187031,-0.0877634741790966,-0.111520935819199 +7.58,-0.041406012795359,0.0324193057028431,0.0026614705253057,0.0911850804709607,-0.0658909215527763,-0.087771851987549,-0.111497130356084 +7.582,-0.0413649233087623,0.0324390047797709,0.00263336491923159,0.0911436230689945,-0.0658968579216034,-0.0877717174642024,-0.111477771371558 +7.584,-0.0413403888727218,0.0324469864962856,0.00262018170071537,0.091121660941781,-0.0658910236461272,-0.0877800873811795,-0.111453969260372 +7.586,-0.0412993138232484,0.0324666680448688,0.00259207025382149,0.0910801997177444,-0.0658969892520054,-0.0877799359330848,-0.111434619660623 +7.588,-0.0412747944421401,0.0324746243112919,0.00257889104496721,0.0910582446249695,-0.06589118146418,-0.0877882974572249,-0.111410814738408 +7.59,-0.0412337350774656,0.0324942875904529,0.00255077428824432,0.0910167771434446,-0.0658971861391007,-0.0877881260007464,-0.111391472887957 +7.592,-0.0412092297358671,0.032502218801195,0.00253759869287815,0.0909948273049511,-0.0658914098540495,-0.0877964779423982,-0.111367664897633 +7.594,-0.0411681886245076,0.0325218631539849,0.00250947897335933,0.0909533564154498,-0.0658974525200674,-0.0877962873471036,-0.111348332006935 +7.596,-0.0411436967734247,0.032529771654139,0.00249630631096051,0.0909314116073252,-0.0658917052436861,-0.0878046292389736,-0.11132452415559 +7.598,-0.0411026754222898,0.0325493977840478,0.00246818538290029,0.0908899414889669,-0.0658977785573623,-0.0878044223110668,-0.11130520367418 +7.6,-0.0410781961927488,0.0325572874485832,0.0024550142005143,0.0908680017483411,-0.0658920535833281,-0.087812753977832,-0.111281401224974 +7.602,-0.0410371957072474,0.0325768964287195,0.0024268936649,0.0908265373637122,-0.0658981466324398,-0.0878125345354472,-0.111262097189229 +7.604,-0.041012728492373,0.0325847712681619,0.00241372255400352,0.0908046032345888,-0.0658924352604779,-0.0878208561059307,-0.111238305698411 +7.606,-0.0409717489945541,0.0326043646557869,0.00238560314259877,0.0907631485585815,-0.0658985370177353,-0.0878206276253035,-0.111219021954323 +7.608,-0.0409472932377324,0.0326122282671834,0.00237243075926803,0.0907412205180187,-0.0658928309265606,-0.0878289392112843,-0.111195246240703 +7.61,-0.0409063342604565,0.0326318076277461,0.00234431256656772,0.0906997781970261,-0.065898932178223,-0.0878287042438002,-0.111175985729644 +7.612,-0.0408818896129772,0.0326396626516179,0.00233113791955973,0.0906778566308847,-0.0658932247471685,-0.0878370058852861,-0.111152229189077 +7.614,-0.0408409502411815,0.0326592294186881,0.00230302044681863,0.0906364277215055,-0.0658993192981336,-0.0878367657484779,-0.111132993738402 +7.616,-0.0408165165084613,0.0326670774357646,0.00228984290992622,0.0906145127924178,-0.0658936063111848,-0.0878450573673535,-0.11110925819051 +7.618,-0.0407755957398238,0.0326866326973347,0.00226172537370323,0.0905730970872232,-0.0658996911202657,-0.0878448122727521,-0.111090048512218 +7.62,-0.040751172903749,0.0326944742801604,0.00224854471070306,0.0905511887967269,-0.0658939707400251,-0.0878530937322001,-0.11106633435162 +7.622,-0.0407102698537042,0.0327140187330267,0.00222042625789878,0.0905097852267456,-0.0659000454826252,-0.0878528430801859,-0.111047150270697 +7.624,-0.0406858580208227,0.0327218536862963,0.00220724254067201,0.0904878834605948,-0.0658943178241527,-0.0878611142441071,-0.11102345684416 +7.626,-0.040644972082523,0.0327413876333115,0.00217912245765139,0.0904464905926469,-0.0659003840569528,-0.0878608570202066,-0.111004297597697 +7.628,-0.0406205714426001,0.0327492152781034,0.00216593597644267,0.0904245952038873,-0.0658946505220675,-0.0878691178188791,-0.110980623644397 +7.63,-0.0405797023222726,0.0327687387036334,0.00213781379612574,0.0903832116372082,-0.065900710778988,-0.0878688529528795,-0.110961488197689 +7.632,-0.0405553130903682,0.0327765581635191,0.0021246249512015,0.0903613225017228,-0.0658949733741318,-0.0878771034214408,-0.11093783226386 +7.634,-0.0405144607774292,0.032796070828905,0.00209650049409735,0.0903199471492368,-0.0659010303604935,-0.0878768300605544,-0.110918719569447 +7.636,-0.0404900831503181,0.0328038812542118,0.00208330970705198,0.0902980642059667,-0.0658952911176897,-0.0878850703531546,-0.110895080324038 +7.638,-0.0404492478332298,0.0328233828034014,0.00205518305240707,0.0902566964225988,-0.065901347134121,-0.087884788011719,-0.110875989501267 +7.64,-0.0404248819570446,0.0328311835186986,0.00204199069887727,0.0902348196847834,-0.0658956077159234,-0.0878930183878024,-0.110852365929629 +7.642,-0.0403840639258435,0.0328506735681453,0.00201386211769974,0.0901934592718748,-0.0659016643413363,-0.0878927269808363,-0.110833296355287 +7.644,-0.0403597098822455,0.0328584641382601,0.00200066848958601,0.0901715888186877,-0.0658959258419246,-0.0879009477716229,-0.110809687833206 +7.646,-0.040318909437242,0.0328779423448747,0.00197253835814419,0.090130235935426,-0.0659019838566665,-0.08790064755449,-0.110790639157641 +7.648,-0.0402945672437894,0.0328857225757716,0.00195934365018086,0.0901083718879057,-0.0658962467757043,-0.0879088591170423,-0.110767045431597 +7.65,-0.0402537846286583,0.0329051886777856,0.00193121236650944,0.0900670269160612,-0.0659023062622888,-0.087908550568171,-0.110748017541398 +7.652,-0.0402294542505811,0.0329129585730835,0.00191801668225595,0.0900451694069394,-0.065896570600905,-0.0879167532371324,-0.110724438648702 +7.654,-0.0401886896149877,0.0329324124068571,0.00188988459868236,0.0900038328072904,-0.0659026311482783,-0.0879164369205449,-0.110705431600967 +7.656,-0.0401643709827563,0.0329401721032265,0.00187668796800096,0.0899819819515325,-0.0658968965707727,-0.0879246309659438,-0.110681867764167 +7.658,-0.0401236243740571,0.0329596136006008,0.00184855534790376,0.0899406541427012,-0.0659029575103964,-0.0879243074054217,-0.110662881713647 +7.66,-0.0400993174024606,0.0329673633008834,0.0018353577495023,0.0899188100149253,-0.0658972235199796,-0.0879324930032134,-0.110639333236875 +7.662,-0.0400585887798613,0.0329867924737033,0.00180722474942187,0.0898774912915816,-0.0659032841388774,-0.0879321625893873,-0.110620368371686 +7.664,-0.040034293384849,0.032994532390981,0.00179402613312347,0.08985565391344,-0.0658975502295911,-0.0879403398081344,-0.11059683555729 +7.666,-0.0399935826474211,0.03301394930887,0.001765892807101,0.0898143444091271,-0.0659036099265157,-0.0879400027485455,-0.110577892051793 +7.668,-0.0399692987585853,0.0330216796280602,0.00175269311263349,0.0897925137475206,-0.0658978756896518,-0.0879481715526144,-0.110554375145754 +7.67,-0.0399286057780998,0.0330410843946777,0.00172455943251162,0.0897512134373601,-0.0659039340619073,-0.0879478278644117,-0.1105354531331 +7.672,-0.0399043333458658,0.0330488052527667,0.00171135860327366,0.0897293894120284,-0.0658981992406764,-0.0879559881312227,-0.110511952299573 +7.674,-0.0398636579970577,0.033068197984215,0.00168322448772958,0.089688098144543,-0.0659042561060247,-0.0879556376685395,-0.110493051861809 +7.676,-0.0398393969948293,0.0330759094663031,0.00167002247940898,0.089666280642261,-0.0658985206039471,-0.0879637892155621,-0.110469567181543 +7.678,-0.0397987391780956,0.0330952902738868,0.00164188782485625,0.0896249981870704,-0.0659045759730252,-0.0879634317193676,-0.110450688352621 +7.68,-0.0397744896003126,0.0331029924201897,0.00162868460961837,0.0896031870789943,-0.0658988398286206,-0.0879715743356289,-0.110427219837304 +7.682,-0.0397338492545774,0.0331223613984002,0.00160054931758763,0.0895619131777795,-0.0659048938479729,-0.0879712094927553,-0.110408362613503 +7.684,-0.0397096111120483,0.0331300542169192,0.00158734488496413,0.0895401083366137,-0.065899157190845,-0.0879793429697297,-0.110384910227751 +7.686,-0.0396689882178728,0.0331494114365713,0.0015592088824898,0.0894988427474843,-0.0659052100761829,-0.0879789704693151,-0.110366074580629 +7.688,-0.0396447615318032,0.0331570949169041,0.00154600323812455,0.089477044061801,-0.0658994730785213,-0.0879870946269592,-0.110342638264704 +7.69,-0.0396041561065494,0.033176440422727,0.00151786648966253,0.0894357865909028,-0.0659055250537834,-0.0879867142056323,-0.110323824152971 +7.692,-0.039579940902506,0.03318411454787,0.00150465965288821,0.0894139939748855,-0.0658997878879045,-0.087994828910681,-0.110300403841584 +7.694,-0.0395393529902934,0.0332034483595722,0.00147652216397053,0.0893727444929062,-0.0659058391399747,-0.0879944403816472,-0.110281611219933 +7.696,-0.0395151492930167,0.0332111131141015,0.00146331416491718,0.089350957890842,-0.065900101948179,-0.0880025455568764,-0.110258206854837 +7.698,-0.0394745789524267,0.0332304352298595,0.00143517597896371,0.0893097163352415,-0.0659061526012728,-0.0880021488217224,-0.11023943567914 +7.7,-0.0394503867820411,0.0332380906042206,0.00142196685561634,0.0892879357210233,-0.065900415480096,-0.0880102444463672,-0.110216047215311 +7.702,-0.0394098340741647,0.03325740100562,0.00139382804599962,0.0892467020870087,-0.0659064655889821,-0.0880098394913929,-0.110197297444676 +7.704,-0.0393856534439726,0.033265046997173,0.00138061784142617,0.0892249274595917,-0.0659007285865892,-0.0880179255940946,-0.110173924851208 +7.706,-0.0393451184226978,0.0332843456547842,0.00135247850105795,0.0891837017839593,-0.0659067781445641,-0.0880175124749541,-0.110155196447898 +7.708,-0.0393209493384728,0.0332919822667337,0.00133926726089471,0.0891619331601515,-0.0659010412679557,-0.0880255891214161,-0.110131839705477 +7.71,-0.0392804320440639,0.0333112691456679,0.00131112749140205,0.0891207155022326,-0.0659070902239478,-0.0880251679407756,-0.110113132633841 +7.712,-0.0392562745045612,0.0333188963850628,0.0012979152616355,0.0890989529082986,-0.0659013534517939,-0.0880332352186394,-0.110089791730688 +7.714,-0.0392157749607984,0.0333381714500195,0.00126977516374066,0.0890577433316797,-0.0659074017309204,-0.0880328061015596,-0.110071105956065 +7.716,-0.0391916289591152,0.0333457893257957,0.00125656198881836,0.089035986795156,-0.0659016650280313,-0.0880408641049703,-0.110047780883936 +7.718,-0.0391511471736173,0.0333650525452511,0.00122842165496885,0.0889947853527705,-0.0659077125509178,-0.0880404271759881,-0.110029116372096 +7.72,-0.0391270126990056,0.0333726610669153,0.00121520757629046,0.0889730348955504,-0.0659019758812076,-0.0880484759919017,-0.110005807123304 +7.722,-0.0390865486659598,0.033391912416237,0.00118706708601804,0.0889318416196343,-0.0659080225789456,-0.0880480313567076,-0.109987163840651 +7.724,-0.0390624257057486,0.0333995115934114,0.00117385214086471,0.088910097253046,-0.065902285914945,-0.0880560710544397,-0.109963870406528 +7.726,-0.0390219794100818,0.0334187510567861,0.00114571155887022,0.0888689121502894,-0.0659083317382082,-0.0880556187877104,-0.109945248320922 +7.728,-0.0389978679514325,0.0334263408995128,0.0011324957798264,0.0888471738724528,-0.06590259506636,-0.0880636494125113,-0.109921970691619 +7.73,-0.0389574393734733,0.0334455684706939,0.00110435515642064,0.0888059969238779,-0.0659086399886658,-0.0880631895523177,-0.109903369773498 +7.732,-0.0389333394047845,0.0334531489902039,0.0010911385713097,0.0887842647192769,-0.0659029033106241,-0.0880712111231147,-0.109880107938726 +7.734,-0.0388929285246204,0.0334723646721765,0.00106299794462389,0.0887430958837641,-0.065908947326751,-0.0880707436712951,-0.109861528162158 +7.736,-0.0388688400364918,0.0334799358817634,0.00104978057693426,0.0887213697246881,-0.0659032106575591,-0.0880787561821732,-0.109838282112338 +7.738,-0.0388284468374566,0.0334991396855064,0.00102163997622252,0.0886802089448284,-0.0659092537786879,-0.0880782811094168,-0.109819723455661 +7.74,-0.0388043698231859,0.0335067016011837,0.00100842184594445,0.0886584887941479,-0.0659035171430175,-0.0880862845340044,-0.109796493182997 +7.742,-0.0387639942941748,0.0335258935437762,0.000980281295325069,0.0886173360030923,-0.0659095593903008,-0.0880858017880301,-0.109777955628862 +7.744,-0.0387399287498396,0.0335334461845078,0.000967062420079684,0.0885956218177767,-0.0659038228179447,-0.0880937960857385,-0.109754741127988 +7.746,-0.0386995708863808,0.0335526262868683,0.000938921942146398,0.0885544769459161,-0.0659098642160038,-0.0880933056008769,-0.109736224662768 +7.748,-0.0386755168105705,0.0335601696743022,0.000925702338446549,0.0885327686806937,-0.0659041277376121,-0.088101290723881,-0.109713025930809 +7.75,-0.0386351766147801,0.0335793379588432,0.00089756195734178,0.0884916316613319,-0.065910168309058,-0.088100792430568,-0.109694530543473 +7.752,-0.0386111340080924,0.0335868721166015,0.000884341641832195,0.0884699292720168,-0.0659044319527876,-0.0881087683305337,-0.109671347579538 +7.754,-0.0385708114877508,0.0336060286050733,0.000856201385510361,0.0884288000454918,-0.065910471714398,-0.088108262163513,-0.109652873260201 +7.756,-0.0385467803521483,0.0336135535577569,0.000842980376031019,0.0884071034915965,-0.0659047355038085,-0.0881162287972559,-0.109629706064465 +7.758,-0.0385064755192139,0.0336326982694903,0.000814840277613041,0.0883659820076645,-0.0659107744645456,-0.0881157147017155,-0.109611252802864 +7.76,-0.0384824558573438,0.0336402140415813,0.000801618593984921,0.0883442912541101,-0.0659050384177627,-0.0881236720352819,-0.109588101375462 +7.762,-0.038442168726214,0.0336593469922799,0.00077347869221861,0.0883031774726609,-0.0659110765784785,-0.0881231499705626,-0.109569669159616 +7.764,-0.0384181605407738,0.0336668536071482,0.000760256356679825,0.0882814924905191,-0.0659053407084381,-0.0881310979814778,-0.109546533499588 +7.766,-0.0383778911265732,0.033685974808286,0.000732116695633694,0.0882403863808776,-0.0659113780628744,-0.0881305679223452,-0.109528122314812 +7.768,-0.0383538944197845,0.0336934722874453,0.000718893732921069,0.0882187071472274,-0.0659056423783258,-0.0881385066000728,-0.109505002419286 +7.77,-0.0383136427368919,0.0337125817462574,0.000690754361094226,0.0881776086864304,-0.0659116789149302,-0.0881379685358645,-0.109486612247684 +7.772,-0.0382896575101244,0.0337200701089686,0.000677530798203194,0.0881559351835024,-0.0659059434218469,-0.0881458978807138,-0.109463508111435 +7.774,-0.0382494235710791,0.0337391678289539,0.000649391767266499,0.0881148443539618,-0.0659119791259307,-0.0881453518128485,-0.109445138931889 +7.776,-0.0382254498246363,0.0337466470921952,0.000636167632961385,0.0880931765677995,-0.0659062438290009,-0.0881532718337383,-0.109422050547296 +7.778,-0.0381852336394841,0.0337657330739868,0.000608028996352816,0.0880520933547696,-0.0659122786848264,-0.0881527177722007,-0.109403702335885 +7.78,-0.0381612713725544,0.033773203252749,0.000594804320530259,0.0880304312736512,-0.0659065435887758,-0.08816062848373,-0.109380629693251 +7.782,-0.0381210729486307,0.0337922774952076,0.000566666132085461,0.0879893556628422,-0.0659125775813055,-0.0881600664431385,-0.109362302424011 +7.784,-0.0380971221593736,0.0337997386030333,0.000553440945083764,0.0879676992757064,-0.0659068426918978,-0.0881679678624619,-0.109339245512161 +7.786,-0.0380569415014613,0.0338188011043797,0.000525303257867732,0.0879266312512892,-0.0659128758080248,-0.088167397858259,-0.109320939157992 +7.788,-0.0380330021872048,0.0338262531540269,0.000512077589826368,0.0879049805463494,-0.0659071411326698,-0.088175290002165,-0.109297897965002 +7.79,-0.0379928392979824,0.0338453039128836,0.000483940455257889,0.0878639200895348,-0.0659131733619048,-0.0881747120473861,-0.109279612498618 +7.792,-0.0379689114554878,0.0338527469170081,0.000470714335595063,0.0878422750532305,-0.0659074389098898,-0.0881825949299183,-0.109256587012567 +7.794,-0.0379287663361506,0.0338717859332276,0.000442577802917496,0.0878012221414577,-0.0659134702445342,-0.0881820090328013,-0.109238322407322 +7.796,-0.0379048499618999,0.0338792199049768,0.000429351259976563,0.0877795827577958,-0.0659077360269357,-0.0881898826636074,-0.109215312616933 +7.798,-0.0378647226128561,0.0338982471801917,0.000401215376077554,0.0877385373645342,-0.0659137664618495,-0.0881892888262001,-0.109197068847449 +7.8,-0.0378408177033299,0.0339056721336458,0.000387988436959558,0.0877169036148573,-0.065908032491222,-0.0881971532097076,-0.10917407474256 +7.802,-0.0378007081248661,0.0339246876715113,0.000359853246498981,0.0876758657099188,-0.0659140620233117,-0.0881965514274593,-0.109155851785083 +7.804,-0.0377768146767771,0.0339321036219299,0.00034662593707499,0.0876542375730353,-0.0659083283132469,-0.0882044065628228,-0.109132873356889 +7.806,-0.0377367228696206,0.0339511074280796,0.000318491482852803,0.0876132071232784,-0.0659143569408058,-0.0882037968250456,-0.109114671189387 +7.808,-0.037712840880083,0.0339585143919534,0.000305263827923855,0.0875915845758923,-0.0659086235054576,-0.0882116427067556,-0.109091708430468 +7.81,-0.0376727668458132,0.0339775064737171,0.000277130151405722,0.0875505615461574,-0.0659146512274749,-0.0882110249977446,-0.109073527032481 +7.812,-0.0376490244567442,0.033986320590102,0.000263050182615798,0.0875276623525963,-0.0659125663996122,-0.0882153035499565,-0.109054104012619 +7.814,-0.0376137799232099,0.0340023241761666,0.000239029026307735,0.0874925515552583,-0.065915046088225,-0.0882179733925817,-0.109035318995701 +7.816,-0.0375926211434396,0.0340077350363836,0.000228296100329331,0.0874744926661152,-0.0659063209537129,-0.0882280865357802,-0.109011389668276 +7.818,-0.0375489856819911,0.0340289590957654,0.00019710164352385,0.0874294959664527,-0.0659138479395218,-0.0882262300327406,-0.108993784022249 +7.82,-0.0375235258514167,0.0340373788897842,0.000182497273149174,0.0874062418247285,-0.0659087185187252,-0.0882336350145548,-0.108971096570279 +7.822,-0.03748797048831,0.0340545180783948,0.000157619232476702,0.0873694920082086,-0.0659149092319571,-0.0882320604144102,-0.108954969655894 +7.824,-0.0374668636146088,0.0340600379615685,0.000146823417003686,0.0873514656482877,-0.0659066728740081,-0.0882421338197948,-0.108931386416247 +7.826,-0.0374233041279356,0.0340810059320922,0.000115755542072202,0.0873065044317393,-0.0659138350357348,-0.0882404311418389,-0.108913388824337 +7.828,-0.0373979242632024,0.0340891944430708,0.000101278058208157,0.0872834274039994,-0.06590843733547,-0.0882481364664577,-0.108890387509415 +7.83,-0.0373574148249035,0.0341079150074507,7.30347672497772e-05,0.0872420847187756,-0.0659139724029835,-0.0882475559912392,-0.108871395662356 +7.832,-0.0373335729040812,0.0341149023729898,6.0008618202087e-05,0.0872206091931872,-0.0659079533165428,-0.0882555313232647,-0.108847805913347 +7.834,-0.0372961655067645,0.0341333552059467,3.33152441918672e-05,0.087181520082518,-0.0659160666794925,-0.0882529087804536,-0.108832227969789 +7.836,-0.0372739606239798,0.0341395720672434,2.14763068757673e-05,0.0871621370090461,-0.065909043095176,-0.0882624623381916,-0.108808896529559 +7.838,-0.0372316549103468,0.0341595969313662,-8.53065016247212e-06,0.0871184025991204,-0.0659156166678645,-0.0882612061260545,-0.108790405665421 +7.84,-0.037206900528414,0.0341672583789051,-2.24633452196726e-05,0.0870959775948031,-0.0659099661082646,-0.0882692197388812,-0.108767107320374 +7.842,-0.0371660391099453,0.0341862949801962,-5.11529016832962e-05,0.0870540495855095,-0.0659160453060888,-0.0882683869581067,-0.108748325694637 +7.844,-0.0371420052950215,0.0341934374989668,-6.44140425495737e-05,0.0870323056753775,-0.0659103038060477,-0.0882762823813396,-0.108724849816646 +7.846,-0.0371007623787389,0.0342129121607552,-9.35817984576148e-05,0.0869898108745415,-0.0659171786329266,-0.0882749943872965,-0.108706485774999 +7.848,-0.0370766529555349,0.0342216875543418,-0.000107954081281739,0.0869664228732541,-0.0659154755355318,-0.0882790421922326,-0.10868673279468 +7.85,-0.0370409722042277,0.0342377864159566,-0.00013240931400714,0.0869306443021942,-0.0659184945185064,-0.0882813624253552,-0.108667773965642 +7.852,-0.0370197458420543,0.034243035662192,-0.000143193790847956,0.0869124568836683,-0.0659100274986311,-0.0882914286783643,-0.108643612652119 +7.854,-0.0369758730289548,0.0342643380750542,-0.00017473299531269,0.0868669099517942,-0.0659179924865532,-0.0882892420326495,-0.108625982088876 +7.856,-0.0369503990783979,0.0342726668145272,-0.000189409901927257,0.0868435400357529,-0.0659130511111648,-0.0882965957249647,-0.108603221615634 +7.858,-0.0369106103902585,0.0342910542375224,-0.000217191771177294,0.0868028207716374,-0.0659183975619375,-0.0882960995402027,-0.108584400431873 +7.86,-0.0368870941565205,0.0342979378079704,-0.000230044143658889,0.0867816154542865,-0.0659122314674999,-0.0883040743356207,-0.108561010754246 +7.862,-0.0368457573713091,0.0343176346926874,-0.000259403052079513,0.0867389950994549,-0.0659191593492486,-0.0883027040176512,-0.108543050352888 +7.864,-0.0368214156392718,0.034325218376294,-0.000273106835783021,0.0867167620121895,-0.0659138348170291,-0.0883102246149153,-0.108520144707984 +7.866,-0.0367814162338672,0.0343440189405198,-0.000301297692766933,0.0866756145981014,-0.0659198818768037,-0.0883094378756705,-0.108501901460422 +7.868,-0.0367577154261546,0.0343511849137736,-0.000314453908135545,0.0866540987724541,-0.0659141086139374,-0.088317258121679,-0.108478894148257 +7.87,-0.0367217494998375,0.034368978419289,-0.000340144428805603,0.086616438366427,-0.0659214039150151,-0.0883151608088949,-0.108463661896035 +7.872,-0.0367001803982938,0.0343750177726441,-0.000351610164463695,0.0865977026002792,-0.0659138421849995,-0.0883249153489431,-0.108440718201329 +7.874,-0.0366584362599481,0.0343949581381068,-0.000381337234546406,0.0865545162155134,-0.0659199293236851,-0.088323871976202,-0.108422814997441 +7.876,-0.0366338563913743,0.0344027675391276,-0.00039529146117534,0.0865322466105314,-0.0659139263121515,-0.0883318559788552,-0.108400057104868 +7.878,-0.0365935997960048,0.0344215718716181,-0.000423567598890229,0.0864910368591738,-0.0659192797418139,-0.0883312903538621,-0.108381682607159 +7.88,-0.0365697964250166,0.0344287576745271,-0.000436754901636749,0.0864695370764498,-0.0659130899627063,-0.0883391506861899,-0.108358632088761 +7.882,-0.0365330431478761,0.0344469005210367,-0.000463018752379044,0.0864311712841177,-0.0659204898713173,-0.0883367701634352,-0.108343388702179 +7.884,-0.0365111432996501,0.0344530669519035,-0.000474718588188344,0.0864120944509404,-0.0659130104305994,-0.0883462897832472,-0.108320413260368 +7.886,-0.0364689726933644,0.0344731042843397,-0.000504741605031514,0.0863685115251827,-0.0659192692454721,-0.088345033284506,-0.108302395917522 +7.888,-0.0364442720406959,0.0344808509150529,-0.000518758346543483,0.0863461030340676,-0.0659133975989058,-0.08835289897753,-0.108279500633848 +7.89,-0.0364037000513772,0.0344997328633302,-0.000547311097355965,0.0863044922986632,-0.065919093757274,-0.0883521222845452,-0.108261049659174 +7.892,-0.0363797643371974,0.034508342163689,-0.000561565844512668,0.086281376436432,-0.0659168381013902,-0.088356282150184,-0.108241365448239 +7.894,-0.0363436308807427,0.0345246733143259,-0.000586474930147726,0.0862451175403704,-0.0659199279687058,-0.088358372527915,-0.108222661628259 +7.896,-0.0363222156254205,0.0345299966147184,-0.000597480772436765,0.086226693156615,-0.0659115369521314,-0.088368223596566,-0.108198656544308 +7.898,-0.0362783326632687,0.034551163262789,-0.000629096515889979,0.0861810796585161,-0.0659194992474711,-0.0883659176821719,-0.108181089929091 +7.9,-0.0362529389877651,0.0345593157378996,-0.000643760571190019,0.0861577367229736,-0.0659146154938199,-0.0883731666110119,-0.108158340751626 +7.902,-0.0362130619436879,0.0345776660017936,-0.000671749949900241,0.0861167661531817,-0.06592025149491,-0.0883724520827557,-0.108139645361727 +7.904,-0.0361894226058701,0.0345860090044608,-0.000685773412209115,0.0860938859176209,-0.0659181129989367,-0.0883766146373701,-0.108119842118542 +7.906,-0.0361532614665609,0.0346023984777805,-0.000710816702492206,0.0860574318986104,-0.0659215681379907,-0.0883785408672282,-0.108101242382676 +7.908,-0.0361317888472052,0.0346077549746123,-0.00072192580281745,0.0860388801077532,-0.0659134149537058,-0.0883883222020092,-0.108077303420731 +7.91,-0.0360882897799815,0.034628712575164,-0.000753295075889338,0.0859935646031495,-0.0659212888300527,-0.0883860802411039,-0.108059759297729 +7.912,-0.0360630604042499,0.0346367774277757,-0.000767864078135755,0.0859703586418,-0.0659163557170757,-0.0883933597658733,-0.108037055193427 +7.914,-0.0360232929596763,0.0346551177926592,-0.000795831937601882,0.0859294379657338,-0.0659219712029248,-0.0883926299350433,-0.108018491448302 +7.916,-0.0359997040119765,0.0346634843114536,-0.000809865259452369,0.0859065857887972,-0.0659197869412216,-0.0883967717462944,-0.107998813662598 +7.918,-0.0359636771471894,0.0346798272627726,-0.000834830745923137,0.0858702564106764,-0.065923093002181,-0.0883987120652186,-0.10798031307922 +7.92,-0.0359422548213078,0.0346852071102481,-0.000845935465573669,0.0858517394384492,-0.0659148358743731,-0.0884084535063634,-0.107956493813432 +7.922,-0.0358988299712011,0.0347061543888139,-0.000877273831358452,0.0858065042197222,-0.0659225698908066,-0.0884062212653196,-0.107939079700205 +7.924,-0.0358736240889303,0.0347142543097566,-0.000891858956230299,0.0857833103129098,-0.0659175335410243,-0.0884134575345477,-0.107916502003275 +7.926,-0.0358339238491938,0.034732578001969,-0.000919795910895679,0.0857424691593382,-0.06592300538882,-0.0884127390655734,-0.107898049870382 +7.928,-0.0358103605165639,0.03474096609557,-0.000933840720388837,0.085719641259059,-0.0659207228001007,-0.0884168571250685,-0.107878481012753 +7.93,-0.0357743776890478,0.0347572949115273,-0.00095879174845645,0.085683360248531,-0.0659239179955079,-0.0884187968375174,-0.107860068502084 +7.932,-0.0357529831201208,0.0347626812308426,-0.000969901297452891,0.0856648623282097,-0.0659155909662484,-0.0884285095834959,-0.107836331219088 +7.934,-0.0357096033040559,0.0347836027443071,-0.00100122961541167,0.085619666740067,-0.0659232528101226,-0.0884262815694368,-0.107818997888409 +7.936,-0.0356844299713885,0.034791688862946,-0.00101581467525771,0.0855964950374934,-0.0659181739245505,-0.0884335003753202,-0.107796482396087 +7.938,-0.0356447759300301,0.0348099811575267,-0.00104374515013206,0.0855556826027552,-0.065923612144099,-0.0884327763619754,-0.107778093886107 +7.94,-0.0356212481810964,0.0348183433539244,-0.00105778826010519,0.0855328805242522,-0.0659213150711914,-0.088436885847504,-0.107758569986603 +7.942,-0.0355853058013705,0.034834636603668,-0.00108273614300275,0.0854966142348876,-0.0659245087006441,-0.0884388092736987,-0.107740200801125 +7.944,-0.0355639460998743,0.0348399859430556,-0.00109383699924614,0.0854781400286126,-0.0659161917817592,-0.0884485084833139,-0.107716490380407 +7.946,-0.0355206158623489,0.0348608671314327,-0.00112516364263204,0.0854329534832279,-0.065923877492876,-0.0884462580405348,-0.107699206618038 +7.948,-0.0354954802343297,0.0348689115264164,-0.00113974141074438,0.0854098006817476,-0.0659188232884663,-0.0884534595406979,-0.107676717279601 +7.95,-0.0354558783223331,0.0348871605619601,-0.00116766731063653,0.0853690011409766,-0.0659242932006684,-0.088452711923738,-0.107658373220492 +7.952,-0.0354323904788442,0.0348954818140244,-0.00118170440664597,0.0853462210825808,-0.0659220249807512,-0.0884568068246329,-0.107638876555684 +7.954,-0.0353964928557718,0.0349117341713748,-0.00120664914027485,0.0853099616412057,-0.0659252516436485,-0.0884587010319671,-0.107620544644311 +7.956,-0.0353751648376556,0.0349170453841185,-0.0012177439300044,0.0852915024633625,-0.0659169660466629,-0.0884683771118153,-0.107596859403771 +7.958,-0.0353318932216111,0.0349378839289329,-0.00124906343623955,0.0852463286881746,-0.0659246801552892,-0.0884660972321861,-0.107579629144043 +7.96,-0.0353067941801982,0.0349458922122625,-0.00126363622992595,0.0852231897860097,-0.0659196495607791,-0.0884732717564813,-0.107557174971919 +7.962,-0.0352714823258878,0.0349628339114251,-0.00128877987722748,0.08518621361503,-0.0659261112592888,-0.088471325554153,-0.107541563829914 +7.964,-0.0352506069851927,0.0349680923733454,-0.001299642612286,0.0851682259681056,-0.0659180239812506,-0.0884811582337785,-0.107518312301848 +7.966,-0.0352076400030851,0.0349886828802779,-0.00133069857139896,0.0851233313099374,-0.0659252353670652,-0.0884791502955479,-0.107500935031963 +7.968,-0.0351826619428251,0.0349965636687635,-0.00134515558828614,0.0851004170029649,-0.0659198344488311,-0.0884866222705327,-0.107478386293067 +7.97,-0.0351427425949929,0.0350149446560303,-0.00137337636021499,0.085059233688743,-0.0659253254412507,-0.0884857890827591,-0.107460093210571 +7.972,-0.0351192802207385,0.0350216913727467,-0.00138641417352924,0.0850379316419524,-0.0659192476122201,-0.0884935149326958,-0.107437049946867 +7.974,-0.0350824862280728,0.03503979466131,-0.00141305610658805,0.0849991082384521,-0.0659271484489661,-0.0884907096365779,-0.107422142203824 +7.976,-0.0350606515890839,0.0350457790905193,-0.00142487689203104,0.0849799121882106,-0.0659199879386597,-0.0884999901899521,-0.107399332159924 +7.978,-0.0350189353021034,0.0350654837720932,-0.00145484322540509,0.084936388146029,-0.0659264048757001,-0.0884984936739197,-0.107381631663383 +7.98,-0.034994544449334,0.0350729407758237,-0.00146879837275596,0.0849141118942312,-0.0659206387997881,-0.0885062013235457,-0.107358948277362 +7.982,-0.0349543312383201,0.035091604378225,-0.00149738550812739,0.0848724916339218,-0.0659264817483466,-0.088505165515765,-0.10734093144279 +7.984,-0.0349306965772615,0.0350985153700739,-0.00151064125419015,0.0848509496024303,-0.0659205930292527,-0.0885127729182293,-0.107318066132947 +7.986,-0.0348900730885077,0.0351176270359283,-0.00153974019930656,0.084808725203764,-0.0659272554095929,-0.0885112647844149,-0.107300472729415 +7.988,-0.03486620277683,0.0351247811148074,-0.00155328729472602,0.0847868011084237,-0.065921839226215,-0.0885185919736911,-0.107277858402338 +7.99,-0.0348263760803423,0.0351434389283604,-0.00158175223871794,0.0847454039657208,-0.0659281653922335,-0.088517364991283,-0.107260236126096 +7.992,-0.0348028704506294,0.0351503982370558,-0.00159502236777985,0.0847238580972608,-0.0659225822286501,-0.0885248327771271,-0.10723765065872 +7.994,-0.0347631844591695,0.0351690770555523,-0.00162344706367622,0.0846825547898564,-0.0659289229830779,-0.0885236423779866,-0.107220217152791 +7.996,-0.0347397055175392,0.0351761005318543,-0.00163674870146918,0.0846610161642328,-0.0659233402697041,-0.0885311106541353,-0.107197786726162 +7.998,-0.0347003378866159,0.0351946254036429,-0.00166492070626525,0.0846200690951139,-0.0659294363251195,-0.0885300648665323,-0.107180414516704 +8,-0.0346771326864506,0.0352030599921134,-0.00167902193747335,0.0845974157964171,-0.0659273533668851,-0.0885340748857571,-0.107161618269638 +8.002,-0.0346425127919454,0.0352186424232684,-0.00170305174694189,0.0845624040219734,-0.0659298134873461,-0.0885363264040799,-0.107143587750287 +8.004,-0.0346217838989015,0.0352237409328659,-0.00171379833772244,0.084544524008464,-0.065921105339487,-0.0885460632780801,-0.107120303111425 +8.006,-0.0345790249836756,0.0352444500256239,-0.00174488365295357,0.0844997969088607,-0.0659284891773101,-0.0885438557861576,-0.1071036753418 +8.008,-0.0345541028099425,0.0352525194834172,-0.00175947030747949,0.0844767660268974,-0.0659232555075681,-0.0885508773561831,-0.107081738110251 +8.01,-0.0345151078313375,0.0352704665825018,-0.00178704026279738,0.0844365619704235,-0.0659282453532418,-0.0885502056305734,-0.107063862020993 +8.012,-0.034491864156205,0.035278740508633,-0.00180103218489101,0.0844139870302122,-0.0659257461655339,-0.0885541715501857,-0.107044827625175 +8.014,-0.0344562657744232,0.0352948307783636,-0.00182585486855949,0.084377978386354,-0.0659286952571699,-0.0885559803984567,-0.107026898371367 +8.016,-0.0344350848694114,0.0353001010088603,-0.00183695546575195,0.0843595842971566,-0.0659203005671979,-0.0885654316554434,-0.107003581795933 +8.018,-0.0343921252548028,0.0353207342273043,-0.00186816508524024,0.0843146427350149,-0.0659278355165225,-0.088563091581425,-0.106986741754248 +8.02,-0.0343672056800853,0.0353286251308413,-0.00188271919402586,0.0842915922616952,-0.0659227461768814,-0.0885700884971082,-0.106964588512415 +8.022,-0.0343321427108208,0.0353453865496444,-0.00190782087500886,0.0842547609144143,-0.0659291473400023,-0.0885680481073251,-0.106949285887909 +8.024,-0.0343114347444499,0.0353504958065244,-0.0019186549706333,0.0842368595950093,-0.0659210805168967,-0.0885777222067424,-0.106926245599547 +8.026,-0.0342687264905917,0.0353708897903987,-0.00194968267245015,0.0841920353293599,-0.0659283483063195,-0.0885755679229981,-0.106909175168046 +8.028,-0.0342439293743086,0.0353785956491706,-0.00196411865595496,0.0841691858584391,-0.0659230359393149,-0.0885828806105018,-0.106886825729351 +8.03,-0.0342042949475085,0.0353967617402456,-0.00199229725825159,0.0841280874857042,-0.0659286225379628,-0.0885818972706171,-0.106868804689144 +8.032,-0.0341810269328814,0.0354033170366015,-0.00200530256959762,0.0841068698948157,-0.06592265643602,-0.0885894776018613,-0.106845938299625 +8.034,-0.0341445021872751,0.0354212202987636,-0.00203192826100691,0.0840681091734732,-0.0659306676088667,-0.0885865153644207,-0.106831275269165 +8.036,-0.0341228423024097,0.0354270195227613,-0.00204371774295024,0.084048979548892,-0.065923629338924,-0.0885956402181268,-0.106808614483093 +8.038,-0.0340814071784961,0.0354465304347388,-0.00207365988211036,0.0840054969248779,-0.0659301871646663,-0.0885939563985398,-0.106791197131937 +8.04,-0.0340571960193352,0.0354538183347306,-0.00208759705136485,0.0839832709265949,-0.0659245477644501,-0.0886014936415561,-0.106768702145545 +8.042,-0.0340172843371256,0.0354722784908061,-0.00211613636134433,0.0839417289748399,-0.0659304836804388,-0.08860028778644,-0.106750966093891 +8.044,-0.0339938353767461,0.0354790300471599,-0.0021293707203103,0.0839202514719596,-0.0659246866656999,-0.088607730756622,-0.106728304463482 +8.046,-0.0339535089114954,0.0354979511340071,-0.00215842642575917,0.0838781043541544,-0.0659314062898315,-0.0886060550622677,-0.106711008389766 +8.048,-0.0339298184060323,0.0355049651955581,-0.0021719606283641,0.0838562380287182,-0.0659260526194556,-0.0886132137147272,-0.106688618255043 +8.05,-0.0338902869361886,0.0355234398986362,-0.00220037610430954,0.0838149328053154,-0.065932395676964,-0.0886118318441925,-0.106671300160269 +8.052,-0.0338669578868695,0.0355302737173468,-0.00221363499163367,0.0837934471020409,-0.0659268464792735,-0.0886191335900133,-0.106648952383851 +8.054,-0.0338275605455467,0.0355487778133089,-0.00224200959425123,0.0837522382163716,-0.0659331739831117,-0.0886177957854701,-0.106631829335965 +8.056,-0.0338042541273414,0.0355556867093286,-0.00225530215687618,0.0837307585002988,-0.0659276041885084,-0.0886251002895895,-0.106609645743063 +8.058,-0.0337651703828694,0.0355740414369096,-0.00228342144079169,0.0836899098774852,-0.0659336656217012,-0.0886239158032856,-0.106592585582004 +8.06,-0.0337419821414417,0.0355809332691571,-0.00229663411924172,0.0836685662471285,-0.0659279505630576,-0.0886312573802984,-0.106570496748509 +8.062,-0.0337029629988129,0.035599289941462,-0.00232470699982359,0.0836278139638037,-0.0659338975974915,-0.0886301111098852,-0.106553544146262 +8.064,-0.0336797792091691,0.0356062274514286,-0.00233793330614325,0.0836064772705245,-0.0659281191286245,-0.0886374248550059,-0.106531560084029 +8.066,-0.0336408374493128,0.0356245458829582,-0.00236593212670892,0.0835658480180792,-0.0659339375166744,-0.088636323533695,-0.1065146640911 +8.068,-0.033617678896719,0.0356314895851614,-0.00237914357236173,0.0835445443373707,-0.0659280944254593,-0.0886436204927734,-0.106492741655915 +8.07,-0.0335787460408903,0.0356498026531469,-0.00240713165560323,0.0835039501282285,-0.0659338631308408,-0.0886425278942114,-0.106475896275853 +8.072,-0.0335555899056548,0.0356567505852259,-0.00242034724540548,0.0834826500366378,-0.0659280015047862,-0.0886498036954079,-0.106454015266706 +8.074,-0.0335166757710414,0.035675040450193,-0.00244831980492834,0.0834420876677525,-0.0659337480586079,-0.0886487177990108,-0.106437193869307 +8.076,-0.0334935345529954,0.0356819692961056,-0.00246152754866349,0.0834208021452868,-0.0659278873716324,-0.0886559843513852,-0.106415327297826 +8.078,-0.0334546293331124,0.0357002395324943,-0.0024895008794845,0.0833802437181963,-0.0659336536087563,-0.0886548910919988,-0.106398520365486 +8.08,-0.0334315013757091,0.0357071424786944,-0.00250270342068395,0.0833589663817801,-0.0659278189950821,-0.0886621496798071,-0.10637665502005 +8.082,-0.0333926131129384,0.0357253871641594,-0.00253067588877849,0.0833184084594044,-0.0659336233363797,-0.0886610431437706,-0.106359853249095 +8.084,-0.0333695026939984,0.0357322579719292,-0.00254387029142771,0.083297140466814,-0.0659278258226154,-0.0886682942936549,-0.106337981077598 +8.086,-0.0333306320807625,0.0357504791650499,-0.00257184527932799,0.0832565756389056,-0.0659336805091719,-0.0886671667403666,-0.106321183692358 +8.088,-0.0333075379695542,0.0357573198059435,-0.00258503372548126,0.0832353125980997,-0.0659279256422385,-0.0886744064656129,-0.106299304982585 +8.09,-0.0332686887899617,0.0357755183780299,-0.00261300950457394,0.0831947417361855,-0.0659338290777974,-0.0886732546348419,-0.106282513672897 +8.092,-0.0332456106369552,0.0357823328441957,-0.00262619313169028,0.0831734815345122,-0.0659281135163913,-0.0886804792879998,-0.106260632539463 +8.094,-0.0332067839396078,0.0358005120350299,-0.0026541688983079,0.0831329057600556,-0.0659340577702848,-0.0886793018290789,-0.106243851997159 +8.096,-0.0331837200793951,0.0358073066567312,-0.00266734992750324,0.0831116458587761,-0.065928373885725,-0.0886865081500807,-0.106221975214179 +8.098,-0.03314491712046,0.0358254691867905,-0.00269532356404925,0.0830710687664319,-0.065934345993017,-0.0886853064905293,-0.106205210376794 +8.1,-0.033121866485287,0.0358322499763825,-0.00270850345058786,0.0830498082410854,-0.0659286833757915,-0.0886924929189087,-0.106183344801048 +8.102,-0.0330830873189602,0.0358503986920479,-0.00273647342221524,0.0830092330552081,-0.0659346699310642,-0.0886912696730368,-0.106166600258891 +8.104,-0.0330600488893641,0.0358571708709173,-0.002749653359154,0.0829879716318444,-0.0659290184005721,-0.0886984359880785,-0.106144751732627 +8.106,-0.033021293208777,0.0358753078870864,-0.00277761832182677,0.0829474013374877,-0.0659350075514652,-0.088697194450627,-0.106128030719758 +8.108,-0.03299826642345,0.0358820750524126,-0.00279079883352312,0.0829261395981458,-0.0659293585794049,-0.0887043416563408,-0.10610620316297 +8.11,-0.0329595333490404,0.0359002018951353,-0.00281875811507443,0.0828855761244618,-0.0659353418165848,-0.0887030849863535,-0.106089507443139 +8.112,-0.0329365178708407,0.0359069660373632,-0.00283193929920372,0.0828643150035996,-0.0659296895727901,-0.0887102148377518,-0.106067702744689 +8.114,-0.0328978063504649,0.0359250834741058,-0.00285989266333651,0.0828237594213655,-0.0659356620132894,-0.0887089457997059,-0.106051032617385 +8.116,-0.0328748020903883,0.0359318450842929,-0.00287307421202176,0.0828025000841558,-0.0659300034309334,-0.0887160604882699,-0.10602925083532 +8.118,-0.0328361110078114,0.0359499532727171,-0.00290102180017837,0.082761952672302,-0.0659359635282475,-0.0887147812818773,-0.106012605487327 +8.12,-0.032813117996899,0.0359567117497945,-0.00291420318440667,0.0827406962735999,-0.0659302979438771,-0.0887218831038429,-0.105990845362059 +8.122,-0.0327744463767933,0.0359748103487568,-0.00294214529370553,0.0827001568449839,-0.0659362466058452,-0.0887205954024037,-0.10597422326903 +8.124,-0.0327514647165438,0.035981564425235,-0.00295532587641391,0.0826789044277778,-0.0659305750460775,-0.0887276865222104,-0.105952482798256 +8.126,-0.032712811786378,0.0359996528016092,-0.00298326283782621,0.0826383725535661,-0.0659365146473343,-0.0887263915321349,-0.105935882162223 +8.128,-0.0326898415753418,0.0360064009778985,-0.00299644200435305,0.0826171249463934,-0.065930839073084,-0.0887334737881611,-0.10591415915294 +8.13,-0.0326512067990144,0.0360244783886312,-0.00302437407941682,0.0825766001573278,-0.0659367725122785,-0.0887321723309738,-0.105897578256955 +8.132,-0.0326282480982974,0.0360312192680429,-0.00303755131872541,0.0825553579329646,-0.0659310951378635,-0.0887392471133309,-0.105875870747513 +8.134,-0.0325896311447312,0.0360492850292902,-0.00306547867045243,0.0825148398143722,-0.0659370251303651,-0.0887379396794495,-0.105859308208807 +8.136,-0.0325666839569109,0.0360560175427523,-0.00307865362865462,0.0824936032720777,-0.0659313479325676,-0.0887450078675618,-0.105837614734473 +8.138,-0.0325280846556265,0.0360740711438476,-0.00310657632620039,0.0824530914979924,-0.0659372765725832,-0.0887436946538184,-0.105821069633316 +8.14,-0.0325053214612226,0.0360822374080059,-0.00312064380343738,0.082430660298655,-0.0659352208690036,-0.0887473461253324,-0.105802956128529 +8.142,-0.0324713185774842,0.0360973644479123,-0.00314448539130729,0.0823959210262629,-0.0659376282949586,-0.088749238566771,-0.105785548714961 +8.144,-0.0324509747566023,0.0361021480124712,-0.00315516126122901,0.0823781991169253,-0.0659290525919703,-0.0887585509019073,-0.105762786607867 +8.146,-0.0324088985984612,0.0361223831021155,-0.00318609237034591,0.0823336820220224,-0.0659365169213726,-0.0887559856680055,-0.105746884338029 +8.148,-0.0323844009360048,0.0361300911616061,-0.00320061548261279,0.0823107822268922,-0.0659314515109093,-0.0887626003511211,-0.105725463177532 +8.15,-0.0323460790307729,0.036147567153571,-0.00322803659225129,0.0822707957434094,-0.0659365645794011,-0.0887615791790075,-0.105708252738211 +8.152,-0.0323234297550453,0.0361538501858016,-0.00324080826917246,0.0822499864314584,-0.065930439568766,-0.0887688015540263,-0.105686110843388 +8.154,-0.0322835195182148,0.0361726024598587,-0.00326986740484485,0.0822079593236376,-0.0659372361805436,-0.0887668316954488,-0.105669666939421 +8.156,-0.0322600620624724,0.0361795149677477,-0.00328347664493776,0.0821861002422393,-0.0659320157607275,-0.0887736037904626,-0.105647909213342 +8.158,-0.032221402667771,0.0361974203428576,-0.00331144932797517,0.0821454337190389,-0.0659380979406283,-0.0887721644822526,-0.105631127970756 +8.16,-0.0321985592582956,0.0362039090862576,-0.00332452581469549,0.0821242668406429,-0.065932524084315,-0.0887792463618151,-0.105609210453846 +8.162,-0.032159680680767,0.0362220782169327,-0.00335279743729039,0.0820832380640189,-0.0659389245358498,-0.0887776586462986,-0.105592674863491 +8.164,-0.032136694940245,0.0362287324912525,-0.00336605628470928,0.0820618710235776,-0.06593350946377,-0.0887846680816849,-0.105570917384601 +8.166,-0.0320982186832364,0.0362466661159542,-0.00339398541578251,0.0820212855039416,-0.0659396186666546,-0.0887832524444815,-0.105554349519627 +8.168,-0.0320754021232881,0.0362532454962411,-0.00340710675624868,0.082000109172795,-0.0659340489305159,-0.0887903205874892,-0.105532623015994 +8.17,-0.0320368918612415,0.0362712514820685,-0.00343508461810249,0.0819594800126173,-0.0659401470911376,-0.0887888729830028,-0.10551617350639 +8.172,-0.0320140307224284,0.0362779102560284,-0.00344826269611247,0.08193824382954,-0.0659345616786118,-0.0887958839837406,-0.105494553943357 +8.174,-0.0319756221964564,0.0362958639191512,-0.00347614126826204,0.0818977559277383,-0.0659405098408703,-0.0887944829594674,-0.105478142812609 +8.176,-0.0319527959756018,0.0363025291773812,-0.00348929309680834,0.0818765608011354,-0.065934838556663,-0.0888014803840762,-0.105456581492045 +8.178,-0.0319143754294742,0.0363205031157689,-0.00351717790486276,0.0818360790111305,-0.0659407291259154,-0.0888000767129223,-0.10544023415487 +8.18,-0.0318915368338126,0.0363271982795584,-0.00353034750003964,0.0818148689467651,-0.0659350215702403,-0.0888070470195133,-0.105418731916304 +8.182,-0.0318531438856875,0.0363451533877428,-0.00355820300335308,0.0817744336983862,-0.0659408432579612,-0.0888056613114898,-0.105402415334072 +8.184,-0.0318303204914142,0.0363518459812496,-0.00357136410576325,0.0817532409256901,-0.065935098709317,-0.0888126264436984,-0.10538094349041 +8.186,-0.0317919309236826,0.0363697955906704,-0.0035992192937441,0.0817128116309792,-0.0659408989417749,-0.0888112423661911,-0.105364654486214 +8.188,-0.0317691149059785,0.0363764823198261,-0.00361238034128569,0.0816916241291643,-0.0659351468081043,-0.0888182024322342,-0.105343201701787 +8.19,-0.0317307420344562,0.0363944138364781,-0.00364022807306269,0.0816512060583974,-0.0659409419888233,-0.0888168191159966,-0.105326926090918 +8.192,-0.0317079419395393,0.0364010818634464,-0.00365338161101132,0.0816300311381875,-0.0659351950329161,-0.0888237782448127,-0.105305478781215 +8.194,-0.0316695815436252,0.0364189979354811,-0.00368123042976541,0.0815896108050168,-0.0659410091875016,-0.0888223858208758,-0.1052892135847 +8.196,-0.0316467952271412,0.0364256456130894,-0.00369437910411818,0.0815684430968162,-0.0659352822027991,-0.0888293405707955,-0.105267767206116 +8.198,-0.0316084522108222,0.0364435433589541,-0.00372222713221564,0.0815280210570029,-0.0659411235714002,-0.0888279351627427,-0.105251509370699 +8.2,-0.0315856810664465,0.0364501691147311,-0.00373537002933801,0.0815068601441957,-0.065935421399678,-0.0888348831815201,-0.105230062168416 +8.202,-0.0315473556713926,0.0364680501213381,-0.00376321837785945,0.0814664340616783,-0.0659412936850589,-0.0888334609424379,-0.105213813214247 +8.204,-0.0315245982685489,0.0364746566219074,-0.00377635722634732,0.0814452769100061,-0.0659356172639417,-0.0888403988649929,-0.105192367709122 +8.206,-0.0314862928055058,0.0364925213514578,-0.0038042038265623,0.0814048490949647,-0.0659415160307421,-0.0888389592532471,-0.105176129892385 +8.208,-0.0314635487378612,0.0364991117335127,-0.00381733929926305,0.0813836946448112,-0.0659358611856949,-0.0888458850153605,-0.105154690008849 +8.21,-0.0314252638920802,0.0365169618915381,-0.00384518286058481,0.0813432668606975,-0.0659417792317511,-0.0888444284490746,-0.105138466744177 +8.212,-0.0314025322007603,0.0365235401308344,-0.00385831608491617,0.0813221139398918,-0.06593614002599,-0.0888513405409399,-0.1051170372022 +8.214,-0.0313642686852032,0.036541377072451,-0.00388615487572547,0.0812816887303928,-0.0659420684820723,-0.0888498685443771,-0.105100831553819 +8.216,-0.0313415488445892,0.0365479465648626,-0.00389928646701944,0.0812605370493492,-0.0659364382820805,-0.0888567663673265,-0.105079416498934 +8.218,-0.0313033065340652,0.0365657717532961,-0.00392711946494187,0.0812201161357564,-0.0659423692675818,-0.0888552805436617,-0.10506323100823 +8.22,-0.0312805980441142,0.0365723351905177,-0.00394024991816011,0.0811989656169813,-0.0659367424090019,-0.0888621640435943,-0.105041833573113 +8.222,-0.0312423765664659,0.0365901496840396,-0.00396807646040548,0.0811585502338792,-0.0659426698532915,-0.088860665937261,-0.105025669810376 +8.224,-0.0312196791917904,0.0365967086813278,-0.00398120592958898,0.0811374011751464,-0.06593704219296,-0.0888675355737021,-0.105004291777548 +8.226,-0.0311814778878117,0.036614513208603,-0.00400902587223236,0.0810969918169456,-0.0659429624614974,-0.0888660264011803,-0.104988150402193 +8.228,-0.0311587915244525,0.0366210684206313,-0.00402215431736461,0.0810758446522442,-0.0659373316805539,-0.0888728829527377,-0.104966792312052 +8.23,-0.0311206097371266,0.0366388632745294,-0.00404996778551099,0.0810354413727547,-0.0659432433496185,-0.0888713636445867,-0.104950673164529 +8.232,-0.0310979344290637,0.0366454145384709,-0.00406309497671851,0.0810142966553457,-0.0659376087274048,-0.0888782081033345,-0.104929334557105 +8.234,-0.0310597715674973,0.0366631996717972,-0.00409090226661092,0.0809738992005671,-0.065943512134586,-0.0888766793321643,-0.104913236919437 +8.236,-0.0310371074220894,0.0366697462995089,-0.00410402788535168,0.0809527574885742,-0.0659378741620358,-0.0888835127582711,-0.104891916708442 +8.238,-0.0309989630515517,0.0366875214011194,-0.00413182930621048,0.080912365516018,-0.0659437707338124,-0.0888819750288678,-0.104875839559063 +8.24,-0.0309763101994802,0.0366940624498219,-0.00414495300194924,0.0808912273240084,-0.0659381306100783,-0.0888887984390195,-0.10485453639224 +8.242,-0.0309381840351179,0.0367118270740743,-0.00417274880458571,0.0808508405134951,-0.0659440222402505,-0.0888872521421147,-0.104838478655013 +8.244,-0.0309155425797499,0.0367183615939132,-0.00418587026034085,0.0808297062533206,-0.0659383814208391,-0.0888940664086985,-0.104817191222363 +8.246,-0.0308774344694187,0.0367361152678224,-0.00421366059053384,0.0807893243816003,-0.0659442699570232,-0.08889251185771,-0.104801151948706 +8.248,-0.030854804465949,0.0367426424707101,-0.00422677955810016,0.0807681943368531,-0.0659386297982606,-0.0888993176434388,-0.104779879189933 +8.25,-0.0308167143475947,0.0367603847866885,-0.00425456445922977,0.0807278172835755,-0.0659445167149646,-0.0888977550778161,-0.104763857673522 +8.252,-0.0307940957956965,0.0367669041407066,-0.00426768077902696,0.0807066915973779,-0.0659388782580047,-0.088904552800713,-0.104742598884128 +8.254,-0.0307560236610845,0.0367846348127092,-0.00429546021418221,0.0806663193211059,-0.0659447645051227,-0.088902982373587,-0.104726594703314 +8.256,-0.0307334165158624,0.03679114606324,-0.00430857381386737,0.0806451980054292,-0.0659391283882622,-0.0889097722054004,-0.104705349548731 +8.258,-0.0306953623806547,0.0368088649514636,-0.00433634770176092,0.0806048304994717,-0.0659450143904154,-0.0889081939640346,-0.104689362553248 +8.26,-0.0306727665712355,0.0368153680900425,-0.00434945858276356,0.0805837134564496,-0.0659393808664127,-0.0889149758551212,-0.104668131017468 +8.262,-0.0306347304586679,0.0368330751953111,-0.00437722683148424,0.0805433507073448,-0.065945266620884,-0.0889133897283212,-0.104652161276145 +8.264,-0.0306121459099703,0.0368395703959417,-0.00439033504711726,0.080522237760128,-0.0659396356403077,-0.0889201634530008,-0.104630943572466 +8.266,-0.0305741278446404,0.0368572658333994,-0.00441809757999352,0.0804818797179779,-0.0659455208637627,-0.0889185692526267,-0.10461499130204 +8.268,-0.0305515544957491,0.0368637533774338,-0.00443120321162499,0.0804607706446477,-0.0659398921877566,-0.0889253344663602,-0.104593787772561 +8.27,-0.030513554505002,0.0368814373379264,-0.0044589599805482,0.0804204172119657,-0.0659457764670031,-0.0889237319065466,-0.104577853263637 +8.272,-0.0304909923212754,0.0368879175430529,-0.00447206311553094,0.0803993117786333,-0.0659401497782451,-0.0889304882070558,-0.104556664287332 +8.274,-0.0304530104393706,0.0369055902513617,-0.00449981410245726,0.0803589628164355,-0.0659460326950791,-0.0889288769388166,-0.104540747839703 +8.276,-0.0304304594167553,0.0369120634152301,-0.00451291481684649,0.0803378608056211,-0.0659404076866969,-0.0889356239236693,-0.104519573761611 +8.278,-0.0303924956884701,0.0369297250920099,-0.00454066002602871,0.080297516152364,-0.0659462889011191,-0.0889340035791496,-0.104503675635829 +8.28,-0.0303699558507914,0.0369361914551045,-0.00455375837324178,0.0802764173843915,-0.0659406653338254,-0.0889407408939394,-0.104482516722372 +8.282,-0.0303320103320375,0.0369538422873891,-0.00458149781845443,0.0802360768807936,-0.0659465446232942,-0.0889391111324053,-0.10446663711001 +8.284,-0.0303094817230966,0.0369603020152958,-0.00459459382399209,0.080214981226898,-0.0659409223503276,-0.0889458385054493,-0.104445493529675 +8.286,-0.0302715544778958,0.036977942137893,-0.00462232751491075,0.080174644739897,-0.0659467996119113,-0.0889441990532306,-0.104429632541235 +8.288,-0.0302490371509082,0.0369843953198877,-0.00463542117629176,0.0801535521269974,-0.0659411785776117,-0.0889509163148428,-0.104408504365921 +8.29,-0.0302111282453025,0.0370020248078991,-0.00466314910744556,0.0801132195674317,-0.06594705380496,-0.088949266993072,-0.104392662033045 +8.292,-0.0301886222521513,0.0370084714671642,-0.00467624039802864,0.0800921299754038,-0.065941434025988,-0.0889559740794832,-0.104371549253571 +8.294,-0.0301507317465486,0.0370260903382292,-0.00470396254238666,0.080051801306347,-0.0659473072741436,-0.0889543148161646,-0.104355725541239 +8.296,-0.0301282371288666,0.037032530448653,-0.00471705141756806,0.080030714759391,-0.0659416888127744,-0.0889610117599856,-0.104334628090275 +8.298,-0.0300903650706237,0.037050138672485,-0.00474476772539241,0.0799903899945189,-0.065947560162046,-0.0889593425859563,-0.10431882291457 +8.3,-0.0300678818539863,0.0370565721775855,-0.00475785412975238,0.0799693065486398,-0.0659419430994508,-0.0889660294964085,-0.104297740691289 +8.302,-0.030030028271856,0.0370741696899278,-0.00478556453211409,0.0799289857420882,-0.0659478126261433,-0.0889643505274319,-0.104281953938847 +8.304,-0.0300075564635552,0.0370805965205289,-0.00479864840632772,0.0799079054708193,-0.0659421970409864,-0.0889710275643148,-0.104260886831107 +8.306,-0.0299697213650814,0.0370981832387347,-0.00482635282186485,0.0798675887014191,-0.0659480647989219,-0.0889693389735419,-0.104245118377366 +8.308,-0.0299472609552423,0.0371046033273073,-0.00483943410854315,0.0798465116818122,-0.0659424507538494,-0.0889760063191196,-0.104224066279018 +8.31,-0.0299094443274937,0.0371221791651496,-0.00486713245165572,0.0798061990351647,-0.0659483167671429,-0.088974308305106,-0.104208316003325 +8.312,-0.0298869952927674,0.0371285924558724,-0.00488021109962042,0.079785125335685,-0.0659427043033108,-0.0889809661376895,-0.104187278825702 +8.314,-0.0298491971061016,0.0371461573358282,-0.00490790328835911,0.0797448168873816,-0.0659485685684016,-0.0889792588931575,-0.104171546622305 +8.316,-0.0298267594148949,0.0371525637903467,-0.00492097925518274,0.0797237465588865,-0.065942957706541,-0.088985907365409,-0.104150524300148 +8.318,-0.0297889796289054,0.0371701176523255,-0.00494866521747483,0.0796834423614547,-0.0659488202001829,-0.0889841910511131,-0.104134810084876 +8.32,-0.0297665532470362,0.0371765172517831,-0.00496173847037511,0.0796623754318357,-0.0659432109458462,-0.0889908302750234,-0.104113802577624 +8.322,-0.0297287918175463,0.0371940600579155,-0.00498941814774748,0.0796220755069586,-0.0659490716354732,-0.0889891050016873,-0.104098106290554 +8.324,-0.029706376713383,0.0372004528021257,-0.0050024886630898,0.0796010119795223,-0.0659434639859829,-0.0889957350410548,-0.104077113580276 +8.326,-0.0296686335992749,0.0372179845378335,-0.00503016201167283,0.079560716315949,-0.0659493228394562,-0.0889940008607413,-0.104061435185081 +8.328,-0.0296462297476503,0.0372243704425517,-0.00504322977345638,0.0795396561711113,-0.0659437167905089,-0.0890006217309003,-0.104040457272318 +8.33,-0.0296085049165103,0.0372418911145065,-0.00507089676252924,0.0794993647277106,-0.0659495737832062,-0.08899887863759,-0.104024796753129 +8.332,-0.0295861123010459,0.0372482702076542,-0.00508396176024879,0.0794783079272659,-0.0659439693337637,-0.0890054903112691,-0.104003833651773 +8.334,-0.0295484057329099,0.0372657798395114,-0.00511162236897443,0.0794380206399497,-0.0659498244521325,-0.0890037382491627,-0.103988191008445 +8.336,-0.0295262194848817,0.0372736073970979,-0.00512560653929338,0.0794158047199488,-0.0659478230095673,-0.0890070115615712,-0.103970837277474 +8.338,-0.0294929748695877,0.0372882281754725,-0.00514921484472454,0.0793812194050003,-0.065950175132778,-0.0890084159840163,-0.103954188041976 +8.34,-0.0294731156943267,0.0372926955200181,-0.00515979043590042,0.0793636562527537,-0.0659417316280737,-0.089017258988882,-0.103932112288434 +8.342,-0.02943198640854,0.0373123548365968,-0.00519042163045584,0.0793193382150772,-0.0659491261287559,-0.0890142335607409,-0.103917147625244 +8.344,-0.029408062275519,0.0373196910677067,-0.00520481647882397,0.0792965926371785,-0.0659441256819603,-0.0890203687154595,-0.103896460032708 +8.346,-0.0293706496959051,0.0373366256913589,-0.00523195638739697,0.0792568558462361,-0.0659491744081081,-0.0890189230042602,-0.103880175376687 +8.348,-0.0293484375734065,0.0373442121509569,-0.00524581479694521,0.0792346871112879,-0.0659469067424322,-0.0890221933621231,-0.103862429399214 +8.35,-0.0293142105782467,0.0373593377721966,-0.00527026921867257,0.0791989679188227,-0.0659499105569219,-0.0890231110923514,-0.103845826129019 +8.352,-0.0292939106492266,0.0373639443780808,-0.00528120077757975,0.0791808672027811,-0.0659418402633064,-0.0890317052926049,-0.103823648594769 +8.354,-0.0292526232448505,0.0373835430754219,-0.00531196409577285,0.0791362985283532,-0.0659494290468742,-0.0890285240009965,-0.103808462380486 +8.356,-0.0292287188541824,0.0373907192095487,-0.00532632860870057,0.0791135346798591,-0.0659445591526196,-0.089034651930514,-0.103787555014618 +8.358,-0.0291910456326559,0.0374077614532504,-0.0053537683722399,0.0790733444436028,-0.0659500075610988,-0.089032980392199,-0.103771217743833 +8.36,-0.0291688102751431,0.0374152769418836,-0.00536767711549914,0.0790510735864056,-0.0659479343780243,-0.0890362195408013,-0.103753342557583 +8.362,-0.0291345828237086,0.0374303767238533,-0.00539220393760839,0.079015210765384,-0.0659511477384335,-0.0890370503440049,-0.10373667659164 +8.364,-0.0291134565517615,0.0374370105865229,-0.00540497797412932,0.0789945544914766,-0.0659474236754073,-0.0890416772592937,-0.103718192616334 +8.366,-0.0290777022336493,0.0374530809538482,-0.00543081724157049,0.0789569591302502,-0.0659510194185743,-0.0890422265666877,-0.103701787371636 +8.368,-0.0290565580162699,0.037458183130684,-0.00544249284077314,0.0789379412634665,-0.0659432320232863,-0.0890507191334679,-0.10367966716252 +8.37,-0.0290152858273342,0.0374775271901674,-0.00547311066580185,0.0788934061654812,-0.0659504029594388,-0.089047608231706,-0.103664064501749 +8.372,-0.0289918268587878,0.0374857594125672,-0.0054880449311934,0.0788697999786095,-0.0659486429567218,-0.0890505090404674,-0.103646279239179 +8.374,-0.0289575979959506,0.0375005721357827,-0.00551235781841067,0.078834107179017,-0.0659513024017311,-0.0890515065162159,-0.103629158302387 +8.376,-0.0289376169215109,0.0375047302684798,-0.00552289517217426,0.0788164186302677,-0.0659428720971335,-0.0890602844884377,-0.103606505854388 +8.378,-0.0288950944522297,0.0375250246205404,-0.00555479433016114,0.078770236185326,-0.0659513211264412,-0.0890563598679825,-0.103591433801994 +8.38,-0.0288707517284138,0.0375323810637248,-0.00556955281601211,0.0787468783929326,-0.0659468210491859,-0.0890622110226447,-0.103570468757706 +8.382,-0.0288330196473658,0.0375493560930864,-0.00559707003715025,0.0787064687671659,-0.0659523610620451,-0.0890603774242373,-0.10355397043417 +8.384,-0.028810953482158,0.0375550981335628,-0.00560973045295936,0.078685757908668,-0.0659465262970807,-0.0890671271503233,-0.10353230694554 +8.386,-0.0287717714470181,0.037573406793266,-0.0056388586166346,0.0786433497351414,-0.0659536798445285,-0.0890643625911255,-0.103516779396505 +8.388,-0.0287488984201496,0.0375798987214848,-0.00565241276468759,0.0786215417296912,-0.0659486989080607,-0.0890706345470359,-0.103495686982318 +8.39,-0.0287112598216935,0.0375972355136035,-0.00568016956215323,0.0785809213533599,-0.0659548218927667,-0.0890685993275948,-0.103479860601035 +8.392,-0.0286890851490005,0.0376033298221748,-0.00569311337991939,0.0785599425164699,-0.0659493210909035,-0.0890752190057337,-0.103458709963195 +8.394,-0.0286512450599032,0.037620959990599,-0.0057211266289286,0.0785190274904766,-0.0659556128232648,-0.0890730638423344,-0.103443224419222 +8.396,-0.0286291505404947,0.037628722798711,-0.00573516343369866,0.0784967042976009,-0.065953744724828,-0.0890762537430495,-0.103425919317435 +8.398,-0.0285960985633366,0.0376432646289607,-0.00575876033203826,0.0784620028498752,-0.0659561360641606,-0.0890774995974684,-0.1034093945223 +8.4,-0.0285763823380195,0.0376476821500095,-0.00576929943397514,0.0784444766497614,-0.0659476737756565,-0.0890863070122924,-0.103387451744519 +8.402,-0.0285355019980837,0.0376672783066507,-0.00579987295776979,0.07840008494997,-0.0659549670824373,-0.0890831260713695,-0.103372752871416 +8.404,-0.028511715501741,0.0376746164667918,-0.005814245312035,0.0783773436088311,-0.0659498494172712,-0.0890891762519197,-0.103352309907121 +8.406,-0.0284745728635209,0.0376914701723167,-0.00584126048271685,0.0783376792587979,-0.0659546560201886,-0.0890876695034734,-0.103336322171398 +8.408,-0.0284526127993335,0.0376974391488955,-0.00585389447842323,0.0783170944800292,-0.0659484228624387,-0.089094356937474,-0.103315226624244 +8.41,-0.0284138885993319,0.0377155394069406,-0.00588252933110837,0.0782753898021339,-0.0659548007925841,-0.0890919031425812,-0.103300021918486 +8.412,-0.0283911321642988,0.0377221239657002,-0.0058959909562989,0.0782537533911825,-0.0659494157401699,-0.0890981261652511,-0.10327932419624 +8.414,-0.0283536160466521,0.037739397800193,-0.00592355949896563,0.0782134320339554,-0.0659550937609994,-0.089096228663974,-0.103263782920238 +8.416,-0.0283314608322299,0.0377455588089768,-0.00593649421026533,0.0781925005379484,-0.0659493816938374,-0.0891027700113718,-0.103242918732553 +8.418,-0.028293717809728,0.0377630750264479,-0.00596436562871046,0.078151802514704,-0.0659554038905962,-0.0891007161634984,-0.103227597141656 +8.42,-0.0282716603108866,0.0377708027790301,-0.00597837767346872,0.0781295497508121,-0.0659534502373445,-0.0891038905837617,-0.103210444985672 +8.422,-0.0282388251377516,0.037785452480146,-0.00600195365626553,0.0780953676813646,-0.0659561688723445,-0.0891056486075972,-0.103194589072038 +8.424,-0.0282188902920427,0.037789370297758,-0.00601238332274537,0.0780771040350949,-0.0659470663919599,-0.0891135090014612,-0.103171622304742 +8.426,-0.0281783196757988,0.0378091753821512,-0.0060429962920317,0.078033392765678,-0.065955046226125,-0.0891110623658667,-0.103157878251299 +8.428,-0.0281543932635921,0.0378160696800538,-0.00605728254274791,0.0780100726185596,-0.0659495445968453,-0.089116364250009,-0.103136613014544 +8.43,-0.0281175780712986,0.0378331027119113,-0.00608433913824147,0.07797103022688,-0.0659550871473202,-0.0891154993403439,-0.103121497910856 +8.432,-0.0280954928888147,0.0378404095063942,-0.00609811484483509,0.0779486339956576,-0.0659525480268947,-0.0891183054164123,-0.103103619470709 +8.434,-0.0280617331295193,0.037855557375881,-0.00612248677214805,0.0779133786287048,-0.0659558620225108,-0.0891195380393331,-0.103087890956274 +8.436,-0.0280413316738428,0.0378596634882622,-0.00613330028980463,0.0778945086200289,-0.0659471150230551,-0.0891270232906893,-0.103064906948725 +8.438,-0.0280006967034297,0.0378793928473583,-0.0061639616203388,0.0778507272713688,-0.0659552263549202,-0.0891244950995835,-0.103051058490833 +8.44,-0.0279767909539505,0.037886132836509,-0.00617820546247629,0.0778273676789081,-0.065949787118112,-0.0891296960137287,-0.103029605836961 +8.442,-0.0279397232437767,0.0379032883511088,-0.00620554968949119,0.0777879122686908,-0.0659556949359872,-0.0891286030280015,-0.10301451508197 +8.444,-0.0279175716177179,0.037908761058027,-0.00621817179696137,0.0777665970400269,-0.0659493097729769,-0.0891344357827297,-0.102992497850018 +8.446,-0.027879235670013,0.0379269903306284,-0.00624688752550089,0.0777253712142472,-0.0659565946005249,-0.0891324511631448,-0.10297810829969 +8.448,-0.0278564372204069,0.0379330584263796,-0.00626024059575657,0.0777031779712073,-0.0659509982935474,-0.0891379060709873,-0.102956562106488 +8.45,-0.0278192842325302,0.0379505077534159,-0.00628790898601596,0.0776632687247858,-0.065957529804866,-0.0891364029983311,-0.102941861642355 +8.452,-0.0277970592841104,0.0379562541471294,-0.00630078108865657,0.077641760889505,-0.0659516063997715,-0.08914216868833,-0.102920281859673 +8.454,-0.0277597450373389,0.0379739157067313,-0.00632866491276987,0.0776015536088644,-0.0659583060829317,-0.0891405075092915,-0.10290579573054 +8.456,-0.0277374070378398,0.0379798474912904,-0.00634169653576228,0.0775798907768426,-0.0659524975894632,-0.0891462142952452,-0.102884440113351 +8.458,-0.0277004543439816,0.0379972915844615,-0.00636924185721535,0.0775401061864994,-0.0659588598837898,-0.0891447053365278,-0.102869921672009 +8.46,-0.0276782671615062,0.0380031855523225,-0.00638214991095483,0.077518633664773,-0.0659528986258897,-0.0891504763171107,-0.102848648384135 +8.462,-0.0276412830635697,0.0380206800325315,-0.00640971386330859,0.0774788183274236,-0.065959194513465,-0.0891489376248846,-0.102834226663084 +8.464,-0.0276190587501333,0.0380266539429114,-0.00642266680521397,0.0774573066994067,-0.065953209546339,-0.0891546705835771,-0.102813077681257 +8.466,-0.0275861587481747,0.0380427693125429,-0.00644744323428675,0.0774212247910396,-0.0659600215555043,-0.0891518554015782,-0.102800820277823 +8.468,-0.0275663402232016,0.0380476765259891,-0.00645843404303718,0.0774033046691754,-0.0659524830152799,-0.0891602331377033,-0.102780015961699 +8.47,-0.027527164240319,0.0380660835802768,-0.00648755773817863,0.0773606060339961,-0.0659584905526034,-0.0891576798711978,-0.102765150007807 +8.472,-0.0275041457688923,0.0380728889452857,-0.00650131906265093,0.0773386866398512,-0.06595276543905,-0.0891640615516613,-0.102744775025735 +8.474,-0.0274668111864809,0.0380898887194992,-0.00652865540382992,0.0772985121077451,-0.0659577678319515,-0.089162272879847,-0.10272927521902 +8.476,-0.0274447639964935,0.0380959234871561,-0.00654148710817157,0.0772776751014353,-0.0659517074191421,-0.0891687158005057,-0.102708529501846 +8.478,-0.0274065103075221,0.038113639859288,-0.00656980490504089,0.0772362609783295,-0.0659578672123902,-0.0891661965778354,-0.102693490076378 +8.48,-0.0273842666549019,0.0381213990403783,-0.00658400666800243,0.0772136843973289,-0.0659559861695389,-0.089169002985829,-0.1026765062304 +8.482,-0.0273512957315145,0.03813600813918,-0.00660773074948376,0.077179186046929,-0.0659588159792713,-0.0891704136894048,-0.102660794045076 +8.484,-0.0273314204322427,0.038139806079179,-0.00661815435027989,0.0771608709667367,-0.0659498363841978,-0.0891780398785496,-0.102637941965619 +8.486,-0.0272907833732029,0.0381595510165142,-0.00664893356228893,0.0771167788331792,-0.0659580358604001,-0.0891752283047589,-0.102624366614478 +8.488,-0.0272669568648305,0.0381663208737716,-0.0066632328785755,0.0770934084307385,-0.0659527363530335,-0.0891803622516301,-0.102603249543545 +8.49,-0.0272342786407659,0.0381818376118157,-0.00668760636732321,0.0770577708531121,-0.0659590519670254,-0.0891778643098045,-0.102590324143872 +8.492,-0.0272147946672345,0.0381858205259866,-0.0066979734713128,0.0770400869987399,-0.0659507521825941,-0.089186043795116,-0.10256827545041 +8.494,-0.0271744615250377,0.0382053782153155,-0.00672852379561324,0.0769963178985113,-0.0659587005168882,-0.0891835881654445,-0.102554606595781 +8.496,-0.0271507091026569,0.0382119399647762,-0.00674268142130764,0.0769730454710364,-0.0659530544767923,-0.0891888857290244,-0.102533168146145 +8.498,-0.0271136197610273,0.0382290261518233,-0.00677011682323177,0.0769333085702166,-0.0659589197907131,-0.0891876272539783,-0.102518184629725 +8.5,-0.0270915343319678,0.0382344290605815,-0.00678275314807195,0.0769119823997222,-0.0659525615547777,-0.0891934009696262,-0.102496314051173 +8.502,-0.0270532221975282,0.0382525727353218,-0.0068115314341709,0.076870525334113,-0.0659598750575679,-0.0891911767214603,-0.102482060803161 +8.504,-0.0270308977641495,0.0382600818232093,-0.00682577107235979,0.0768475221365572,-0.0659580748404082,-0.0891935437225028,-0.102464571785759 +8.506,-0.0269980003796298,0.0382746013757152,-0.00684954177823677,0.0768128305102765,-0.0659611584192183,-0.0891947355821352,-0.102448767313636 +8.508,-0.0269782379458008,0.0382783126997096,-0.00685993385064194,0.0767945723255372,-0.0659523827618876,-0.089202378945004,-0.102425924978253 +8.51,-0.0269377131483653,0.0382980466267276,-0.00689075320723104,0.0767503141373543,-0.0659607516806317,-0.0891993485033432,-0.102412424123453 +8.512,-0.0269139642167181,0.0383048051319108,-0.00690505434640278,0.0767269095622399,-0.0659555419301693,-0.0892043961395964,-0.102391390055407 +8.514,-0.0268774563919829,0.0383216261534702,-0.00693206137417859,0.0766876753502038,-0.0659612011992768,-0.0892031277672119,-0.102376483606856 +8.516,-0.0268556469128222,0.0383287960569936,-0.0069457873831418,0.0766653300150096,-0.0659587977417166,-0.0892057729412439,-0.102358885214691 +8.518,-0.026822185142969,0.0383437658160842,-0.00697008362390282,0.0766299350285538,-0.0659621311852557,-0.0892066488372582,-0.102343393161265 +8.52,-0.0268020256357531,0.0383478282110757,-0.00698085945235341,0.0766111662603513,-0.0659535370038459,-0.0892140236951129,-0.102320818143988 +8.522,-0.0267618100839932,0.0383673102205532,-0.00701133350308325,0.0765673226068711,-0.0659614865705379,-0.0892111507392563,-0.102307238823924 +8.524,-0.0267381954459882,0.0383739926197628,-0.00702549957555133,0.0765440837523003,-0.0659560784187039,-0.0892162300617253,-0.102286230725866 +8.526,-0.0267015007952009,0.0383909359068295,-0.00705266649914185,0.0765046140321787,-0.0659617773607687,-0.0892148511505412,-0.102271440560897 +8.528,-0.0266796089942465,0.0383963904737849,-0.00706523189770057,0.0764834269571067,-0.065955400874758,-0.0892205764360392,-0.102249905773997 +8.53,-0.0266416528413679,0.0384143854463855,-0.0070937431134088,0.0764422172077385,-0.0659624103212662,-0.0892183344722461,-0.102235812863842 +8.532,-0.0266191187306299,0.0384204230058729,-0.00710702538438322,0.0764201642410396,-0.0659567864070335,-0.0892236910281188,-0.102214743087743 +8.534,-0.026582313333541,0.0384376488403586,-0.00713450439497811,0.0763802758001351,-0.0659630527148503,-0.0892219554683014,-0.102200340117318 +8.536,-0.0265603393993575,0.0384433612816488,-0.0071473100834762,0.0763589100587683,-0.0659571119627754,-0.0892276343530503,-0.102179225010239 +8.538,-0.0265233672555688,0.0384607847726224,-0.0071750023989801,0.0763187293309234,-0.0659635594980952,-0.0892257568057949,-0.102165020065206 +8.54,-0.0265012831345553,0.0384666599484828,-0.00718795896592336,0.0762972166676834,-0.065957747641811,-0.0892313885812821,-0.102144103586988 +8.542,-0.0264646606847726,0.0384838614001149,-0.00721532365290012,0.0762574511540853,-0.0659638990442836,-0.089229668131129,-0.102129853631236 +8.544,-0.026442726103881,0.0384896807805787,-0.00722815470843441,0.0762361299394418,-0.0659579646735402,-0.0892353699461644,-0.10210899596659 +8.546,-0.0264060718233356,0.0385069221977459,-0.00725554238843666,0.0761963271772949,-0.0659640893592931,-0.08923361683066,-0.102094828611993 +8.548,-0.0263841035432198,0.0385128027359571,-0.00726841406023487,0.0761749672270377,-0.0659581602273721,-0.0892392806299526,-0.102074073814838 +8.55,-0.02634753142878,0.0385299812956409,-0.00729570610511272,0.0761352832985921,-0.0659641670799758,-0.0892375637247058,-0.102059919609289 +8.552,-0.0263255972117428,0.0385358552037076,-0.00730854788219426,0.0761139700602344,-0.0659581940859228,-0.08924322637301,-0.102039213929274 +8.554,-0.0262890128189356,0.0385530333399144,-0.00733583972639069,0.0760742805379921,-0.0659641751439961,-0.0892414966672542,-0.102025095069277 +8.556,-0.0262670739544376,0.0385589172981718,-0.00734868987216357,0.0760529614202014,-0.0659582037766328,-0.089247141400759,-0.102004433379229 +8.558,-0.0262305132500394,0.0385760656735919,-0.0073759548980874,0.0760133003322858,-0.0659641568348029,-0.0892454137022509,-0.101990325150566 +8.56,-0.0262085931867476,0.038581933954425,-0.00738879306559266,0.0759920001790157,-0.0659581867535075,-0.0892510547533179,-0.101969682698309 +8.562,-0.0261720389599608,0.0385990668239556,-0.00741605721953666,0.0759523327195102,-0.0659641506832341,-0.0892493118220812,-0.101955587069213 +8.564,-0.0261501313200503,0.0386049198077769,-0.00742889223682784,0.0759310381384032,-0.0659582023060207,-0.089254944131045,-0.101934956852963 +8.566,-0.026113597037567,0.0386220302547144,-0.00745614982264811,0.0758913705954324,-0.0659641857213208,-0.0892531840179016,-0.101920867130631 +8.568,-0.0260917086361953,0.0386278616773707,-0.00746897704867637,0.0758700856440982,-0.0659582636587038,-0.0892588074181617,-0.101900242020854 +8.57,-0.026055192547522,0.03864495473408,-0.00749623443759567,0.0758304083731956,-0.065964278500866,-0.0892570213856429,-0.101886160162448 +8.572,-0.026033321345388,0.0386507674708541,-0.00750905706748531,0.0758091272042316,-0.0659583881243167,-0.0892626308418194,-0.101865540855506 +8.574,-0.0259968282875487,0.0386678430369035,-0.00753631150494366,0.0757694423769667,-0.0659644328164583,-0.0892608163652194,-0.101851467455875 +8.576,-0.0259749750935731,0.0386736394488222,-0.00754912926210821,0.0757481643585534,-0.0659585719215969,-0.0892664096470383,-0.10183085635596 +8.578,-0.0259385053224881,0.0386907002069035,-0.00757638028358726,0.075708471227099,-0.0659646419601092,-0.0892645648742546,-0.101816794200589 +8.58,-0.0259166686773338,0.0386964850287178,-0.00758919454860621,0.0756871943263615,-0.0659588064081066,-0.0892701404007176,-0.101796196019234 +8.582,-0.0258802234840766,0.0387135319988895,-0.00761643921940484,0.0756474956350698,-0.0659648925048529,-0.0892682668144803,-0.101782147077257 +8.584,-0.0258584027467048,0.0387193091921953,-0.007629250163303,0.0756262200272527,-0.065959075659459,-0.0892738251880669,-0.101761566281961 +8.586,-0.0258219816980693,0.0387363437214209,-0.00765648645810243,0.0755865177413953,-0.065965168406714,-0.0892719253949669,-0.101747532378486 +8.588,-0.0258001757751545,0.0387421168300559,-0.00766929441490637,0.0755652437809824,-0.0659593637819477,-0.0892774682451722,-0.101726972784473 +8.59,-0.0257637782364578,0.0387591395105537,-0.00769652030549429,0.0755255403332905,-0.0659654544634256,-0.0892755459362271,-0.101712954804148 +8.592,-0.0257419863566131,0.0387649107754252,-0.00770932514567645,0.0755042691404551,-0.0659596563241733,-0.08928107576531,-0.101692418774616 +8.594,-0.0257056109809983,0.0387819219973368,-0.00773653951408305,0.0754645661966812,-0.0659657386138886,-0.0892791346562285,-0.101678416923827 +8.596,-0.0256838323805121,0.0387876925626874,-0.00774934107059985,0.0754432989194303,-0.0659599429038107,-0.0892846541595003,-0.10165790541604 +8.598,-0.0256474777059774,0.0388046923052351,-0.0077765433776792,0.0754035977004629,-0.0659660129834156,-0.0892826976886716,-0.101643919197919 +8.6,-0.0256257118311883,0.03881046224503,-0.00778934134819585,0.0753823355256299,-0.0659602173616229,-0.0892882094691111,-0.101623431896734 +8.602,-0.0255893763388031,0.0388274502947484,-0.00781653168185392,0.0753426365968912,-0.06596627387163,-0.089286240400362,-0.10160946039197 +8.604,-0.0255676227646349,0.038833218970745,-0.00782932577949239,0.0753213804902786,-0.0659604776005634,-0.0892917466553809,-0.101588996127759 +8.606,-0.0255313051534556,0.0388501949577943,-0.00785650457794808,0.075281683975087,-0.0659665210222543,-0.0892897669839111,-0.101575038200333 +8.608,-0.0255095636186581,0.0388559613230968,-0.0078692945362223,0.0752604346530506,-0.0659607245383464,-0.0892952693687459,-0.101554595366973 +8.61,-0.0254732628750387,0.0388729248614903,-0.0078964624380083,0.0752207403050018,-0.0659667565361101,-0.0892932802759668,-0.101540649910015 +8.612,-0.0254515332371374,0.038878687789973,-0.00790924806478803,0.075199498170046,-0.0659609609978809,-0.0892987798221075,-0.101520226870145 +8.614,-0.0254152487001786,0.0388956385538236,-0.00793640572658154,0.0751598055283397,-0.0659669837334853,-0.0892967817527155,-0.101506292974322 +8.616,-0.0253935309181443,0.0389013970721842,-0.00794918690799572,0.0751385706897026,-0.0659611905736521,-0.0893022788830856,-0.101485888350613 +8.618,-0.0253572622547657,0.038918334869694,-0.0079763349052502,0.0750988791719329,-0.0659672061798947,-0.0893002716607967,-0.101471965416716 +8.62,-0.0253355563553931,0.0389240883077821,-0.00798911161011896,0.0750776514781775,-0.0659614167670958,-0.0893057662598881,-0.101451578264706 +8.622,-0.0252993035151952,0.0389410131077314,-0.0080162503720462,0.0750379604707366,-0.0659674269902919,-0.0893037492449486,-0.101437666036538 +8.624,-0.0252776095725296,0.0389467611484165,-0.00802902263529118,0.0750167395771078,-0.0659616424083935,-0.0893092407797844,-0.101417295892944 +8.626,-0.0252413727155701,0.0389636730784143,-0.00805615243057706,0.0749770484923312,-0.0659676484406902,-0.0893072130342758,-0.101403394430655 +8.628,-0.0252196908316315,0.0389694157331787,-0.00806892033276776,0.0749558339352874,-0.0659618693929251,-0.0893127006988744,-0.101383041266678 +8.63,-0.0251834702562511,0.0389863150466643,-0.00809604128104766,0.0749161422556068,-0.0659678718532675,-0.0893106611498185,-0.101369150873548 +8.632,-0.0251618005483747,0.0389920525777012,-0.00810880492306508,0.074894933531283,-0.0659620986632946,-0.0893161440159412,-0.101348814984996 +8.634,-0.0251255966223242,0.0390089396048122,-0.00813591702544254,0.0748552408360928,-0.0659680976845469,-0.0893140915992954,-0.101334936111652 +8.636,-0.0251039392121337,0.0390146724234829,-0.00814867650601185,0.0748340374686288,-0.0659623303642742,-0.0893195687534788,-0.101314617982796 +8.638,-0.0250677523156728,0.0390315475148919,-0.0081757796805606,0.0747943434507941,-0.0659683257339106,-0.0893175025308874,-0.101300751127847 +8.64,-0.0250461073198135,0.0390372760794037,-0.00818853507841732,0.0747731450453539,-0.0659625640832773,-0.0893229731848125,-0.101280451298661 +8.642,-0.0250099378015904,0.0390541395546838,-0.00821562919441314,0.0747334495169214,-0.0659685553958994,-0.0893208924260679,-0.101266596922507 +8.644,-0.0249883053228007,0.0390598642850824,-0.00822838055760654,0.0747122557924811,-0.0659627991069963,-0.0893263559915116,-0.101246315880926 +8.646,-0.0249521534696948,0.0390767163927399,-0.00825546546324335,0.0746725586814911,-0.0659687858975032,-0.0893242602207274,-0.101232474342827 +8.648,-0.0249305335888507,0.0390824376127356,-0.00826821280539249,0.0746513694832606,-0.0659630346430425,-0.0893297163465686,-0.101212212453137 +8.65,-0.0248943996085674,0.0390992785065689,-0.00829528834774895,0.0746116708218448,-0.0659690164839825,-0.0893276053529348,-0.101198383976159 +8.652,-0.0248727923783205,0.0391049964150197,-0.00830803165046747,0.0745904861152085,-0.0659632699798864,-0.0893330539263565,-0.101178141445783 +8.654,-0.0248366763934317,0.039121826147641,-0.00833509768794652,0.0745507860202947,-0.0659692465382445,-0.0893309277438159,-0.101164326108795 +8.656,-0.024815081834499,0.0391275408167196,-0.0083478369076299,0.0745296058704699,-0.0659635045779724,-0.0893363688618352,-0.101144102988728 +8.658,-0.0247789838859691,0.0391443593484539,-0.00837489331649402,0.0744899045187386,-0.0659694756357812,-0.089334227724375,-0.101130300740902 +8.66,-0.0247574019867476,0.0391500707420867,-0.00838762839352342,0.0744687290612628,-0.0659637380999374,-0.0893396616442818,-0.101110096950971 +8.662,-0.0247213220449122,0.0391668779613534,-0.00841467507033804,0.0744290266609253,-0.0659697035480267,-0.0893375059252962,-0.101096307641928 +8.664,-0.0246997527646592,0.0391725859659538,-0.00842740593877002,0.0744078560683819,-0.0659639703959724,-0.0893429330036672,-0.101076123010424 +8.666,-0.0246636907454167,0.0391893817162747,-0.00845444280042296,0.0743681528307254,-0.0659699302117987,-0.0893407631484566,-0.101062346428449 +8.668,-0.0246421340206111,0.0391950861759896,-0.008467169396637,0.0743469872806116,-0.0659642014629367,-0.0893461837781943,-0.101042180736274 +8.67,-0.0246060898045738,0.0392118702846532,-0.00849419637908375,0.0743072833944105,-0.0659701556823779,-0.0893440002383496,-0.10102841664754 +8.672,-0.0245845455575552,0.0392175710346705,-0.00850691864833368,0.0742861230420282,-0.0659644313939621,-0.0893494147918441,-0.101008269668931 +8.674,-0.0245485190099225,0.0392343433387547,-0.00853393570470821,0.0742464186534837,-0.0659703800844352,-0.0893472179689126,-0.10099451785207 +8.676,-0.0245269871585567,0.0392400402322009,-0.00854665360507836,0.0742252636124309,-0.0659646603309944,-0.089352626753364,-0.100974389386629 +8.678,-0.0244909781476613,0.0392568005988096,-0.00857366070339015,0.0741855588125156,-0.065970603570215,-0.0893504169571727,-0.100960649658858 +8.68,-0.024469458614672,0.0392624935248693,-0.00858637420712703,0.0741644091439281,-0.0659648884275595,-0.0893558201856056,-0.10094053955229 +8.682,-0.0244334670274704,0.0392792418638379,-0.00861337132755405,0.0741247039639481,-0.0659708262895054,-0.0893535976101517,-0.100926811785263 +8.684,-0.0244119597482045,0.0392849307566351,-0.00862608042013878,0.0741035596743307,-0.0659651158243906,-0.0893589953891299,-0.100906719938632 +8.686,-0.0243759855014594,0.0393016670253129,-0.00865306755186517,0.074063854089376,-0.0659710483719698,-0.0893567601064194,-0.10089300406396 +8.688,-0.0243544904291902,0.039307351864531,-0.00866577222941478,0.074042715135818,-0.0659653426370391,-0.0893621524392364,-0.100872930432959 +8.69,-0.0243185334756659,0.0393240760654276,-0.00869274936706421,0.0740030090747606,-0.0659712699198096,-0.0893599044091798,-0.100859226438747 +8.692,-0.0242970505839659,0.0393297568705696,-0.00870544963276805,0.0739818753755714,-0.0659655689526082,-0.0893652912115405,-0.100839171025533 +8.694,-0.0242611109135779,0.0393464690434714,-0.00873241677261404,0.0739421687355519,-0.065971491007518,-0.0893630303042927,-0.100825478946173 +8.696,-0.0242396401957727,0.0393521458640724,-0.00874511263289006,0.0739210401840426,-0.0659657948320773,-0.0893684114284574,-0.100805441786719 +8.698,-0.0242037178322158,0.0393688460746861,-0.00877206976915125,0.073881332847003,-0.0659717116854232,-0.089366137454523,-0.10079176168861 +8.7,-0.0241822592983439,0.0393745189787493,-0.00878476123009882,0.0738602093260987,-0.0659660203150114,-0.0893715127174413,-0.100771742838368 +8.702,-0.0241463542921892,0.0393912073060205,-0.00881170835170006,0.0738205011749547,-0.06597193198437,-0.089369225460586,-0.100758074804222 +8.704,-0.0241249079641915,0.0393968763686429,-0.00882439541627272,0.0737993825706368,-0.0659662454243851,-0.0893745946718107,-0.100738074324434 +8.706,-0.0240890203837572,0.0394135528926653,-0.00885133250442359,0.0737596735030291,-0.0659721519199044,-0.089372293920177,-0.10072441843846 +8.708,-0.0240675862897859,0.0394192181862895,-0.00886401517055094,0.073738559715101,-0.0659664701702914,-0.0893776569060596,-0.10070443638477 +8.71,-0.0240317162111936,0.0394358829782994,-0.00889094219740821,0.0736988496532646,-0.0659723714952857,-0.0893753424778158,-0.100690792720478 +8.712,-0.0240102943799206,0.0394415445654893,-0.00890362045713773,0.0736777406025167,-0.0659666945522781,-0.0893806990995258,-0.100670829134791 +8.714,-0.0239744418776822,0.0394581976808654,-0.00893053738564832,0.0736380294985431,-0.0659725907034013,-0.089378370860641,-0.100657197746471 +8.716,-0.023953032333386,0.0394638556099523,-0.00894321122521401,0.0736169251300376,-0.065966918560649,-0.0893837210247612,-0.100637252652366 +8.718,-0.0239171974726066,0.0394804970845992,-0.00897011801008432,0.0735772129665064,-0.0659728095280817,-0.0893813788978731,-0.100623633570618 +8.72,-0.0238958002315769,0.0394861513881027,-0.00898278741071423,0.0735561132492187,-0.065967142177375,-0.0893867225594576,-0.100603706972089 +8.722,-0.0238599830625261,0.0395027812380675,-0.00900968400028559,0.073516400035819,-0.0659730279453915,-0.0893843665241193,-0.100590100203225 +8.724,-0.0238385981310765,0.0395084319334858,-0.00902234893950682,0.0734953049593101,-0.0659673653772299,-0.089389703683089,-0.100570192086169 +8.726,-0.0238027986864651,0.0395250501572616,-0.00904923527819726,0.0734555907265024,-0.0659732459253441,-0.0893873337687384,-0.100556597614827 +8.728,-0.0237814260605791,0.0395306972496095,-0.0090618957313643,0.0734345002955609,-0.0659675881295187,-0.0893926644611949,-0.100536707950501 +8.73,-0.0237456443554818,0.0395473038323436,-0.0090887717623053,0.0733947850865714,-0.065973463434216,-0.0893902807349287,-0.100523125744549 +8.732,-0.0237242840218824,0.0395529473177548,-0.00910142770411823,0.0733736993148406,-0.0659678104004871,-0.0893956050213335,-0.100503254494138 +8.734,-0.0236885200559201,0.0395695422364615,-0.00912829337160771,0.0733339831772979,-0.0659736804373482,-0.0893932075728922,-0.100489684510832 +8.736,-0.0236671719942023,0.0395751821061913,-0.00914094477742577,0.0733129020808949,-0.0659680321562063,-0.0893985255251669,-0.100469831630356 +8.738,-0.0236314257553572,0.0395917653351122,-0.00916780002889733,0.0732731850592638,-0.0659738969021183,-0.0893961144515202,-0.10045627382274 +8.74,-0.0236100899407256,0.039597401579364,-0.00918044687571529,0.0732521086511821,-0.0659682533655285,-0.0894014261408709,-0.10043643926762 +8.742,-0.023574361410045,0.039613973094755,-0.00920729166302499,0.0732123907808529,-0.0659741128006525,-0.0893990015324493,-0.100422893590331 +8.744,-0.0235530378161942,0.0396196057059017,-0.00921993393005487,0.0731913190667395,-0.0659684740026698,-0.0894043070193642,-0.100403077319137 +8.746,-0.0235173269726384,0.0396361654897206,-0.00924676821000145,0.0731516003702792,-0.0659743281118601,-0.0894018689494334,-0.100389543732969 +8.748,-0.0234960155743742,0.0396417944646452,-0.0092594058788555,0.0731305333458866,-0.0659686940490026,-0.0894071682767538,-0.100369745710069 +8.75,-0.0234603223991544,0.0396583425068704,-0.00928622961298328,0.0730908138315825,-0.065974542822511,-0.0894047167947808,-0.100356224184972 +8.752,-0.0234390231744392,0.0396639678483123,-0.00929886266751517,0.0730697514819202,-0.0659689134938248,-0.0894100099842049,-0.100336444381965 +8.754,-0.0234033476543695,0.0396805041478208,-0.00932567582131817,0.0730300311444325,-0.0659747569272189,-0.0894075451134019,-0.10032293489835 +8.756,-0.0233820605856252,0.0396861258647453,-0.00933830424719891,0.073008973444448,-0.0659691323340153,-0.0894128321652925,-0.100303173294342 +8.758,-0.0233464027152011,0.0397026504289056,-0.00936510678894056,0.0729692522671271,-0.0659749704274067,-0.0894103539039563,-0.100289675842847 +8.76,-0.0233251277898073,0.0397082685360409,-0.00937773057308357,0.0729481991835516,-0.0659693505727328,-0.0894156347999058,-0.100269932423761 +8.762,-0.0232894875719567,0.0397247813792841,-0.00940452247243329,0.0729084771418452,-0.0659751833294797,-0.0894131431257387,-0.100256447003766 +8.764,-0.0232682247820211,0.039730395896024,-0.00941714160236178,0.072887428635777,-0.0659695682173969,-0.0894184178330953,-0.100236721760935 +8.766,-0.0232326022276325,0.039746897037763,-0.00944392282907507,0.0728477057010938,-0.0659753956425344,-0.0894159127094549,-0.100223248378235 +8.768,-0.0232113515691763,0.039752507986686,-0.00945653729232904,0.0728266617308537,-0.0659697852773324,-0.0894211811868927,-0.10020354130658 +8.77,-0.0231757466956727,0.0397689974489631,-0.00948330781513655,0.0727869378743063,-0.0659756073759848,-0.0894186625698328,-0.100190079970652 +8.772,-0.0231545081674388,0.0397746048542138,-0.00949591759878825,0.0727658983981586,-0.0659700017614419,-0.0894239247730766,-0.100170391066735 +8.774,-0.0231189209967357,0.0397910826594191,-0.00952267738460941,0.0727261735937192,-0.0659758185374385,-0.0894213926181416,-0.100156941788021 +8.776,-0.0230976945988407,0.0397966865451744,-0.00953528247492912,0.0727051385721299,-0.065970217676233,-0.089426648505081,-0.100137271048238 +8.778,-0.0230621251550531,0.0398131527141198,-0.00956203148846745,0.0726654127988854,-0.0659760291311007,-0.0894241027730184,-0.100123833835779 +8.78,-0.0230409108876819,0.0398187531033068,-0.00957463187075529,0.0726443821961059,-0.06597043302443,-0.0894293523076617,-0.100104181254874 +8.782,-0.0230053591949239,0.0398352076538356,-0.00960137007446311,0.0726046554394765,-0.0659762391568455,-0.0894267929685006,-0.10009075611453 +8.784,-0.0229841570572345,0.0398408045672229,-0.00961396573304042,0.0725836292243727,-0.0659706478042923,-0.0894320361234612,-0.100071121684571 +8.786,-0.0229486231377797,0.0398572475134418,-0.00964069308739851,0.0725439014763085,-0.0659764486100064,-0.089429463158707,-0.100057708617967 +8.788,-0.0229274331271258,0.0398628409691462,-0.00965328400572975,0.0725228796224541,-0.0659708620096318,-0.0894346999161538,-0.100038092327824 +8.79,-0.0228919170001093,0.0398792723212668,-0.00968000046974921,0.0724831508807629,-0.0659766574818022,-0.0894321133191398,-0.100024691332005 +8.792,-0.0228707391116269,0.0398848623346661,-0.0096925866306537,0.0724621333659131,-0.065971075630422,-0.0894373436703517,-0.100005093167307 +8.794,-0.0228352407923682,0.0399012820993754,-0.00971929216249832,0.0724224036329545,-0.0659768657602519,-0.0894347434450158,-0.0999917042350587 +8.796,-0.0228140750189216,0.0399068686833733,-0.00973187354841125,0.0724013904380725,-0.0659712886538365,-0.0894399673888365,-0.0999721241785599 +8.798,-0.0227785945188529,0.0399232768645884,-0.00975856810603185,0.0723616597190944,-0.0659770734313758,-0.0894373535473457,-0.0999587472992056 +8.8,-0.0227574408512847,0.0399288600301361,-0.00977114469926936,0.0723406508271374,-0.0659715010654973,-0.0894425710879296,-0.0999391853314472 +8.802,-0.0227219781783925,0.0399452566299839,-0.00979782824096574,0.0723009191285316,-0.0659772804804746,-0.0894399436476581,-0.0999258204919646 +8.804,-0.0227008366059957,0.0399508363867517,-0.00981040002395915,0.0722799145231899,-0.0659717128507349,-0.0894451547919142,-0.0999062765920973 +8.806,-0.0226653917656324,0.039967221406611,-0.00983707250880739,0.0722401818509094,-0.0659774868933044,-0.0894425137722765,-0.0998929237783476 +8.808,-0.022644262276744,0.0399727977637018,-0.00984963946428243,0.0722191815154672,-0.0659719239956857,-0.0894477185273912,-0.0998733979249873 +8.81,-0.0226088352726439,0.0399891712051589,-0.0098763008523904,0.0721794478737761,-0.0659776926569929,-0.0894450639469522,-0.0998600571228797 +8.812,-0.0225877178552631,0.0399947441717669,-0.00988886296347739,0.072158451790226,-0.0659721344881004,-0.089450262318301,-0.0998405492948891 +8.814,-0.0225523086905941,0.0400111060373847,-0.00991551321606841,0.0721187171808925,-0.0659778977606298,-0.0894475941925035,-0.0998272204913514 +8.816,-0.0225312033329409,0.0400166756233251,-0.00992807046634155,0.0720977253293621,-0.0659723443178019,-0.0894527861821404,-0.0998077306684504 +8.818,-0.0224958120112514,0.0400330259171513,-0.00995470954567912,0.0720579897513181,-0.065978102195486,-0.0894501045218218,-0.0997944138521053 +8.82,-0.0224747187022042,0.0400385921332175,-0.0099672619191311,0.0720370021098442,-0.0659725534767871,-0.0894552901276583,-0.0997749420152755 +8.822,-0.0224393452281577,0.0400549308610219,-0.0099938897883301,0.0719972655592748,-0.0659783059549115,-0.0894525949384199,-0.0997616371767949 +8.824,-0.0224182639575305,0.040060493719152,-0.0100064372692994,0.0719762821038761,-0.0659727619590193,-0.0894577741540622,-0.0997421833084493 +8.826,-0.022382908337372,0.0400768208884008,-0.010033053892062,0.0719365445746607,-0.065978509033964,-0.08945506543643,-0.0997288904405929 +8.828,-0.0223618390960253,0.0400823804016677,-0.010045596465129,0.0719155652796656,-0.0659729697599905,-0.089460238251599,-0.0997094545245369 +8.83,-0.0223265013377597,0.0400986960212867,-0.0100722018054553,0.0718758267640407,-0.0659787114288709,-0.0894575160018072,-0.0996961736219198 +8.832,-0.0223054441175595,0.0401042522037362,-0.0100847394553254,0.0718548516025728,-0.065973176876144,-0.0894626824031751,-0.0996767556431364 +8.834,-0.0222701242308706,0.0401205562837343,-0.0101113334772467,0.0718151120919044,-0.065978913136423,-0.0894599466143779,-0.0996634867018119 +8.836,-0.022249079024521,0.0401261091501263,-0.0101238661886424,0.0717941410364378,-0.065973383304273,-0.0894651065866472,-0.0996440866461331 +8.838,-0.0222137770204863,0.0401424017011393,-0.0101504488559969,0.0717544005219815,-0.0659791141533872,-0.0894623572503239,-0.0996308296630618 +8.84,-0.0221927438212883,0.0401479512666311,-0.0101629766135633,0.0717334335448904,-0.0659735890409557,-0.0894675107773704,-0.0996114475167814 +8.842,-0.0221574597119549,0.0401642322994754,-0.0101895478898536,0.0716936920184388,-0.0659793144760206,-0.0894647478847101,-0.0995982024892886 +8.844,-0.0221364385135224,0.0401697785793069,-0.0102020706780982,0.0716727290924566,-0.0659737940821233,-0.0894698949506252,-0.099578838238781 +8.846,-0.0221011723114329,0.0401860481045809,-0.0102286305264154,0.0716329865468199,-0.0659795140997246,-0.089467118493718,-0.099565605164061 +8.848,-0.0220801631074244,0.0401915911137937,-0.0102411483296726,0.0716120276453856,-0.0659739984227692,-0.0894722590836458,-0.0995462587954491 +8.85,-0.0220488546301863,0.0402066374732377,-0.0102651278347174,0.0715760640540489,-0.0659804515022218,-0.0894683954895744,-0.0995352347223866 +8.852,-0.0220309520137188,0.0402105271902925,-0.0102743653239161,0.0715603512413046,-0.0659726914808083,-0.0894772984836545,-0.0995141620555093 +8.854,-0.021990754100612,0.0402308012992942,-0.0103051078027788,0.0715153603426255,-0.0659809853142046,-0.0894736156425426,-0.0995005339167335 +8.856,-0.021968221273623,0.0402387108600815,-0.0103186064975687,0.0714938548963814,-0.065975902635571,-0.0894806418547356,-0.0994806101028657 +8.858,-0.0219334041249171,0.0402562376736237,-0.0103443072787297,0.071455898827422,-0.0659798232422813,-0.0894805381874287,-0.099466045376415 +8.86,-0.0219130445122981,0.0402634816569842,-0.0103558376264731,0.0714369704195601,-0.0659721592207584,-0.0894888269833329,-0.0994464243319834 +8.862,-0.0218820691088995,0.0402805989411714,-0.0103792539523992,0.0714018316969095,-0.0659758985216813,-0.0894870024740741,-0.0994359341538491 +8.864,-0.0218633105180631,0.0402874265506327,-0.0103894348398302,0.0713848511048693,-0.0659657699869217,-0.0894963499933942,-0.0994171613135314 +8.866,-0.0218310061514288,0.0403052599951887,-0.0104136488061758,0.0713476427595756,-0.0659684369308082,-0.0894935098544784,-0.0994072741716488 +8.868,-0.0218114543371058,0.0403126494957407,-0.0104244986033275,0.0713294647953683,-0.0659577826849713,-0.0895019263114677,-0.099389121988824 +8.87,-0.0217740911704852,0.0403319573260387,-0.0104518478484939,0.0712872204934264,-0.0659594775365966,-0.0894991709986601,-0.0993766753596258 +8.872,-0.0217520499856056,0.0403406130253823,-0.01046495565827,0.0712652723307274,-0.0659507538386105,-0.0895046166964832,-0.0993590999761928 +8.874,-0.0217160315164668,0.0403587920674495,-0.0104913098353062,0.0712245055603481,-0.0659526104266773,-0.0895013694117752,-0.0993465111247591 +8.876,-0.0216947831792779,0.0403665156416853,-0.0105038939832566,0.0712030593371496,-0.0659444605138473,-0.0895060656577255,-0.0993287218221152 +8.878,-0.0216583597621038,0.0403847205382864,-0.0105310510541903,0.0711612225646048,-0.0659480057566052,-0.0895016608555065,-0.0993164056351749 +8.88,-0.0216370498569259,0.0403919873706456,-0.0105439403527265,0.0711393533424342,-0.0659411217767349,-0.0895058062717644,-0.0992984674356364 +8.882,-0.0216013800594557,0.040409330715428,-0.0105708104965445,0.0710980658696065,-0.0659455364216287,-0.08950131516973,-0.0992857961485933 +8.884,-0.0215805308666881,0.0404156895452986,-0.0105834506128092,0.0710766640179208,-0.0659394624966697,-0.0895056164112978,-0.0992673355497532 +8.886,-0.0215450284445157,0.0404325310955065,-0.0106105084534509,0.0710353546748194,-0.0659450429805213,-0.0895010345270506,-0.0992544013760382 +8.888,-0.0215242797577868,0.0404382341327577,-0.0106231662817418,0.071014102423891,-0.0659398775064105,-0.0895055055042747,-0.0992354974655946 +8.89,-0.0214890719087157,0.0404544319526127,-0.0106501395792269,0.0709731797382766,-0.0659462370101389,-0.0895011717844078,-0.099222172197207 +8.892,-0.0214684324721372,0.0404595143304326,-0.0106627171296766,0.0709522131204624,-0.0659417132186058,-0.0895059408975092,-0.0992028365290661 +8.894,-0.0214332572133243,0.0404752533024959,-0.0106897094834904,0.0709115233659728,-0.0659486970025751,-0.0895018998852125,-0.0991892095519441 +8.896,-0.0214128540232383,0.0404813565858019,-0.0107034124637443,0.0708893449903625,-0.0659481694072345,-0.0895034790071104,-0.0991736097619514 +8.898,-0.0213818871861339,0.0404938261419459,-0.01072627797294,0.0708549488340711,-0.0659521541371948,-0.0895032776013979,-0.0991585116350765 +8.9,-0.0213635052930082,0.040495911654725,-0.0107360925971854,0.0708376448685002,-0.0659452138818306,-0.0895104073526733,-0.0991365746611023 +8.902,-0.0213245505447658,0.0405136052323734,-0.0107663652247154,0.0707931599693328,-0.0659549418846693,-0.089505978551883,-0.0991237397355239 +8.904,-0.0213019271526682,0.0405187504379008,-0.0107803217176232,0.0707703744248234,-0.0659517277759641,-0.0895106386833832,-0.0991036248986756 +8.906,-0.0212670542182364,0.0405332632437176,-0.0108064766248878,0.070731572019457,-0.0659584367973506,-0.0895086688406371,-0.0990891105319055 +8.908,-0.0212463510470557,0.0405370052051551,-0.0108185251741257,0.0707113873892468,-0.0659538236423973,-0.0895144488177629,-0.0990683725813331 +8.91,-0.0212140040128898,0.0405512987515504,-0.0108435217990737,0.070674287547348,-0.0659621827180991,-0.0895104131234085,-0.099057089747528 +8.912,-0.0211947149390414,0.0405544897454502,-0.010854343341151,0.0706564288450432,-0.0659563964013688,-0.0895181294580737,-0.0990366346897663 +8.914,-0.0211566042590097,0.0405709416900271,-0.0108830620062682,0.0706134611829241,-0.0659638605845445,-0.089514795440532,-0.0990225900212115 +8.916,-0.0211344146742,0.0405761336702573,-0.0108964517717455,0.0705917772970652,-0.0659596475359458,-0.0895206281521905,-0.0990027849007465 +8.918,-0.0210984971210129,0.0405913174374171,-0.0109231012430967,0.0705517531684553,-0.0659656420583623,-0.0895182994789864,-0.0989883159118776 +8.92,-0.0210774043277749,0.0405975846669897,-0.0109368017805735,0.0705296562614266,-0.0659642890786074,-0.0895207955209487,-0.0989725145226346 +8.922,-0.0210453615392815,0.0406106351516735,-0.0109599268189175,0.0704947538187404,-0.0659673625447943,-0.0895211559986791,-0.0989574949612636 +8.924,-0.0210264259125165,0.0406137202186155,-0.0109699859439909,0.0704770697368198,-0.0659595052918005,-0.0895284782905659,-0.0989361845269469 +8.926,-0.0209870734283708,0.0406320571392625,-0.0109999865599868,0.0704323888629763,-0.0659675524085128,-0.0895243078268616,-0.0989236533156315 +8.928,-0.0209650969437968,0.0406394442725974,-0.011014509959687,0.0704088022139433,-0.0659661008394274,-0.089525926894285,-0.0989083296568004 +8.93,-0.0209338160932565,0.0406524993931577,-0.0110369280199377,0.0703745519788793,-0.0659680487633841,-0.0895263160736307,-0.0988933069772998 +8.932,-0.0209142764794436,0.040658183919978,-0.0110489525816282,0.0703542061452321,-0.0659639242036311,-0.0895295698981752,-0.0988767522356987 +8.934,-0.020880096400256,0.0406735131610469,-0.011074126878894,0.0703160537628269,-0.0659675192913367,-0.0895284429188771,-0.0988627725625318 +8.936,-0.0208599768953141,0.040678128011481,-0.0110853211481713,0.0702965004676892,-0.0659596632265669,-0.0895347867446095,-0.0988420922643007 +8.938,-0.0208213979482177,0.0406966390398411,-0.0111146865433377,0.0702523107055879,-0.0659665472854868,-0.0895304711842146,-0.0988295512251901 +8.94,-0.02079911590924,0.0407032209564276,-0.0111282205739533,0.0702294869819138,-0.0659610624159263,-0.089534800662958,-0.0988103338010806 +8.942,-0.0207636321008597,0.0407199075444112,-0.0111549124733226,0.0701889014869087,-0.0659662441587893,-0.0895314606623717,-0.0987971581353251 +8.944,-0.020742830802166,0.0407257185622573,-0.0111672298213855,0.0701677305443238,-0.0659600742181391,-0.089536212383709,-0.0987778727457689 +8.946,-0.0207069587904476,0.0407430053389475,-0.0111945598894878,0.0701261385963091,-0.0659659234304983,-0.0895321054258929,-0.0987653299756681 +8.948,-0.0206859170433891,0.040749216991961,-0.0112072911284746,0.0701044362793569,-0.0659602125780781,-0.0895365048712767,-0.0987465558666849 +8.95,-0.0206511037484751,0.0407658862141544,-0.0112337369044383,0.0700639824947084,-0.065965456370155,-0.089532712860426,-0.0987338844296381 +8.952,-0.0206305273628183,0.0407718458555999,-0.0112461076684601,0.0700428263312126,-0.0659595540964412,-0.0895372920913129,-0.0987151607667 +8.954,-0.0205957163944731,0.0407885433515132,-0.0112726145318026,0.0700022841826844,-0.065964920577332,-0.0895333855732541,-0.0987026366386861 +8.956,-0.0205750862693118,0.0407945257288887,-0.0112850698757591,0.0699810652614245,-0.0659591725576416,-0.0895379208375662,-0.0986840326762069 +8.958,-0.0205405236028304,0.0408109568999971,-0.0113113245356274,0.0699409307350492,-0.0659644186437388,-0.0895342163707506,-0.0986714264323503 +8.96,-0.0205199742214642,0.0408167806502186,-0.0113236877098597,0.0699199061511492,-0.065958690046753,-0.0895388758530538,-0.0986527835512227 +8.962,-0.0204895683267405,0.0408316297869677,-0.0113472057943245,0.0698838040996651,-0.0659645145616277,-0.0895341992827641,-0.0986425587991794 +8.964,-0.0204713162809002,0.0408358407856804,-0.011357370126187,0.0698664027219759,-0.0659569839892618,-0.0895413337293339,-0.0986233150444706 +8.966,-0.0204339349288487,0.0408534588129735,-0.0113858173242814,0.0698229991867933,-0.0659632210277047,-0.0895368714046036,-0.0986106263496465 +8.968,-0.0204121220166923,0.0408597617128355,-0.011399162069058,0.0698009995151031,-0.0659580846787698,-0.0895418964596819,-0.0985919702233569 +8.97,-0.0203772721268187,0.0408753945975497,-0.0114251440188992,0.0697613632061359,-0.0659628667058204,-0.089539026040225,-0.0985782905498274 +8.972,-0.0203567008760901,0.0408806521951329,-0.0114372896602023,0.0697410133324741,-0.0659571639055873,-0.0895445937238338,-0.098559133193028 +8.974,-0.0203207963029321,0.0408969765473836,-0.0114643540691604,0.0696999728550163,-0.0659630859270689,-0.0895410761215824,-0.0985459609121062 +8.976,-0.0203000025408649,0.0409038839106268,-0.011478085787085,0.0696776292572622,-0.0659614408655337,-0.0895429804829971,-0.0985310212936919 +8.978,-0.020269069802666,0.0409167385938201,-0.011500430190871,0.0696434669881158,-0.0659636912760361,-0.0895431811731461,-0.0985163342753076 +8.98,-0.0202507636230338,0.0409197784120147,-0.0115101180801711,0.0696263415402258,-0.0659555566034374,-0.0895505620921741,-0.0984954444871895 +8.982,-0.0202118899799317,0.0409379543004861,-0.0115399056660496,0.0695817174030652,-0.0659635045697986,-0.0895461184931536,-0.098483198131091 +8.984,-0.0201894121221093,0.0409440466606004,-0.011553724970304,0.0695588860486363,-0.0659590674474165,-0.0895506916208453,-0.0984641629459118 +8.986,-0.0201590877191166,0.0409576535004291,-0.0115766852527232,0.0695238676817664,-0.0659646821804651,-0.0895472428366914,-0.0984527791986825 +8.988,-0.0201412783437633,0.0409606694839541,-0.0115861696615207,0.0695075414866175,-0.0659570135262325,-0.0895552454804829,-0.0984325551516294 +8.99,-0.0201021649912412,0.0409786496895314,-0.01161601326169,0.0694623300214345,-0.0659646637946545,-0.089550401229682,-0.0984197667136652 +8.992,-0.020079699907399,0.0409847909282373,-0.0116298649784892,0.0694396506471127,-0.0659603263205743,-0.0895553050578295,-0.0984008467825282 +8.994,-0.020044770271517,0.0409999548863637,-0.0116558482586338,0.0693999706513718,-0.0659654691324226,-0.089552489867323,-0.098386798357579 +8.996,-0.0200243007896651,0.0410047784193171,-0.0116678824044798,0.0693796923864249,-0.0659600419411845,-0.0895580417899289,-0.0983673530687327 +8.998,-0.0199880110756293,0.0410211891158298,-0.0116953982566214,0.0693378503147842,-0.0659666324906436,-0.0895539892113195,-0.0983542536033635 +9,-0.0199671905466013,0.0410280358341367,-0.0117092436749943,0.0693151731501347,-0.0659653514412405,-0.0895555100605634,-0.098339319724308 +9.002,-0.0199363178580408,0.0410409235475485,-0.0117316875656306,0.0692806125850426,-0.0659679150419382,-0.0895551762397963,-0.0983247499805159 +9.004,-0.0199181338583492,0.0410440024268303,-0.0117413692173691,0.0692633059400443,-0.0659599556048865,-0.0895621673115871,-0.0983039906199627 +9.006,-0.0198794319394461,0.04106238974065,-0.0117712405342173,0.0692182005865362,-0.0659680941222996,-0.089556999727664,-0.0982920363410467 +9.008,-0.0198571176443064,0.0410687024108364,-0.0117850671435722,0.0691951192421202,-0.0659637221896497,-0.0895610756610841,-0.0982732856183126 +9.01,-0.0198229005626803,0.0410840346072422,-0.0118107100903989,0.0691558924049954,-0.0659688154086089,-0.0895581278761958,-0.0982598521702782 +9.012,-0.0198026894479635,0.0410889953511248,-0.0118225823331349,0.0691354861656707,-0.0659630736099217,-0.0895631649351231,-0.0982405560914633 +9.014,-0.0197669504323383,0.0411056527192793,-0.011849837112388,0.0690939551725618,-0.0659694919097494,-0.0895590322359166,-0.0982280418492924 +9.016,-0.0197459380990204,0.0411113896336173,-0.0118625879353733,0.0690723479000524,-0.0659644676066134,-0.0895634837068661,-0.0982093629991431 +9.018,-0.0197115007905288,0.0411272332903705,-0.011888631700319,0.0690324208700709,-0.0659699193900295,-0.0895599654141909,-0.0981965327332171 +9.02,-0.0196913090966867,0.0411341483424328,-0.011902007868818,0.0690101894197704,-0.065968022833837,-0.0895613851412756,-0.0981819106377612 +9.022,-0.0196607547686438,0.0411473087964043,-0.0119242646937804,0.068975644235686,-0.0659701725489356,-0.0895607908688648,-0.0981677628537554 +9.024,-0.0196426099787314,0.0411508704554338,-0.0119340230439615,0.0689582513157387,-0.0659620523355656,-0.0895676615048706,-0.0981475844261241 +9.026,-0.0196045447175363,0.04116915304407,-0.0119633005755604,0.0689137543445694,-0.0659694246053008,-0.0895626229036572,-0.0981357842178688 +9.028,-0.0195824693062087,0.04117564906603,-0.0119769321193698,0.0688909368894323,-0.0659646483582262,-0.0895667894838401,-0.0981173558063417 +9.03,-0.0195484353776069,0.0411910674159996,-0.0120023599329044,0.0688518987003743,-0.0659692876482604,-0.0895639175697151,-0.0981041219252078 +9.032,-0.0195282385580613,0.0411978775798452,-0.0120155791629394,0.0688298894747843,-0.0659670325477789,-0.0895655815353013,-0.0980892748517239 +9.034,-0.0194971000184395,0.0412113331500566,-0.0120382564895802,0.0687948101153162,-0.0659693543348077,-0.0895649398273706,-0.0980751709701083 +9.036,-0.0194786517754382,0.0412150084899387,-0.0120482188564019,0.0687771301566376,-0.0659613004941139,-0.089571784772626,-0.098054949098386 +9.038,-0.0194405142819071,0.0412331748440061,-0.012077455115577,0.0687327251072144,-0.0659685755238181,-0.0895669598515612,-0.0980430078798018 +9.04,-0.0194184326163581,0.0412395446306087,-0.0120910398345724,0.0687099874461815,-0.0659637569440397,-0.0895712650192014,-0.0980244560180626 +9.042,-0.0193883732466265,0.0412535076674387,-0.0121139005250601,0.0686746810353644,-0.0659690241573575,-0.0895673099847899,-0.0980135662637938 +9.044,-0.0193706793889846,0.0412569576000088,-0.0121233878162296,0.068658157091552,-0.0659611169976506,-0.0895749584838212,-0.0979938475552661 +9.046,-0.0193321659266231,0.0412750374824778,-0.0121528178093706,0.0686130701293893,-0.0659682103740836,-0.0895698229568407,-0.0979814865756853 +9.048,-0.0193100032644756,0.0412814291106866,-0.0121664945578028,0.0685904236100263,-0.0659635064816714,-0.0895745018777286,-0.097962997613359 +9.05,-0.0192754707879819,0.0412967450397599,-0.0121922260588328,0.0685507411779813,-0.0659682365870314,-0.0895714230434921,-0.0979493769691049 +9.052,-0.0192552024926124,0.0413018054085552,-0.0122041664973265,0.0685304499712896,-0.0659625509548173,-0.0895767887479484,-0.0979303423255805 +9.054,-0.019219342823898,0.0413182257558628,-0.0122313683007092,0.0684887150128448,-0.0659687244054836,-0.0895725726440929,-0.0979175724600846 +9.056,-0.0191983730039538,0.0413238697429172,-0.0122441025144015,0.0684672981067439,-0.06596384963841,-0.0895772972946395,-0.0978990424480509 +9.058,-0.0191637826583747,0.0413394697104327,-0.0122701914636384,0.0684270751624423,-0.0659693210475418,-0.0895736045203394,-0.0978860088060262 +9.06,-0.0191434024185148,0.0413447398733658,-0.012282424283426,0.0684063547280335,-0.0659641583330736,-0.0895785546138121,-0.0978674110627832 +9.062,-0.0191086352780866,0.0413605442524012,-0.0123087654858274,0.0683657463822236,-0.0659699138686581,-0.0895746019852178,-0.0978546292643461 +9.064,-0.0190881325014385,0.0413659481245267,-0.0123211626959262,0.0683447947807816,-0.065964935235878,-0.0895793909996753,-0.097836205779093 +9.066,-0.0190537365473849,0.0413815215799898,-0.0123471745720352,0.0683046327681077,-0.0659704795203972,-0.0895755805026532,-0.0978233866217363 +9.068,-0.0190333894486534,0.0413868406519986,-0.0123594368187454,0.0682838714509008,-0.0659654231946737,-0.0895804141403268,-0.0978049820596498 +9.07,-0.0189989725744508,0.0414024510275405,-0.0123854745968689,0.0682436723319929,-0.06597100241385,-0.0895765671021842,-0.0977922422806828 +9.072,-0.018978594842561,0.0414078151441119,-0.0123977687935363,0.0682228707451937,-0.0659659753002919,-0.089581367604837,-0.0977739066977739 +9.074,-0.0189442826361291,0.0414233589902414,-0.0124236919693692,0.0681828363392979,-0.0659714572250455,-0.0895776017825222,-0.09776116846162 +9.076,-0.0189239431929734,0.041428714860741,-0.0124359426545613,0.0681621028259338,-0.0659663829923809,-0.0895824376320176,-0.0977428594297181 +9.078,-0.0188896399010668,0.0414442582756792,-0.0124618376705826,0.0681221092117506,-0.0659718192822845,-0.0895787144049635,-0.0977301491466815 +9.08,-0.0188692960551245,0.0414496368634659,-0.0124740844755579,0.0681013876766562,-0.065966718069776,-0.0895835710885087,-0.0977118781306095 +9.082,-0.0188350331339002,0.0414651559499652,-0.0124999195683625,0.0680614728131359,-0.0659720769894298,-0.0895799093635116,-0.0976991781745369 +9.084,-0.0188147040505642,0.0414705430694824,-0.0125121448900432,0.0680407844098836,-0.0659669323656156,-0.0895847950875774,-0.0976809353634662 +9.086,-0.0187804570224115,0.041486056739101,-0.0125379477115507,0.0680009019463994,-0.0659722364544512,-0.0895811658125,-0.0976682553651813 +9.088,-0.0187601337198892,0.0414914582419782,-0.0125501635474509,0.0679802244711406,-0.0659670618698028,-0.0895860618852429,-0.0976500437432628 +9.09,-0.0187259093617398,0.0415069633694881,-0.0125759341771127,0.0679403678179521,-0.0659723186098368,-0.0895824478645659,-0.0976373824958186 +9.092,-0.018705598154039,0.0415123731864114,-0.0125881386183352,0.0679196985107444,-0.0659671214420525,-0.0895873412177144,-0.0976191986413088 +9.094,-0.0186713909558636,0.0415278760135426,-0.0126138907584484,0.0678798438854484,-0.0659723526033395,-0.0895837168248735,-0.0976065604500832 +9.096,-0.0186510917033154,0.0415332922587004,-0.012626088444048,0.0678591719297552,-0.0659671474180597,-0.0895885918303488,-0.0975884028839105 +9.098,-0.0186169053988064,0.0415487921601465,-0.0126518268691028,0.0678193102787532,-0.0659723688661458,-0.0895849404007001,-0.0975757879555533 +9.1,-0.0185966218105794,0.041554209842179,-0.0126640181672161,0.0677986326197449,-0.0659671666879911,-0.0895897880353569,-0.0975576529818186 +9.102,-0.0185624579030722,0.0415697071998771,-0.0126897485699396,0.0677587555272208,-0.0659723937514173,-0.089586097392909,-0.0975450616070216 +9.104,-0.0185421916157007,0.0415751227322925,-0.0127019347783159,0.0677380695601425,-0.0659672043665709,-0.0895909126947556,-0.0975269459859929 +9.106,-0.0185080535829882,0.0415906154398549,-0.0127276586488463,0.0676981760005917,-0.0659724463434644,-0.08958717856312,-0.097514376593991 +9.108,-0.0184878062235513,0.0415960252631186,-0.0127398396471972,0.0676774825472834,-0.0659672755053539,-0.0895919616300537,-0.0974962770078532 +9.11,-0.0184536959157068,0.0416115111470909,-0.0127655573160229,0.0676375740564862,-0.0659725373082611,-0.0895881850796205,-0.0974837276057398 +9.112,-0.0184334675176987,0.0416169129847688,-0.0127777330776942,0.0676168747623546,-0.0659673876455872,-0.0895929391198899,-0.0974656415514866 +9.114,-0.0183993858678336,0.0416323893506632,-0.0128034431011842,0.0675769557871836,-0.0659726693497994,-0.0895891257895273,-0.0974531095944939 +9.116,-0.018379175543543,0.041637781811887,-0.0128156132578424,0.0675562532633285,-0.0659675403420797,-0.0895938562177307,-0.0974350352771566 +9.118,-0.0183451218041418,0.0416532463108677,-0.0128413136943569,0.067516328924755,-0.0659728387512587,-0.0895900141553955,-0.0974225182805292 +9.12,-0.0183249277092308,0.041658629010366,-0.0128534779650448,0.0674956257350286,-0.0659677277546216,-0.089594727193216,-0.0974044547224694 +9.122,-0.0182909000192877,0.0416740796876385,-0.0128791666146907,0.0674557011639032,-0.0659730374889029,-0.089590865349125,-0.0973919504130415 +9.124,-0.018270719918767,0.041679452919954,-0.0128913247143042,0.0674349996387041,-0.0659679405346352,-0.0895955671022642,-0.0973738972667176 +9.126,-0.0182367156155225,0.0416948884923995,-0.0129169996773159,0.0673950789782937,-0.0659732554639415,-0.0895916937895321,-0.0973614038514833 +9.128,-0.0182165472260491,0.0417002530507452,-0.0129291514183784,0.0673743808538379,-0.0659681682000049,-0.0895963894188683,-0.0973433612696986 +9.13,-0.0181825634545704,0.0417156729092787,-0.0129548112674972,0.0673344669188853,-0.0659734824911,-0.0895925112971328,-0.0973308775315987 +9.132,-0.0181624048286842,0.041721029842314,-0.0129669565282507,0.0673137732639365,-0.0659684008779374,-0.0895972045292141,-0.09731284599596 +9.134,-0.0181284389810197,0.0417364340514343,-0.01299260044676,0.0672738673453432,-0.0659737098026544,-0.0895933259593489,-0.0973003713595717 +9.136,-0.0181082887159923,0.0417417845084947,-0.013004739183055,0.0672531785187838,-0.0659686306221985,-0.0895980188420827,-0.0972823515582043 +9.138,-0.0180743388003221,0.0417571736955694,-0.0130303669234181,0.0672132805203431,-0.0659739309560912,-0.0895941417180425,-0.0972698860578734 +9.14,-0.0180541961467068,0.0417625188027063,-0.0130424991443969,0.0671925962607955,-0.0659688520490344,-0.0895988346587421,-0.097251878781181 +9.142,-0.0180202609706077,0.0417778940207791,-0.0130681109257033,0.0671527049785278,-0.0659741421518954,-0.089594958606828,-0.0972394229758796 +9.144,-0.0180001258115919,0.0417832348120993,-0.0130802366774704,0.0671320245444816,-0.0659690624391773,-0.0895996506209221,-0.0972214290429874 +9.146,-0.0179662050242684,0.0417985973676919,-0.0131058330192085,0.0670921380679738,-0.0659743420585766,-0.0895957734919598,-0.0972089838767832 +9.148,-0.0179460777740691,0.0418039347453781,-0.013117952359408,0.0670714604283368,-0.0659692613853441,-0.0896004626051082,-0.0971910040773644 +9.15,-0.0179121717718783,0.0418192860283265,-0.0131435339096447,0.0670315765577085,-0.0659745312961651,-0.0895965811233771,-0.0971785707153398 +9.152,-0.0178920532161729,0.0418246207470598,-0.0131556468870461,0.0670109005865882,-0.065969450174447,-0.0896012648387241,-0.0971606057656466 +9.154,-0.0178581629601316,0.0418399620738213,-0.0131812142661181,0.0669710172134452,-0.0659747117467043,-0.0895973752897208,-0.0971481854241463 +9.156,-0.0178380540769518,0.0418452947359996,-0.0131933209038818,0.0669503418669182,-0.0659696310612044,-0.0896020510443608,-0.0971302359321659 +9.158,-0.0178041808604018,0.0418606272246485,-0.0132188745900837,0.066910457264722,-0.0659748858467583,-0.0895981498918445,-0.0971178297267348 +9.16,-0.0177840826480265,0.0418659582814066,-0.0132309748776104,0.0668897817139336,-0.0659698065828603,-0.0896028154370251,-0.0970998961665822 +9.162,-0.0177502278584447,0.0418812827654162,-0.0132565151428275,0.0668498947157967,-0.0659750559821633,-0.0895988997950423,-0.0970875049930048 +9.164,-0.0177301411935746,0.0418866125188651,-0.0132686090356359,0.0668292184259475,-0.0659699790147901,-0.0896035534597733,-0.0970695876883181 +9.166,-0.0176963061018286,0.041901929503801,-0.0132941359321497,0.066789328484279,-0.065975224059694,-0.0895996213790782,-0.0970572121471085 +9.168,-0.0176762316410574,0.0419072581100208,-0.0133062233593133,0.0667686512368711,-0.0659701500233587,-0.0896042622007694,-0.0970393112643583 +9.17,-0.0176424172430747,0.0419225677707357,-0.013331736748899,0.0667287583800298,-0.0659753912836282,-0.0896003127651251,-0.0970269516312668 +9.172,-0.01762261492539,0.041929285309856,-0.0133448976088776,0.0667067112005941,-0.0659737284753833,-0.0896015951244292,-0.0970129929323892 +9.174,-0.0175928424513795,0.0419417671865308,-0.0133664645019705,0.0666726002882357,-0.0659756702118178,-0.0896008228681972,-0.0969991545816632 +9.176,-0.0175751511532924,0.041945078107452,-0.0133759637670924,0.0666555632832365,-0.0659679092227465,-0.0896076258141119,-0.0969796144836662 +9.178,-0.0175377811793089,0.0419626736810141,-0.013404649679225,0.0666111602017027,-0.06597514467712,-0.0896022205665835,-0.0969681493437385 +9.18,-0.0175161351021223,0.0419688610055761,-0.0134180396683572,0.0665885113064901,-0.0659707118263051,-0.089606183709633,-0.0969502920066757 +9.182,-0.0174827715061974,0.0419836543779718,-0.0134429453031235,0.0665495665485846,-0.0659753293396186,-0.0896029249409223,-0.0969374018769207 +9.184,-0.0174630288332417,0.0419885310186117,-0.0134545598705195,0.0665294083244021,-0.0659697353017336,-0.0896078131022439,-0.0969189421294518 +9.186,-0.0174281666589245,0.0420045201617533,-0.0134810420118235,0.0664881625387764,-0.0659757078452092,-0.0896033896556589,-0.0969068551973346 +9.188,-0.0174076664060867,0.0420100354727747,-0.0134934800058301,0.0664668275886523,-0.0659708484175281,-0.0896076988662975,-0.0968888833228403 +9.19,-0.0173739696356169,0.0420252669959393,-0.0135189084799704,0.0664270022361153,-0.0659760743120929,-0.0896038029066126,-0.0968764830071144 +9.192,-0.0173540251707815,0.0420304485023876,-0.0135308621914998,0.0664063561264411,-0.0659708932704,-0.0896083784332914,-0.0968584278282474 +9.194,-0.0173200655871025,0.0420459360781607,-0.0135566027670934,0.0663660219013582,-0.0659763937950521,-0.0896041749284917,-0.0968462560197519 +9.196,-0.0172999723115236,0.0420512753332429,-0.0135687378450549,0.0663451090694642,-0.0659713833304552,-0.0896085874794344,-0.0968283642124579 +9.198,-0.017266333701344,0.042066565656777,-0.0135941899379207,0.0663051510837319,-0.0659766812430115,-0.089604494222491,-0.0968161410477448 +9.2,-0.0172463825007506,0.0420718305531491,-0.0136062016865625,0.0662844094413671,-0.0659715947073916,-0.0896089479333156,-0.0967982577872895 +9.202,-0.0172126928754728,0.0420871745106701,-0.0136317098551481,0.0662443536650155,-0.0659769444428292,-0.0896047814532662,-0.0967861040663814 +9.204,-0.0171927051308708,0.0420924822318905,-0.0136437613170561,0.0662235546732739,-0.065971897474069,-0.0896091933496342,-0.0967682783967603 +9.206,-0.0171591016374418,0.0421077655184762,-0.0136691784634912,0.06618362233691,-0.0659771756605117,-0.0896050793062423,-0.0967561161554824 +9.208,-0.0171391490489872,0.0421130555742119,-0.0136811928870591,0.0661628815947518,-0.0659721009392789,-0.0896095208408731,-0.0967383043374072 +9.21,-0.0171055419698983,0.0421283347964347,-0.0137066001565712,0.0661229589167123,-0.0659773625667681,-0.0896054260616755,-0.0967261575329818 +9.212,-0.0170855828639403,0.0421336326091672,-0.013718615622483,0.0661022243318803,-0.0659722844207933,-0.0896098858882032,-0.0967083692493839 +9.214,-0.0170520053972967,0.042148878359814,-0.0137439778372386,0.0660623600649095,-0.0659774990898832,-0.0896058388195772,-0.0966962179783455 +9.216,-0.0170320579363318,0.0421541675243139,-0.0137559761468716,0.0660416568912934,-0.0659724025956596,-0.0896103304890666,-0.0966784425196794 +9.218,-0.0169984865995704,0.0421693946352321,-0.0137813169534129,0.0660018133122575,-0.0659775896664746,-0.0896063115235303,-0.0966662946000796 +9.22,-0.0169785409007486,0.0421746804405026,-0.0137933090194798,0.0659811224615722,-0.0659724859731768,-0.0896108214219343,-0.0966485349277041 +9.222,-0.016944982448836,0.0421898842660222,-0.0138186251262673,0.0659413001179983,-0.0659776476829947,-0.089606822254906,-0.0966363887424203 +9.224,-0.0169250437336866,0.0421951621839882,-0.0138306082711144,0.0659206210135633,-0.0659725399679724,-0.0896113414619945,-0.0966186427530522 +9.226,-0.0168914928436411,0.0422103490630849,-0.013855910123143,0.065880801094156,-0.0659776911569691,-0.0896073428847646,-0.0966065034024673 +9.228,-0.0168715604166165,0.0422156200174688,-0.0138678881529808,0.0658601240183921,-0.0659725885418959,-0.0896118580181205,-0.0965887719813847 +9.23,-0.0168380210125596,0.0422307911866332,-0.0138931780674036,0.065820300166419,-0.065977738172599,-0.0896078467778579,-0.0965766416903799 +9.232,-0.0168180984260266,0.0422360540290849,-0.0139051507667102,0.065799622078791,-0.0659726462555237,-0.0896123490050791,-0.0965589243362527 +9.234,-0.0167845726861807,0.0422512128251175,-0.0139304325777087,0.0657597865962204,-0.0659778033999871,-0.0896083132381401,-0.0965468062230827 +9.236,-0.0167646620278655,0.0422564682024201,-0.0139424007465227,0.0657391041112632,-0.0659727270879269,-0.0896127959588642,-0.096529103261499 +9.238,-0.0167311545615828,0.0422716161973008,-0.0139676747639974,0.0656992551531567,-0.0659778960971515,-0.089608729138794,-0.0965169990683393 +9.24,-0.0167112583946683,0.0422768647799693,-0.013979637916032,0.0656785678015631,-0.0659728372713351,-0.0896131895231676,-0.0964993107605698 +9.242,-0.0166777727359356,0.0422920036211837,-0.0140049037343153,0.0656387051932909,-0.0659780195078405,-0.0896090887242141,-0.0964872218748164 +9.244,-0.0166578924390079,0.0422972469386602,-0.0140168615227767,0.0656180131757583,-0.0659729780154967,-0.0896135264041542,-0.0964695489688358 +9.246,-0.0166244315890172,0.0423123774920274,-0.0140421172912726,0.0655781393156682,-0.0659781713720658,-0.089609392436342,-0.096457475972658 +9.248,-0.0166045678160142,0.0423176172843823,-0.0140540690764381,0.0655574438990941,-0.0659731449804872,-0.0896138092052752,-0.0964398193722567 +9.25,-0.0165711332860058,0.0423327401383448,-0.0140793126159293,0.065517562011848,-0.065978345205718,-0.0896096453093827,-0.0964277623804857 +9.252,-0.0165512857350381,0.0423379782996574,-0.0140912578750279,0.0654968647148909,-0.0659733304665258,-0.0896140442170098,-0.0964101231046372 +9.254,-0.0165178778362872,0.0423530936054446,-0.014116486842063,0.0654569785008659,-0.0659785319955336,-0.0896098552397261,-0.0963980817478344 +9.256,-0.0164980456160495,0.04235833179629,-0.0141284250917405,0.0654362810042212,-0.0659735248568648,-0.0896142400065163,-0.0963804606836246 +9.258,-0.016464663530386,0.0423734394402357,-0.0141536374852166,0.0653963938152263,-0.0659787219764639,-0.0896100313207551,-0.0963684342916498 +9.26,-0.0164448453633048,0.0423786789176011,-0.0141655683901106,0.0653756976307215,-0.0659737185262285,-0.0896144056858765,-0.0963508320699631 +9.262,-0.0164114875596313,0.0423937785374417,-0.0141907627193545,0.0653358121510956,-0.0659789062105142,-0.0896101823880777,-0.0963388197735852 +9.264,-0.0163916820858042,0.0423990199951308,-0.0142026860719822,0.0653151185114536,-0.0659739032048369,-0.0896145496414446,-0.0963212366637373 +9.266,-0.0163624132884041,0.042412774192671,-0.0142252573185127,0.0652791958661063,-0.0659796426636945,-0.0896093415002465,-0.0963116117559955 +9.268,-0.016344860625942,0.04241647859088,-0.0142349684660108,0.0652619758228854,-0.065972664773163,-0.0896159291798937,-0.0962932210962655 +9.27,-0.0163088849553259,0.0424330980468274,-0.0142623520907026,0.0652186497859872,-0.0659788258296046,-0.0896107265080699,-0.0962815419041363 +9.272,-0.0162878968414701,0.0424389815067895,-0.0142752068454515,0.0651966757586792,-0.0659740917005433,-0.0896150087444785,-0.0962639468690009 +9.274,-0.016254501340068,0.0424537838700635,-0.0143001513379431,0.0651570935293941,-0.0659787085346302,-0.0896112305366507,-0.0962513564141795 +9.276,-0.0162347854627007,0.0424587907697633,-0.0143118316193958,0.0651367513890017,-0.0659733388625316,-0.0896159498613169,-0.0962333779768444 +9.278,-0.0162004096568265,0.0424744096671495,-0.0143378489444747,0.0650956078490852,-0.0659789818899818,-0.0896112887665757,-0.0962213940787224 +9.28,-0.0161802070998552,0.0424798434911311,-0.0143500819699075,0.0650744362274841,-0.0659741649347573,-0.0896155321542105,-0.096203776215609 +9.282,-0.0161467354681684,0.04249491531728,-0.0143753167136605,0.0650343593478831,-0.0659793095245129,-0.0896112414472672,-0.0961916155381265 +9.284,-0.0161269649773371,0.042500108367688,-0.0143871917609505,0.0650136907018266,-0.0659742797579567,-0.0896156619311229,-0.0961739659012926 +9.286,-0.0160934098863083,0.0425153229737503,-0.0144125782842346,0.0649733261986462,-0.0659795917845564,-0.089611162161128,-0.0961619885833471 +9.288,-0.0160735798463532,0.0425206139379476,-0.0144245544962954,0.0649524960775189,-0.0659746739862393,-0.0896154652998188,-0.0961444742754365 +9.29,-0.0160403103445878,0.0425356729953591,-0.01444970082943,0.0649124342432047,-0.0659798321495841,-0.0896110380327812,-0.0961324830831829 +9.292,-0.016020602289596,0.0425409098704983,-0.0144615799879323,0.0648917335601309,-0.0659748629199105,-0.0896153575215519,-0.0961149947259393 +9.294,-0.0159873360917841,0.0425559930031383,-0.0144867386651242,0.0648516287423906,-0.0659800480398625,-0.089610869761674,-0.0961030670983569 +9.296,-0.0159676155468685,0.0425612579506434,-0.0144986380708784,0.064830891803158,-0.0659751082802548,-0.0896151449875858,-0.0960856325181573 +9.298,-0.0159344278097432,0.0425762929165636,-0.0145237197037973,0.0647908885713335,-0.065980241419458,-0.0896106881909173,-0.0960737105034444 +9.3,-0.0159147363121769,0.0425815456972654,-0.0145355901428745,0.0647701932584595,-0.0659752850590686,-0.0896149739479942,-0.0960562946697444 +9.302,-0.015881557629275,0.0425965719017091,-0.0145606535897863,0.0647302116191977,-0.065980402518261,-0.0896105332587426,-0.0960443899573396 +9.304,-0.0158618642667025,0.0426018289491768,-0.0145725210957656,0.064709523917598,-0.0659754429830348,-0.0896148297101469,-0.0960269954255986 +9.306,-0.0158287135433757,0.0426168262321787,-0.0145975434302479,0.0646695973416734,-0.0659805217721128,-0.0896104318186403,-0.096015091287373 +9.308,-0.0158090296753271,0.0426220757964295,-0.0146093954599508,0.0646489362669967,-0.0659755464411443,-0.0896147543701069,-0.0959977086755674 +9.31,-0.0157758894087041,0.0426370536158645,-0.0146343928817789,0.0646090379279518,-0.0659805976314738,-0.0896103887216156,-0.095985808664924 +9.312,-0.015756208087342,0.042642298797079,-0.0146462367222379,0.0645883906858047,-0.0659756128131102,-0.0896147301625438,-0.0959684392810841 +9.314,-0.0157230815287717,0.0426572541319686,-0.0146712079176397,0.0645485181929642,-0.0659806379134749,-0.0896103899404386,-0.0959565419514285 +9.316,-0.0157034061193352,0.0426624917840006,-0.0146830421553416,0.0645278831384141,-0.06597564625314,-0.0896147429572472,-0.0959391845567777 +9.318,-0.0156702887219317,0.0426774294910125,-0.0147079956172127,0.0644880198356327,-0.0659806569198254,-0.089610411153403,-0.0959272938408314 +9.32,-0.0156506189027027,0.0426826602345601,-0.0147198233540383,0.0644673884253011,-0.0659756661435937,-0.0896147635661333,-0.0959099494826192 +9.322,-0.0156175128894254,0.0426975820617283,-0.0147447623180755,0.0644275260228519,-0.0659806711561742,-0.0896104262084458,-0.0958980677858239 +9.324,-0.0155978515343343,0.0427028051686378,-0.0147565839122414,0.0644068942929252,-0.0659756871153464,-0.0896147685696096,-0.0958807365399326 +9.326,-0.015564758703555,0.0427177142951443,-0.014781512373375,0.0643670242758566,-0.06598069552486,-0.0896104128555903,-0.0958688669245552 +9.328,-0.0155451080150039,0.0427229302386263,-0.0147933286604328,0.0643463885117234,-0.0659757234990059,-0.0896147377484936,-0.0958515492652488 +9.33,-0.0155120323954597,0.0427378285645318,-0.0148182477816276,0.0643065073810019,-0.0659807407828769,-0.0896103554742061,-0.0958396937558893 +9.332,-0.0154923950026022,0.0427430378964599,-0.0148300585363733,0.0642858664162749,-0.065975783565293,-0.0896146589206722,-0.0958223899962782 +9.334,-0.0154593402186266,0.0427579271989296,-0.0148549684609678,0.064245972905818,-0.0659808123745828,-0.0896102455905893,-0.0958105501841571 +9.336,-0.015439717863702,0.0427631311480445,-0.0148667733946563,0.064225326527539,-0.0659758707403684,-0.0896145261921308,-0.0957932609164967 +9.338,-0.015410719569128,0.0427767034218846,-0.0148891027797856,0.0641893858968905,-0.0659814902546999,-0.0896091386422436,-0.0957837998660954 +9.34,-0.0153933306249095,0.0427803581552903,-0.0148987014992837,0.064172189007408,-0.0659745791424735,-0.0896155954459853,-0.0957656423270987 +9.342,-0.0153576881678781,0.0427967757909583,-0.0149258056066367,0.0641288475867348,-0.0659806496551061,-0.0896101920156872,-0.0957541904208773 +9.344,-0.0153368929391576,0.0428025879870668,-0.0149385314334955,0.06410687510994,-0.0659759760874786,-0.0896143144355397,-0.0957368469560481 +9.346,-0.0153038282650167,0.0428171986502512,-0.0149632119527903,0.0640672877925832,-0.0659805241941707,-0.0896103269701476,-0.0957244844078374 +9.348,-0.0152843286032552,0.0428236589797007,-0.0149760577876963,0.0640452445676141,-0.0659787199854164,-0.0896114174013115,-0.0957106860249158 +9.35,-0.0152544373881211,0.0428361744824396,-0.0149977421070529,0.0640101434984572,-0.0659809181902013,-0.089609831305924,-0.0956972987965917 +9.352,-0.0152358936960292,0.0428417343371628,-0.0150094491661026,0.063989734189409,-0.0659777295458887,-0.0896121844187339,-0.0956826151740772 +9.354,-0.0152042575581436,0.0428553097126133,-0.0150326432722618,0.0639523902332339,-0.0659806988477925,-0.0896099957298019,-0.0956695042275712 +9.356,-0.0151856345224927,0.0428592432758796,-0.015042999692662,0.0639337751612265,-0.0659737033349421,-0.0896160526656751,-0.0956505322284273 +9.358,-0.0151490746256385,0.0428760919594755,-0.0150708508141942,0.0638894877349361,-0.0659803259397835,-0.0896103692160181,-0.0956390172339094 +9.36,-0.0151285294697367,0.0428830767779221,-0.0150845541638431,0.0638660818027031,-0.0659789200761371,-0.0896110296379349,-0.0956251096741578 +9.362,-0.0150986593158452,0.042895420659924,-0.0151061126773257,0.0638310970628699,-0.0659808942305639,-0.089609632888061,-0.095611345206987 +9.364,-0.015081285035927,0.0428985017845329,-0.0151153242169007,0.0638140748849888,-0.0659732179930958,-0.0896162175527462,-0.0955919468680158 +9.366,-0.0150437298352018,0.0429161967398119,-0.0151442885887553,0.0637680169763693,-0.0659808374499453,-0.0896095321899019,-0.0955810064709921 +9.368,-0.0150222899570807,0.0429223714925905,-0.0151576371996199,0.0637448578186676,-0.0659767540400266,-0.0896128882521945,-0.0955636529853224 +9.37,-0.0149895130260533,0.0429368783412447,-0.0151821888514495,0.0637052557304136,-0.065981383252872,-0.0896086890138047,-0.0955512165696279 +9.372,-0.0149702173276106,0.0429432446973093,-0.0151949287693437,0.0636831361396324,-0.0659796059804178,-0.0896095727831135,-0.0955373128270439 +9.374,-0.0149402470860899,0.0429559742312847,-0.0152168610436067,0.0636473760312985,-0.0659821146061752,-0.0896074496166895,-0.0955240857154979 +9.376,-0.0149226102551202,0.0429594834317823,-0.0152265036560386,0.0636297063679274,-0.0659749531347376,-0.0896136037804154,-0.0955052270814488 +9.378,-0.0148862230711091,0.042976583013458,-0.0152545147917359,0.0635848148099502,-0.0659819646519713,-0.0896071679229413,-0.0954942021289088 +9.38,-0.0148652443591792,0.0429826008059503,-0.0152675179232821,0.06356212829767,-0.0659776994142456,-0.089610627678057,-0.0954769732731237 +9.382,-0.0148325745675268,0.0429971658019749,-0.0152920358520911,0.0635224579815229,-0.065982337332903,-0.089606264541181,-0.0954647398799326 +9.384,-0.0148133263010497,0.0430036019900363,-0.0153047652495929,0.06350033943909,-0.0659805664578149,-0.0896070957146936,-0.095451013277093 +9.386,-0.0147836015588827,0.0430162041135564,-0.0153264470937848,0.063464900855214,-0.0659828648002943,-0.0896050905777385,-0.0954378150633656 +9.388,-0.0147660503085464,0.0430197145749923,-0.015336003874633,0.0634473827253435,-0.0659756238764858,-0.0896113236891843,-0.0954190552828047 +9.39,-0.0147297140120365,0.0430367579887288,-0.0153638969134875,0.0634026372401522,-0.0659824844358859,-0.0896050135640482,-0.0954080610709779 +9.392,-0.0147087247626529,0.0430427963312724,-0.0153768724029273,0.063380018749057,-0.0659781507675193,-0.0896085693752964,-0.0953909082712843 +9.394,-0.0146761123304724,0.0430572696765957,-0.0154012473686917,0.0633405538555819,-0.0659826035821966,-0.0896044046678723,-0.0953786632344315 +9.396,-0.0146568497594763,0.0430636946405287,-0.0154139350539156,0.0633185278288526,-0.065980738170476,-0.0896053756406107,-0.0953649714259881 +9.398,-0.0146271347833653,0.0430762231666497,-0.0154355194315338,0.0632832279278331,-0.0659828895465884,-0.0896035446877332,-0.0953517594474582 +9.4,-0.0146095729206781,0.0430797287285839,-0.015445052499329,0.0632657819694939,-0.0659755930239474,-0.0896098923633248,-0.0953330468271397 +9.402,-0.0145732356360746,0.0430966799060357,-0.0154728518914457,0.0632211407416454,-0.0659823199823477,-0.089603732591006,-0.0953220283178765 +9.404,-0.0145522402245786,0.0431026880926147,-0.015485797598854,0.0631985764637472,-0.0659779409235274,-0.0896073735049319,-0.0953049047964439 +9.406,-0.0145196240334605,0.0431170902658245,-0.0155101155524263,0.0631591572977602,-0.0659823235771228,-0.0896032850718477,-0.0952926565232565 +9.408,-0.0145003726411762,0.043121936569015,-0.015521459317743,0.0631389434609068,-0.0659769475750742,-0.0896077908757965,-0.0952750630055172 +9.41,-0.0144665187184143,0.0431373354307761,-0.0155470930907614,0.063097519735918,-0.0659824850404889,-0.0896026295190417,-0.0952635541784748 +9.412,-0.0144466308263912,0.0431427245028046,-0.0155591374915797,0.0630762601727308,-0.0659777560983236,-0.089606578477358,-0.0952464214971834 +9.414,-0.0144138563578569,0.0431574306893554,-0.0155837967330671,0.0630362182969753,-0.065982638999535,-0.0896019404615948,-0.0952346510389204 +9.416,-0.0143944709670625,0.0431625208323846,-0.0155954053122539,0.0630156056841395,-0.0659776471517988,-0.0896061323948229,-0.095217461005181 +9.418,-0.0143615016546934,0.0431774206660422,-0.0156203020062684,0.0629751631510628,-0.065982762227524,-0.0896012372356096,-0.0952058948496224 +9.42,-0.0143422855597935,0.0431839680085766,-0.0156330966492299,0.0629529370530007,-0.0659812054179549,-0.0896019442286784,-0.0951926554750501 +9.422,-0.0143134490582705,0.0431959564648965,-0.0156539263573755,0.0629185950507598,-0.0659829596747618,-0.0896003432781171,-0.0951794538161435 +9.424,-0.0142963364957109,0.0431992464832954,-0.0156631264931929,0.0629016538404554,-0.0659756078619783,-0.0896067902866735,-0.0951609228660842 +9.426,-0.0142601848781314,0.0432161123332582,-0.0156908133420981,0.0628570009980312,-0.0659823944951573,-0.0896004287608336,-0.0951501103403971 +9.428,-0.01423926540458,0.0432221208151179,-0.0157037509141741,0.062834407381763,-0.0659781709705743,-0.0896039121952436,-0.0951332114571913 +9.43,-0.0142069952008689,0.0432363014741092,-0.0157277800915338,0.0627953019275839,-0.0659824679960515,-0.0895998092884988,-0.0951210343306399 +9.432,-0.0141879029241885,0.0432410702936821,-0.0157390162470514,0.0627752091119801,-0.0659771551171206,-0.0896042444591064,-0.095103568670032 +9.434,-0.0141542024951361,0.0432563788498726,-0.0157645385256048,0.0627338375260943,-0.0659827229266608,-0.0895989772272146,-0.0950921697427377 +9.436,-0.0141343903041031,0.0432617474323862,-0.0157765477658135,0.0627125832982851,-0.0659780909567463,-0.0896028267450127,-0.0950751665745238 +9.438,-0.0141018103472421,0.0432763409086554,-0.0158010525469449,0.062672654974079,-0.0659829538786245,-0.0895981318673484,-0.0950634713760717 +9.44,-0.0140825264847076,0.0432813993739995,-0.0158125973483098,0.0626520874152597,-0.0659780174858682,-0.0896022622855044,-0.095046387845875 +9.442,-0.0140536916032658,0.0432949429567689,-0.0158348531225151,0.0626156401214047,-0.065983704772554,-0.0895963651613444,-0.0950372281042517 +9.444,-0.014036433177679,0.0432986349608973,-0.0158444015794504,0.0625982539142395,-0.0659769752979603,-0.0896025459926028,-0.0950193974594838 +9.446,-0.014001350484947,0.0433147844908822,-0.015871064062668,0.0625548369901009,-0.0659828804610213,-0.0895967733123965,-0.0950082310263129 +9.448,-0.0139808803637919,0.0433205185431023,-0.0158835663920284,0.0625328674348429,-0.0659782457102433,-0.089600670805988,-0.0949912231602075 +9.45,-0.0139482539270972,0.043334950941201,-0.0159079132929936,0.0624931086770631,-0.0659826989184247,-0.0895962788086426,-0.0949792082986939 +9.452,-0.0139289852384955,0.0433398789093702,-0.0159193181537448,0.0624727183521885,-0.0659774937754209,-0.0896005827282928,-0.0949618772775278 +9.454,-0.0138994388829377,0.0433537813008563,-0.0159421272371117,0.0624354415237535,-0.0659834730169938,-0.0895944051291946,-0.0949527601465385 +9.456,-0.0138818535450113,0.0433576241661854,-0.0159519151687912,0.0624176443486318,-0.0659768704252714,-0.0896004117357797,-0.0949348988547958 +9.458,-0.0138466445903525,0.0433737758451872,-0.0159786267448843,0.0623741249907758,-0.0659827641599077,-0.0895946372185348,-0.0949236430813883 +9.46,-0.0138261622158924,0.0433794762949873,-0.0159911055696287,0.0623521400729738,-0.0659780972072832,-0.089598538583176,-0.0949065547017243 +9.462,-0.0137933486333315,0.0433940171644044,-0.0160156184086379,0.0623120583650798,-0.0659826663388047,-0.0895940035878707,-0.0948945687589497 +9.464,-0.0137740330945096,0.043398973177047,-0.0160270668799521,0.0622915522933027,-0.0659775017740367,-0.0895982578481706,-0.0948772358166516 +9.466,-0.0137405351813707,0.043414152647086,-0.0160523917244687,0.0622502192791523,-0.0659829066117016,-0.0895929172258731,-0.0948658102985897 +9.468,-0.0137208681107331,0.0434194654993342,-0.0160642769380265,0.0622290276695877,-0.0659782192301638,-0.0895967244227566,-0.0948488394823861 +9.47,-0.0136882271878474,0.043434154609953,-0.0160888726492126,0.0621887127831572,-0.0659831837405072,-0.0895917147473001,-0.0948372876446398 +9.472,-0.0136689551050306,0.0434392704840933,-0.0161004392531005,0.0621679864933361,-0.0659783281777099,-0.0895956730493783,-0.0948203271706983 +9.474,-0.0136363021085422,0.0434540523683793,-0.0161251100895981,0.0621274944907048,-0.0659834035046311,-0.0895904983082406,-0.0948089384881236 +9.476,-0.0136172803502807,0.043460577979542,-0.0161377901687961,0.062105234147799,-0.0659818943584742,-0.0895910061104984,-0.0947958888183997 +9.478,-0.0135886966020621,0.0434725060182873,-0.0161584505990211,0.0620707989144972,-0.0659836503924614,-0.0895891243198102,-0.0947828827086605 +9.48,-0.0135717293294619,0.0434758360430912,-0.0161675837021134,0.062053830571024,-0.0659764132766387,-0.0895954144734983,-0.0947646088138174 +9.482,-0.0135359427244262,0.0434925635384267,-0.0161949936860049,0.0620091412164206,-0.0659830922252701,-0.0895887740187572,-0.0947539811780148 +9.484,-0.0135152264041931,0.0434985657118512,-0.0162078044251844,0.0619865485879154,-0.0659789067650206,-0.0895920971677477,-0.0947373234606235 +9.486,-0.013483258282932,0.0435126463899351,-0.0162316028016268,0.0619474036622401,-0.0659831211707272,-0.0895877517438358,-0.094725346262871 +9.488,-0.0134643319718716,0.0435174317145003,-0.0162427398682403,0.0619273041542117,-0.0659778570705984,-0.0895920430626752,-0.0947081307485965 +9.49,-0.0134349027557362,0.0435313436470308,-0.0162655000692453,0.0618898716606483,-0.0659838882247867,-0.0895856490948611,-0.0946992162704958 +9.492,-0.0134173467592213,0.0435352531298959,-0.0162753064523668,0.0618719634796324,-0.0659773968570305,-0.0895915281154973,-0.0946815642561493 +9.494,-0.0133825448166677,0.0435511843429211,-0.0163016609926113,0.061828725898729,-0.0659830902490709,-0.0895857724685269,-0.0946703860991363 +9.496,-0.0133622483885184,0.0435568211886329,-0.0163139923527221,0.0618068685956451,-0.0659783867517034,-0.0895896722248584,-0.0946534334233628 +9.498,-0.0133296145299791,0.0435712707927915,-0.0163383432126287,0.0617668062498441,-0.0659828828002924,-0.089585060917329,-0.0946415760140151 +9.5,-0.0133104442405295,0.043577678532913,-0.016350970013661,0.0617446071849011,-0.0659811257725328,-0.0895858072509095,-0.0946282331854084 +9.502,-0.013281166242651,0.0435898908523759,-0.0163721284766539,0.0617093909064828,-0.065983127326064,-0.0895837440576552,-0.0946152257028879 +9.504,-0.0132638899455204,0.0435933041133501,-0.0163814590944161,0.061692058605171,-0.0659759806088727,-0.0895899323042235,-0.0945968744890676 +9.506,-0.0132279201660275,0.0436100117415832,-0.0164089417829227,0.0616471600075846,-0.0659826678536784,-0.0895832839371141,-0.0945861644739751 +9.508,-0.0132071809813242,0.0436159526588741,-0.0164217328829509,0.061624512631706,-0.0659784757664518,-0.0895866056315409,-0.0945694337571607 +9.51,-0.0131750499732776,0.0436300905141585,-0.0164456699113983,0.0615850021152455,-0.0659828142261539,-0.0895820784165421,-0.0945574916718722 +9.512,-0.01315610631742,0.0436348662363068,-0.0164568309396311,0.0615647762022373,-0.0659776237283572,-0.0895862872674638,-0.0945402909209583 +9.514,-0.0131227619397914,0.0436500216894721,-0.0164820882634869,0.0615231948047179,-0.0659831267593897,-0.089580615987778,-0.0945291168483924 +9.516,-0.013103193469106,0.0436553545733824,-0.0164939491841793,0.0615018909304686,-0.0659785797513491,-0.0895842351680273,-0.0945123890439313 +9.518,-0.0130709668547785,0.0436698229427276,-0.0165182081495856,0.0614617429939809,-0.065983414795891,-0.0895791075452001,-0.0945009592984752 +9.52,-0.0130519110440038,0.0436748684309249,-0.0165296247173249,0.0614411061002375,-0.0659785904500894,-0.0895829832418145,-0.0944841780193154 +9.522,-0.0130195032587765,0.0436895369834065,-0.0165541069000965,0.0614005672471977,-0.0659836334842589,-0.089577605592441,-0.0944729581066694 +9.524,-0.0130003282683909,0.0436947182633871,-0.0165656660411908,0.0613797107855363,-0.0659789436518969,-0.0895813452434578,-0.0944563305582963 +9.526,-0.0129682263511885,0.0437091987885728,-0.0165898592185397,0.0613395887126043,-0.0659837817927797,-0.0895761300019011,-0.0944450642754365 +9.528,-0.0129491747409556,0.0437143175813826,-0.0166013022526493,0.0613189125009447,-0.0659790123534162,-0.089579937812521,-0.0944284505962299 +9.53,-0.0129170399360701,0.0437288263389344,-0.0166255135183325,0.0612787566941099,-0.0659838592832694,-0.0895747081794366,-0.0944172384269976 +9.532,-0.0128979531008531,0.0437339806957455,-0.0166369827943458,0.0612580478288238,-0.0659791047922399,-0.0895785044909828,-0.0944006778091043 +9.534,-0.0128658921493301,0.0437484248786264,-0.0166610954410123,0.0612180418767036,-0.0659838617369906,-0.0895733672757906,-0.0943894521809926 +9.536,-0.0128468283800689,0.0437535638831716,-0.0166725288534633,0.0611973963492861,-0.0659790689076918,-0.0895772095865666,-0.0943729059363834 +9.538,-0.0128186893555382,0.043766737201464,-0.0166941411507,0.0611613673592236,-0.0659843779490921,-0.0895712194257431,-0.0943639724216767 +9.54,-0.0128017709573407,0.0437703679086889,-0.0167034122420617,0.0611442036949817,-0.0659776346678529,-0.0895773068598575,-0.0943465110265864 +9.542,-0.012767140152872,0.0437862755328618,-0.0167296216862849,0.0611008536509235,-0.0659833122950161,-0.0895713367784657,-0.0943356696767456 +9.544,-0.0127468845177027,0.0437919957508199,-0.0167419442946766,0.0610789083118942,-0.0659787036863216,-0.0895750918570656,-0.0943190624927958 +9.546,-0.0127186887091854,0.0438048622292426,-0.016763296624204,0.0610433248985332,-0.0659834459223613,-0.0895697269373514,-0.0943095796236219 +9.548,-0.0127019736122151,0.043808138747557,-0.0167721990681447,0.0610267237200544,-0.0659762141083733,-0.0895762667823217,-0.0942916390309876 +9.55,-0.0126700729093442,0.043823381322332,-0.0167968938790976,0.0609858869897631,-0.0659830335875177,-0.0895689480273555,-0.0942831593357273 +9.552,-0.0126512300350149,0.0438279818875042,-0.0168076906883565,0.0609663978934095,-0.065976905518601,-0.0895745226844169,-0.094265673133539 +9.554,-0.0126166697029939,0.0438433696089351,-0.0168334634144828,0.0609237435460939,-0.0659818509597981,-0.0895693283417285,-0.0942539970409139 +9.556,-0.0125965691343488,0.0438486820453458,-0.0168454367338157,0.0609022630796386,-0.0659767726131296,-0.0895734888063602,-0.0942367574958634 +9.558,-0.012563030871027,0.043863552980782,-0.0168704887289123,0.0608608227900826,-0.0659817277774026,-0.0895682836094366,-0.0942251051384766 +9.56,-0.0125434668360424,0.0438686448116411,-0.0168821362266258,0.0608397316537748,-0.0659768356742132,-0.0895721608271607,-0.0942080228302765 +9.562,-0.0125102588440095,0.0438835464042089,-0.0169071368511034,0.0607982692691213,-0.0659821016847815,-0.0895665604646183,-0.0941966920817728 +9.564,-0.012490850244878,0.0438887074499368,-0.0169188029866382,0.0607770939560651,-0.0659774606462188,-0.0895701919211868,-0.0941798896350348 +9.566,-0.0124583294705643,0.0439033433856668,-0.0169433361919123,0.0607362021587923,-0.06598256541193,-0.0895646069526051,-0.0941686372835192 +9.568,-0.0124392250594221,0.0439084355130137,-0.0169548262052087,0.0607152652322326,-0.0659779210134422,-0.089568231426251,-0.0941519754284341 +9.57,-0.0124070136624259,0.0439230064759865,-0.0169791819794546,0.0606745409888369,-0.0659829946196604,-0.0895625593573354,-0.0941408473844324 +9.572,-0.0123880174698889,0.0439281223346225,-0.0169906340887605,0.0606536462963307,-0.065978390100878,-0.089566121402808,-0.0941243227317572 +9.574,-0.0123560647258649,0.0439425963626223,-0.0170147919885948,0.0606131772956089,-0.0659833619722606,-0.0895604763645308,-0.094113242834009 +9.576,-0.0123371522259278,0.0439477106824367,-0.0170261865114898,0.0605923704398151,-0.0659787406812773,-0.0895640342313673,-0.0940967953537915 +9.578,-0.0123052996819516,0.0439621469556215,-0.017050247806546,0.0605520421496194,-0.0659836450892136,-0.0895584322516014,-0.094085753784753 +9.58,-0.012286400148721,0.0439672795058354,-0.0170616239949622,0.0605312763570693,-0.0659790041116297,-0.08956200670761,-0.0940693631340852 +9.582,-0.012254608274446,0.0439816683500075,-0.0170855917481867,0.0604911037806882,-0.0659838118941074,-0.0895565106530616,-0.0940583249079202 +9.584,-0.0122357100904357,0.043986807246883,-0.017096943728747,0.0604703965662139,-0.0659791243699302,-0.0895601453290888,-0.0940419652288155 +9.586,-0.0122039320196564,0.0440011587348859,-0.0171208446252615,0.0604303415730815,-0.0659838368466452,-0.0895547700194516,-0.0940309196481822 +9.588,-0.0121850194556361,0.0440063027949478,-0.0171321806913876,0.0604096814974451,-0.0659790987748095,-0.0895584774421258,-0.0940145810936197 +9.59,-0.012153242410611,0.0440206139475124,-0.0171560217849697,0.0603697268006587,-0.0659837165769912,-0.0895532226322859,-0.0940035197607239 +9.592,-0.0121343160140048,0.0440257556073763,-0.017167341954351,0.0603491089245194,-0.0659789300103743,-0.0895569994666955,-0.0939871951530062 +9.594,-0.0121025282152128,0.044040031753519,-0.0171911401707474,0.0603092184258088,-0.0659834737713229,-0.0895518363247448,-0.0939761208821378 +9.596,-0.0120835890740949,0.0440451669916952,-0.0172024493252671,0.0602886265434574,-0.0659786541141506,-0.0895556603257693,-0.0939598083456494 +9.598,-0.0120517902266132,0.0440594123965992,-0.0172262182046672,0.0602487693447496,-0.0659831507351318,-0.089550550683599,-0.0939487268034539 +9.6,-0.0120328448922374,0.0440645365491504,-0.017237519213402,0.0602281893365469,-0.0659783174723965,-0.0895543942921307,-0.0939324251952535 +9.602,-0.0120010388054815,0.0440787577772117,-0.0172612727309775,0.0601883355362507,-0.0659827982025334,-0.0895492965193715,-0.0939213446492251 +9.604,-0.0119820950089907,0.0440838680294753,-0.0172725685579439,0.0601677541512731,-0.0659779721065133,-0.0895531326067467,-0.0939050537910048 +9.606,-0.0119502911058611,0.044098070721956,-0.0172963161810434,0.0601278829910657,-0.0659824642755074,-0.0895480113460545,-0.0938939818635203 +9.608,-0.0119313577210809,0.044103165438735,-0.0173076080419984,0.0601072917796126,-0.0659776623568119,-0.0895518190501615,-0.0938777017014991 +9.61,-0.011899567281063,0.044117354731986,-0.0173313552589348,0.0600673907052192,-0.0659821862391046,-0.0895466484509746,-0.0938666448382036 +9.612,-0.0118806520197868,0.0441224342419843,-0.017342643387996,0.0600467851230328,-0.0659774198648166,-0.0895504145683529,-0.093850375870026 +9.614,-0.0118488864216979,0.0441366140033429,-0.0173663911415341,0.0600068502759123,-0.0659819861488794,-0.0895451801845935,-0.0938393385600789 +9.616,-0.0118299949514384,0.0441416803426331,-0.0173776747791452,0.0599862295043112,-0.0659772599328639,-0.0895488993085067,-0.0938230818372268 +9.618,-0.0117982632702684,0.0441558534023395,-0.0174014206533142,0.0599462634501181,-0.0659818699689276,-0.0895435971893161,-0.0938120666800697 +9.62,-0.011779398419656,0.0441609100968822,-0.0174126985998462,0.0599256291116297,-0.0659771823156511,-0.089547270370657,-0.0937958238461925 +9.622,-0.0117477063662486,0.0441750782221195,-0.0174364378470721,0.0598856388722104,-0.0659818295042134,-0.0895419052231698,-0.0937848316486231 +9.624,-0.0117288682234814,0.0441801296343564,-0.0174477087162217,0.0598649941456228,-0.0659771738710035,-0.0895455383039461,-0.093768604679731 +9.626,-0.0116972177263105,0.044194293727086,-0.0174714355858036,0.0598249888539916,-0.0659818461737826,-0.0895401208052751,-0.0937576348001295 +9.628,-0.0116784041097356,0.0441993443777407,-0.0174826980867542,0.0598043375593563,-0.065977212928807,-0.0895437225228484,-0.0937414256820989 +9.63,-0.0116467937581132,0.0442135046025895,-0.0175064068929557,0.0597643266014478,-0.0659818956546592,-0.0895382665292687,-0.0937304764088126 +9.632,-0.0116280010235355,0.0442185584904603,-0.0175176599691071,0.0597436725579902,-0.0659772740245841,-0.0895418467418011,-0.0937142867881922 +9.634,-0.0115964269236088,0.0442327144519091,-0.0175413459582199,0.0597036640860886,-0.0659819525229989,-0.0895363666518054,-0.0937033557767631 +9.636,-0.0115776508075821,0.0442377745517506,-0.0175525888850016,0.0596830106035892,-0.0659773323787787,-0.0895399347848406,-0.0936871867090833 +9.638,-0.0115461076653458,0.0442519254496966,-0.0175762487595761,0.0596430106192996,-0.0659819942008566,-0.0895344434090806,-0.0936762713923377 +9.64,-0.0115273440463994,0.044256993420513,-0.0175874811728159,0.059622360182524,-0.0659773674206855,-0.0895380072797516,-0.0936601232147498 +9.642,-0.0114958262080473,0.0442711382061886,-0.0176111133107387,0.0595823721168299,-0.0659820037554941,-0.0895325143717568,-0.0936492211575572 +9.644,-0.0114770716672291,0.0442762143351491,-0.0176223351951715,0.0595617262276071,-0.0659773650538356,-0.089536079455714,-0.0936330934972323 +9.646,-0.01144557398217,0.0442903518444828,-0.0176459395802192,0.0595217509866625,-0.0659819713557777,-0.089530590985328,-0.0936222026537201 +9.648,-0.0114268261339355,0.0442954351890859,-0.017657151216575,0.059501110167766,-0.065977318548212,-0.0895341601518499,-0.0936060945421777 +9.65,-0.0113953445464403,0.0443095642554982,-0.0176807291568943,0.0594611465246501,-0.0659818944268623,-0.0895286782687226,-0.0935952134042277 +9.652,-0.0113766021415534,0.0443146529327226,-0.017691931042754,0.0594405104520638,-0.0659772281992807,-0.0895322519333392,-0.0935791234607132 +9.654,-0.0113451339939208,0.0443287724739997,-0.0177154847547409,0.059400555663571,-0.0659817767281788,-0.0895267754884724,-0.0935682510995086 +9.656,-0.0113263968347725,0.0443338640299559,-0.017726677509693,0.0593799233905635,-0.0659771000346608,-0.089530352084312,-0.0935521777422637 +9.658,-0.0112949409046734,0.0443479731118675,-0.0177502096537356,0.0593399739023207,-0.0659816266932227,-0.0895248775175412,-0.0935413137631043 +9.66,-0.011276209627616,0.0443530649096056,-0.017761393923833,0.0593193441254605,-0.0659769439397547,-0.0895284541537294,-0.0935252554148395 +9.662,-0.0112447659571353,0.0443671627878985,-0.017784907164824,0.0592793962478504,-0.0659814554101956,-0.0895229765415069,-0.0935143998529794 +9.664,-0.0112260417440534,0.0443722523594442,-0.0177960835383267,0.0592587675688666,-0.065976771581117,-0.0895265497141214,-0.093498355115297 +9.666,-0.0111946113321697,0.0443863385035216,-0.0178195801872942,0.0592188180316166,-0.0659812745996961,-0.0895210637893181,-0.09348750830356 +9.668,-0.0111758956087922,0.0443914238272444,-0.01783074913122,0.0591981891767356,-0.0659765944620788,-0.0895246300283601,-0.0934714760849855 +9.67,-0.0111444800423581,0.0444054979279369,-0.0178542309012675,0.0591582355072,-0.0659810948760744,-0.0895191310277905,-0.0934606385201827 +9.672,-0.0111257742102763,0.0444105776084829,-0.0178653927235114,0.0591376054802219,-0.0659764223595666,-0.0895226873975898,-0.0934446181109529 +9.674,-0.0110943752997995,0.0444246395721461,-0.0178888606113141,0.0590976461867894,-0.0659809244827413,-0.0895171716489848,-0.0934337903393383 +9.676,-0.0110756805337516,0.0444297129164294,-0.0179000154488901,0.0590770143470689,-0.0659762622886742,-0.0895207160590366,-0.0934177814333317 +9.678,-0.0110443000047759,0.0444437628470545,-0.0179234697334124,0.0590370489218087,-0.0659807685877865,-0.0895151812770778,-0.0934069639667328 +9.68,-0.0110256171304141,0.044448829843764,-0.0179346175636272,0.0590164149920093,-0.0659761180385861,-0.0895187125984103,-0.0933909666365044 +9.682,-0.010994256401755,0.0444628680147539,-0.0179580578995311,0.0589764437701952,-0.0659806291310444,-0.0895131579093437,-0.0933801599026073 +9.684,-0.0109755858538982,0.0444679292355105,-0.0179691985684837,0.0589558077883735,-0.0659759902352915,-0.0895166759219178,-0.0933641745374375 +9.686,-0.0109442459143785,0.0444819560529247,-0.0179926241432953,0.0589158317158022,-0.0659805051387095,-0.0895111016726053,-0.0933533788610659 +9.688,-0.0109255877638688,0.0444870124998022,-0.0180037574049189,0.0588951939517172,-0.0659758768220657,-0.0895146068891163,-0.0933374060802958 +9.69,-0.0108942691421236,0.0445010284593188,-0.0180271671266278,0.0588552143135432,-0.0659803933732488,-0.0895090143164456,-0.0933266216882126 +9.692,-0.010875623171771,0.0445060813858423,-0.018038292685512,0.058834575170029,-0.0659757738122762,-0.0895125077364255,-0.0933106622428581 +9.694,-0.0108443259812236,0.0445200870262063,-0.0180616853698395,0.0587945933291156,-0.0659802891659771,-0.0895068985773612,-0.0932998892827252 +9.696,-0.0108256917882626,0.0445251377575597,-0.0180728029219506,0.0587739532469026,-0.0659756761600443,-0.0895103814240081,-0.0932839439576457 +9.698,-0.0107944158223057,0.0445391336137746,-0.018096177454813,0.0587339704279869,-0.0659801872845166,-0.0895047575379159,-0.0932731825220577 +9.7,-0.0107757929257371,0.0445441833876279,-0.018107286721691,0.0587133298075927,-0.0659755786084542,-0.0895082310210166,-0.0932572520490164 +9.702,-0.0107445377764526,0.0445581699473973,-0.0181306421806568,0.0586733469490195,-0.0659800827116589,-0.0895025940784146,-0.093246502197362 +9.704,-0.0107259257116603,0.0445632197905617,-0.0181417429343422,0.0586527060976264,-0.0659754764056819,-0.0895060592132224,-0.0932305871865427 +9.706,-0.0106946908881115,0.0445771974574105,-0.0181650786616776,0.0586127237777072,-0.065979971248589,-0.0895004104832525,-0.0932198489601528 +9.708,-0.0106760892769457,0.0445822481065839,-0.0181761707392954,0.0585920828832945,-0.0659753658190474,-0.0895038679801439,-0.0932039498545364 +9.71,-0.0106487166752604,0.0445950010144716,-0.0181970926863759,0.0585560346940921,-0.065980446564564,-0.0894973492281576,-0.0931954433419456 +9.712,-0.0106322387228911,0.0445985723983395,-0.0182060516133623,0.0585389070701694,-0.065973955211203,-0.0895030673851879,-0.0931785969949186 +9.714,-0.0105985020372761,0.0446140128624065,-0.0182314673019924,0.0584954603739535,-0.0659794098100668,-0.0894964331401458,-0.0931682654677058 +9.716,-0.0105787514217065,0.0446196358482677,-0.018243429279412,0.0584734719169306,-0.0659750071024274,-0.0894997270185694,-0.0931523077871158 +9.718,-0.0105475122696838,0.0446333288680429,-0.0182664984699552,0.0584338914534591,-0.065978974106772,-0.0894946141599861,-0.0931410683702595 +9.72,-0.0105289844850405,0.0446381382677373,-0.0182773551325623,0.058413581852896,-0.0659739936726578,-0.0894983873672766,-0.093124768940366 +9.722,-0.0104967934412306,0.0446526023757237,-0.0183014551185023,0.0583723460382178,-0.0659789182759868,-0.0894922902331214,-0.0931141168540044 +9.724,-0.0104778121638999,0.0446578109671281,-0.0183128268197016,0.0583511807450652,-0.0659744548274594,-0.0894955411793916,-0.0930981641400964 +9.726,-0.0104464681027246,0.0446717868075327,-0.0183362047059775,0.0583109977187431,-0.0659789472960585,-0.089489813781422,-0.0930873446693074 +9.728,-0.0104278946451643,0.0446767862211271,-0.0183472442982719,0.058290329634445,-0.0659743100389743,-0.0894932460823456,-0.0930713635610631 +9.73,-0.0104003194268092,0.0446896825896049,-0.0183683698068049,0.0582537848596559,-0.0659795562294515,-0.0894864392091254,-0.0930629223991113 +9.732,-0.0103837916490252,0.0446933061725433,-0.0183773885587028,0.0582364582266005,-0.0659731555739629,-0.0894920274975183,-0.0930461032123778 +9.734,-0.0103501461277413,0.0447087402533635,-0.0184027674151553,0.0581928383989113,-0.0659786362413817,-0.0894851932083832,-0.0930358109313165 +9.736,-0.0103304860013527,0.0447143511204913,-0.0184146797612414,0.0581708027880972,-0.0659742620777712,-0.0894883912965165,-0.093019886147008 +9.738,-0.0102993084460504,0.0447280786563487,-0.0184377523407494,0.0581309988289708,-0.0659782985666264,-0.0894830375444321,-0.0930087351378864 +9.74,-0.010280894864528,0.0447343088399702,-0.0184498165184472,0.0581088053849729,-0.0659766332620568,-0.089483173706783,-0.0929962109804923 +9.742,-0.0102527091353995,0.0447460479688763,-0.0184700271292116,0.0580735378970132,-0.0659784359593699,-0.0894802817846405,-0.0929839462582189 +9.744,-0.010235992785513,0.0447495191862221,-0.0184790084048068,0.0580561741759879,-0.0659717086041422,-0.0894859358849651,-0.0929666252414926 +9.746,-0.0102014265808017,0.0447654898189035,-0.0185052131234351,0.0580113073825069,-0.0659778715766074,-0.0894784174895928,-0.0929565902927298 +9.748,-0.0101814385174013,0.0447713035360789,-0.0185174402619078,0.057988689540609,-0.0659738475030646,-0.0894811704628518,-0.092940787670136 +9.75,-0.0101504880486291,0.0447848883360215,-0.0185403223393222,0.0579491235334059,-0.0659778383389114,-0.0894758238512882,-0.0929295911151122 +9.752,-0.0101321839522984,0.0447896283246844,-0.0185510281599791,0.0579288741992526,-0.0659728921264117,-0.0894794844327739,-0.0929133444955269 +9.754,-0.0101000967129621,0.0448041562566586,-0.018575135169527,0.0578872806215559,-0.0659779441326445,-0.0894730066315566,-0.0929028670316916 +9.756,-0.0100812153295445,0.0448094072456973,-0.0185864803395809,0.0578659887400123,-0.0659735747588836,-0.0894760939907467,-0.092887054961434 +9.758,-0.010050170249862,0.0448233049171334,-0.0186096572328794,0.0578257902735766,-0.0659780118406458,-0.0894701756007416,-0.0928763349134362 +9.76,-0.0100317624477103,0.0448282950630474,-0.0186205909973911,0.057805143482586,-0.0659733878109421,-0.0894735298675335,-0.0928604699823955 +9.762,-0.0100005544985808,0.0448423687265057,-0.0186439626263136,0.0577645770408927,-0.0659780033675412,-0.0894673799219428,-0.0928499376460591 +9.764,-0.00998233645215994,0.0448487155324309,-0.0186560230692694,0.0577422460477123,-0.0659765789042928,-0.0894672207819632,-0.0928378168547025 +9.766,-0.00995502208151949,0.0448600676929719,-0.0186755392500037,0.0577078397833231,-0.0659780428205561,-0.0894645228763784,-0.0928256347620728 +9.768,-0.00993870948383389,0.0448634366243737,-0.0186842295303937,0.0576909007968759,-0.0659712315335797,-0.0894702991788302,-0.0928085127760286 +9.77,-0.00990450199574264,0.0448792894293707,-0.0187101481059188,0.0576462148201875,-0.0659772578741379,-0.0894627135337806,-0.0927986475868921 +9.772,-0.00988463090274762,0.0448851285087662,-0.0187222970056641,0.0576236571486866,-0.0659732375817858,-0.0894654395584586,-0.0927830574988205 +9.774,-0.00985402136007463,0.0448985208392988,-0.0187448341550379,0.0575844778994437,-0.0659769961549827,-0.089460218450546,-0.0927719213041454 +9.776,-0.00983582651296719,0.0449032391457518,-0.0187554288752169,0.0575643699725969,-0.0659719957370383,-0.089463922155455,-0.0927558115675766 +9.778,-0.00980387681193365,0.0449176511394385,-0.0187793348289781,0.0575229605306102,-0.0659768884765927,-0.0894575307212198,-0.0927453934965367 +9.78,-0.00978501994233853,0.0449229004099056,-0.0187906241301693,0.0575017233213511,-0.0659724857894417,-0.0894606481785487,-0.0927296970766864 +9.782,-0.00975408401140043,0.044936671469279,-0.0188136089470632,0.05746171470631,-0.0659767590105032,-0.0894548521208531,-0.0927190032376295 +9.784,-0.00973570240078876,0.0449416412236499,-0.0188244795656935,0.0574411362597647,-0.0659720931007554,-0.0894582582194048,-0.0927032249600603 +9.786,-0.00970455844444568,0.0449556077517051,-0.0188477021987549,0.0574006829808805,-0.0659765791548119,-0.089452199848554,-0.0926927180737832 +9.788,-0.00968606055355015,0.0449606952154122,-0.018858710036363,0.0573798714139326,-0.0659720468500058,-0.0894554676387103,-0.092677068957708 +9.79,-0.00965519955994666,0.0449744896575259,-0.0188816773929264,0.057339786469405,-0.0659763705730047,-0.0894495419454416,-0.0926665156463849 +9.792,-0.00963682416709313,0.0449795108380916,-0.0188925791221885,0.0573191345975195,-0.0659717849843567,-0.089452856107393,-0.092650872050806 +9.794,-0.00960593379353242,0.0449933369159942,-0.0189155802042948,0.0572789690298241,-0.065976153207904,-0.0894468616738837,-0.0926403758219617 +9.796,-0.00958753447983092,0.0449983847515577,-0.0189265094745806,0.0572582635274209,-0.0659716072963656,-0.0894501268378914,-0.0926247795693644 +9.798,-0.0095567212513369,0.0450121588029184,-0.018949433931139,0.0572182026835047,-0.0659759322682689,-0.0894441650092956,-0.0926142810369103 +9.8,-0.00953835356006555,0.0450171895403226,-0.0189603330120522,0.0571975383122339,-0.06597137794794,-0.089447436098464,-0.0925986985227212 +9.802,-0.00950754543731687,0.0450309587173373,-0.0189832471486372,0.0571574759302739,-0.0659757036202985,-0.0894414658629473,-0.0925882187026363 +9.804,-0.00948917738667708,0.0450359934486873,-0.0189941454034929,0.0571368055187987,-0.0659711585379047,-0.0894447279374259,-0.0925726577428407 +9.806,-0.00945840125647025,0.0450497383920316,-0.0190170224639057,0.0570967817652314,-0.0659754620590483,-0.0894387724840908,-0.0925621822251969 +9.808,-0.00944004747903419,0.045054767106097,-0.0190279056927442,0.0570761268810977,-0.065970913710076,-0.0894420386430884,-0.0925466351117943 +9.81,-0.00940928760043998,0.0450684999010924,-0.0190507616299678,0.0570361118328074,-0.0659752059719196,-0.0894360828403652,-0.0925361700191842 +9.812,-0.00939094157712084,0.0450735280814489,-0.0190616368820169,0.0570154587549142,-0.0659706594707192,-0.0894393453361602,-0.0925206395626975 +9.814,-0.00936020451617889,0.0450872458889899,-0.0190844670776688,0.0569754560321225,-0.0659749379411084,-0.0894333870782184,-0.0925101834772055 +9.816,-0.00934187031087112,0.045092271793277,-0.0190953316353877,0.0569548066549711,-0.0659703925087398,-0.0894366435421233,-0.0924946688631804 +9.818,-0.00931115276565213,0.0451059790488038,-0.0191181415538644,0.0569148045359323,-0.0659746631100099,-0.0894306725464941,-0.092484224992762 +9.82,-0.00929282960265845,0.0451110043412553,-0.0191289975325717,0.0568941533775894,-0.0659701220902464,-0.0894339168948949,-0.0924687274244542 +9.822,-0.00926213389165806,0.0451247016064227,-0.0191517873527474,0.0568541497631958,-0.0659743870835626,-0.0894279280630523,-0.0924582966522919 +9.824,-0.00924408805860356,0.0451309574001778,-0.0191636509810852,0.0568319738161698,-0.0659729133246785,-0.0894277581481298,-0.0924463923863201 +9.826,-0.00921702897336928,0.0451421212308098,-0.0191828520496427,0.0567977638083657,-0.0659742438211192,-0.0894250560236162,-0.092434375640706 +9.828,-0.00920081345250975,0.0451454872185382,-0.0191914500276546,0.0567808539100512,-0.065967515333433,-0.0894307498376508,-0.0924175177491351 +9.83,-0.00916693918235323,0.0451610758065072,-0.0192169721638624,0.0567363481689782,-0.0659733395654617,-0.0894231160328232,-0.0924077750416339 +9.832,-0.00914723735345491,0.0451668507351366,-0.0192289608759647,0.0567138411723674,-0.0659693520287925,-0.0894257422713197,-0.092392409899711 +9.834,-0.0091169028297905,0.0451800663340174,-0.0192512083049077,0.056674700496214,-0.0659730215923606,-0.0894203656697961,-0.0923814443557693 +9.836,-0.0090988616987874,0.0451847537662838,-0.0192616834494649,0.0566545842354742,-0.0659681093869875,-0.0894239149149644,-0.0923655734479445 +9.838,-0.0090710107107011,0.0451977974586469,-0.019282958397482,0.0566171025725908,-0.0659735284293939,-0.0894164665650809,-0.0923575045084179 +9.84,-0.00905434770770867,0.0452016079472025,-0.0192920904800995,0.0565992698976277,-0.0659674318967537,-0.0894216372261741,-0.0923410965599513 +9.842,-0.00902129635547001,0.0452166346632566,-0.0193168174951677,0.0565558404193911,-0.065972580709072,-0.0894146182897859,-0.0923309463927336 +9.844,-0.00900197191726017,0.0452221260287877,-0.0193284149021284,0.0565338948958251,-0.0659682118328006,-0.089417655030629,-0.0923153118676896 +9.846,-0.00897109891949649,0.0452357084037631,-0.0193511698219914,0.0564937673137416,-0.0659721979992115,-0.08941184226905,-0.0923044868847109 +9.848,-0.00895291566454391,0.0452418967754159,-0.019363043028631,0.0564714377046469,-0.0659705982830266,-0.0894116934442672,-0.0922922834493721 +9.85,-0.00892896438618887,0.045252241079317,-0.0193804987308828,0.0564400365728224,-0.0659729130149994,-0.0894076318371268,-0.0922824787083406 +9.852,-0.00891531055664894,0.0452537847092183,-0.0193865309612127,0.0564273596202722,-0.0659640222673557,-0.0894159370388672,-0.0922643063695929 +9.854,-0.00887808028964841,0.0452713982098857,-0.0194149526698786,0.0563777022993087,-0.0659714410835137,-0.089406385862684,-0.0922552128664036 +9.856,-0.00885712089981981,0.0452778135816607,-0.0194279275339809,0.0563534679534052,-0.0659678008021436,-0.0894085939164938,-0.092239766047353 +9.858,-0.00883056057541955,0.0452896286454926,-0.0194476687045707,0.0563183573347088,-0.06597168518006,-0.0894026580977294,-0.0922304846338889 +9.86,-0.00881510861942807,0.0452923730473148,-0.0194554538619354,0.0563026091588924,-0.065964369377322,-0.0894089908857609,-0.0922130687646454 +9.862,-0.00877963027438126,0.0453088913697502,-0.0194823559647269,0.0562555087477101,-0.0659709670740345,-0.0894003395158018,-0.0922034967661302 +9.864,-0.00875938444682667,0.0453149007885515,-0.0194947463802227,0.0562321192384967,-0.0659671128673327,-0.0894027093633291,-0.0921879368157137 +9.866,-0.0087287401546853,0.0453282625171171,-0.0195172422074924,0.0561922345611388,-0.0659708794483473,-0.0893969971664524,-0.0921768324319156 +9.868,-0.00871072383208825,0.0453328951292325,-0.0195276625425784,0.0561719746886353,-0.0659659127981471,-0.0894004823985384,-0.0921607527562979 +9.87,-0.00867870185009606,0.0453474556349529,-0.0195516954571669,0.0561294831077911,-0.0659710720084767,-0.08939321130957,-0.0921506252900252 +9.872,-0.00866036776477273,0.0453539002676401,-0.0195638395760238,0.0561064961232878,-0.0659698447570772,-0.0893925476069382,-0.0921386678323182 +9.874,-0.00863323765148835,0.045365197230291,-0.0195831814850974,0.0560715766058657,-0.0659713798214939,-0.089389299054634,-0.0921266778038266 +9.876,-0.00861716739097208,0.0453685371372331,-0.0195916802066304,0.056054542541291,-0.0659647069482412,-0.0893948248878185,-0.092109769706044 +9.878,-0.00858326516811228,0.0453843407447429,-0.0196173787610786,0.0560091317617953,-0.0659707945421778,-0.0893864375596022,-0.0921002393551096 +9.88,-0.00856366542143676,0.0453901910722481,-0.0196293498605215,0.0559863234058984,-0.0659669302147262,-0.0893887617956597,-0.0920849823387029 +9.882,-0.00853356500372759,0.0454034403537825,-0.0196514934069535,0.0559468190336634,-0.0659706459902318,-0.0893829393825602,-0.0920741654892196 +9.884,-0.00851569670815036,0.0454081612424437,-0.019661864909244,0.0559266092205195,-0.0659657746432512,-0.0893863203564972,-0.0920584169094876 +9.886,-0.00848428909882427,0.0454224139781893,-0.0196853352384154,0.0558848984752198,-0.0659705779788822,-0.089379320490508,-0.0920483404209391 +9.888,-0.00846574948257707,0.0454276765313703,-0.0196963985913504,0.0558635516661779,-0.0659662845525855,-0.089382108456269,-0.0920330321711158 +9.89,-0.00843537205378334,0.0454412601569643,-0.0197188998269069,0.0558233860844226,-0.0659704122123078,-0.0893758210342883,-0.0920226636397682 +9.892,-0.00841729348268663,0.0454462446482989,-0.0197295370647454,0.0558027493921561,-0.0659658269627149,-0.0893789551108848,-0.0920072767680649 +9.894,-0.0083866920880353,0.0454600021943271,-0.0197522495644145,0.0557622031813814,-0.0659701139767362,-0.08937248662185,-0.0919970779432165 +9.896,-0.00836847516407666,0.0454651020470437,-0.0197630206043038,0.0557413561162539,-0.065965630548629,-0.0893755293475032,-0.0919818180408976 +9.898,-0.00834188329547644,0.045477490761616,-0.0197831607357385,0.055705170592624,-0.0659703158020905,-0.0893684714644484,-0.0919737049710804 +9.9,-0.00832584039095396,0.0454810795868136,-0.0197917440836061,0.0556880879575511,-0.0659639333507558,-0.0893739494502656,-0.0919574658645551 +9.902,-0.00829294335454629,0.0454960949508202,-0.0198162713374548,0.0556444173804925,-0.0659689662916355,-0.0893666825678958,-0.0919476076726328 +9.904,-0.00827363723643906,0.0455016914866507,-0.019827823261732,0.0556223553785348,-0.0659646137799321,-0.0893696408218424,-0.091932298882601 +9.906,-0.00824699180156031,0.0455137671598547,-0.0198476969379278,0.0555866793093821,-0.0659687596350966,-0.0893632386255375,-0.0919236810067416 +9.908,-0.00823111012205219,0.0455170280605292,-0.0198559565370625,0.0555701375537493,-0.0659619405063714,-0.0893691411294769,-0.091907018312997 +9.91,-0.00819710917202168,0.04553254137339,-0.0198813325527189,0.0555251289941485,-0.0659674463107066,-0.0893614410990798,-0.0918972446825854 +9.912,-0.00817737672816421,0.0455382733984848,-0.0198931917098487,0.0555025296490316,-0.0659632535659404,-0.0893641953341832,-0.0918818693447786 +9.914,-0.00814683156100594,0.0455514982534675,-0.0199154328431496,0.0554627889896402,-0.0659668205843627,-0.0893585869266849,-0.0918709768733887 +9.916,-0.00812875209139176,0.0455561939221588,-0.0199258540491576,0.0554424734529126,-0.0659618933458567,-0.0893620580676019,-0.0918552108877924 +9.918,-0.00810087247205116,0.0455691634217333,-0.0199470210563077,0.0554045750177556,-0.0659672180208229,-0.0893543466557753,-0.0918472188688754 +9.92,-0.00808427465989131,0.0455729556687359,-0.0199560515736177,0.0553866371876242,-0.065961170623229,-0.0893594041168572,-0.0918309527726473 +9.922,-0.00805135216591289,0.0455878697958874,-0.019980577511987,0.0553428238150264,-0.0659662638170103,-0.0893520207414946,-0.0918209611515429 +9.924,-0.0080321584923964,0.0455933296996299,-0.0199920445267735,0.0553207430880426,-0.065961968919762,-0.0893548629876365,-0.0918055282475718 +9.926,-0.0080015420716051,0.0456067698829367,-0.02001453266076,0.0552803720941264,-0.0659659029550009,-0.0893487007666399,-0.0917948901679224 +9.928,-0.00798345889377503,0.0456115759691206,-0.0200250690598205,0.0552597520517639,-0.0659612231635032,-0.0893518697863667,-0.0917792839511077 +9.93,-0.00795227747156491,0.0456255853335825,-0.0200482705010158,0.0552181424777557,-0.0659659189119213,-0.0893448164406791,-0.0917691888047207 +9.932,-0.00793423373655938,0.0456318846415001,-0.0200601475475963,0.0551953818960697,-0.0659646530363875,-0.0893441104479704,-0.0917574387864545 +9.934,-0.00790735859216612,0.0456430337214562,-0.0200792252400417,0.0551605315620467,-0.0659661564758119,-0.0893407154279662,-0.0917456606017857 +9.936,-0.00789137316461309,0.0456463918752208,-0.0200876660573236,0.0551434399701671,-0.065959641905778,-0.0893460654252908,-0.0917290369883239 +9.938,-0.0078578868346145,0.0456619115002675,-0.020112927341304,0.0550982515636051,-0.0659655495993693,-0.0893375863903221,-0.0917196315558791 +9.94,-0.00783848861095469,0.0456676886232292,-0.0201247202923952,0.0550755043313986,-0.0659617388995288,-0.089339783497419,-0.0917045945072266 +9.942,-0.00780867177762511,0.0456807772900567,-0.0201465796517388,0.0550360179193772,-0.0659653969663477,-0.0893337713947372,-0.0916939586427864 +9.944,-0.00779095403713162,0.0456854794047306,-0.0201568340484188,0.0550157857442239,-0.0659606268575323,-0.0893369879757398,-0.0916784491465358 +9.946,-0.00775989051451693,0.0456995482080232,-0.020179973310784,0.0549741170191249,-0.0659653352252318,-0.0893297864167087,-0.0916685377617264 +9.948,-0.00774154067815933,0.0457047792210844,-0.0201908874052718,0.0549527704064508,-0.0659611168239141,-0.0893324091995652,-0.0916534570939291 +9.95,-0.00771148447271128,0.0457182211337856,-0.0202130950170931,0.054912581982931,-0.0659651810608621,-0.0893258740210874,-0.0916432754396487 +9.952,-0.00769358649712007,0.0457231972233615,-0.0202235979647157,0.0548919168030422,-0.0659606814899684,-0.0893288226583031,-0.0916281260633183 +9.954,-0.00766332934691086,0.0457368156406024,-0.0202460028690705,0.054851348711772,-0.065964893095836,-0.0893220908381067,-0.0916181157660943 +9.956,-0.0076453043924071,0.0457419113902725,-0.0202566309389926,0.0548304756488357,-0.0659604846441615,-0.0893249432139368,-0.091603094239717 +9.958,-0.00761902310075858,0.0457541891627638,-0.0202765024433705,0.0547942491942251,-0.065965099269189,-0.0893176238522023,-0.0915951571817518 +9.96,-0.00760314799007251,0.0457577998124456,-0.020284964919537,0.0547771482415493,-0.0659588105736934,-0.0893229320474518,-0.0915791553013946 +9.962,-0.00757061463864807,0.0457726798812314,-0.0203091643454931,0.0547334347380689,-0.065963742183945,-0.0893153770462558,-0.0915694883901933 +9.964,-0.00755207805528352,0.0457792438176451,-0.0203212607627229,0.0547102935877303,-0.0659621988457522,-0.0893149811076365,-0.091557786476023 +9.966,-0.00752896827683207,0.0457889914431725,-0.0203376854556898,0.0546799135113558,-0.0659636485028679,-0.0893114578158392,-0.0915478921175117 +9.968,-0.00751591388077025,0.0457902857710331,-0.0203430804298478,0.0546681321251172,-0.065954380368684,-0.0893202101274769,-0.0915298818835321 +9.97,-0.00747847888701721,0.0458078944580776,-0.0203713635557037,0.0546175935311227,-0.0659616392980561,-0.0893101430246746,-0.0915211444494085 +9.972,-0.00745748179803095,0.0458143874245085,-0.0203842383426737,0.0545930558335343,-0.0659580098343184,-0.0893121340743802,-0.0915061044837072 +9.974,-0.00742760408939715,0.0458270139766413,-0.0204056418976849,0.0545542641499092,-0.065960845782444,-0.0893070181627219,-0.0914948217519046 +9.976,-0.0074096798409678,0.0458329023001247,-0.0204170408146414,0.0545322061955717,-0.0659588608481397,-0.0893069918318179,-0.0914825469481583 +9.978,-0.00738140135202615,0.0458446937618569,-0.0204371094858319,0.0544955353778548,-0.0659608241123651,-0.089303002203315,-0.0914709466882736 +9.98,-0.00736470896015881,0.0458483765083624,-0.0204460449348498,0.0544774742404049,-0.0659545481523089,-0.089307994575945,-0.0914543996312215 +9.982,-0.00733121345235442,0.0458636644368617,-0.0204710746266814,0.0544323406657336,-0.0659601767159742,-0.0892996646499938,-0.0914447953417197 +9.984,-0.00731189328324053,0.0458692992905955,-0.02048270340509,0.0544096502778708,-0.0659562499748964,-0.0893019056812303,-0.0914296687970701 +9.986,-0.00728176804126572,0.0458825229668121,-0.0205047870288918,0.0543693916520565,-0.0659601058080906,-0.0892954614424919,-0.0914191608361286 +9.988,-0.00726400293006368,0.0458872518713784,-0.0205150885970479,0.0543488556596109,-0.0659554817971185,-0.0892984577576463,-0.0914037367422912 +9.99,-0.00723309813021827,0.0459012317790609,-0.0205381113522929,0.0543069129304047,-0.0659602374511203,-0.0892909241906103,-0.0913938995294298 +9.992,-0.00721492078091339,0.0459063889891414,-0.0205489183514709,0.054285492663745,-0.0659561263037076,-0.0892933548809149,-0.0913788950497952 +9.994,-0.00718500934906462,0.0459198207534552,-0.0205710920531275,0.0542448958625111,-0.0659603660746579,-0.0892863374758585,-0.091368879738561 +9.996,-0.00716726131426451,0.0459247706960794,-0.0205815381785221,0.054224076769645,-0.0659560526015991,-0.0892890089473644,-0.091353860355849 +9.998,-0.00713727903284342,0.0459383262699941,-0.0206038139125673,0.0541832691844953,-0.0659603981840913,-0.0892818391793265,-0.0913440088136395 +10,-0.00711944822967417,0.045943383854011,-0.0206143490917748,0.0541623096615463,-0.0659561573876699,-0.0892844351645095,-0.0913291214188991 +10.002,-0.00708972283916583,0.0459567746769466,-0.02063635268986,0.0541219551815746,-0.0659602858325482,-0.0892775058350009,-0.091319220650753 +10.004,-0.007071970406915,0.0459617939993711,-0.0206467907156127,0.0541011792984555,-0.0659559470512011,-0.0892802189359943,-0.0913043511533896 +10.006,-0.00704221682940642,0.0459751794981842,-0.0206687611316667,0.0540608877620976,-0.0659600032926952,-0.0892733805189538,-0.091294469953921 +10.008,-0.00702470994199643,0.0459813928239453,-0.0206801905050047,0.0540385698670442,-0.0659585749828118,-0.0892727133598251,-0.0912831194430437 +10.01,-0.00699846653068725,0.0459922954041335,-0.0206986247965521,0.0540042802240939,-0.0659597071817889,-0.0892694369637347,-0.0912716222689533 +10.012,-0.00698263455276224,0.0459957666040806,-0.0207069083600417,0.0539873047508166,-0.0659531763038569,-0.0892748019409364,-0.0912554463813265 +10.014,-0.00694977375854194,0.0460108587768094,-0.0207313664998003,0.0539428115580289,-0.0659584635279415,-0.0892666153027815,-0.0912461438102633 +10.016,-0.00693056153707196,0.0460166075340922,-0.0207428778073888,0.053920304660364,-0.0659544598129218,-0.0892689414005661,-0.091231418903798 +10.018,-0.00690105305524355,0.046029424683901,-0.0207642006846241,0.0538811904063062,-0.0659576622576044,-0.0892631424203221,-0.0912209247609322 +10.02,-0.0068834060854118,0.0460354741238972,-0.0207755087509634,0.0538591096241103,-0.0659558840065572,-0.0892628489696907,-0.0912092822149987 +10.022,-0.0068563861708731,0.0460466515445714,-0.0207944413088992,0.0538239860002458,-0.0659571846012725,-0.0892593983695814,-0.0911977899017546 +10.024,-0.00683944746899101,0.0460520361329003,-0.0208048579438213,0.0538034473965201,-0.0659543105827479,-0.0892604901448917,-0.091185407390821 +10.026,-0.0068109320827224,0.0460640143544402,-0.020824990789801,0.0537662519957029,-0.0659561146321585,-0.089256473881371,-0.0911740546212022 +10.028,-0.00679393096827502,0.0460679721866908,-0.020834126434747,0.0537477943129632,-0.0659498627301292,-0.08926145668962,-0.0911578097318188 +10.03,-0.00676089520534823,0.0460828195385635,-0.0208584679414699,0.053703438224628,-0.0659548372779424,-0.0892536174041484,-0.0911480670126312 +10.032,-0.00674219241810115,0.0460893416237086,-0.0208706115235284,0.0536798888601004,-0.065953435811956,-0.0892528503010754,-0.091136371824757 +10.034,-0.00671515987238383,0.0461003122755655,-0.0208894362422541,0.0536448597855567,-0.0659545560005056,-0.089249542379844,-0.0911245042158943 +10.036,-0.00669923043939662,0.0461035604203074,-0.0208976466063246,0.0536278449745631,-0.0659478746367681,-0.0892549413702658,-0.0911079120940661 +10.038,-0.00666534067393491,0.0461191293892571,-0.0209229851646614,0.0535816505366637,-0.065953807033809,-0.0892459177215272,-0.0910987063351313 +10.04,-0.00664588429711764,0.0461249264245109,-0.0209347350460414,0.0535585032656428,-0.0659500989330891,-0.0892477953411149,-0.0910838889413983 +10.042,-0.00661623991874362,0.0461378495979293,-0.0209563177026304,0.0535186269160028,-0.0659536945904074,-0.0892413564655313,-0.0910734309315349 +10.044,-0.0065987281972351,0.046142482482193,-0.0209663795805747,0.0534982682048722,-0.0659490391636398,-0.0892443031816095,-0.0910581569709751 +10.046,-0.00656794328209138,0.0461564225157825,-0.0209892569894794,0.0534560719556709,-0.0659537969733822,-0.0892364586828965,-0.0910485256531094 +10.048,-0.0065498489305927,0.0461616110802895,-0.0209999945980779,0.0534345232823348,-0.0659497805189701,-0.0892386941074827,-0.0910337464185808 +10.05,-0.00652026738596717,0.046174875527224,-0.0210218363719243,0.0533939927622436,-0.0659538933651035,-0.0892315210601834,-0.0910238608569121 +10.052,-0.00650270148638339,0.0461797981209869,-0.0210321247894001,0.0533731991086833,-0.0659496134587244,-0.0892340770744392,-0.0910090310072961 +10.054,-0.00647297876645224,0.0461932469028949,-0.0210541446207771,0.0533323132545402,-0.0659538900638112,-0.0892266719889657,-0.0909993479700807 +10.056,-0.0064556240693552,0.0461994485987813,-0.0210655192198228,0.0533097767183867,-0.0659526241677319,-0.0892256757342933,-0.0909881226884215 +10.058,-0.0064296248908422,0.0462103255491197,-0.021083843572185,0.0532752178938886,-0.0659539103022085,-0.0892219595666165,-0.0909767937023796 +10.06,-0.00641398276021202,0.046213785317117,-0.0210920349976898,0.0532581552820088,-0.065947559547205,-0.0892270749718447,-0.0909607664505189 +10.062,-0.00638145937545839,0.0462288355521874,-0.0211163241964912,0.0532133783856356,-0.0659529581441612,-0.0892183694312662,-0.0909516702211584 +10.064,-0.00636246527032581,0.0462345817045972,-0.0211277260522817,0.0531907595043289,-0.0659491070199356,-0.0892204038994276,-0.0909371259921045 +10.066,-0.00633329134283522,0.0462473482248281,-0.0211488509679613,0.0531514931637033,-0.0659523751926575,-0.0892142089635502,-0.0909268228711702 +10.068,-0.00631583269572482,0.0462520816921688,-0.021158823397999,0.0531312915044049,-0.0659476065787941,-0.0892172739091682,-0.0909118073964799 +10.07,-0.00628538472458331,0.046265770007833,-0.0211811897714571,0.0530898575985202,-0.0659518493385052,-0.0892099425423233,-0.090902163910406 +10.072,-0.00626730095296577,0.0462709848380711,-0.0211917869796034,0.053068568161387,-0.065947584098105,-0.0892124456531409,-0.0908875298470724 +10.074,-0.00623776270600897,0.0462840893940441,-0.0212133064091166,0.053028510542514,-0.065951244863102,-0.0892057545775693,-0.0908776217982927 +10.076,-0.00622010050542775,0.0462890548597102,-0.0212235243007088,0.053007859422755,-0.0659467325573286,-0.0892085646009028,-0.0908629110883753 +10.078,-0.0061940203768345,0.0463011840214311,-0.0212430488119326,0.0529713010291862,-0.0659511824039791,-0.0892008710917735,-0.0908552588986027 +10.08,-0.00617825391635808,0.0463048669954536,-0.0212513805227593,0.05295402282906,-0.0659450472766529,-0.0892059388147999,-0.0908396791052521 +10.082,-0.00614632507580092,0.0463193554806321,-0.0212748652385078,0.0529103822895402,-0.0659496265544889,-0.0891981118667036,-0.0908302321931926 +10.084,-0.00612753878256238,0.046324879540064,-0.0212859379732548,0.0528883002637374,-0.0659453565731103,-0.0892006713154933,-0.0908155441054923 +10.086,-0.00609797578108698,0.0463377522083708,-0.0213072528498144,0.0528485429315323,-0.0659486186116349,-0.0891944158600947,-0.0908052876785704 +10.088,-0.00608033273385562,0.0463425368290323,-0.0213173301493303,0.0528281092508474,-0.0659438801383934,-0.0891974363203092,-0.090790323208772 +10.09,-0.00604991403873879,0.0463560855162444,-0.0213395749609128,0.0527867249528416,-0.0659480241668993,-0.0891901427645067,-0.0907806259265679 +10.092,-0.00603187876384162,0.0463612098154286,-0.0213501080600747,0.0527654575060445,-0.0659437737574841,-0.0891926002021028,-0.0907659856593648 +10.094,-0.00600224873539643,0.0463743243172507,-0.0213717112527526,0.0527250943193561,-0.0659475856726701,-0.0891856568921254,-0.0907561495646506 +10.096,-0.00598459706506044,0.0463792581059042,-0.0213819484073193,0.0527043023015688,-0.0659432205409563,-0.0891882745242138,-0.0907414853190302 +10.098,-0.00595494243550355,0.0463924799061405,-0.0214036584403689,0.0526636731036934,-0.065947195359351,-0.0891810995990703,-0.0907318016519128 +10.1,-0.00593727390544099,0.0463974830602485,-0.0214139606658952,0.052642743983863,-0.0659429426543032,-0.0891836022903417,-0.0907172444647472 +10.102,-0.00590789696467799,0.04641057778877,-0.0214354596556693,0.0526024198566113,-0.0659468203490542,-0.0891765055171474,-0.0907075496815654 +10.104,-0.00589034734177636,0.0464155382752318,-0.0214456763309107,0.0525816212483416,-0.0659425472820061,-0.0891790358737205,-0.0906930147257428 +10.106,-0.00586101326138989,0.0464286406741801,-0.021467159008524,0.0525412869681386,-0.0659464445872882,-0.0891718890544163,-0.0906833699130161 +10.108,-0.00584346839630485,0.0464336219157397,-0.0214773811981044,0.052520466451712,-0.0659421971153331,-0.0891743848235121,-0.0906688814306161 +10.11,-0.00581421804605188,0.0464466826070986,-0.0214987845519608,0.0524802433446573,-0.0659460475471138,-0.0891672741270394,-0.0906592420693932 +10.112,-0.00579669839491398,0.046451660224028,-0.0215089796465926,0.0524594609311924,-0.0659417853935139,-0.0891697806876975,-0.0906447756560644 +10.114,-0.00576746612221417,0.0464647101278037,-0.0215303496348409,0.0524192726728083,-0.0659456060049191,-0.0891626893960272,-0.0906351498333579 +10.116,-0.00574994264897195,0.0464696979763421,-0.0215405373548281,0.0523984954772503,-0.0659413316500596,-0.0891652036047539,-0.0906207076070182 +10.118,-0.00572073294315865,0.0464827255228985,-0.0215618602149571,0.0523583639937491,-0.0659451025419774,-0.0891581550077074,-0.0906110823370652 +10.12,-0.00570321048663799,0.046487716823715,-0.0215720324058534,0.0523376054794311,-0.0659408042804281,-0.0891606903592569,-0.0905966571252229 +10.122,-0.00567400695498325,0.0465007293667688,-0.0215933207433506,0.0522975048856833,-0.0659445313657699,-0.0891536749642999,-0.0905870343268335 +10.124,-0.00565648066530502,0.0465057256892014,-0.0216034820788698,0.0522767547606117,-0.0659402125513983,-0.0891562264440103,-0.0905726261218521 +10.126,-0.00562728477869749,0.0465187217303872,-0.0216247366227695,0.0522366798269208,-0.0659438989770185,-0.0891492376765411,-0.0905630049281727 +10.128,-0.0056097584994456,0.0465237198132075,-0.0216348860963054,0.0522159369987488,-0.0659395633347526,-0.0891517998680763,-0.0905486120695908 +10.13,-0.00558056867275887,0.0465367024971719,-0.0216561141178884,0.0521758720536872,-0.0659432209995149,-0.0891448215767643,-0.0905389958363056 +10.132,-0.00556304474166189,0.0465417009766531,-0.021666253721479,0.052155130242266,-0.065938877046141,-0.0891473841046348,-0.0905246182814458 +10.134,-0.00553386486286875,0.046554671378403,-0.0216874592527827,0.0521150663767858,-0.0659425174392921,-0.0891404018826892,-0.0905150097056149 +10.136,-0.00551634782371073,0.0465596680313771,-0.0216975894356541,0.0520943224902437,-0.0659381733375309,-0.0891429557675598,-0.0905006469018095 +10.138,-0.00548718187023549,0.0465726279646404,-0.0217187767745881,0.0520542512889514,-0.0659418081495266,-0.0891359560459608,-0.0904910490884197 +10.14,-0.00546967558664484,0.0465776214457057,-0.0217288983021221,0.0520335023864425,-0.0659374715143276,-0.0891384936724221,-0.0904767007750871 +10.142,-0.00544052871034505,0.0465905718791154,-0.0217500696183927,0.0519934198215823,-0.0659411094459357,-0.0891314670501136,-0.0904671159157292 +10.144,-0.0054230367009977,0.0465955612308614,-0.0217601825981639,0.0519726648197662,-0.0659367856073662,-0.0891339837395753,-0.0904527817620041 +10.146,-0.00539391324371878,0.046608502960157,-0.0217813388768836,0.0519325693290287,-0.0659404321641678,-0.0891269247254628,-0.0904432113487204 +10.148,-0.00537643774044004,0.0466134880166814,-0.0217914432858452,0.0519118079758867,-0.0659361240480557,-0.0891294183994525,-0.0904288912135844 +10.15,-0.00534734100116582,0.0466264213849282,-0.0218125841076764,0.0518717006263905,-0.0659397810702421,-0.0891223256088622,-0.0904193358244104 +10.152,-0.00532988299587106,0.0466314025589434,-0.021822679672558,0.0518509335600219,-0.0659354890923172,-0.0891247966160855,-0.0904050296859717 +10.154,-0.00530081464873192,0.0466443276911861,-0.021843803800724,0.0518108168700474,-0.0659391553541086,-0.0891176718771362,-0.0903954891806178 +10.156,-0.00528337386737007,0.0466493058899651,-0.0218538901917057,0.0517900451231476,-0.0659348779100265,-0.0891201223209014,-0.0903811971543435 +10.158,-0.00525433406851757,0.0466622227034485,-0.0218749958763346,0.0517499224408987,-0.0659385498658686,-0.0891129697732022,-0.090371670807236 +10.16,-0.00523690929792664,0.0466671990815946,-0.0218850727301138,0.0517291472562822,-0.0659342839319116,-0.0891154028777359,-0.0903573930686283 +10.162,-0.00520789690136127,0.0466801073992868,-0.0219061581340752,0.0516890219750516,-0.0659379567430464,-0.089108227845309,-0.090347879805564 +10.164,-0.00519048633947738,0.0466850831588335,-0.0219162251299883,0.0516682445490995,-0.0659336986093401,-0.0891106472611754,-0.0903336165388227 +10.166,-0.00516149934565698,0.0466979827582244,-0.0219372886078597,0.0516281196137173,-0.0659373671058192,-0.08910345525333,-0.0903241151471063 +10.168,-0.00514410100053143,0.0467029589573485,-0.0219473454921331,0.0516073409570131,-0.0659331130437883,-0.0891058644716578,-0.090309866492057 +10.17,-0.00511513701573704,0.0467158496278901,-0.0219683858055054,0.0515672185024724,-0.065936772557334,-0.0890986603416386,-0.0903003758206382 +10.172,-0.00509774903408541,0.0467208270575931,-0.0219784324158184,0.0515464393301961,-0.0659325193669873,-0.0891010622331649,-0.0902861418478525 +10.174,-0.00506880570649861,0.046733708628735,-0.0219994488282561,0.0515063205420976,-0.0659361663089398,-0.0890938496162498,-0.0902766609530345 +10.176,-0.00505142661725622,0.0467386877479332,-0.0220094850956725,0.0514855412365817,-0.0659319116750782,-0.0890962461528,-0.090262441656228 +10.178,-0.00502250196646867,0.0467515601056672,-0.022030477380276,0.0514454263688255,-0.0659355438419242,-0.0890890271907049,-0.0902529698907799 +10.18,-0.00500513081184686,0.046756541038811,-0.0220405033218654,0.0514246469895708,-0.0659312864921368,-0.0890914193470402,-0.0902387651961913 +10.182,-0.0049762234356497,0.0467694041250869,-0.0220614716898562,0.0513845355199869,-0.0659349031036931,-0.0890841946897228,-0.0902293022353944 +10.184,-0.00495885979989814,0.0467743867063258,-0.0220714873896555,0.0513637558601198,-0.0659306427817443,-0.0890865825105451,-0.0902151120192649 +10.186,-0.00492996895007976,0.0467872405093666,-0.0220924323715768,0.0513236467250599,-0.0659342443052531,-0.0890793515351857,-0.090205657834442 +10.188,-0.00491261290187581,0.046792224358984,-0.0221024379565473,0.0513028663942211,-0.0659299816028152,-0.0890817343238595,-0.0901914819440549 +10.19,-0.00488373844875405,0.0468050688974292,-0.0221233602610899,0.0512627582555044,-0.0659335694315484,-0.0890744954962327,-0.0901820367374125 +10.192,-0.00486639042535573,0.046810053512699,-0.0221333558752133,0.0512419767738834,-0.065929305531003,-0.0890768720739931,-0.0901678750112021 +10.194,-0.00483753273931543,0.0468228888189833,-0.0221542562516794,0.0512018682705093,-0.065932881594968,-0.0890696233683937,-0.0901584391304457 +10.196,-0.00482019340134855,0.0468278736645292,-0.0221642420326523,0.0511810851568564,-0.0659286179792177,-0.089071992350644,-0.0901442914151275 +10.198,-0.00479135318712849,0.0468406997706299,-0.0221851211555152,0.0511409751083573,-0.065932184358021,-0.0890647316542226,-0.0901348652649971 +10.2,-0.00477402327172856,0.0468456843560239,-0.0221950972165864,0.0511201899501766,-0.0659279225359639,-0.0890670916992557,-0.0901207314285536 +10.202,-0.00474520138966129,0.0468585012839826,-0.0222159556042313,0.0510800774911313,-0.0659314811294173,-0.0890598171437182,-0.0901113153935995 +10.204,-0.00472788158373105,0.046863485220751,-0.0222259220228108,0.0510592899897897,-0.0659272224135936,-0.0890621671423348,-0.0900971953338919 +10.206,-0.00469907888711386,0.0468762929786503,-0.0222467599947617,0.0510191746300257,-0.0659307747054616,-0.0890548773290302,-0.0900877897218466 +10.208,-0.00468176973513194,0.0468812760130549,-0.0222567168079626,0.0509983846192093,-0.0659265200631454,-0.0890572165192195,-0.0900736833710025 +10.21,-0.00465298694417643,0.0468940745960438,-0.0222775344786755,0.0509582662361487,-0.0659300669927747,-0.0890499106266052,-0.0900642883809789 +10.212,-0.00463568879683057,0.0468990566179988,-0.0222874816850012,0.0509374736764529,-0.0659258169768071,-0.0890522386320529,-0.0900501957059785 +10.214,-0.00460692641999624,0.0469118460130195,-0.0223082789874514,0.0508973524549386,-0.0659293589147476,-0.0890449164144567,-0.0900408114209328 +10.216,-0.00458963942261993,0.0469168270445871,-0.0223182165531199,0.0508765574105291,-0.0659251136675943,-0.0890472332173766,-0.0900267324209773 +10.218,-0.00456089772680857,0.0469296072370308,-0.0223389932826452,0.0508364337500397,-0.06592865047722,-0.0890398949182798,-0.0900173588202658 +10.22,-0.00454362184092612,0.0469345874059911,-0.0223489211507482,0.050815636354773,-0.0659244097925739,-0.0890422007846385,-0.090003293521645 +10.222,-0.00451490086445597,0.046947358386456,-0.0223696770187458,0.0507755107646276,-0.0659279409510858,-0.0890348469955284,-0.0899939305072811 +10.224,-0.00449763591223853,0.0469523378913348,-0.0223795951194396,0.0507547111850316,-0.0659237043723241,-0.0890371423739706,-0.0899798789565354 +10.226,-0.00446893550943873,0.0469650996609613,-0.022400329807327,0.0507145841856384,-0.0659272291215461,-0.0890297738713391,-0.0899705263860195 +10.228,-0.00445168122960725,0.046970078733766,-0.0224102380675191,0.0506937825870224,-0.0659229960553784,-0.0890320592864872,-0.0899564886422382 +10.23,-0.00442300113352152,0.0469828313071354,-0.0224309512733589,0.0506536546305126,-0.0659265135546417,-0.0890246768758916,-0.0899471463613348 +10.232,-0.00440575723793563,0.0469878101790948,-0.0224408496247537,0.0506328511506411,-0.0659222833806253,-0.0890269528330983,-0.0899331224883914 +10.234,-0.00437709712778124,0.0470005535842996,-0.0224615410976143,0.0505927225685454,-0.0659257928395447,-0.0890195572220466,-0.0899237903586655 +10.236,-0.00435986335010419,0.0470055324584281,-0.022471429482449,0.05057191730121,-0.0659215650007664,-0.0890218241353424,-0.0899097804180979 +10.238,-0.00433122291226656,0.0470182667344953,-0.0224920990423477,0.050531788281175,-0.065925065777232,-0.0890144158478275,-0.089900458335932 +10.24,-0.0043139990430809,0.0470232457671236,-0.0225019774166004,0.0505109812700024,-0.0659208398432335,-0.0890166739968566,-0.0898864623810244 +10.242,-0.00428537801778656,0.0470359709594515,-0.022522624960389,0.0504708518588377,-0.0659243315000253,-0.0890092533334847,-0.0898771502868795 +10.244,-0.00426816392374123,0.047040950251243,-0.0225324932946145,0.0504500431000582,-0.0659201071988793,-0.0890115028496714,-0.0898631683583163 +10.246,-0.00423956213338196,0.0470536664059836,-0.0225531187900667,0.0504099132270534,-0.065923589519618,-0.0890040698896834,-0.0898538662367864 +10.248,-0.00422235776083948,0.0470586460016167,-0.0225629770682896,0.0503891026788849,-0.0659193667411171,-0.0890063107674935,-0.0898398983600599 +10.25,-0.00419377511955983,0.0470713531600227,-0.0225835805398165,0.0503489721916214,-0.06592283971192,-0.0889988654035214,-0.0898306062326024 +10.252,-0.00417658048544037,0.0470763330547695,-0.0225934287570631,0.0503281597874274,-0.0659186184875459,-0.0890010975298117,-0.0898166524171787 +10.254,-0.00414801699252026,0.0470890312484256,-0.0226140102669071,0.0502880284921106,-0.0659220822543009,-0.0889936395232751,-0.089807370330176 +10.256,-0.00413083216639207,0.0470940113993461,-0.0226238484259902,0.0502672141545299,-0.0659178627217291,-0.088995862716523,-0.0897934305702534 +10.258,-0.00410228788788149,0.0471067006469748,-0.0226444080545288,0.0502270818538885,-0.0659213175342553,-0.0889883917610403,-0.0897841585812643 +10.26,-0.00408511296981691,0.0471116809863569,-0.0226542361626609,0.0502062655075887,-0.0659170998947081,-0.0889906058125069,-0.0897702328578558 +10.262,-0.00405658801372935,0.0471243612925567,-0.0226747739907512,0.0501661320312173,-0.0659205460485038,-0.0889831215941434,-0.0897609710226155 +10.264,-0.0040394231121435,0.0471293417414658,-0.022684592056436,0.0501453136126304,-0.0659163305244835,-0.0889853263044161,-0.0897470593065922 +10.266,-0.00401091760237764,0.0471420130974296,-0.0227051081517902,0.0501051788368709,-0.0659197683088074,-0.0889778285504271,-0.0897378076687221 +10.268,-0.00399376281519176,0.0471469935776856,-0.0227149161822984,0.0500843583000622,-0.0659155551080603,-0.0889800237568439,-0.0897239099244122 +10.27,-0.00396527686846489,0.0471596559636283,-0.0227354105908406,0.0500442221566899,-0.06591898476627,-0.088972512268028,-0.0897146685089713 +10.272,-0.00394813226975055,0.0471646364071155,-0.0227452085904291,0.0500233994752943,-0.0659147740556807,-0.0889746978608111,-0.0897007846979219 +10.274,-0.00391966597847025,0.0471772897959375,-0.0227656813326736,0.0499832619500767,-0.0659181957607231,-0.0889671725260443,-0.0896915535091328 +10.276,-0.0039025316114565,0.0471822701507292,-0.02277546930157,0.0499624371158242,-0.0659139876516145,-0.088969348453092,-0.0896776835936612 +10.278,-0.00387408503394786,0.0471949145123,-0.0227959203733249,0.0499222982393272,-0.0659174014967505,-0.0889618092475911,-0.0896684626164088 +10.28,-0.00385696091014337,0.0471998947455943,-0.0228056983073973,0.049901471258105,-0.0659131960411201,-0.088963975509599,-0.0896546065626406 +10.282,-0.00382853406822391,0.0472125300510406,-0.0228261276836592,0.0498613310917491,-0.0659166020437945,-0.0889564224805511,-0.0896453957668472 +10.284,-0.00381142017153298,0.0472175101492981,-0.022835895574632,0.0498405019782968,-0.0659123992395699,-0.0889585791191982,-0.0896315535470178 +10.286,-0.00378301305431282,0.047230136374731,-0.0228563032153426,0.0498003605987553,-0.0659157973549087,-0.0889510123635302,-0.0896223528937005 +10.288,-0.00376590934850939,0.0472351163416531,-0.0228660610513827,0.0497795293711005,-0.0659115971574497,-0.0889531594459673,-0.0896085244875946 +10.29,-0.00373752192056104,0.0472477334709205,-0.0228864469077807,0.0497393868557166,-0.0659149872972964,-0.0889455790852117,-0.0895993339353736 +10.292,-0.0037204283583126,0.0472527133240121,-0.0228961946742937,0.0497185535302381,-0.0659107896341078,-0.0889477166879282,-0.0895855193308674 +10.294,-0.00369206057007082,0.0472653213502326,-0.0229165586948094,0.0496784099454268,-0.0659141716876331,-0.0889401228445467,-0.0895763388418442 +10.296,-0.00367497710184014,0.0472703011166759,-0.0229262963752958,0.049657574533178,-0.0659099764734817,-0.0889422510391747,-0.089562538034607 +10.298,-0.00364662890017549,0.0472829000425002,-0.0229466385102738,0.0496174299269153,-0.0659133503260861,-0.0889346438175803,-0.0895533675788112 +10.3,-0.00362955548168617,0.0472878797549678,-0.0229563660871419,0.0495965924315028,-0.0659091574763009,-0.0889367626603516,-0.0895395805712966 +10.302,-0.00360122681898567,0.0473004695916854,-0.0229766862920203,0.0495564468301694,-0.0659125230245284,-0.088929142134509,-0.089530420129267 +10.304,-0.00358416341641545,0.047305449284562,-0.022986403747286,0.0495356072471975,-0.0659083324650353,-0.0889312516601949,-0.089516646929173 +10.306,-0.00355585425706173,0.0473180300502952,-0.0230067019841817,0.049495460656334,-0.0659116896263175,-0.0889236178683064,-0.0895074964925824 +10.308,-0.00353880084964092,0.0473230097566078,-0.0230164093000226,0.0494746189741885,-0.0659075012997647,-0.0889257180886245,-0.0894937371109945 +10.31,-0.003510511173394,0.0473355814739275,-0.0230366855379326,0.0494344713822239,-0.0659108500168449,-0.0889180710342458,-0.0894845966815423 +10.312,-0.00349346775353064,0.0473405612231243,-0.0230463826970919,0.0494136275838019,-0.0659066638848943,-0.0889201619400542,-0.0894708511309797 +10.314,-0.0034651975558922,0.0473531239164421,-0.0230666369110594,0.0493734789675856,-0.0659100041255851,-0.0889125015981775,-0.0894617207179923 +10.316,-0.00344816412729834,0.0473581037330222,-0.0230763238971121,0.0493526330325285,-0.0659058201679734,-0.088914583164353,-0.0894479890105547 +10.318,-0.00341991341737202,0.0473706574260976,-0.0230965560667853,0.049312483363448,-0.0659091519214306,-0.0889069094905346,-0.0894388686278483 +10.32,-0.00340288999186059,0.0473756373290057,-0.0231062328642902,0.0492916352704401,-0.065904970132739,-0.0889089816822628,-0.0894251507736364 +10.322,-0.00337465878851052,0.0473881820428441,-0.0231264429722695,0.0492514845200937,-0.0659082934036568,-0.0889012946228274,-0.089416040436206 +10.324,-0.00335794449665133,0.0473942116595813,-0.0231370526118689,0.0492290276510486,-0.0659068769510698,-0.0888998936220455,-0.0894056447730598 +10.326,-0.00333303065948196,0.0474045145050349,-0.0231540422360309,0.0491947497716033,-0.0659076465737172,-0.0888957205972889,-0.0893949929937724 +10.328,-0.0033178635726403,0.0474080611909793,-0.0231617321819276,0.0491776150994687,-0.0659015670328763,-0.088900362435767,-0.0893799882645608 +10.33,-0.00328674689978303,0.0474222361089223,-0.0231843176707349,0.0491330496014893,-0.0659061526774631,-0.0888909780669641,-0.0893714669938243 +10.332,-0.00326846592145856,0.0474278584774951,-0.0231949705085691,0.0491103961102512,-0.0659023877657971,-0.0888924355931461,-0.0893578573416833 +10.334,-0.00324052079973512,0.0474399829572686,-0.0232146977062726,0.0490710948700404,-0.0659051641995623,-0.0888854019613364,-0.0893482620649044 +10.336,-0.00322370865922746,0.0474446883452996,-0.023224054892099,0.0490507427550555,-0.0659006511238419,-0.0888877940508136,-0.0893342297104961 +10.338,-0.00319462766785121,0.0474576771580804,-0.0232449429309517,0.0490092268598397,-0.0659043901562906,-0.0888794723806089,-0.089325282633806 +10.34,-0.00317728906880464,0.0474628163756253,-0.0232548602199369,0.0489877944146773,-0.0659003768421329,-0.088881229720773,-0.0893116057863746 +10.342,-0.00314909558206104,0.0474753084415655,-0.0232749983403072,0.048947548421158,-0.0659036670123878,-0.0888734410632371,-0.0893024461017776 +10.344,-0.00313217573088793,0.0474802341214157,-0.0232845721022916,0.0489267108131755,-0.065899471532778,-0.0888754572379146,-0.0892887037031333 +10.346,-0.00310385290411637,0.0474928883833737,-0.0233048876634789,0.0488860558603547,-0.0659029400390203,-0.0888673909187168,-0.0892797075159201 +10.348,-0.0030871882051066,0.0474989411193297,-0.023315481982464,0.0488634305560014,-0.0659015916426525,-0.0888658127665353,-0.0892693640258758 +10.35,-0.00306238240204179,0.0475092542764546,-0.023332416603246,0.0488289746024564,-0.0659024173206579,-0.0888614135794206,-0.0892587860050401 +10.352,-0.00304731228526099,0.0475128081599158,-0.0233400479515507,0.0488117978138851,-0.0658963975754756,-0.0888659565625449,-0.0892438405351348 +10.354,-0.00301634445760689,0.0475269877255862,-0.0233625519145258,0.0487670383157044,-0.0659010210937218,-0.0888563005651449,-0.0892354194769433 +10.356,-0.00299816437376453,0.0475326252816991,-0.023373144800508,0.0487443168497453,-0.0658973082626141,-0.0888576294238608,-0.0892218923592814 +10.358,-0.00297389973950465,0.0475436464330061,-0.0233907212928602,0.0487088357646993,-0.0659007288472132,-0.088849713479472,-0.0892143929133263 +10.36,-0.00295845563555704,0.0475486928595806,-0.023399893065893,0.0486888822883174,-0.0658979607865772,-0.0888502171061948,-0.0892030839886054 +10.362,-0.00293137979195691,0.0475601578974807,-0.0234185276825298,0.048651239590974,-0.065899381879169,-0.0888449901258498,-0.0891926411803268 +10.364,-0.00291507706875598,0.0475642444541292,-0.0234270041598552,0.048632504767789,-0.0658934905041522,-0.0888492666778304,-0.0891775558443812 +10.366,-0.00288383241089572,0.0475782331127452,-0.0234493975945996,0.0485879421761627,-0.0658976566507059,-0.0888401708489984,-0.0891686144002814 +10.368,-0.00286554568565084,0.0475837165500082,-0.0234598830378422,0.04856535634145,-0.065893630386899,-0.0888417785491293,-0.0891547073337785 +10.37,-0.00283678907249899,0.0475962587155234,-0.0234802084427278,0.0485245861952367,-0.0658967448419535,-0.0888340403273714,-0.0891452325273588 +10.372,-0.00281979740413257,0.0476022679772829,-0.0234908642453052,0.04850171541314,-0.065895214799943,-0.0888325079262661,-0.0891345600511965 +10.374,-0.00279410793178041,0.0476129697055405,-0.0235084276703622,0.0484659093295726,-0.0658963500702289,-0.0888275313783074,-0.0891240019177774 +10.376,-0.00277871254534209,0.0476166398449572,-0.0235162598856628,0.0484481712449708,-0.0658904213179334,-0.0888318084521712,-0.0891089752752198 +10.378,-0.00274748377898919,0.0476309305294182,-0.0235389305477966,0.0484027778429016,-0.0658951442857414,-0.0888218037522656,-0.089100537201287 +10.38,-0.00272930277545516,0.0476365688511314,-0.0235495050009677,0.0483798540845115,-0.0658914531311663,-0.0888229886240157,-0.0890869550269141 +10.382,-0.00270489754884273,0.0476477357377186,-0.0235672435164178,0.0483437326653283,-0.0658950430256669,-0.0888146313324993,-0.089079534993366 +10.384,-0.00269028541536045,0.0476510797219115,-0.0235744801113499,0.0483270904008624,-0.0658889248464693,-0.0888193962589954,-0.089064536640643 +10.386,-0.00265893827673366,0.0476655133063663,-0.0235972663732742,0.0482812886399946,-0.065893655367634,-0.0888092811502129,-0.0890561492723148 +10.388,-0.00264066692681605,0.0476712066118731,-0.0236078775006136,0.0482582771615483,-0.0658898888351412,-0.0888105847624439,-0.0890425256368453 +10.39,-0.00261273621991939,0.0476834316359712,-0.0236275884491792,0.0482182882795587,-0.0658927085011926,-0.0888030465968726,-0.0890330235648016 +10.392,-0.00259608488250558,0.0476893663413113,-0.0236380121340023,0.0481956994538428,-0.0658911134329978,-0.0888015823328188,-0.0890224184872519 +10.394,-0.00257059185782715,0.0477000741177349,-0.0236554590211492,0.0481598911335209,-0.0658922492027364,-0.0887964926499627,-0.0890119819652503 +10.396,-0.0025546128245466,0.0477054203515361,-0.0236650451413665,0.0481389055249239,-0.065889675043181,-0.088796447219789,-0.0890007019693141 +10.398,-0.00252782542129973,0.0477168106940557,-0.0236834800682044,0.0481012442716384,-0.0658911666405819,-0.0887908625640132,-0.0889903907167335 +10.4,-0.00251172159415333,0.047720901505062,-0.0236918412912807,0.0480824715652033,-0.0658854225781097,-0.0887948610165067,-0.088975484675051 +10.402,-0.00248078143595121,0.0477348578761005,-0.0237140340569359,0.0480377895521838,-0.0658896295724702,-0.0887854048785934,-0.0889667382166703 +10.404,-0.0024631813086112,0.0477412397875627,-0.0237251348362614,0.0480139431907944,-0.0658882463760121,-0.0887835934417662,-0.0889561854935649 +10.406,-0.00243780668142778,0.0477516477777402,-0.023742237161307,0.0479787422767456,-0.0658889263998886,-0.0887790569799562,-0.0889453797762134 +10.408,-0.00242182427614279,0.0477568552201351,-0.0237516816400875,0.0479579804469038,-0.0658861097266223,-0.0887792545113513,-0.0889338856546047 +10.41,-0.00239445260639247,0.0477684927890987,-0.0237705129897163,0.0479194974773969,-0.065887776979347,-0.0887733645037742,-0.088923626817957 +10.412,-0.00237808852696726,0.0477726881212437,-0.0237790439236803,0.0479003313877052,-0.0658821027655035,-0.0887772021701686,-0.0889087258756374 +10.414,-0.00234709602410199,0.0477866037972911,-0.0238012048313993,0.0478555611207341,-0.0658862536516166,-0.0887677279042736,-0.0888999170458211 +10.416,-0.00232948185404633,0.0477929671489958,-0.0238122906929472,0.0478316351885297,-0.0658848602496152,-0.0887658692062958,-0.0888893336123684 +10.418,-0.00230402039046153,0.0478034292817177,-0.0238294666861725,0.047796143288911,-0.0658856192025613,-0.0887611431786428,-0.0888785651154165 +10.42,-0.00228805151949936,0.0478086389666075,-0.0238389102872718,0.0477752781617269,-0.0658828464527956,-0.088761245928955,-0.0888670805391461 +10.422,-0.00226071237681057,0.0478202921836895,-0.0238577448994311,0.0477366158870143,-0.0658845797152655,-0.0887551747974711,-0.0888568641645282 +10.424,-0.00224440494369406,0.0478244817973219,-0.0238662513520298,0.047717398372571,-0.0658789624105713,-0.0887589263174691,-0.0888419860999177 +10.426,-0.00221349143532235,0.0478384099024112,-0.0238883969688199,0.0476724657273279,-0.0658831841350165,-0.0887492450313374,-0.08883323948835 +10.428,-0.00219546551276936,0.0478438850275483,-0.0238986993971605,0.0476497559007906,-0.0658792690906467,-0.0887505585241496,-0.0888195139738333 +10.43,-0.0021705248064129,0.0478553271886073,-0.0239167961026431,0.0476125291797506,-0.0658830801322324,-0.0887416123672057,-0.0888122554591091 +10.432,-0.00215566701045336,0.0478588384517209,-0.0239241951362334,0.0475953327692306,-0.0658771292837065,-0.088746054796173,-0.0887973785293498 +10.434,-0.00212447583012858,0.0478731488825953,-0.0239467326523869,0.047549416689741,-0.0658817209568287,-0.0887357739179282,-0.0887889954997441 +10.436,-0.0021063258612881,0.0478788027912417,-0.0239571883180211,0.0475263726310453,-0.0658779267141547,-0.0887369910411362,-0.0887754260083594 +10.438,-0.00207840729215017,0.047891058269002,-0.023976833467339,0.0474859554764088,-0.0658807712982805,-0.0887291026274106,-0.0887660610273927 +10.44,-0.00206175058608257,0.0478958432970526,-0.0239860268796461,0.04746523466737,-0.065876344788332,-0.0887311619043174,-0.0887522115722799 +10.442,-0.00203297027492251,0.047908829472356,-0.02400661175676,0.0474229815811214,-0.0658800509680883,-0.0887220753231962,-0.0887435200382629 +10.444,-0.00201587296325417,0.0479140216519129,-0.0240162988554573,0.0474012985690472,-0.0658761048949888,-0.0887235056741626,-0.088730088098128 +10.446,-0.00198805664140995,0.047926464671399,-0.0240360503044438,0.0473605474481221,-0.0658793086051021,-0.0887150849678413,-0.0887212008692011 +10.448,-0.00197137291923888,0.0479314516723901,-0.0240453870165665,0.047339523166705,-0.0658751653317174,-0.0887168229533803,-0.0887077465339003 +10.45,-0.00194349077464365,0.047943986179793,-0.0240652127755962,0.0472985840143702,-0.0658784439131053,-0.0887082817948048,-0.0886990005964755 +10.452,-0.0019270716305463,0.0479500468934355,-0.0240755288605535,0.0472758297647089,-0.0658770375744373,-0.0887064779494089,-0.0886889071821272 +10.454,-0.00190263168946614,0.0479602597142469,-0.0240920082869586,0.0472412464683549,-0.0658776795231797,-0.088701794312955,-0.0886785663235501 +10.456,-0.00188771598774348,0.0479639070058213,-0.0240994370013496,0.047223986080523,-0.065871691957153,-0.0887062090979838,-0.0886639481922625 +10.458,-0.00185723203846887,0.0479778297823352,-0.0241212843046527,0.0471792061192579,-0.0658759241573219,-0.0886963126377394,-0.0886557074672098 +10.46,-0.00183926229805748,0.0479834758126811,-0.0241315721393124,0.0471564559193628,-0.065872123087752,-0.0886975366430575,-0.0886424836533282 +10.462,-0.00181186049969888,0.0479953746296919,-0.0241506116570842,0.0471170674040937,-0.0658745573772726,-0.0886901540385203,-0.0886331747570238 +10.464,-0.00179536461488242,0.0480012678221213,-0.0241607780046852,0.0470946368695961,-0.0658728412724998,-0.0886887107659885,-0.0886228686570172 +10.466,-0.00177028274076421,0.0480116742048762,-0.0241776235379232,0.0470593718207713,-0.0658735822938549,-0.0886838591168851,-0.0886125570154883 +10.468,-0.00175503015371066,0.0480154212118024,-0.0241852511218229,0.0470417044047455,-0.0658676495636469,-0.0886881159856563,-0.0885979622211837 +10.47,-0.00172442235828785,0.0480292453230373,-0.02420704425064,0.0469969597414923,-0.0658717702707944,-0.0886783417312183,-0.0885896187281187 +10.472,-0.00170643050643189,0.0480348293801478,-0.024217292862334,0.0469742116150108,-0.065867932223526,-0.0886795706868287,-0.0885763541849475 +10.474,-0.00167885841884163,0.0480467723930272,-0.0242364397545493,0.046934486691582,-0.0658704586085913,-0.0886719980979794,-0.0885670841217932 +10.476,-0.00166234882057986,0.0480526532274506,-0.0242466223869443,0.0469119254635274,-0.0658688076015273,-0.0886704337084465,-0.0885567944432503 +10.478,-0.00163729579024115,0.0480630509236784,-0.0242634739587821,0.0468764949456594,-0.0658696386003321,-0.0886653964889191,-0.0885465229868402 +10.48,-0.00162211966236045,0.0480667653800535,-0.0242710719552699,0.0468587857852174,-0.0658637938456265,-0.0886695411130641,-0.0885319502853598 +10.482,-0.0015916009126821,0.0480806035579216,-0.02429287557377,0.0468138214369651,-0.0658680518231982,-0.0886594768081227,-0.0885236933868521 +10.484,-0.0015737101172288,0.0480861746398082,-0.0243031029695186,0.0467909920997988,-0.0658643347370918,-0.08866053036122,-0.0885104801621251 +10.486,-0.00154628205866919,0.0480981224087773,-0.0243222293399915,0.0467511260722358,-0.0658669933067873,-0.0886526922959786,-0.0885012978374916 +10.488,-0.00152990152410318,0.0481039931478685,-0.0243323789199867,0.0467285096842564,-0.0658654549434415,-0.0886509521014579,-0.0884910643308893 +10.49,-0.00150498730829844,0.048114405913822,-0.0243492086354113,0.0466929629881438,-0.0658664099007847,-0.0886456766881638,-0.0884808816480907 +10.492,-0.00148990326658952,0.0481181275918749,-0.0243567814642419,0.0466752057089201,-0.0658606688212826,-0.0886496844288841,-0.0884663665063797 +10.494,-0.00145956105236589,0.0481319691855347,-0.024378522906177,0.0466301791971225,-0.0658649987328788,-0.0886394134636099,-0.0884581964027771 +10.496,-0.00144176876676004,0.0481375520885754,-0.0243887095779652,0.0466073241144333,-0.065861345029959,-0.0886403563866783,-0.088445044658643 +10.498,-0.00141447891066397,0.0481495032437764,-0.0244077662789189,0.0465674336724812,-0.0658640308165862,-0.0886323870901556,-0.0884359315952944 +10.5,-0.00139807333302856,0.0481542694165248,-0.024416759071456,0.0465468042068295,-0.0658597148896532,-0.0886342483637281,-0.0884224455134243 +10.502,-0.00136986659040583,0.0481669554873883,-0.0244367659025482,0.0465050033091333,-0.0658631992532667,-0.088625119313347,-0.0884139369842719 +10.504,-0.00135301396820943,0.0481721120971315,-0.0244462331797948,0.0464834243520733,-0.0658593019013578,-0.0886264114835313,-0.0884008012417622 +10.506,-0.00132564774437222,0.0481843272451441,-0.024465510449209,0.0464429378393016,-0.0658623285365974,-0.0886178872994811,-0.0883920944206412 +10.508,-0.00130916361691952,0.0481893007420231,-0.0244746612129049,0.0464219508865603,-0.0658582393856864,-0.0886194712117667,-0.0883789133803513 +10.51,-0.00128169015817808,0.04820163263114,-0.0244940487774871,0.0463811923011495,-0.0658613556077465,-0.0886107862015348,-0.0883703373709799 +10.512,-0.00126547067351687,0.048207656526561,-0.0245041714663248,0.0463584492597389,-0.0658599631475033,-0.0886088115850129,-0.0883604659548074 +10.514,-0.00124135864818392,0.0482177384361111,-0.024520308658155,0.0463239576485398,-0.0658605234808305,-0.088603954047899,-0.0883503083123981 +10.516,-0.0012265953921177,0.0482214119960233,-0.0245276019545287,0.0463066710815122,-0.0658546307558037,-0.0886081929385298,-0.0883359446403133 +10.518,-0.00119650580981713,0.0482351545682595,-0.0245490303485274,0.0462619452770641,-0.0658587140757182,-0.0885980566735347,-0.0883278714548829 +10.52,-0.00117873709051979,0.0482407922505478,-0.0245591297202107,0.0462391693985665,-0.0658549595210608,-0.0885990808809591,-0.0883148853581836 +10.522,-0.00115167844635586,0.0482525644959313,-0.0245778163175829,0.0461997820611906,-0.0658572982868812,-0.088591442292756,-0.0883057654688668 +10.524,-0.00113529042945393,0.0482573383143598,-0.0245866961972602,0.046179306107229,-0.0658528305984427,-0.0885934476585606,-0.0882923866940174 +10.526,-0.00110712305870922,0.0482699011400642,-0.0246064605276237,0.04613776373057,-0.0658560318771507,-0.0885845621442941,-0.0882838742174665 +10.528,-0.00109022075674223,0.0482750701373192,-0.024615861072983,0.0461162381714273,-0.0658520118211681,-0.0885859523741697,-0.0882708312237761 +10.53,-0.00106287451954312,0.0482871558374095,-0.0246349205868458,0.04607596797742,-0.0658547876068995,-0.088577643142134,-0.0882621067751949 +10.532,-0.00104635809517771,0.0482921179615781,-0.0246440030098764,0.0460550299106839,-0.06585060071326,-0.0885793042843128,-0.0882489984156393 +10.534,-0.00102231654275077,0.0483032792263015,-0.0246612895160877,0.0460182753174224,-0.0658541948988204,-0.0885700868951781,-0.0882423783295658 +10.536,-0.00100760999193242,0.048307049168312,-0.0246686129154868,0.0460008626097127,-0.0658485589900139,-0.0885741729794108,-0.0882283490069753 +10.538,-0.00097804981963516,0.0483204108674243,-0.0246894696168153,0.045956927485929,-0.065852178932613,-0.0885645679253336,-0.0882200459214712 +10.54,-0.000960496745015013,0.0483258775697432,-0.0246993147296708,0.0459345459611282,-0.0658481997244719,-0.0885659379926422,-0.088206937720534 +10.542,-0.000933227621396499,0.0483377364317726,-0.0247181329597267,0.0458946816645894,-0.0658506134920216,-0.0885580970681275,-0.0881978788505217 +10.544,-0.000916757671234253,0.048342540142248,-0.024727070345331,0.0458739951346774,-0.0658462223937541,-0.0885599959256803,-0.0881845405072937 +10.546,-0.000892117833968656,0.0483539549247935,-0.0247448014149578,0.0458363501418864,-0.0658500643782106,-0.0885503900074622,-0.0881779782168595 +10.548,-0.000877136981906501,0.048357821040495,-0.0247523243066705,0.0458184781313785,-0.065844562237407,-0.0885542133100052,-0.0881639475073931 +10.55,-0.000847495206433721,0.0483711647999693,-0.0247732066786911,0.0457744093515255,-0.0658482127572259,-0.0885445187159404,-0.0881556007665394 +10.552,-0.000829948459520904,0.0483765956341565,-0.0247830300040457,0.0457519721536729,-0.0658442576029192,-0.0885458044241327,-0.0881424533196707 +10.554,-0.000802539028158397,0.0483885441133901,-0.0248019797851974,0.0457117088885416,-0.0658468124931955,-0.0885376859118984,-0.0881334566536841 +10.556,-0.000786190611913901,0.0483944399861908,-0.0248120090950429,0.0456889335962873,-0.0658452339455508,-0.0885358144748597,-0.0881233970833312 +10.558,-0.000761505398068699,0.0484047172641298,-0.0248284856101684,0.0456534291395055,-0.0658460041347319,-0.0885304481420976,-0.0881133256147427 +10.56,-0.00074652912166133,0.0484084561479345,-0.024835898332129,0.0456356596428739,-0.0658402680341329,-0.0885343623590405,-0.0880990123150278 +10.562,-0.000716401732557409,0.0484221549585087,-0.024857277340071,0.0455904994381433,-0.0658444102382223,-0.0885238491531344,-0.0880909870162026 +10.564,-0.000698723230687939,0.0484277457006147,-0.0248672914779228,0.0455675483596027,-0.0658407575305796,-0.0885246208523196,-0.0880780553066298 +10.566,-0.000671697381261882,0.0484395566048993,-0.0248859797066873,0.0455276074586493,-0.0658432786586989,-0.0885164405088397,-0.0880690976579921 +10.568,-0.000655538002160214,0.0484454254807638,-0.0248959003467511,0.0455049072721958,-0.0658417388376873,-0.0885144609921714,-0.0880591121313883 +10.57,-0.000630980738209164,0.048455734019184,-0.0249123285670558,0.0454693095448562,-0.06584257272562,-0.0885089034384303,-0.0880491530801191 +10.572,-0.000616063812804046,0.0484595229684004,-0.0249197244524697,0.045451480470908,-0.0658368991443107,-0.0885127250037932,-0.0880349362145018 +10.574,-0.000586175463384297,0.0484731680577231,-0.0249409291177128,0.0454064439665977,-0.0658409755774002,-0.0885021652703146,-0.0880269580823449 +10.576,-0.000568602510332653,0.0484787660523568,-0.0249508649267661,0.0453835473588323,-0.0658373078230501,-0.0885029264477069,-0.0880140865408605 +10.578,-0.000541697593436599,0.0484905649821772,-0.0249694489947008,0.0453436416193247,-0.0658397785792331,-0.0884947081690821,-0.0880051807907769 +10.58,-0.000525473341066313,0.0484953697502562,-0.0249782270728867,0.0453229585125237,-0.0658354681044944,-0.0884964004346979,-0.0879919851299398 +10.582,-0.000497664930148231,0.048507873719221,-0.024997730054867,0.0452811634766671,-0.0658387027893557,-0.0884870346956018,-0.087983665185619 +10.584,-0.000481002083430812,0.0485130499740773,-0.0250069661775806,0.0452595444477683,-0.0658347936607638,-0.0884881640209753,-0.0879708075884471 +10.586,-0.000454005145306316,0.0485250943609795,-0.0250257661939986,0.0452190515708703,-0.0658375913449967,-0.0884794092356962,-0.0879622909845425 +10.588,-0.000437698027897365,0.0485300885274986,-0.0250346985373898,0.0451980169782144,-0.0658335029292922,-0.0884808296601825,-0.0879493857071493 +10.59,-0.00041059458082536,0.0485422395210978,-0.0250536069894932,0.0451572568150855,-0.0658363927525504,-0.0884719166619224,-0.087940992416013 +10.592,-0.000394209514947202,0.0485473091619732,-0.0250626134992067,0.045136072577803,-0.0658323636891758,-0.0884732632118348,-0.087928178302053 +10.594,-0.000367313593795812,0.0485593236127686,-0.0250813120835295,0.0450956983594204,-0.0658351024159311,-0.088464560239223,-0.0879197343588166 +10.596,-0.00035099778022013,0.0485643491996562,-0.0250902416723089,0.0450746677523453,-0.0658310144378276,-0.0884659971780386,-0.0879069230876833 +10.598,-0.00032407704674639,0.0485763574825067,-0.0251089280206378,0.0450343007713443,-0.0658337304123911,-0.0884573190112486,-0.0878984972114331 +10.6,-0.000307727852768877,0.0485813939184586,-0.0251178681178459,0.0450132496417996,-0.0658296401695386,-0.0884587564837811,-0.0878857152766914 +10.602,-0.000280839747347328,0.0485933479337745,-0.0251364839969953,0.044973006084423,-0.0658322912068189,-0.0884501672136117,-0.0878772705964178 +10.604,-0.000264491706470499,0.0485983678276944,-0.0251454025194956,0.0449519938477827,-0.0658281781856213,-0.0884516346734077,-0.0878644966811468 +10.606,-0.000237588017330925,0.0486102994822849,-0.0251639963887144,0.0449117719897492,-0.0658308029424931,-0.0884430758402902,-0.0878560511824808 +10.608,-0.000221226241743866,0.0486153136304672,-0.02517291153608,0.0448907568726729,-0.0658266862644868,-0.0884445461954766,-0.087843290567407 +10.61,-0.000194327763794994,0.0486272161970304,-0.0251914743792718,0.0448505668725347,-0.0658292875327499,-0.0884360116219878,-0.0878348412665036 +10.612,-0.000177968310674653,0.0486322184595639,-0.0252003784941596,0.0448295581666558,-0.065825170822121,-0.0884374814277961,-0.0878220903581259 +10.614,-0.000151074467024712,0.0486441027044046,-0.0252189234586389,0.0447893666871899,-0.0658277685153903,-0.0884289392248461,-0.0878136468780316 +10.616,-0.000134721787978062,0.0486490961578347,-0.0252278200342837,0.0447683520891934,-0.0658236634334142,-0.0884303926547676,-0.087800908606708 +10.618,-0.000107846363902833,0.0486609643668956,-0.0252463467419454,0.0447281541068495,-0.0658262672693084,-0.0884218260685472,-0.0877924755977754 +10.62,-9.1509845037252e-05,0.0486659492584349,-0.0252552337175122,0.0447071333625626,-0.0658221799303324,-0.0884232546794097,-0.0877797511275089 +10.622,-6.46602477099439e-05,0.0486778069808297,-0.0252737451831902,0.044666918591145,-0.065824799328371,-0.088414647179295,-0.0877713346428401 +10.624,-4.8344617507079e-05,0.0486827861495349,-0.0252826227519155,0.0446458881490714,-0.065820734444265,-0.0884160435248752,-0.0877586262893559 +10.626,-2.15290198706114e-05,0.0486946363148007,-0.0253011176493102,0.0446056561320213,-0.0658233721212601,-0.0884073881261233,-0.0877502295892136 +10.628,-5.23787495915196e-06,0.0486996123011138,-0.0253099846212587,0.0445846163717312,-0.0658193299929821,-0.0884087502111391,-0.0877375388388481 +10.63,2.15395485223674e-05,0.0487114576669414,-0.0253284612935827,0.0445443682071417,-0.0658219846082172,-0.0884000454557554,-0.0877291637893799 +10.632,3.78056267510141e-05,0.0487164335793382,-0.0253373168938661,0.0445233197217172,-0.065817962630829,-0.0884013746202123,-0.0877164918850993 +10.634,6.45430904251121e-05,0.0487282755066849,-0.0253557722395854,0.0444830601009348,-0.0658206285841536,-0.088392625057529,-0.087708138343523 +10.636,8.07853606919484e-05,0.0487332541016189,-0.0253646154712156,0.0444620047735728,-0.0658166215859025,-0.0883939257978402,-0.0876954858757595 +10.638,0.000107484101366351,0.0487450932151777,-0.0253830463899203,0.044421739013482,-0.065819291057416,-0.0883851393118876,-0.0876871524215054 +10.64,0.000123705502197063,0.0487500768388377,-0.025391876544611,0.0444006787845058,-0.0658152927131912,-0.0883864176365559,-0.0876745195021125 +10.642,0.000150368779766555,0.0487619129289679,-0.02541028015916,0.0443604123505248,-0.0658179570395061,-0.0883776038614781,-0.087666203759177 +10.644,0.000166573054509817,0.0487669031550776,-0.0254190967452344,0.0443393491557864,-0.0658139609184045,-0.0883788662480974,-0.0876535899958281 +10.646,0.000193205519100778,0.048778735493671,-0.0254374709988498,0.0442990864371817,-0.0658166121769648,-0.088370034634135,-0.0876452892046465 +10.648,0.000209396612724205,0.0487837330509588,-0.025446273861735,0.044278021781239,-0.0658126127759456,-0.0883712869451862,-0.0876326938194082 +10.65,0.000236003347145491,0.0487955605316075,-0.0254646176636897,0.0442377657418115,-0.0658152448251774,-0.0883624455043471,-0.0876244052355093 +10.652,0.000252184782678064,0.0488005652702722,-0.0254734069377328,0.0442167006356504,-0.0658112382155686,-0.0883636923340193,-0.0876118271570649 +10.654,0.000278770568221398,0.0488123866166932,-0.0254917202299586,0.0441764525847043,-0.0658138473464714,-0.0883548467735378,-0.0876035483983438 +10.656,0.000294945058477478,0.0488173976259825,-0.0255004963045755,0.0441553874850217,-0.0658098315060297,-0.0883560910681564,-0.0875909863948815 +10.658,0.000321513780395896,0.0488292115358737,-0.0255187799144396,0.0441151472430274,-0.0658124165810642,-0.0883472444918208,-0.0875827156420168 +10.66,0.00033768301521947,0.0488342273300052,-0.0255275433501691,0.0440940821242686,-0.0658083913726344,-0.0883484875026555,-0.087570168445824 +10.662,0.000364237341137247,0.0488460326046617,-0.0255457987593847,0.0440538483356075,-0.0658109535734031,-0.0883396405286044,-0.0875619045324262 +10.664,0.000380401978512246,0.0488510513674828,-0.025554550204605,0.0440327827928525,-0.0658069204580692,-0.0883408820010328,-0.0875493709584712 +10.666,0.000406943266553522,0.0488628469984632,-0.0255727792526619,0.0439925533656764,-0.0658094627298343,-0.0883320332210582,-0.0875411133511086 +10.668,0.000423103069815078,0.0488678668364319,-0.0255815193561818,0.0439714867559253,-0.0658054242934478,-0.0883332717602986,-0.0875285923901965 +10.67,0.000449631485026261,0.0488796520620784,-0.0255997239465267,0.0439312593087109,-0.0658079506330802,-0.0883244183868979,-0.0875203410930893 +10.672,0.000465785561162169,0.0488846712368694,-0.0256084532839908,0.043910190890337,-0.0658039100324655,-0.0883256519059752,-0.0875078319760762 +10.674,0.000492300330111758,0.0488964455659339,-0.0256266351264182,0.0438699631518424,-0.0658064247466757,-0.0883167904806556,-0.0874995873886158 +10.676,0.000508447408670953,0.0489014626777746,-0.0256353541440519,0.0438488922096056,-0.0658023851673592,-0.0883180166531561,-0.0874870896179966 +10.678,0.000534947148010584,0.0489132258872929,-0.0256535145651777,0.0438086623178474,-0.0658048922152172,-0.088309143696853,-0.087478852377615 +10.68,0.000551085852393246,0.0489182399941952,-0.0256622235465735,0.0437875882560153,-0.0658008564173152,-0.0883103603466731,-0.0874663657294084 +10.682,0.000577568906238099,0.048929992105798,-0.0256803633805623,0.0437473549367875,-0.0658033589145122,-0.0883014728712235,-0.087458136564729 +10.684,0.000593697978748808,0.0489350027726569,-0.0256890624364415,0.0437262773350029,-0.065799328915333,-0.088302678256486,-0.0874456610653032 +10.686,0.000620162715491174,0.0489467440135893,-0.0257071819972568,0.0436860399577941,-0.0658018288416348,-0.0882937740913988,-0.0874374406778013 +10.688,0.000636281173919895,0.0489517512954287,-0.0257158710763843,0.0436649585888948,-0.0657978057558428,-0.0882949670630777,-0.0874249765622537 +10.69,0.000662726209138029,0.0489634820495873,-0.0257339702007668,0.0436247171183016,-0.0658003038700851,-0.0882860449898588,-0.0874167655454673 +10.692,0.000678833427122008,0.0489684864202874,-0.0257426491174533,0.0436036319340498,-0.0657962879018134,-0.0882872250287773,-0.0874043132042967 +10.694,0.000705257757983746,0.048980207174517,-0.0257607272609003,0.0435633868054179,-0.0657987838391364,-0.0882782847447814,-0.0873961120018846 +10.696,0.000721353474541872,0.0489852094173673,-0.0257693957334795,0.0435422978992606,-0.0657947744002434,-0.0882794518977428,-0.0873836719224673 +10.698,0.000747756527049309,0.0489969207074682,-0.0257874520975774,0.0435020498528295,-0.0657972669053777,-0.0882704938523486,-0.0873754808200853 +10.7,0.000763840799821183,0.0490019217859058,-0.0257961097917574,0.0434809574104972,-0.0657932628211245,-0.0882716485988229,-0.0873630535286482 +10.702,0.000790222402739169,0.0490136241461873,-0.025814143461189,0.0434407073170536,-0.0657957500613073,-0.0882626737544131,-0.0873548726708091 +10.704,0.000806295524616446,0.0490186250726457,-0.0258227900326486,0.0434196115651722,-0.0657917498197755,-0.0882638168386991,-0.0873424586795934 +10.706,0.000832655831427886,0.0490303189920947,-0.0258408001028856,0.0433793602705863,-0.065794229720365,-0.0882548264087818,-0.0873342881011891 +10.708,0.000848718231306375,0.0490353207103404,-0.0258494352344854,0.0433582614315307,-0.0657902317239745,-0.0882559586701386,-0.0873218878643647 +10.71,0.000875057614262736,0.049047006597728,-0.0258674209158915,0.0433180096389068,-0.0657927022773375,-0.0882469538789244,-0.0873137275271073 +10.712,0.000891109760414677,0.0490520098900888,-0.025876044346242,0.0432969078972784,-0.0657887050622314,-0.0882480761053729,-0.0873013414078138 +10.714,0.000917428699238179,0.0490636880495781,-0.0258940050359679,0.0432566560959285,-0.0657911645733817,-0.0882390580002181,-0.0872931912339031 +10.716,0.000933471019284107,0.0490686934757883,-0.0259026165776015,0.0432355515790389,-0.0657871669731604,-0.0882401708225725,-0.0872808194836229 +10.718,0.0009597700025437,0.0490803640937797,-0.025920551896323,0.043195300020552,-0.0657896142210313,-0.088231140155811,-0.0872726793817092 +10.72,0.000975802828387329,0.0490853719634531,-0.025929151443156,0.0431741927925902,-0.0657856154631913,-0.0882322439888739,-0.0872603221320701 +10.722,0.00100208227934873,0.0490970351066051,-0.0259470612386677,0.0431339415072728,-0.06578804977178,-0.0882232011714896,-0.087252192013486 +10.724,0.00101810581978529,0.0491020454831853,-0.025955648763662,0.0431128315748025,-0.0657840495064084,-0.0882242962007836,-0.0872398492796055 +10.726,0.00104436605196098,0.0491137011067305,-0.0259735330870601,0.043072580417205,-0.065786470733161,-0.0882152413189164,-0.0872317290652918 +10.728,0.00106038039084889,0.0491187138375517,-0.0259821086319122,0.0430514677424251,-0.0657824690025357,-0.0882163275248625,-0.0872194007589605 +10.73,0.00108662159262476,0.0491303618022995,-0.0259999676943657,0.0430112164528273,-0.0657848774609244,-0.0882072604026117,-0.0872112903792374 +10.732,0.00110262670706014,0.0491353765673361,-0.0260085313536063,0.0429901009706357,-0.0657808746248592,-0.088208337610215,-0.0871989763296407 +10.734,0.0011288489503838,0.0491470166631541,-0.0260263654725169,0.0429498492398349,-0.0657832709635221,-0.0881992578987629,-0.08719087571984 +10.736,0.00114484474147102,0.0491520330341688,-0.0260349173745982,0.0429287308750638,-0.0657792675982704,-0.0882003258396458,-0.0871785756991309 +10.738,0.00117104800701019,0.0491636650073361,-0.0260527269175103,0.0428884784020787,-0.0657816526604453,-0.0881912331130914,-0.0871704847941588 +10.74,0.00118703433551996,0.0491686825093752,-0.0260612672053593,0.0428673570840748,-0.065777649449034,-0.0881922914877425,-0.0871581985450953 +10.742,0.00121321854590738,0.0491803060910295,-0.0260790525385701,0.042827103619706,-0.0657800241339343,-0.0881831853292913,-0.0871501172754173 +10.744,0.00122919526605338,0.0491853242592796,-0.0260875813517037,0.0428059792925085,-0.065776021763435,-0.0881842338600101,-0.0871378445383741 +10.746,0.00125536031957743,0.0491969391923031,-0.0261053427986039,0.0427657246653513,-0.0657783869067259,-0.0881751139272328,-0.0871297728289779 +10.748,0.00127132730594343,0.0492019576190069,-0.0261138602584023,0.0427445972928193,-0.0657743859840673,-0.0881761523957514,-0.0871175133659843 +10.75,0.00129747310481688,0.0492135636810091,-0.026131598070381,0.0427043414177007,-0.0657767422687084,-0.0881670184592953,-0.0871094511387804 +10.752,0.00131343026962923,0.0492185820490837,-0.026140104269499,0.0426832109839236,-0.0657727432619685,-0.0881680467267039,-0.0870972047527331 +10.754,0.00133955673930736,0.0492301790697219,-0.0261578186102457,0.0426429538553743,-0.0657750911645831,-0.0881588986821802,-0.0870891519319115 +10.756,0.00135550403940564,0.0492351971717222,-0.0261663136065694,0.0426218203613724,-0.0657710943720979,-0.0881599166919961,-0.0870769184797451 +10.758,0.00138161113777942,0.0492467850432536,-0.0261840045488594,0.0425815620364476,-0.0657734341444552,-0.0881507545490022,-0.08706887499888 +10.76,0.00139754857241052,0.049251802786079,-0.0261924883638672,0.0425604254945805,-0.065769439690082,-0.0881517623166272,-0.0870566543981338 +10.762,0.00142363628973927,0.0492633814668181,-0.0262101558967134,0.0425201660699868,-0.0657717713709643,-0.0881425861715796,-0.0870486202075063 +10.764,0.00143956389154103,0.0492683988640099,-0.0262186285176994,0.0424990264975362,-0.0657677792209225,-0.0881435837647692,-0.0870364124364231 +10.766,0.00146563224340336,0.0492799683750547,-0.026236272561008,0.042458766085818,-0.0657701026707943,-0.0881343937653392,-0.0870283875090068 +10.768,0.0014815500655329,0.0492849855294869,-0.0262447339463226,0.0424376234990448,-0.0657661126657394,-0.088135381280695,-0.0870161926008679 +10.77,0.00150759908180906,0.0492965459457361,-0.0262623543699788,0.0423973622076922,-0.0657684276154146,-0.0881261775893342,-0.0870081769357711 +10.772,0.00152350718417824,0.049301563026029,-0.0262708044562904,0.0423762166173115,-0.065764439510841,-0.0881271551293672,-0.0869959949686538 +10.774,0.00154953689713,0.0493131144629582,-0.0262884011007552,0.042335954533352,-0.0657667456154463,-0.0881179378919654,-0.0869879885912941 +10.776,0.00156543533424316,0.0493181316770107,-0.0262968398113082,0.0423148059419345,-0.0657627591239337,-0.0881189055462124,-0.0869758196747511 +10.778,0.00159144576827686,0.0493296742749712,-0.0263144125072769,0.0422745431231902,-0.0657650560146929,-0.0881096748698977,-0.086967822633662 +10.78,0.00160733458039759,0.0493346918437316,-0.0263228397601905,0.04225339152458,-0.0657610708446544,-0.0881106327022116,-0.086955666893953 +10.782,0.00163332574526562,0.0493462257515963,-0.026340388345487,0.0422131279974807,-0.0657633581728819,-0.088101388644021,-0.0869476792546777 +10.784,0.00164920495375565,0.0493512438856331,-0.0263488040612933,0.0421919733779487,-0.0657593740600314,-0.0881023366867294,-0.086935536820147 +10.786,0.00167517684198357,0.0493627692454893,-0.0263663283938545,0.0421517091408152,-0.0657616515298845,-0.0880930792528217,-0.0869275586571234 +10.788,0.00169104644880474,0.0493677881262257,-0.0263747325016775,0.0421305514814487,-0.0657576682593306,-0.0880940175072527,-0.0869154296451353 +10.79,0.00171699903721527,0.0493793050605335,-0.0263922324681388,0.0420902865115395,-0.0657599356479815,-0.0880847466607297,-0.086907461032748 +10.792,0.00173285902791792,0.0493843248272285,-0.0264006249101362,0.0420691257912314,-0.0657559530664077,-0.0880856751026891,-0.0868953455392652 +10.794,0.00175879228238882,0.0493958334294497,-0.0264181004300664,0.0420288600536375,-0.0657582102320682,-0.0880763907771168,-0.0868873865432891 +10.796,0.00177464263146287,0.0494008541722794,-0.0264264811639807,0.0420076962520712,-0.0657542282507522,-0.0880773093654365,-0.0868752846358156 +10.798,0.00180055651361419,0.0494123545015177,-0.0264439321902365,0.0419674297086559,-0.0657564751303096,-0.0880680114808164,-0.0868673353063468 +10.8,0.00181639719090665,0.0494173762604556,-0.0264523011900994,0.0419462628087732,-0.0657524937206099,-0.0880689201669826,-0.0868552470205225 +10.802,0.00184229166525919,0.0494288683401746,-0.0264697277060324,0.0419059954257343,-0.0657547303194235,-0.0880596086451686,-0.0868473073872075 +10.804,0.00185812264222009,0.0494338911088714,-0.0264780849612324,0.0418848254153583,-0.0657507495028675,-0.0880605073822822,-0.0868352327269612 +10.806,0.00188399768249124,0.0494453749293368,-0.026495486975624,0.0418445571684938,-0.0657529758795801,-0.088051182159481,-0.0868273027969661 +10.808,0.00189981893725907,0.049450398662847,-0.0265038324886618,0.041823384040955,-0.0657489957147928,-0.0880520709092485,-0.0868152417377728 +10.81,0.00192567453078635,0.0494618741865898,-0.0265212100292705,0.0417831149182783,-0.0657512119638897,-0.0880427319441482,-0.0868073214965278 +10.812,0.00194148605147224,0.0494668988116217,-0.026529543812602,0.0417619386720896,-0.065747232532446,-0.0880436106811696,-0.0867952739910754 +10.814,0.00196732220120388,0.0494783659810036,-0.0265468969191555,0.0417216686739103,-0.0657494387668991,-0.0880342579581765,-0.0867873634054698 +10.816,0.00198312398713371,0.0494833914073389,-0.0265552189915462,0.0417004893116713,-0.0657454601598048,-0.0880351266713658,-0.0867753293908719 +10.818,0.00200894071108768,0.0494948501531879,-0.0265725477088756,0.0416602184486466,-0.0657476564955558,-0.0880257601992848,-0.0867674284142876 +10.82,0.00202473277211465,0.0494998762850202,-0.0265808580916712,0.0416390359754535,-0.0657436788015914,-0.0880266188907312,-0.0867554078199296 +10.822,0.00205053010063214,0.0495113265353334,-0.0265981624635471,0.0415987642653242,-0.0657458653450145,-0.0880172386978692,-0.0867475163983381 +10.824,0.0020663124549143,0.0495163532814753,-0.026606461177217,0.0415775786869946,-0.0657418886416859,-0.0880180873797917,-0.0867355091534952 +10.826,0.0020920904263341,0.0495277949692888,-0.0266237412412684,0.0415373061507795,-0.0657440654805632,-0.088008693506817,-0.0867276272317729 +10.828,0.00210786309714327,0.0495328222514642,-0.0266320283025045,0.0415161174721847,-0.0657400898279597,-0.0880095321974358,-0.0867156332722678 +10.83,0.00213362175269624,0.0495442553212094,-0.0266492840864655,0.0414758441305506,-0.0657422570260349,-0.0880001246894619,-0.0867077607999733 +10.832,0.0021493847648808,0.0495492830799365,-0.0266575595060285,0.0414546523542832,-0.065738282463524,-0.0880009534086176,-0.0866957800733254 +10.834,0.00217512414361866,0.0495607074918242,-0.0266747910253925,0.0414143782246313,-0.065740440058317,-0.0879915323078161,-0.0866879170093134 +10.836,0.0021908775202944,0.0495657356896926,-0.026683054806803,0.041393183350161,-0.0657364666037605,-0.0879923510730673,-0.0866759494780609 +10.838,0.0022165976547725,0.0495771514219437,-0.0267002620638662,0.0413529084447541,-0.0657386146071088,-0.0879829164128185,-0.0866680957935294 +10.84,0.00223234141469515,0.0495821800443549,-0.0267085142029525,0.0413317104681222,-0.0657346422581199,-0.0879837252365274,-0.0866561414366249 +10.842,0.00225804232792405,0.0495935870933276,-0.0267256971871087,0.0412914347933628,-0.065736780658798,-0.0879742770377276,-0.0866482971164279 +10.844,0.00227377648382142,0.0495986161469853,-0.0267339376723345,0.0412702337073853,-0.0657328093954922,-0.0879750759254049,-0.0866363559288157 +10.846,0.00229945818776917,0.0496100145254702,-0.0267510963614328,0.0412299572641458,-0.0657349381632516,-0.0879656141951149,-0.0866285209711014 +10.848,0.00231518274573585,0.0496150440350808,-0.0267593251748777,0.0412087530590277,-0.0657309679519588,-0.0879664031450665,-0.0866165929617594 +10.85,0.00234084524140234,0.0496264337691705,-0.0267764595373788,0.041168475843796,-0.0657330870423661,-0.0879569278773206,-0.0866087673761786 +10.852,0.00235656020128461,0.049631463772903,-0.026784676656191,0.0411472685080163,-0.0657291178398074,-0.0879577068814231,-0.0865968525650195 +10.854,0.00238220348015836,0.0496428448979493,-0.0268017866538509,0.0411069905145361,-0.0657312271993609,-0.0879482180597375,-0.0865890363698931 +10.856,0.00239790883673274,0.0496478754422493,-0.0268099920519789,0.0410857800358439,-0.0657272589568791,-0.087948987105039,-0.0865771347839879 +10.858,0.00242353288327618,0.0496592479984326,-0.0268270776427706,0.0410455012569148,-0.0657293585279724,-0.0879394847059996,-0.0865693280028844 +10.86,0.00243922862794357,0.0496642791327605,-0.0268352712927728,0.0410242876232888,-0.065725391195489,-0.0879402437767714,-0.0865574396724776 +10.862,0.00246483342266005,0.049675643160771,-0.0268523324337757,0.0409840080524227,-0.0657274809208952,-0.0879307277740194,-0.0865496423306615 +10.864,0.00248016261277668,0.0496814944717214,-0.0268613616340009,0.0409611416439753,-0.0657259524345466,-0.0879279569326608,-0.0865408030407663 +10.866,0.00250280290690798,0.0496909413508362,-0.0268756600637481,0.0409267876809104,-0.0657259227444804,-0.0879221932106596,-0.0865315229902578 +10.868,0.00251690400455223,0.0496947805518756,-0.026882178757293,0.0409092315209677,-0.0657203748522593,-0.0879256272017508,-0.0865184246882771 +10.87,0.00254508213294907,0.0497075081270086,-0.0269012205089304,0.0408646389096814,-0.0657234259236754,-0.087914337331001,-0.0865111150797068 +10.872,0.00256121353758156,0.0497136730603868,-0.0269107569727278,0.0408406839099533,-0.0657219698735475,-0.0879113084882082,-0.0865021997502409 +10.874,0.00258071796226855,0.0497219950688236,-0.0269232477111352,0.0408103768825458,-0.0657223755979533,-0.0879052931044633,-0.0864944987001866 +10.876,0.00259225826844059,0.0497240728672063,-0.0269272791727298,0.040798274858546,-0.0657147813337143,-0.0879123556446659,-0.0864798662762969 +10.878,0.00262410709784339,0.049738733406352,-0.0269491357691878,0.0407474732418667,-0.0657191910170972,-0.0878985266447412,-0.086473196531299 +10.88,0.00264233131778423,0.0497449133183473,-0.0269590810059847,0.0407224230728235,-0.065715744150625,-0.0878980527600846,-0.0864613272196079 +10.882,0.00266771976798563,0.0497556636108965,-0.0269754562519547,0.0406834644746615,-0.0657168762952546,-0.0878898231577758,-0.0864525769236842 +10.884,0.0026831385646086,0.049760247896329,-0.026983125452532,0.0406631433745399,-0.0657122791398899,-0.0878912709079369,-0.0864400436031925 +10.886,0.00270728493750599,0.0497714999890502,-0.0269998143774565,0.0406235300194912,-0.0657158088741123,-0.087879585820355,-0.0864344274812509 +10.888,0.00272194595032288,0.0497757325050911,-0.0270068477083393,0.0406045914628204,-0.0657107780926653,-0.0878821509757507,-0.0864215970061229 +10.89,0.00274975915075974,0.0497882406825205,-0.027025521989789,0.0405603035487868,-0.0657135369240447,-0.087871051443756,-0.0864139837708946 +10.892,0.00276629632813484,0.0497936495415755,-0.0270342373449405,0.040537626728947,-0.0657096578772631,-0.0878713905079505,-0.0864019164582508 +10.894,0.00279219590339841,0.0498050954613685,-0.0270513920238023,0.040496600049235,-0.0657116691864424,-0.0878615902860727,-0.0863938965336667 +10.896,0.00280783870192594,0.0498100698368852,-0.0270594549693196,0.0404752583577977,-0.0657076014327601,-0.0878622874893121,-0.0863817882274088 +10.898,0.00283075265957781,0.0498208524132653,-0.0270753049565868,0.0404371638362402,-0.0657107844210385,-0.0878511205115671,-0.0863760608490239 +10.9,0.00284479824130425,0.0498248649514382,-0.0270819038310604,0.0404190830270168,-0.0657056118870744,-0.0878540651121517,-0.0863631906715768 +10.902,0.00287252956875243,0.0498375252025622,-0.0271006468471976,0.0403744299594972,-0.0657085389692126,-0.0878425952550867,-0.0863558053680863 +10.904,0.00288906466435068,0.049843038434777,-0.0271094046584506,0.0403515936656295,-0.0657047541342328,-0.0878428091712363,-0.0863438774996052 +10.906,0.00291458990681877,0.0498543239279084,-0.0271262365355469,0.0403111450821209,-0.0657065691781029,-0.0878332838127029,-0.086335823421948 +10.908,0.00292992295754514,0.0498601771284331,-0.027135164993882,0.0402880645354122,-0.0657049223901757,-0.0878304274056712,-0.086326826793034 +10.91,0.00295300470150969,0.0498699536175195,-0.0271497777103896,0.0402524299986907,-0.0657051183342021,-0.0878238804787969,-0.0863176976716281 +10.912,0.00296724710819563,0.0498739522690665,-0.0271563626478911,0.040234344774997,-0.0656996669253205,-0.0878269764847084,-0.0863046538689397 +10.914,0.00299539265998386,0.0498867538859832,-0.0271753134922445,0.040189191695308,-0.065702701722485,-0.0878152070883649,-0.0862974322615121 +10.916,0.00301212892151197,0.0498923739104892,-0.0271841862073316,0.0401660354813735,-0.0656990015252285,-0.0878151500318809,-0.0862856850324694 +10.918,0.00303749335066145,0.0499034881969814,-0.0272007510789856,0.0401260458773752,-0.0657006057375129,-0.0878058688085275,-0.0862775969387516 +10.92,0.00305282074904899,0.0499093095227309,-0.027209596399292,0.0401030694084964,-0.0656988684971289,-0.0878030781549035,-0.0862686458866074 +10.922,0.00307265796698979,0.0499180312382439,-0.0272224111128146,0.0400714229121759,-0.0656996432664479,-0.0877960796506209,-0.0862613856250053 +10.924,0.00308458303473856,0.049920527250227,-0.0272267871660761,0.0400582927451081,-0.0656924287097699,-0.0878025270015686,-0.0862471446998551 +10.926,0.00311547783719758,0.0499347428679934,-0.027247752902059,0.0400084950834367,-0.0656963194247111,-0.0877890085381698,-0.0862403835879385 +10.928,0.00313333709496152,0.0499408341731934,-0.0272573341326816,0.0399837936670346,-0.0656927053953178,-0.0877886730773114,-0.0862285912457547 +10.93,0.00315860374517592,0.0499516004895477,-0.0272735071345981,0.0399445993341294,-0.0656937401471516,-0.0877802278244211,-0.0862200018460908 +10.932,0.00317406277312703,0.0499573039515665,-0.0272822775165267,0.0399217434642813,-0.0656917598284692,-0.0877777110729037,-0.0862107927098178 +10.934,0.00319782068142695,0.0499672665401734,-0.0272972092912367,0.0398851828792551,-0.0656920104895286,-0.0877708319204037,-0.0862017064203326 +10.936,0.00321237846952789,0.0499713570109261,-0.027303943688824,0.039866613520678,-0.065686597366087,-0.0877737066344357,-0.0861887059858541 +10.938,0.00324063601507936,0.0499840683085283,-0.0273228072841336,0.0398212973121193,-0.0656895321233872,-0.0877618787770142,-0.0861814247803248 +10.94,0.00325735779090171,0.0499896312882186,-0.0273316095845899,0.0397980743963264,-0.0656858235061841,-0.0877617425811105,-0.0861696736204934 +10.942,0.00328282925869817,0.0500007816101964,-0.0273482273396967,0.0397576062340582,-0.0656875356067644,-0.0877520996416821,-0.0861616709866379 +10.944,0.0032982838910136,0.0500056810263675,-0.0273560486111549,0.0397364664419598,-0.0656833894327688,-0.0877528205360178,-0.0861496957264435 +10.946,0.00332111897535803,0.050016378027849,-0.0273716787413337,0.0396982633208534,-0.0656864504478873,-0.0877415141268072,-0.0861440789024273 +10.948,0.0033351466507697,0.0500204269354709,-0.0273782011011108,0.0396800788858047,-0.0656813095866973,-0.0877443629712298,-0.0861313843033071 +10.95,0.00336259286295801,0.0500328755839247,-0.0273965346637349,0.0396356340416344,-0.0656840050146149,-0.0877329166942632,-0.0861240343555352 +10.952,0.00337899995780314,0.0500383426329455,-0.0274051097147413,0.0396128558051466,-0.0656801822882929,-0.0877331115338884,-0.086112231137871 +10.954,0.00340434161686014,0.0500494996957931,-0.0274216542645251,0.0395724134858691,-0.0656818685619195,-0.0877234886026024,-0.08610426678848 +10.956,0.00341958004755252,0.0500553130320461,-0.027430439169127,0.0395493044438191,-0.0656802041713741,-0.0877205472076079,-0.0860953900827802 +10.958,0.00344246709624731,0.0500649729678196,-0.0274447864681677,0.0395137075175453,-0.0656803128311962,-0.0877139054548267,-0.0860863533266102 +10.96,0.0034566154340869,0.0500689655843085,-0.0274512537973923,0.0394955985235759,-0.0656749087361818,-0.0877169043289299,-0.0860734589414613 +10.962,0.00348452388455406,0.0500816228641152,-0.027469891521456,0.0394504327745027,-0.0656778284409386,-0.0877049607343276,-0.0860663347147721 +10.964,0.00350113477941656,0.0500872192880269,-0.027478615071045,0.0394272342722186,-0.0656741577785546,-0.0877047634337819,-0.0860547381834959 +10.966,0.00352627137540866,0.0500982229547693,-0.027494902667488,0.0393872176301568,-0.065675687259699,-0.0876952914710353,-0.0860467692875825 +10.968,0.00354163912916691,0.0501031253328227,-0.0275026064419079,0.0393662081201315,-0.0656714798062512,-0.0876960628794636,-0.0860348979261936 +10.97,0.00356435621665503,0.0501137363931229,-0.0275180172235467,0.0393282307919149,-0.0656743544086031,-0.0876848839179838,-0.0860293091570957 +10.972,0.00357839351616741,0.0501178255405418,-0.0275244762119402,0.0393100728251515,-0.0656691453035397,-0.0876877619935013,-0.0860167213870549 +10.974,0.00360575342677201,0.0501301631702661,-0.0275425565636724,0.0392658633005629,-0.0656715990032788,-0.0876764866282505,-0.0860093669270294 +10.976,0.00362217411194458,0.0501356448952754,-0.0275510386361154,0.0392431303594463,-0.0656676624016986,-0.0876767410661124,-0.0859976452144173 +10.978,0.00364748559160641,0.0501467222445659,-0.0275673796760048,0.0392028223096668,-0.0656691348514218,-0.0876672401766642,-0.0859896908255085 +10.98,0.00366296092039195,0.050151678819133,-0.0275751193983212,0.0391816742067494,-0.0656648951418752,-0.0876680226180142,-0.0859778422030534 +10.982,0.00368563612573911,0.0501622124600923,-0.0275904080811061,0.039143839138519,-0.0656676364629626,-0.0876569729400238,-0.0859721994473815 +10.984,0.00369965036870296,0.0501662727939961,-0.0275968070438794,0.0391257557041959,-0.0656623735358125,-0.0876599022188333,-0.0859596075529693 +10.986,0.00372709482281278,0.0501786199046529,-0.0276148919478441,0.0390813841757717,-0.0656648196562733,-0.0876485355170956,-0.085952282679036 +10.988,0.00374354871185689,0.0501841117567222,-0.0276233737955232,0.0390585632194726,-0.0656608970914894,-0.0876487163570878,-0.0859405992480242 +10.99,0.00376884158900982,0.0501951584707649,-0.0276396591628463,0.0390182265058089,-0.0656623499827159,-0.087639162215924,-0.0859326638808261 +10.992,0.00378409745206337,0.0502009659546488,-0.0276483344842842,0.0389950904097887,-0.0656605806410144,-0.0876362041325437,-0.0859238813948718 +10.994,0.00380693346810776,0.0502105514507252,-0.0276624755774918,0.0389595151853658,-0.0656605342375557,-0.0876295502280538,-0.0859149039101297 +10.996,0.00382106308792339,0.0502145650597487,-0.0276688569122294,0.0389413707932468,-0.0656551048921294,-0.0876324958429609,-0.0859021369618189 +10.998,0.00384885704807125,0.0502271131518547,-0.0276872453217538,0.0388961877205716,-0.0656578716406392,-0.0876204623185161,-0.0858950705861665 +11,0.00386627850994516,0.0502247350231211,-0.0276941394108862,0.0388478676116999,-0.0656502601664019,-0.0875741045315455,-0.0858757422919647 +11.002,0.00388942553688545,0.0501928047941942,-0.0276892232481845,0.0387559429783569,-0.0656021038423975,-0.0874578800775561,-0.0858003207546129 +11.004,0.00390048035016241,0.0501246859987975,-0.0276591579242454,0.0386598970534745,-0.0655088486112293,-0.0872995796367071,-0.0856694624385009 +11.006,0.00391951530896296,0.0500329616972628,-0.0276215855119753,0.038520053794219,-0.0653823833390461,-0.0870775198526125,-0.0854914361903959 +11.008,0.00392605006517317,0.0499047699169094,-0.0275584872132074,0.0383770225543456,-0.06521056226441,-0.0868139599310706,-0.0852577961290945 +11.01,0.0039392394651563,0.0497521596656108,-0.0274867399270567,0.0381927498479863,-0.0650047655315706,-0.0864880242868486,-0.0849764888055688 +11.012,0.00394043414963986,0.0495633721879974,-0.0273898920779318,0.0380044503819733,-0.0647538931813411,-0.0861202092610249,-0.0846397619173611 +11.014,0.00394837058263883,0.0493502260174704,-0.0272844828717124,0.0377747175065633,-0.0644691038604129,-0.085689919551329,-0.0842554362699885 +11.016,0.00394445480924674,0.0491009768487115,-0.0271540909176068,0.0375408000797829,-0.064139315600612,-0.0852177292554998,-0.0838157511168916 +11.018,0.00394334802168236,0.0488257006290783,-0.027012368855254,0.0372732623313216,-0.0637742679371023,-0.084687969234996,-0.0833283460577048 +11.02,0.00393257582859849,0.0485148670451642,-0.0268468677559763,0.0369972364522678,-0.0633645181997631,-0.0841133800342815,-0.0827850022636291 +11.022,0.00393112525307764,0.0481810796286142,-0.0266749330479733,0.0366748460898838,-0.0629221461451586,-0.0834736391698446,-0.0821949104240468 +11.024,0.00391737597723538,0.0478109377189797,-0.0264776739963357,0.036349383939803,-0.0624345493694116,-0.0827927258088314,-0.0815493321468434 +11.026,0.00390795799751918,0.0474148703944031,-0.0262696817137537,0.0359875737614252,-0.0619115709733077,-0.0820523109538649,-0.0808551717345633 +11.028,0.00388775603561346,0.0469834971219619,-0.0260377739185932,0.0356193950720344,-0.0613443744107381,-0.081268827646936,-0.0801062938051976 +11.03,0.00387274990515343,0.0465267642081743,-0.0257959065261612,0.0352130884024557,-0.0607423379156145,-0.0804248663812023,-0.0793092468061852 +11.032,0.00384702266504409,0.0460347960929343,-0.0255302078677161,0.0348002542338365,-0.0600961593048531,-0.0795377527954449,-0.0784575629577233 +11.034,0.00382509807170589,0.0455166210301379,-0.025253351172086,0.0343520044422478,-0.0594143469458961,-0.0785916413638324,-0.0775571855677898 +11.036,0.00379325126387504,0.0449637184265423,-0.0249533739020829,0.0338957034382508,-0.0586888774880428,-0.0776015820607464,-0.076602522884278 +11.038,0.00376469438117127,0.0443842991626484,-0.0246418023528722,0.0334049889729154,-0.0579274856029492,-0.0765530800184143,-0.0755989872396723 +11.04,0.0037267891772635,0.0437705107043403,-0.0243076169799606,0.032905165328049,-0.0571227796639218,-0.0754600959143515,-0.0745414148913178 +11.042,0.00368867697332947,0.0431286555820285,-0.0239593243215133,0.0323779086024674,-0.0562808746039196,-0.0743129927197976,-0.0734347126162208 +11.044,0.00364361969737408,0.0424532849916146,-0.02358995734854,0.0318367613005215,-0.0553962853524423,-0.0731183200183827,-0.0722737945433722 +11.046,0.00360253239572315,0.0417516686907837,-0.0232094949284287,0.0312600270966819,-0.0544760059380738,-0.0718645941254101,-0.0710641238006185 +11.048,0.0035526901231786,0.041016064484463,-0.0228069645204241,0.0306731950291753,-0.0535127795746384,-0.0705659421683332,-0.0698006918583707 +11.05,0.00350325699420914,0.0402521493448922,-0.0223903247494431,0.0300578788737544,-0.0525119539744833,-0.0692122275477825,-0.0684872526910229 +11.052,0.0034465480822648,0.0394552217982355,-0.0219529471741187,0.0294293382836275,-0.0514691116491163,-0.067811818567648,-0.0671207448038453 +11.054,0.00339003194466572,0.0386298727112993,-0.0215012896996634,0.0287726943935211,-0.0503885723397518,-0.0663565516756473,-0.0657041863070554 +11.056,0.0033267503614761,0.0377718417560314,-0.0210293515401298,0.0281017839152505,-0.0492663327587619,-0.0648540185839198,-0.0642347973704896 +11.058,0.00326260422371197,0.0368847508800394,-0.0205422310642768,0.0274048543564068,-0.0481057991861557,-0.0632977718668551,-0.0627149579224979 +11.06,0.0031925092307831,0.0359654826461671,-0.0200355411665493,0.0266920624389476,-0.046904042921815,-0.0616934027506911,-0.0611426289841321 +11.062,0.00312080982561459,0.0350167016549744,-0.019513034036108,0.0259547399946236,-0.0456635688874442,-0.0600361492735923,-0.0595195629763731 +11.064,0.00304383729605502,0.0340361555107899,-0.0189715422361864,0.0252002486599909,-0.0443822617332756,-0.0583300776093275,-0.0578442838023232 +11.066,0.00296453819640705,0.0330256502878644,-0.0184136095753216,0.0244226990061122,-0.0430618188963867,-0.0565719484657409,-0.056117980844682 +11.068,0.00288058609076507,0.0319837580436805,-0.0178372283392066,0.0236267714941683,-0.0417008999738652,-0.0547643525263303,-0.0543397181589214 +11.07,0.00279370570666126,0.0309115349383464,-0.0172438863674557,0.0228090163178582,-0.0403004975637948,-0.0529053919753698,-0.0525101922136917 +11.072,0.00270266859262377,0.0298082290801275,-0.01663252573262,0.0219719056316967,-0.0388599063812775,-0.0509964358953611,-0.0506289112990473 +11.074,0.0026082442784296,0.0286743115287509,-0.0160038098933793,0.0211139006145157,-0.0373795692978773,-0.0490366384796539,-0.0486961866340472 +11.076,0.0025099964133186,0.027509517367411,-0.0153573651020195,0.0202358772935154,-0.0358592381695109,-0.04702648435644,-0.0467118460278118 +11.078,0.00240810319131102,0.02631395696049,-0.0146933459903328,0.0193374781327068,-0.0342990169723313,-0.0449657767591171,-0.0446759628866445 +11.08,0.00230260295895996,0.0250885234235659,-0.0140122280924972,0.0184194673412224,-0.032700079465296,-0.0428561338365771,-0.0425900808082407 +11.082,0.00219710882539483,0.0238723209324777,-0.0133358645148625,0.0175104854510266,-0.031113386982409,-0.0407642893706223,-0.0405205624713658 +11.084,0.00209356637322199,0.022686087991749,-0.0126758584727804,0.0166256406922608,-0.0295659585381613,-0.0387255606356703,-0.0385025765757911 +11.086,0.00199202612661801,0.0215298498454223,-0.0120322474045509,0.0157648185515014,-0.0280578142633305,-0.0367398688319418,-0.0365361244130623 +11.088,0.00189253940375916,0.0204036319319473,-0.0114050691979037,0.014927903215609,-0.0265889744014171,-0.03480713443628,-0.0346212071746246 +11.09,0.0017951577231728,0.0193074596206067,-0.0107943617690762,0.0141147788501042,-0.025159459105576,-0.0329272780608227,-0.0327578259556371 +11.092,0.00169993219698903,0.0182413579664138,-0.0102001626433495,0.0133253307916796,-0.0237692882550225,-0.0311002212185827,-0.0309459817764811 +11.094,0.00160691302923117,0.0172053515080459,-0.00962250860973974,0.0125594465029978,-0.0224184813045014,-0.0293258869267451,-0.0291856756060276 +11.096,0.00151614912840994,0.016199464105291,-0.00906143545253875,0.0118170163176971,-0.0211070571621053,-0.0276042001802781,-0.0274769083780739 +11.098,0.00142768782485446,0.0152237188102806,-0.00851697775130989,0.0110979340148282,-0.0198350340905154,-0.0259350883275119,-0.0258196809973686 +11.1,0.0013415746779483,0.0142781377674627,-0.00798916873886701,0.0104020972544362,-0.0186024296280672,-0.0243184813689344,-0.0242139943352696 +11.102,0.00125785335646022,0.013362742138187,-0.00747804020661566,0.00972940789874736,-0.0174092605271668,-0.0227543121921848,-0.0226598492173523 +11.104,0.00117656557507743,0.0124775520465707,-0.00698362244733513,0.00907977223824715,-0.0162555427083458,-0.0212425167510736,-0.0211572464063362 +11.106,0.00109775107159115,0.0116225865439096,-0.0065059442266667,0.00845310113843279,-0.0151412912286644,-0.0197830341938083,-0.0197061865838086 +11.108,0.00102144761146738,0.0107978635893205,-0.00604503277600894,0.0078493101205856,-0.0140665202633319,-0.0183758069446285,-0.0183066703337139 +11.11,0.000947691009269969,0.0100034000445654,-0.00560091380099769,0.00726831938809654,-0.0130312430994079,-0.0170207807430253,-0.0169586981297554 +11.112,0.000876515159183317,0.00923921168115839,-0.00517361150111568,0.00671005380839317,-0.0120354721403527,-0.0157179046450956,-0.0156622703279541 +11.114,0.000807952069417627,0.00850531319794028,-0.00476314859715024,0.00617444285919801,-0.011079218920064,-0.0144671309920015,-0.0144173871647778 +11.116,0.00074203189740394,0.00780171824735349,-0.00436954636416197,0.00566142054661995,-0.0101624941249336,-0.0132684153507694,-0.0132240487605931 +11.118,0.000678782984332859,0.00712843946869528,-0.00399282466834463,0.00517092530141785,-0.00928530762238785,-0.0121217164326896,-0.0120822551277184 +11.12,0.000618231888772306,0.00648548852669507,-0.00363300200668168,0.00470289985869215,-0.00844766849437389,-0.0110269959943708,-0.0109920061820777 +11.122,0.000560403419864722,0.00587287615385711,-0.00329009554866803,0.00425729112526401,-0.00764958507430225,-0.00998421872609128,-0.00995330175733058 +11.124,0.000505320671031999,0.00529061219514711,-0.00296412117961508,0.00383405003811615,-0.00689106498607241,-0.00899335213154562,-0.00896614162036407 +11.126,0.000453005055284221,0.00473870565377067,-0.00265509354522165,0.00343313141649645,-0.00617211518396276,-0.00805436640245526,-0.0080305254871232 +11.128,0.000403476343209826,0.00421716473699106,-0.00236302609720317,0.00305449380963176,-0.00549274199235982,-0.00716723429085434,-0.00714645303791096 +11.13,0.000356752704583433,0.00372599690115196,-0.0020879311398465,0.00269809934146098,-0.00485295114451553,-0.00633193098121983,-0.00631392393146863 +11.132,0.000312850754311695,0.00326520889529623,-0.00182981987740909,0.00236391355336119,-0.00425274781974257,-0.00554843396401119,-0.00553293781733951 +11.134,0.000271785603187343,0.00283480680299149,-0.00158870246231615,0.00205190524550207,-0.00369213667867376,-0.0048167229116444,-0.00480349434620375 +11.136,0.00023357091366396,0.00243479608217855,-0.00136458804413459,0.00176204631720642,-0.00317112189641249,-0.00413677955745784,-0.00412559317804271 +11.138,0.000198218960620665,0.0020651816030385,-0.00115748481931592,0.00149431160650817,-0.00268970719357713,-0.00350858757783903,-0.00349923398813872 +11.14,0.000165740696870049,0.00172596768402342,-0.000967400081706575,0.00124867872897052,-0.00224789586538824,-0.00293213247737424,-0.00292441647103844 +11.142,0.00013614582298478,0.00141715812630877,-0.000794340273821925,0.00102512791574699,-0.00184569080905867,-0.00240740147665449,-0.00240114034270129 +11.144,0.000109442860882717,0.00113875624700236,-0.0006383110388724,0.000823641850825422,-0.00148309454982259,-0.00193438340221705,-0.00192940534112069 +11.146,8.56392305199564e-05,0.000890764911485999,-0.000499317273517076,0.000644205507382159,-0.00116010926598096,-0.00151306857801516,-0.00150921122574445 +11.148,6.47413289949239e-05,0.000673186565273524,-0.000377363181304416,0.000486805983181844,-0.000876736813350446,-0.00114344871778099,-0.00114055777603479 +11.15,4.67546113618042e-05,0.000486023265749268,-0.00027245232674301,0.000351432334981223,-0.0006329787494851,-0.000825516817669179,-0.000823444789501128 +11.152,3.16836724831913e-05,0.000329276714108317,-0.000184587689929368,0.000238075411926833,-0.000428836358000283,-0.000559267048629542,-0.000557872079513094 +11.154,1.95323293136976e-05,0.00020294828776082,-0.000113771721645955,0.000146727687971247,-0.000264310673272048,-0.000344694648047284,-0.000343839473162272 +11.156,1.0303703091268e-05,0.000107039073393778,-6.00063988328124e-05,7.73830933667424e-05,-0.000139402505718832,-0.000181795810297052,-0.000181346809391895 +11.158,4.00030101346333e-06,4.15499008108579e-05,-2.32932803304146e-05,3.00368453257122e-05,-5.41124678016139e-05,-7.05675759734112e-05,-7.03939375600373e-05 +11.16,6.24097084454374e-07,6.48137759903877e-06,-3.63356279024916e-06,4.68527796118243e-06,-8.44100080817404e-06,-1.10077196756251e-05,-1.0980716545599e-05 +11.162,0,0,0,0,0,0,0 +11.164,0,0,0,0,0,0,0 +11.166,0,0,0,0,0,0,0 +11.168,0,0,0,0,0,0,0 +11.17,0,0,0,0,0,0,0 +11.172,0,0,0,0,0,0,0 +11.174,0,0,0,0,0,0,0 +11.176,0,0,0,0,0,0,0 +11.178,0,0,0,0,0,0,0 +11.18,0,0,0,0,0,0,0 +11.182,0,0,0,0,0,0,0 +11.184,0,0,0,0,0,0,0 +11.186,0,0,0,0,0,0,0 +11.188,0,0,0,0,0,0,0 +11.19,0,0,0,0,0,0,0 +11.192,0,0,0,0,0,0,0 +11.194,0,0,0,0,0,0,0 +11.196,0,0,0,0,0,0,0 +11.198,0,0,0,0,0,0,0 +11.2,0,0,0,0,0,0,0 +11.202,0,0,0,0,0,0,0 +11.204,0,0,0,0,0,0,0 +11.206,0,0,0,0,0,0,0 +11.208,0,0,0,0,0,0,0 +11.21,0,0,0,0,0,0,0 +11.212,0,0,0,0,0,0,0 +11.214,0,0,0,0,0,0,0 +11.216,0,0,0,0,0,0,0 +11.218,0,0,0,0,0,0,0 +11.22,0,0,0,0,0,0,0 +11.222,0,0,0,0,0,0,0 +11.224,0,0,0,0,0,0,0 +11.226,0,0,0,0,0,0,0 +11.228,0,0,0,0,0,0,0 +11.23,0,0,0,0,0,0,0 +11.232,0,0,0,0,0,0,0 +11.234,0,0,0,0,0,0,0 +11.236,0,0,0,0,0,0,0 +11.238,0,0,0,0,0,0,0 +11.24,0,0,0,0,0,0,0 +11.242,0,0,0,0,0,0,0 +11.244,0,0,0,0,0,0,0 +11.246,0,0,0,0,0,0,0 +11.248,0,0,0,0,0,0,0 +11.25,0,0,0,0,0,0,0 +11.252,0,0,0,0,0,0,0 +11.254,0,0,0,0,0,0,0 +11.256,0,0,0,0,0,0,0 +11.258,0,0,0,0,0,0,0 +11.26,0,0,0,0,0,0,0 +11.262,0,0,0,0,0,0,0 +11.264,0,0,0,0,0,0,0 +11.266,0,0,0,0,0,0,0 +11.268,0,0,0,0,0,0,0 +11.27,0,0,0,0,0,0,0 +11.272,0,0,0,0,0,0,0 +11.274,0,0,0,0,0,0,0 +11.276,0,0,0,0,0,0,0 +11.278,0,0,0,0,0,0,0 +11.28,0,0,0,0,0,0,0 +11.282,0,0,0,0,0,0,0 +11.284,0,0,0,0,0,0,0 +11.286,0,0,0,0,0,0,0 +11.288,0,0,0,0,0,0,0 +11.29,0,0,0,0,0,0,0 +11.292,0,0,0,0,0,0,0 +11.294,0,0,0,0,0,0,0 +11.296,0,0,0,0,0,0,0 +11.298,0,0,0,0,0,0,0 +11.3,0,0,0,0,0,0,0 +11.302,0,0,0,0,0,0,0 +11.304,0,0,0,0,0,0,0 +11.306,0,0,0,0,0,0,0 +11.308,0,0,0,0,0,0,0 +11.31,0,0,0,0,0,0,0 +11.312,0,0,0,0,0,0,0 +11.314,0,0,0,0,0,0,0 +11.316,0,0,0,0,0,0,0 +11.318,0,0,0,0,0,0,0 +11.32,0,0,0,0,0,0,0 +11.322,0,0,0,0,0,0,0 +11.324,0,0,0,0,0,0,0 +11.326,0,0,0,0,0,0,0 +11.328,0,0,0,0,0,0,0 +11.33,0,0,0,0,0,0,0 +11.332,0,0,0,0,0,0,0 +11.334,0,0,0,0,0,0,0 +11.336,0,0,0,0,0,0,0 +11.338,0,0,0,0,0,0,0 +11.34,0,0,0,0,0,0,0 +11.342,0,0,0,0,0,0,0 +11.344,0,0,0,0,0,0,0 +11.346,0,0,0,0,0,0,0 +11.348,0,0,0,0,0,0,0 +11.35,0,0,0,0,0,0,0 +11.352,0,0,0,0,0,0,0 +11.354,0,0,0,0,0,0,0 +11.356,0,0,0,0,0,0,0 +11.358,0,0,0,0,0,0,0 +11.36,0,0,0,0,0,0,0 +11.362,0,0,0,0,0,0,0 +11.364,0,0,0,0,0,0,0 +11.366,0,0,0,0,0,0,0 +11.368,0,0,0,0,0,0,0 +11.37,0,0,0,0,0,0,0 +11.372,0,0,0,0,0,0,0 +11.374,0,0,0,0,0,0,0 +11.376,0,0,0,0,0,0,0 +11.378,0,0,0,0,0,0,0 +11.38,0,0,0,0,0,0,0 +11.382,0,0,0,0,0,0,0 +11.384,0,0,0,0,0,0,0 +11.386,0,0,0,0,0,0,0 +11.388,0,0,0,0,0,0,0 +11.39,0,0,0,0,0,0,0 +11.392,0,0,0,0,0,0,0 +11.394,0,0,0,0,0,0,0 +11.396,0,0,0,0,0,0,0 +11.398,0,0,0,0,0,0,0 +11.4,0,0,0,0,0,0,0 +11.402,0,0,0,0,0,0,0 +11.404,0,0,0,0,0,0,0 +11.406,0,0,0,0,0,0,0 +11.408,0,0,0,0,0,0,0 +11.41,0,0,0,0,0,0,0 +11.412,0,0,0,0,0,0,0 +11.414,0,0,0,0,0,0,0 +11.416,0,0,0,0,0,0,0 +11.418,0,0,0,0,0,0,0 +11.42,0,0,0,0,0,0,0 +11.422,0,0,0,0,0,0,0 +11.424,0,0,0,0,0,0,0 +11.426,0,0,0,0,0,0,0 +11.428,0,0,0,0,0,0,0 +11.43,0,0,0,0,0,0,0 +11.432,0,0,0,0,0,0,0 +11.434,0,0,0,0,0,0,0 +11.436,0,0,0,0,0,0,0 +11.438,0,0,0,0,0,0,0 +11.44,0,0,0,0,0,0,0 +11.442,0,0,0,0,0,0,0 +11.444,0,0,0,0,0,0,0 +11.446,0,0,0,0,0,0,0 +11.448,0,0,0,0,0,0,0 +11.45,0,0,0,0,0,0,0 +11.452,0,0,0,0,0,0,0 +11.454,0,0,0,0,0,0,0 +11.456,0,0,0,0,0,0,0 +11.458,0,0,0,0,0,0,0 +11.46,0,0,0,0,0,0,0 +11.462,0,0,0,0,0,0,0 +11.464,0,0,0,0,0,0,0 +11.466,0,0,0,0,0,0,0 +11.468,0,0,0,0,0,0,0 +11.47,0,0,0,0,0,0,0 +11.472,0,0,0,0,0,0,0 +11.474,0,0,0,0,0,0,0 +11.476,0,0,0,0,0,0,0 +11.478,0,0,0,0,0,0,0 +11.48,0,0,0,0,0,0,0 +11.482,0,0,0,0,0,0,0 +11.484,0,0,0,0,0,0,0 +11.486,0,0,0,0,0,0,0 +11.488,0,0,0,0,0,0,0 +11.49,0,0,0,0,0,0,0 +11.492,0,0,0,0,0,0,0 +11.494,0,0,0,0,0,0,0 +11.496,0,0,0,0,0,0,0 +11.498,0,0,0,0,0,0,0 +11.5,0,0,0,0,0,0,0 +11.502,0,0,0,0,0,0,0 +11.504,0,0,0,0,0,0,0 +11.506,0,0,0,0,0,0,0 +11.508,0,0,0,0,0,0,0 +11.51,0,0,0,0,0,0,0 +11.512,0,0,0,0,0,0,0 +11.514,0,0,0,0,0,0,0 +11.516,0,0,0,0,0,0,0 +11.518,0,0,0,0,0,0,0 +11.52,0,0,0,0,0,0,0 +11.522,0,0,0,0,0,0,0 +11.524,0,0,0,0,0,0,0 +11.526,0,0,0,0,0,0,0 +11.528,0,0,0,0,0,0,0 +11.53,0,0,0,0,0,0,0 +11.532,0,0,0,0,0,0,0 +11.534,0,0,0,0,0,0,0 +11.536,0,0,0,0,0,0,0 +11.538,0,0,0,0,0,0,0 +11.54,0,0,0,0,0,0,0 +11.542,0,0,0,0,0,0,0 +11.544,0,0,0,0,0,0,0 +11.546,0,0,0,0,0,0,0 +11.548,0,0,0,0,0,0,0 +11.55,0,0,0,0,0,0,0 +11.552,0,0,0,0,0,0,0 +11.554,0,0,0,0,0,0,0 +11.556,0,0,0,0,0,0,0 +11.558,0,0,0,0,0,0,0 +11.56,0,0,0,0,0,0,0 +11.562,0,0,0,0,0,0,0 +11.564,0,0,0,0,0,0,0 +11.566,0,0,0,0,0,0,0 +11.568,0,0,0,0,0,0,0 +11.57,0,0,0,0,0,0,0 +11.572,0,0,0,0,0,0,0 +11.574,0,0,0,0,0,0,0 +11.576,0,0,0,0,0,0,0 +11.578,0,0,0,0,0,0,0 +11.58,0,0,0,0,0,0,0 +11.582,0,0,0,0,0,0,0 +11.584,0,0,0,0,0,0,0 +11.586,0,0,0,0,0,0,0 +11.588,0,0,0,0,0,0,0 +11.59,0,0,0,0,0,0,0 +11.592,0,0,0,0,0,0,0 +11.594,0,0,0,0,0,0,0 +11.596,0,0,0,0,0,0,0 +11.598,0,0,0,0,0,0,0 +11.6,0,0,0,0,0,0,0 +11.602,0,0,0,0,0,0,0 +11.604,0,0,0,0,0,0,0 +11.606,0,0,0,0,0,0,0 +11.608,0,0,0,0,0,0,0 +11.61,0,0,0,0,0,0,0 +11.612,0,0,0,0,0,0,0 +11.614,0,0,0,0,0,0,0 +11.616,0,0,0,0,0,0,0 +11.618,0,0,0,0,0,0,0 +11.62,0,0,0,0,0,0,0 +11.622,0,0,0,0,0,0,0 +11.624,0,0,0,0,0,0,0 +11.626,0,0,0,0,0,0,0 +11.628,0,0,0,0,0,0,0 +11.63,0,0,0,0,0,0,0 +11.632,0,0,0,0,0,0,0 +11.634,0,0,0,0,0,0,0 +11.636,0,0,0,0,0,0,0 +11.638,0,0,0,0,0,0,0 +11.64,0,0,0,0,0,0,0 +11.642,0,0,0,0,0,0,0 +11.644,0,0,0,0,0,0,0 +11.646,0,0,0,0,0,0,0 +11.648,0,0,0,0,0,0,0 +11.65,0,0,0,0,0,0,0 +11.652,0,0,0,0,0,0,0 +11.654,0,0,0,0,0,0,0 +11.656,0,0,0,0,0,0,0 +11.658,0,0,0,0,0,0,0 +11.66,0,0,0,0,0,0,0 +11.662,0,0,0,0,0,0,0 +11.664,0,0,0,0,0,0,0 +11.666,0,0,0,0,0,0,0 +11.668,0,0,0,0,0,0,0 +11.67,0,0,0,0,0,0,0 +11.672,0,0,0,0,0,0,0 +11.674,0,0,0,0,0,0,0 +11.676,0,0,0,0,0,0,0 +11.678,0,0,0,0,0,0,0 +11.68,0,0,0,0,0,0,0 +11.682,0,0,0,0,0,0,0 +11.684,0,0,0,0,0,0,0 +11.686,0,0,0,0,0,0,0 +11.688,0,0,0,0,0,0,0 +11.69,0,0,0,0,0,0,0 +11.692,0,0,0,0,0,0,0 +11.694,0,0,0,0,0,0,0 +11.696,0,0,0,0,0,0,0 +11.698,0,0,0,0,0,0,0 +11.7,0,0,0,0,0,0,0 +11.702,0,0,0,0,0,0,0 +11.704,0,0,0,0,0,0,0 +11.706,0,0,0,0,0,0,0 +11.708,0,0,0,0,0,0,0 +11.71,0,0,0,0,0,0,0 +11.712,0,0,0,0,0,0,0 +11.714,0,0,0,0,0,0,0 +11.716,0,0,0,0,0,0,0 +11.718,0,0,0,0,0,0,0 +11.72,0,0,0,0,0,0,0 +11.722,0,0,0,0,0,0,0 +11.724,0,0,0,0,0,0,0 +11.726,0,0,0,0,0,0,0 +11.728,0,0,0,0,0,0,0 +11.73,0,0,0,0,0,0,0 +11.732,0,0,0,0,0,0,0 +11.734,0,0,0,0,0,0,0 +11.736,0,0,0,0,0,0,0 +11.738,0,0,0,0,0,0,0 +11.74,0,0,0,0,0,0,0 +11.742,0,0,0,0,0,0,0 +11.744,0,0,0,0,0,0,0 +11.746,0,0,0,0,0,0,0 +11.748,0,0,0,0,0,0,0 +11.75,0,0,0,0,0,0,0 +11.752,0,0,0,0,0,0,0 +11.754,0,0,0,0,0,0,0 +11.756,0,0,0,0,0,0,0 +11.758,0,0,0,0,0,0,0 +11.76,0,0,0,0,0,0,0 +11.762,0,0,0,0,0,0,0 +11.764,0,0,0,0,0,0,0 +11.766,0,0,0,0,0,0,0 +11.768,0,0,0,0,0,0,0 +11.77,0,0,0,0,0,0,0 +11.772,0,0,0,0,0,0,0 +11.774,0,0,0,0,0,0,0 +11.776,0,0,0,0,0,0,0 +11.778,0,0,0,0,0,0,0 +11.78,0,0,0,0,0,0,0 +11.782,0,0,0,0,0,0,0 +11.784,0,0,0,0,0,0,0 +11.786,0,0,0,0,0,0,0 +11.788,0,0,0,0,0,0,0 +11.79,0,0,0,0,0,0,0 +11.792,0,0,0,0,0,0,0 +11.794,0,0,0,0,0,0,0 +11.796,0,0,0,0,0,0,0 +11.798,0,0,0,0,0,0,0 +11.8,0,0,0,0,0,0,0 +11.802,0,0,0,0,0,0,0 +11.804,0,0,0,0,0,0,0 +11.806,0,0,0,0,0,0,0 +11.808,0,0,0,0,0,0,0 +11.81,0,0,0,0,0,0,0 +11.812,0,0,0,0,0,0,0 +11.814,0,0,0,0,0,0,0 +11.816,0,0,0,0,0,0,0 +11.818,0,0,0,0,0,0,0 +11.82,0,0,0,0,0,0,0 +11.822,0,0,0,0,0,0,0 +11.824,0,0,0,0,0,0,0 +11.826,0,0,0,0,0,0,0 +11.828,0,0,0,0,0,0,0 +11.83,0,0,0,0,0,0,0 +11.832,0,0,0,0,0,0,0 +11.834,0,0,0,0,0,0,0 +11.836,0,0,0,0,0,0,0 +11.838,0,0,0,0,0,0,0 +11.84,0,0,0,0,0,0,0 +11.842,0,0,0,0,0,0,0 +11.844,0,0,0,0,0,0,0 +11.846,0,0,0,0,0,0,0 +11.848,0,0,0,0,0,0,0 +11.85,0,0,0,0,0,0,0 +11.852,0,0,0,0,0,0,0 +11.854,0,0,0,0,0,0,0 +11.856,0,0,0,0,0,0,0 +11.858,0,0,0,0,0,0,0 +11.86,0,0,0,0,0,0,0 +11.862,0,0,0,0,0,0,0 +11.864,0,0,0,0,0,0,0 +11.866,0,0,0,0,0,0,0 +11.868,0,0,0,0,0,0,0 +11.87,0,0,0,0,0,0,0 +11.872,0,0,0,0,0,0,0 +11.874,0,0,0,0,0,0,0 +11.876,0,0,0,0,0,0,0 +11.878,0,0,0,0,0,0,0 +11.88,0,0,0,0,0,0,0 +11.882,0,0,0,0,0,0,0 +11.884,0,0,0,0,0,0,0 +11.886,0,0,0,0,0,0,0 +11.888,0,0,0,0,0,0,0 +11.89,0,0,0,0,0,0,0 +11.892,0,0,0,0,0,0,0 +11.894,0,0,0,0,0,0,0 +11.896,0,0,0,0,0,0,0 +11.898,0,0,0,0,0,0,0 +11.9,0,0,0,0,0,0,0 +11.902,0,0,0,0,0,0,0 +11.904,0,0,0,0,0,0,0 +11.906,0,0,0,0,0,0,0 +11.908,0,0,0,0,0,0,0 +11.91,0,0,0,0,0,0,0 +11.912,0,0,0,0,0,0,0 +11.914,0,0,0,0,0,0,0 +11.916,0,0,0,0,0,0,0 +11.918,0,0,0,0,0,0,0 +11.92,0,0,0,0,0,0,0 +11.922,0,0,0,0,0,0,0 +11.924,0,0,0,0,0,0,0 +11.926,0,0,0,0,0,0,0 +11.928,0,0,0,0,0,0,0 +11.93,0,0,0,0,0,0,0 +11.932,0,0,0,0,0,0,0 +11.934,0,0,0,0,0,0,0 +11.936,0,0,0,0,0,0,0 +11.938,0,0,0,0,0,0,0 +11.94,0,0,0,0,0,0,0 +11.942,0,0,0,0,0,0,0 +11.944,0,0,0,0,0,0,0 +11.946,0,0,0,0,0,0,0 +11.948,0,0,0,0,0,0,0 +11.95,0,0,0,0,0,0,0 +11.952,0,0,0,0,0,0,0 +11.954,0,0,0,0,0,0,0 +11.956,0,0,0,0,0,0,0 +11.958,0,0,0,0,0,0,0 +11.96,0,0,0,0,0,0,0 +11.962,0,0,0,0,0,0,0 +11.964,0,0,0,0,0,0,0 +11.966,0,0,0,0,0,0,0 +11.968,0,0,0,0,0,0,0 +11.97,0,0,0,0,0,0,0 +11.972,0,0,0,0,0,0,0 +11.974,0,0,0,0,0,0,0 +11.976,0,0,0,0,0,0,0 +11.978,0,0,0,0,0,0,0 +11.98,0,0,0,0,0,0,0 +11.982,0,0,0,0,0,0,0 +11.984,0,0,0,0,0,0,0 +11.986,0,0,0,0,0,0,0 +11.988,0,0,0,0,0,0,0 +11.99,0,0,0,0,0,0,0 +11.992,0,0,0,0,0,0,0 +11.994,0,0,0,0,0,0,0 +11.996,0,0,0,0,0,0,0 +11.998,0,0,0,0,0,0,0 +12,0,0,0,0,0,0,0 +12.002,0,0,0,0,0,0,0 +12.004,0,0,0,0,0,0,0 +12.006,0,0,0,0,0,0,0 +12.008,0,0,0,0,0,0,0 +12.01,0,0,0,0,0,0,0 +12.012,0,0,0,0,0,0,0 +12.014,0,0,0,0,0,0,0 +12.016,0,0,0,0,0,0,0 +12.018,0,0,0,0,0,0,0 +12.02,0,0,0,0,0,0,0 +12.022,0,0,0,0,0,0,0 +12.024,0,0,0,0,0,0,0 +12.026,0,0,0,0,0,0,0 +12.028,0,0,0,0,0,0,0 +12.03,0,0,0,0,0,0,0 +12.032,0,0,0,0,0,0,0 +12.034,0,0,0,0,0,0,0 +12.036,0,0,0,0,0,0,0 +12.038,0,0,0,0,0,0,0 +12.04,0,0,0,0,0,0,0 +12.042,0,0,0,0,0,0,0 +12.044,0,0,0,0,0,0,0 +12.046,0,0,0,0,0,0,0 +12.048,0,0,0,0,0,0,0 +12.05,0,0,0,0,0,0,0 +12.052,0,0,0,0,0,0,0 +12.054,0,0,0,0,0,0,0 +12.056,0,0,0,0,0,0,0 +12.058,0,0,0,0,0,0,0 +12.06,0,0,0,0,0,0,0 +12.062,0,0,0,0,0,0,0 +12.064,0,0,0,0,0,0,0 +12.066,0,0,0,0,0,0,0 +12.068,0,0,0,0,0,0,0 +12.07,0,0,0,0,0,0,0 +12.072,0,0,0,0,0,0,0 +12.074,0,0,0,0,0,0,0 +12.076,0,0,0,0,0,0,0 +12.078,0,0,0,0,0,0,0 +12.08,0,0,0,0,0,0,0 +12.082,0,0,0,0,0,0,0 +12.084,0,0,0,0,0,0,0 +12.086,0,0,0,0,0,0,0 +12.088,0,0,0,0,0,0,0 +12.09,0,0,0,0,0,0,0 +12.092,0,0,0,0,0,0,0 +12.094,0,0,0,0,0,0,0 +12.096,0,0,0,0,0,0,0 +12.098,0,0,0,0,0,0,0 +12.1,0,0,0,0,0,0,0 +12.102,0,0,0,0,0,0,0 +12.104,0,0,0,0,0,0,0 +12.106,0,0,0,0,0,0,0 +12.108,0,0,0,0,0,0,0 +12.11,0,0,0,0,0,0,0 +12.112,0,0,0,0,0,0,0 +12.114,0,0,0,0,0,0,0 +12.116,0,0,0,0,0,0,0 +12.118,0,0,0,0,0,0,0 +12.12,0,0,0,0,0,0,0 +12.122,0,0,0,0,0,0,0 +12.124,0,0,0,0,0,0,0 +12.126,0,0,0,0,0,0,0 +12.128,0,0,0,0,0,0,0 +12.13,0,0,0,0,0,0,0 +12.132,0,0,0,0,0,0,0 +12.134,0,0,0,0,0,0,0 +12.136,0,0,0,0,0,0,0 +12.138,0,0,0,0,0,0,0 +12.14,0,0,0,0,0,0,0 +12.142,0,0,0,0,0,0,0 +12.144,0,0,0,0,0,0,0 +12.146,0,0,0,0,0,0,0 +12.148,0,0,0,0,0,0,0 +12.15,0,0,0,0,0,0,0 +12.152,0,0,0,0,0,0,0 +12.154,0,0,0,0,0,0,0 +12.156,0,0,0,0,0,0,0 +12.158,0,0,0,0,0,0,0 +12.16,0,0,0,0,0,0,0 +12.162,0,0,0,0,0,0,0 +12.164,0,0,0,0,0,0,0 +12.166,0,0,0,0,0,0,0 +12.168,0,0,0,0,0,0,0 +12.17,0,0,0,0,0,0,0 +12.172,0,0,0,0,0,0,0 +12.174,0,0,0,0,0,0,0 +12.176,0,0,0,0,0,0,0 +12.178,0,0,0,0,0,0,0 +12.18,0,0,0,0,0,0,0 +12.182,0,0,0,0,0,0,0 +12.184,0,0,0,0,0,0,0 +12.186,0,0,0,0,0,0,0 +12.188,0,0,0,0,0,0,0 +12.19,0,0,0,0,0,0,0 +12.192,0,0,0,0,0,0,0 +12.194,0,0,0,0,0,0,0 +12.196,0,0,0,0,0,0,0 +12.198,0,0,0,0,0,0,0 +12.2,0,0,0,0,0,0,0 +12.202,0,0,0,0,0,0,0 +12.204,0,0,0,0,0,0,0 +12.206,0,0,0,0,0,0,0 +12.208,0,0,0,0,0,0,0 +12.21,0,0,0,0,0,0,0 +12.212,0,0,0,0,0,0,0 +12.214,0,0,0,0,0,0,0 +12.216,0,0,0,0,0,0,0 +12.218,0,0,0,0,0,0,0 +12.22,0,0,0,0,0,0,0 +12.222,0,0,0,0,0,0,0 +12.224,0,0,0,0,0,0,0 +12.226,0,0,0,0,0,0,0 +12.228,0,0,0,0,0,0,0 +12.23,0,0,0,0,0,0,0 +12.232,0,0,0,0,0,0,0 +12.234,0,0,0,0,0,0,0 +12.236,0,0,0,0,0,0,0 +12.238,0,0,0,0,0,0,0 +12.24,0,0,0,0,0,0,0 +12.242,0,0,0,0,0,0,0 +12.244,0,0,0,0,0,0,0 +12.246,0,0,0,0,0,0,0 +12.248,0,0,0,0,0,0,0 +12.25,0,0,0,0,0,0,0 +12.252,0,0,0,0,0,0,0 +12.254,0,0,0,0,0,0,0 +12.256,0,0,0,0,0,0,0 +12.258,0,0,0,0,0,0,0 +12.26,0,0,0,0,0,0,0 +12.262,0,0,0,0,0,0,0 +12.264,0,0,0,0,0,0,0 +12.266,0,0,0,0,0,0,0 +12.268,0,0,0,0,0,0,0 +12.27,0,0,0,0,0,0,0 +12.272,0,0,0,0,0,0,0 +12.274,0,0,0,0,0,0,0 +12.276,0,0,0,0,0,0,0 +12.278,0,0,0,0,0,0,0 +12.28,0,0,0,0,0,0,0 +12.282,0,0,0,0,0,0,0 +12.284,0,0,0,0,0,0,0 +12.286,0,0,0,0,0,0,0 +12.288,0,0,0,0,0,0,0 +12.29,0,0,0,0,0,0,0 +12.292,0,0,0,0,0,0,0 +12.294,0,0,0,0,0,0,0 +12.296,0,0,0,0,0,0,0 +12.298,0,0,0,0,0,0,0 +12.3,0,0,0,0,0,0,0 +12.302,0,0,0,0,0,0,0 +12.304,0,0,0,0,0,0,0 +12.306,0,0,0,0,0,0,0 +12.308,0,0,0,0,0,0,0 +12.31,0,0,0,0,0,0,0 +12.312,0,0,0,0,0,0,0 +12.314,0,0,0,0,0,0,0 +12.316,0,0,0,0,0,0,0 +12.318,0,0,0,0,0,0,0 +12.32,0,0,0,0,0,0,0 +12.322,0,0,0,0,0,0,0 +12.324,0,0,0,0,0,0,0 +12.326,0,0,0,0,0,0,0 +12.328,0,0,0,0,0,0,0 +12.33,0,0,0,0,0,0,0 +12.332,0,0,0,0,0,0,0 +12.334,0,0,0,0,0,0,0 +12.336,0,0,0,0,0,0,0 +12.338,0,0,0,0,0,0,0 +12.34,0,0,0,0,0,0,0 +12.342,0,0,0,0,0,0,0 +12.344,0,0,0,0,0,0,0 +12.346,0,0,0,0,0,0,0 +12.348,0,0,0,0,0,0,0 +12.35,0,0,0,0,0,0,0 +12.352,0,0,0,0,0,0,0 +12.354,0,0,0,0,0,0,0 +12.356,0,0,0,0,0,0,0 +12.358,0,0,0,0,0,0,0 +12.36,0,0,0,0,0,0,0 +12.362,0,0,0,0,0,0,0 +12.364,0,0,0,0,0,0,0 +12.366,0,0,0,0,0,0,0 +12.368,0,0,0,0,0,0,0 +12.37,0,0,0,0,0,0,0 +12.372,0,0,0,0,0,0,0 +12.374,0,0,0,0,0,0,0 +12.376,0,0,0,0,0,0,0 +12.378,0,0,0,0,0,0,0 +12.38,0,0,0,0,0,0,0 +12.382,0,0,0,0,0,0,0 +12.384,0,0,0,0,0,0,0 +12.386,0,0,0,0,0,0,0 +12.388,0,0,0,0,0,0,0 +12.39,0,0,0,0,0,0,0 +12.392,0,0,0,0,0,0,0 +12.394,0,0,0,0,0,0,0 +12.396,0,0,0,0,0,0,0 +12.398,0,0,0,0,0,0,0 +12.4,0,0,0,0,0,0,0 +12.402,0,0,0,0,0,0,0 +12.404,0,0,0,0,0,0,0 +12.406,0,0,0,0,0,0,0 +12.408,0,0,0,0,0,0,0 +12.41,0,0,0,0,0,0,0 +12.412,0,0,0,0,0,0,0 +12.414,0,0,0,0,0,0,0 +12.416,0,0,0,0,0,0,0 +12.418,0,0,0,0,0,0,0 +12.42,0,0,0,0,0,0,0 +12.422,0,0,0,0,0,0,0 +12.424,0,0,0,0,0,0,0 +12.426,0,0,0,0,0,0,0 +12.428,0,0,0,0,0,0,0 +12.43,0,0,0,0,0,0,0 +12.432,0,0,0,0,0,0,0 +12.434,0,0,0,0,0,0,0 +12.436,0,0,0,0,0,0,0 +12.438,0,0,0,0,0,0,0 +12.44,0,0,0,0,0,0,0 +12.442,0,0,0,0,0,0,0 +12.444,0,0,0,0,0,0,0 +12.446,0,0,0,0,0,0,0 +12.448,0,0,0,0,0,0,0 +12.45,0,0,0,0,0,0,0 +12.452,0,0,0,0,0,0,0 +12.454,0,0,0,0,0,0,0 +12.456,0,0,0,0,0,0,0 +12.458,0,0,0,0,0,0,0 +12.46,0,0,0,0,0,0,0 +12.462,0,0,0,0,0,0,0 +12.464,0,0,0,0,0,0,0 +12.466,0,0,0,0,0,0,0 +12.468,0,0,0,0,0,0,0 +12.47,0,0,0,0,0,0,0 +12.472,0,0,0,0,0,0,0 +12.474,0,0,0,0,0,0,0 +12.476,0,0,0,0,0,0,0 +12.478,0,0,0,0,0,0,0 +12.48,0,0,0,0,0,0,0 +12.482,0,0,0,0,0,0,0 +12.484,0,0,0,0,0,0,0 +12.486,0,0,0,0,0,0,0 +12.488,0,0,0,0,0,0,0 +12.49,0,0,0,0,0,0,0 +12.492,0,0,0,0,0,0,0 +12.494,0,0,0,0,0,0,0 +12.496,0,0,0,0,0,0,0 +12.498,0,0,0,0,0,0,0 +12.5,0,0,0,0,0,0,0 +12.502,0,0,0,0,0,0,0 +12.504,0,0,0,0,0,0,0 +12.506,0,0,0,0,0,0,0 +12.508,0,0,0,0,0,0,0 +12.51,0,0,0,0,0,0,0 +12.512,0,0,0,0,0,0,0 +12.514,0,0,0,0,0,0,0 +12.516,0,0,0,0,0,0,0 +12.518,0,0,0,0,0,0,0 +12.52,0,0,0,0,0,0,0 +12.522,0,0,0,0,0,0,0 +12.524,0,0,0,0,0,0,0 +12.526,0,0,0,0,0,0,0 +12.528,0,0,0,0,0,0,0 +12.53,0,0,0,0,0,0,0 +12.532,0,0,0,0,0,0,0 +12.534,0,0,0,0,0,0,0 +12.536,0,0,0,0,0,0,0 +12.538,0,0,0,0,0,0,0 +12.54,0,0,0,0,0,0,0 +12.542,0,0,0,0,0,0,0 +12.544,0,0,0,0,0,0,0 +12.546,0,0,0,0,0,0,0 +12.548,0,0,0,0,0,0,0 +12.55,0,0,0,0,0,0,0 +12.552,0,0,0,0,0,0,0 +12.554,0,0,0,0,0,0,0 +12.556,0,0,0,0,0,0,0 +12.558,0,0,0,0,0,0,0 +12.56,0,0,0,0,0,0,0 +12.562,0,0,0,0,0,0,0 +12.564,0,0,0,0,0,0,0 +12.566,0,0,0,0,0,0,0 +12.568,0,0,0,0,0,0,0 +12.57,0,0,0,0,0,0,0 +12.572,0,0,0,0,0,0,0 +12.574,0,0,0,0,0,0,0 +12.576,0,0,0,0,0,0,0 +12.578,0,0,0,0,0,0,0 +12.58,0,0,0,0,0,0,0 +12.582,0,0,0,0,0,0,0 +12.584,0,0,0,0,0,0,0 +12.586,0,0,0,0,0,0,0 +12.588,0,0,0,0,0,0,0 +12.59,0,0,0,0,0,0,0 +12.592,0,0,0,0,0,0,0 +12.594,0,0,0,0,0,0,0 +12.596,0,0,0,0,0,0,0 +12.598,0,0,0,0,0,0,0 +12.6,0,0,0,0,0,0,0 +12.602,0,0,0,0,0,0,0 +12.604,0,0,0,0,0,0,0 +12.606,0,0,0,0,0,0,0 +12.608,0,0,0,0,0,0,0 +12.61,0,0,0,0,0,0,0 +12.612,0,0,0,0,0,0,0 +12.614,0,0,0,0,0,0,0 +12.616,0,0,0,0,0,0,0 +12.618,0,0,0,0,0,0,0 +12.62,0,0,0,0,0,0,0 +12.622,0,0,0,0,0,0,0 +12.624,0,0,0,0,0,0,0 +12.626,0,0,0,0,0,0,0 +12.628,0,0,0,0,0,0,0 +12.63,0,0,0,0,0,0,0 +12.632,0,0,0,0,0,0,0 +12.634,0,0,0,0,0,0,0 +12.636,0,0,0,0,0,0,0 +12.638,0,0,0,0,0,0,0 +12.64,0,0,0,0,0,0,0 +12.642,0,0,0,0,0,0,0 +12.644,0,0,0,0,0,0,0 +12.646,0,0,0,0,0,0,0 +12.648,0,0,0,0,0,0,0 +12.65,0,0,0,0,0,0,0 +12.652,0,0,0,0,0,0,0 +12.654,0,0,0,0,0,0,0 +12.656,0,0,0,0,0,0,0 +12.658,0,0,0,0,0,0,0 +12.66,0,0,0,0,0,0,0 +12.662,0,0,0,0,0,0,0 +12.664,0,0,0,0,0,0,0 +12.666,0,0,0,0,0,0,0 +12.668,0,0,0,0,0,0,0 +12.67,0,0,0,0,0,0,0 +12.672,0,0,0,0,0,0,0 +12.674,0,0,0,0,0,0,0 +12.676,0,0,0,0,0,0,0 +12.678,0,0,0,0,0,0,0 +12.68,0,0,0,0,0,0,0 +12.682,0,0,0,0,0,0,0 +12.684,0,0,0,0,0,0,0 +12.686,0,0,0,0,0,0,0 +12.688,0,0,0,0,0,0,0 +12.69,0,0,0,0,0,0,0 +12.692,0,0,0,0,0,0,0 +12.694,0,0,0,0,0,0,0 +12.696,0,0,0,0,0,0,0 +12.698,0,0,0,0,0,0,0 +12.7,0,0,0,0,0,0,0 +12.702,0,0,0,0,0,0,0 +12.704,0,0,0,0,0,0,0 +12.706,0,0,0,0,0,0,0 +12.708,0,0,0,0,0,0,0 +12.71,0,0,0,0,0,0,0 +12.712,0,0,0,0,0,0,0 +12.714,0,0,0,0,0,0,0 +12.716,0,0,0,0,0,0,0 +12.718,0,0,0,0,0,0,0 +12.72,0,0,0,0,0,0,0 +12.722,0,0,0,0,0,0,0 +12.724,0,0,0,0,0,0,0 +12.726,0,0,0,0,0,0,0 +12.728,0,0,0,0,0,0,0 +12.73,0,0,0,0,0,0,0 +12.732,0,0,0,0,0,0,0 +12.734,0,0,0,0,0,0,0 +12.736,0,0,0,0,0,0,0 +12.738,0,0,0,0,0,0,0 +12.74,0,0,0,0,0,0,0 +12.742,0,0,0,0,0,0,0 +12.744,0,0,0,0,0,0,0 +12.746,0,0,0,0,0,0,0 +12.748,0,0,0,0,0,0,0 +12.75,0,0,0,0,0,0,0 +12.752,0,0,0,0,0,0,0 +12.754,0,0,0,0,0,0,0 +12.756,0,0,0,0,0,0,0 +12.758,0,0,0,0,0,0,0 +12.76,0,0,0,0,0,0,0 +12.762,0,0,0,0,0,0,0 +12.764,0,0,0,0,0,0,0 +12.766,0,0,0,0,0,0,0 +12.768,0,0,0,0,0,0,0 +12.77,0,0,0,0,0,0,0 +12.772,0,0,0,0,0,0,0 +12.774,0,0,0,0,0,0,0 +12.776,0,0,0,0,0,0,0 +12.778,0,0,0,0,0,0,0 +12.78,0,0,0,0,0,0,0 +12.782,0,0,0,0,0,0,0 +12.784,0,0,0,0,0,0,0 +12.786,0,0,0,0,0,0,0 +12.788,0,0,0,0,0,0,0 +12.79,0,0,0,0,0,0,0 +12.792,0,0,0,0,0,0,0 +12.794,0,0,0,0,0,0,0 +12.796,0,0,0,0,0,0,0 +12.798,0,0,0,0,0,0,0 +12.8,0,0,0,0,0,0,0 +12.802,0,0,0,0,0,0,0 +12.804,0,0,0,0,0,0,0 +12.806,0,0,0,0,0,0,0 +12.808,0,0,0,0,0,0,0 +12.81,0,0,0,0,0,0,0 +12.812,0,0,0,0,0,0,0 +12.814,0,0,0,0,0,0,0 +12.816,0,0,0,0,0,0,0 +12.818,0,0,0,0,0,0,0 +12.82,0,0,0,0,0,0,0 +12.822,0,0,0,0,0,0,0 +12.824,0,0,0,0,0,0,0 +12.826,0,0,0,0,0,0,0 +12.828,0,0,0,0,0,0,0 +12.83,0,0,0,0,0,0,0 +12.832,0,0,0,0,0,0,0 +12.834,0,0,0,0,0,0,0 +12.836,0,0,0,0,0,0,0 +12.838,0,0,0,0,0,0,0 +12.84,0,0,0,0,0,0,0 +12.842,0,0,0,0,0,0,0 +12.844,0,0,0,0,0,0,0 +12.846,0,0,0,0,0,0,0 +12.848,0,0,0,0,0,0,0 +12.85,0,0,0,0,0,0,0 +12.852,0,0,0,0,0,0,0 +12.854,0,0,0,0,0,0,0 +12.856,0,0,0,0,0,0,0 +12.858,0,0,0,0,0,0,0 +12.86,0,0,0,0,0,0,0 +12.862,0,0,0,0,0,0,0 +12.864,0,0,0,0,0,0,0 +12.866,0,0,0,0,0,0,0 +12.868,0,0,0,0,0,0,0 +12.87,0,0,0,0,0,0,0 +12.872,0,0,0,0,0,0,0 +12.874,0,0,0,0,0,0,0 +12.876,0,0,0,0,0,0,0 +12.878,0,0,0,0,0,0,0 +12.88,0,0,0,0,0,0,0 +12.882,0,0,0,0,0,0,0 +12.884,0,0,0,0,0,0,0 +12.886,0,0,0,0,0,0,0 +12.888,0,0,0,0,0,0,0 +12.89,0,0,0,0,0,0,0 +12.892,0,0,0,0,0,0,0 +12.894,0,0,0,0,0,0,0 +12.896,0,0,0,0,0,0,0 +12.898,0,0,0,0,0,0,0 +12.9,0,0,0,0,0,0,0 +12.902,0,0,0,0,0,0,0 +12.904,0,0,0,0,0,0,0 +12.906,0,0,0,0,0,0,0 +12.908,0,0,0,0,0,0,0 +12.91,0,0,0,0,0,0,0 +12.912,0,0,0,0,0,0,0 +12.914,0,0,0,0,0,0,0 +12.916,0,0,0,0,0,0,0 +12.918,0,0,0,0,0,0,0 +12.92,0,0,0,0,0,0,0 +12.922,0,0,0,0,0,0,0 +12.924,0,0,0,0,0,0,0 +12.926,0,0,0,0,0,0,0 +12.928,0,0,0,0,0,0,0 +12.93,0,0,0,0,0,0,0 +12.932,0,0,0,0,0,0,0 +12.934,0,0,0,0,0,0,0 +12.936,0,0,0,0,0,0,0 +12.938,0,0,0,0,0,0,0 +12.94,0,0,0,0,0,0,0 +12.942,0,0,0,0,0,0,0 +12.944,0,0,0,0,0,0,0 +12.946,0,0,0,0,0,0,0 +12.948,0,0,0,0,0,0,0 +12.95,0,0,0,0,0,0,0 +12.952,0,0,0,0,0,0,0 +12.954,0,0,0,0,0,0,0 +12.956,0,0,0,0,0,0,0 +12.958,0,0,0,0,0,0,0 +12.96,0,0,0,0,0,0,0 +12.962,0,0,0,0,0,0,0 +12.964,0,0,0,0,0,0,0 +12.966,0,0,0,0,0,0,0 +12.968,0,0,0,0,0,0,0 +12.97,0,0,0,0,0,0,0 +12.972,0,0,0,0,0,0,0 +12.974,0,0,0,0,0,0,0 +12.976,0,0,0,0,0,0,0 +12.978,0,0,0,0,0,0,0 +12.98,0,0,0,0,0,0,0 +12.982,0,0,0,0,0,0,0 +12.984,0,0,0,0,0,0,0 +12.986,0,0,0,0,0,0,0 +12.988,0,0,0,0,0,0,0 +12.99,0,0,0,0,0,0,0 +12.992,0,0,0,0,0,0,0 +12.994,0,0,0,0,0,0,0 +12.996,0,0,0,0,0,0,0 +12.998,0,0,0,0,0,0,0 diff --git a/data/ik_speedl_tcp.csv b/data/ik_speedl_tcp.csv new file mode 100644 index 00000000..e454bad2 --- /dev/null +++ b/data/ik_speedl_tcp.csv @@ -0,0 +1,6501 @@ +t,px,py,pz,vx,vy,vz,ax,ay,az,speed,acc +0,0.560167256288653,-0.292779506000391,0.00173906275886357,0,0,6.93889390390723e-15,0,0,-3.46944695195361e-12,6.93889390390723e-15,3.46944695195361e-12 +0.002,0.560167256288653,-0.292779506000391,0.00173906275886358,0,0,0,0,0,-2.60208521396521e-12,0,2.60208521396521e-12 +0.004,0.560167256288653,-0.292779506000391,0.00173906275886357,0,0,-3.46944695195361e-15,0.474889989429683,-0.60044356643349,-3.47293934577306,3.46944695195361e-15,3.55631279247911 +0.006,0.560167256288653,-0.292779506000391,0.00173906275886357,0.00189955995771873,-0.00240177426573396,-0.0138917573830923,1.44624781088509,-1.41118609275903,-10.3795313259455,0.0142252511699164,10.574391210144 +0.008,0.560174854528484,-0.292789113097454,0.0016834957293312,0.00578499124354037,-0.00564474437103613,-0.0415181253037855,1.90314792253982,-0.839562020561041,-13.4912455395531,0.0422975648405794,13.6506608854644 +0.01,0.560190396253627,-0.292802084977875,0.00157299025764843,0.009512151647878,-0.00576002234797812,-0.0678567395413048,1.71895000348338,0.603137952255584,-12.4874307183475,0.0687618788835639,12.6196073809551 +0.012,0.560212903135075,-0.292812153186846,0.00141206877116598,0.0126607912574739,-0.00323219256201379,-0.0914678481771757,1.40115062934737,1.66529079525732,-10.9306969850896,0.0923964823691147,11.1452480052593 +0.014,0.560241039418657,-0.292815013748123,0.00120711886493972,0.0151167541652675,0.000901140833051151,-0.111579527481663,1.04994120535967,2.23275632807787,-9.05510353500955,0.112602483384361,9.38522654947798 +0.016,0.560273370151736,-0.292808548623513,0.000965750661239329,0.0168605560789126,0.0056988327502977,-0.127688262317214,0.703810399231563,2.36929754724932,-6.9843121675529,0.128922641066632,7.40874728947449 +0.018,0.560308481642973,-0.292792218417122,0.000696365815670869,0.0179319957621937,0.0103783310220484,-0.139516776151875,0.386185869179217,2.16352179235186,-4.8242616025622,0.141046790302477,5.30127023283015 +0.02,0.560345098134785,-0.292767035299425,0.00040768355663183,0.0184052995556294,0.0143529199197051,-0.146985308727463,0.108705708337653,1.73451500572533,-2.66437775186049,0.148826887166471,3.18107969732301 +0.022,0.560382102841195,-0.292734806737443,0.000108424580761018,0.0183668185955443,0.0173163910449498,-0.150174287159317,-0.124005630645915,1.18330832467316,-0.580891927347914,0.152281036074595,1.32402092843379 +0.024,0.560418565409167,-0.292697769735245,-0.000193013592005437,0.0179092770330458,0.0190861532183978,-0.149308876436854,-0.313811429418498,0.615040483271933,1.36691448324438,0.151585500729319,1.53140706991978 +0.026,0.560453739949327,-0.292658462124569,-0.000488810924986399,0.0171115728778704,0.0197765529780375,-0.144706629226339,-0.464006016727406,0.0988522945270884,3.13026253576786,0.147050761698459,3.16600961819833 +0.028,0.560487011700679,-0.292618663523333,-0.000771840108910793,0.0160532529661361,0.0194815623965061,-0.136787826293783,-0.578302769796424,-0.384814622871738,4.67014604862721,0.139097619053605,4.72152311262356 +0.03,0.560517952961192,-0.292580535874983,-0.00103596223016153,0.0147983617986847,0.0182372944865505,-0.12602604503183,-0.667906178856987,-0.801367067565514,5.97303227741023,0.128195766109801,6.06344806423856 +0.032,0.560546205147874,-0.292545714345387,-0.00127594428903811,0.0133816282507082,0.0162760941262441,-0.112895697184142,-0.740471836430114,-1.1358268824889,7.0308666847846,0.114845189961704,7.16041113252198 +0.034,0.560571479474195,-0.292515431498478,-0.0014875450188981,0.0118364744529642,0.0136939869565949,-0.0979025782926918,-0.801008920581208,-1.34710509810953,7.84190154147659,0.0995617509016375,7.99698238227497 +0.036,0.560593551045685,-0.292490938397561,-0.00166755460220888,0.0101775925683834,0.010887673733806,-0.0815280910182355,-0.847925920019473,-1.42306534822028,8.40117553106524,0.0828791557323041,8.56293429000337 +0.038,0.560612189844468,-0.292471880803543,-0.00181365738297104,0.00844477077288631,0.00800172556371382,-0.0642978761684309,-0.875212580006561,-1.48963286310603,8.70122269374701,0.065341859823351,8.8710923506198 +0.04,0.560627330128777,-0.292458931495306,-0.0019247461068826,0.00667674224835712,0.00492914228138186,-0.0467232002432475,-0.890027766313472,-1.56634342313861,8.7661489336496,0.0474545337312644,8.94935462873969 +0.042,0.560638896813462,-0.292452164234418,-0.00200055018394403,0.00488465970763241,0.00173635187115939,-0.0292332804338325,-0.900093997696637,-1.51503003505832,8.62971714969944,0.0296893836783948,8.8078092222547 +0.044,0.560646868767607,-0.292451986087821,-0.00204167922861793,0.00307636625757058,-0.00113097785885141,-0.0122043316444498,-0.894345646804131,-1.33747590639818,8.29388684214437,0.0126368054173375,8.44850607423872 +0.046,0.560651202278492,-0.292456688145853,-0.00204936751052183,0.00130727712041589,-0.00361355175443334,0.00394226693474497,-0.860905454425076,-1.22239881217983,7.75746701443639,0.00550528821555372,7.90023490394723 +0.048,0.560652097876089,-0.292466440294839,-0.00202591016087895,-0.000367255560129731,-0.00602057310757075,0.0188255364132958,-0.811820401590278,-1.13445736560011,7.06670210061463,0.0197682320514096,7.20307742965698 +0.05,0.560649733256251,-0.292480770438283,-0.00197406536486865,-0.00194000448594522,-0.00815138121683378,0.0322090753372035,-0.753736976631669,-0.982123221422717,6.26169067610011,0.0332811232867115,6.38290338131157 +0.052,0.560644337858145,-0.292499045819706,-0.00189707385953014,-0.00338220346665641,-0.00994906599326163,0.0438722991176963,-0.680871990316192,-0.809169784524171,5.35846332355534,0.0451132114163994,5.46181944019314 +0.054,0.560636204442385,-0.292520566702256,-0.00179857616839786,-0.00466349244720999,-0.0113880603549305,0.0536429286314249,-0.59381838203587,-0.62677047485762,4.38324827946831,0.0550363504659317,4.46747433998886 +0.056,0.560625683888357,-0.292544598061126,-0.00168250214500444,-0.00575747699479989,-0.0124561478926921,0.0614052922355695,-0.495052981608346,-0.440841303250144,3.36458641169227,0.0629199020676762,3.42926526110111 +0.058,0.560613174534406,-0.292570391293827,-0.00155295499945558,-0.00664370437364337,-0.013151425567931,0.0671012742781939,-0.387768758873533,-0.256322421600403,2.3307993881174,0.0686999258517111,2.37669762103257 +0.06,0.560599109070862,-0.292597203763398,-0.00141409704789167,-0.00730855203029402,-0.0134814375790937,0.0707284897880391,-0.275460941730196,-0.0777628672253505,1.30887828907533,0.0723718409305392,1.33980900487747 +0.062,0.560583940326284,-0.292624317044144,-0.00127004104030343,-0.00774554814056416,-0.0134624770368324,0.0723367874344952,-0.161681191476745,0.0906706315827237,0.323750124930012,0.0739854216741946,0.373063150821879 +0.064,0.5605681268783,-0.292651053671545,-0.00112474989815368,-0.007955276796201,-0.0131187550527628,0.0720234902877592,-0.049852948158513,0.245266743578026,-0.60228084227103,0.0736394684681354,0.652214155712804 +0.066,0.5605521192191,-0.292676792064355,-0.00098194707915239,-0.00794495993319821,-0.0124814100625203,0.0699276640654111,0.056870264539266,0.382844257951902,-1.44995306982764,0.0714757734280217,1.50072244520367 +0.068,0.560536347038567,-0.292700979311795,-0.00084503924189204,-0.00772779573804393,-0.0115873780209552,0.0662236780084486,0.155708718647951,0.500813807251254,-2.20333905491011,0.0676724588391476,2.26489793710195 +0.07,0.560521208036147,-0.292723141576438,-0.000717052367118595,-0.0073221250586064,-0.0104781548335153,0.0611143078457707,0.244326920556531,0.597222963302076,-2.85001665155204,0.0624368790664349,2.92215089037644 +0.072,0.560507058538332,-0.292742891931129,-0.000600582010508957,-0.00675048805581781,-0.0091984861677469,0.0548236114022405,0.320875346085376,0.670783268427033,-3.38113056578493,0.0559983000094989,3.46192938746765 +0.074,0.560494206083924,-0.292759935521109,-0.000497757921509634,-0.0060386236742649,-0.00779502175980719,0.047589785582631,0.38400813877349,0.720878461500661,-3.79135528444727,0.048600566168678,3.87833764644158 +0.076,0.560482904043635,-0.292774072018168,-0.000410222868178434,-0.00521445550072385,-0.00631497232174427,0.0396581902644514,0.432880985085098,0.747553660439276,-4.07877112192787,0.0404949561877138,4.16924409066645 +0.078,0.560473348261921,-0.292785195410396,-0.000339125160451828,-0.00430709973392451,-0.00480480711805009,0.0312747010949195,0.467132783399381,0.751485835771142,-4.24466511515959,0.0319334340172834,4.33591120049107 +0.08,0.5604656756447,-0.292793291246641,-0.000285124063798756,-0.00334592436712633,-0.0033090289786597,0.0226795298038131,0.486854234330036,0.733931456008834,-4.29326856382205,0.0231625981870382,4.38267468433455 +0.082,0.560459964564453,-0.292798431526311,-0.000248407041236576,-0.00235968279660437,-0.00186908129401475,0.0141016268396313,0.492548354241728,0.696449290456951,-4.23144886365061,0.0144193428181882,4.31657329152816 +0.084,0.560456236913513,-0.292800767571817,-0.000228717556440231,-0.00137573095015941,-0.000523231816831892,0.00575373434921061,0.485058806815041,0.640785158378953,-4.06831365814749,0.00593901221944001,4.14693425150882 +0.086,0.560454461640652,-0.292800524453578,-0.000225392103839733,-0.000419447569344201,0.000694059339501065,-0.00217162779295871,0.465484451081523,0.569348217425994,-3.81476070562046,0.00231810739641807,3.88500095341439 +0.088,0.560454559123236,-0.292797991334459,-0.000237404067612065,0.000486206854166672,0.00175416105287208,-0.00950530847327119,0.435155617622974,0.485359289002785,-3.48313146798611,0.00967803530043639,3.54360534967499 +0.09,0.560456406468069,-0.292793507809367,-0.000263413337732818,0.00132117490114769,0.0026354964955122,-0.0161041536649031,0.395630968326454,0.392399818398973,-3.08691379723081,0.0163717778558131,3.13680383067103 +0.092,0.560459843822841,-0.292787449348477,-0.000301820682271678,0.00206873072747249,0.00332376032646797,-0.0218529636621944,0.34864237270088,0.29406843423535,-2.6403593181342,0.0222008794950061,2.67946358006864 +0.094,0.560464681390979,-0.292780212768061,-0.000350825192381596,0.00271574439195121,0.0038117702324536,-0.02666559093744,0.296012499130526,0.193829901982967,-2.15805545775854,0.0270732081577029,2.1868691751693 +0.096,0.560470706800408,-0.292772202267547,-0.000408483046021438,0.00325278072399459,0.00409907993439984,-0.0304851854932286,0.239577151811554,0.0949090757096371,-1.65451481802352,0.0309310454608884,1.6744623696523 +0.098,0.560477692513875,-0.292763816448323,-0.00047276593435451,0.00367405299919743,0.00419140653529215,-0.033283650209534,0.181121734561806,0.000209909162968147,-1.14380081701199,0.033747117291046,1.15805243222827 +0.1,0.560485403012405,-0.292755436641406,-0.000541617646859574,0.00397726766224182,0.00409991957105171,-0.0350603887612766,0.122328766512247,-0.0877449232612736,-0.639197987362808,0.0355226527533918,0.656686809463385 +0.102,0.560493601584524,-0.292747416770039,-0.000613007489399617,0.00416336806524642,0.00384042684224705,-0.0358404421589853,0.064740007528489,-0.166853437778138,-0.152928342577111,0.0362852560433151,0.235411164213922 +0.104,0.560502056484666,-0.292740074934037,-0.000684979415495515,0.00423622769235578,0.00343250581993916,-0.035672102131585,0.00972785312719864,-0.235456623417366,0.304081374827435,0.0360863768166275,0.384707596954511 +0.106,0.560510546495293,-0.292733686746759,-0.000755695897925956,0.00420227947775521,0.00289860034857759,-0.0346241166596755,-0.0415229353192863,-0.29234439746437,0.722383776738594,0.034998435554361,0.780402282019632 +0.108,0.560518865602577,-0.292728480532642,-0.000823475882134217,0.00407013595107863,0.00226312823008168,-0.0327825670246306,-0.0880257773200369,-0.336748479549261,1.0941437841878,0.0331116966761061,1.14817189324088 +0.11,0.560526827039097,-0.292724634233839,-0.000886826166024479,0.00385017636847506,0.00155160643038055,-0.0302475415229243,-0.128996204731835,-0.368323503321943,1.41322318205055,0.0305310515502528,1.46611799873668 +0.112,0.560534266308051,-0.292722274106921,-0.000944466048225914,0.00355415113215129,0.000789834216793905,-0.0271296742964284,-0.163850161889745,-0.387118947779707,1.67521704522687,0.0273728890654691,1.72715375803661 +0.114,0.560541043643626,-0.292721474896972,-0.000995344863210193,0.00319477572091608,3.13063926171697e-06,-0.0235466733420168,-0.188761072460186,-0.625773863352496,1.86945611975724,0.0237624162740977,1.98042668489122 +0.116,0.560547045410935,-0.292722261584364,-0.00103865274159398,0.00279910684231055,-0.00171326123661608,-0.0196518498173995,-0.235120054384306,-0.553191236887796,2.05788470323142,0.0199239921809156,2.14387299911562 +0.118,0.560552240070995,-0.292728327941918,-0.00107395226247979,0.00225429550337886,-0.00220963430828947,-0.0153151345290912,-0.270285367545696,0.035083805235979,2.18636073309307,0.0156370610293969,2.20328352885198 +0.12,0.560556062592948,-0.292731100121597,-0.00109991327971035,0.00171796537212777,-0.00157292601567216,-0.0109064068850272,-0.229342750880659,0.0284324257922316,2.12390211253804,0.0111523635348018,2.13643784928593 +0.122,0.560559111932484,-0.292734619645981,-0.0011175778900199,0.00133692449985623,-0.00209590460512054,-0.00681952607893901,-0.192985938285429,-0.300175565320913,2.01343077077185,0.00725852045346781,2.04481109422914 +0.124,0.560561410290948,-0.292739483740017,-0.0011271913840261,0.000946021618986047,-0.00277362827695582,-0.00285268380193978,-0.197954668310074,-0.583552338208336,1.93527803421262,0.00408971583318053,2.03101463604772 +0.126,0.56056289601896,-0.292745714159089,-0.00112898862522766,0.000545105826615932,-0.00443011395795389,0.000921586057911482,-0.233200259110166,-0.488527564720952,1.88522652434016,0.00455767165390459,1.96140780828896 +0.128,0.560563590714254,-0.292757204195849,-0.00112350503979446,1.32205825453813e-05,-0.00472773853583963,0.00468822229542087,-0.254666578915208,0.168341117798981,1.79269538147074,0.00665816151338695,1.81850227635401 +0.13,0.56056294890129,-0.292764625113232,-0.00111023573604598,-0.000473560489044899,-0.00375674948675797,0.00809236758379447,-0.191375512853531,0.185085853032784,1.51854293125968,0.00893441880338549,1.54170489847816 +0.132,0.560561696472298,-0.292772231193796,-0.00109113556945928,-0.000752281468868742,-0.00398739512370849,0.0107623940204596,-0.127903017101138,-0.407742748120831,1.21226481031473,0.0115019290700561,1.28537904944655 +0.134,0.560559939775414,-0.292780574693727,-0.00106718615996414,-0.000985172557449453,-0.00538772047924129,0.0129414268250534,-0.145813155903729,-0.348988852726106,1.0440405347565,0.0140527088206722,1.11043925271773 +0.136,0.560557755782068,-0.292793782075713,-0.00103936986215906,-0.00133553409248366,-0.00538335053461291,0.0149385561594856,-0.16059648224459,0.333000749610373,0.877110959830555,0.0159350109639375,0.951842615774942 +0.138,0.560554597639044,-0.292802108095866,-0.00100743193532619,-0.00162755848642781,-0.0040557174807998,0.0164498706643756,-0.0896009702544552,0.348353830226244,0.551349886165723,0.017020459329451,0.658304961153105 +0.14,0.560551245548122,-0.292810004945636,-0.000973570379501562,-0.00169393797350148,-0.00398993521370794,0.0171439557041485,-0.0244948516608945,-0.00269744138831074,0.228789231174024,0.0176834449713132,0.230112551263797 +0.142,0.56054782188715,-0.29281806783672,-0.000938856112509601,-0.00172553789307139,-0.00406650724635304,0.0173650275890717,-0.0131162725125508,-0.0279892235707862,0.011548876681396,0.0179180954728534,0.0329971179547705 +0.144,0.56054434339655,-0.292826270974622,-0.000904110269145275,-0.00174640306355168,-0.00410189210799108,0.017190151210874,-0.00564844301193275,0.00156643363210391,-0.180375126757553,0.0177588496580915,0.180470343756491 +0.146,0.560540836274896,-0.292834475405152,-0.000870095507666105,-0.00174813166511912,-0.00406024151182463,0.0166435270820415,0.00660740828717673,0.0425407442779321,-0.360445345541323,0.0172205841707994,0.363007189860473 +0.148,0.56053735086989,-0.292842511940669,-0.000837536160817109,-0.00171997343040298,-0.00393172913087935,0.0157483698287088,0.0232968616620285,0.0862275523309876,-0.526628175085586,0.0163226209544203,0.534149014169518 +0.15,0.560533956381175,-0.292850202321676,-0.00080710202835127,-0.00165494421847101,-0.00371533130250068,0.0145370143816992,0.0423330105900343,0.128831040595994,-0.674222427652671,0.0150952745648206,0.687724801615097 +0.152,0.560530731093016,-0.292857373265879,-0.000779388103290313,-0.00155064138804284,-0.00341640496849538,0.0130514801180981,0.0615540101528421,0.167431125346062,-0.798856466641301,0.0135800384718226,0.818531448507123 +0.154,0.560527753815622,-0.29286386794155,-0.000754896107878877,-0.00140872817785964,-0.00304560680111643,0.011341588515134,0.0791624640839038,0.199724219430291,-0.897267367813355,0.0118275891843064,0.922629497084057 +0.156,0.560525096180304,-0.292869555693084,-0.000734021749229777,-0.00123399153170722,-0.00261750809077421,0.00946241064684466,0.0938574676104252,0.224143903996415,-0.967496651554238,0.00989501384309859,0.997546733087557 +0.158,0.560522817849496,-0.292874337973913,-0.000717046465291499,-0.00103329830741794,-0.00214903118513077,0.00747160190891701,0.104843708818858,0.239885695994812,-1.00887365959545,0.00784288693735347,1.04228758576859 +0.16,0.560520962987075,-0.292878151817824,-0.000704135341594109,-0.000814616696431791,-0.00165796530679496,0.00542691600846287,0.111768211061291,0.246825152556279,-1.02188465551066,0.00573270151704689,1.05719583715904 +0.162,0.56051955938271,-0.29288096983514,-0.000695338801257647,-0.000586225463172773,-0.00116173057490565,0.00338406328687438,0.119177339392984,-0.0339167758565961,-1.01717738934265,0.00362562581520953,1.02469674894538 +0.164,0.560518618085222,-0.292882798740124,-0.000690599088446611,-0.000337907338859855,-0.00179363241022134,0.00135820645109225,0.087555140339257,0.0386045041315951,-0.921477207349237,0.00227508754918143,0.926432109764781 +0.166,0.560518207753354,-0.292888144364781,-0.000689905975453278,-0.000236004901815745,-0.00100731255837927,-0.000301845542522577,0.0573775234824491,0.712297230878732,-0.804862575681969,0.00107772335758783,1.07631932578204 +0.168,0.560517674065615,-0.292886827990357,-0.000691806470616702,-0.000108397244930058,0.00105555651329359,-0.00186124385163563,0.111023933269116,0.653264286647885,-0.830001388263042,0.00214247011431114,1.06206536827386 +0.17,0.560517774164375,-0.292883922138728,-0.000697350950859821,0.000208090831260721,0.00160574458821228,-0.00362185109557475,0.153918091647109,-0.0858746172852086,-0.839757041039105,0.00396730674830467,0.858054262156492 +0.172,0.56051850642894,-0.292880405012004,-0.000706293874999001,0.000507275121658379,0.000712058044152752,-0.00522027201579206,0.0962022622744149,-0.119215970619672,-0.661064600959899,0.0052929759706764,0.678582146508273 +0.174,0.560519803264861,-0.292881073906551,-0.000718232038922989,0.000592899880358381,0.00112888070573359,-0.00626610949941435,0.0355338684449049,0.514182481009547,-0.459011730285557,0.00639453127090307,0.690172477083471 +0.176,0.560520878028461,-0.292875889489182,-0.000731358312996658,0.000649410595437998,0.00276878796819093,-0.00705631893693427,0.0665202059685337,0.436036778409671,-0.417706418838299,0.00760786158352025,0.607479762845395 +0.178,0.560522400907243,-0.292869998754678,-0.000746457314670726,0.000858980704232514,0.00287302781937226,-0.00793693517476753,0.0905833562256362,-0.0287840476592741,-0.373646866709183,0.00848451982551711,0.38554616691953 +0.18,0.560524313951278,-0.292864397377904,-0.000763106053695728,0.00101174402034054,0.00265365177755383,-0.00855090640377101,0.0563837447009607,-0.137106906057671,-0.227895953393286,0.00901018834682502,0.27187128558979 +0.182,0.560526447883325,-0.292859384147568,-0.00078066094028581,0.00108451568303636,0.00232460019514158,-0.00884851898834068,0.0200022284568835,-0.17730948335265,-0.0755836563840618,0.00921282956648117,0.193782432491722 +0.184,0.56052865201401,-0.292855098977123,-0.000798500129649091,0.00109175293416808,0.00194441384414323,-0.00885324102930725,-0.00809127524703523,-0.194758694085223,0.0613424421692233,0.00912976157353355,0.204350955143814 +0.186,0.560530814895061,-0.292851606492192,-0.000816073904403039,0.00105215058204822,0.00154556541880069,-0.00860314921966378,-0.0275346827838252,-0.198089268224621,0.178930468261451,0.00880397465960111,0.268353553011757 +0.188,0.560532860616338,-0.292848916715448,-0.000832912726527746,0.000981614203032776,0.00115205677124475,-0.00813751915626145,-0.0400393131844145,-0.191063472258779,0.277378543337217,0.00827707794250414,0.339186163243339 +0.19,0.560534741351873,-0.292846998265107,-0.000848623981028085,0.000891993329310558,0.000781311529765571,-0.00749363504631492,-0.0475674917649326,-0.176821535174259,0.357826386838608,0.00758687458796033,0.401955525763935 +0.192,0.560536428589656,-0.292845791469329,-0.000862887266713006,0.000791344235973045,0.000444770630547708,-0.00670621360890702,-0.0518153389361674,-0.158108125144357,0.421493024213049,0.00676737375810552,0.45314388227802 +0.194,0.560537906728817,-0.292845219182584,-0.000875448835463713,0.000684731973565888,0.000148879029188142,-0.00580766294946272,-0.0540477886612489,-0.137116648021851,0.469410481692376,0.00584978390844631,0.492004409478805 +0.196,0.56053916751755,-0.292845195953212,-0.000886117918510856,0.00057515308132805,-0.000103695961539696,-0.00482857168213751,-0.0550912390359647,-0.115442283080136,0.502387026280262,0.00486381109922467,0.51841555678432 +0.198,0.560540207341143,-0.292845633966431,-0.000894763122192263,0.000464367017422029,-0.000312890103132401,-0.00379811484434167,-0.0554032232452649,-0.094144091640491,0.521084899013888,0.00383916831023546,0.532411588075515 +0.2,0.56054102498562,-0.292846447513625,-0.000901310377888223,0.00035354018834699,-0.00048027232810166,-0.00274423208608196,-0.055167999807315,-0.0738625688632975,0.526137543711488,0.00280828451482366,0.534153444418907 +0.202,0.560541621501896,-0.292847555055743,-0.000905740050536591,0.000243695018192769,-0.000608340378585592,-0.00169356466949572,-0.0543934980112847,-0.0549498503227274,0.518259586644413,0.001815936829263,0.52399536049972 +0.204,0.560541999765692,-0.292848880875139,-0.000908084636566206,0.000135966196301851,-0.00070007172939257,-0.000671193739504305,-0.0529983470443084,-0.0375841340688465,0.498330181174753,0.00097933052070344,0.50254786975252 +0.206,0.560542165366681,-0.292850355342661,-0.000908424825494608,3.17016300155348e-05,-0.000758676914860978,0.000299756055203298,-0.0508795882786517,-0.0218535883070317,0.467441727089458,0.000816363489580258,0.470710186898132 +0.208,0.560542126572212,-0.292851915582799,-0.000906885612345393,-6.75521568127561e-05,-0.000787486082620697,0.00119857316885353,-0.0479576032497158,-0.00780776121881018,0.426911883964597,0.00143571420042672,0.429668068996183 +0.21,0.560541895158054,-0.292853505286991,-0.000903630532819194,-0.000160128782983327,-0.000789907959736218,0.00200740359106167,-0.0442006310441557,0.00451789253924778,0.378263073677956,0.00216316087922319,0.380863571434697 +0.212,0.560541486057081,-0.292855075214638,-0.000898855997981146,-0.000244354680989378,-0.000769414512463706,0.00271162546356535,-0.0346189782743363,-0.264697729745326,0.314542045236339,0.00282924381359528,0.412553099625428 +0.214,0.56054091773933,-0.292856582945041,-0.000892784030964933,-0.000298604696080673,-0.00184869887871752,0.00326557177200703,-0.0610829415589874,-0.174088678476375,0.312711762169744,0.00376441380653376,0.363079385152139 +0.216,0.560540291638296,-0.292862470010153,-0.000885793710893118,-0.000488686447225328,-0.00146576922636921,0.00396247251224432,-0.0826000698950223,0.523034006872507,0.30531717965139,0.0042530556402385,0.611233117625388 +0.218,0.560538962993541,-0.292862446021946,-0.000876934140915955,-0.000629004975660762,0.000243437148772507,0.00448684049061259,-0.013322098590951,0.488611317340375,0.135455830461116,0.00453725098413226,0.507214727457587 +0.22,0.560537775618394,-0.292861496261557,-0.000867846348930668,-0.000541974841589132,0.000488676042992297,0.00450429583408879,0.0430859585370812,0.0549764394355833,-0.022847903897831,0.00456302771905889,0.0734903764352719 +0.222,0.560536795094175,-0.292860491317774,-0.0008589169575796,-0.000456661141512437,0.00046334290651484,0.00439544887502127,0.033692415538078,-0.0311380287665308,-0.0671730307748999,0.0044433317296946,0.0813447709674166 +0.224,0.560535948973828,-0.292859642889931,-0.000850264553430582,-0.00040720517943682,0.000364123927926174,0.00423560371098919,0.0174894201898645,-0.0569256032416364,-0.0913338916936135,0.00427068391356629,0.109033407242471 +0.226,0.560535166273457,-0.292859034822063,-0.000841974542735643,-0.000386703460752979,0.000235640493548295,0.00403011330824682,0.00631887727559064,-0.0660818519487848,-0.115671665331177,0.0040554752232095,0.133366688222707 +0.228,0.560534402159985,-0.292858700327957,-0.000834144100197595,-0.000381929670334457,9.97965201310346e-05,0.00377291704966448,0.0013989596564512,-0.0657049591575031,-0.142552822043201,0.0037935119193382,0.156972627609052 +0.23,0.560533638554776,-0.292858635635982,-0.000826882874536986,-0.000381107622127174,-2.7179343081718e-05,0.00345990202007401,0.00155187934031131,-0.0583459476670433,-0.17027001162663,0.00348093431780118,0.179995929948388 +0.232,0.560532877729496,-0.29285880904533,-0.000820304492117299,-0.000375722152973212,-0.000133587270537139,0.00309183700315796,0.00509718320329533,-0.0463003369532976,-0.196358485022099,0.00311744586948694,0.201807723139554 +0.234,0.560532135666164,-0.292859169985064,-0.000814515526524354,-0.000360718889313993,-0.000212380690894909,0.00267446807998561,0.0104102144474205,-0.0317862142995561,-0.218554162803933,0.00270702847894788,0.221098751835614 +0.236,0.560531434853939,-0.292859658568093,-0.000809606619797357,-0.00033408129518353,-0.000260732127735363,0.00221762035194223,0.0161507939383515,-0.0166920600987168,-0.235139734456113,0.00225774922867295,0.236284082695533 +0.238,0.560530799340983,-0.292860212913575,-0.000805645045116585,-0.000296115713560587,-0.000279148931289776,0.00173390914216116,0.0213514715075022,-0.00243073533176589,-0.245060355765803,0.00178102486083933,0.246000755644878 +0.24,0.560530250391085,-0.292860775163818,-0.000802670983228712,-0.000248675409153522,-0.000270455069062427,0.00123737892887902,0.0306922905840563,-0.269917673708515,-0.256235690845878,0.00129077186874096,0.373435799763195 +0.242,0.560529804639346,-0.292861294733852,-0.000800695529401069,-0.000173346551224362,-0.00135881962612383,0.000708966378777653,0.000914754390291417,-0.177622469749866,-0.193791887502516,0.00154242443231355,0.262879961574526 +0.244,0.56052955700488,-0.292866210442323,-0.000799835117713601,-0.000245016391592356,-0.000980944948061889,0.000462211378868954,-0.0263006164069601,0.520860864629962,-0.128621410299366,0.0011117218096417,0.537151030822669 +0.246,0.56052882457378,-0.292865218513644,-0.000798846683885593,-0.000278549016852203,0.00072462383239602,0.000194480737580188,0.0375751228673393,0.486059795544446,-0.219821072386383,0.000800307447519613,0.53477782168701 +0.248,0.560528442808812,-0.292863311946993,-0.000799057194763281,-9.4715900122999e-05,0.000963294234115896,-0.00041707291067658,0.0871291589502053,0.0511686412199562,-0.294684788976901,0.00105397186681489,0.311526636161384 +0.25,0.560528445710179,-0.292861365336707,-0.000800514975528299,6.99676189486186e-05,0.000929298397275845,-0.000984258418327415,0.0738282836046376,-0.316151760097749,-0.261846815115957,0.00135545402464605,0.417092682097494 +0.252,0.560528722679288,-0.292859594753404,-0.00080299422843659,0.000200597234295552,-0.0003013128062751,-0.00146446017114041,0.0150235929807785,-0.261141562041267,-0.143291253603891,0.00150853314530672,0.298249907176481 +0.254,0.560529248099117,-0.292862570587932,-0.000806372816212861,0.000130061990871733,-0.000115267850889222,-0.00155742343274298,-0.0348412837955502,0.419029463561565,-0.0324473324892632,0.0015670898339837,0.421725545556448 +0.256,0.560529242927251,-0.292860055824808,-0.000809223922167562,6.12320991133508e-05,0.00137480504797116,-0.00159424950109746,0.0150540532886656,0.377202151735644,-0.0917511877715144,0.0021060554982332,0.388492430108878 +0.258,0.560529493027513,-0.292857071367741,-0.000812749814217251,0.000190278204026395,0.00139354075605336,-0.00192442818382904,0.0574736659098017,-0.0558515749066179,-0.146851019132248,0.00238360765824093,0.167295673921476 +0.26,0.560530004040068,-0.292854481661783,-0.000816921634902879,0.000291126762752558,0.00115139874834469,-0.00218165357762645,0.0363847996176502,-0.134548272558155,-0.0959819654259423,0.00248396582151422,0.169232470225506 +0.262,0.560530657534564,-0.292852465772747,-0.000821476428527756,0.000335817402496996,0.000855347665820737,-0.00230835604553281,0.0112018847253647,-0.148998000767258,-0.0339692157579756,0.00248453226789122,0.153231178528562 +0.264,0.560531347309678,-0.29285106027112,-0.00082615505908501,0.000335934301654017,0.000555406745275654,-0.00231753044065835,-0.00702089475446142,-0.145030925900735,0.018611808044397,0.0024067147423622,0.146388735322972 +0.266,0.560532001271771,-0.292850244145766,-0.00083074655029039,0.00030773382347915,0.000275223962217796,-0.00223390881335522,-0.0177586237520843,-0.131300099515119,0.0591517818901778,0.00227173874419531,0.145100028087631 +0.268,0.560532578244971,-0.292849959375271,-0.000835090694338431,0.00026489980664568,3.02063472151781e-05,-0.00208092331309764,-0.0226316430040896,-0.111391622408668,0.0889880116764633,0.00209793378493371,0.144357718983192 +0.27,0.560533060870997,-0.292850123320377,-0.00083907024354278,0.000217207251462792,-0.000170342527416878,-0.00187795676664937,-0.0235451523972196,-0.0881819318641895,0.110179240273879,0.00189813518594934,0.143073031337279 +0.272,0.560533447073977,-0.292850640745381,-0.000842602521405028,0.000170719197056801,-0.00032252138024158,-0.00164020635200213,-0.0221699456709467,-0.0641151893833457,0.12464173585261,0.00168031007915348,0.141907809218051 +0.274,0.560533743747786,-0.292851413405898,-0.000845631068950789,0.000128527468779005,-0.000426803284950261,-0.00137938982323893,-0.0197715331121117,-0.0410696376559882,0.13387597007277,0.00144961948066732,0.141422784662595 +0.276,0.560533961183852,-0.292852347958521,-0.000848120080697984,9.1633064608354e-05,-0.000486799930865533,-0.00110470247171104,-0.0171925825590002,-0.0203164752972384,0.138921045590712,0.00121067681163252,0.141447520202964 +0.278,0.560534110280044,-0.292853360605622,-0.000850049878837633,5.9757138543004e-05,-0.000508069186139215,-0.000823705640876082,-0.01491055773295,-0.00257989300755934,0.140427052710071,0.000969637146731749,0.141240000398878 +0.28,0.560534200212407,-0.292854380235265,-0.000851414903261488,3.19908336765539e-05,-0.00049711950289577,-0.00054299426087076,-0.0131219247204162,0.0118492714668017,0.138773351602596,0.000736881252941912,0.139895079462002 +0.282,0.560534238243379,-0.292855349083633,-0.000852221855881116,7.2694396613393e-06,-0.000460672100272008,-0.000268612234465698,-0.0118300306009566,0.0229851469975284,0.134187615849664,0.000533314317477665,0.136654977421002 +0.284,0.560534229290165,-0.292856222923666,-0.000852489352199351,-1.53292887272727e-05,-0.000405178914905657,-6.24379747210523e-06,-0.0109264771327999,0.031030601529286,0.126846686200783,0.000405516861775047,0.131043381877617 +0.286,0.560534176926224,-0.292856969799293,-0.000852246831071005,-3.64364688698604e-05,-0.000336549694154864,0.000238774510337436,-0.0102564574333554,0.0362878724846628,0.116950569320833,0.000414254245224257,0.122879779756526 +0.288,0.56053408354429,-0.292857569122443,-0.000851534254158001,-5.63551184606944e-05,-0.000260027424967005,0.000461558479811225,-0.00395768939148745,-0.241307859243097,0.0969903848971365,0.000532753593509551,0.260100520953535 +0.29,0.56053395150575,-0.292858009908993,-0.00085040059715176,-5.226722643581e-05,-0.00130178113112724,0.000626736049925977,-0.0368109685511267,-0.158127417684146,0.141974949487839,0.00144573996714313,0.215676178358211 +0.292,0.560533874475384,-0.292862776246968,-0.000849027309958297,-0.000203598992665199,-0.000892537095703582,0.00102945827776257,-0.0659003117561837,0.532718127058827,0.180035541782854,0.00137762816560752,0.566166274420927 +0.294,0.560533137109779,-0.292861580057376,-0.000846282764040709,-0.000315868473460545,0.00082909137710807,0.00134687821705739,0.00123540620095008,0.489348717585407,0.0541695541868627,0.00161283797565191,0.492339348652703 +0.296,0.56053261100149,-0.292859459881459,-0.000843639797090068,-0.000198657367861399,0.00106485777463805,0.00124613649451002,0.055377384754196,0.0463971755911007,-0.0590093218897843,0.00165113385071061,0.0932815775753062 +0.298,0.560532342480308,-0.292857320626277,-0.000841298218062669,-9.43589344437611e-05,0.00101468007947247,0.00111084092949826,0.0400653966184383,-0.0466502094488563,-0.058779068717353,0.00150746371194672,0.0850673672279461 +0.3,0.560532233565752,-0.292855401161141,-0.000839196433372075,-3.83957813876456e-05,0.000878256936842624,0.00101102021964061,0.0178627263397457,-0.078043466050781,-0.0417397092618287,0.00133976541516144,0.09028877513163 +0.302,0.560532188897182,-0.29285380759853,-0.000837254137184107,-2.29080290847783e-05,0.000702506215269349,0.000943882092450942,0.00128982383801323,-0.0917172638045803,-0.0293163861979708,0.00117684033102974,0.096297303311363 +0.304,0.560532141933636,-0.29285259113628,-0.000835420905002271,-3.32364860355927e-05,0.000511387881624303,0.000893754674848728,-0.00828799195246031,-0.0948671671288646,-0.0244657763241382,0.00103025222556913,0.0983211290659476 +0.306,0.560532055951238,-0.292851762047003,-0.000833679118484712,-5.60599968946196e-05,0.00032303754675389,0.000846018987154389,-0.0120184137572532,-0.0901087283157463,-0.0258369095874899,0.000907328003805865,0.0945069896089894 +0.308,0.560531917693649,-0.292851298986093,-0.000832036829053653,-8.13101410646055e-05,0.000150952968361317,0.000790407036498769,-0.0115885075702149,-0.0797837682586787,-0.031157497945404,0.000808790097023823,0.086432244350574 +0.31,0.560531730710674,-0.29285115823513,-0.000830517490338717,-0.000102414027175479,3.90247371917507e-06,0.000721388995372773,-0.00864616540863226,-0.0661429758672115,-0.0382189944154315,0.000728632928784012,0.0768787419705261 +0.312,0.56053150803754,-0.292851283376198,-0.000829151273072162,-0.000115894802699135,-0.000113618935107529,0.000637531058837043,-0.00456400478521245,-0.0511006358928922,-0.0452372430261721,0.000657865273965362,0.0683996585148372 +0.314,0.560531267131463,-0.29285161271087,-0.000827967366103369,-0.000120670046316329,-0.000200500069852394,0.000540440023268085,-0.000348086968970928,-0.0360971885611516,-0.0509780348125626,0.000588928651738738,0.0624650960129587 +0.316,0.560531025357355,-0.292852085376478,-0.00082698951297909,-0.000117287150575018,-0.000258007689352135,0.000433618919586792,0.00335613292018477,-0.0220941259350404,-0.0547456990677985,0.000518024720335286,0.0591312573469677 +0.318,0.560530797982861,-0.292852644741628,-0.000826232890425022,-0.00010724551463559,-0.000288876573592556,0.00032145722699689,0.0062059270430903,-0.00964667809869033,-0.0562888289234661,0.000445293188774046,0.0574456629379376 +0.32,0.560530596375296,-0.292853240882772,-0.000825703684071102,-9.24634424026571e-05,-0.000296594401746897,0.000208463603892928,0.00808814112907007,0.000992539848920781,-0.0556765258567098,0.000374132064218741,0.0562696960516789 +0.322,0.560530428129091,-0.292853831119235,-0.00082539903600945,-7.48929501193096e-05,-0.000284906414196872,9.8751123570051e-05,0.00904685754088417,0.00976863378382429,-0.053180120198129,0.000310696641813909,0.0548215014538546 +0.324,0.560530296803496,-0.292854380508429,-0.000825308679576822,-5.62760122391203e-05,-0.000257519866611599,-4.25687689958875e-06,0.00921796368402726,0.0167370633359642,-0.0491733200018093,0.000263631546394076,0.0527552418589135 +0.326,0.560530203025042,-0.292854861198701,-0.000825416063517048,-3.80210953832005e-05,-0.000217958160853015,-9.79421564371862e-05,0.00877727918124903,0.022002681607236,-0.0440560026316108,0.000241958735292061,0.0500208955898581 +0.328,0.560530144719114,-0.292855252341072,-0.000825700448202571,-2.11668955141242e-05,-0.000169509140182655,-0.000180480887426032,0.00790508929149335,0.0256846949403533,-0.0382039669509156,0.000248505003565838,0.0467090685164257 +0.33,0.56053011835746,-0.292855539235262,-0.000826137987066752,-6.40073821722708e-06,-0.000115219381091602,-0.000250758024240849,0.00676492503681735,0.0279017415075188,-0.0319422242319594,0.000276036341719766,0.0429485398912575 +0.332,0.560530119116161,-0.292855713218597,-0.000826703480299534,5.89280463314523e-06,-5.79021741525798e-05,-0.00030824978435387,0.00549255967791095,0.0287702993546912,-0.0255353044429848,0.000313696216859954,0.0388580765063053 +0.334,0.560530141928679,-0.292855770843958,-0.000827370986204168,1.55695004944167e-05,-1.38183672837577e-07,-0.000352899242012788,0.0102900680545859,-0.252370085881276,-0.026419482090749,0.000353242556119126,0.253957742119105 +0.336,0.560530181394163,-0.292855713771331,-0.000828115077267585,4.70530768514887e-05,-0.00106738251767768,-0.000413927712716866,-0.0255373296398353,-0.170945477395018,0.0395657802449919,0.00114579910212923,0.177313176084969 +0.338,0.560530330140986,-0.292860040374029,-0.000829026697055035,-8.65798180649246e-05,-0.000683920093252909,-0.000194636121032821,-0.0580285980308902,0.519665361665977,0.0981495292410107,0.000716328122065528,0.532027007204609 +0.34,0.560529835074891,-0.292858449451704,-0.000828893621751717,-0.000185061315272072,0.00101127892898622,-2.13295957528225e-05,0.00906140265599651,0.47492824320136,-0.00740080909229778,0.00102829359342395,0.475072328370792 +0.342,0.560529589895725,-0.292855995258313,-0.000829112015438047,-5.03342074409385e-05,0.00121579287955253,-0.000224239357402012,0.0630173142002198,0.0306283828195585,-0.0987065243334207,0.00123732338045372,0.121046510355048 +0.344,0.560529633738061,-0.292853586280186,-0.000829790579181325,6.70079415288071e-05,0.00113379246026446,-0.000416155693086506,0.0452155207164572,-0.0622772122621517,-0.0760512523841765,0.0012096119080386,0.108197446688945 +0.346,0.560529857927491,-0.292851460088472,-0.000830776638210393,0.000130527875424891,0.000966684030503927,-0.000528444366938718,0.0265184640010907,-0.373737715681637,-0.0447841850895191,0.00110940028395684,0.377344315301076 +0.348,0.560530155849563,-0.292849719544064,-0.00083190435664908,0.00017308179753317,-0.000361158402462091,-0.000595292433444583,-0.0274485165777104,-0.303222621639982,0.0472646214831259,0.000717471798485945,0.308109272467551 +0.35,0.560530550254681,-0.292852904722082,-0.000833157807944171,2.07338091140488e-05,-0.000246206456056001,-0.000339385881006214,-0.0710438853024366,0.388371106396094,0.122120277041769,0.000419797910988606,0.413270749009593 +0.352,0.560530238784799,-0.292850704369888,-0.000833261900173105,-0.000111093743676573,0.00119232602312226,-0.000106811325277513,-0.00815649603413976,0.352958893161398,0.0244196287713467,0.00120224449447946,0.353896633155225 +0.354,0.560530105879707,-0.292848135417989,-0.000833585053245281,-1.18921750225098e-05,0.00116562911658957,-0.000241707365920829,0.0459019188978063,-0.0759820046464283,-0.0647223596973718,0.00119048524224727,0.109860070241133 +0.356,0.560530191216099,-0.292846041853422,-0.000834228729636788,7.25139319146528e-05,0.00088839800453655,-0.000365700764067,0.0302762848472526,-0.149606272637631,-0.0435565886813121,0.000963455413408132,0.158732059314526 +0.358,0.560530395935434,-0.292844581825971,-0.000835047856301549,0.000109212964366501,0.000567204026039047,-0.000415933720646077,0.0151102523479607,-0.440299541552141,-0.0157996750569863,0.000711792623389082,0.440841962327715 +0.36,0.560530628067957,-0.292843773037318,-0.000835892464519372,0.000132954941306496,-0.000872800161672015,-0.000428899464294946,-0.0353665847580009,-0.348941445300898,0.0718445701134231,0.000981535475214728,0.35801196882354 +0.362,0.560530927755199,-0.292848073026618,-0.000836763454158729,-3.22533746655029e-05,-0.000828561755164547,-0.000128555440192385,-0.0758685674076552,0.362376865587626,0.141713050299738,0.000839095562794683,0.396428582293026 +0.364,0.560530499054458,-0.292847087284338,-0.000836406686280142,-0.000170519328324126,0.000576707300678491,0.000137952736904007,-0.00963095605349682,0.344191186184283,0.0390989596688734,0.000617008192496087,0.346538679816029 +0.366,0.560530245677886,-0.292845766197415,-0.000836211643211113,-7.07771988794902e-05,0.000548202989572588,2.78403984831088e-05,0.0469971131247803,-0.0700806941748843,-0.0541448094901197,0.000553453717527715,0.100258130507298 +0.368,0.560530215945662,-0.29284489447238,-0.000836295324686209,1.74691241749958e-05,0.000296384523978954,-7.86265010564723e-05,0.0326097547367898,-0.131327334649406,-0.0364229547928501,0.000307133656609067,0.140131711492983 +0.37,0.560530315554383,-0.292844580659319,-0.000836526149215339,5.9661820067669e-05,2.28936509749644e-05,-0.000117851420688292,0.0116954070525366,-0.13114067552375,-0.00490333719894292,0.000134061960999379,0.131752427069244 +0.372,0.560530454592943,-0.292844802897776,-0.000836766730368962,6.42507523851421e-05,-0.000228178178116045,-9.8239849852244e-05,-0.00352788318003227,-0.115403614948939,0.019428889560559,0.000256601847712377,0.117080835547801 +0.374,0.560530572557392,-0.292845493372032,-0.000836919108614748,4.55502873475399e-05,-0.000438720808820791,-4.01358624460557e-05,-0.0120650223353613,-0.0925349407862595,0.0339528730009669,0.000442901415920181,0.0993029587438819 +0.376,0.560530636794092,-0.292846557781012,-0.000836927273818747,1.59906630436968e-05,-0.000598317941261083,3.75716421516236e-05,-0.0152467831068814,-0.0658604002688744,0.0401311642285462,0.00059970967011834,0.0786165826083987 +0.378,0.560530636520045,-0.292847886643797,-0.000836768822046141,-1.54368450799858e-05,-0.000702162409896289,0.000120388794468129,-0.0147841301839646,-0.0380336385823187,0.0402211538241825,0.000712575475224118,0.0572963295862432 +0.38,0.560530575046712,-0.292849366430651,-0.000836445718640874,-4.31458576921617e-05,-0.000750452495590358,0.000198456257448354,-0.0122303291244519,-0.0113200517987133,0.0363721402441008,0.000777448004238352,0.0400082130212598 +0.382,0.560530463936614,-0.292850888453779,-0.000835974997016348,-6.43581615777932e-05,-0.000747442617091142,0.000265877355444532,-0.0022842090371955,-0.26861917926807,0.0236727884612639,0.00079592914693703,0.269669950115152 +0.384,0.560530317614065,-0.292852356201119,-0.000835382209219096,-5.22826938409437e-05,-0.00182492921266264,0.000293147411293409,-0.0344894477491419,-0.165399894263424,0.0772690400274721,0.00184906341590892,0.1857879209614 +0.386,0.560530254805838,-0.29285818817063,-0.000834802407371174,-0.000202315952574361,-0.00140904219414484,0.000574953515554421,-0.0643151880502789,0.544173844894968,0.121848306084728,0.0015352208943976,0.561345371921273 +0.388,0.560529508350255,-0.292857992369896,-0.000833082395156878,-0.00030954344604206,0.000351766166917233,0.00078054063563232,0.00819706064136837,0.512680232669926,0.00217279870831644,0.000910384679708826,0.512750362094337 +0.39,0.560529016632054,-0.292856781105962,-0.000831680244828645,-0.000169527710008888,0.000641678736534867,0.000583644710387687,0.066627134615027,0.0772611447805159,-0.100720500984669,0.000883816945608856,0.143363450287747 +0.392,0.560528830239415,-0.29285542565495,-0.000830747816315328,-4.30349075819513e-05,0.000660810746039297,0.000377658631693644,0.0501322836923833,-0.00923094863394812,-0.0875132550627598,0.000762331218988384,0.10127697711018 +0.394,0.560528844492424,-0.292854137862978,-0.00083016961030187,3.1001424760646e-05,0.000604754941999074,0.000233591690136647,0.032298600904923,-0.317527085246654,-0.0640918961939198,0.000649041374575142,0.325537126367153 +0.396,0.560528954245114,-0.292853006635182,-0.000829813449554781,8.61594960377409e-05,-0.000609297594947322,0.000121291046917965,-0.0226692329491351,-0.245695504906551,0.0211145157573422,0.000627198960481061,0.247640865023231 +0.398,0.560529189130408,-0.292856575053358,-0.000829684446114198,-5.96755070358945e-05,-0.00037802707762713,0.000318049753166016,-0.0678254512415098,0.445599932803047,0.0882163933872344,0.00049761559767381,0.459283925271118 +0.4,0.560528715543086,-0.292854518743492,-0.000828541250542117,-0.000185142308928299,0.00117310213626487,0.000474156620466903,-0.00300341154030325,0.406014087718509,-0.01706052760609,0.00127877707103197,0.406383466087108 +0.402,0.560528448561172,-0.292851882644813,-0.000827787819632331,-7.16891531971075e-05,0.00124602927324691,0.000249807642741656,0.0528802047913833,-0.0292955323090426,-0.111093511905372,0.00127284411568993,0.126476530073835 +0.404,0.560528428786473,-0.292849534626399,-0.00082754201997115,2.63785102372349e-05,0.0010559200070287,2.97825728454159e-05,0.0434312978705997,-0.390806991313469,-0.0989232038757849,0.00105666924280548,0.405465389841427 +0.406,0.560528554075213,-0.292847658964785,-0.000827668689340949,0.000102036038285291,-0.00031719869200697,-0.000145885172761484,-0.0149664496976176,-0.324135202230818,-0.00469388826505184,0.000363742830790571,0.32451449355739 +0.408,0.560528836930626,-0.292850803421167,-0.000828125560662196,-3.34872885532355e-05,-0.000240620801894575,1.10070197852086e-05,-0.0644936317753529,0.371297326214742,0.0736583118362068,0.000243189069005143,0.383987864256608 +0.41,0.560528420126059,-0.292848621447992,-0.000827624661261808,-0.000155938488816121,0.001167990612852,0.000148748074583343,-0.00223512682667736,0.338749506424706,-0.0216039150223793,0.00118770571847444,0.339445066305592 +0.412,0.560528213176671,-0.292846131458716,-0.000827530568363863,-4.2427795859945e-05,0.00111437722380425,-7.54086403043085e-05,0.0522546181602744,-0.0875010974024647,-0.107097492174114,0.00111773126368897,0.147840657451515 +0.414,0.560528250414876,-0.292844163939097,-0.000827926295823025,5.30799838249773e-05,0.000817986223242139,-0.000279641894113114,0.0350936655638126,-0.156894333427913,-0.0815808395794258,0.000866093837317856,0.180285414304591 +0.416,0.560528425496606,-0.292842859513823,-0.000828649135940315,9.79468663953055e-05,0.000486799890092599,-0.000401731998622012,0.0124665142306473,-0.1620049214085,-0.0429314612809491,0.000638714584417534,0.16805986702766 +0.418,0.560528642202341,-0.292842216739537,-0.000829533223817513,0.000102946040747566,0.000169966537608148,-0.000451367739236908,-0.00348350925882851,-0.149308008106506,-0.0119573200759228,0.000493172735698091,0.149826545127647 +0.42,0.560528837280769,-0.292842179647673,-0.000830454606897263,8.40128293599917e-05,-0.000110432142333416,-0.000449561278925703,-0.0121292805868593,-0.127716534747275,0.00902623452803969,0.000470487786309839,0.128608341895702 +0.422,0.560528978253659,-0.292842658468106,-0.000831331468933216,5.44289184001289e-05,-0.00034089960138095,-0.000415262801124749,-0.0151337883058655,-0.100950561441465,0.0217165212375303,0.000540016888048764,0.104363090690597 +0.424,0.560529054996443,-0.292843543246078,-0.000832115658101762,2.34776761365296e-05,-0.000514234388099277,-0.000362695193975581,-0.0144359500256485,-0.071964002503616,0.0284579695910766,0.00062971105351073,0.0787214731996938 +0.426,0.560529072164363,-0.292844715405658,-0.000832782249709119,-3.3148817024653e-06,-0.000628755611395415,-0.000301430922760443,-0.0117311902692041,-0.0432473737377314,0.0313529802597675,0.000697284166246542,0.0546897205287489 +0.428,0.560529041736916,-0.292846058268524,-0.000833321381792804,-2.34470849402868e-05,-0.000687223883050202,-0.000237283272936511,-0.00138042248465364,-0.298230419800565,0.0259296890226662,0.000727413075798242,0.299358710635702 +0.43,0.560528978376023,-0.292847464301191,-0.000833731382800865,-8.83657164107986e-06,-0.00182167729059768,-0.000197712166669778,-0.0348224958104936,-0.191377411515314,0.0867103474109369,0.00183239633729358,0.212970899892213 +0.432,0.56052900639063,-0.292853344977686,-0.000834112230459483,-0.000162737068182261,-0.00145273352911146,0.000109558116707237,-0.0664550611137459,0.52293876783363,0.136314363425455,0.0014659198616915,0.544484008697293 +0.434,0.560528327427751,-0.292853275235307,-0.000833293150334036,-0.000274656816096064,0.000270077780736844,0.000347545287032041,0.00757282930807789,0.494714433516007,0.0203177325189957,0.000518812201874579,0.495189386727449 +0.436,0.560527907763365,-0.292852264666563,-0.000832722049311355,-0.00013244575094995,0.000526124204952571,0.000190829046783219,0.0673726204825086,0.062205993186376,-0.0781713354689599,0.000575121101228136,0.120496528032903 +0.438,0.560527797644747,-0.292851170738487,-0.000832529834146903,-5.16633416602907e-06,0.000518901753482348,3.48599451562015e-05,0.0499141868948171,-0.0203114928591652,-0.0604774846955229,0.000520097045321413,0.0810031416096676 +0.44,0.560527887098029,-0.292850189059549,-0.00083258260953073,6.72109966293188e-05,0.00044487823351591,-5.10808919988725e-05,0.0243257659293672,-0.0431414062598833,-0.0271444923153479,0.00045281698096642,0.0564778477386368 +0.442,0.560528066488733,-0.292849391225553,-0.000832734157714898,9.21367295514396e-05,0.000346336128442814,-7.37180241051904e-05,0.00440227262976655,-0.050646092542017,-0.000640193181453141,0.000365885552974104,0.0508410910719954 +0.444,0.560528255644947,-0.292848803715036,-0.000832877481627151,8.4820087148385e-05,0.000242293863347842,-5.36416647246851e-05,-0.00817357487248314,-0.0500916350169855,0.0157643952431938,0.000262255965793569,0.0531459818072317 +0.446,0.560528405769082,-0.2928484220501,-0.000832948724373797,5.9442430061507e-05,0.000145969588374872,-1.06604431324153e-05,-0.0144430954834851,-0.044030072081369,0.0233687893523917,0.000157968883865546,0.0518975006183542 +0.448,0.560528493414667,-0.292848219836682,-0.00083292012339968,2.70477052144446e-05,6.61735750223657e-05,3.9833492684882e-05,-0.0160591751355299,-0.034641926594664,0.0245265040742237,8.18365903987007e-05,0.0453818199979531 +0.45,0.560528513959903,-0.2928481573558,-0.000832789390403058,-4.79427048061253e-06,7.40188199621627e-06,8.74455731644796e-05,-0.0146731697070468,-0.0239294613291196,0.0216041824594934,8.78891412666635e-05,0.0354212045037532 +0.452,0.560528474237585,-0.292848190229154,-0.000832570341107022,-3.16449736137425e-05,-2.95442702941129e-05,0.000126250222522856,-0.00455378776353931,-0.295210804048678,0.0108206259074456,0.000133466800925536,0.295444143206616 +0.454,0.560528387380008,-0.292848275532881,-0.000832284389512966,-2.30094215347698e-05,-0.0011734413341985,0.000130728076794262,-0.0382931962597532,-0.202158096086063,0.0668598806067773,0.00118092498845068,0.216343496152952 +0.456,0.560528382199899,-0.292852883994491,-0.000832047428799845,-0.000184817758652755,-0.000838176654638367,0.000393689744949965,-0.0699348822533195,0.500933539013953,0.111693215078777,0.000944293028446658,0.517977482676094 +0.458,0.560527648108974,-0.292851628239499,-0.000830709630533166,-0.000302748950548048,0.000830292821857314,0.00057750093710937,0.00613299232232743,0.462843243998617,-0.00830401161201754,0.00105572270480838,0.462958355274901 +0.46,0.560527171204097,-0.292849562823203,-0.000829737425051408,-0.000160285789363446,0.0010131963213561,0.000360473698501895,0.0680039474176829,0.0225287236817195,-0.108696165986369,0.00108729002901389,0.130180400810761 +0.462,0.560527006965816,-0.292847575454214,-0.000829267735739159,-3.07331608773165e-05,0.000920407716584192,0.000142716273163895,0.0513710993535476,-0.0649240866519573,-0.0910708632768582,0.000931913529546078,0.12307732940869 +0.464,0.560527048271453,-0.292845881192337,-0.000829166559958752,4.51986080507449e-05,0.000753499974748272,-3.80975460553823e-06,0.0263573550485229,-0.0902619604233044,-0.0566044082248722,0.000754863987977653,0.109754228597809 +0.466,0.560527187760249,-0.292844561454315,-0.000829282974757581,7.46962593167754e-05,0.000559359874890974,-8.37013597355939e-05,0.00687665142884429,-0.0980854486277992,-0.0279859173864596,0.000570498832965986,0.102231380404219 +0.468,0.560527347056491,-0.292843643752838,-0.000829501365397695,7.27052137661221e-05,0.000361158180237075,-0.000115753424151377,-0.00539937090870967,-0.0959044970452736,-0.00865279890793767,0.000386160762460017,0.0964453041296357 +0.47,0.560527478581104,-0.292843116821594,-0.000829745988454186,5.30987756819367e-05,0.000175741886709879,-0.000118312555367345,-0.0115280164650344,-0.0865514183240322,0.0025208654668915,0.000218409137814377,0.0873521490303581 +0.472,0.560527559451593,-0.292842940785291,-0.000829974615619164,2.65931479059844e-05,1.49525069409462e-05,-0.000105669962283811,-0.0131644582665458,-0.0725186542274713,0.0077035554870916,0.000109985971416497,0.0741053502761971 +0.474,0.560527584953695,-0.292843057011566,-0.000830168668303322,4.4094261575367e-07,-0.000114332730200006,-8.74983334189782e-05,-0.0119487046784661,-0.0561398037432491,0.00907247412005456,0.000143972657044581,0.0581098863747193 +0.476,0.560527561215364,-0.292843398116211,-0.00083032460895284,-2.12016708078799e-05,-0.000209606708032051,-6.93800658035925e-05,-0.00925771624638039,-0.0393449831777313,0.0084292339098261,0.000221806394019627,0.0412890420772996 +0.478,0.560527500147012,-0.292843895438398,-0.000830446188566536,-3.65899223697679e-05,-0.000271712662910931,-5.37813977796738e-05,-0.00610863956640474,-0.0235304671129824,0.00706220903371601,0.000279390465750552,0.0253154726667959 +0.48,0.560527414855674,-0.292844484966863,-0.000830539734543959,-4.56362290734985e-05,-0.000303728576483979,-4.11312296687288e-05,-0.00316276120571049,-0.00956544459265658,0.00575263990870043,0.000309879801908893,0.0116014505394241 +0.482,0.560527317602096,-0.292845110352704,-0.000830610713485211,-4.92409671926097e-05,-0.000309974441281557,-3.07708381448723e-05,-0.000782794773446069,0.00212146553102527,0.0048667630160247,0.000315365932811417,0.00536644816529599 +0.484,0.560527217891805,-0.292845724864628,-0.000830662817896538,-4.87674081672828e-05,-0.000295242714359878,-2.166417760463e-05,0.000894499280201798,0.0114249015630008,0.004477921755619,0.000300026427291376,0.0123036696938753 +0.486,0.560527122532463,-0.292846291323562,-0.000830697370195629,-4.56629700718025e-05,-0.000264274835029554,-1.28591511223963e-05,0.00188661899991338,0.0184456281221434,0.00448242187811586,0.000268498888327801,0.0190759700661501 +0.488,0.560527035239925,-0.292846781963968,-0.000830714254501028,-4.12209321676293e-05,-0.000221460201871304,-3.73449009216653e-06,0.00230044958082764,0.0233929642462493,0.00469582660082845,0.000225294768421052,0.0239702655797819 +0.49,0.560526957648734,-0.292847177164369,-0.000830712308155998,-3.64611717484919e-05,-0.000170702978044557,5.92415528091749e-06,0.00228105709321191,0.0265159509210688,0.00492445518477518,0.000174653999021911,0.0270656448949195 +0.492,0.560526889395238,-0.292847464775881,-0.000830690557879904,-3.20967037947817e-05,-0.000115396398187029,1.59633306469342e-05,0.00197707953480952,0.028062677244478,0.00500990852275728,0.000120836066777981,0.0285748469990848 +0.494,0.560526829261919,-0.292847638749962,-0.00083064845483341,-2.85528536092538e-05,-5.84522690666444e-05,2.59637893719466e-05,0.00152041085277332,0.028261682896713,0.00484952731791276,7.00432121395192e-05,0.0287150184489367 +0.496,0.560526775183824,-0.292847698584957,-0.000830586702722416,-2.60150603836884e-05,-2.34966660017655e-06,3.53614399185853e-05,0.00101596634577428,0.0273182971521901,0.00439979553051167,4.3962890407873e-05,0.0276889824230038 +0.498,0.560526725201678,-0.292847648148628,-0.000830507009073736,-2.44889882261567e-05,5.0820919542116e-05,4.35629714939933e-05,0.000538788617887585,0.025419463364068,0.00366932950517095,7.12755841283223e-05,0.0256885848171806 +0.5,0.560526677227871,-0.292847495301279,-0.00083041245083644,-2.3859905912138e-05,9.93281868560957e-05,5.00387579392691e-05,0.000136131272920892,0.0227414915163204,0.00270620857233811,0.000113750873009223,0.0229023477605973 +0.502,0.560526629762054,-0.292847250835881,-0.000830306854041979,-2.39444631344732e-05,0.000141786885607398,5.43878057833457e-05,-0.00016785805384556,0.0194568503392167,0.00158340794035455,0.000153736435704001,0.0195218949427174 +0.504,0.560526581450018,-0.292846928153736,-0.000830194899613307,-2.45313381275203e-05,0.000177155588212963,5.63723897006873e-05,-0.000366746084889956,0.0157379361348519,0.000385155400628445,0.000187519959753552,0.0157469197355576 +0.506,0.560526531636702,-0.292846542213528,-0.000830081364483176,-2.5411447474033e-05,0.000204738630146806,5.59284273858595e-05,-0.000466613032934492,0.011757366698284,-0.000804153773084625,0.000213756022902213,0.0117940689624568 +0.508,0.560526479804228,-0.292846109199216,-0.000829971185903763,-2.63977902592582e-05,0.000224185055006098,5.31557746083488e-05,-0.000481465291246596,0.00768517304308712,-0.00190811672972496,0.000231907995965798,0.00793313323870994 +0.51,0.56052642604554,-0.292845645473308,-0.000829868741384743,-2.73373086390194e-05,0.000235479322319154,4.82959604669597e-05,-0.000429506673282897,0.00368384444476843,-0.00286360120338446,0.00024193044347692,0.00468565872932192 +0.512,0.560526370454994,-0.292845167281926,-0.000829778002061896,-2.81158169523898e-05,0.000238920432785172,4.17013697948109e-05,-0.000330340477194823,-9.76482956993595e-05,-0.00362355708632966,0.000244156664066164,0.00363989367680104 +0.514,0.560526313582273,-0.292844689791577,-0.000829701935905564,-2.86586705477987e-05,0.000235088729136357,3.3801732121641e-05,-0.00020299262271095,-0.00352971967279568,-0.00415779737895915,0.000239229151774899,0.00545778398417119 +0.516,0.560526255820312,-0.29284422692701,-0.000829642795133409,-2.89277874432336e-05,0.000224801554093989,2.50701802789743e-05,-6.45777598062835e-05,-0.00650708593605275,-0.00445239706735322,0.000228037430148329,0.00788480673901476 +0.518,0.560526197871123,-0.292843790585361,-0.000829601655184448,-2.89169815870238e-05,0.000209060385392146,1.59921438522281e-05,7.05063021855245e-05,-0.00895216361457284,-0.0045081326753224,0.000211655817849184,0.0100234457517881 +0.52,0.560526140152385,-0.292843390685468,-0.000829578826558,-2.86457622344915e-05,0.000188992899635698,7.03764957768471e-06,0.000190984339454302,-0.0108166949910893,-0.00433839680933495,0.000191281008775786,0.011655859145658 +0.522,0.560526083288074,-0.292843034613762,-0.000829573504586137,-2.81530442292066e-05,0.000165793605427789,-1.36144338511168e-06,0.000288792142977278,-0.0120815783766215,-0.00396680174125085,0.000168172432426387,0.0127194124481709 +0.524,0.560526027540208,-0.292842727511047,-0.000829584272331541,-2.74905936625824e-05,0.000140666586129212,-8.82955738731871e-06,0.000358959181823159,-0.0127550877637716,-0.00342472416311328,0.000143599381185381,0.0132117315727025 +0.526,0.560525973325699,-0.292842471947417,-0.000829608822815686,-2.6717207501914e-05,0.000114773254372702,-1.50603400375648e-05,0.000399321943567176,-0.0128697873330585,-0.0027488803950107,0.000118800349065347,0.0131661394280496 +0.528,0.560525920671378,-0.292842268418029,-0.000829644513691691,-2.58933058883137e-05,8.9187436796978e-05,-1.98250789673615e-05,0.000410140255091562,-0.0124785040599151,-0.00197904575019447,9.49626027881652e-05,0.012641119439493 +0.53,0.560525869752476,-0.29284211519767,-0.000829688123131556,-2.50766464815477e-05,6.48592381330415e-05,-2.29765230383427e-05,0.000393638538431772,-0.0116497356136835,-0.00115594966324656,7.3235780742002e-05,0.0117135609782689 +0.532,0.560525820364792,-0.292842008981076,-0.000829736419783844,-2.43187517345866e-05,4.25884943422438e-05,-2.44488776203477e-05,0.000353529483465563,-0.0104628362293524,-0.000319399589242264,5.47989886144127e-05,0.0104736784920837 +0.534,0.560525772477469,-0.292841944843693,-0.000829785918642037,-2.36625285476854e-05,2.30078932156319e-05,-2.42541213953118e-05,0.000294534716061001,-0.00900328584255148,0.000493339495123701,4.09577930576157e-05,0.00902160132787423 +0.536,0.560525725714678,-0.292841916949504,-0.000829833436269425,-2.31406128703426e-05,6.57535097203787e-06,-2.24755196398529e-05,0.000221938495359453,-0.00735827413930744,0.00124889423542412,3.29222141950076e-05,0.00746680599829664 +0.538,0.560525679915017,-0.292841918542289,-0.000829875820720596,-2.27747745662476e-05,-6.4252033415979e-06,-1.92585444536153e-05,0.000141186340396615,-0.0056127805042605,0.00191883288078176,3.05100824154272e-05,0.00593339348063909 +0.54,0.56052563461558,-0.292841942650317,-0.00082991047044724,-2.25758675087562e-05,-1.58757710450041e-05,-1.48001881167259e-05,5.75460443186237e-05,-0.00384625889471301,0.00248042703737683,3.13170156358612e-05,0.00457706645354048 +0.542,0.560525589611547,-0.292841982045373,-0.000829935021473063,-2.25445903889731e-05,-2.181023892045e-05,-9.33683630410797e-06,-2.4161658784827e-05,-0.0021299969774069,0.0029171022489921,3.27279939767685e-05,0.00361205709265407 +0.544,0.560525544437218,-0.292842029891273,-0.000829947817792456,-2.26725141438955e-05,-2.43957589546317e-05,-3.13177912075746e-06,-9.97647658929067e-05,-0.000525162576620053,0.00321861425272434,3.34515170513812e-05,0.0032627023229581 +0.546,0.560525498921491,-0.292842079628409,-0.000829947548589546,-2.29436494525448e-05,-2.39108892269302e-05,3.53762070678942e-06,-0.000165869172563671,0.000918473817834718,0.00338094220415224,3.33265124801394e-05,0.00350740315964285 +0.548,0.560525452662621,-0.29284212553483,-0.000829933667309629,-2.33359908341501e-05,-2.07218636832929e-05,1.03919896958515e-05,-0.000219930629263842,0.0021631866020666,0.00340595514118635,3.28931231803731e-05,0.0040408261755268 +0.55,0.560525405577527,-0.292842162515864,-0.000829905980630763,-2.38233719696001e-05,-1.52581428186638e-05,1.71614412715348e-05,-0.000260266794227526,0.00318337228452647,0.00330085902101179,3.30889564778494e-05,0.00459317626296484 +0.552,0.560525357369133,-0.292842186567401,-0.000829865021544543,-2.43770580110603e-05,-7.98837454518696e-06,2.35954257798987e-05,-0.000286030768514854,0.00396513252787222,0.00307749025655473,3.48539696861562e-05,0.00502742835287753 +0.554,0.560525308069295,-0.292842194469362,-0.000829811598927643,-2.49674950436596e-05,6.02387292825135e-07,2.94714022977538e-05,-0.000297142969951646,0.00450544511421124,0.00275147608776865,3.86303278862834e-05,0.00528752780449657 +0.556,0.560525257499153,-0.292842184157852,-0.000829747135935352,-2.55656298908668e-05,1.0033405911658e-05,3.46013301309733e-05,0.00769272012063336,-0.277726219667651,-0.00205178246268089,4.41760422937306e-05,0.277840315370201 +0.558,0.560525205806776,-0.292842154335738,-0.000829673193607119,5.80338543887393e-06,-0.00111030249137778,2.12642724470302e-05,-0.0240425266084809,-0.475303758171174,0.0564108588374175,0.00111052126090632,0.479243039190072 +0.56,0.560525280712694,-0.292846625367817,-0.000829662078845564,-0.000121735736324791,-0.00189118162677304,0.000260244765480644,-0.102033024161618,0.307865845719512,0.166903947394596,0.00191288130131029,0.364758885616312 +0.562,0.56052471886383,-0.292849719062245,-0.000828632214545197,-0.0004023287112076,0.000121160891500271,0.000688880062025415,-0.062511270076948,0.96119711722256,0.0945410439344428,0.000806910213931667,0.967856170116101 +0.564,0.56052367139785,-0.292846140724251,-0.000826906558597462,-0.000371780816632583,0.0019536068421172,0.000638408941218415,0.0792711706276704,0.469642294435856,-0.122686708920599,0.00208862793369493,0.491833134062178 +0.566,0.560523231740564,-0.292841904634877,-0.000826078578780323,-8.5244028696918e-05,0.0019997300692437,0.000198133226343017,0.124207668095177,-0.0666459738368762,-0.198220810349904,0.00201132883180423,0.243229768527785 +0.568,0.560523330421735,-0.292838141803974,-0.00082611402569209,0.000125049855748127,0.0016870229467697,-0.000154474300181201,0.0778809704157778,-0.181948383023295,-0.138577574921271,0.00169868955338126,0.241607954978215 +0.57,0.560523731939987,-0.29283515654309,-0.000826696475981048,0.000226279852966193,0.00127193653715052,-0.000356177073342067,0.0296794799986566,-0.21445343358073,-0.0701988981163109,0.00134010717256918,0.227594006960419 +0.572,0.560524235541147,-0.292833054057826,-0.000827538733985458,0.000243767775742753,0.000829209212446779,-0.000435269892646445,-0.00425882450139081,-0.217611370818826,-0.0191496134773969,0.00096771407241066,0.218493830558476 +0.574,0.56052470701109,-0.29283183970624,-0.000828437555551634,0.00020924455496063,0.000401491053875213,-0.000432775527251655,-0.023566515142125,-0.202642148203896,0.0128009773163435,0.000626317018059105,0.20440911399663 +0.576,0.560525072519366,-0.29283144809361,-0.000829269836094465,0.000149501715174253,1.86406196311944e-05,-0.00038406598338107,-0.0313231603640831,-0.17548035350854,0.0294793790827835,0.000412558983820189,0.180675202044395 +0.578,0.560525305017951,-0.292831765143762,-0.000829973819485158,8.3951913504301e-05,-0.000300430360158929,-0.000314858010920524,-0.0311762396107436,-0.141332452463509,0.0356637036265755,0.000443217657733857,0.149059450528911 +0.58,0.56052540832702,-0.292832649815051,-0.000830529268138147,2.47967567312823e-05,-0.000546689190222826,-0.000241411168874772,-0.026419550921975,-0.104652905442285,0.0356368107506271,0.000598133181079568,0.113667082169407 +0.582,0.560525404204978,-0.292833951900522,-0.000830939464160657,-2.1726290183599e-05,-0.00071904198192807,-0.000172310767918016,-0.019635651139771,-0.0688299875914454,0.0326599410441566,0.000739719138728129,0.0786752676292182 +0.584,0.56052532142186,-0.292835525982978,-0.000831218511209819,-5.37458478278018e-05,-0.000822009140588608,-0.000110771404698146,-0.012624176072562,-0.0361221365319241,0.0288728433939233,0.000831178649550595,0.0479355781731277 +0.586,0.560525189221586,-0.292837239937085,-0.00083138254977945,-7.22229944738472e-05,-0.000863530528055766,-5.68193943423223e-05,-0.00648159991650797,-0.00779389128582885,0.0254363967146231,0.000868406343475489,0.0273818581669814 +0.588,0.560525032529882,-0.292838980105091,-0.000831445788787188,-7.96722474938338e-05,-0.000853184705731923,-9.02581783965294e-06,-0.00174045444722992,0.0156519834038082,0.02277784530956,0.000856944148998791,0.027691948344279 +0.59,0.560524870532596,-0.292840652675908,-0.000831418653050808,-7.91848122627669e-05,-0.000800922594440533,3.42919868959179e-05,0.00147595511507115,0.0342228115325637,0.0208475168491165,0.000805557680829693,0.0400998532599469 +0.592,0.560524715790633,-0.292842183795468,-0.000831308620839605,-7.37684270335492e-05,-0.000716293459601668,7.4364249556813e-05,0.00330389793995466,0.0482159035822271,0.0193460508645868,0.000723911695379539,0.0520572644681166 +0.594,0.560524575458888,-0.292843517849746,-0.000831121196052581,-6.59692205029482e-05,-0.000608058980111625,0.000111676190354265,0.00401458578880298,0.0580566803382031,0.0179017366356074,0.000621738878340576,0.0608865108666822 +0.596,0.560524451913751,-0.292844616031389,-0.000830861916078188,-5.77100838783373e-05,-0.000484066738248856,0.000145971196099243,0.00392420582140395,0.0641984344192102,0.0161882640565061,0.000508879800100942,0.0663241906574784 +0.598,0.560524344618553,-0.292845454116699,-0.000830537311268184,-5.02723972173324e-05,-0.000351265242434784,0.00017642924658029,0.00333612481390188,0.0670730124878448,0.0139863953725963,0.000396285078590695,0.0685969240453761 +0.6,0.560524250824162,-0.292846021092359,-0.000830156199091867,-4.43655846227297e-05,-0.000215774688297476,0.000201916777589628,0.0025075153134435,0.0670775817494805,0.0112035149317513,0.000298826716143267,0.0680529819569383 +0.602,0.560524167156214,-0.292846317215452,-0.000829729644157826,-4.02423359635584e-05,-8.29549154368613e-05,0.000221243306307295,0.00163482606618803,0.0645828968776073,0.00786540431396697,0.000239686387149384,0.0650806254609812 +0.604,0.560524089854818,-0.29284635291202,-0.000829271225866637,-3.78262803579776e-05,4.25568992129532e-05,0.000233378394845496,0.000852717452204387,0.0599500125444962,0.00409157050167834,0.000240223629847278,0.0600955246279517 +0.606,0.560524015851093,-0.292846146987855,-0.000828796130578444,-3.68314661547408e-05,0.000156845134741124,0.000237609588314008,0.000240932801487403,0.0535458931465171,6.34495121373812e-05,0.00028708059782894,0.0535464727812546 +0.608,0.560523942528953,-0.292845725531481,-0.000828320787513381,-3.6862549152028e-05,0.000256740471799022,0.000233632192894045,-0.000165502722637711,0.0457524840617728,-0.00400724982883848,0.000349082395640414,0.0459279352917666 +0.61,0.560523868400896,-0.292845120025968,-0.000827861601806867,-3.74934770452917e-05,0.000339855070988215,0.000221580588998654,-0.000365217189823852,0.0369675705706728,-0.00790560790355636,0.000407437341831037,0.0378052019412434 +0.612,0.560523792555045,-0.292844366111197,-0.000827434465157387,-3.83234179113234e-05,0.000404610754081713,0.00020200976127982,-0.000379970513386673,0.0275978951219668,-0.0114343893693747,0.000453857345794147,0.0298752983751559 +0.614,0.560523715107224,-0.292843501582952,-0.000827053562761748,-3.90133590988384e-05,0.000450246651476082,0.000175843031521155,-0.000245545937749281,0.0180465611170077,-0.0144283838618073,0.000484937997158554,0.023106642374458 +0.616,0.560523636501609,-0.292842565124592,-0.000826731093031302,-3.93056016623205e-05,0.000476796998549744,0.000144296225832591,-4.48349690707061e-06,0.00869732608502203,-0.0167628181751977,0.000499701619906932,0.0188847974388313 +0.618,0.560523557884818,-0.292841594394958,-0.000826476377858418,-3.90312930864667e-05,0.000485035955816171,0.000108791758820365,0.000299413167870188,-0.000101472621971688,-0.0183566855648312,0.000498617054523545,0.0183594076664849 +0.62,0.560523480376437,-0.292840624980768,-0.000826295925996021,-3.81079489908398e-05,0.000476391108061857,7.08694835732659e-05,0.000625056881253804,-0.00805120002958513,-0.0191723972973664,0.00048313889029826,0.0208036856385896 +0.622,0.560523405453022,-0.292839688830525,-0.000826192899924125,-3.65310655614514e-05,0.00045283115569783,3.21021696308987e-05,0.000936738145385085,-0.0149138505503576,-0.0192127278565712,0.000455435092649544,0.0243398711640405 +0.624,0.560523334252174,-0.292838813656146,-0.000826167517317497,-3.43609964092994e-05,0.000416735705860427,-5.98142785301902e-06,0.00120572028750043,-0.0205187986948574,-0.0185161084199567,0.00041819266384334,0.0276644380443804 +0.626,0.560523268009036,-0.292838021887702,-0.000826216825635537,-3.17081844114497e-05,0.0003707559609184,-4.19622640489281e-05,0.00141094472910774,-0.024765125082593,-0.0171508239390008,0.000374467920013596,0.0301571375825306 +0.628,0.560523207419437,-0.292837330632302,-0.000826335366373693,-2.87172174928685e-05,0.000317675205530054,-7.45847236090224e-05,0.00153910763994735,-0.0276198041070097,-0.0152087820115554,0.00032757456522894,0.0315678551934074 +0.63,0.560523153140166,-0.29283675118688,-0.000826515164529973,-2.55517538516603e-05,0.000260276744490362,-0.00010279739209515,0.00158420131179948,-0.0291123699661111,-0.0127991158886675,0.000281005657716995,0.0318411235098822 +0.632,0.560523105212421,-0.292836289525324,-0.000826746555942073,-2.23804122456705e-05,0.00020122572566561,-0.000125781187163693,0.00154671699753583,-0.0293268694676052,-0.0100419700558435,0.000238355999643905,0.0310370547707555 +0.634,0.560523063618517,-0.292835946283977,-0.000827018289278628,-1.9364885861517e-05,0.000142969266619941,-0.000142965272318524,0.00143257299078936,-0.0283919799649867,-0.00706258205303982,0.000203111494237483,0.0292922661629664 +0.636,0.560523027752878,-0.292835717648257,-0.000827318417031347,-1.66501202825131e-05,8.76578058056631e-05,-0.000154031515375852,0.00125193524297407,-0.0264701293627156,-0.00398585331233547,0.000178007935646327,0.0267978005992834 +0.638,0.560522997018036,-0.292835595652754,-0.000827634415340131,-1.43571448896207e-05,3.70887491690785e-05,-0.000158908685567866,0.00101797299756345,-0.0237463850076558,-0.000931496449418922,0.000163809869279037,0.0237864405826275 +0.64,0.560522970324298,-0.292835569293261,-0.000827954051773619,-1.25782282922593e-05,-7.32773422496002e-06,-0.000157757501173528,0.000745668089774386,-0.0204177237755898,0.0019901480897283,0.000158427701783367,0.0205280333810972 +0.642,0.560522946705123,-0.292835624963691,-0.000828265445344825,-1.13744725305231e-05,-4.45821459332807e-05,-0.000150948093208952,0.000450706638677189,-0.0166831804412903,0.0046815440768802,0.000157804541141193,0.0173334503505382 +0.644,0.560522924826408,-0.292835747621844,-0.000828557844146455,-1.07754017375505e-05,-7.40604559901214e-05,-0.000139031324866007,0.000148521694942616,-0.0127352048698292,0.00706062382258703,0.000157894805861584,0.0145622769694329 +0.646,0.560522903603516,-0.292835921205515,-0.000828821570644289,-1.07803857507527e-05,-9.55229654125977e-05,-0.000122705597918604,-0.000146499104514142,-0.00875245883061314,0.00906261908312915,0.000155876609530466,0.0125999231035391 +0.648,0.560522881704865,-0.292836129713706,-0.000829048666538129,-1.13613981556071e-05,-0.000109070291312574,-0.00010278084853349,-0.000421624721247404,-0.00489414729923364,0.0106411175947174,0.000150297413950887,0.011720231604229 +0.65,0.560522858157923,-0.29283635748668,-0.000829232694038423,-1.24668846357423e-05,-0.000115099554609532,-8.01411275397345e-05,-0.000666206721733341,-0.00129591242251092,0.0117683172104824,0.000140804584467884,0.0118581832659744 +0.652,0.560522831837327,-0.292836590111925,-0.000829369231048288,-1.40262250425405e-05,-0.000114253941002618,-5.57075796915607e-05,-0.000871942767988186,0.00193277234147859,0.0124345976171974,0.00012788288571449,0.0126140838357862 +0.654,0.560522802053023,-0.292836814502444,-0.000829455524357189,-1.5954655707695e-05,-0.000107368465243618,-3.04027370709447e-05,-0.00103297800868596,0.00470980867847692,0.0126474248409239,0.000112724730156812,0.0135353868234751 +0.656,0.560522768018704,-0.292837019585786,-0.000829490841996572,-1.81581370772843e-05,-9.541470628871e-05,-5.11788032786508e-06,-0.00114588911970248,0.00698043101446387,0.0124297462487585,9.72618980759094e-05,0.0143016806995146 +0.658,0.560522729420475,-0.292837196161269,-0.000829475995878501,-2.0538212186505e-05,-7.94467411857624e-05,1.93162479240894e-05,-0.00120954995325162,0.00871608483998808,0.0118179272600577,8.43013658176444e-05,0.0147341966442455 +0.66,0.560522685865855,-0.29283733737275,-0.000829413577004876,-2.29963368902908e-05,-6.05503669287576e-05,4.21538287123657e-05,-0.00122493074711238,0.00991241289743925,0.0108593957350716,7.72795168249026e-05,0.0147540794533388 +0.662,0.560522637435127,-0.292837438362737,-0.000829307380563651,-2.54379351749545e-05,-3.97970895960053e-05,6.2753830864376e-05,-0.00119482487098699,0.0105865443911224,0.00961006697136611,7.85426010164698e-05,0.0143476798058667 +0.664,0.560522584114114,-0.292837496561109,-0.000829162561681418,-2.77756363742387e-05,-1.82041893642681e-05,8.05940965978302e-05,-0.00112355254267005,0.0107738767803067,0.00813169716198241,8.71681529735743e-05,0.0135448621228702 +0.666,0.560522526332582,-0.292837511179494,-0.00082898500417726,-2.99321453456347e-05,3.29841752522153e-06,9.52806195123056e-05,-0.00101663092527682,0.0105245395315423,0.00648924416545709,9.99260193233556e-05,0.0124060372653053 +0.668,0.560522464385533,-0.292837483367439,-0.000828781439203369,-3.1842160075346e-05,2.38939687619011e-05,0.000106551073259659,-0.000880451746232413,0.00989970849393782,0.00474834740363943,0.000113745224577754,0.0110148185009122 +0.67,0.560522398963942,-0.292837415603619,-0.000828558799884221,-3.34539523305643e-05,4.28972515009729e-05,0.000114274009126863,-0.000721955169258324,0.00896793366650382,0.00297299876297202,0.000126561804170136,0.00947543007772548 +0.672,0.560522330569724,-0.292837311778433,-0.000828324343166861,-3.47299807523793e-05,5.97657034279164e-05,0.000118443068311547,-0.000548329187610717,0.00780161262675659,0.00122347161481822,0.000137138146773055,0.00791597797294937 +0.674,0.560522260044019,-0.292837176540806,-0.000828085027610975,-3.56472690810072e-05,7.41037020079992e-05,0.000119167895586136,-0.000366726586598087,0.00647373149531559,-0.000445436503654361,0.000144786303850372,0.00649939239787434 +0.676,0.560522187980647,-0.292837015363624,-0.000827847671584517,-3.61968870987716e-05,8.56606294091788e-05,0.000116661322296929,-0.000184017065474329,0.00505496121350201,-0.00198582495152671,0.000149190556626369,0.00543415088937559 +0.678,0.56052211525647,-0.292836833898288,-0.000827618382321788,-3.63833373429045e-05,9.43235468620073e-05,0.000111224595780029,-6.57045251539756e-06,0.00361118310601704,-0.00335774028546731,0.000150304988058507,0.00493103502529431 +0.68,0.560522042447298,-0.292836638069437,-0.000827402773201397,-3.62231689088332e-05,0.000100105361833247,0.00010323036115506,0.000159920743314501,0.00220148495266858,-0.00452987163144374,0.000148289274385463,0.00503903241092248 +0.682,0.560521970363794,-0.292836433476841,-0.000827205460877167,-3.57436543696465e-05,0.000103129486672682,9.31051092542544e-05,0.000310579929829746,0.000876653822451389,-0.00547987855092912,0.000143463797587803,0.0055582416959111 +0.684,0.56052189947268,-0.29283622555149,-0.00082703035276438,-3.49808491895142e-05,0.000103611977123052,8.13108469513434e-05,0.000441446532106757,-0.000321835728206432,-0.0061943961566016,0.000136273825239157,0.00621844007943953 +0.686,0.560521830440398,-0.292836019028932,-0.000826880217489362,-3.39778682412195e-05,0.000101842143759856,6.8327524627848e-05,0.000549534459604038,-0.00136235366043902,-0.00666872417530439,0.000127259453077522,0.0068286073063761 +0.688,0.560521763561207,-0.292835818182915,-0.000826757042665868,-3.27827113510981e-05,9.81625624812964e-05,5.46359502501259e-05,0.000632855948201616,-0.00222320173728918,-0.00690626156350098,0.000117028551628045,0.0072828278435887 +0.69,0.560521699309552,-0.292835626378682,-0.000826661673688361,-3.1446444448413e-05,9.29493368106992e-05,4.07024783738441e-05,0.000690406357084505,-0.002892302890245,-0.00691770938102131,0.000106231585829118,0.00752972642445212 +0.692,0.56052163777543,-0.292835446385568,-0.000826594232752373,-3.00210859227601e-05,8.65933509203164e-05,2.69651127260406e-05,0.000722121362706217,-0.0033665494315882,-0.00672010818953543,9.55342416514565e-05,0.00755082567782257 +0.694,0.560521579225209,-0.292835280005279,-0.000826553813237457,-2.85579589975881e-05,7.94831390843464e-05,1.38220456157023e-05,0.000728801560767599,-0.00365087560183496,-0.00633574287218357,8.55813961431574e-05,0.00734858368105555 +0.696,0.560521523543594,-0.292835128453012,-0.00082653894456991,-2.71058796796897e-05,7.19898485129766e-05,1.62214123730631e-06,0.000712018846660278,-0.0037571202295139,-0.00579097652990411,7.69408756404871e-05,0.00693962048147608 +0.698,0.56052147080169,-0.292834992045885,-0.000826547324672508,-2.5709883610947e-05,6.44546581662908e-05,-9.34186050391416e-06,0.000673999710210092,-0.00370274990876828,-0.00511504995824585,7.00190790591852e-05,0.00635046207543968 +0.7,0.560521420704059,-0.292834870634379,-0.000826576312011926,-2.44098808388493e-05,5.71788488779034e-05,-1.88380585956771e-05,0.000617500467425651,-0.00350950687955063,-0.00433889662740401,6.49625699401055e-05,0.00561462102979195 +0.702,0.560521373162167,-0.292834763330489,-0.000826622676906891,-2.32398817412444e-05,5.04166306480882e-05,-2.66974470135302e-05,0.000545670883478205,-0.00320204526088585,-0.00349400798918574,6.16009937118958e-05,0.00477063333262275 +0.704,0.560521327744532,-0.292834668967856,-0.00082668310179998,-2.22271973049365e-05,4.43706678343604e-05,-3.28140905524197e-05,0.000461919072436596,-0.00280660886545257,-0.00261138304209751,5.94942770599166e-05,0.0038613137590297 +0.706,0.560521284253377,-0.292834585847818,-0.0008267539332691,-2.13922054514981e-05,3.91901951862783e-05,-3.714297918192e-05,0.00036977618189675,-0.0023498001808234,-0.00172059063958235,5.80783845791723e-05,0.00293576692935836 +0.708,0.56052124217571,-0.292834512207076,-0.000826831673716708,-2.07480925773495e-05,3.49714671110668e-05,-3.96964531107491e-05,0.000272770472875549,-0.00185747689451787,-0.000848961353473731,5.6826888416247e-05,0.00206042702472872 +0.71,0.560521201261007,-0.292834445961949,-0.000826912719081543,-2.03011235599959e-05,3.17602876082068e-05,-4.05388245958149e-05,0.000174310225975471,-0.00135380688257025,-2.09286442343082e-05,5.53556481884593e-05,0.00136514290033083 +0.712,0.560521160971216,-0.292834385165925,-0.000826993829015091,-2.00508516734477e-05,2.95562395807858e-05,-3.97801676876863e-05,7.75819825049594e-05,-0.000860499730498397,0.000742480129461986,5.34609174280413e-05,0.00113919071837998 +0.714,0.5605211210576,-0.292834327736991,-0.000827071839752294,-1.99907956299761e-05,2.83182886862132e-05,-3.75689040779669e-05,-1.45359835279635e-05,-0.000396226322585401,0.00142399266510329,5.11173154386521e-05,0.00147816159596799 +0.716,0.560521081008034,-0.292834271892771,-0.000827144104631403,-2.01089956075595e-05,2.79713342904442e-05,-3.40841970272731e-05,-9.9541902498501e-05,2.3772948887224e-05,0.00201029304140731,4.84613220344493e-05,0.00201289638476065 +0.718,0.560521040621618,-0.292834215851654,-0.000827208176540403,-2.03889632399701e-05,2.84133804817621e-05,-2.95277319123377e-05,-0.000175360503895661,0.000387896423315047,0.00249207488759589,4.57702628820189e-05,0.0025281717083563 +0.72,0.560520999452181,-0.292834158239249,-0.000827262215559052,-2.08104376231421e-05,2.95229199837043e-05,-2.41158974768896e-05,-0.000240374692372923,0.000688219047723092,0.00286396700278912,4.34310215116655e-05,0.00295528889339894 +0.722,0.560520957379867,-0.292834097759974,-0.000827304640130311,-2.13504620094618e-05,3.11662566726545e-05,-1.80718639011812e-05,-0.000293438440213122,0.000920378172980517,0.00312433888222801,4.1878037774782e-05,0.00327027453748083 +0.724,0.560520914050333,-0.292834033574222,-0.000827334503014657,-2.19841913839946e-05,3.32044326756264e-05,-1.16185419479775e-05,-0.000333874219937691,0.001083328565743,0.00327501096207549,4.14828824590966e-05,0.00346565572118877 +0.726,0.560520869443102,-0.292833964942243,-0.000827351114298103,-2.26859588892125e-05,3.54995709356265e-05,-4.97182005287921e-06,-0.000361453818265023,0.00117899224064133,0.00332088244316824,4.24215895738812e-05,0.00354244714393509 +0.728,0.560520823306497,-0.292833891575938,-0.000827354390294868,-2.34300066570547e-05,3.79204016381917e-05,1.66498782469548e-06,-0.000376367631504948,0.00121182855764013,0.00326950153495958,4.46059890239841e-05,0.00350711011151059 +0.73,0.560520775723075,-0.292833813260637,-0.000827344454346804,-2.41914294152323e-05,4.0346885166187e-05,8.10618608695912e-06,-0.000379181561149798,0.00118835195503375,0.00313059368532708,4.77368479546153e-05,0.00336995190588209 +0.732,0.560520726540779,-0.292833730188398,-0.00082732196555052,-2.49467329016539e-05,4.26738094583267e-05,1.41873625660038e-05,0.00899143370175491,-0.282736079652845,0.00102245374233173,5.14264013200543e-05,0.28288086189972 +0.734,0.560520675936144,-0.292833642565399,-0.00082728770489654,1.17743053917874e-05,-0.00109059743344519,1.2196001056286e-05,-0.0348605664751699,-0.196290463740783,0.0666985345582764,0.00109072917745262,0.210223451980894 +0.736,0.560520773638001,-0.292838092578131,-0.000827273181546295,-0.000164388998802334,-0.000742488045504807,0.00028098150079911,-0.0782948208211119,0.506033757518425,0.109316173104064,0.000810717487436963,0.523593609985592 +0.738,0.560520018380148,-0.292836612517581,-0.000826163778893343,-0.000301404977892661,0.000933537596628508,0.000449460693472542,0.00728034710295587,0.45831093436685,-0.0172471513919594,0.00107905158356504,0.458693122081956 +0.74,0.560519568018089,-0.292834358427745,-0.000825475338772405,-0.00013526761039051,0.0010907556919626,0.000211992895231272,0.0783674730317484,0.00724331247412002,-0.115025924624611,0.00111936870315285,0.139373203094161 +0.742,0.560519477309707,-0.292832249494813,-0.000825315807312418,1.20649142343332e-05,0.000962510846524988,-1.0643005025901e-05,0.0576064981966383,-0.0828745462290447,-0.0899386064555708,0.00096264529572928,0.135187469753374 +0.744,0.560519616277746,-0.292830508384359,-0.000825517910792509,9.51583823960433e-05,0.000759257507046417,-0.000147761530591012,0.0278935820829939,-0.107541675564704,-0.0495468436079518,0.000779333400842778,0.121647661778579 +0.746,0.560519857943236,-0.292829212464785,-0.000825906853434782,0.000123639242566309,0.000532344144266172,-0.000208830379457708,0.0145481725277729,-0.396986592290232,-0.0190356752539575,0.000585053055390111,0.397708889408425 +0.748,0.560520110834717,-0.292828379007782,-0.00082635323231034,0.000153351072507135,-0.000828688862114512,-0.000223904231606842,-0.043851460206079,-0.305064784295039,0.0680855016714845,0.000871994774389837,0.315631286023806 +0.75,0.560520471347526,-0.292832527220233,-0.00082680247036121,-5.17665982580073e-05,-0.000687914992913984,6.35116272282298e-05,-0.0946459493278427,0.410210256273496,0.122056339834676,0.00069277741372264,0.438324149654082 +0.752,0.560519903768324,-0.292831130667753,-0.000826099185801427,-0.000225232724804236,0.000812152162979473,0.000264321127731864,-0.0101703457114355,0.379286849844229,-9.19690330836164e-05,0.000883281707452623,0.379423192299774 +0.754,0.560519570416627,-0.292829278611581,-0.000825745185850282,-9.24479811037492e-05,0.000829232406462931,6.31437510958954e-05,0.063056533591843,-0.0532468175627742,-0.0971113981772588,0.000836755726864731,0.127444002075911 +0.756,0.560519533976399,-0.292827813738127,-0.000825846610797043,2.69934095631363e-05,0.000599164892728376,-0.000124124464977171,0.0454684720915809,-0.124593916388943,-0.0731371460191073,0.000612481914544355,0.151459790318414 +0.758,0.560519678390266,-0.29282688195201,-0.000826241683710191,8.94259072625746e-05,0.000330856740907159,-0.000229404832980534,0.0289448023604865,-0.415867832056354,-0.0361509515222485,0.000412419390048853,0.418438462164872 +0.76,0.560519891680028,-0.292826490311164,-0.000826764230128965,0.000142772619005083,-0.00106430643549704,-0.000268728271066165,-0.034909673082839,-0.319279598315347,0.0605233377521177,0.00110695397060953,0.326835159656694 +0.762,0.560520249480742,-0.292831139177752,-0.000827316596794456,-5.02127850687816e-05,-0.000946261652354229,1.26885180279368e-05,-0.0904450745617401,0.401778766288135,0.122202181611699,0.000947677918382751,0.429581030474058 +0.764,0.560519690828888,-0.292830275357773,-0.000826713476056853,-0.000219007679241878,0.0005428086296555,0.000220080455380633,-0.00858034758521862,0.376514986192427,0.00537969617898231,0.000625332694520238,0.376651162646745 +0.766,0.560519373450025,-0.292828967943234,-0.000826436274972933,-8.45341754096562e-05,0.00055979829241548,3.4207302743866e-05,0.0631541196005613,-0.050360450275233,-0.088118812432633,0.000567177480657059,0.119538876015227 +0.768,0.560519352692186,-0.292828036164604,-0.000826576646845878,3.36087991603673e-05,0.000341366828554568,-0.000132394794349899,0.0444106941430155,-0.11597595890242,-0.0623253475382986,0.000367680900495739,0.138950285150373 +0.77,0.560519507885221,-0.29282760247592,-0.000826965854150333,9.3108601162406e-05,9.58944568058006e-05,-0.000215094087409329,0.0274405559178014,-0.402098765610314,-0.0248729242167955,0.000253239856450266,0.403800772378547 +0.772,0.560519725126591,-0.292827652586776,-0.000827437023195515,0.000143371022831573,-0.00126702823388669,-0.000231886491217081,-0.0367737938850032,-0.301051342094932,0.0711343724089582,0.00129602744587557,0.311519375692545 +0.774,0.560520081369313,-0.292832670588855,-0.000827893400115201,-5.39865743776069e-05,-0.00110831091157393,6.94434022265044e-05,-0.0924598254348206,0.423459131738967,0.13088431132565,0.00111179585043283,0.452766119010408 +0.776,0.560519509180293,-0.292832085830423,-0.000827159249586609,-0.00022646827890771,0.00042680829306918,0.00029165075408552,-0.0097423782652317,0.399877790137337,0.0116117992114001,0.000564369881144184,0.400164959560815 +0.778,0.560519175496197,-0.292830963355683,-0.000826726797098859,-9.29560874385337e-05,0.00049120024897542,0.000115890599072105,0.0628080332951141,-0.0267507527657029,-0.084038998759972,0.000513175554502245,0.108272827304502 +0.78,0.560519137355944,-0.292830121029427,-0.000826695687190321,2.47638542727468e-05,0.000319805282006369,-4.45052409543678e-05,0.0442450548976402,-0.0930593639369979,-0.0601653025768255,0.000323835426335695,0.119321136993471 +0.782,0.560519274551614,-0.292829684134555,-0.000826904818062676,8.40241321520273e-05,0.000118962793227428,-0.000124770611235198,0.0274416636220076,-0.38092364545994,-0.0243820938508609,0.000191780881175309,0.382688326283133 +0.784,0.560519473452472,-0.292829645178254,-0.000827194769635262,0.000134530508760777,-0.00120388929983339,-0.000142033616357812,-0.0369918858877937,-0.282224282024262,0.0700494765292283,0.00121968088130316,0.293131155197916 +0.786,0.560519812673649,-0.292834499691754,-0.000827472952528108,-6.39434113991477e-05,-0.00100993433486962,0.000155427294881716,-0.0929511152561456,0.439489031382744,0.127843810130215,0.00102382311197011,0.467048775099255 +0.788,0.560519217678827,-0.292833684915593,-0.000826573060455735,-0.000237273952263805,0.000554066825697585,0.00036934162416305,-0.00961638482732672,0.4122501024717,0.00670553681504647,0.000706896181274792,0.412416762594651 +0.79,0.56051886357784,-0.292832283424451,-0.000825995586031456,-0.000102408950708455,0.00063906607501718,0.000182249442141902,0.0634981709435322,-0.0183431491246333,-0.0901061169246082,0.000672389693990104,0.111747935731331 +0.792,0.560518808043024,-0.292831128651293,-0.000825844062687167,1.67187315103234e-05,0.000480694229199052,8.91715646461621e-06,0.0449002114516483,-0.0883332323155238,-0.0668972389410853,0.000481067535433435,0.119557640900328 +0.794,0.560518930452766,-0.292830360647535,-0.000825959917405597,7.71918950981387e-05,0.000285733145755085,-8.53395136224399e-05,0.0281029474830107,-0.379710410475242,-0.0313558761889237,0.000308033848525212,0.382037907087876 +0.796,0.560519116810604,-0.29282998571871,-0.000826185420741657,0.000129130521442366,-0.00103814741270192,-0.000116506348291079,-0.036661608714128,-0.283997090674142,0.0630365077775029,0.00105261506319252,0.293209860641944 +0.798,0.560519446974852,-0.292834513237185,-0.000826425942798761,-6.94545397583734e-05,-0.000850255216941486,0.000166806517487572,-0.0929719157841123,0.435281816289073,0.120475485468861,0.000869242360510343,0.461116448758272 +0.8,0.560518838992445,-0.292833386739578,-0.000825518194671707,-0.000242757141694083,0.000702979852454377,0.000365395593584366,-0.0090783094791602,0.40559152934827,-0.000898324833790986,0.000828628772497751,0.405694110592667 +0.802,0.560518475946285,-0.292831701317776,-0.000824964360424424,-0.000105767777675014,0.000772110900451594,0.000163213218152408,0.0645433978763154,-0.0270904456714515,-0.0972507333994383,0.000796228999704324,0.119822567168405 +0.804,0.560518415921335,-0.292830298295976,-0.000824865341799097,1.54164498111786e-05,0.00059461806976857,-2.36073400133874e-05,0.0557429390424246,-0.382753327813484,-0.0739555680992139,0.000595286168428756,0.393797932013693 +0.806,0.560518537612084,-0.292829322845496,-0.000825058789784477,0.000117203978494684,-0.000758902410802342,-0.000132609054244448,-0.0166062682563361,-0.303311557942748,0.0306092180889921,0.000779265553559373,0.305304100134731 +0.808,0.560518884737249,-0.292833333905619,-0.000825395778016075,-5.10086232141659e-05,-0.000618628162002421,9.88295323425813e-05,-0.0817004976311207,0.409108546269021,0.100081525736088,0.000628545908369271,0.429023409311412 +0.81,0.560518333577591,-0.292831797358144,-0.000824663471655107,-0.000209598012029799,0.000877531774273742,0.000267717048699906,-0.00412376467001651,0.375996158655938,-0.0114399237877843,0.000941098166862232,0.376192754602405 +0.812,0.5605180463452,-0.292829823778522,-0.000824324909821275,-6.7503681894232e-05,0.000885356472621334,5.30698371914439e-05,0.0652768821843285,-0.0573290568767203,-0.100422536918054,0.000889510673517353,0.132786964838944 +0.814,0.560518063562864,-0.292828255932254,-0.000824451192306341,5.15095167075152e-05,0.000648215546766861,-0.000133973098972312,0.0437308390957568,-0.126757318686527,-0.0713467268372707,0.000663916724167984,0.151888641968413 +0.816,0.560518252383267,-0.292827230916335,-0.000824860802217164,0.000107419674488796,0.000378327197875228,-0.000232317070157639,0.0155612948221639,-0.130988329918868,-0.0308690918425849,0.000456773112393921,0.135473234635712 +0.818,0.560518493241562,-0.292826742623462,-0.000825380460586972,0.000113754695996171,0.000124262227091387,-0.000257449466342652,-0.00430645467203172,-0.118107115306548,-0.000791403363849252,0.000307671025062499,0.11818825050385 +0.82,0.560518707402051,-0.292826733867427,-0.000825890600082535,9.01938558006687e-05,-9.41012633509652e-05,-0.000235482683613036,-0.0151576610846193,-0.0975903504465968,0.0171822996421211,0.000269150652367845,0.100244015336764 +0.822,0.560518854016985,-0.292827119028516,-0.000826322391321424,5.31240516576936e-05,-0.000266099174695,-0.000188720267774167,-0.0190315719503231,-0.0733278216029364,0.0256178031279516,0.000330524242842553,0.0799715073575262 +0.824,0.560518919898258,-0.292827798264126,-0.000826645481153632,1.40675679993762e-05,-0.000387412549762711,-0.00013301147110123,-0.0182810993426541,-0.0481898680126934,0.0276407245763596,0.000409851719073588,0.0584847982587182 +0.826,0.560518910287257,-0.292828668678715,-0.000826854437205829,-2.00003457129227e-05,-0.000458858646745774,-7.81573694687287e-05,-0.0149581015213007,-0.0244000596255622,0.0259510840924098,0.000465896818967753,0.0386337478951221 +0.828,0.560518839896875,-0.292829633698713,-0.000826958110631507,-4.57648380858266e-05,-0.00048501278826496,-2.92071347315903e-05,-0.0106275301267611,-0.00347388601565357,0.0225523422653709,0.000488041885400015,0.0251718180173662 +0.83,0.560518727227905,-0.292830608729868,-0.000826971265744755,-6.25104662199671e-05,-0.000472754190808388,1.20519995927548e-05,-0.00634136414212664,0.0137547125425544,0.0187351849390355,0.000477021313997724,0.0240917448726989 +0.832,0.56051858985501,-0.292831524715476,-0.000826909902633136,-7.11302946543332e-05,-0.000429993938094742,4.57336050245517e-05,-0.0027054744000671,0.0270094322983564,0.0151876034092816,0.000438230382612136,0.0311045386097679 +0.834,0.560518442706726,-0.29283232870562,-0.000826788331324657,-7.33323638202352e-05,-0.000364716461614965,7.28024132298796e-05,1.48946271987759e-05,0.036410268668134,0.0121621289081442,0.000379072452610973,0.0383878270538192 +0.836,0.560518296525555,-0.292832983581322,-0.000826618692980216,-7.10707161455381e-05,-0.00028435286342221,9.43821206571271e-05,0.00178988342203252,0.0423186485160068,0.00964333288135753,0.000307921389853947,0.0434403679075864 +0.838,0.560518158423861,-0.292833466117074,-0.000826410802842029,-6.61728301321051e-05,-0.000195441867550938,0.00011137574475531,0.0128561183782016,-0.239399796021777,0.0072069980087963,0.000234480113355676,0.239853044457063 +0.84,0.560518031834234,-0.292833765348793,-0.000826173190001195,-1.96462426327315e-05,-0.00124195204750932,0.000123210112692312,-0.0332612622999661,-0.15143869482731,0.0727644843181301,0.00124820334682768,0.171273640817464 +0.842,0.560518079838891,-0.292838433925264,-0.000825917962391259,-0.00019921787933197,-0.00080119664686018,0.00040243368202783,-0.0798877681854047,0.551769132293988,0.110628332005563,0.000918453427679379,0.568392345744063 +0.844,0.560517234962717,-0.29283697013538,-0.000824563455273084,-0.000339197315374351,0.000965124481666634,0.000565723440714566,0.0100418405049596,0.499192206675213,-0.0216666010645003,0.00116900089616877,0.499763083238132 +0.846,0.560516723049629,-0.292834573427337,-0.000823655068628401,-0.000159050517312131,0.00119557217984067,0.000315767277769829,0.0848231229214068,0.0409773664306056,-0.121057694555358,0.00124675534006332,0.153391890766059 +0.848,0.560516598760648,-0.292832187846661,-0.000823300386162004,9.51763112766456e-08,0.00112903394738906,8.14926624931322e-05,0.06242706097892,-0.0546971988188426,-0.0955685906947957,0.00113197116458665,0.126579133463945 +0.85,0.560516723430335,-0.292830057291548,-0.000823329097978429,9.0657726603549e-05,0.000976783384565304,-6.6507085009354e-05,0.0307129664270377,-0.0847439600090703,-0.0551233006020404,0.000983233337571615,0.105657007974058 +0.852,0.560516961391554,-0.292828280713122,-0.000823566414502042,0.000122947042019428,0.000790058107352775,-0.000139000539915029,0.006361267346211,-0.0956929801301796,-0.0234531331508303,0.00081155957158538,0.09873024674858 +0.854,0.560517215218503,-0.292826897059118,-0.000823885100138089,0.000116102795988393,0.000594011464044585,-0.000160319617612675,-0.00883765420567338,-0.0960059147181445,-0.00341579995538632,0.000626124475199771,0.0964723145884969 +0.856,0.560517425802738,-0.292825904667266,-0.000824207692972492,8.75964251967342e-05,0.000406034448480197,-0.000152663739736575,-0.0163263039407169,-0.0890771573794356,0.00696632507148769,0.000442541890096543,0.0908285079265703 +0.858,0.560517565604204,-0.292825272921325,-0.000824495755097035,5.07975802255256e-05,0.000237702834526843,-0.000132454317326724,-0.0182239150575691,-0.0776642366979994,0.0106495140388477,0.000276816144538849,0.0804814071147616 +0.86,0.560517628993059,-0.292824953855928,-0.000824737510241799,1.47007649664577e-05,9.53775016881985e-05,-0.000110065683581184,-0.0165783993200108,-0.0641181198204887,0.0104135421570561,0.00014638112932026,0.0670404241751576 +0.862,0.560517624407263,-0.292824891411318,-0.00082493601783136,-1.55160170545176e-05,-1.87696447551122e-05,-9.08001486984999e-05,-0.013080069756477,-0.0502153776581193,0.00843997701501646,9.40091131387744e-05,0.0525728598251593 +0.864,0.560517566928991,-0.292825028934507,-0.000825100710836593,-3.76195140594504e-05,-0.000105484008944279,-7.63057755211182e-05,-0.00897457794885036,-0.0371121053784062,0.00620239268278587,0.000135516328753789,0.0386823097806916 +0.866,0.560517473929207,-0.292825313347354,-0.000825241240933444,-5.14143288499191e-05,-0.000167218066268737,-6.59905779673564e-05,-0.00508094678830505,-0.0254207885991286,0.00452707406978225,0.000186976124888204,0.0263159060816927 +0.868,0.560517361271675,-0.292825697806772,-0.000825364673148463,-5.79433012126706e-05,-0.000207167163340793,-5.81974792419892e-05,-0.00185868405389033,-0.0153499085490949,0.00373338345568269,0.000222851085508272,0.01590636825001 +0.87,0.560517242156002,-0.292826142016007,-0.000825474030850412,-5.88490650654804e-05,-0.000228617700465117,-5.10570441446256e-05,0.000506388223020513,-0.00685637010014449,0.00379438322081759,0.000241528646710541,0.00785261637984381 +0.872,0.560517125875415,-0.292826612277574,-0.000825568901325041,-5.59177483205886e-05,-0.000234592643741371,-4.30199463587188e-05,0.00201437867775045,0.000222391167981062,0.00448587102967051,0.000244971873609028,0.00492241995199605 +0.874,0.560517018485009,-0.292827080386582,-0.000825646110635847,-5.07915503544786e-05,-0.000227728135793192,-3.31135600259435e-05,0.0131571471634339,-0.278784148599608,0.00579578990789891,0.000235661607558053,0.279154622409419 +0.876,0.560516922709214,-0.292827523190117,-0.000825701355565145,-3.28915966685272e-06,-0.00134972923813981,-1.98367867271232e-05,-0.033947815537838,-0.186067346513024,0.0749134351080148,0.00134987900678855,0.203434349060997 +0.878,0.56051700532837,-0.292832479303534,-0.000825725457782756,-0.000186582812505831,-0.000971997521845291,0.000266540180406116,-0.0816860473429325,0.523414989881537,0.114458032743521,0.00102500536396982,0.541974633375694 +0.88,0.560516176377964,-0.292831411180205,-0.00082463519484352,-0.000330033349038583,0.000743930721386343,0.00043799534424696,0.00980805384132031,0.476417508034343,-0.0167345792206203,0.000924226623335446,0.476812212536024 +0.882,0.560515685194974,-0.292829503580649,-0.000823973476405768,-0.00014735059714055,0.000933672510292082,0.000199601863523635,0.0859515433548895,0.0237825808491187,-0.113944009757887,0.000966073216104712,0.144694562152963 +0.884,0.560515586975575,-0.292827676490163,-0.000823836787389426,1.37728243809754e-05,0.000839061044782818,-1.7780694784586e-05,0.0630742329130184,-0.0654347552461741,-0.0860192575615272,0.000839362425100436,0.125137439334233 +0.886,0.560515740286272,-0.29282614733647,-0.000824044599184906,0.000104946334511524,0.000671933489307385,-0.000144475166722474,0.0411902244951134,-0.373932002629279,-0.0432553044736605,0.000695256370686159,0.378672415881339 +0.888,0.560516006760913,-0.292824988756206,-0.000824414688056316,0.000178533722361429,-0.000656666965734298,-0.000190801912679228,-0.0312486381076615,-0.290728114860083,0.0577633953108627,0.000706746888064581,0.298053558931143 +0.89,0.560516454421161,-0.292828774004333,-0.000824807806835623,-2.00482179191219e-05,-0.000490978970132949,8.65784145209768e-05,-0.0946707282428736,0.420322393467065,0.116542558468296,0.000498957014196123,0.446335780741645 +0.892,0.560515926568042,-0.292826952672087,-0.000824068374398232,-0.000200149190610066,0.00102462260813396,0.000275368321193958,-0.00988686971181705,0.381741073585128,-0.00540891208211657,0.00107969389176668,0.38190738901537 +0.894,0.560515653824399,-0.2928246755139,-0.000823706333550847,-5.95956967663902e-05,0.00103598532420757,6.49427661925105e-05,0.0653038802062021,-0.0581765508995967,-0.0996748830443468,0.00103972823464945,0.13260539262965 +0.896,0.560515688185254,-0.29282280873079,-0.000823808603333462,6.10663302147429e-05,0.000791916404535575,-0.000123331210983429,0.0550795032083772,-0.417390472656764,-0.0718462296088808,0.000803785590851868,0.427095351235916 +0.898,0.56051589808972,-0.292821507848282,-0.000824199658394781,0.000160722316067119,-0.000633576566419491,-0.000222442152243013,-0.0211542190292624,-0.337488645838629,0.0363783811910961,0.000690457413235888,0.340102151817383 +0.9,0.560516331074519,-0.292825343037056,-0.000824698371942434,-2.35505459023066e-05,-0.000558038178818942,2.21823137809551e-05,-0.089667993030673,0.378218297122229,0.104488844498637,0.0005589752161559,0.40250136381986 +0.902,0.560515803887536,-0.292823740000997,-0.000824110929139657,-0.000197949656055574,0.000879296622069425,0.000195513225751537,-0.00800472427231468,0.345998925684043,-0.00967221326642063,0.000922264624367102,0.34622663660478 +0.904,0.560515539275894,-0.292821825850567,-0.000823916319039428,-5.55694429915654e-05,0.00082595752391723,-1.65065392847274e-05,0.0654413563269672,-0.0865031934173253,-0.0979230583208686,0.000827989287460311,0.146131101892173 +0.906,0.560515581609764,-0.292820436170902,-0.000824176955296796,6.38157692522955e-05,0.000533283848400123,-0.000196179007531938,0.0435187602620956,-0.152372876340706,-0.0665378196646262,0.000571795696351349,0.171868139527988 +0.908,0.560515794538971,-0.292819692715174,-0.000824701035069555,0.000118505598056817,0.000216466018554406,-0.000282657817943232,0.0253312941178585,-0.437039935595462,-0.023332547908518,0.000375228671617762,0.438394785049816 +0.91,0.560516055632156,-0.292819570306827,-0.000825307586568569,0.000165140945723729,-0.00121487589398173,-0.00028950919916601,-0.0429821983491396,-0.330775773858121,0.0765138012184806,0.00125976606801984,0.342219876283165 +0.912,0.560516455102754,-0.29282455221875,-0.00082585907186622,-5.34231953397412e-05,-0.00110663707687808,2.33973869306902e-05,-0.10240740429962,0.401363293253686,0.13273911413092,0.00110817286351758,0.434970622050607 +0.914,0.560515841939375,-0.292823996855135,-0.000825213997020846,-0.000244488671474752,0.000390577279033022,0.000241447257357668,-0.0126702614094975,0.380238586845937,0.00835811328307733,0.000520213513340309,0.380541425482736 +0.916,0.560515477148068,-0.292822989909633,-0.000824893282836789,-0.000104104240977731,0.00041431727050567,5.68298400629996e-05,0.0663715685050857,-0.0454201484652305,-0.0870130375972207,0.000430959539110581,0.118488158498325 +0.918,0.560515425522411,-0.292822339586053,-0.000824986677660594,2.09976025455916e-05,0.0002088966851721,-0.000106604893031215,0.047253159711491,-0.107821317343187,-0.0601581377195763,0.000235464068610798,0.132201736411544 +0.92,0.560515561138479,-0.292822154322893,-0.000825319702408914,8.49083978682329e-05,-1.6967998867079e-05,-0.000183802710815306,0.0194639896700099,-0.106866909869996,-0.0205730111089291,0.000203176734684753,0.110556013428145 +0.922,0.560515765156002,-0.292822407458048,-0.000825721888503855,9.88535612256313e-05,-0.000218570954307884,-0.000188896937466931,0.00984943589188435,-0.375788168572449,0.0100448079758467,0.000305331527390203,0.376051402329117 +0.924,0.560515956552724,-0.29282302860671,-0.000826075290158781,0.00012430614143577,-0.00152012067315688,-0.000143623478911919,-0.0502841250860086,-0.265024416665898,0.0961742286061452,0.00153194209467993,0.286384212052187 +0.926,0.560516262380568,-0.292828487940741,-0.000826296382419503,-0.000102282939118403,-0.00127866862097148,0.00019579997695765,-0.103965600156686,0.466519605977349,0.140849440224792,0.00129761044727161,0.498285012406392 +0.928,0.560515547420967,-0.292828143281194,-0.000825292090250951,-0.000291556259190972,0.000345957750752523,0.00041977428198725,-0.00993247920022531,0.440465663997801,0.0079886055028011,0.000617172800273222,0.440650057440103 +0.93,0.560515096155531,-0.292827104109738,-0.000824617285291554,-0.000142012855919304,0.000483194035019729,0.000227754398968854,0.0713379190026008,0.00699445054999636,-0.0926184650362759,0.000552735192451746,0.117116186292902 +0.932,0.560514979369543,-0.292826210505054,-0.000824381072655075,-6.20458318056904e-06,0.000373935552952509,4.93004218421466e-05,0.0632052850543795,-0.349871274247376,-0.0675820964997699,0.000377222515510616,0.361900754861871 +0.934,0.560515071337199,-0.292825608367526,-0.000824420083604185,0.000110808284298214,-0.000916291061969775,-4.25739870302255e-05,-0.00315607683043506,-0.555650535423445,0.0403511949166601,0.000923948229332392,0.557122694986054 +0.936,0.560515422602681,-0.292829875669302,-0.000824551368603196,-1.88288905023093e-05,-0.00184866658874128,0.000210705201508787,-0.122421582524068,0.245998700413446,0.17463130620992,0.00186073086860747,0.325574104592771 +0.938,0.560514996021637,-0.292833003033881,-0.00082357726279815,-0.000378878045798059,6.77037396840107e-05,0.000655951237809454,-0.0897295553969888,0.914856534462575,0.0942440794449854,0.00076052902399495,0.924064834452133 +0.94,0.560513907090497,-0.292829604854343,-0.000821927563651959,-0.000377747112090265,0.00181075954910903,0.000587681519288729,0.0783122967237813,0.423813369020836,-0.129741976764505,0.00194085357342989,0.450092843881911 +0.942,0.560513485033188,-0.292825759995685,-0.000821226536720995,-6.5628858902933e-05,0.00176295721576736,0.000136983330751433,0.133718909715863,-0.106020699261466,-0.196814011247346,0.00176948854888944,0.260493551764262 +0.944,0.560513644575062,-0.29282255302548,-0.000821379630328953,0.000157128526773187,0.00138667675206316,-0.000199574525700657,0.0912374038125606,-0.489515227991565,-0.125115737812688,0.00140974883576721,0.513423188158174 +0.946,0.560514113547295,-0.292820213288676,-0.000822024834823798,0.00029932075634731,-0.000195103696198906,-0.000363479620499318,-0.0117908346558559,-0.414743097046365,0.0174451353415067,0.000509682059689302,0.415277248445633 +0.948,0.560514841858087,-0.292823333440265,-0.00082283354881095,0.000109965188149763,-0.000272295636122299,-0.000129793984334631,-0.0980108076642504,0.305947389235561,0.105098040250641,0.000321066557625547,0.338017043155489 +0.95,0.560514553408048,-0.292821302471221,-0.000822544010761136,-9.27224743096921e-05,0.00102868586074334,5.69125405032455e-05,-0.022611045473464,0.282856412410492,-0.000303580067334552,0.0010344230733128,0.283758879297186 +0.952,0.56051447096819,-0.292819218696822,-0.000822605898648937,1.9521006255907e-05,0.00085913001351967,-0.000131008304603969,0.0500870535116714,-0.137779397307858,-0.0851641011262795,0.000869280521863201,0.16954291307113 +0.954,0.560514631492073,-0.292817865951167,-0.000823068043979552,0.000107625739736994,0.000477568271511907,-0.000283743864001873,0.0287220792566378,-0.189806681823168,-0.0538875128677437,0.000565831542216868,0.19938755814899 +0.956,0.560514901471149,-0.292817308423736,-0.000823740874104945,0.000134409323282458,9.99032862269987e-05,-0.000346558356074944,0.00227605764791053,-0.176040117896155,-0.0138291240993372,0.000384901580861354,0.176597135369359 +0.958,0.560515169129366,-0.292817466338022,-0.000824454277403852,0.000116729970328636,-0.000226592200072712,-0.000339060360399222,-0.00367994251043651,-0.431853709566993,0.0160546492081524,0.000424183732715867,0.432167699168795 +0.96,0.56051536839103,-0.292818214792536,-0.000825097115546541,0.000119689553240713,-0.00162751155204093,-0.000282339759242336,-0.0605108627857477,-0.30802827850896,0.101121657882305,0.00165615071199171,0.329800810443418 +0.962,0.560515647887579,-0.29282397638423,-0.000825583636440821,-0.000125313480814348,-0.00145870531410852,6.54262711299868e-05,-0.111152573034624,0.435756289988997,0.143654313312059,0.00146553923824517,0.472096388982538 +0.964,0.560514867137107,-0.292824049613792,-0.000824835410462021,-0.000324920738897782,0.000115513607915063,0.000292277494005899,-0.0120688724847273,0.419119476052081,0.0093845643088161,0.000452043154667565,0.41939821522807 +0.966,0.560514348204624,-0.292823514329798,-0.000824414526464798,-0.000173588970753258,0.000217772590099807,0.000102964528365251,0.0731623190017293,-0.00663531631375779,-0.0902348120512124,0.000296917035327097,0.116357525112096 +0.968,0.560514172781224,-0.292823178523432,-0.00082442355234856,-3.22714628908649e-05,8.89723426600319e-05,-6.86617541989509e-05,0.0554518509721101,-0.0708944767162377,-0.064120864417573,0.000116927163504499,0.110509817929264 +0.97,0.560514219118772,-0.292823158440428,-0.000824689173481594,4.82184331351831e-05,-6.5805316765144e-05,-0.000153518929305041,0.0272534837059135,-0.0732989844307029,-0.0238773819110846,0.00017384883854527,0.0817656581922307 +0.972,0.560514365654956,-0.292823441744699,-0.000825037628065781,7.67424719327891e-05,-0.00020422359506278,-0.000164171281843289,0.00564909442835048,-0.0612819618835135,0.00678990890335544,0.000273036432661998,0.061915216086748 +0.974,0.56051452608866,-0.292823975334808,-0.000825345858608967,7.0814810848585e-05,-0.000310933164299198,-0.000126359293691619,-0.00764393963403885,-0.0435478847773951,0.0251720668467334,0.000343017260788547,0.0508771169687367 +0.976,0.5605146489142,-0.292824685477356,-0.000825543065240547,4.61667133966337e-05,-0.00037841513417236,-6.34830144563558e-05,-0.0140583033339525,-0.0234062252774114,0.0333052489571647,0.000386470532280274,0.0430665401729123 +0.978,0.560514710755513,-0.292825488995345,-0.000825599790666792,1.4581597512775e-05,-0.000404558065408844,6.86170213703984e-06,-0.0155909989085767,-0.00334105233756876,0.0341423086200678,0.000404878913046343,0.0376820795020335 +0.98,0.56051470724059,-0.292826303709618,-0.000825515618431999,-1.61972822376732e-05,-0.000391779343522635,7.30862200239157e-05,-0.0141049506935387,0.014679321109351,0.0304528502215531,0.000398867147707477,0.0366307000876988 +0.982,0.560514645966384,-0.292827056112719,-0.000825307445786697,-4.18382052613797e-05,-0.00034584078097144,0.000128673103023252,-0.0110911407974479,0.0293225678182906,0.0244430958277683,0.000371366461388291,0.0397528781510538 +0.984,0.560514539887769,-0.292827687072742,-0.000825000926019906,-6.05618454274647e-05,-0.000274489072249473,0.000170858603334989,-0.00761403023269434,0.0399118514696205,0.0176663123470366,0.000328944752564225,0.0443060710970911 +0.986,0.560514403719003,-0.292828154069008,-0.000824624011373357,-7.22943261921571e-05,-0.000186193375092958,0.000199338352411399,-0.00434714070296493,0.0463350436873122,0.0110845404521775,0.000282188272736795,0.0478403693843647 +0.988,0.560514250710464,-0.292828431846242,-0.00082420357261026,-7.79504082393245e-05,-8.91488975002241e-05,0.000215196765143699,-0.0016473245753601,0.0488972679221766,0.00519768464813524,0.00024562866241238,0.0492003294116123 +0.99,0.56051409191737,-0.292828510664598,-0.000823763224312782,-7.88836244935975e-05,9.39569659574867e-06,0.00022012909100394,0.000359815163775145,0.0481624551004755,0.000186817781730464,0.000234025045740808,0.0481641614599587 +0.992,0.560513935175966,-0.292828394263456,-0.000823323056246245,-7.65111475842239e-05,0.000103500922901678,0.000215944036270621,0.00169764134000383,0.044813958790385,-0.00395622346254648,0.000251392568599394,0.0450202686872393 +0.994,0.560513785872779,-0.292828096660906,-0.000822899448167699,-7.20930591335821e-05,0.000188651531757289,0.000204304197153754,0.0024703363382672,0.0395497714543446,-0.00732704437660796,0.00028727515483287,0.0402985429390671 +0.996,0.56051364680373,-0.292827639657329,-0.00082250583945763,-6.66298022311551e-05,0.000261700008719057,0.000186635858764189,0.0028134066118457,0.0330149853844385,-0.0100401016337598,0.000328267221765383,0.0346223649901981 +0.998,0.56051351935357,-0.292827049860871,-0.000822152904732643,-6.08394326861993e-05,0.000320711473295043,0.000164143790618715,0.00286172574526233,0.0257664406443092,-0.0121907353864414,0.000365377160850724,0.0286480883651953 +1,0.560513403445999,-0.292826356811436,-0.000821849264295155,-5.51828992501057e-05,0.000364765771296293,0.000137872917218423,0.00273125864286294,0.0182613624326311,-0.013840556071891,0.000393837735090666,0.0230759208711003 +1.002,0.560513298621973,-0.292825590797786,-0.000821601413063769,-4.99143981147476e-05,0.000393756923025567,0.000108781566331151,0.00251114990607037,0.0108615964208858,-0.0150181064095117,0.000411545126010719,0.0187035737437628 +1.004,0.560513203788406,-0.292824781783743,-0.00082141413802983,-4.51382996258242e-05,0.000408212156979837,7.78004915803764e-05,0.00226298167704808,0.00384579088366642,-0.0157282856400389,0.000418004243626054,0.0163490110638596 +1.006,0.560513118068775,-0.292823957949158,-0.000821290211097447,-4.08624714065553e-05,0.000409140086560233,4.58684237709949e-05,0.0020241272963295,-0.00257616322371645,-0.0159650241681255,0.000413726073990028,0.0162977208515733 +1.008,0.560513040338521,-0.292823145223397,-0.000821230664334746,-3.70417904405062e-05,0.000397907504084971,1.39403949078742e-05,0.0018128300388609,-0.00825003178966941,-0.0157234474390186,0.000399870992516783,0.0178487023799472 +1.01,0.560512969901613,-0.292822366319142,-0.000821234449517816,-3.36111512511117e-05,0.000376139959401555,-1.70253659850794e-05,0.00163359512722616,-0.013067040699477,-0.0150091846277955,0.000378022276637178,0.0199672684379396 +1.012,0.560512905893916,-0.29282164066356,-0.000821298765798686,-3.05074099316016e-05,0.000345639341287063,-4.60963436033079e-05,0.00148217162848629,-0.0169569224148236,-0.0138441855158586,0.000350031611714833,0.0219407274974223 +1.014,0.560512847871973,-0.292820983761777,-0.000821418834892229,-2.76824647371665e-05,0.000308312269742261,-7.24021080485137e-05,0.00134965781606322,-0.0198836398630775,-0.0122690016063354,0.000317906967173445,0.0234031859122061 +1.016,0.560512795164057,-0.292820407414481,-0.00082158837423088,-2.51087786673487e-05,0.000266104781834753,-9.51723500286494e-05,0.00122560850357445,-0.0218428554167593,-0.0103421543915655,0.000283725187270117,0.0241986075306093 +1.018,0.560512747436859,-0.292819919342649,-0.000821799524292344,-2.27800307228687e-05,0.000220940848075224,-0.000113770725614776,0.00110018299331882,-0.0228600977661419,-0.00813728489885283,0.000249554735789258,0.0242901189379849 +1.02,0.560512704043934,-0.292819523651088,-0.00082204345713334,-2.07080466940734e-05,0.000174664390770185,-0.000127721489624061,0.000965527442720047,-0.0229887927374883,-0.00573899069412908,0.000217368929501879,0.0237139800319799 +1.022,0.560512664604672,-0.292819220685086,-0.00082231041025084,-1.89179209519885e-05,0.000128985677125271,-0.000136726688391292,0.000816507909895402,-0.0223075959614183,-0.00323803149918088,0.000188916330567423,0.0225561603721576 +1.024,0.56051262837225,-0.29281900770838,-0.000822590363886905,-1.74420150544918e-05,8.54340069245118e-05,-0.000140673615620784,0.000650965510662348,-0.0209167680502442,-0.00072649838922522,0.000165506071067387,0.020939501944252 +1.026,0.560512594836612,-0.292818878949059,-0.000822873104713323,-1.63140589093391e-05,4.53186049242937e-05,-0.000139632681948193,0.000469598408769921,-0.0189335980227412,0.00170667295053272,0.000147706500664076,0.0190161612664688 +1.028,0.560512563116014,-0.29281882643396,-0.000823148894614698,-1.55636214194121e-05,9.69961483354708e-06,-0.000133846923818653,0.000275609118860487,-0.0164870747956791,0.00397957651727953,0.000135097401364062,0.0169628012121111 +1.03,0.560512532582126,-0.292818840150599,-0.000823408492408598,-1.52116224338972e-05,-2.06296942584227e-05,-0.000123714375879075,7.41825281758145e-05,-0.0137121426574404,0.00602045352373486,0.000126341697556335,0.0149757877901944 +1.032,0.560512502269525,-0.292818908952737,-0.000823643752118214,-1.52668913067089e-05,-4.51489557962148e-05,-0.000109765109723714,-0.00012812026439768,-0.0107439070175241,0.00777002180651908,0.000119665723966048,0.0132597583566646 +1.034,0.560512471514561,-0.292819020746423,-0.000823847552847493,-1.57241034914879e-05,-6.36053223285193e-05,-9.26342886529984e-05,-0.000324000964946336,-0.00771216140602048,0.0091830021651043,0.000113463632470377,0.0119962468690048 +1.036,0.560512439373111,-0.292819163374026,-0.000824014289272826,-1.65628951664942e-05,-7.59976014202967e-05,-7.30331010632967e-05,-0.000506042222014889,-0.0047365376620867,0.0102289202169245,0.000106694886329459,0.0112836907330463 +1.038,0.56051240526298,-0.292819324736828,-0.000824139685251746,-1.77482723795474e-05,-8.25514729768661e-05,-5.17186077853004e-05,-0.000667263841402919,-0.00192252003552995,0.0108922136796141,9.90179844995776e-05,0.0110806878470351 +1.04,0.560512368380021,-0.292819493579918,-0.000824221163703967,-1.92319505321059e-05,-8.36876815624165e-05,-2.94642463448402e-05,-0.000801595539945409,0.000641538332873947,0.0111717675128214,9.07834664420302e-05,0.011218846473802 +1.042,0.560512328335178,-0.292819659487554,-0.000824257542237125,-2.09546545393291e-05,-7.99853196453703e-05,-7.03153773401465e-06,-0.00090423479814916,0.00288633096937052,0.011079921482908,8.29830791700305e-05,0.0114853474959331 +1.044,0.560512284561403,-0.292819813521197,-0.000824249289854903,-2.28488897247025e-05,-7.21423576849344e-05,1.48554395867917e-05,-0.000971895203205617,0.00476246451996953,0.010641081927068,7.71185815436815e-05,0.0116986440739325 +1.046,0.560512236939619,-0.292819948056985,-0.000824198120478778,-2.48422353521516e-05,-6.09354615654922e-05,3.55327899742574e-05,-0.0010029262628719,0.00624034950102991,0.00988998877585188,7.47853347712367e-05,0.0117371078622563 +1.048,0.560512185192462,-0.292820057263043,-0.000824107158695006,-2.68605947761902e-05,-4.71809596808148e-05,5.44153946901992e-05,-0.000997332487429057,0.00730923690669959,0.00886976593995196,7.68672211506539e-05,0.0115365663903205 +1.05,0.56051212949724,-0.292820136780824,-0.000823980458900017,-2.88315653018678e-05,-3.16985139386938e-05,7.10118537340653e-05,-0.000956682524866357,0.00797555144496641,0.00762981257774324,8.29381595794464e-05,0.0110787500322094 +1.052,0.560512069866201,-0.292820184057099,-0.00082382311128007,-3.06873248756556e-05,-1.52787539009491e-05,8.49346450011722e-05,-0.000883949337338041,0.00826068398754319,0.00622364830244609,9.15917362553246e-05,0.0103804655274016 +1.054,0.560512006747941,-0.29282019789584,-0.000823640720320012,-3.236736265122e-05,1.34422201147899e-06,9.59064469438497e-05,-0.000783278351901284,0.00819841451324409,0.00470677219335108,0.000101229934620176,0.00948584366240723 +1.056,0.56051194039675,-0.292820178680211,-0.000823439485492294,-3.38204382832607e-05,1.75149041520273e-05,0.000103761733774577,-0.000659725538088016,0.00783212207589033,0.00313462423726096,0.00011053095181456,0.00846186995327144 +1.058,0.560511871466187,-0.292820127836223,-0.000823225673384914,-3.5006264803572e-05,3.26727103150403e-05,0.000108444943892894,-0.00051896620334446,0.00721193516711737,0.00156070438083605,0.000118546406233007,0.007397103009914 +1.06,0.560511800371691,-0.29282004798937,-0.000823005705716723,-3.58963030966386e-05,4.63626448204967e-05,0.000110004551297921,-0.000367009207746793,0.00639194580251411,3.49058282278491e-05,0.00012465568866688,0.00640256864997892 +1.062,0.560511727880975,-0.292819942385644,-0.000822785655179722,-3.64743016345592e-05,5.82404935250968e-05,0.000108584567205805,-0.000209916951876554,0.00542760172916878,-0.00139789449633831,0.000128502677018993,0.0056086571191377 +1.064,0.560511654474484,-0.292819815027396,-0.0008225713674479,-3.67359709041448e-05,6.80730517371719e-05,0.000104412973312568,-5.35552782676695e-05,0.00437335626046752,-0.00269896582427014,0.000129944376280979,0.00513940946698928 +1.066,0.560511580937091,-0.292819670093437,-0.000822368003286472,-3.66885227476299e-05,7.57339185669669e-05,9.77887039087243e-05,9.66269703139843e-05,0.00328064462054577,-0.00383654793698062,0.000129012808414744,0.00504886779094662 +1.068,0.560511507720393,-0.292819512091721,-0.000822180212632265,-3.63494630228888e-05,8.1195630219355e-05,8.9066781564645e-05,0.000235777147805649,0.00219622257879858,-0.00478637933454262,0.000125884492321552,0.00527147148462255 +1.07,0.560511435539239,-0.292819345310916,-0.000822011736160214,-3.57454141564073e-05,8.45188088821613e-05,7.86431865705538e-05,0.000359776687608448,0.00116089356183568,-0.00553192143828983,0.000120854931558639,0.00566385627697849 +1.072,0.560511364738737,-0.292819174016486,-0.000821865639885982,-3.49103562724551e-05,8.58392044666977e-05,6.69390958114857e-05,0.000465336651156443,0.00020862253591325,-0.00606431267442114,0.000114315110753586,0.00608571686611735 +1.074,0.560511295897814,-0.292819001954098,-0.000821743979776968,-3.38840675517815e-05,8.53532990258143e-05,5.43859358728693e-05,0.000550050643921549,-0.000633972284391767,-0.00638206132212714,0.000106729310450371,0.00643701664497201 +1.076,0.560511229202466,-0.29281883260329,-0.000821648096142491,-3.27101536967689e-05,8.33033153291306e-05,4.14108505229771e-05,0.000612411121814204,-0.00134777883645242,-0.00649052580604935,9.86116374507956e-05,0.00665721266094928 +1.078,0.560511165057199,-0.292818668740837,-0.000821578336374876,-3.14344230645247e-05,7.99621836800046e-05,2.84238326486719e-05,0.000651788248373641,-0.00192103565693768,-0.00640120386731501,9.04985526664046e-05,0.00671495471815504 +1.08,0.560511103464774,-0.292818512754555,-0.000821534400811896,-3.01030007032743e-05,7.56191727013799e-05,1.5806035053717e-05,0.000668382044155535,-0.0023489069196636,-0.00613088492040086,8.29112819554841e-05,0.00659938240908888 +1.082,0.560511044645197,-0.292818366264146,-0.000821515112234661,-2.87608948879025e-05,7.05665560013501e-05,3.90029296706839e-06,0.000663145989510115,-0.00263283664661551,-0.00570069426386598,7.63022947615183e-05,0.00631423047577766 +1.084,0.560510988421195,-0.292818230488331,-0.000821518799640028,-2.74504167452338e-05,6.50878261149179e-05,-6.99674200174693e-06,0.000637694758109929,-0.00277973335321979,-0.00513508059338252,7.09852441461731e-05,0.00587389349750718 +1.086,0.56051093484353,-0.292818105912841,-0.000821543099202668,-2.62101158554628e-05,5.9447622588471e-05,-1.66400294064617e-05,0.000594193610981008,-0.00280103798142028,-0.00446077749391426,6.70662402645771e-05,0.0053006995454281 +1.088,0.560510883580731,-0.292817992697841,-0.000821585359757654,-2.50736423013098e-05,5.38836741892367e-05,-2.4839851977404e-05,0.00053524273901928,-0.00271172458793378,-0.00370578161646567,6.44139435886764e-05,0.00462306742535866 +1.09,0.56051083454896,-0.292817890378145,-0.000821642458610577,-2.40691448993857e-05,4.86007242367359e-05,-3.14631558723244e-05,0.000463753514756692,-0.00252928186381118,-0.00289837576942369,6.26999546249361e-05,0.00387465045776206 +1.092,0.560510787304151,-0.292817798294944,-0.000821711212381143,-2.3218628242283e-05,4.3766546733992e-05,-3.64333550550988e-05,0.000382828463374451,-0.00227271636232817,-0.00206622657872301,6.14980054232895e-05,0.00309533351524278 +1.094,0.560510741674447,-0.292817715311958,-0.000821788192030798,-2.25378310458879e-05,3.95098587874232e-05,-3.97280621872164e-05,0.000295642288428155,-0.001961615599122,-0.00123557976610539,6.03928944065976e-05,0.00233709167125186 +1.096,0.560510697152827,-0.292817640255508,-0.000821870124629892,-2.20360590885704e-05,3.5920084337504e-05,-4.13756741195203e-05,0.000205333257341511,-0.00161529906811397,-0.000430568250324448,5.90574869750916e-05,0.00168426299733972 +1.098,0.560510653530211,-0.29281757163162,-0.000821953694727276,-2.17164980165218e-05,3.30486625149673e-05,-4.14503351885142e-05,0.000114903281334122,-0.00125208199364124,0.000327351445429669,5.72883117866985e-05,0.0012992578849816 +1.1,0.560510610286835,-0.292817508060858,-0.000822035925970646,-2.15764459632339e-05,3.09117563629391e-05,-4.00662683378017e-05,2.71324074319068e-05,-0.000888666102510926,0.00101983226117458,5.5012594561271e-05,0.00135296764566543 +1.102,0.560510567224427,-0.292817447984595,-0.000822113959800627,-2.16079683867942e-05,2.94939981049236e-05,-3.73710061438159e-05,-5.54933460295004e-05,-0.000539667963095347,0.00163193236788622,5.2281854617248e-05,0.00171974540999526 +1.104,0.560510523854962,-0.292817390084866,-0.000822185409995221,-2.17984193473519e-05,2.87530845105577e-05,-3.35385388662568e-05,-0.000130837653211646,-0.000217286331288813,0.00215228211555146,4.92619989870254e-05,0.00216717561498498 +1.106,0.56051048003075,-0.292817332972257,-0.000822248113956092,-2.21313189996408e-05,2.86248527797683e-05,-2.87618776816101e-05,-0.000197153862679933,6.88936928339156e-05,0.00257312303669071,4.62214569772435e-05,0.00258158442597378 +1.108,0.560510435329686,-0.292817275585455,-0.000822300457505948,-2.25870347980716e-05,2.90286592818933e-05,-2.32460467194939e-05,-0.000253108985159844,0.000311968409438812,0.00289023528287496,4.35111007532382e-05,0.0029180213222716 +1.11,0.560510389682611,-0.29281721685762,-0.00082234109814297,-2.31437549402802e-05,2.98727264175236e-05,-1.72009365501102e-05,-0.000297792027148524,0.000507667196475436,0.00310276045481505,4.15196988735813e-05,0.00315808937710359 +1.112,0.560510342754666,-0.292817156094549,-0.000822369261252148,-2.37782029066657e-05,3.10593280677951e-05,-1.08350049002337e-05,-0.000330708668783153,0.000654203767547212,0.00321294036514929,4.05891872877689e-05,0.00329550247808843 +1.114,0.560510294569799,-0.292817092620307,-0.000822384438162571,-2.44665896154128e-05,3.24895414877124e-05,-4.34917508951304e-06,-0.000351762355355055,0.000752044832658116,0.003225783206523,4.09035406468688e-05,0.00333091361047664 +1.116,0.560510244888307,-0.292817026136383,-0.000822386657952506,-2.5185252328086e-05,3.40675073984275e-05,2.06812792585831e-06,-0.000361224987421859,0.000803614490924029,0.00314867781327221,4.24166140596935e-05,0.00326962562281275 +1.118,0.56051019382879,-0.292816956350278,-0.000822376165650868,-2.59114895651002e-05,3.57039994514085e-05,8.24553616357581e-06,-0.000359697660545777,0.000812954759066284,0.00299097024491351,4.48795023917747e-05,0.00312028538009724 +1.12,0.560510141242349,-0.292816883320385,-0.000822353675807852,-2.66240429702691e-05,3.73193264346927e-05,1.40320089055124e-05,-0.000348065382071993,0.000785360006194668,0.00276352124170542,4.79423514603348e-05,0.00289395741207159 +1.122,0.560510087332618,-0.292816807072972,-0.000822320037615246,-2.73037510933882e-05,3.88454394761872e-05,1.92996211303975e-05,-0.00032744552902475,0.000727004234590822,0.00247825827741354,5.12536668702319e-05,0.00260336701622342 +1.124,0.560510032027345,-0.292816727938628,-0.00082227647732333,-2.79338250863681e-05,4.0227343373056e-05,2.39450420151665e-05,-0.00029913470311893,0.000644575975927708,0.00214773755898012,5.45151609730509e-05,0.00226224145077556 +1.126,0.560509975597318,-0.292816646163599,-0.000822224257447185,-2.85002899058639e-05,4.1423743379898e-05,2.7890571366318e-05,-0.000264553497164587,0.000544935981755532,0.00178472777789123,5.74984957321634e-05,0.00188472730607122 +1.128,0.560509918026185,-0.292816562243654,-0.000822164915037865,-2.89920390750264e-05,4.24070873000781e-05,3.10839531267315e-05,-0.000225193169667292,0.000434807825161474,0.00140182562433089,6.00425809321114e-05,0.00148488548027016 +1.13,0.560509859629161,-0.292816476535249,-0.000822099921634678,-2.94010625845331e-05,4.31629746805439e-05,3.34978738636415e-05,-0.000182564192929835,0.00032051150969381,0.00101111287311578,6.20449225783814e-05,0.00107629296874354 +1.132,0.560509800421935,-0.292816389591755,-0.000822030923542411,-2.97222958467458e-05,4.36891333388533e-05,3.51284046191946e-05,-0.00013814921429045,0.000207744599300952,0.000623859414648762,6.34520295450937e-05,0.000671895522528375 +1.134,0.560509740739978,-0.292816301778716,-0.000821959408016201,-2.99536594416949e-05,4.39939530777477e-05,3.59933115222366e-05,-9.33607288700066e-05,0.000101415750797251,0.00025027828073898,6.42511330304212e-05,0.000285728189044359 +1.136,0.560509680607297,-0.292816213615943,-0.000821886950296322,-3.00957387622258e-05,4.40947963420423e-05,3.61295177421505e-05,-4.95049556903382e-05,5.5302949719671e-06,-0.000100666717149644,6.44627536517849e-05,0.000112317018933311 +1.138,0.560509620357023,-0.292816125399531,-0.000821814889945233,-3.01516792644562e-05,4.40160742576356e-05,3.5590644653638e-05,-7.75209757497563e-06,-7.68724875421788e-05,-0.000421398730146571,6.41344879326394e-05,0.000428423113436795 +1.14,0.56050956000058,-0.292816037551646,-0.000821744587717707,-3.01267471525257e-05,4.37873063918736e-05,3.44439228215642e-05,3.08864253617535e-05,-0.000143734548568863,-0.000705814079925147,6.33350843876118e-05,0.000720962625345103 +1.142,0.560509499850034,-0.292815950250305,-0.000821677114253946,-3.00281335630092e-05,4.34411360633602e-05,3.27673883339374e-05,6.55740184374309e-05,-0.000193950844967761,-0.000949317697368499,6.21491982730296e-05,0.000971144156495198 +1.144,0.560509439888046,-0.292815863787102,-0.000821613518164371,-2.9864451078776e-05,4.30115030120026e-05,3.06466520320902e-05,9.56580578637122e-05,-0.000227304300381981,-0.00114881375246067,6.06720043377844e-05,0.00117498542410073 +1.146,0.56050938039223,-0.292815778204293,-0.000821554527645818,-2.96455013315544e-05,4.25319188618322e-05,2.81721333240947e-05,0.000120672791203979,-0.000244370520346981,-0.00130265437239124,5.90041436451648e-05,0.00133085960478994 +1.148,0.56050932130604,-0.292815693659426,-0.000821500829631075,-2.93817599139601e-05,4.20340209306147e-05,2.54360345425253e-05,0.000140336284260023,-0.000246399810277518,-0.0014105535559028,5.72462975613749e-05,0.00143877325289802 +1.15,0.56050926286519,-0.292815610068209,-0.000821452783507648,-2.90841561945143e-05,4.15463196207222e-05,2.25299191004835e-05,0.000154542115215639,-0.000235183855029059,-0.00147347145856125,5.54939822886089e-05,0.00150010427978733 +1.152,0.560509204969416,-0.292815527474148,-0.000821410709954673,-2.87635914530975e-05,4.10932855104984e-05,1.95421487082803e-05,0.000163346905445896,-0.000212914720575943,-0.00149347558625597,5.38321268710849e-05,0.00151739388970013 +1.154,0.560509147810824,-0.292815445695067,-0.000821374614912815,-2.84307685727307e-05,4.06946607384184e-05,1.65560167554599e-05,0.000166953902092501,-0.000182042193819811,-0.00147358493810014,5.23303516619009e-05,0.00149414374661551 +1.156,0.560509091246341,-0.292815364695505,-0.000821344485887651,-2.80957758447275e-05,4.03651167352192e-05,1.364780895588e-05,0.0124557535327589,-0.286784986487654,0.00362579239548942,5.10389846946552e-05,0.287078248290057 +1.158,0.560509035427721,-0.2928152842346,-0.000821320023676991,2.13922455583049e-05,-0.0011064452852122,3.10591863374176e-05,-0.0416632729496879,-0.195930604143801,0.0757675865130021,0.00110708783318862,0.214161988034853 +1.16,0.560509176815324,-0.292819790476646,-0.000821220249142302,-0.000194748867643479,-0.000743357299839986,0.000316718155007889,-0.0968755693858679,0.515757901973362,0.10492247349593,0.000831154369768584,0.535163353413053 +1.162,0.56050825643225,-0.2928182576638,-0.00082005315105696,-0.000366110031985167,0.000956586322681251,0.000450749080321139,0.00820986522515053,0.460921670251273,-0.0374853543257807,0.00111904811410027,0.46251631299141 +1.164,0.560507712375196,-0.292815964131355,-0.000819417252821017,-0.000161909406742877,0.00110032938116511,0.000166776737704766,0.0961879291078159,-0.00115252606069926,-0.133424280611763,0.00112461277037319,0.164485515104331 +1.166,0.560507608794623,-0.292813856346275,-0.000819386044106141,1.86416844460968e-05,0.000951976218438454,-8.29480421259132e-05,0.0707388680618036,-0.0921717768082029,-0.0988253070609983,0.000955764934784641,0.152532177622779 +1.168,0.560507786941933,-0.292812156226481,-0.000819749044989521,0.000121046065504338,0.000731642273932297,-0.000228524490539228,0.0346750676713525,-0.11442570528597,-0.0506944854566925,0.000776000006285513,0.129867367740796 +1.17,0.560508092978885,-0.292810929777179,-0.000820300142068298,0.000157341955131507,0.000494273397294575,-0.000285725983952684,0.00707211821049379,-0.116385941759112,-0.0138276150174129,0.000592200996304004,0.117417652983733 +1.172,0.560508416309754,-0.292810179132892,-0.000820891948925331,0.000149334538346313,0.000266098506895851,-0.00028383495060888,-0.0101633157445491,-0.107610205853786,0.00921111232687203,0.0004167391257159,0.108480846148599 +1.174,0.560508690317039,-0.292809865383152,-0.000821435481870733,0.00011668869215331,6.38325738794298e-05,-0.000248881534645195,-0.0187434471832226,-0.092223529878782,0.0209737331781714,0.000282192959961567,0.0964178083086417 +1.176,0.560508883064523,-0.292809923802597,-0.000821887475063912,7.43607496134224e-05,-0.000102795612619277,-0.000199940017896194,-0.0210708375469881,-0.0734497104075414,0.0249433667661586,0.000236796262244937,0.0803804186323657 +1.178,0.560508987760037,-0.292810276565602,-0.000822235241942318,3.2405341965358e-05,-0.000229966267750736,-0.000149108067580561,-0.0194352361149175,-0.0538881638686982,0.0242970587946075,0.000275985155957171,0.0622254744783106 +1.18,0.56050901268589,-0.292810843667668,-0.000822483907334234,-3.38019484624752e-06,-0.000318348268094071,-0.000102751782717764,-0.0157164970204793,-0.035387964586464,0.0214873446622437,0.000334536955159473,0.044283431402745 +1.182,0.560508974239258,-0.292811549958675,-0.000822646249073189,-3.0460646116559e-05,-0.000371518126096592,-6.3158688931586e-05,-0.0112877229577202,-0.0190498653414306,0.018150263693048,0.000378077490691682,0.0286311391883742 +1.184,0.560508890843306,-0.292812329740172,-0.000822736542089961,-4.85310866771282e-05,-0.000394547729459793,-3.01507279455715e-05,-0.007042011640479,-0.00535514650332191,0.0151914443030296,0.000398663070263084,0.0175797469273233 +1.186,0.560508780114911,-0.292813128149592,-0.000822766851984971,-5.86286926784751e-05,-0.00039293871210988,-2.39291171946765e-06,-0.00347907740810837,0.00565253056514225,0.0129617640518345,0.000397295709901649,0.0145623627456847 +1.188,0.560508656328535,-0.29281390149502,-0.000822746113736839,-6.24473963095617e-05,-0.000371937607199224,2.16963282617666e-05,-0.000804675520660324,0.0141878717697941,0.0114496185440668,0.000377767112934636,0.0182493006127443 +1.19,0.560508530325326,-0.292814615900021,-0.000822680066671924,-6.18473947611164e-05,-0.000336187225030704,4.34055624567997e-05,0.000975789005153159,0.0205763564832539,0.0104477501129685,0.00034457363997377,0.0230974910484138 +1.192,0.560508408938956,-0.29281524624392,-0.000822572491487011,-5.85442402889491e-05,-0.000289632181266208,6.34873287136405e-05,0.00197513071870103,0.025151499442183,0.00968156297059124,0.000302233137500218,0.0270228001343239 +1.194,0.560508296148365,-0.292815774428746,-0.00082242611735707,-5.39468718863123e-05,-0.000235581227261972,8.21318143391647e-05,0.00236069145481687,0.0281981954661225,0.00889632901027169,0.000255253627890414,0.0296623627101669 +1.196,0.560508193151469,-0.29281618856883,-0.000822243964229655,-4.91014744696816e-05,-0.000176839399401718,9.90726447547274e-05,0.00231156781216324,0.0299338181082575,0.00790521701137663,0.000208562980690614,0.031046244028633 +1.198,0.560508099742467,-0.292816481786344,-0.000822029826778051,-4.47006006376593e-05,-0.000115845954828941,0.000113752682384671,0.0019930112213351,0.0305143619816483,0.00660578446370212,0.00016839863923828,0.0312847370015527 +1.2,0.560508014349066,-0.292816651952649,-0.000821788953500116,-4.11294295843411e-05,-5.47819514751246e-05,0.000125495782609536,0.00154259461454531,0.0300538156271234,0.0049759623444237,0.000142975115450683,0.0305019939208419 +1.202,0.560507935224749,-0.29281670091415,-0.000821527843647613,-3.85302221794781e-05,4.36930767955257e-06,0.000133656531762366,0.00106490523343883,0.0286475992372636,0.00305884456045651,0.000139168018429318,0.0288301143816688 +1.204,0.560507860228177,-0.292816634475418,-0.000821254327373067,-3.68698086505858e-05,5.980844547393e-05,0.000137731160851362,0.000632198564332053,0.0263933697605689,0.000942604155319819,0.000154616640790707,0.0264177619214134 +1.206,0.560507787745514,-0.292816461680368,-0.000820976919004207,-3.60014279221499e-05,0.000109942786721828,0.000137426948383645,0.00028832946447066,0.0234053050239546,-0.00125988323853437,0.000179637650025367,0.0234409629264494 +1.208,0.560507716222466,-0.292816194704271,-0.000820704619579532,-3.57164907927032e-05,0.000153429665569749,0.000132691627897224,5.3858820181496e-05,0.0198205897493364,-0.00342861871185928,0.000205969410606055,0.0201150218755865 +1.21,0.560507644879551,-0.292815847961706,-0.000820446152492618,-3.57859926414239e-05,0.000189225145719174,0.000123712473536208,-6.85862061589048e-05,0.0157988190793712,-0.00544985603954245,0.000228892046935278,0.0167125198346065 +1.212,0.560507573078495,-0.292815437803688,-0.000820209769685387,-3.59908356173388e-05,0.000216624941887233,0.000110892203739055,-8.91683671344622e-05,0.0115159451939683,-0.00722528213387834,0.000246005663646562,0.0135952067517313 +1.214,0.560507500916208,-0.292814981461938,-0.000820002583677662,-3.61426661099617e-05,0.000235288926495047,9.48113450006948e-05,-2.62554214480737e-05,0.00715481859175914,-0.00867746393143352,0.000256234974945983,0.0112467994873861 +1.216,0.560507428507831,-0.292814496647982,-0.000819830524305384,-3.60958573031311e-05,0.00024524421625427,7.61823480133205e-05,9.7378556607186e-05,0.00289436070249893,-0.00975227845527447,0.00025932872318631,0.0101731873829527 +1.218,0.560507356532779,-0.292814000485073,-0.000819697854285609,-3.5753151883533e-05,0.000246866369305043,5.58022311795969e-05,0.00025759368249556,-0.00110086974258738,-0.0104190407647017,0.000255607474789142,0.010480204156023 +1.22,0.560507285495223,-0.292813509182505,-0.000819607315380666,-3.50654825731489e-05,0.00024084073728392,3.45061849545136e-05,0.000431236851783366,-0.00468946655812762,-0.0106691374190254,0.000245814006117766,0.0116622277069255 +1.222,0.560507216270849,-0.292813037122124,-0.000819559829545791,-3.40282044763995e-05,0.000228108503072533,1.31256815034952e-05,0.000597844607153062,-0.00775958209839332,-0.0105136879592973,0.000231005825443452,0.0130807555982627 +1.224,0.560507149382405,-0.292812596748493,-0.000819554812654652,-3.26741041445366e-05,0.000209802408890347,-7.54856688267579e-06,0.000740751467109834,-0.010232652860459,-0.00998069165075026,0.000212465594202503,0.0143132841488612 +1.226,0.560507085574432,-0.292812197912488,-0.000819590023813321,-3.10651986079602e-05,0.000187177891630696,-2.67970850995058e-05,0.000847667505632365,-0.0120645017240295,-0.00911187996409378,0.000191621223901986,0.0151425591803126 +1.228,0.560507025121611,-0.292811848036926,-0.00081966200099505,-2.92834341220072e-05,0.000161544401994229,-4.39960867390509e-05,0.000910837634482407,-0.0132441266911809,-0.00795952112206398,0.000169969906095171,0.0154787109767261 +1.23,0.560506968440696,-0.29281155173488,-0.000819766008160278,-2.74218480700305e-05,0.000134201384865973,-5.86351695877618e-05,0.000926837481762808,-0.0137906426000977,-0.00658325328972696,0.000148996820651,0.0153094766376232 +1.232,0.560506915434219,-0.292811311231387,-0.000819896541673401,-2.55760841949559e-05,0.000106381831593838,-7.03290998979588e-05,0.000896115029402898,-0.0137488916536477,-0.00504706093324563,0.000130066953790977,0.0146733727518099 +1.234,0.560506866136359,-0.292811126207554,-0.000820047324559869,-2.38373879524189e-05,7.92058182513821e-05,-7.88234133207443e-05,0.000822337531403148,-0.0131842388638448,-0.00341642488691645,0.000114258099042466,0.0136444989809964 +1.236,0.560506820084667,-0.292810994408114,-0.000820211835326684,-2.22867340693433e-05,5.36448761384589e-05,-8.39947994456246e-05,0.000711653611040752,-0.0121770095465323,-0.00175572087077191,0.000102125401273625,0.0123234965871911 +1.238,0.560506776989423,-0.292810911628049,-0.000820383303757652,-2.09907735082559e-05,3.04977800652528e-05,-8.5846296803832e-05,0.000571915403924093,-0.010816960868687,-0.0001259039062243,9.34896456101693e-05,0.0108328011824068 +1.24,0.560506736121573,-0.292810872416994,-0.000820555220513899,-1.99990724536469e-05,1.03770326637109e-05,-8.44984150705218e-05,0.000411938511080122,-0.00919808317706437,0.00141747710010603,8.74507167228499e-05,0.00931577526556059 +1.242,0.560506696993133,-0.292810870119919,-0.000820721297417934,-1.93430194639354e-05,-6.29455264300471e-06,-8.01763884034078e-05,0.000240826782127445,-0.00741395026968016,0.0028258946970644,8.27165464243512e-05,0.00793790507496638 +1.244,0.560506658749495,-0.292810897595204,-0.000820875926067513,-1.90357653251372e-05,-1.92787684150097e-05,-7.31948362822642e-05,6.74045610993267e-05,-0.00555375445979166,0.00405907488090079,7.80481603338653e-05,0.00687930380658337 +1.246,0.560506620850072,-0.292810947234992,-0.000821014076763063,-1.90734012195381e-05,-2.85095704821714e-05,-6.39400888798047e-05,-0.000100237304567763,-0.00369910259021,0.00508581649710792,7.25598043624478e-05,0.00628958956787964 +1.248,0.56050658245589,-0.292811011633486,-0.000821131686423032,-1.94367145434082e-05,-3.40751787758497e-05,-5.28515702938325e-05,-0.000255073406840722,-0.00192159168785344,0.0058844227893151,6.58193904816201e-05,0.00619548292073473 +1.25,0.560506543103213,-0.292811083535708,-0.000821225483044238,-2.0093694846901e-05,-3.61959372335851e-05,-4.04023977225442e-05,-0.000391359868123774,-0.000281145683123094,0.00644273814073142,5.78468338506842e-05,0.00646073371928854 +1.252,0.560506502081111,-0.292811156417235,-0.000821293296013922,-2.10021540159033e-05,-3.51997615083421e-05,-2.70806177309068e-05,-0.00050474859708549,0.00117493637388777,0.00675784601021633,4.91271161400646e-05,0.00687777066546574 +1.254,0.560506459094597,-0.292811224334754,-0.000821333805515162,-2.2112689235243e-05,-3.14961917380341e-05,-1.33710136816789e-05,0.0122765072552155,-0.284784959263956,0.0136723644090369,4.07402150962545e-05,0.285377152557618 +1.256,0.560506413630354,-0.292811282402002,-0.000821346780068649,2.81038750049589e-05,-0.00117433959856417,2.7608839905241e-05,-0.0443312640138748,-0.19192554274669,0.0869380432427443,0.00117500024195191,0.215311166200355 +1.258,0.560506571510097,-0.292815921693148,-0.000821223370155541,-0.000199437745290742,-0.000799198362724795,0.000334381159289298,-0.102090013207046,0.522428292595161,0.111895989177504,0.000888990549396507,0.543943383170089 +1.26,0.560505615879373,-0.292814479195453,-0.000820009255431492,-0.000380256177823224,0.000915373571816479,0.000475192796615259,0.00768037473897197,0.466183529914537,-0.0349802192064693,0.00109923233700061,0.467557148865721 +1.262,0.560505050485386,-0.292812260198861,-0.00081932259896908,-0.000168716246334854,0.00106553575693335,0.000194460282463421,0.0995625946409449,0.00171956945557713,-0.131062412435032,0.00109619634305931,0.164599584215878 +1.264,0.560504941014387,-0.292810217052425,-0.000819231414301638,1.79942007405564e-05,0.000922251849638788,-4.9056853124868e-05,0.0730308013716095,-0.0894924459503287,-0.0951694576357269,0.000923730934991879,0.149665030978617 +1.266,0.560505122462189,-0.292808571191462,-0.000819518826381579,0.000123406959151584,0.00070756597313204,-0.000186217548079487,0.048487620599169,-0.398593505084032,-0.0393253572613868,0.000741994514207529,0.403452990285459 +1.268,0.560505434642224,-0.292807386788533,-0.000819976284493956,0.000211944683137233,-0.000672122170697342,-0.000206358282170416,-0.036997951508022,-0.308051944578058,0.0709503245651526,0.000734338138512071,0.318274720218262 +1.27,0.560505970240922,-0.292811259680145,-0.000820344259510261,-2.45848468805043e-05,-0.000524641805180192,9.75837501811238e-05,-0.112878922237103,0.414937958874428,0.118042750494457,0.00053420597781968,0.445925163838713 +1.272,0.560505336302836,-0.292809485355753,-0.000819585949493232,-0.000239571005811179,0.00098762966480037,0.000265812719807412,-0.0113613936175705,0.373478209931415,-0.0181850020875007,0.00105045848258296,0.374093235516803 +1.274,0.560505011956898,-0.292807309161486,-0.000819281008631031,-7.00304213507862e-05,0.00096927103454547,2.48437418311209e-05,0.0786473377256679,-0.0729655531168937,-0.110877092568927,0.000972115121696801,0.154282550307959 +1.276,0.560505056181151,-0.292805608271615,-0.000819486574525907,7.50183450914931e-05,0.000695767452332795,-0.000177695650468296,0.0537124767094331,-0.145152504245349,-0.075886384946766,0.000722008202184218,0.172374658993851 +1.278,0.560505312030279,-0.292804526091676,-0.000819991791232905,0.000144819485486947,0.000388661017564073,-0.000278701797955943,0.0329370814164398,-0.436289597390698,-0.0227315991091145,0.000499704674917616,0.438121204373434 +1.28,0.560505635459093,-0.292804053627545,-0.000820601381717731,0.000206766670757252,-0.00104939093723,-0.000268622046904754,-0.0483767052250616,-0.329700745545224,0.0844136402887092,0.00110278356868417,0.343756527048289 +1.282,0.560506139096962,-0.292808723655425,-0.000821066279420524,-4.86873354132999e-05,-0.000930141964616825,5.89527631988939e-05,-0.120245835011356,0.406869187397074,0.128280453363938,0.000933279143268336,0.443235232360866 +1.284,0.560505440709751,-0.292807774195403,-0.000820365570664935,-0.000274216669288174,0.000578085812358297,0.000244499766550998,-0.0145087630520901,0.375944103389591,-0.0102778473952056,0.000684951183668548,0.376364327780655 +1.286,0.560505042230285,-0.292806411312176,-0.00082008828035432,-0.00010672238762166,0.00057363444894154,1.78413736180716e-05,0.0787178402253395,-0.062394852992642,-0.103887315162747,0.000583750343592799,0.144506713689847 +1.288,0.560505013820201,-0.292805479657608,-0.000820294205170463,4.06546916131844e-05,0.000328506400387729,-0.000171049494099989,0.0554648190223549,-0.128190521038462,-0.0690107158831526,0.000372595207266181,0.155793564501234 +1.29,0.560505204849051,-0.292805097286574,-0.00082077247833072,0.000115136888467759,6.08723647876896e-05,-0.000258201489914539,0.0355879102922895,-0.414576073762273,-0.0155030828313807,0.000289188445956906,0.416389440154755 +1.292,0.560505474367755,-0.292805236168148,-0.000821327011130121,0.000183006332782343,-0.00132979789466137,-0.000233061825425512,-0.0457885541635394,-0.304410516661912,0.091854401472989,0.00136241387726157,0.321246922812843 +1.294,0.560505936874382,-0.292810416478153,-0.000821704725632422,-6.80173281863982e-05,-0.00115676970185996,0.000109216115977417,-0.118133596557768,0.434629234609406,0.13502005533593,0.00116390320046986,0.47020052483568 +1.296,0.560505202298442,-0.292809863246956,-0.000820890146666212,-0.000289528053448729,0.000408719043776262,0.000307018395918207,-0.0122408981770294,0.404607724817373,-0.00460461214903812,0.000587484506954337,0.404819037377338 +1.298,0.560504778762168,-0.292808781601978,-0.000820476652048749,-0.000116980920894516,0.000461661197409535,9.07976673812649e-05,0.0809175932856008,-0.0339373020553923,-0.0991165105329246,0.000484829674678452,0.132376281992494 +1.3,0.560504734374758,-0.292808016602166,-0.000820526955996687,3.41423196936752e-05,0.000272969835554693,-8.94476462134918e-05,0.0569606586689474,-0.100603672618243,-0.0653138536345353,0.000289273418291337,0.132783715330128 +1.302,0.560504915331447,-0.292807689722636,-0.000820834442633603,0.000110861713781274,5.9246506936561e-05,-0.000170457747156877,0.0233014000525222,-0.101264153368197,-0.0207247145226491,0.000211793087074396,0.105957056366391 +1.304,0.560505177821613,-0.292807779616139,-0.000821208786985314,0.000127347919903764,-0.000132086777918094,-0.000172346504304088,0.0119999157971451,-0.373225016832984,0.0188285773231392,0.000251729472153021,0.373892265891036 +1.306,0.560505424723127,-0.292808218069747,-0.000821523828650819,0.000158861376969854,-0.00143365356039537,-9.514343786432e-05,-0.0598314299632418,-0.259160889467396,0.110362303066234,0.00144556277694735,0.287965283635132 +1.308,0.560505813267121,-0.29281351423038,-0.000821589360736771,-0.000111977799949203,-0.00116873033578768,0.00026910270796085,-0.124680837092217,0.479191248091425,0.140022939416027,0.00120452724871782,0.514563880337649 +1.31,0.560504976811927,-0.29281289299109,-0.000820447417818976,-0.000339861971399013,0.000483111431970328,0.00046494831979979,-0.0127216377987516,0.444615184003182,-0.00927153350795128,0.000751717869541687,0.444893766249939 +1.312,0.560504453819236,-0.292811581784652,-0.000819729567457572,-0.000162864351144209,0.00060973040022505,0.000232016573929045,0.0974486447091747,-0.288443691005141,-0.101501811154009,0.00067240437863684,0.320933979042214 +1.314,0.560504325354522,-0.292810454069489,-0.00081951935152326,4.9932607437686e-05,-0.000670663332050236,5.89410751837549e-05,0.0300758158863767,-0.558196794567949,0.0116646871146583,0.000675097489690243,0.559128143713628 +1.316,0.560504653549665,-0.29281426443798,-0.000819493803156837,-4.25610875987025e-05,-0.00162305677804675,0.000278675322387678,-0.120738908288009,0.239947031837467,0.152524490620864,0.0016473568788362,0.30889509918635 +1.318,0.560504155110172,-0.292816946296602,-0.000818404650233709,-0.000433023025714352,0.000289124795299633,0.000669039037667212,-0.0924297543086759,0.904232194297998,0.0587808505047443,0.000847770795662682,0.910842636832837 +1.32,0.560502921457563,-0.292813107938799,-0.000816817647006168,-0.000412280104833406,0.00199387199914525,0.000513798724406655,0.0995127884054202,0.394399949064233,-0.166673251786146,0.00209987846386852,0.439583993952304 +1.322,0.560502505989753,-0.292808970808605,-0.000816349455336082,-3.49718720926706e-05,0.00186672459155657,2.34603052262638e-06,0.159760746083759,-0.145751842116348,-0.216246672657058,0.00186705362440903,0.305826288773213 +1.324,0.560502781570074,-0.292805641040433,-0.000816808262884078,0.000226762879501629,0.00141086463067985,-0.000351187966221577,0.0930380919181293,-0.240364039349322,-0.127364946997041,0.00147149359402007,0.287493978517199 +1.326,0.560503413041271,-0.292803327350082,-0.000817754207200969,0.000337180495579847,0.000905268434159278,-0.000507113757465538,0.0276592225026406,-0.245651321655743,-0.0423917790393427,0.00109103894866108,0.250812015961724 +1.328,0.560504130292056,-0.292802019966696,-0.00081883671791394,0.000337399769512192,0.00042825934405688,-0.000520755082378948,-0.00260761446463363,-0.509776336296563,0.0218284022523995,0.000753943317539465,0.510250126747691 +1.33,0.560504762640349,-0.292801614312706,-0.000819837227530484,0.000326750037721313,-0.00113383691102697,-0.00041980014845594,-0.0839222150383899,-0.379857772250802,0.125430487379376,0.00125243119276138,0.408739125213772 +1.332,0.560505437292207,-0.29280655531434,-0.000820515918507764,1.71090935863205e-06,-0.00109117174494633,-1.90331328614457e-05,-0.15108924673185,0.378428298059007,0.157806468692803,0.00109133906936688,0.436965466382788 +1.334,0.560504769483986,-0.292805978999686,-0.00081991336006193,-0.000277606949206088,0.000379876281209057,0.000211425726315273,-0.0352604250380972,0.363907173003136,0.00695563530210551,0.000515822105982939,0.365677602540075 +1.336,0.560504326864411,-0.292805035809216,-0.000819670215602503,-0.000139330790793757,0.000364456947066216,8.78940834697638e-06,0.0675248292211771,-0.0626332363334868,-0.09518119819564,0.000390280910661962,0.132446160174288 +1.338,0.560504212160823,-0.292804521171898,-0.000819878202428542,-7.50763232137962e-06,0.000129343335875109,-0.000169299066467288,0.0501191269042244,-0.119663431642769,-0.0656505269140683,0.000213185921169925,0.145400328191721 +1.34,0.560504296833881,-0.292804518435872,-0.000820347411868372,6.1145716823141e-05,-0.00011419677950486,-0.000253812699309297,0.0347139316875244,-0.400774231863742,-0.0142869603994566,0.000284957171283281,0.402528457648195 +1.342,0.56050445674369,-0.292804977959016,-0.000820893453225779,0.000131348094428718,-0.00147375359157986,-0.000226446908065114,-0.0450468172624729,-0.287187723595205,0.092354827313512,0.00149682336057961,0.305017078960152 +1.344,0.560504822226259,-0.292810413450238,-0.000821253199500632,-0.000119041552226751,-0.00126294767388568,0.000115606609944752,-0.116980790394738,0.453748044949852,0.133333630312864,0.00127380242046902,0.487185437579571 +1.346,0.560503980577481,-0.292810029749711,-0.000820431026786,-0.000336575067150235,0.00034123858821955,0.00030688761318634,-0.00791654702902987,0.422454680484157,-0.00767145984324062,0.000569127891641646,0.422598485652706 +1.348,0.56050347592599,-0.292809048495886,-0.000820025649047887,-0.00015070774034287,0.000426871048050947,8.49207705717891e-05,0.0872970275581085,-0.0184196181987617,-0.100927380299563,0.000460590112722662,0.134708535175771 +1.35,0.56050337774652,-0.292808322265519,-0.000820091343703713,1.26130430821991e-05,0.000267560115424503,-9.68219080119125e-05,0.00426874392778219,-0.0843462223294732,-0.105634231238952,0.000284819216509059,0.135244586603007 +1.352,0.560503526378163,-0.292807978255424,-0.000820412936679935,-0.000133632764631741,8.94861587330541e-05,-0.000337616154384018,-0.128891474597548,-0.0759928316489132,-0.16419440911769,0.000373965447720739,0.222143482171901 +1.354,0.560502843215462,-0.292807964320884,-0.000821441808321249,-0.000502952855307992,-3.64112111711501e-05,-0.000753599544482674,-0.159210651135,-0.0503573736564122,-0.238847538666479,0.000906752239813007,0.291431026562783 +1.356,0.560501514566741,-0.292808123900269,-0.000823427334857865,-0.000770475369171741,-0.000111943335892595,-0.00129300630904994,-0.10734732671519,-0.033855413372058,-0.297027986438484,0.00150931405618381,0.317640145912306 +1.358,0.560499761313985,-0.292808412094228,-0.000826613833557449,-0.000932342162168752,-0.000171832864659382,-0.00194171149023661,-0.0577225188966301,-0.0282525467812377,-0.344148943754243,0.00216079428730535,0.350097973536779 +1.36,0.560497785198093,-0.292808811231727,-0.000831194180818812,-0.00100136544475826,-0.000224953523017546,-0.00266960208406691,-0.0154943000027496,-0.0253966520105675,-0.374828143898976,0.00286008953159308,0.376006915793676 +1.362,0.560495755852206,-0.29280931190832,-0.000837292241893717,-0.000994319362179751,-0.000273419472701652,-0.00344102406583252,0.155469620663484,-0.315179440556895,-0.292398132278707,0.00359222435598009,0.45717124850441 +1.364,0.560493807920644,-0.292809904909618,-0.000844958277082142,-0.000379486962104325,-0.00148567128524513,-0.00383919461318174,0.120215534124557,-0.232011488222883,-0.13645521322863,0.00413408330831549,0.2947899769828 +1.366,0.560494237904357,-0.292815254593461,-0.000852649020346444,-0.000513457225681524,-0.00120146542559318,-0.00398684491874704,-0.210748990682463,0.500598038501165,-0.205116070031707,0.00419548446518867,0.58059119474045 +1.368,0.560491754091741,-0.29281471077132,-0.00086090565675713,-0.00122248292483418,0.000516720868759534,-0.00465965889330857,-0.1341000718455,0.489087176896995,-0.435226737363278,0.00484498565113586,0.668289913727511 +1.37,0.560489347972658,-0.292813187709986,-0.000871287655919678,-0.00104985751306352,0.0007548832819948,-0.00572775186820015,0.121415858339579,0.0400316621899931,-0.51171628159298,0.00587189841796003,0.527444686655744 +1.372,0.560487554661689,-0.292811691238192,-0.000883816664229931,-0.000736819491475859,0.000676847517519507,-0.00670652401968049,0.291124596166203,-0.352844079159336,-0.340933838072557,0.00678074405589405,0.570515868870989 +1.374,0.560486400694692,-0.292810480319916,-0.0008981137519984,0.00011464087160129,-0.000656493034642546,-0.00709148722049038,0.215700204073132,-0.300228998068724,-0.0786339537277649,0.00712273238528263,0.377951488947194 +1.376,0.560488013225175,-0.292814317210331,-0.000912182613111892,0.000125981324816671,-0.00052406847475539,-0.00702105983459155,-0.15870102819393,0.424167291238758,-0.0554117151312788,0.0070417185588001,0.456261290797746 +1.378,0.560486904619991,-0.292812576593815,-0.000926197991336766,-0.000520163241174431,0.00104017613031249,-0.00731313408101549,-0.118090460299314,0.415746777986808,-0.214848422681185,0.00740502979510895,0.482649546719676 +1.38,0.560485932572211,-0.29281015650581,-0.000941435149435954,-0.000346380516380584,0.00113891863719184,-0.00788045352531629,0.109544424795049,-0.0236465684116949,-0.241991785350677,0.00796985965302658,0.266681767990493 +1.382,0.560485519097926,-0.292808020919266,-0.000957719805438031,-8.19855419942338e-05,0.000945589856665706,-0.0082811012224182,0.119700468925732,-0.111076136188187,-0.137984214772929,0.00833531638644037,0.213789040453524 +1.384,0.560485604630043,-0.292806374146383,-0.000974559554325627,0.000132421359322343,0.000694614092439094,-0.00843239038440801,0.0896798504138039,-0.124440342308407,-0.0165725955129231,0.00846198745856294,0.154280670487624 +1.386,0.560486048783363,-0.292805242462896,-0.000991449366975664,0.000276733859660982,0.000447828487432078,-0.00834739160446989,0.0557562467168314,-0.115525831075047,0.0922509228139245,0.00836397504668761,0.158003827338293 +1.388,0.560486711565481,-0.292804582832433,-0.00100794912074351,0.000355446346189669,0.000232510768138905,-0.00806338669315231,0.02540707116222,-0.0960044760148214,0.181159195559652,0.00807456551930975,0.206593883781061 +1.39,0.560487470568748,-0.292804312419824,-0.00102370291374827,0.000378362144309862,6.38105833727919e-05,-0.00762275482223129,0.000226965904404075,-0.0711063870700855,0.249170346492896,0.00763240596290891,0.259117794385242 +1.392,0.560488225014059,-0.2928043275901,-0.00103844014003243,0.000356354209807286,-5.19147801414376e-05,-0.00706670530718073,-0.0195526940610646,-0.04490299415974,0.297505572914059,0.00707587502474293,0.301509788637911 +1.394,0.560488895985587,-0.292804520078944,-0.001051969734977,0.000300151368065604,-0.000115801393266168,-0.00643273253057505,-0.0341349821325609,-0.0207036344179734,0.328281351687567,0.00644077236178647,0.330699989944239 +1.396,0.560489425619531,-0.292804790795673,-0.00106417107015473,0.000219814281277042,-0.000134729317813331,-0.00575357990043046,-0.0439249953285147,-0.000847952888460845,0.343926259993055,0.00575935343402097,0.346720920268048 +1.398,0.560489775242712,-0.292805058996215,-0.00107498405457872,0.000124451386751545,-0.000119193204820012,-0.00505702749060282,-0.0494375334003649,0.0133829896331594,0.34686634892405,0.00505996266868169,0.350627206782552 +1.4,0.560489923425078,-0.292805267568492,-0.00108439918011714,2.20641476755823e-05,-8.11973592806935e-05,-0.00436611450473426,-0.0512462458579498,0.021677781899404,0.339376455080891,0.00436692520043768,0.343907665232812 +1.402,0.560489863499303,-0.292805383785652,-0.00109244851259765,-8.05335966802544e-05,-3.24820772223955e-05,-0.00369952167027926,-0.0499542996412749,0.0244920589191621,0.323536341808629,0.00370054068136006,0.328285024747794 +1.404,0.560489601290691,-0.292805397496801,-0.00109919726679826,-0.000177753050889517,1.67708763959551e-05,-0.00307196913749974,0.0940070863791926,-0.270051240789536,0.398956304528136,0.0030771531959177,0.490847367176619 +1.406,0.560489152487099,-0.292805316702147,-0.00110473638914765,0.000295494748836516,-0.00111268704038054,-0.00210369645216671,0.0386033586069496,-0.195859997810542,0.525698896406393,0.0023981093301348,0.562326139994382 +1.408,0.560490783269687,-0.292809848244963,-0.00110761205260693,-2.33396164617274e-05,-0.000766669114846172,-0.000969173551874284,-0.309473860885,0.524854506328597,0.40307922843154,0.00123597072902565,0.7305608720548 +1.41,0.560489059128634,-0.292808383378606,-0.00110861308335515,-0.000942400694703415,0.000986730984933736,-0.000491379538440639,-0.234558452549826,0.497620053212254,0.103232585768796,0.0014502451367972,0.559732393011203 +1.412,0.560487013666908,-0.292805901321023,-0.00110957757076069,-0.000961573426661032,0.00122381109800285,-0.0005562432087991,0.0300620170146093,0.0295593487430189,-0.0504895504051249,0.00165279870697877,0.0657774632013863 +1.414,0.560485212834927,-0.292803488134214,-0.00111083805619035,-0.000822152626644978,0.00110496837990581,-0.000693337740061139,0.0723183638667856,-0.0900699533533387,-0.0585718154247002,0.00154194918330145,0.12951138873314 +1.416,0.560483725056401,-0.292801481447503,-0.00111235092172093,-0.00067229997119389,0.000863531284589491,-0.000790530470497901,0.0706402960570783,-0.134169529545508,-0.0344001308931474,0.00135004146436979,0.155482742100081 +1.418,0.560482523635042,-0.292800034009076,-0.00111400017807234,-0.000539591442416664,0.00056829026172378,-0.000830938263633728,0.0611653582227588,-0.151050991801377,-0.00787341372220775,0.00114217824540219,0.163155121937189 +1.42,0.560481566690632,-0.292799208286456,-0.00111567467477547,-0.000427638538302854,0.000259327317383984,-0.000822024125386733,0.0510929642483226,-0.15008422259849,0.013485550632783,0.000962210496565693,0.159115131098657 +1.422,0.560480813080889,-0.292798996699806,-0.00111728827457389,-0.000335219585423374,-3.20466286701792e-05,-0.000776996061102597,0.0418641274702036,-0.135423750872998,0.0282675941031332,0.000846830582719763,0.144538072305302 +1.424,0.56048022581229,-0.292799336472971,-0.00111878265901988,-0.00026018202842204,-0.000282367686108009,-0.0007089537489742,0.0337254775564788,-0.111167070618312,0.0370677301188629,0.000806251583723326,0.1219407316791 +1.426,0.560479772352775,-0.292800126170551,-0.00112012408956978,-0.000200317675197459,-0.000476714911143427,-0.000628725140627145,0.0266488402525522,-0.0815070904276737,0.041183408269578,0.000814051337422661,0.0951295936787799 +1.428,0.560479424541589,-0.292801243332616,-0.00112129755958239,-0.000153586667411831,-0.000608396047818704,-0.000544220115895888,0.162343556403543,-0.34327098801315,0.141227396709478,0.00083060830115875,0.4051364944048 +1.43,0.560479158006106,-0.292802559754742,-0.00112230097003337,0.000449056550416715,-0.00184979886319603,-6.38155537892315e-05,0.0956031051962956,-0.234309624116274,0.29519948617409,0.00190459445674372,0.388823469345833 +1.432,0.560481220767791,-0.292808642528068,-0.00112155282179754,0.000228825753373352,-0.0015456345442838,0.000636577828800471,-0.267860332803238,0.520141473919765,0.198392289260836,0.00168718069631282,0.617782980680953 +1.434,0.560480073309119,-0.292808742292919,-0.00111975465871816,-0.000622384780796236,0.000230767032483037,0.000729753603254112,-0.204121263384926,0.52220742126352,-0.074790910196791,0.000986486979189369,0.565649857453017 +1.436,0.560478731228668,-0.292807719459938,-0.00111863380738453,-0.000587659300166354,0.00054319514077028,0.000337414188013307,0.0521561115407464,0.0770309483318076,-0.199588876716693,0.000868477258367272,0.22020387526331 +1.438,0.560477722671918,-0.292806569512356,-0.00111840500196611,-0.00041376033463325,0.000538890825810267,-6.86019036126583e-05,0.0847781792406853,-0.0261053072735106,-0.178894309493631,0.000682866866847097,0.199679745373468 +1.44,0.560477076187329,-0.292805563896635,-0.00111890821499898,-0.000248546583203612,0.000438773911676238,-0.000378163049961216,0.0740669862872577,-0.0598898187119389,-0.127498564278343,0.000630321538538726,0.159149592321389 +1.442,0.560476728485586,-0.292804814416709,-0.00111991765416596,-0.000117492389484219,0.000299331550962511,-0.00057859616072603,0.0567701713069523,-0.072354812915426,-0.0762328862405694,0.000661949662886262,0.119455113941658 +1.444,0.560476606217771,-0.292804366570431,-0.00112122259964188,-2.14658979758031e-05,0.000149354660014533,-0.000683094594923494,0.040305384009509,-0.0722187102446258,-0.0332406583751498,0.000699561165915931,0.0891347713227819 +1.446,0.560476642621994,-0.292804216998069,-0.00112265003254565,4.37291465538169e-05,1.0456709984008e-05,-0.000711558794226629,0.0261751177815794,-0.062769741526053,-0.00028578042189642,0.00071297790897283,0.0680092560801586 +1.448,0.560476781134357,-0.292804324743591,-0.00112406883481879,8.32345731505146e-05,-0.000101724306089679,-0.00068423771661108,0.0145950948340911,-0.0471491357449671,0.0231107837979707,0.000696747501933175,0.0544992304759433 +1.45,0.560476975560286,-0.292804623895294,-0.00112538698341209,0.000102109525890182,-0.00017813983299586,-0.000619115659034746,0.00543933569713272,-0.0285844931509349,0.0383360990322336,0.000652276287043565,0.0481281218263415 +1.452,0.560477189572461,-0.292805037302923,-0.00112654529745493,0.000104991915939045,-0.000216062278693418,-0.000530893320482145,0.141886102755784,-0.303158440712047,0.147735915283393,0.000582712560718663,0.36587239168159 +1.454,0.56047739552795,-0.292805488144408,-0.00112751055669402,0.000669653936913316,-0.00139077359584405,-2.81719979011718e-05,0.074882848491442,-0.207537915547506,0.308113624156169,0.00154385272988917,0.378963629888998 +1.456,0.560479868188208,-0.292810600397307,-0.00112665798544653,0.000404523309904814,-0.00104621394088344,0.000701561176142534,-0.2915410319132,0.53421756435884,0.211839550999862,0.00132302335664406,0.644407149810062 +1.458,0.56047901362119,-0.292809673000172,-0.00112470431198945,-0.000496510190739485,0.000746096661591311,0.000819186206098276,-0.225918177901296,0.523961920986109,-0.0630997519018502,0.00121418640999129,0.574070288762422 +1.46,0.560477882147446,-0.29280761601066,-0.00112338124062214,-0.000499149401700371,0.001049633743061,0.000449162168535133,0.035092263622749,0.0669091227770146,-0.189097692214826,0.00124604485209532,0.203632597778281 +1.462,0.560477017023583,-0.2928054744652,-0.00112290766331531,-0.000356141136248489,0.00101373315269937,6.27954372389716e-05,0.070628518297755,-0.0465223328888208,-0.170021047695562,0.00107630603489351,0.189894369884552 +1.464,0.560476457582901,-0.29280356107805,-0.00112313005887318,-0.000216635328509351,0.000863544411505712,-0.000230922022247115,0.206651148339232,-0.3817495243634,-0.0193353164130647,0.000919763445979344,0.434524166097121 +1.466,0.560476150482269,-0.292802020287554,-0.0011238313514043,0.000470463457108438,-0.000513264944754232,-1.45458284132871e-05,0.129569165271959,-0.321090047248478,0.186738160681994,0.00069641104895903,0.393393095625986 +1.468,0.560478339436729,-0.292805614137829,-0.00112318824218684,0.000301641332578484,-0.000420815777488203,0.000516030620480861,-0.249652305779613,0.404264505378393,0.129631779205094,0.000731000009149512,0.492504276397466 +1.47,0.560477357047599,-0.292803703550664,-0.00112176722892238,-0.000528145766010013,0.00110379307675934,0.00050398128840709,-0.194002603648435,0.393012707107509,-0.113740116799814,0.00132336474394651,0.452805490624815 +1.472,0.560476226853665,-0.292801198965522,-0.00112117231703321,-0.000474369082015258,0.00115123505094183,6.1070153281606e-05,0.0593718969266187,-0.053143275193651,-0.214738522569604,0.00124663456237619,0.229045547693793 +1.474,0.560475459571271,-0.29279909861046,-0.00112152294830925,-0.000290658178303538,0.000891219975984735,-0.000354972801871328,0.0874429311945034,-0.147310651059384,-0.17700675274037,0.00100237762957747,0.246329220043252 +1.476,0.560475064220952,-0.292797634085618,-0.00112259220824069,-0.000124597357237244,0.000561992446704295,-0.000646956857679875,0.072686181920578,-0.165310180978012,-0.114355403557989,0.000865975280987976,0.213747269690363 +1.478,0.560474961181842,-0.292796850640673,-0.00112411077573997,8.65493787749471e-08,0.000229979252072687,-0.000812394416103284,0.0522323745574814,-0.15851904196576,-0.0562337114408394,0.000844319341949776,0.176121372695272 +1.48,0.560475064567149,-0.292796714168609,-0.00112584178590511,8.43321409926822e-05,-7.20837211587443e-05,-0.000871891703443233,0.033462034532139,-0.138240287311103,-0.00953253917121421,0.000878921563846083,0.142551583975546 +1.482,0.560475298510406,-0.292797138975558,-0.00112759834255374,0.000133934687507331,-0.000322981897171725,-0.000850524572788141,0.0177720406932535,-0.109552187654849,0.02494251088829,0.000919591134871788,0.11375260919987 +1.484,0.560475600305899,-0.292798006096198,-0.00112924388419626,0.000155420303765696,-0.000510292471778139,-0.000772121659890073,0.00528014452300106,-0.0766843449087616,0.0483259091918832,0.000938469890432009,0.0907951660579562 +1.486,0.560475920191621,-0.292799180145445,-0.0011306868291933,0.000155055265599335,-0.000629719276806772,-0.000657220936020608,-0.00422090084412074,-0.043391190869546,0.0624130002931446,0.000923324353472781,0.0761314261957921 +1.488,0.560476220526962,-0.292800524973305,-0.00113187276794034,0.000138536700389213,-0.000683857235256324,-0.000522469658717494,-0.0110418486853891,-0.0126706213229854,0.0691105183931588,0.000871680950719659,0.0711247553224099 +1.49,0.560476474338423,-0.292801915574386,-0.00113277670782817,0.000110887870857779,-0.000680401762098714,-0.000380778862447972,-0.0155236860935326,0.0134143743370229,0.0701574462465964,0.000787550137996038,0.0730958106366458 +1.492,0.560476664078445,-0.292803246580354,-0.00113339588339013,7.6441956015083e-05,-0.000630199737908232,-0.000241839873731109,-0.0180069696029128,0.033734144314762,0.06701291895006,0.000679324375262138,0.077155523153801 +1.494,0.560476780106247,-0.292804436373338,-0.0011337440673231,3.88599924461274e-05,-0.000545465184839666,-0.000112727186647732,-0.0188218177987753,0.0479649722856522,0.0608499805439254,0.0005583455789156,0.0797346820637656 +1.496,0.560476819518415,-0.292805428441093,-0.00113384679213673,1.15468481998171e-06,-0.000438339848765623,1.56004844459323e-06,-0.0182854839811397,0.0563993113079918,0.0525977837950719,0.000438344145693828,0.0792576059479052 +1.498,0.560476784724986,-0.292806189732733,-0.00113373782712932,-3.42819434784314e-05,-0.000319867939607698,9.76639485325558e-05,-0.0167000110129489,0.0597408396675602,0.0429971339392306,0.000336197854366298,0.075475902240423 +1.5,0.560476682390641,-0.292806707912851,-0.00113345613634259,-6.5645359231814e-05,-0.000199376490095382,0.000173548584201516,-0.0143499320204299,0.0589166673468921,0.0326550758013993,0.000272358970973564,0.0688726957208038 +1.502,0.560476522143549,-0.292806987238693,-0.00113304363279251,-9.16816715601509e-05,-8.42012702201299e-05,0.000228284251738153,-0.011499925296754,0.0549257050778961,0.0220880396846132,0.000260017465564133,0.0603072371879527 +1.504,0.560476315663955,-0.292807044717932,-0.00113254299933564,-0.00011164506041883,2.03263302162027e-05,0.000261900742939969,-0.00839149792014603,0.0487298735737939,0.0117473272177523,0.000285429112685602,0.0508233953275723 +1.506,0.560476075563307,-0.292806905933372,-0.00113199602982075,-0.000125247663240735,0.000110718224075046,0.000275273560609162,-0.00523847994843284,0.0411855675952476,0.00202798357794298,0.000322057503343802,0.0415668782530665 +1.508,0.560475814673302,-0.292806601845036,-0.00113144190509321,-0.000132598980212561,0.000185068600597193,0.000270012677251741,-0.00222263683846702,0.0330085475376551,-0.0067329652903361,0.000353185110610665,0.0337614742963369 +1.51,0.560475545167387,-0.29280616565897,-0.00113091597911175,-0.000134138210594603,0.000242752414225666,0.000248341699447818,0.000509550748817311,0.0247640495817935,-0.0142635395881593,0.000372284023077196,0.028582623309244 +1.512,0.560475278120459,-0.292805630835379,-0.00113044853829541,-0.000130560777217292,0.000284124798924368,0.000212958518899103,0.00284869953320887,0.016873816458679,-0.0203652551333116,0.000378317787954909,0.0266004584087674 +1.514,0.560475022924278,-0.292805029159774,-0.00113006414503615,-0.000122743412461768,0.000310247680060382,0.000166880678914571,0.152313380241686,-0.28402238979111,0.0796260556257948,0.000373053252606913,0.331976493803137 +1.516,0.56047478714681,-0.292804389844659,-0.00112978101557976,0.000478692743749453,-0.000851964760240075,0.000531462741402283,0.0906130429093042,-0.211351868884685,0.2368746140919,0.00111240430649478,0.330136212535854 +1.518,0.560476937695253,-0.292808437018815,-0.00112793829407054,0.00023970875917545,-0.000535159795478357,0.00111437913528217,-0.281806643749604,0.513449000989762,0.133581529494948,0.00125924467561873,0.600740281736634 +1.52,0.560475745981846,-0.292806530483841,-0.00112532349903863,-0.000648533831248965,0.00120183124371897,0.00106578885938208,-0.213191776496368,0.490630081579484,-0.145300093535964,0.00173231070002945,0.554329078885393 +1.522,0.560474343559928,-0.29280362969384,-0.00112367513863301,-0.000613058346810024,0.00142736053083958,0.000533178761138314,0.0554493307380887,0.0242405078301755,-0.266910909828103,0.00164240013788391,0.273685338088164 +1.524,0.560473293748459,-0.292800821041717,-0.00112319078399407,-0.00042673650829661,0.00129879327503968,-1.85477993033811e-06,0.0919256218992469,-0.0938774332125134,-0.239603120820615,0.00136710330956006,0.273263513728254 +1.526,0.560472636613895,-0.29279843452074,-0.00112368255775273,-0.000245355859213036,0.00105185079798953,-0.000425233722144147,0.0823030935834244,-0.135865214453967,-0.180134801736411,0.00116078133915477,0.240170153242739 +1.528,0.560472312325022,-0.292796613638525,-0.00112489171888265,-9.75241339629117e-05,0.000755332417223808,-0.000722393986875985,0.0648639025893626,-0.150968885673924,-0.12009667971994,0.00104971000256688,0.203524305134553 +1.53,0.560472246517359,-0.292795413191071,-0.00112657213370024,1.40997511444141e-05,0.000447975255293831,-0.000905620441023907,0.0475087149273689,-0.149035292339866,-0.0680559743126279,0.00101045980401906,0.170587842463994 +1.532,0.560472368724027,-0.292794821737504,-0.00112851420064675,9.2510725746564e-05,0.000159191247864343,-0.000994617884126497,0.031989122364906,-0.134390987636956,-0.0260953225365151,0.00101151610130488,0.140588788194501 +1.534,0.560472616560262,-0.29279477642608,-0.00113055060523674,0.000142056240604038,-8.95886952539947e-05,-0.00101000173116997,0.0187074591581626,-0.111130736765719,0.00600238907275812,0.00102386991692216,0.112854057777408 +1.536,0.560472936948989,-0.292795180092285,-0.00113255420757143,0.000167340562379214,-0.000285331699198532,-0.000970608327835464,0.00770043055708934,-0.0833240174219484,0.0293819249364696,0.00102542555480565,0.0886875753590662 +1.538,0.560473285922511,-0.292795917752876,-0.00113443303854809,0.000172857962832395,-0.000422884764941788,-0.000892474031424089,-0.00112327958740055,-0.0545626558760836,0.0454747750523384,0.00100260724937575,0.0710373165269084 +1.54,0.56047362838084,-0.292796871631345,-0.00113612410369712,0.000162847444029612,-0.000503582322702866,-0.00078870922762611,-0.00790697626124047,-0.027636251016816,0.0556642107390342,0.000949829822393658,0.0626481204910402 +1.542,0.560473937312287,-0.292797932082167,-0.00113758787545859,0.000141230057787434,-0.000533429769009052,-0.000669817188467952,-0.0128181366354507,-0.00441870369460861,0.0611355801408488,0.000867841179971776,0.0626209927125399 +1.544,0.560474193301072,-0.292799005350421,-0.00113880337245099,0.000111574897487809,-0.000521257137481301,-0.000544166907062715,-0.0160385271591456,0.0140825355370022,0.0628397162499849,0.000761758218772083,0.0663655189007379 +1.546,0.560474383611877,-0.292800017110717,-0.00113976454308684,7.7075949150851e-05,-0.000477099626861043,-0.000418458323468012,-0.0177606159224019,0.0275789508799584,0.0615192390588519,0.00063927468616246,0.0697183963094563 +1.548,0.560474501604868,-0.292800913748929,-0.00114047720574487,4.05324337982016e-05,-0.000410941333961467,-0.000298089950827307,-0.0181866775320061,0.0363112653244123,0.0577650150108965,0.000509287028042009,0.0706120399671483 +1.55,0.560474545741612,-0.292801660876053,-0.00114095690289015,4.32923902282667e-06,-0.000331854565563394,-0.000187398263424426,-0.0175281140851746,0.0408596436754504,0.0520768238809754,0.000381135545613731,0.0684743809771056 +1.552,0.560474518921824,-0.292802241167191,-0.00114122679879856,-2.95800225424969e-05,-0.000247502759259665,-8.97826553034053e-05,-0.0160030524248844,0.041979407023468,0.0449113500243513,0.000264940594790781,0.0635247799048953 +1.554,0.560474427421522,-0.29280265088709,-0.00114131603351136,-5.9682970676711e-05,-0.000163936937469522,-7.75286332702074e-06,-0.0138313713676785,0.0404739924179941,0.0367105011476326,0.000174635286656078,0.0563658743449688 +1.556,0.560474280189942,-0.292802896914941,-0.00114125781025187,-8.4905508013211e-05,-8.56067895876888e-05,5.70593492871251e-05,-0.011228091997828,0.0371071046945114,0.0279113787481771,0.000133391293027553,0.04777083139684 +1.558,0.56047408779949,-0.292802993314248,-0.00114108779611422,-0.000104595338668023,-1.55085186914761e-05,0.000103892651665688,-0.00839617986247986,0.0325502908793406,0.0189416912077175,0.00014823758664121,0.0385850351615924 +1.56,0.560473861808587,-0.292802958949015,-0.00114084223964521,-0.00011849022746313,4.45943739296739e-05,0.000132826114117995,-0.00551952406002697,0.0273587085312942,0.0102056380421253,0.000183497598845682,0.0297173203064544 +1.562,0.56047361383858,-0.292802814936753,-0.00114055649165774,-0.000126673434908131,9.3926315433701e-05,0.000144715203834189,-0.00275688452622269,0.0219670025190799,0.00206571983563802,0.000214034581465581,0.0222354853871809 +1.564,0.560473355114847,-0.292802583243754,-0.00114026337882987,-0.000129517765568021,0.000132462384005993,0.000141088993460547,-0.000237418348869589,0.0166977106447197,-0.00517464704506003,0.000232867427627813,0.0174827595158234 +1.566,0.560473095767518,-0.292802285087217,-0.0011399921356839,-0.000127623108303609,0.00016071715801258,0.000124016615653949,0.00194175280021635,0.0117763013646188,-0.0112843641254106,0.000239786954630511,0.0164252412914491 +1.568,0.560472844622414,-0.292801940375122,-0.00113976731236726,-0.000121750754367156,0.000179567589464469,9.59515369589047e-05,0.00371601340670712,0.00734845702690666,-0.0161121517698939,0.000237222391059165,0.0180944745978218 +1.57,0.560472608764501,-0.292801566816859,-0.00113960832953607,-0.000112759054676781,0.000190110986120206,5.95680085743732e-05,0.00505185979854383,0.00349689124184982,-0.0195877550915324,0.000228921687702837,0.0205287526485981 +1.572,0.560472393586195,-0.292801179931177,-0.00113952904033296,-0.00010154331517298,0.000193555154431868,1.7600516592775e-05,0.0059440074806627,0.000256188837505222,-0.0217173631673547,0.000219281601708388,0.0225175647127617 +1.574,0.56047220259124,-0.292800792596241,-0.00113953792746969,-8.898302475413e-05,0.000191135741470227,-2.73014440950458e-05,0.0064113158532164,-0.00237481159390262,-0.0225742746015264,0.00021259402440201,0.0235869153316274 +1.576,0.560472037654096,-0.292800415388211,-0.00113963824610934,-7.58980517601148e-05,0.000184055908056257,-7.26965818133307e-05,0.00649201915142726,-0.00442305921402597,-0.0222863550738972,0.000211947834522405,0.0236303065564774 +1.578,0.560471898999033,-0.292800056372609,-0.00113982871379695,-6.3014948148421e-05,0.000173443504614123,-0.000116446864390635,0.00623863185417183,-0.00593340533303065,-0.0210217143987306,0.000218204961468314,0.0227164764547613 +1.58,0.560471785594304,-0.292799721614193,-0.0011401040335669,-5.09435243434275e-05,0.000160322286724135,-0.000156783439408253,0.00571291079720647,-0.00696236676298033,-0.0189740017855419,0.000229955485182821,0.0210029675159688 +1.582,0.560471695224936,-0.292799415083462,-0.00114045584755458,-4.0163304959595e-05,0.000145594037562202,-0.000192342871532802,0.00498113456037784,-0.00757314281077391,-0.0163483843493989,0.000244553665007142,0.0186931501993815 +1.584,0.560471624941084,-0.292799139238043,-0.00114087340505303,-3.10189861019161e-05,0.000130029715481039,-0.000222176976805849,0.00410993033356232,-0.00783157941275368,-0.0133490783895545,0.000259292331991244,0.016013215083033 +1.586,0.560471571148991,-0.2927988949646,-0.0011413445554618,-2.37235836253457e-05,0.000114267719911187,-0.00024573918509102,0.00316277933704034,-0.00780289860502491,-0.0101689361991716,0.000272043502629504,0.0132021082861008 +1.588,0.560471530046749,-0.292798682167163,-0.0011418563617934,-1.83678687537547e-05,9.88181210609395e-05,-0.000262852721602535,0.00219727420980309,-0.00754907836242323,-0.00698137239511786,0.000281414201678646,0.0105145688734435 +1.59,0.560471497677516,-0.292798499692116,-0.00114239596634821,-1.49344867861334e-05,8.40714064614944e-05,-0.000273664674671492,0.00126314150805662,-0.00712684914902505,-0.00393466595242918,0.000286676463008445,0.00823827053570955 +1.592,0.560471470308802,-0.292798345881537,-0.00114295102049208,-1.33153027215282e-05,7.03107244648393e-05,-0.000278591385412252,0.000400996090499372,-0.00658627566374469,-0.00114853140973507,0.000287635281714978,0.00669768238889986 +1.594,0.560471444416305,-0.292798218449218,-0.00114351033188986,-1.33305024241359e-05,5.77263038065156e-05,-0.000278258800310432,-0.000358232242481104,-0.00596991792459199,0.00128727194268623,0.000284496025273189,0.00611762367429911 +1.596,0.560471416986793,-0.292798114976322,-0.00114406405569333,-1.47482316914527e-05,4.64310527664713e-05,-0.000273442297641507,-0.000993294793638631,-0.0053125278308419,0.00331259734313165,0.000277748164959724,0.00633899737011005 +1.598,0.560471385423378,-0.292798032725007,-0.00114460410108043,-1.73036815986904e-05,3.6476192483148e-05,-0.000265008410937906,-0.00149213677524962,-0.00464123193696929,0.00489516277686619,0.000268066014039024,0.0069086992017899 +1.6,0.560471347772066,-0.292797969071552,-0.00114512408933708,-2.07167787924511e-05,2.78661250185941e-05,-0.000253861646534042,-0.00185104165328908,-0.00397611262664687,0.00602774751033013,0.000256225372334713,0.00745449977331028 +1.602,0.560471302556263,-0.292797921260507,-0.00114561954766657,-2.47078482118468e-05,2.05717419765605e-05,-0.000240897420896585,-0.00207350491637781,-0.00333109333866543,0.00672464921074033,0.00024303341689125,0.00778566069621934 +1.604,0.560471248940673,-0.292797886784584,-0.00114608767902066,-2.90107984579624e-05,1.45417516639323e-05,-0.000226963049691081,-0.00216894463500594,-0.00271501734289136,0.00701771241898989,0.000229271269228615,0.00783095955790649 +1.606,0.560471186513069,-0.2927978630935,-0.00114652739986533,-3.33836267518705e-05,9.71167260499505e-06,-0.000212826571220625,-0.00215133297287728,-0.00213281328015346,0.00695217985957618,0.00021564770468851,0.00758353023651154 +1.608,0.560471115406166,-0.292797847937894,-0.00114693898530555,-3.76161303494715e-05,6.01049854331847e-06,-0.000199154330252776,-0.0020378321946568,-0.00158664937091601,0.00658259972832058,0.000202764756833232,0.00707112688778063 +1.61,0.560471036048548,-0.292797839051506,-0.00114732401718634,-4.15349555304978e-05,3.36507512133099e-06,-0.000186496172307343,-0.00184749534420936,-0.00107699275539441,0.0059689577039737,0.000191094998748745,0.0063404738398541 +1.612,0.560470949266344,-0.292797834477593,-0.00114768496999477,-4.50061117263089e-05,1.70252752174082e-06,-0.000175278499436882,-0.00160008602201333,-0.000603513891639372,0.00517318088540107,0.000180972376504063,0.00544851399634095 +1.614,0.560470856024101,-0.292797832241396,-0.00114802513118409,-4.79352996185511e-05,9.51019554773501e-07,-0.000165803448765739,-0.0013150507488513,-0.000165793264533809,0.00425610182427232,0.000172596294891654,0.00445771787097314 +1.616,0.560470757525146,-0.292797830673515,-0.00114834818378984,-5.02663147217141e-05,1.03935446360559e-06,-0.000158254092139792,-0.00101066966601282,0.000236184603125133,0.00327495025629481,0.000166048608342236,0.00343548184710054 +1.618,0.560470654958842,-0.292797828083978,-0.00114865814755265,-5.19779782826024e-05,1.89575796727403e-06,-0.00015270364774056,-0.000703394273382507,0.000601751887902012,0.00228139287149209,0.000161318654091491,0.00246203620455018 +1.62,0.560470549613233,-0.292797823090483,-0.0011489589983808,-5.30798918152441e-05,3.44636201521364e-06,-0.000149128520653824,-0.00040737475892616,0.00092947227345319,0.0013201246797101,0.000158330881380279,0.00166511323077684 +1.622,0.560470442639275,-0.29279781429853,-0.00114925466163526,-5.3607477318307e-05,5.6136470610868e-06,-0.000147423149021719,-0.000134167281451436,0.00121722295784443,0.000427981555577161,0.00015696770217226,0.00129722812197002 +1.624,0.560470335183323,-0.292797800635895,-0.00114954869097689,-5.36165609410499e-05,8.31525384659137e-06,-0.000147416594431515,0.000107393989534632,0.00146240389936602,-0.000366466608794913,0.000157084472076219,0.00151144183124286 +1.626,0.560470228173031,-0.292797781037515,-0.00114984432801299,-5.31779013601685e-05,1.14632626585509e-05,-0.000148889015456899,0.000311180803347355,0.00166223480813077,-0.00104290364278531,0.000158515723218788,0.00198683317313465 +1.628,0.560470122471718,-0.292797754782844,-0.00115014424703871,-5.23718377276605e-05,1.49641930791144e-05,-0.000151588209002656,0.000473633673947482,0.00181409673394306,-0.00158890054585692,0.00016107675676557,0.00245761688670636 +1.63,0.56047001868568,-0.292797721180742,-0.001150450680849,-5.12833666643786e-05,1.87196495943231e-05,-0.000155244617640326,0.000593530745385262,0.00191588069020643,-0.00199926866728539,0.00016456397018685,0.00283195211273293 +1.632,0.560469917338251,-0.292797679904246,-0.00115076522550928,-4.99977147461194e-05,2.26277158399401e-05,-0.000159585283671798,0.000671687594433477,0.00196630840776368,-0.00227520356201049,0.000168757956163778,0.00308124718702398 +1.634,0.560469818694821,-0.292797630669879,-0.00115108902198369,-4.85966162866446e-05,2.65848832253779e-05,-0.000164345431888368,0.000710612457766044,0.00196519863229771,-0.00242329081367314,0.000173429547981861,0.00319989282588491 +1.636,0.560469722951786,-0.292797573564713,-0.00115142260723683,-4.71552649150552e-05,3.0488510369131e-05,-0.000169278446926491,0.000714140115098959,0.00191365921720088,-0.00245443756638485,0.000178348986169202,0.00319317263405106 +1.638,0.560469630073762,-0.292797508715837,-0.00115176613577139,-4.57400558262488e-05,3.42395200941814e-05,-0.000174163182153908,0.000687064516391444,0.00181419290701257,-0.0023827877995361,0.000183295694060836,0.00307262611639571 +1.64,0.560469539991563,-0.292797436606633,-0.00115211925996545,-4.44070068494895e-05,3.77452819971813e-05,-0.000178809598124635,0.000634786403996834,0.00167071225604109,-0.00222466947207705,0.000188067968968325,0.00285366211755645 +1.642,0.560469452445734,-0.292797357734709,-0.00115248137416389,-4.32009102102615e-05,4.09223691183458e-05,-0.000183061860042216,0.000562989439789607,0.00148846608649666,-0.00199761301163809,0.000192490528440672,0.00255400590136967 +1.644,0.560469367187922,-0.292797272917156,-0.00115285150740561,-4.2155049090331e-05,4.36991463431679e-05,-0.000186800050171187,0.0004773549402981,0.00127388524381877,-0.00171947121558463,0.000196420269572384,0.00219254021962433 +1.646,0.560469283825538,-0.292797182938124,-0.00115322857436458,-4.12914904490691e-05,4.60179100936208e-05,-0.000189939744904555,0.000383320986063749,0.00103436036125171,-0.00140766027653671,0.000199749197563588,0.00178839139715697 +1.648,0.56046920202196,-0.292797088845516,-0.00115361126638523,-4.0621765146076e-05,4.78365877881747e-05,-0.000192430691277334,0.000285890131013211,0.000777967464754558,-0.0010785348395631,0.000202405627096362,0.00136022201988455 +1.65,0.560469121338477,-0.292796991591773,-0.00115399829712969,-4.01479299250162e-05,4.91297799526391e-05,-0.000194253884262807,0.000189485295509772,0.000513159091608537,-0.000746900119877324,0.000204353035472064,0.000925795182309611 +1.652,0.56046904143024,-0.292796892326396,-0.00115438828192228,-3.98638239640369e-05,4.98892241546089e-05,-0.000195418291756844,9.78534059337121e-05,0.000248439400996057,-0.000425660389748172,0.000205587859322839,0.000502478051680542 +1.654,0.560468961883182,-0.292796792034876,-0.00115477997029671,-3.97565163012814e-05,5.01235375566233e-05,-0.0001959565258218,1.40119582603404e-05,-7.9584117074205e-06,-0.0001255943586978,0.000206135658287823,0.000126623908595123 +1.656,0.560468882404175,-0.292796691832246,-0.00115517210802557,-3.98077761309956e-05,4.98573905077792e-05,-0.000195920669191635,-5.9764755644398e-05,-0.000248376354206046,0.000144751884090244,0.000206046904963988,0.000293625181640808 +1.658,0.560468802652077,-0.292796592605314,-0.00115556365297348,-3.9995575323859e-05,4.91300321397991e-05,-0.000195377518285439,-0.000121927398732957,-0.00046600236169869,0.00037907096992612,0.000205391773824857,0.000612959453725344 +1.66,0.560468722421874,-0.292796495312117,-0.00115595361809871,-4.02954857259274e-05,4.79933810609845e-05,-0.00019440438531193,-0.000171605257781593,-0.000655096199508875,0.000573213389948312,0.000204255124352029,0.00088722769654993 +1.662,0.560468641470134,-0.29279640063179,-0.00115634127051473,-4.06819963549853e-05,4.65096473417636e-05,-0.000193084664725646,-0.000208540407165574,-0.000811161898067114,0.000725038663652985,0.000202731003735238,0.00110776973694371 +1.664,0.560468559693889,-0.292796309273528,-0.00115672595675761,-4.11296473545897e-05,4.4748733468716e-05,-0.000191504230657318,-0.000233006537676028,-0.000931061706898617,0.000834212965196616,0.000200917812545873,0.00127164429773222 +1.666,0.560468476951545,-0.292796221636856,-0.00115710728743736,-4.16140225056894e-05,4.27854005141694e-05,-0.000189747812864859,-0.000245719736224333,-0.00101306878858077,0.000901971474075099,0.000198913423009257,0.00137849160288044 +1.668,0.560468393237799,-0.292796138131926,-0.00115748494800907,-4.2112526299487e-05,4.06964583143931e-05,-0.000187896344761018,-0.000247745095271456,-0.00105686053658631,0.000930858094601158,0.000196811338507748,0.00142997504114899 +1.67,0.560468308501439,-0.292796058851023,-0.0011578588728164,-4.26050028867752e-05,3.85579583678241e-05,-0.000186024380486455,-0.000240404626761226,-0.00106345583381073,0.000924457210435547,0.000194697130332849,0.00142945927852477 +1.672,0.560468222817787,-0.292795983900092,-0.00115822904553102,-4.30741448065319e-05,3.64426349791502e-05,-0.000184198515919276,-0.000225188853675284,-0.00103510245513805,0.000887127081863891,0.000192646154547402,0.00138171689279271 +1.674,0.56046813620486,-0.292795913080483,-0.00115859566688008,-4.35057583014764e-05,3.44175485472719e-05,-0.000182475872158999,-0.000203676159271637,-0.000975122465413089,0.00082374549195685,0.000190721688786508,0.00129263468773207 +1.676,0.560468048794754,-0.292795846229898,-0.00115895894901966,-4.38888494436184e-05,3.25421451174978e-05,-0.000180903533951448,-0.000177461038919357,-0.00088772509135304,0.000739473692348835,0.000188974365749579,0.00116891813221804 +1.678,0.560467960649462,-0.292795782911902,-0.00115931928101588,-4.42156024571538e-05,3.08666481818598e-05,-0.000179517977389604,-0.000148092871299354,-0.000777796806128438,0.000639544472935682,0.000187441920809316,0.00101779983445463 +1.68,0.560467871932344,-0.292795722763305,-0.00115967702092921,-4.44812209288159e-05,2.94309578929841e-05,-0.000178345356059706,-0.000117025791834813,-0.000650678840669049,0.000529077799800437,0.000186150010276336,0.00084675929749289 +1.682,0.560467782724579,-0.292795665188071,-0.00116003266244012,-4.4683705624493e-05,2.82639328191836e-05,-0.000177401666190402,-8.55797377408151e-05,-0.000511942134517883,0.000412925860171498,0.000185113031993629,0.000663261944185617 +1.684,0.560467693197521,-0.292795609707574,-0.00116038662759398,-4.48235398797791e-05,2.73831893549126e-05,-0.00017669365261902,-5.49125259152738e-05,-0.000367169097209574,0.000295548511879129,0.000184335660311433,0.000474528665437671 +1.686,0.560467603430419,-0.292795555655313,-0.0011607394370506,-4.49033557281541e-05,2.67952564303453e-05,-0.000176219472142885,-2.60016730369017e-05,-0.00022175028827065,0.000180918079129011,0.000183814035060259,0.000287368454609349 +1.688,0.560467513584099,-0.292795502526548,-0.00116109150548255,-4.49275465719267e-05,2.64961882018299e-05,-0.000175969980302504,3.6422254101609e-07,-8.07029026939076e-05,7.24528336631946e-05,0.000183537370575758,0.000108455079489659 +1.69,0.560467423720233,-0.292795449670561,-0.00116144331697181,-4.49018988379901e-05,2.64724448195697e-05,-0.000175929660808233,2.35865424413894e-05,5.14831510756152e-05,-2.70237009852847e-05,0.000183489008951714,6.27464759485038e-05 +1.692,0.560467333976503,-0.292795396636769,-0.00116179522412578,-4.48332004021612e-05,2.67021208061324e-05,-0.000176078075106445,4.3250680814566e-05,0.000170967916907072,-0.00011529904028057,0.000183647781492281,0.000210700068087524 +1.694,0.560467244387431,-0.292795342862077,-0.00116214762927223,-4.47288961147318e-05,2.71563164871979e-05,-0.000176390856969355,5.91150670081752e-05,0.000274650472503746,-0.000190767966527783,0.000183988787960513,0.000339587824055953 +1.696,0.560467155060919,-0.292795288011503,-0.00116250078755366,-4.45967401341285e-05,2.78007226961474e-05,-0.000176841146972556,7.10955669336321e-05,0.000360223666867609,-0.00025241016308325,0.000184484526927296,0.000445563194436966 +1.698,0.560467066000471,-0.292795231659187,-0.00116285499386012,-4.44445138469973e-05,2.85972111546684e-05,-0.000177400497621688,7.92472962252155e-05,0.000426194912694909,-0.000299753626434307,0.000185105515459003,0.000527043142566665 +1.7,0.560466977282863,-0.292795173622658,-0.00116321038954414,-4.42797509492276e-05,2.9505502346927e-05,-0.000178040161478293,8.37443170365048e-05,0.000471875420682276,-0.000332825760875066,0.000185821339226922,0.000583483084915109 +1.702,0.560466888881467,-0.292795113637177,-0.00116356715450604,-4.41095365788513e-05,3.04847128373975e-05,-0.000178731800665188,8.4858578497382e-05,0.000497340717220407,-0.000352096281817926,0.000186601247324342,0.000615240244961196 +1.704,0.560466800844717,-0.292795051683807,-0.00116392531674681,-4.39403166352381e-05,3.14948652158087e-05,-0.000179448546605565,8.29384477762928e-05,0.000503366185539144,-0.000358413403990509,0.000187415204398727,0.000623471307297965 +1.706,0.5604667131202,-0.292794987657716,-0.00116428494869246,-4.37777827877461e-05,3.24981775795541e-05,-0.00018016545428115,7.83880599319885e-05,0.000491342567326968,-0.00035293671717812,0.000188234472741144,0.000610021747759722 +1.708,0.560466625733586,-0.292794921691097,-0.00116464597856393,-4.36267643955101e-05,3.34602354851165e-05,-0.000180860293474277,7.16478334994441e-05,0.000463175695714078,-0.000337068526735928,0.000189032610112495,0.00057730436414539 +1.71,0.560466538613143,-0.292794853816774,-0.00116500838986636,-4.34911914537483e-05,3.43508803624104e-05,-0.000181513728388094,6.31761795655272e-05,0.000421176170328772,-0.000312386100494166,0.000189785932853534,0.000528172009765055 +1.712,0.56046645176882,-0.292794784287575,-0.00116537203347748,-4.3374059677248e-05,3.51449401664316e-05,-0.000182109837876254,5.34333063906267e-05,0.000367943703283302,-0.000280575986923159,0.000190474326153167,0.000465790265522552 +1.714,0.560466365116904,-0.292794713237014,-0.00116573682921786,-4.32774582281858e-05,3.58226551755436e-05,-0.000182636032335787,4.28670918206641e-05,0.000306250701881394,-0.000243372344846393,0.000191081452061357,0.000393518968030817 +1.716,0.560466278658987,-0.292794640996955,-0.00116610257760683,-4.32025913099654e-05,3.63699429739572e-05,-0.00018308332725564,3.19010859395341e-05,0.000238929626084072,-0.000202500426149665,0.000191595254030001,0.00031481973905013 +1.718,0.560466192306539,-0.292794567757242,-0.00116646916252688,-4.31498538844277e-05,3.67783736798799e-05,-0.000183446034040385,2.09243455895347e-05,0.000168768089781057,-0.000159625905375715,0.000192007828137111,0.000233240060953761 +1.72,0.560466106059572,-0.29279449388346,-0.00116683636174299,-4.31188939276072e-05,3.70450153330814e-05,-0.000183721830877143,1.0284058327148e-05,9.84143634641387e-05,-0.000116311228877397,0.000192315582612065,0.000152707074998829 +1.722,0.560466019830963,-0.292794419577181,-0.00116720404985039,-4.31087176511191e-05,3.71720311337364e-05,-0.000183911278955895,2.79769263311635e-07,3.02964528464677e-05,-7.39789401613122e-05,0.000192518778209619,7.99427101949261e-05 +1.724,0.560465933624701,-0.292794345195335,-0.00116757200685881,-4.3117774850554e-05,3.71662011444673e-05,-0.000184017746637788,-8.84007450574486e-06,-3.34441502269911e-05,-3.38828045481909e-05,0.000192621390539117,4.84221286781526e-05 +1.726,0.560465847359864,-0.292794270912376,-0.00116794012083694,-4.31440779491421e-05,3.70382545328285e-05,-0.000184046810174088,-1.68800598498997e-05,-9.10025388378698e-05,2.91375604200006e-06,0.000192630402834487,9.26006936785384e-05 +1.728,0.560465761048389,-0.292794197042317,-0.00116830819409951,-4.31852950899536e-05,3.68021909891158e-05,-0.00018400609161362,-2.36978700551837e-05,-0.000140944131366005,3.5551342252027e-05,0.000192555479601401,0.000147277748311111 +1.73,0.560465674618683,-0.292794123703612,-0.0011686761452034,-4.32388694293628e-05,3.64744780073644e-05,-0.000183904604805079,-2.92030011284083e-05,-0.000182222265054932,6.33815916417645e-05,0.000192408136636556,0.000195128151007739 +1.732,0.560465588092911,-0.292794051144405,-0.00116904381251873,-4.33021070944672e-05,3.60733019288961e-05,-0.000183752565247053,-3.33538474617256e-05,-0.000214180628094196,8.59670286346147e-05,0.000192201354900912,0.00023318694346723 +1.734,0.560465501410255,-0.292793979410404,-0.00116941115546439,-4.33722848192097e-05,3.56177554949877e-05,-0.000183560736690541,-3.6154280957934e-05,-0.000236541491255293,0.000103074982577,0.000191948752669335,0.000260544547342891 +1.736,0.560465414603772,-0.292793908673383,-0.00116977805546549,-4.34467242182989e-05,3.51271359638749e-05,-0.000183340265316745,-3.76488562547905e-05,-0.000249381959527284,0.000114665925192436,0.000191664254394866,0.000277050667776129 +1.738,0.560465327623358,-0.29279383890186,-0.00117014451652565,-4.35228802442289e-05,3.46202276568785e-05,-0.000183102072989771,-3.7917585737901e-05,-0.00025309971132814,0.000120877335918479,0.000191361360783516,0.000283034516483993 +1.74,0.560465240512251,-0.292793770192473,-0.00117051046375745,-4.35983945612505e-05,3.41147371185624e-05,-0.000182856755973071,-3.70701663809924e-05,-0.000248370594924106,0.000122003468959464,0.000191052946855007,0.000279189892540206 +1.742,0.56046515322978,-0.292793702442912,-0.00117087594354955,-4.36711609097528e-05,3.36267452771821e-05,-0.000182614059113933,-3.52399290304284e-05,-0.000236100517608806,0.000118472389017132,0.000190750682513089,0.000266497680989239 +1.744,0.560465065827608,-0.292793635685491,-0.0011712409199939,-4.37393542773723e-05,3.31703350481271e-05,-0.000182382866417002,-3.25776350340589e-05,-0.000217373511551821,0.000110820850759974,0.000190464989439762,0.000246158093086428 +1.746,0.560464978272363,-0.292793569761572,-0.00117160547501521,-4.38014714498891e-05,3.27572512309748e-05,-0.000182170775710894,0.16319679816551,-0.295349705588254,0.119239438327485,0.000190204621217502,0.357886416583805 +1.748,0.560464890621722,-0.292793504656487,-0.00117196960309675,0.000609047838384668,-0.00114822848730489,0.00029457488689294,0.096150303476039,-0.216431926648025,0.2931733272633,0.00133271988523001,0.376879635360873 +1.75,0.560467414463716,-0.292798162675521,-0.00117042717546764,0.000340799742454267,-0.000832970455361125,0.000990522533342308,-0.315566204979467,0.519106179160122,0.17097354159095,0.00133832699032048,0.631098413000314 +1.752,0.560466253820692,-0.292796836538308,-0.00116800751296338,-0.0006532169815332,0.000928196229335597,0.000978469053256741,-0.245633254208899,0.503660957114348,-0.131619714807685,0.00149854674711779,0.575616021858887 +1.754,0.56046480159579,-0.292794449890604,-0.00116651329925462,-0.000641733274381328,0.00118167337309627,0.000464043674111569,0.0484727680563623,0.0365027929619121,-0.258143111818778,0.00142250134889773,0.265179051428555 +1.756,0.560463686887594,-0.292792109844816,-0.00116615133826693,-0.00045932590930775,0.00107420740118325,-5.41033940183732e-05,0.091046031922004,-0.0836650971489104,-0.23064020423201,0.0011695422219666,0.261694730970768 +1.758,0.560462964292153,-0.292790153060999,-0.00116672971283069,-0.000277549146693312,0.000847012984500627,-0.000458517142816472,0.246727282958436,-0.420873211028765,-0.0504422435878073,0.00100234848979755,0.490462059547818 +1.76,0.560462576691007,-0.292788721792878,-0.0011679854068382,0.000527583222525995,-0.000609285442931817,-0.000255872368369603,0.162288026461787,-0.35619966913189,0.18443596195173,0.000845602434099266,0.432703399436137 +1.762,0.560465074625043,-0.292792590202771,-0.00116775320230417,0.000371602959153838,-0.000577785692026933,0.000279226704990448,-0.104385847583821,0.0873752969768325,0.232685660291748,0.000741547448207297,0.269580162851403 +1.764,0.560464063102844,-0.292791032935646,-0.00116686850001824,0.000110039832190711,-0.000259784255024486,0.000674870272797389,-0.117119819509348,0.166613769898849,0.144310264807434,0.000731468734077411,0.249604993881534 +1.766,0.560465514784372,-0.292793629339791,-0.00116505372121298,-9.68763188835541e-05,8.86693875684629e-05,0.000856467764220186,-0.249202067308107,0.459058154368002,-0.0757400902863524,0.000866478108552385,0.527799792268788 +1.768,0.560463675597568,-0.292790678258095,-0.00116344262896136,-0.000886768437041718,0.00157644836244752,0.000371909911651979,-0.147201176740885,0.351455293697705,-0.330996018204319,0.00184658189170745,0.504725047891578 +1.77,0.560461967710624,-0.292787323546341,-0.00116356608156637,-0.000685681025847095,0.00149449056235928,-0.000467516308597093,0.131583085545561,-0.129551669322825,-0.383206532707236,0.00170945371653986,0.425376292399474 +1.772,0.560460932873465,-0.292784700295846,-0.00116531269419574,-0.000360436094859473,0.00105824168515622,-0.00116091621917697,0.150628707791533,-0.238078118847823,-0.286769768738717,0.00161168114421804,0.402003853896356 +1.774,0.560460525966244,-0.2927830905796,-0.00116820974644308,-8.31661946809614e-05,0.000542178086967992,-0.00161459538355196,0.120158294751593,-0.2550681380796,-0.170749818177024,0.00170522489616862,0.329625956606107 +1.776,0.560460600208686,-0.292782531583498,-0.00117177107572995,0.0001201970841469,3.79691328378228e-05,-0.00184391549188506,0.084253546077384,-0.236605036264825,-0.0690739368740949,0.00184821896302889,0.260483803657309 +1.778,0.560461006754581,-0.292782938703069,-0.00117558540841062,0.000253847989628575,-0.000404242058091308,-0.00189089113104834,0.0519805891385782,-0.197751257847989,0.0106692707281877,0.00195021017145477,0.204747100017379 +1.78,0.560461615600645,-0.292784148551731,-0.00117933464025415,0.000328119440701213,-0.000753035898554132,-0.00180123840897231,0.0250950717428644,-0.147060701932017,0.0685277712188583,0.00197969321811093,0.164172677710821 +1.782,0.560462319232344,-0.292785950846663,-0.00118279036204651,0.000354228276600032,-0.000992484865819375,-0.00161678004617291,0.00370062056692653,-0.0918381623700446,0.107108870921017,0.00192989160279183,0.14113912600715 +1.784,0.560463032513751,-0.292788118491194,-0.00118580176043884,0.000342921922968919,-0.00112038854803431,-0.00137280292528824,-0.0125467756878494,-0.0382527523060116,0.129796614765226,0.0018048417702112,0.135896489445676 +1.786,0.560463690920036,-0.292790432400855,-0.00118828157374766,0.000304041173848635,-0.00114549587504342,-0.001097593587112,-0.0241406046333492,0.0090779965211673,0.139943952879966,0.00161533696720101,0.142300698383993 +1.788,0.560464248678447,-0.292792700474694,-0.00119019213478729,0.000246359504435522,-0.00108407656194964,-0.000813027113768377,-0.0316287685764304,0.0472532984095718,0.140503323020451,0.00137729012387253,0.151573206708951 +1.79,0.560464676358053,-0.292794768707103,-0.00119153368220273,0.000177526099542913,-0.000956482681405134,-0.000535580295030202,-0.0355767240806104,0.0749751028969457,0.133910032918197,0.00111050478984627,0.157540046549657 +1.792,0.560464958782845,-0.29279652640542,-0.00119233445596741,0.000104052608113081,-0.000784176150361859,-0.00027738698209559,-0.0365513562194941,0.0922558937195559,0.122108565070965,0.00083827365334214,0.157345648910824 +1.794,0.560465092568486,-0.292797905411705,-0.00119264323013112,3.13206746649363e-05,-0.00058745910652691,-4.71460347463426e-05,-0.0351117324451366,0.100051283185437,0.10664444947614,0.000590179578683612,0.1503866072043 +1.796,0.560465084065543,-0.292798876241846,-0.00119252304010639,-3.63943216674656e-05,-0.00038397101762011,0.000149190815808969,0.134793522767185,-0.19555363349813,0.211076347503801,0.000413541036105976,0.317747921834044 +1.798,0.560464946991199,-0.292799441295775,-0.00119204646686788,0.000570494765733675,-0.00136967364051943,0.000797159355268861,0.0716010114254483,-0.12302056606045,0.368774070984983,0.00168431980245912,0.395291133143432 +1.8,0.560467366044606,-0.292804354936408,-0.00118933440268532,0.000250009724034328,-0.00087605328186191,0.0016242870997489,-0.34286499610292,0.602904273207249,0.222521351182954,0.0018623326225955,0.728399423349925 +1.802,0.560465947030095,-0.292802945508903,-0.00118554931846888,-0.000800965218678006,0.00104194345230957,0.00168724476000068,-0.26674402166249,0.574721968231439,-0.104472892122932,0.0021386879902156,0.642162206182385 +1.804,0.560464162183732,-0.292800187162599,-0.00118258542364531,-0.000816966362615634,0.00142283459106385,0.00120639553125718,0.0387590228037581,0.092021570245737,-0.249917583764955,0.00203648778268138,0.269126419948147 +1.806,0.560462679164645,-0.292797254170538,-0.00118072373634386,-0.000645929127462974,0.00141002973329252,0.000687574424940856,0.0882552522313283,-0.0439356734396878,-0.238221382708667,0.00169651609963088,0.257815360532772 +1.808,0.560461578467222,-0.292794547043665,-0.00117983512594555,-0.00046394535369032,0.0012470918973051,0.000253510000422507,0.0851270629681487,-0.100333634282801,-0.191156019389328,0.00135452973826678,0.232064815874253 +1.81,0.56046082338323,-0.292792265802949,-0.00117970969634217,-0.000305420875590378,0.00100869519616131,-7.70496526164565e-05,0.0721102503542513,-0.12724305443329,-0.1416266015037,0.0010567329648372,0.203589728034481 +1.812,0.560460356783719,-0.292790512262881,-0.00118014332455602,-0.000175504352273314,0.000738119679571935,-0.000312996405592292,0.058075489951792,-0.134980759937397,-0.098312786676359,0.000820724794892872,0.176799242392294 +1.814,0.560460121365821,-0.292789313324231,-0.00118096168196453,-7.31189157832101e-05,0.000468772156411723,-0.000470300799321893,0.0449328332943754,-0.128119414966043,-0.0630967139977205,0.000668039334407054,0.149715527973592 +1.816,0.560460064308056,-0.292788637174255,-0.0011820245277533,4.22698090418727e-06,0.000225642019707761,-0.000565383261583174,0.0331169633868699,-0.110984237623041,-0.0355809530337355,0.0006087613825661,0.12116203400209 +1.818,0.560460138273745,-0.292788410756152,-0.00118322321501087,5.93489377642697e-05,2.483520591956e-05,-0.000612624611456835,0.0227163744134784,-0.0878923969195587,-0.0145518230130689,0.000615993505184472,0.0919394510303508 +1.82,0.560460301703807,-0.292788537833431,-0.00118447502619913,9.50924785581008e-05,-0.000125927567970474,-0.00062359055363545,0.0137254522122876,-0.0626769890502142,0.0013629846140617,0.000643246073005229,0.0641767147950924 +1.822,0.560460518643659,-0.292788914466424,-0.00118571757722541,0.00011425074661342,-0.000225872750281297,-0.000607172673000588,0.00611469546524245,-0.0383386941187058,0.0133568389699273,0.000657822458768352,0.0410566695511084 +1.824,0.560460758706794,-0.292789441324433,-0.00118690371689113,0.000119551260419071,-0.000279282344445297,-0.00057016319775574,-0.000149342642419281,-0.0169255901655285,0.0223134257494594,0.000646047369673232,0.0280069076185308 +1.826,0.5604609968487,-0.292790031595802,-0.00118799823001643,0.000113653376043743,-0.000293575110943411,-0.00051791897000275,-0.0051058951788807,0.000413756345157834,0.0288102327272721,0.000606088685870547,0.0292621063782232 +1.828,0.560461213320298,-0.292790615624876,-0.00118897539277114,9.91276797035478e-05,-0.000277627319064666,-0.000454922266846652,-0.00880811437675709,0.0132767768758202,0.0331864092361147,0.00054208624225979,0.0368129520830811 +1.83,0.560461393359419,-0.292791142105078,-0.00118981791908382,7.84209185367146e-05,-0.000240468003440131,-0.000385173333058291,-0.0113290349879058,0.0218109637399599,0.0356305497224707,0.000460796264787225,0.0432851157622166 +1.832,0.560461527003972,-0.29279157749689,-0.00119051608610338,5.38115397519245e-05,-0.000190383464104826,-0.000312400067956769,-0.0127651872544598,0.0265179090179479,0.0362669654811048,0.000369777429914835,0.0467059127898517 +1.834,0.560461608605578,-0.292791903638934,-0.00119106751935565,2.73601695188752e-05,-0.000134396367368339,-0.000240105471133872,-0.0132374875019825,0.0280844078826003,0.0352243259759896,0.000276516906727827,0.0469544266490837 +1.836,0.56046163644465,-0.29279211508236,-0.00119147650798791,8.61589743994528e-07,-7.80458325744248e-05,-0.000171502764052811,-0.0128885650693688,0.027253289361373,0.0326772245156856,0.000188427950147732,0.0444596209229296 +1.838,0.560461612051937,-0.292792215822265,-0.00119175353041186,-2.41940907586002e-05,-2.53832099228468e-05,-0.00010939657307113,-0.0118764610021471,0.0247350082291375,0.0288609253509819,0.000114879378364133,0.0398224053787057 +1.84,0.560461539668287,-0.292792216615199,-0.0011919140942802,-4.66442542645939e-05,2.08942003421253e-05,-5.60590626488832e-05,0.159195301545345,-0.274532122257475,0.149188146949912,7.58608764048266e-05,0.350668124265174 +1.842,0.56046142547492,-0.292792132245463,-0.00119197776666245,0.00061258711542278,-0.00112351169895275,0.000487356014728518,0.0924768204929592,-0.199850429326992,0.323316942258018,0.00136932735193516,0.391185380071578 +1.844,0.560463990016749,-0.292796710661995,-0.00118996467022128,0.000323263027707243,-0.000778507516965842,0.00123720870638319,-0.332778543075951,0.533374909589961,0.187040487749021,0.00149708327163359,0.655907384444819 +1.846,0.560462718527031,-0.292795246275531,-0.00118702893183692,-0.000718527056881024,0.0010099879394071,0.0012355179657246,-0.260318132494497,0.514984642860371,-0.131008399181093,0.00175010325776685,0.591724524710138 +1.848,0.560461115908521,-0.292792670710237,-0.00118502259835838,-0.000718009502270744,0.00128143105447564,0.000713175109658819,0.0460037167665516,0.0423545768249433,-0.264442333766656,0.00163285698386678,0.271735165229517 +1.85,0.560459846489022,-0.292790120551313,-0.00118417623139828,-0.000534512189814817,0.00117940624670687,0.000177748630657975,0.0927926009086642,-0.0830590899843219,-0.240723627756983,0.00130701834399239,0.271029784660101 +1.852,0.560458977859762,-0.292787953085251,-0.00118431160383575,-0.000346839098636087,0.000949194694538357,-0.000249719401369114,0.0862783456623271,-0.1285221502903,-0.182848221240254,0.00104097440309674,0.239573304139245 +1.854,0.560458459132627,-0.292786323772535,-0.00118517510900376,-0.000189398807165508,0.000665317645545671,-0.000553644254303042,0.0700889974947215,-0.144903207450336,-0.124264363882999,0.000886025641814572,0.203349549373626 +1.856,0.560458220264533,-0.292785291814668,-0.00118652618085296,-6.64831086572004e-05,0.000369581864737012,-0.00074677685690111,0.0533873457594923,-0.143046441556521,-0.0738984878923334,0.000835874651178221,0.169627473134514 +1.858,0.560458193200193,-0.292784845445076,-0.00118816221643137,2.41505758724614e-05,9.31318793195856e-05,-0.000849238205872376,0.0381882909322728,-0.127832182002935,-0.0337101618372997,0.000854670888455844,0.137607366558103 +1.86,0.560458316866837,-0.292784919287151,-0.00118992313367645,8.62700550718908e-05,-0.000141746863274727,-0.000881617504250309,0.0249557867079697,-0.103744697957375,-0.00325821134742471,0.000897097608652968,0.106753780193795 +1.862,0.560458538280413,-0.292785412432529,-0.00119168868644837,0.00012397372270434,-0.000321846912509915,-0.000862271051262075,0.0137632733890336,-0.0751519836118818,0.0188095961254492,0.000928690629250636,0.0786832208389078 +1.864,0.560458812761728,-0.292786206674801,-0.0011933722178815,0.000141323148628025,-0.000442354797722255,-0.000806379119748512,0.0045578637392074,-0.0458568909234013,0.0340774657025741,0.000930536019814612,0.0573140666480404 +1.866,0.560459103573008,-0.29278718185172,-0.00119491420292736,0.00014220517766117,-0.000505274476203521,-0.000725961188451778,-0.00276123540698946,-0.0187704985027403,0.044003313379344,0.000895848344305388,0.0479191780331732 +1.868,0.560459381582438,-0.292788227772706,-0.00119627606263531,0.000130278207000067,-0.000517436791733216,-0.000630365866231136,-0.00831530997530415,0.00418972756835445,0.0497679772297823,0.000825877938903593,0.0506315095037324 +1.87,0.560459624685836,-0.292789251598887,-0.00119743566639229,0.000108943937759953,-0.000488515565930103,-0.000526889279532649,0.159337219543531,-0.273821333735685,0.179325820146361,0.000726724536958184,0.364038764572975 +1.872,0.560459817358189,-0.29279018183497,-0.00119838361975344,0.000767627085174193,-0.00161272212667596,8.69374143543099e-05,0.0878390588043841,-0.182555521810457,0.360610044719197,0.00178820639574347,0.413620385314251 +1.874,0.560462695194176,-0.292795702487394,-0.00119708791673487,0.00046030017297749,-0.00121873765317193,0.000915550899344141,-0.345548779714932,0.563016750415589,0.225119635830287,0.00159230372912708,0.697904485475892 +1.876,0.560461658558881,-0.292795056785582,-0.00119472141615606,-0.000614568033685536,0.000639344874986402,0.000987415957675457,-0.275036278862828,0.552215843694497,-0.0943994579449823,0.0013271947900258,0.62409818969313 +1.878,0.560460236922041,-0.292793145107894,-0.00119313825290417,-0.000639844942473821,0.00099012572160606,0.000537953067564211,0.0334641535038038,0.0823743462989577,-0.228373979298604,0.00129581788762812,0.245071534288636 +1.88,0.560459099179111,-0.292791096282696,-0.00119256960388581,-0.000480711419670321,0.000968842260182234,7.39200404810402e-05,0.0808445112382426,-0.0434692141344783,-0.20601587674262,0.00108406778685707,0.225539240587641 +1.882,0.560458314076363,-0.292789269738853,-0.00119284257274224,-0.00031646689752085,0.000816248865068147,-0.000286110439406267,0.0749961705445722,-0.0913492634070643,-0.150753033237305,0.000921017204230604,0.191560931694361 +1.884,0.560457833311521,-0.292787831287236,-0.00119371404564343,-0.000180726737492032,0.000603445206553976,-0.00052909209246818,0.0598872611987099,-0.111588047316258,-0.0959494295014669,0.000822646165292127,0.158885711690494 +1.886,0.560457591169413,-0.292786855958027,-0.00119495894111211,-7.69178527260105e-05,0.000369896675803116,-0.000669908157412135,0.0446489645880565,-0.11451377428251,-0.0502878614774132,0.000769101323757473,0.132799862767936 +1.888,0.56045752564011,-0.292786351700532,-0.00119639367827308,-2.13087913980558e-06,0.000145390109423937,-0.000730243538377833,0.0311792923840536,-0.104561485674698,-0.0154089181778754,0.00074457937784147,0.110193862440169 +1.89,0.560457582645896,-0.292786274397589,-0.00119787991526563,4.77993168102042e-05,-4.83492668956753e-05,-0.000731543830123637,0.0198052710134733,-0.0858610333526187,0.00949086165213941,0.000734696401031632,0.0886252913292626 +1.892,0.560457716837378,-0.2927865450976,-0.00119931985359358,7.70902049140875e-05,-0.000198054023986538,-0.000692280091769276,0.183534189492074,-0.358465134055185,0.154566674929676,0.000724168503575675,0.431361690515663 +1.894,0.560457891006716,-0.292787066613685,-0.0012006490356327,0.000781936074778499,-0.00148220980311642,-0.000113277130404932,0.10670058269574,-0.255297420644756,0.34749490889982,0.00167964330551674,0.444200966958392 +1.896,0.560460844581677,-0.292792473936813,-0.00119977296211519,0.000503892535697048,-0.00121924370656556,0.000697699543830004,-0.334927997718004,0.50594575009416,0.217812802199082,0.00149239658167376,0.644670677552151 +1.898,0.560459906576859,-0.292791943588511,-0.00119785823745738,-0.000557775916093516,0.000541573197260225,0.000757974078391398,-0.268541546888379,0.511498311497881,-0.0978500241831033,0.0010857901289282,0.585934904492829 +1.9,0.560458613478012,-0.292790307644023,-0.00119674106580163,-0.000570273651856467,0.000826749539425963,0.000306299447097591,0.0385748861880807,0.0563932273447975,-0.227046453783741,0.00105002199511965,0.237104006947495 +1.902,0.560457625482251,-0.292788636590354,-0.00119663303966899,-0.000403476371341193,0.000767146106639415,-0.000150211736743566,0.0832346598311771,-0.0568508028188363,-0.199968786725526,0.000879698753561802,0.22393645983367 +1.904,0.560456999572527,-0.292787239059597,-0.0011973419127486,-0.000237335012531758,0.000599346328150618,-0.000493575699804516,0.0746633532083817,-0.0944119712999179,-0.140432200416117,0.000811887246283987,0.184957939950597 +1.906,0.560456676142201,-0.292786239205041,-0.00119860734246821,-0.000104822958507666,0.000389498221439743,-0.000711940538408034,0.0572508646740076,-0.106822656043698,-0.0820518838949567,0.000818264045014654,0.146360011618144 +1.908,0.560456580280693,-0.292785681066711,-0.00120018967490224,-8.33155383572758e-06,0.000172055703975826,-0.000821783235384343,0.0402439168378787,-0.104306403042598,-0.0336715853862384,0.000839642939599145,0.116761184563029 +1.91,0.560456642815986,-0.292785550982225,-0.00120189447540975,5.61527088438484e-05,-2.77273907306474e-05,-0.000846626879952988,0.025551199524243,-0.0909946932144133,0.00296142026873225,0.000848939932366338,0.0945603934018938 +1.912,0.560456804891528,-0.292785791976274,-0.00120357618242205,9.38732442612444e-05,-0.000191923068881827,-0.000809937554309414,0.013476954635605,-0.0706338874577327,0.0285862091662855,0.00083764281900931,0.0773818177490063 +1.914,0.560457018308963,-0.292786318674501,-0.00120513422562699,0.000110060527386269,-0.000310262940561578,-0.000732282043287846,0.00392153329253907,-0.0469325344212844,0.0449090166044357,0.000802878199290704,0.0650758095066594 +1.916,0.560457245133638,-0.292787033028036,-0.0012065053105952,0.000109559377431401,-0.000379653206566965,-0.000630301487891671,-0.00333883183600701,-0.0231391604280151,0.0538944133158314,0.000743921891113703,0.0587467133548782 +1.918,0.560457456546473,-0.292787837287327,-0.00120765543157855,9.67052000422405e-05,-0.000402819582273639,-0.00051670439002452,-0.00856433194501513,-0.00172086785100157,0.0573772586517546,0.00066226802599018,0.0580384267379412 +1.92,0.560457631954438,-0.292788644306365,-0.0012085721281553,7.5302049651342e-05,-0.000386536677970971,-0.000400792453284665,-0.0120174107401414,0.015744587217321,0.0568854634387069,0.000561885747023777,0.0602350905882738 +1.922,0.560457757754671,-0.292789383434039,-0.00120925860139169,4.86355570816776e-05,-0.000339841233404358,-0.000289162536269705,-0.013952831633136,0.0285121047431722,0.0536037446591655,0.000448856829864901,0.0622975366202651 +1.924,0.560457826496666,-0.292790003671299,-0.00120972877830038,1.94907231187979e-05,-0.000272488258998282,-0.000186377474648003,-0.0146163155398393,0.0365165074601991,0.0484103892806064,0.000330705764442919,0.0623751375738024 +1.926,0.560457835717564,-0.292790473387075,-0.00121000411129028,-9.82970507767965e-06,-0.000193775203563562,-9.55209791472788e-05,-0.0142438456654514,0.0401799222435328,0.0419435392737254,0.00021626305758328,0.0598044628572491 +1.928,0.560457787177846,-0.292790778772113,-0.00121011086221696,-3.74846595430078e-05,-0.000111768570024151,-1.86033175531008e-05,-0.0130612137494434,0.0402199164077632,0.0346754790324019,0.000119345701096773,0.0546866146930183 +1.93,0.560457685778926,-0.292790920461355,-0.0012100785245605,-6.20745600754535e-05,-3.28955379325091e-05,4.31809369823288e-05,-0.011283499114223,0.0374852443633943,0.0269777941340476,8.24618744821028e-05,0.0475422156991353 +1.932,0.560457538879606,-0.292790910354265,-0.00120993813846904,-8.26186559998997e-05,3.81724074294265e-05,8.93078589830897e-05,-0.00911307384415803,0.0328314549713493,0.0191663895674626,0.000127510268936785,0.0390935165913294 +1.934,0.560457355304302,-0.292790767771725,-0.00120972129312456,-9.85268554520856e-05,9.84302819528881e-05,0.000119846495252179,0.169151384343813,-0.269146491704841,0.142718383605925,0.000183736888171189,0.348454533392149 +1.936,0.560457144772184,-0.292790516633137,-0.00120945875248803,0.000593986881375352,-0.00103841355938994,0.000660181393406789,0.101524793169605,-0.196709137190859,0.320820014238637,0.00136636840119033,0.389778462486811 +1.938,0.560459731251827,-0.292794921425963,-0.00120708056755094,0.000307572317226334,-0.000688406266810548,0.00140312655220673,-0.338986207784608,0.536449823212297,0.175328458101691,0.00159288042238441,0.658354106931073 +1.94,0.560458375061453,-0.292793270258204,-0.0012038462462792,-0.000761957949763081,0.00110738573345925,0.00136149522581355,-0.266109889041077,0.517537680367468,-0.152552864204729,0.00191325699522812,0.601607928822967 +1.942,0.560456683420028,-0.292790491883029,-0.00120163458664768,-0.000756867238937974,0.00138174445465933,0.000792915095387813,0.0502516768266514,0.0418055281330154,-0.286798171332362,0.00176374037314262,0.29415323266277 +1.944,0.560455347592497,-0.292787743280386,-0.00120067458589765,-0.000560951242456475,0.00127460784599131,0.000214302540484101,0.0991790646276412,-0.0867232894628809,-0.260781299799353,0.00140897730156806,0.292171699725892 +1.946,0.560454439615058,-0.292785393451645,-0.00120077737648575,-0.000360150980427409,0.0010348512968078,-0.0002502101038096,0.269200980576589,-0.430035210139539,-0.0676426993809902,0.00112393551027451,0.511834919366295 +1.948,0.560453906988575,-0.292783603875199,-0.00120167542631289,0.000515852679849881,-0.000445532994566844,-5.62682570398598e-05,0.181965823117802,-0.368352936930271,0.180528787675771,0.000683936951265471,0.448760615593413 +1.95,0.560456503025778,-0.292787175583623,-0.0012010024495139,0.000367712312043799,-0.000438560450913283,0.000471905046893483,-0.280559770304833,0.373103387091982,0.0943604709603347,0.000741782978247276,0.476260244669725 +1.952,0.560455377837824,-0.292785358117002,-0.00119978780612531,-0.000606386401369451,0.00104688055380109,0.000321173626801479,-0.226029785006798,0.375776748572087,-0.185658554859719,0.00125172515363617,0.476200301837607 +1.954,0.560454077480172,-0.292782988061408,-0.0011997177550067,-0.000536406827983393,0.00106454654337507,-0.000270729172545392,0.0755192620938148,-0.0702766209913218,-0.282049860103779,0.00122240987929013,0.300323302442074 +1.956,0.560453232210512,-0.292781099930829,-0.00120087072281549,-0.000304309352994192,0.0007657740698358,-0.000807025813613637,0.111116847528736,-0.165390184415914,-0.227681186447739,0.00115338838740096,0.302555101705631 +1.958,0.56045286024276,-0.292779924965129,-0.00120294585826115,-9.1939437868449e-05,0.000402985805711408,-0.00118145391833635,0.0933096550859157,-0.17906954951144,-0.146369780085371,0.00125167239363691,0.249392677953308 +1.96,0.56045286445276,-0.292779487987606,-0.00120559653848884,6.89292673494712e-05,4.94958717900395e-05,-0.00139250493395512,0.245121709194218,-0.462026394160846,0.0618946001985919,0.00139508819660656,0.52667255743328 +1.962,0.560453135959829,-0.292779726981641,-0.00120851587799697,0.000888547398908423,-0.00144511977093198,-0.000933875517541981,0.150402223467183,-0.356129328145382,0.310256608648286,0.00193649454290729,0.495689510075702 +1.964,0.560456418642356,-0.29278526846669,-0.00120933204055901,0.000670538161218203,-0.00137502144079149,-0.000151478499361979,-0.317447231459877,0.418767161489141,0.215481681164163,0.00153728693614925,0.56795337416072 +1.966,0.560455818112474,-0.292785227067405,-0.00120912179199442,-0.000381241526931086,0.000229948875024588,-7.1948792885329e-05,-0.263455373107623,0.44406557406576,-0.0767876994628434,0.000450996913270452,0.522014672665842 +1.968,0.560454893676248,-0.29278434867119,-0.00120961983573055,-0.000383283331212292,0.000401240855471551,-0.000458629297213353,0.040835718612131,0.0100666819984052,-0.186019725643103,0.000719889691791143,0.190715055329572 +1.97,0.56045428497915,-0.292783622103983,-0.00121095630918328,-0.000217898652482562,0.000270215603018209,-0.000816027695457743,0.0794378224172608,-0.0818153570551759,-0.145054273440782,0.000886790558487338,0.18451249964134 +1.972,0.560454022081638,-0.292783267808777,-0.00121288394651238,-6.5532041543248e-05,7.39794272508475e-05,-0.00103884639097648,0.0653729003013969,-0.0989373683327187,-0.0775666723637837,0.00104353688395286,0.141699709272853 +1.974,0.560454022850983,-0.292783326186274,-0.00121511169474718,4.35929487230257e-05,-0.000125533870312666,-0.00112629438491288,0.0439683105341037,-0.0937709223707004,-0.0162168512143206,0.00113410675831701,0.104829311152858 +1.976,0.560454196453433,-0.292783769944259,-0.00121738912405203,0.000110341200593167,-0.000301104262231955,-0.00110371379583377,0.0245377353366715,-0.0776268537054646,0.0312167288945424,0.00114935769036291,0.0871923909210976 +1.978,0.560454464215786,-0.292784530603323,-0.00121952654993052,0.000141743890069712,-0.000436041285134525,-0.00100142746933471,0.00882417758307772,-0.0549932857481227,0.0639413688203679,0.00110139925052271,0.0847975603069727 +1.98,0.560454763428993,-0.292785514109399,-0.00122139483392937,0.000145637910925478,-0.000521077405224446,-0.000847948320552293,-0.00309044161095339,-0.0294542679343812,0.0834958470280476,0.0010058570562767,0.0885926701247465 +1.982,0.560455046767429,-0.292786614912944,-0.00122291834321273,0.000129382123625898,-0.00055385835687205,-0.000667444081222517,-0.011538711416903,-0.004217311926763,0.09224821101092,0.000876915283793095,0.0930626671429817 +1.984,0.560455280957488,-0.292787729542827,-0.00122406461025426,9.94830652578659e-05,-0.000537946652931498,-0.000478955476508613,-0.0169745596745318,0.0181575656350852,0.0927187200350231,0.000727105102547695,0.0959926763397587 +1.986,0.56045544469969,-0.292788766699555,-0.00122483416511876,6.1483884927771e-05,-0.000481228094331709,-0.000296569201082425,-0.0198790719163621,0.035958320262347,0.0872198276527859,0.000568607103288912,0.0964130521875907 +1.988,0.560455526893028,-0.292789654455204,-0.00122525088705859,1.99667775924173e-05,-0.00039411337188211,-0.000130076165897469,-0.0207209641528427,0.0483400608743133,0.0776975891247227,0.000415504309289684,0.093824491453724 +1.99,0.560455524566801,-0.292790343153043,-0.00122535446978235,-2.13999716836e-05,-0.000287867850834455,1.42211554164662e-05,-0.0199415306559314,0.0552107137785639,0.0657037226700282,0.000289012282772699,0.0881071321377556 +1.992,0.560455441293141,-0.292790805926607,-0.00122519400243692,-5.97993450313083e-05,-0.000173270516767854,0.000132738724782644,-0.0179485602422313,0.0570472991588688,0.0524323380450899,0.000226314389078766,0.0795342393498867 +1.994,0.560455285369421,-0.29279103623511,-0.00122482351488322,-9.31942126525253e-05,-5.96786541989802e-05,0.000223950507596826,-0.015111900328324,0.0546930086636753,0.0387813485205542,0.000249800986570913,0.0687290893384363 +1.996,0.56045506851629,-0.292791044641224,-0.00122429820040654,-0.000120246946344604,4.55015178868478e-05,0.000287864118864861,-0.0117606188468344,0.0491692785341279,0.0254206284659372,0.000315270466687021,0.0565874408224156 +1.998,0.560454804381635,-0.292790854229038,-0.00122367205840776,-0.000140236688039863,0.000136998459937532,0.000325633021460575,-0.00818178522154831,0.0415241670180503,0.0128525297019658,0.000380094424272691,0.0442310476440972 +2,0.560454507569538,-0.292790496647384,-0.00122299566832069,-0.000152974087230797,0.000211598185959049,0.000339274237672724,-0.00461934283879613,0.0327247707404536,0.00145532984101296,0.000428114321196645,0.0330812172270569 +2.002,0.560454192485286,-0.292790007836294,-0.00122231496145707,-0.000158714059395049,0.000267897542899353,0.000331454340824627,-0.00127269715599833,0.0235918552748988,-0.00849078694939664,0.000454776017609387,0.0251055542934766 +2.004,0.5604538727133,-0.292789425057213,-0.0012216698509574,-0.000158064875854791,0.000305965607058644,0.000305311089875137,0.00170407322974686,0.0147696629509974,-0.016789932993401,0.000460232896784334,0.0224265168758169 +2.006,0.560453560225783,-0.292788783973866,-0.00122109371709757,-0.000151897766476061,0.000326976194703343,0.000264294608851023,0.00420153815905433,0.00672251319541738,-0.0233240611850413,0.000447032441362828,0.0246344664388758 +2.008,0.560453265122235,-0.292788117152434,-0.00122061267252199,-0.000141258723218573,0.000332855659840314,0.000212014845134972,0.00615296508882367,-0.000250701862047897,-0.0280503505397169,0.000419162512315544,0.0287183564329318 +2.01,0.56045299519089,-0.292787452551227,-0.00122024565771703,-0.000127285906120766,0.000325973387255152,0.000152093206692155,0.00753102510908653,-0.00599195660797024,-0.0309988366789873,0.000381566107794553,0.0324584004324923 +2.012,0.56045275597861,-0.292786813258885,-0.00122000429969522,-0.000111134622782227,0.000308887833408433,8.80194984190229e-05,0.00834325864645934,-0.0104556615240781,-0.0322676784415484,0.000339867665585651,0.0349304150384013 +2.014,0.560452550652399,-0.292786216999893,-0.00121989357972335,-9.3912871534929e-05,0.000284150741158839,2.30224929259615e-05,0.00862635922416198,-0.0136804122682909,-0.0320149253418486,0.000300152138625697,0.0358681362484703 +2.016,0.560452380327124,-0.29278567665592,-0.00121991220972352,-7.66291858855794e-05,0.000254166184335269,-4.00402029483715e-05,0.00843982311815593,-0.0157634578307197,-0.0304472071695552,0.000268469177450938,0.0353093421274378 +2.018,0.560452244135655,-0.292785200335156,-0.00122005374053515,-6.01535790623053e-05,0.00022109690983596,-9.87663357522594e-05,0.00785932458002846,-0.0168391223950848,-0.0278060427851348,0.000249513698403402,0.0334439985835969 +2.02,0.560452139712808,-0.292784792268281,-0.00122030727506653,-4.51918875654655e-05,0.00018680969475493,-0.000151264374088911,0.00697023253004579,-0.0170615314064315,-0.0243528914698962,0.000244583481912965,0.0305408467204185 +2.022,0.560452063368105,-0.292784453096377,-0.0012206587980315,-3.22726489421221e-05,0.000152850784210234,-0.000196177901631844,0.00586155486648198,-0.0165913735979128,-0.0203541268579271,0.000250780093293105,0.0269057983242811 +2.024,0.560452010622212,-0.292784180865144,-0.00122109198667306,-2.17456680995376e-05,0.000120444200363279,-0.000232680881520619,0.00462062364758874,-0.0155861550402147,-0.0160671794792455,0.000262906964737447,0.0228567856062167 +2.026,0.560451976385433,-0.292783971319575,-0.00122158952155758,-1.37901543517671e-05,9.05061640493753e-05,-0.000260446619548826,0.00332871236130571,-0.0141933508834846,-0.0117287097065738,0.000276068788026443,0.0187108034746534 +2.028,0.560451955461595,-0.292783818840488,-0.00122213377315125,-8.43081865431471e-06,6.36707968293403e-05,-0.000279595720346914,0.00205767070743379,-0.0125458574258552,-0.00754538060938196,0.000286877702006229,0.0147839546749358 +2.03,0.560451942662158,-0.292783716636388,-0.00122270790443897,-5.55947152203195e-06,4.03227343459544e-05,-0.000290628141986354,0.000867608457300049,-0.0107592600558093,-0.00368749782445054,0.000293464729640853,0.0114066674181831 +2.032,0.560451933223708,-0.292783657549551,-0.0012232962857192,-4.96038482511451e-06,2.06337566061032e-05,-0.000294345711644717,-0.000194430464783845,-0.00893049535016786,-0.000285527067267477,0.000295109734324247,0.00893717383243429 +2.034,0.560451922820619,-0.292783634101362,-0.00122388528728555,-6.33719338116733e-06,4.60075294528294e-06,-0.000291770250255424,0.181522847891857,-0.30378643238807,0.140248314971919,0.000291875325921405,0.380665641557396 +2.036,0.560451907874935,-0.292783639146539,-0.00122446336672022,0.000721131006742314,-0.00119451197294618,0.00026664754824296,0.109248626319058,-0.223469590970859,0.33395385071102,0.0014205596423174,0.416412169425922 +2.038,0.560454807344646,-0.292788412149253,-0.00122281869709258,0.000430657311895066,-0.000889277610938154,0.00104404515258866,-0.35064361347814,0.519415079110879,0.187665025225443,0.00143746675448458,0.654187381239989 +2.04,0.560453630504183,-0.292787196256983,-0.00122028718610986,-0.000681443447170248,0.000883148343497341,0.00101730764914473,-0.279964327415394,0.509041441085905,-0.144044162706143,0.00150971223129501,0.598541505810317 +2.042,0.560452081570857,-0.29278487955588,-0.001218749466496,-0.000689199997766509,0.00114688815340547,0.000467868501764084,0.0452447224061347,0.0380032489435966,-0.274775275123373,0.00141748016151413,0.28105654885628 +2.044,0.560450873704191,-0.292782608704369,-0.00121841571210281,-0.00050046455754571,0.00103516133927173,-8.17934513487605e-05,0.0954241248657393,-0.0872281679387131,-0.244042491862397,0.00115269854704767,0.276172508991653 +2.046,0.560450079712627,-0.292780738910522,-0.00121907664030139,-0.000307503498303552,0.000797975481650614,-0.000508301465685506,0.088188228108961,-0.130743506496902,-0.179019722133128,0.000994833478931266,0.238577218067287 +2.048,0.560449643690198,-0.292779416802442,-0.00122044891796555,-0.000147711645109866,0.000512187313284119,-0.000797872339881272,0.0704757186845228,-0.144442160274221,-0.114515663401592,0.000959559714003189,0.197342853311414 +2.05,0.560449488866047,-0.292778690161269,-0.00122226812966092,-2.56006235654915e-05,0.000220206840553794,-0.000966364119291823,0.0523191694065712,-0.139816118262956,-0.0598481375802803,0.000991466618504267,0.160834206515102 +2.052,0.560449541287704,-0.29277853597508,-0.00122431437444272,6.15650325164196e-05,-4.70771597677055e-05,-0.00103726489020239,0.0359523508533521,-0.122088728026631,-0.0169766978634633,0.00104015622127021,0.128399522247517 +2.054,0.560449735126177,-0.292778878469908,-0.00122641718922173,0.000118208779847917,-0.000268148071552732,-0.00103427091074568,0.0218797186549157,-0.0959535233942264,0.0147285209532027,0.00107498512581583,0.0995124618811813 +2.056,0.560450014122823,-0.292779608567366,-0.0012284514580857,0.000149083907136083,-0.000430891253344611,-0.000978350806389582,0.0101636559654561,-0.0658996675458045,0.0368744850244573,0.00107938111153521,0.0761957592720922 +2.058,0.560450331461805,-0.292780602034922,-0.00123033059244729,0.000158863403709741,-0.00053174674173595,-0.000886772970647847,0.000725949494961852,-0.0357764676217619,0.0512998587090876,0.00104611590173205,0.0625472472754202 +2.06,0.560450649576438,-0.292781735554333,-0.00123199854996829,0.00015198770511593,-0.000573997123831659,-0.000773151371553232,-0.00656737399878925,-0.00847984650900743,0.0597003528227806,0.000974851785661835,0.0606561647750729 +2.062,0.560450939412626,-0.292782898023417,-0.0012334231979335,0.000132593907714584,-0.000565666127771979,-0.000647971559356724,-0.0118795370485092,0.0141368895652249,0.0634735593998264,0.000870302507296603,0.0661049755309655 +2.064,0.560451179952069,-0.292783998218844,-0.00123459043620572,0.000104469556921893,-0.00051744956557076,-0.000519257133953926,-0.0153946452044473,0.0311802910227254,0.0636951857950137,0.000740470061781616,0.0725691555875771 +2.066,0.560451357290853,-0.292784967821679,-0.00123550022646932,7.10153268967949e-05,-0.000440944963681078,-0.000393190816176669,-0.0173142961634731,0.042534152710355,0.0611661538961818,0.000595041725911419,0.0764868444954795 +2.068,0.560451464013377,-0.292785761998699,-0.00123616319947042,3.52123722680009e-05,-0.000347312954729339,-0.000274592518369199,-0.0178555885216314,0.048638522740646,0.0564907056454024,0.000444147780392859,0.0766532958206081 +2.07,0.560451498140342,-0.292786357073498,-0.00123659859654279,-4.07027189730513e-07,-0.000246390872718494,-0.000167227993595059,-0.017248437102213,0.0502752115980053,0.0501552896402246,0.000297781513314617,0.0730798095412681 +2.072,0.560451462385268,-0.29278674756219,-0.0012368321114448,-3.37813761408512e-05,-0.000146212108337318,-7.39713598083002e-05,-0.0157308623349728,0.0483861444314226,0.0425898465938878,0.000167304883581748,0.0663518954938836 +2.074,0.560451363014838,-0.292786941921932,-0.00123689448198203,-6.33304765296216e-05,-5.28462949928032e-05,3.13139278049212e-06,-0.0135419147978544,0.0439357763712399,0.0342046198578346,8.25426300324932e-05,0.0573035070598208 +2.076,0.560451209063362,-0.29278695894737,-0.00123681958587368,-8.79490353322686e-05,2.9530997147642e-05,6.28471196230384e-05,-0.0109134065534588,0.0378181819506162,0.0254046587109049,0.000112057454251483,0.0468477748977318 +2.078,0.560451011218696,-0.292786823797943,-0.00123664309350353,-0.000106984102743457,9.84264328096617e-05,0.000104750027624112,-0.00806161461197606,0.0308035232356174,0.0165869475272917,0.000179181274698864,0.0359022771165336 +2.08,0.560450781126951,-0.292786565241639,-0.00123640058576319,-0.000120195493780173,0.000152745090090112,0.000129194909732205,-0.00517970531743738,0.0235152680938544,0.00812637534000625,0.000233386683365629,0.0254132870142372 +2.082,0.560450530436721,-0.292786212817583,-0.00123612631386461,-0.000127702924013206,0.000192487505185079,0.000137255528984137,-0.00243166017876994,0.0164289898733904,0.000357013359847391,0.000268697891116797,0.0166118071871814 +2.084,0.560450270315255,-0.292785795291618,-0.00123585156364725,-0.000129922134495253,0.000218461049583673,0.000130622963171595,5.1843640491711e-05,0.00988436524990142,-0.00644578385632088,0.000285774998424863,0.0118004870102435 +2.086,0.560450010748183,-0.292785338973384,-0.00123560382201192,-0.00012749554945124,0.000232024966184685,0.000111472393558853,0.00217523097451044,0.00410398333025585,-0.0120787613799855,0.000287257366465366,0.0129410503994891 +2.088,0.560449760333057,-0.292784867191753,-0.00123540567407301,-0.000121221210597211,0.000234876982904697,8.23079176516527e-05,0.00387774304333454,-0.000785704317579627,-0.0164179598666214,0.000276832751503896,0.0168879728969105 +2.09,0.560449525863341,-0.292784399465453,-0.00123527459034131,-0.000111984577277901,0.000228882148914366,4.58005540923678e-05,0.00513123080136956,-0.00473410931983719,-0.0194192053930286,0.000258892399260651,0.0206360572466187 +2.092,0.560449312394748,-0.292783951663158,-0.00123522247185665,-0.000100696287391733,0.000215940545625348,4.63109607953815e-06,0.00593650161667679,-0.00774846663220694,-0.021112564313995,0.000238309690508694,0.0232598615324298 +2.094,0.560449123078191,-0.29278353570327,-0.00123525606595699,-8.82385708111943e-05,0.000197888282385539,-3.86497031636123e-05,0.00631856991034628,-0.00987850275538381,-0.0215919780683499,0.000220090020761815,0.0245707683905929 +2.096,0.560448959440465,-0.292783160110028,-0.0012353770706693,-7.54220077503475e-05,0.000176426534603813,-8.17368161938613e-05,0.00632134686262552,-0.0112037785125751,-0.0210017985944818,0.000208556247777219,0.0246284311989141 +2.098,0.56044882139016,-0.292782829997132,-0.00123558301322177,-6.29531833606922e-05,0.000153073168335238,-0.00012265689754154,0.00600214038193324,-0.0118233550901181,-0.0195217765095595,0.000206007797604724,0.0235990926274856 +2.1,0.560448707627731,-0.292782547817355,-0.00123586769825947,-5.14134462226145e-05,0.00012913311424334,-0.000159823922232099,0.0054263499596474,-0.0118473768122296,-0.0173519766437369,0.000211807435573734,0.0217001544847107 +2.102,0.560448615736375,-0.292782313464675,-0.0012362223089107,-4.12477835221025e-05,0.00010568366108632,-0.000192064804116487,0.00466260902109993,-0.0113902007443933,-0.0146987176223925,0.000223067937737361,0.0191710431543005 +2.104,0.560448542636597,-0.29278212508271,-0.00123663595747593,-3.27630101382148e-05,8.35723112657671e-05,-0.00021861879272167,0.00377858218325588,-0.0105647893107463,-0.0117623860391297,0.000236330113558766,0.0162556507661057 +2.106,0.560448484684335,-0.29278197917543,-0.00123709678408158,-2.6133454789079e-05,6.34245038433345e-05,-0.000239114348273006,0.00283753867624803,-0.0094782081558331,-0.00872758846789944,0.00024875951579188,0.0131931367024493 +2.108,0.560448438102778,-0.292781871384695,-0.00123759241486902,-2.14128554332227e-05,4.56594786424347e-05,-0.000253529146593267,0.00189574222986266,-0.00822811796127863,-0.0057558519790668,0.000258496279547721,0.0102188842733308 +2.11,0.560448399032913,-0.292781796537515,-0.00123811090066796,-1.85504858696284e-05,3.05120319982199e-05,-0.000262137756189273,0.00100066499530982,-0.00690022788213395,-0.00298084624431732,0.000264558703963046,0.00758287014200282 +2.112,0.560448363900834,-0.292781749336567,-0.00123864096589378,-1.74101954519834e-05,1.80585671138988e-05,-0.000265452531570537,0.000189958535012913,-0.00556665484888196,-0.000505937063945138,0.000266635093843797,0.00559282600876147 +2.114,0.560448329392131,-0.292781724303247,-0.00123917271079424,-1.77906517295767e-05,8.24541260269206e-06,-0.000264161504445054,-0.000508881006777706,-0.00428515662190264,0.00159621666752374,0.000264888268046408,0.00460102540777333 +2.116,0.560448292738227,-0.292781716354917,-0.00123969761191156,-1.94457194790942e-05,9.17940626288249e-07,-0.000259067664900442,0.187056452646827,-0.30008333381376,0.146288663765981,0.000259798063152943,0.382675445849393 +2.118,0.560448251609253,-0.292781720631484,-0.00124020898145384,0.000730435158857733,-0.00119208792265235,0.00032099315061887,0.113888138829343,-0.220476680228704,0.344030606836721,0.00143444962943052,0.424190444412795 +2.12,0.560451214478863,-0.292786484706607,-0.00123841363930909,0.000436106835838279,-0.000880988780288527,0.00111705476244644,-0.359305984187763,0.523259907559553,0.189520718388812,0.00148799924246063,0.662434769491291 +2.122,0.560449996036597,-0.292785244586605,-0.00123574076240406,-0.000706788777893318,0.000900951707585861,0.00107907602417412,-0.2883591373945,0.513332300160207,-0.151543036272516,0.00157342601411863,0.607969024169293 +2.124,0.560448387323751,-0.292782880899777,-0.00123409733521239,-0.000717329713739722,0.0011723404203523,0.000510882617356378,0.0458061785377216,0.0403277153060432,-0.284113575288631,0.0014662690844871,0.290594312190249 +2.126,0.560447126717742,-0.292780555224924,-0.00123369723193463,-0.000523564063742432,0.00106226256881003,-5.73782769804076e-05,0.0983350439062723,-0.087222763286293,-0.252690488529265,0.00118567000493671,0.284833414978833 +2.128,0.560446293067496,-0.292778631849502,-0.00123432684832031,-0.000323989538114633,0.000823449367207129,-0.000499879336760683,0.0914464696119553,-0.131919617857995,-0.186235833877709,0.00101632545598438,0.245863840774554 +2.13,0.560445830759589,-0.292777261427455,-0.00123569674928167,-0.00015777818529461,0.000534584097378054,-0.000802321612491246,0.0735076464697392,-0.146082975781975,-0.120203159577857,0.000976930950883901,0.20295913252509 +2.132,0.560445661954755,-0.292776493513112,-0.00123753613477028,-2.99589522356758e-05,0.00023911746407923,-0.000980691975072111,0.0549467008628678,-0.141507849077404,-0.0641053205926652,0.00100986704591128,0.164781987530541 +2.134,0.56044571092378,-0.292776304957599,-0.00123961951718196,6.20086181568613e-05,-3.14472989315639e-05,-0.00105874289486191,0.0381051682291077,-0.123592630209973,-0.0199430529018024,0.00106102333563234,0.130862016823186 +2.136,0.560445909989228,-0.292776619302308,-0.00124177110634972,0.000122461720680755,-0.000255253056760662,-0.00106046418667932,0.0235333644862945,-0.0971508633158811,0.0129021142762642,0.00109760434002749,0.100789751660889 +2.138,0.560446200770663,-0.292777325969826,-0.00124386137392868,0.000156142076102039,-0.000420050752195089,-0.00100713443775685,0.0113262649467649,-0.0667635857258541,0.0360386276992627,0.00110233513872367,0.0767101254272462 +2.14,0.560446534557532,-0.292778299505317,-0.00124579964410075,0.000167766780467815,-0.000522307399664079,-0.00091630967588227,0.00142864260699316,-0.0363459783797592,0.0513185292603038,0.00106797665446762,0.0629020079927588 +2.142,0.560446871837785,-0.292779415199425,-0.00124752661263221,0.000161856646530012,-0.000565434665714126,-0.000801860320715635,-0.00627742637038242,-0.00883169417806303,0.0604474525442779,0.00099443145020427,0.061410906384641 +2.144,0.560447181984118,-0.292780561243979,-0.00124900708538361,0.000142657074986285,-0.000557634176376331,-0.000674519865705158,-0.0119424731354067,0.0139117941992672,0.0648223179708014,0.000886726544622104,0.0673653738172688 +2.146,0.560447442466085,-0.29278164573613,-0.00125022469209503,0.000114086753988385,-0.000509787488917057,-0.000542571048832429,-0.0157420235874506,0.0309933004052908,0.0655146377946668,0.000753181528134544,0.0741657855214036 +2.148,0.560447638331134,-0.292782600393935,-0.00125117736957894,7.9688980636483e-05,-0.000433660974755167,-0.000412461314526491,-0.0178750213380985,0.0423097422687368,0.0633244746205823,0.000603768590307085,0.0782279985980543 +2.15,0.560447761222008,-0.292783380380029,-0.00125187453735313,4.2586668635991e-05,-0.00034054851984211,-0.0002892731503501,-0.0185606964381302,0.0483210410538725,0.0588581125313819,0.000448849500640955,0.0783817572624859 +2.152,0.560447808677809,-0.292783962588014,-0.00125233446218034,5.44619488396236e-06,-0.000240376810539677,-0.000177028864400963,-0.0180341280589524,0.0498313256040716,0.0526068440181298,0.000298579789863675,0.0746717538554809 +2.154,0.560447783006787,-0.292784341887271,-0.00125258265281074,-2.95498435998187e-05,-0.000141223217425823,-7.88457742775805e-05,-0.0165406793123379,0.0478039056985013,0.0450098999894149,0.000164419726670209,0.067710402223011 +2.156,0.560447690478434,-0.292784527480884,-0.00125264984527745,-6.07165223653893e-05,-4.91611877456721e-05,3.01073555669662e-06,-0.0143285382447899,0.0432218089582714,0.0364919881179134,7.81817305852486e-05,0.0583532087777155 +2.158,0.560447540140698,-0.292784538532022,-0.00125257060986851,-8.68639965789785e-05,3.16640184072625e-05,6.71221781940733e-05,-0.011639528625651,0.0369941376560101,0.0274760809156754,0.000114251261563648,0.0475287267873221 +2.16,0.560447343022448,-0.292784400824811,-0.00125238135656468,-0.000107274636867993,9.88153628783683e-05,0.000112915059219398,-0.00869983731582867,0.0299020550577344,0.0183787922042669,0.000184450899305109,0.0361607531570526 +2.162,0.56044711104215,-0.292784143270571,-0.00125211894963163,-0.000121663345842293,0.0001512722386382,0.000140637347011141,-0.00571199643140118,0.0225759649065404,0.00959528503614164,0.000239716756357344,0.0251867145459365 +2.164,0.560446856369065,-0.292783795735856,-0.00125181880717663,-0.000130122622593598,0.00018911922250453,0.000151296199363965,-0.00284848530873738,0.0154945708520648,0.00147948286694649,0.000274933659585971,0.0158235414492881 +2.166,0.56044659055166,-0.292783386793681,-0.00125151376483418,-0.000133057287077243,0.00021325052204646,0.000146555278478927,-0.000247402869024693,0.00899742593971074,-0.00567501609854275,0.000290961297164209,0.0106405211074881 +2.168,0.560446324139916,-0.292782942733768,-0.00125123258606272,-0.000131112234069697,0.000225108926263373,0.000128596134969794,0.00198959890229666,0.00330420715788371,-0.0116492501504514,0.000290519211990128,0.0122711579650016 +2.17,0.560446066102724,-0.292782486357976,-0.0012509993802943,-0.000125098891468056,0.000226467350677994,9.99582778771212e-05,0.00379699664765365,-0.00146378138776715,-0.0163064169181326,0.000277360507076631,0.0168065187412928 +2.172,0.560445823744351,-0.292782036864365,-0.00125083275295121,-0.000115924247479082,0.000219253800712304,6.33704672972634e-05,0.00514317919503292,-0.00526280360957365,-0.0195925381378872,0.000255981398554379,0.0209288543582712 +2.174,0.560445602405734,-0.292781609342773,-0.00125074589842511,-0.000104526174687924,0.0002054161362397,2.15881253255723e-05,0.00602666842819398,-0.0081080660345456,-0.0215308752233439,0.000231489864524583,0.0237831884962287 +2.176,0.560445405639652,-0.29278121519982,-0.00125074640044991,-9.18175737663062e-05,0.000186821536574122,-2.27530335961123e-05,0.00647129669295586,-0.0100578739087309,-0.0222114262824271,0.000209404999744688,0.02522669153797 +2.178,0.560445235135439,-0.292780862056626,-0.00125083691055949,-7.86409879161009e-05,0.000165184640604776,-6.72575798041363e-05,0.00652071808354692,-0.0112004760743911,-0.0217770810108722,0.000194920374802788,0.0253418958638101 +2.18,0.5604450910757,-0.292780554461258,-0.00125101543076912,-6.57347014321185e-05,0.000142019632276558,-0.000109861357639601,0.0062327555477859,-0.0116432791949505,-0.0204082302845271,0.000191207073160892,0.0243086210114089 +2.182,0.560444972196633,-0.292780293978097,-0.00125127635599005,-5.37099657249573e-05,0.000118611523824974,-0.000148890500942245,0.00567392162420521,-0.011504032313564,-0.0183072532775746,0.000197792404487865,0.0223537842129339 +2.184,0.560444876235837,-0.292780080015162,-0.00125161099277289,-4.30390149352977e-05,9.60035030223016e-05,-0.0001830903707499,0.00491440790839625,-0.0109036262935236,-0.0156840678812442,0.000211166079805658,0.0197238550172729 +2.186,0.560444800040573,-0.292779909964085,-0.00125200871747305,-3.40523340913723e-05,7.49970186508796e-05,-0.000211626772467221,0.00402373178526315,-0.00996024963201279,-0.0127435413280891,0.000227090301616965,0.0166671783992511 +2.188,0.560444740026501,-0.292779780027088,-0.00125245749986276,-2.6944087794245e-05,5.61625044942504e-05,-0.000234064536062256,0.00306716679138174,-0.00878471635018528,-0.00967529723006065,0.000242211514631674,0.0134234917204648 +2.19,0.560444692264222,-0.292779685314067,-0.0012529449756173,-2.17836669258453e-05,3.98581532501385e-05,-0.000250327961387464,0.00210302329717304,-0.00747689207075685,-0.00664611944645176,0.000254415582812161,0.0102224031285556 +2.192,0.560444652891833,-0.292779620594475,-0.00125345881170831,-1.85319946055529e-05,2.6254936211223e-05,-0.000260649013848063,0.00118075613175783,-0.00612314699985349,-0.00379492711647527,0.00026262266642368,0.00729990315304647 +2.194,0.560444618136243,-0.292779580294322,-0.00125398757167269,-1.7060642398814e-05,1.53655652507245e-05,-0.000265507669853365,0.000339868730381276,-0.00479480801243714,-0.00123013639118791,0.000266498571976471,0.0049617466854876 +2.196,0.560444584649264,-0.292779559132214,-0.00125452084238772,-1.71725196840278e-05,7.0757041614744e-06,-0.000265569559412815,-0.000390488787138653,-0.00354753203896107,0.000970897314801765,0.000266218241126328,0.00369866282002369 +2.198,0.560444549446165,-0.292779551991506,-0.00125504984991034,-1.86225975473686e-05,1.17543709488022e-06,-0.000261624080594158,-0.000991309923037418,-0.00242152803364703,0.00276070445150156,0.000262288662237836,0.0038036801192781 +2.2,0.560444510158873,-0.292779554430465,-0.0012555673387101,-2.11377593761774e-05,-2.61040797311374e-06,-0.000254526741606808,-0.00145304793891521,-0.00144249602193613,0.00411919806337507,0.000255416290189585,0.00459999301862516 +2.202,0.560444464895127,-0.292779562433138,-0.00125606795687677,-2.44347893030294e-05,-4.59454699286432e-06,-0.000245147288340658,-0.00177455813932248,-0.000623146416411923,0.00505020323043198,0.000246404873675686,0.00538905564220562 +2.204,0.560444412419716,-0.292779572808653,-0.00125654792786346,-2.82359919334674e-05,-5.10299363876143e-06,-0.000234325928685081,-0.00196179998634971,3.48696731211628e-05,0.00557739053032301,0.000236076158556237,0.00591245805129153 +2.206,0.560444351951159,-0.292779582845112,-0.00125700526059151,-3.22819892484283e-05,-4.45506830037967e-06,-0.000222837726219366,-0.00202639260232784,0.000538782359005285,0.00573990955286817,0.000225207963202933,0.00611090133157553 +2.208,0.560444283291759,-0.292779590628927,-0.00125743927876834,-3.63415623427787e-05,-2.94786420274029e-06,-0.000211366290473608,-0.00198413070001679,0.000902439043631851,0.00558800766770062,0.00021448801319758,0.00599808307349116 +2.21,0.56044420658491,-0.292779594636569,-0.00125785072575341,-4.02185120484954e-05,-8.45312125852259e-07,-0.000200485695548563,-0.00185353472154092,0.00114409741749921,0.00517883745696639,0.000204481679823832,0.0056182655037266 +2.212,0.560444122417711,-0.292779594010175,-0.00125824122155054,-4.37557012289424e-05,1.62852546725656e-06,-0.000190650940645742,-0.00165450592809479,0.00128439143695646,0.00457263386877126,0.000195614402982859,0.00502951605298779 +2.214,0.560444031562105,-0.292779588122467,-0.00125861332951599,-4.68365357608746e-05,4.2922536219736e-06,-0.000182195160073478,-0.00140713287549721,0.00134456185074683,0.00382937137988898,0.000188167906077087,0.00429557384582102 +2.216,0.560443935071568,-0.292779576841161,-0.00125897000219083,-4.93842327309312e-05,7.00677287024387e-06,-0.000175333455126186,-0.0011306832969904,0.00134500507953383,0.00300598592718748,0.000182290202136495,0.00348187230904783 +2.218,0.560443834025174,-0.292779560095376,-0.00125931466333649,-5.13592689488362e-05,9.67227394010894e-06,-0.000170171216364728,-0.000842801384237643,0.00130417344285094,0.00215419308953468,0.000178015646135902,0.00265550944440224 +2.22,0.560443729634492,-0.292779538152065,-0.00125965068705629,-5.27554382678818e-05,1.22234666416476e-05,-0.000166716682768048,-0.000558913332282528,0.00123782369076952,0.00131890844686649,0.000175291191212672,0.00189317487138648 +2.222,0.560443623003421,-0.292779511201509,-0.00125998153006757,-5.35949222779663e-05,1.4623568703187e-05,-0.000164895582577262,-0.000291839427624118,0.00115859874819102,0.000537243304531143,0.000174002349435554,0.00131001972469475 +2.224,0.560443515254803,-0.29277947965779,-0.0012603102693866,-5.39227959783783e-05,1.68578616344117e-05,-0.000164567709549923,-5.15931602995678e-05,0.00107590159351134,-0.000161972798888576,0.000173995363304654,0.00108924803451268 +2.226,0.560443407312237,-0.292779443770063,-0.00126063980090577,-5.38012949191646e-05,1.89271750772324e-05,-0.000165543473772817,0.000154649168471188,0.00099601642558622,-0.000758205986710336,0.000175092715440004,0.00126128561540587 +2.228,0.560443300049623,-0.29277940394909,-0.00126097244328169,-5.33041993044935e-05,2.08419273367566e-05,-0.000167600533496764,0.000322439117073081,0.00092241963720041,-0.00123884596418127,0.00017710353589639,0.00157783531912555 +2.23,0.56044319409544,-0.292779360402353,-0.00126131020303975,-5.25115384508723e-05,2.2616853626034e-05,-0.000170498857629542,0.000449831637217013,0.00085622630513482,-0.00159852660275294,0.000179830042516254,0.00186835737672294 +2.232,0.56044309000347,-0.292779313481675,-0.00126165443871221,-5.15048727556255e-05,2.42668325572959e-05,-0.000173994639907776,0.00053707867320174,0.000796715755868592,-0.00183822399489608,0.000183073115985318,0.00207419308461607 +2.234,0.560442988075949,-0.292779263335023,-0.00126200618159938,-5.03632237580653e-05,2.58037166495084e-05,-0.000177851753609126,0.196643642889904,-0.296673950964804,0.148813601237758,0.000186637435585882,0.385784451972121 +2.236,0.560442888550575,-0.292779210266809,-0.00126236584572664,0.000735069698803991,-0.00116242897130192,0.000421259765043258,0.122264259674876,-0.218286826454694,0.352684278006123,0.00143841175087877,0.43241633612782 +2.238,0.560445928354744,-0.292783913050908,-0.00126032114253921,0.000438693814941437,-0.000847343589169269,0.00123288535841537,-0.370115715637997,0.526519936986518,0.186694858262184,0.00155898997058003,0.670122270267189 +2.24,0.560444643325834,-0.292782599641165,-0.00125743430429298,-0.000745393163747998,0.000943650776644155,0.001168039198092,-0.29905957391052,0.517295026269265,-0.16737850205839,0.0016764257588998,0.620521019709866 +2.242,0.560442946782089,-0.292780138447802,-0.00125564898574684,-0.000757544480700644,0.00122183651590779,0.000563371350181807,0.0477495010753336,0.0416696618807387,-0.301905767606178,0.00154406780617024,0.308485766427033 +2.244,0.560441613147912,-0.292777712295102,-0.00125518081889225,-0.000554395159446663,0.00111032942416711,-3.95838723327157e-05,0.103523489822232,-0.0889931412346999,-0.268713168747464,0.00124167318805635,0.301402818815777 +2.246,0.560440729201451,-0.292775697130105,-0.00125580732123617,-0.000343450521411714,0.000865863950968992,-0.000511481324808049,0.0969657488331108,-0.135136099872757,-0.199391995198659,0.00106268141409973,0.259656098878666 +2.248,0.560440239345826,-0.292774248839298,-0.00125722674419149,-0.000166532164114219,0.000569785024676083,-0.000837151853127354,0.0784859753716337,-0.149696036462476,-0.130305439356194,0.00102626076667885,0.213420849938385 +2.25,0.560440063072795,-0.292773417990006,-0.00125915592864868,-2.95066199251792e-05,0.000267079805119086,-0.00103270308223283,0.0591053810894414,-0.144909740578541,-0.071318490807437,0.00106708852443227,0.171984319399528 +2.252,0.560440121319346,-0.292773180520077,-0.00126135755652042,6.98893602435468e-05,-9.85393763808239e-06,-0.0011224258163571,0.0413582972175196,-0.12644806729814,-0.0245645965304963,0.00112464275927387,0.135288735210563 +2.254,0.560440342630236,-0.292773457405757,-0.00126364563191411,0.0001359265689449,-0.000238712464073476,-0.00113096146835481,0.0258738059033536,-0.0993210731749237,0.010551628440783,0.00116384428320649,0.103176868877163 +2.256,0.560440665025622,-0.292774135369934,-0.00126588140239384,0.000173384583856961,-0.000407138230337778,-0.00108021930259397,0.0127926589252314,-0.0682524268873218,0.0356484602332187,0.00116734634715599,0.0780567653402694 +2.258,0.560441036168571,-0.292775085958678,-0.00126796650912449,0.000187097204645825,-0.000511722171622763,-0.000988367627421937,0.00209670478201751,-0.0372521650644774,0.0525833744446229,0.00112859891540452,0.0644758190402994 +2.26,0.560441413414441,-0.29277618225862,-0.00126983487290352,0.000181771402985031,-0.000556146890595687,-0.000869885804815478,0.191503675410487,-0.306797879916914,0.215529601857618,0.00104835181131234,0.421012596122897 +2.262,0.560441763254183,-0.292777310546241,-0.00127144605234375,0.000953111906287773,-0.00173891369129042,-0.000126249219991464,0.110537644940067,-0.205376414045416,0.426458463525375,0.00198700327055927,0.486070842066744 +2.264,0.560445225862066,-0.292783137913385,-0.00127033986978349,0.000623921982745301,-0.00137765254677735,0.000835948049286022,-0.39034269159327,0.557071551020304,0.259522050821692,0.00172800877350205,0.72804383432534 +2.266,0.560444258942114,-0.292782821156428,-0.00126810226014661,-0.000608258860085308,0.000489372512790797,0.000911838983295304,-0.321730344601811,0.559511037098725,-0.0991864007419961,0.00120038103475708,0.652993841751239 +2.268,0.560442792826625,-0.292781180423334,-0.00126669251385031,-0.000662999395661945,0.000860391601617549,0.000439202446318037,0.0270448463207673,0.0893970798984676,-0.238626386261063,0.00117164017327585,0.256253417200437 +2.27,0.560441606944532,-0.292779379590021,-0.00126634545036133,-0.000500079474802239,0.000846960832384668,-4.26665617489496e-05,0.282567321208127,-0.337997388844685,-0.0584942222202691,0.000984501177350078,0.444418833887264 +2.272,0.560440792508726,-0.292777792580005,-0.00126686318009731,0.000467269889170562,-0.000491597953761191,0.000205225557436961,0.202853340111608,-0.308139686253094,0.209389500279398,0.000708609361279521,0.424197485454413 +2.274,0.560443476024088,-0.292781345981836,-0.00126552454813159,0.000311333885644194,-0.000385597912627711,0.000794891439368644,-0.311550273718319,0.418007916089951,0.100449697736787,0.000936732052913059,0.53092780370144 +2.276,0.560442037844269,-0.292779334971655,-0.00126368361433983,-0.000778931205702715,0.00118043371059862,0.00060702434838411,-0.25705332832443,0.407865743356355,-0.208080449974612,0.00153903740301081,0.52509842112497 +2.278,0.560440360299266,-0.292776624246994,-0.00126309645073805,-0.000716879427653527,0.00124586506079771,-3.74303605298054e-05,0.0789943896545296,-0.0567777294901982,-0.306359249822862,0.00143787930487879,0.321433996514029 +2.28,0.560439170326558,-0.292774351511412,-0.00126383333578195,-0.000462953647084596,0.000953322792637822,-0.00061841265090734,0.123562322033865,-0.168144372751644,-0.24734026976992,0.00122702267017115,0.323600659091265 +2.282,0.560438508484677,-0.292772810955823,-0.00126557010134168,-0.000222630139518065,0.000573287569791136,-0.00102679143960949,0.107222915046723,-0.190260983266854,-0.161367192766902,0.00119688072804026,0.271542567871517 +2.284,0.560438279806,-0.292772058361133,-0.00126794050154039,-3.40619868977043e-05,0.000192278859570405,-0.00126388142197495,0.0808345941294418,-0.179939568502318,-0.082852176799819,0.00127887748733119,0.213955516688261 +2.286,0.56043837223673,-0.292772041840385,-0.00127062562702958,0.000100708236999702,-0.000146470704218138,-0.00135820014680876,0.0553920532636586,-0.152338262816853,-0.0197593048398974,0.00136978226553898,0.163296221666567 +2.288,0.560438682638948,-0.29277264424395,-0.00127337330212762,0.00018750622615693,-0.000417074191697008,-0.00134291864133454,0.0332741509553868,-0.114989192105674,0.0273406188617749,0.00141864017406498,0.122789221280462 +2.29,0.560439122261634,-0.292773710137152,-0.00127599730159492,0.00023380484082125,-0.000606427472640835,-0.00124883767136166,0.0149238026658782,-0.0738115116596937,0.0602105768377283,0.00140784037183802,0.0964166619554481 +2.292,0.560439617858311,-0.29277506995384,-0.00127836865281307,0.000247201436820443,-0.000712320238335783,-0.00110207633398362,0.000287435325541096,-0.033674199449718,0.08128789525004,0.00133532053014833,0.087987250450433 +2.294,0.560440111067382,-0.292776559418105,-0.00128040560693085,0.000234954582123414,-0.000741124270439707,-0.000923686090361502,0.189232913921921,-0.295788373669281,0.247715589065528,0.00120733791186349,0.429724179882143 +2.296,0.56044055767664,-0.292778034450922,-0.00128206339717452,0.00100413309250813,-0.00189547373301291,-0.000111213977721514,0.106111241141016,-0.188819413483171,0.459798648815012,0.00214789955278464,0.508258953543099 +2.298,0.560444127599752,-0.292784141313037,-0.00128085046284174,0.000659399546687477,-0.00149640192437239,0.000915508504898548,-0.401179887907221,0.577675533096343,0.287116463764704,0.00187408172286553,0.759664523170684 +2.3,0.560443195274827,-0.292784020058619,-0.00127840136315492,-0.000600586459120755,0.000415228399372469,0.0010372518773373,-0.332709347003467,0.582033165087702,-0.0790443417724925,0.00126846764860772,0.67506008829713 +2.302,0.560441725253915,-0.29278248039944,-0.00127670145533239,-0.000671437841326394,0.000831730735978419,0.000599331137808578,0.0201553315981595,0.111097475968824,-0.22351012656744,0.00122548056071207,0.250410988649996 +2.304,0.560440509523461,-0.292780693135676,-0.00127600403860369,-0.000519965132728117,0.000859618303247766,0.000143211371067542,0.0790819802975917,-0.0211998484461532,-0.200875518420468,0.00101479892753914,0.216920185973137 +2.306,0.560439645393384,-0.292779041926227,-0.00127612860984812,-0.000355109920136027,0.000746931342193806,-0.000204170935873294,0.276439877898468,-0.37039738960344,0.0122242581517356,0.000851877489070954,0.462344746704148 +2.308,0.560439089083781,-0.292777705410307,-0.00127682072234718,0.000585794378865633,-0.000621971255165831,0.000192108403674479,0.186168056040557,-0.314692273888798,0.277061800017282,0.000875733369996536,0.458751581320478 +2.31,0.5604419885709,-0.292781529811247,-0.00127536017623342,0.000389562304026203,-0.000511837753361388,0.000904076264195835,-0.333402284710682,0.426355004183587,0.150371229813359,0.00110954520681518,0.561735863015947 +2.312,0.560440647332997,-0.29277975276132,-0.0012732044172904,-0.000747814759977094,0.00108344876156852,0.000793593322927915,-0.275961522980261,0.426141668782159,-0.177817641046525,0.0015371657348444,0.53793177774266 +2.314,0.56043899731186,-0.292777196016201,-0.00127218580294171,-0.000714283787894842,0.00119272892176725,0.000192805700009735,0.0672373618934573,-0.0337697503224876,-0.290957135421279,0.00140355892232058,0.300528390545372 +2.316,0.560437790197845,-0.292774981845633,-0.00127243319449036,-0.000478865312403264,0.000948369760278566,-0.000370235218757203,0.115973864567298,-0.144519746704541,-0.243136217853434,0.00112507391172407,0.305697750862337 +2.318,0.56043708185061,-0.29277340253716,-0.00127366674381674,-0.00025038832962565,0.000614649934949085,-0.000779739171404003,0.10257299928873,-0.168784533099986,-0.165277043396791,0.00102395411692489,0.257538229921017 +2.32,0.560436788644527,-0.292772523245893,-0.00127555215117597,-6.85733152483436e-05,0.000273231627878623,-0.00103134339234437,0.0784743089121685,-0.162611527472489,-0.0922964886913844,0.00106912441510319,0.202779110982708 +2.322,0.560436807557349,-0.292772309610648,-0.00127779211738611,6.35089060230242e-05,-3.57961749408719e-05,-0.00114892512616954,0.054851594606664,-0.140283657121265,-0.0326734781895196,0.0011512357242669,0.154129030565989 +2.324,0.560437042680151,-0.292772666430593,-0.00128014785168065,0.000150833063178313,-0.000287903000606437,-0.00116203730510245,0.0341496578099009,-0.108506937657182,0.0125360980988282,0.00120663559087062,0.114442598728867 +2.326,0.560437410889602,-0.292773461222651,-0.00128244026660652,0.000200107537262628,-0.000469823925569601,-0.00109878073377423,0.0168513120679669,-0.0725470730503218,0.0446748508898391,0.00121165038209063,0.0868497946376967 +2.328,0.5604378431103,-0.292774545726295,-0.00128454297461575,0.00021823831145018,-0.000578091292807725,-0.00098333790154309,0.00293979728061,-0.0368353043588009,0.0658443236808968,0.0011613659767773,0.0755046820816517 +2.33,0.560438283842848,-0.292775773587822,-0.0012863736182127,0.000211866726385068,-0.000617165143004805,-0.000835403439050641,-0.00776355813664197,-0.00475182270961993,0.0782106103075496,0.00106003737173125,0.0787385053114679 +2.332,0.560438690577205,-0.292777014386867,-0.00128788458837195,0.000187184078903613,-0.000597098583646205,-0.000670495460312892,-0.0155093873993594,0.021506143445954,0.0836961466538914,0.000917130721482763,0.0877957873028715 +2.334,0.560439032579163,-0.292778161982157,-0.00128905560005395,0.00014982917678763,-0.000531140569220989,-0.000500618852435075,-0.0205917736056937,0.0408694621548133,0.0838802210146801,0.000745102893500398,0.0955522137604537 +2.336,0.560439289893913,-0.292779138949144,-0.00128988706378169,0.000104816984480838,-0.000433620735026951,-0.000334974576254171,-0.0233358222814783,0.0532098827672744,0.0800126665808502,0.000557872305117964,0.0988831585207417 +2.338,0.560439451847101,-0.292779896465097,-0.00129039549835896,5.64858876617169e-05,-0.000318301038151891,-0.000180568186111674,-0.0240882975302558,0.0590910633757601,0.0730794301982694,0.000370285128285168,0.0970185702166753 +2.34,0.560439515837463,-0.292780412153297,-0.00129060933652614,8.46379435981425e-06,-0.000197256481523911,-4.26568554610928e-05,-0.0232085903204004,0.059513307226755,0.0638830046006607,0.000201993471765765,0.0903410796843515 +2.342,0.560439485702279,-0.292780685491023,-0.00129056612578081,-3.63484736198849e-05,-8.0247809244871e-05,7.49638322909695e-05,-0.0210590288124423,0.0556888934133414,0.0531125909693924,0.000115674105031529,0.0797852296080406 +2.344,0.560439370443569,-0.292780733144534,-0.00129030948119697,-7.57723208899552e-05,2.54990921294551e-05,0.000169793508416477,-0.0179941715139353,0.0488661509798204,0.0413914271191195,0.000187673876213108,0.0665202312008377 +2.346,0.560439182612995,-0.292780583494654,-0.00128988695174714,-0.000108325159675626,0.000115216794674411,0.000240529540767448,-0.0143495045915043,0.0402067308336029,0.0292990920578925,0.000287860573847122,0.051777661995925 +2.348,0.56043893714293,-0.292780272277355,-0.0012893473630339,-0.000133170339255972,0.000186326015463867,0.000286989876648047,-0.0104307718087892,0.0307113895911537,0.0173739481412749,0.000367171502971912,0.036794626308231 +2.35,0.560438649931638,-0.292779838190593,-0.00128873899224055,-0.000150048246910783,0.000238062353039026,0.000310025333332547,-0.00650511525895901,0.0211854929085819,0.00610248061198165,0.000418693047044531,0.0229865592016624 +2.352,0.560438336949942,-0.292779320027943,-0.00128810726170057,-0.000159190800291808,0.000271067987098194,0.000311399799095974,-0.00279447146672717,0.0122335376551152,-0.00409762965572491,0.000442480959368904,0.0132007228261543 +2.354,0.560438013168437,-0.292778753918644,-0.00128749339304417,-0.000161226132777692,0.000286996503659487,0.000293634814709648,0.204633948452937,-0.293488844442524,0.145815743566452,0.000441114796184382,0.386358623229098 +2.356,0.560437692045411,-0.292778172041928,-0.00128693272244174,0.000659344993519939,-0.000902887390671902,0.000894662773361781,0.131465019294341,-0.221856940034459,0.350133043363308,0.00143190884442883,0.434852505103014 +2.358,0.560440650548411,-0.292782365468207,-0.00128391474195072,0.000364633944399672,-0.00060043125647835,0.00169416698816288,-0.378426479312465,0.519557686148169,0.167758280746055,0.00183403309428852,0.664296342184224 +2.36,0.560439150581189,-0.292780573766954,-0.00128015605448908,-0.000854360923729924,0.00117534335392078,0.001565695896346,-0.305943626557891,0.507956104560391,-0.20310923056193,0.0021360637227005,0.626796830185843 +2.362,0.560437233104716,-0.292777664094791,-0.00127765195836534,-0.000859140561831894,0.00143139316176322,0.000881730065915159,0.0547269829731522,0.027827673467623,-0.341906505613685,0.00188797690602032,0.347375129588929 +2.364,0.560435714018942,-0.292774848194307,-0.00127662913422542,-0.000635452991837315,0.00128665404779127,0.00019806987389126,0.114554523325538,-0.106867202972344,-0.307910600709157,0.00144862376705477,0.345473987319664 +2.366,0.560434691292749,-0.2927725174786,-0.00127685967886977,-0.00040092246852974,0.00100392434987384,-0.00034991233692147,0.313533713935942,-0.452187992480701,-0.0760635109932349,0.00113624010207853,0.555484498454106 +2.368,0.560434110329067,-0.292770832496908,-0.00127802878357311,0.000618681863906456,-0.000522097922131537,-0.00010618417008168,0.218285895359216,-0.387955483783369,0.209376621208325,0.000816473249406721,0.491931660923524 +2.37,0.560437166020204,-0.292774605870289,-0.0012772844155501,0.000472221112907123,-0.000547897585259638,0.000487594147911829,-0.316384008616776,0.36541765958617,0.0949931699602972,0.000872314505488958,0.492597816869868 +2.372,0.560435999213519,-0.292773024087249,-0.00127607840698146,-0.000646854170560651,0.000939572716213143,0.000273788509759509,-0.264826502491266,0.378830649797739,-0.22186620544061,0.00117310585843741,0.512708836245826 +2.374,0.560434578603522,-0.292770847579424,-0.00127618926151106,-0.000587084897057943,0.000967425013931321,-0.00039987067385061,0.0789150908231394,-0.0688466311252188,-0.318920987236147,0.00120019847931052,0.335675507412434 +2.376,0.560433650873931,-0.292769154387193,-0.00127767788967686,-0.000331193807268093,0.000664186191712268,-0.00100189543918508,0.123824271371087,-0.168318160936875,-0.254586596476133,0.00124684686561496,0.329359664481026 +2.378,0.560433253828293,-0.292768190834657,-0.0012801968432678,-9.17878115735959e-05,0.00029415237018382,-0.00141821705975514,0.311333812799685,-0.479504343699893,-0.00136152469333572,0.00145130639350165,0.571712351072587 +2.38,0.560433283722685,-0.292767977777712,-0.00128335075791589,0.000914141443930649,-0.00125383118308731,-0.00100734153795842,0.206422090739955,-0.385209569322281,0.297415724548333,0.00184999572683024,0.528632769558907 +2.382,0.560436910394069,-0.292773206159389,-0.00128422620941963,0.000733900551386223,-0.0012466859071053,-0.000228554161561811,-0.337073028398859,0.392469298414466,0.188054817330286,0.00146460669637524,0.550467974538981 +2.384,0.56043621932489,-0.292772964521341,-0.00128426497456213,-0.00043415066966479,0.000316046010570558,-0.000255122268637275,-0.289951441377611,0.423449476424225,-0.129204316043872,0.000594524395397347,0.529221175620618 +2.386,0.56043517379139,-0.292771941975347,-0.00128524669849418,-0.000425905214124222,0.000447111998591598,-0.000745371425737301,0.0528559351703483,-0.0136457793294131,-0.229740794550729,0.000967927142407128,0.236137226749701 +2.388,0.560434515704034,-0.292771176073346,-0.00128724646026508,-0.000222726928983396,0.000261462893252906,-0.00117408544684019,0.0978098875989429,-0.108610015366744,-0.171831622222673,0.00122329340958108,0.225585939157913 +2.39,0.560434282883674,-0.292770896123774,-0.00128994304028154,-3.46656637284503e-05,1.26719371246198e-05,-0.00143269791462799,0.287437252138866,-0.420148553646054,0.0732969468071608,0.00143317326266283,0.514312573693532 +2.392,0.560434377041379,-0.292771125385598,-0.00129297725192359,0.00092702207957207,-0.00141913132133131,-0.000880897659611551,0.18482365955752,-0.32990705164243,0.362081722058218,0.00191031000884851,0.523547152894828 +2.394,0.560437990971992,-0.292776572649059,-0.00129346663091999,0.00070462897450163,-0.0013069562694451,1.56289736048809e-05,-0.357342512455338,0.44130439650139,0.239636033749941,0.00148488415264122,0.616334868598842 +2.396,0.560437195557277,-0.292776353210676,-0.00129291473602917,-0.000502347970249283,0.00034608626467425,7.76464753882155e-05,-0.306421839957327,0.464204439238474,-0.0915461407270666,0.00061494565690796,0.563702759700145 +2.398,0.560435981580111,-0.292775188304001,-0.00129315604501844,-0.000521058385327677,0.000549861487508795,-0.000350555589303386,0.0417438128022528,0.0179922245782671,-0.20492581545399,0.00083470876211857,0.2099067790521 +2.4,0.560435111323735,-0.292774153764726,-0.00129431695838639,-0.000335372719040272,0.000418055162987318,-0.000742056786427747,0.091135404368947,-0.0861479998309765,-0.158953026479884,0.000915365093424636,0.202467786157413 +2.402,0.560434640089235,-0.292773516083349,-0.00129612427216415,-0.000156516767851888,0.000205269488184889,-0.000986367695222922,0.0781638055946664,-0.108320658973732,-0.0857344638867731,0.00101958535276742,0.158724112734949 +2.404,0.560434485256664,-0.292773332686773,-0.00129826242916728,-2.27174966616061e-05,-1.52274729076085e-05,-0.00108499464197484,0.0554065868324515,-0.103863897843448,-0.0201467849495276,0.00108533927124187,0.119429862611738 +2.406,0.560434549219249,-0.29277357699324,-0.00130046425073205,6.51095794779177e-05,-0.000210186103188903,-0.00106695483502103,0.0341260126685005,-0.0862064256264282,0.0298218241229914,0.00108940813072433,0.0973933968704151 +2.408,0.560434745694982,-0.292774173431186,-0.00130253024850736,0.000113786554012396,-0.000360053175413321,-0.000965707345482874,0.0165519162195759,-0.0611397653615952,0.063778622852624,0.00103690710582907,0.0898874272186496 +2.41,0.560435004365465,-0.292775017205942,-0.00130432708011398,0.000131317244356221,-0.000454745164635284,-0.000811840343610536,0.00288530428715905,-0.0330910072954271,0.0837796727470515,0.000939745777824065,0.0901242104556736 +2.412,0.560435270963959,-0.292775992411844,-0.00130577760988181,0.000125327771161032,-0.00049241720459503,-0.000630588654494668,-0.00716656024801753,-0.00578382409674448,0.0926203431476575,0.000809829491178712,0.093077065766817 +2.414,0.560435505676549,-0.29277698687476,-0.00130684943473196,0.000102651003364151,-0.000477880461022262,-0.000441358971019906,0.194097818609351,-0.279935501806827,0.255780156708553,0.000658562605086461,0.425982789472298 +2.416,0.560435681567973,-0.292777903933688,-0.00130754304576589,0.000901719045598436,-0.00161215921182234,0.000392531972339543,0.113234370893722,-0.183205239579625,0.465635390993132,0.00188844801643237,0.513032649941943 +2.418,0.560439112552732,-0.292783435511608,-0.0013052793068426,0.00055558848693904,-0.00121070141934076,0.00142118259295262,-0.410586933244361,0.576778211514721,0.273819099240978,0.00194787999017509,0.759099225489178 +2.42,0.56043790392192,-0.292782746739366,-0.00130185831539407,-0.000740628687379007,0.00069495363423655,0.00148780836930345,-0.339909786588321,0.576204448963362,-0.111809508415716,0.00180140643667018,0.678271034466204 +2.422,0.560436150037982,-0.292780655697071,-0.00129932807336539,-0.000804050659414245,0.00109411637651269,0.000973944559289757,0.0275458246212778,0.0987387876391631,-0.262932363208345,0.0016709745996956,0.282208341940566 +2.424,0.560434687719283,-0.29277837027386,-0.00129796253715692,-0.000630445388893896,0.0010899087847932,0.000436078916470073,0.0912131894389987,-0.0392122799161565,-0.241477324057666,0.00133248916278395,0.261091453054114 +2.426,0.560433628256427,-0.292776296061931,-0.00129758375769951,-0.00043919790165825,0.000937267256848061,8.03526305909185e-06,0.088843811682504,-0.0934029695948134,-0.182401018458504,0.00103509867792058,0.223355029354849 +2.428,0.560432930927676,-0.292774621204832,-0.00129793039610468,-0.00027507014216388,0.000716296906413948,-0.000293525157363944,0.0736355668939924,-0.116500774114542,-0.122934432065548,0.000821524107530496,0.184682163915106 +2.43,0.560432527975858,-0.292773430874306,-0.00129875785832896,-0.00014465563408228,0.000471264160389894,-0.0004837024652031,0.0572340092680478,-0.120375563333191,-0.0729770775389353,0.000690639729658883,0.151959408760372 +2.432,0.56043235230514,-0.292772736148191,-0.00129986520596549,-4.61341050916885e-05,0.000234794653081183,-0.000585433467519685,0.0422052419749019,-0.11024318560468,-0.0344335014451288,0.00063244701727516,0.122965476635516 +2.434,0.560432343439438,-0.292772491695693,-0.00130109959219904,2.41653338173275e-05,3.02914179711733e-05,-0.000621436470983616,0.238554461871876,-0.388675134507798,0.15758663954573,0.000622643413865254,0.482504031513676 +2.436,0.560432448966475,-0.292772614982519,-0.00130235095184943,0.000908083742395815,-0.00131990588495001,4.49130906632344e-05,0.360000454856235,-0.583924068098262,0.557608045830687,0.00160274290328867,0.884021706507389 +2.438,0.560435975774407,-0.292777771319233,-0.00130091993983639,0.00146416715324227,-0.00230540485442188,0.00160899571233913,-0.251494676702102,0.267715147030112,0.602654661946768,0.00316978614385123,0.705771644319196 +2.44,0.560438305635088,-0.292781836601936,-0.00129591496900007,-9.78949644125925e-05,-0.000249045296829564,0.00245553173845031,-0.713839963542572,1.03255314253328,0.0499150520621299,0.00247006945296424,1.25627425275223 +2.442,0.56043558419455,-0.292778767500421,-0.00129109781288259,-0.00139119270092802,0.00182480771571125,0.00180865592058765,-0.280827622579915,0.566925651264426,-0.460559912648233,0.00292174204362936,0.782549858350271 +2.444,0.560432740864284,-0.292774537371074,-0.00128868034531772,-0.00122120545473225,0.00201865730822814,0.000613292087857375,0.145135548135222,-0.0319171156726305,-0.562245695985216,0.00243771353439225,0.581552450136074 +2.446,0.560430699372731,-0.292770692871188,-0.00128864464453116,-0.000810650508387133,0.00169713925302073,-0.000440326863353213,0.198826768292581,-0.20483958438483,-0.454614427968999,0.00193166343794217,0.536810597173902 +2.448,0.560429498262251,-0.292767748814061,-0.00129044165277113,-0.000425898381561928,0.00119929897068882,-0.00120516562401862,0.173144552792492,-0.26187511761519,-0.311213106667963,0.00175274973508157,0.44205340305172 +2.45,0.560428995779204,-0.292765895675305,-0.00129346530702723,-0.000118072297217164,0.000649638782559969,-0.00168517929002507,0.133849689554211,-0.269250957363187,-0.180000178894891,0.00180991736129181,0.350445262254955 +2.452,0.560429025973062,-0.292765150258931,-0.00129718236993123,0.000109500376654914,0.000122295141236073,-0.00192516633959819,0.0956183718314739,-0.245238493901123,-0.0732706957624201,0.00193215213406693,0.273227719640783 +2.454,0.560429433780711,-0.29276540649474,-0.00130116597238562,0.000264401190108732,-0.000331315193044523,-0.00197826207307475,0.0618137421040664,-0.200411782586007,0.00766431229506231,0.00202316548414583,0.209867965624021 +2.456,0.560430083577822,-0.292766475519703,-0.00130509541822353,0.00035675534507118,-0.000679351989107956,-0.00189450909041794,0.033178225868069,-0.144238848823197,0.0654128693650459,0.00204400542930248,0.161816203330081 +2.458,0.560430860802091,-0.292768123902696,-0.0013087440087473,0.000397114093581008,-0.000908270588337311,-0.00171661059561456,0.220825613211905,-0.38312965924131,0.269506133750152,0.00198227319054046,0.51786662700905 +2.46,0.560431672034197,-0.292770108602057,-0.00131196186060599,0.0012400577979188,-0.0022118706260732,-0.000816484555417329,0.125128143860231,-0.24954023658541,0.510849143912743,0.0026639748568445,0.58214622724655 +2.462,0.560435821033283,-0.292776971385201,-0.00131200994696896,0.000897626669021933,-0.00190643153467895,0.000326785980036409,-0.417800870476658,0.545658765869344,0.335885402865353,0.00213237049081676,0.764931408689125 +2.464,0.560435262540873,-0.292777734328195,-0.00131065471668584,-0.000431145683987832,-2.92355625958196e-05,0.000527057056044083,-0.356721984791363,0.575404503735249,-0.040262995605958,0.000681564713924867,0.67820500305399 +2.466,0.560434096450547,-0.292777088327451,-0.00130990171874479,-0.000529261270143521,0.000395186480262044,0.000165733997612577,0.00837416391091805,0.120809828734608,-0.18346236435509,0.000680997506765246,0.219826250650035 +2.468,0.560433145495792,-0.292776153582274,-0.00130999178069539,-0.00039764902834416,0.000454003752342613,-0.000206792401376277,0.0686667794291828,-0.00124444069285467,-0.157528174601906,0.000637971201662892,0.171848191795034 +2.47,0.560432505854434,-0.292775272312442,-0.00131072888835029,-0.00025459415242679,0.000390208717490625,-0.000464378700795048,0.0639518222128598,-0.0453185381894815,-0.0977775646750915,0.000657821102890209,0.125315831488956 +2.472,0.560432127119183,-0.292774592747404,-0.00131184929549857,-0.000141841739492721,0.000272729599584687,-0.000597902660076643,0.259955069359385,-0.361520185863939,0.125303071141225,0.000672300605740222,0.462573607667107 +2.474,0.560431938487476,-0.292774181394043,-0.0013131204989906,0.000785226125010751,-0.00105587202596513,3.68335837698519e-05,0.166814786782543,-0.286592335144858,0.388224606410331,0.00131635956923192,0.510568981309621 +2.476,0.560435268023683,-0.292778816235508,-0.00131170196116349,0.000525417407637451,-0.000873639740994746,0.00095499576556468,-0.377746879956508,0.469140149714219,0.23053038908892,0.00139689898043498,0.64492592263317 +2.478,0.560434040157106,-0.292777675953007,-0.00130930051592834,-0.000725761394815282,0.000820688572891747,0.000958955140125533,-0.317524434870208,0.477270299299031,-0.132060517030533,0.00145597194226142,0.588259029247323 +2.48,0.560432364978103,-0.292775533481217,-0.00130786614060299,-0.000744680331843383,0.00103544145620138,0.00042675369744255,0.0470313970407642,0.015686322563796,-0.263507632030507,0.00134491877975426,0.268131096968454 +2.482,0.560431061435779,-0.292773534187182,-0.00130759350113857,-0.000537635806652225,0.000883433863146931,-9.5075387996496e-05,0.104662728081517,-0.102170751567487,-0.227358287595118,0.00103853116494017,0.270342264663732 +2.484,0.560430214434877,-0.292771999745764,-0.00130824644215498,-0.000326029419517315,0.00062675844993143,-0.000482679452937923,0.0960178618281125,-0.134373749575284,-0.158114566825747,0.000855628886398594,0.228639346149032 +2.486,0.560429757318101,-0.292771027153383,-0.00130952421895032,-0.000153564359339775,0.000345938864845796,-0.000727533655299483,0.0752883606569553,-0.136487333834284,-0.0920393191192885,0.000820098122338821,0.181020346402125 +2.488,0.560429600177439,-0.292770615990305,-0.00131115657677618,-2.48759768894935e-05,8.08091145942935e-05,-0.000850836729415077,0.054386493045233,-0.122281896747234,-0.0381162357024344,0.000855027524322735,0.139153154193442 +2.49,0.560429657814193,-0.292770703916924,-0.00131292756586798,6.39816128411574e-05,-0.000143188722143139,-0.000879998598109221,0.035912685478201,-0.0979371419379536,0.00241278291790436,0.000893864749055994,0.104341872087096 +2.492,0.560429856103891,-0.292771188745193,-0.00131467657116861,0.000118774765023311,-0.000310939453157521,-0.000841185597743459,0.0203766305634234,-0.0683474935085636,0.0308205964655999,0.000904645786032999,0.0776948911352396 +2.494,0.560430132913253,-0.292771947674737,-0.00131629230825896,0.000145488135094851,-0.000416578696177394,-0.000756716212246821,0.00777316804673188,-0.0377633312467761,0.049196725600449,0.000875970338218944,0.0625044729450809 +2.496,0.560430438056431,-0.292772855059978,-0.0013177034360176,0.000149867437210238,-0.000461992778144626,-0.000644398695341663,-0.00205918641860147,-0.00954099861269485,0.0597183584180593,0.000806936958102547,0.0605107695818008 +2.498,0.560430732383002,-0.29277379564585,-0.00131886990304032,0.000137251389420445,-0.000454742690628173,-0.000517842778574584,-0.00934219238774013,0.0140399520169587,0.0643013313011974,0.000702701929625527,0.0664759958056621 +2.5,0.560430987061989,-0.292774674030741,-0.0013197748071319,0.000112498667659278,-0.000405832970076791,-0.000387193370136873,-0.0143272893132762,0.0317645907493835,0.0644789790388635,0.000572079588610197,0.0732925588476507 +2.502,0.560431182377673,-0.29277541897773,-0.00132041867652087,7.99422321673404e-05,-0.000327684327630639,-0.00025992686241913,-0.0172868921607949,0.0433282494605169,0.0614163169990882,0.000425828313837507,0.0771241715393055 +2.504,0.560431306830917,-0.292775984768051,-0.00132081451458158,4.33510990160979e-05,-0.000232519972234724,-0.00014152810214052,-0.0185100456628895,0.0491121341580913,0.0559823323227972,0.000275635736016645,0.0767375074152446 +2.506,0.560431355782069,-0.292776349057619,-0.00132098478892943,5.90204951578243e-06,-0.000131235790998274,-3.59975331279405e-05,-0.0182958798597421,0.0499448112416256,0.0488357383933088,0.00013621119417554,0.0722090903849606 +2.508,0.560431330439116,-0.292776509711215,-0.00132095850471409,-2.98324204228706e-05,-3.27407272682212e-05,5.38148514327152e-05,-0.0169460054946779,0.0468861138386289,0.0405050840663473,6.96991159561164e-05,0.0642350107677766 +2.51,0.560431236452387,-0.292776480020528,-0.0013207695295237,-6.18819724629293e-05,5.63086643562416e-05,0.000126022803137449,-0.0147566998620618,0.0410547423140838,0.0314493178877467,0.000151267283667377,0.0537802161849443 +2.512,0.560431082911226,-0.292776284476558,-0.00132045441350154,-8.88592198711179e-05,0.000131478241988114,0.000179612122983702,-0.0120103396394899,0.0335061789528967,0.0220918950225371,0.000239672701397346,0.0418922917965375 +2.514,0.560430881015508,-0.29277595410756,-0.00132005108103177,-0.000109923331020889,0.000190333380167828,0.000214390383227597,-0.0089664446284443,0.0251575348816923,0.0128312472097089,0.000307039363485067,0.0296300454868903 +2.516,0.560430643217902,-0.292775523143037,-0.00131959685196863,-0.000124724998384895,0.000232108381514884,0.000230937111822538,-0.0058537714675566,0.0167507449716497,0.00403604462004269,0.000350374907218691,0.0181973556780815 +2.518,0.560430382115514,-0.292775025674034,-0.00131912733258448,-0.000133338416891115,0.000257336360054427,0.000230534561707768,-0.00286457077502966,0.00884448703164508,-0.00396759998032985,0.000370334065091079,0.0101080446270288 +2.52,0.560430109864234,-0.292774493797597,-0.0013186747137218,-0.000136183281485014,0.000267486329641464,0.000215066711901218,-0.000150979756474712,0.00182513718027799,-0.0109116152571809,0.000369253995603419,0.0110642337346262 +2.522,0.560429837382388,-0.292773955728715,-0.00131826706573687,-0.000133942335917014,0.000264636908775539,0.000186888100679044,0.00217626179577213,-0.00407144998271214,-0.0165993286477261,0.000350571540505786,0.0172293508850649 +2.524,0.56042957409489,-0.292773435249962,-0.00131792716131908,-0.000127478234301925,0.000251200529710615,0.000148669397310314,0.0040468880121991,-0.00873368891096681,-0.020913387089802,0.000318520008860106,0.0230222584501331 +2.526,0.560429327469451,-0.292772950926596,-0.00131767238814763,-0.000117754783868218,0.000229702153131672,0.000103234552319836,0.00542804994008161,-0.0121475474818,-0.0238169773998306,0.000278004750085055,0.0272814048105783 +2.528,0.560429103075755,-0.292772516441349,-0.0013175142231098,-0.000105766034541599,0.000202610339783415,5.34014877109911e-05,0.00631977555010098,-0.0143718461714792,-0.0253488937592208,0.000234710721398817,0.0298170411039824 +2.53,0.560428904405313,-0.292772140485237,-0.00131745878219679,-9.2475681667814e-05,0.000172214768445755,1.83897728295301e-06,0.0067493583499889,-0.0155167177405546,-0.025613468070465,0.000195481610409264,0.0306980799753557 +2.532,0.560428733173028,-0.292771827582275,-0.00131750686720067,-7.87686011416432e-05,0.000140543468821197,-4.9052384570869e-05,0.00676521481890456,-0.0157255940699818,-0.0247669004645179,0.00016841346616644,0.0301075040317046 +2.534,0.560428589330908,-0.292771578311362,-0.00131765499173507,-6.54148223921957e-05,0.000109312392165828,-9.72286245751185e-05,0.00643058087335112,-0.0151605053580472,-0.0230016331840762,0.000160255120062941,0.0282890159287114 +2.536,0.560428471513739,-0.292771390332707,-0.00131789578169897,-5.30462776482387e-05,7.9901447389008e-05,-0.000141058917307174,0.00581749136363551,-0.0139902950994919,-0.0205304718364773,0.000170574813554242,0.0255161093539989 +2.538,0.560428377145798,-0.292771258705573,-0.0013182192274043,-4.21448569376536e-05,5.33512117678602e-05,-0.000179350511921028,0.0050013281224781,-0.012381327622879,-0.0175717119604845,0.000191804970972416,0.0220697897116396 +2.54,0.560428302934311,-0.29277117692786,-0.00131861318374665,-3.30409651583263e-05,3.03761368974919e-05,-0.000211345765149112,0.00405613696102813,-0.0104903007391854,-0.0143362073826841,0.000216058898261267,0.018221566858108 +2.542,0.560428244981937,-0.292771137201025,-0.0013190646104649,-2.59203090935411e-05,1.13900088111185e-05,-0.000236695341451765,0.00305084291857271,-0.00845887742836891,-0.011016945055016,0.000238382632314499,0.0142208764922284 +2.544,0.560428199253075,-0.292771131367824,-0.00131955996511246,-2.08375934840354e-05,-3.45937281598374e-06,-0.000255413545369176,0.00204639710732479,-0.00640989498632004,-0.00778140216758232,0.000256285488704566,0.0102871140049177 +2.546,0.560428161631563,-0.292771151038516,-0.00132008626464637,-1.7734720664242e-05,-1.42495711341617e-05,-0.000267820950122094,0.00109386841945502,-0.00444500969365435,-0.00476667958056176,0.000268785475647118,0.00660877398005913 +2.548,0.560428128314192,-0.292771188366109,-0.00132063124891295,-1.64621198062154e-05,-2.12394115906011e-05,-0.000274480263691423,0.000233383930237084,-0.00264361797730483,-0.00207718302974723,0.000275792547305656,0.00337014441944141 +2.55,0.560428095783084,-0.292771235996163,-0.00132118418570114,-1.68011849432936e-05,-2.4824043043381e-05,-0.000276129682241083,-0.000506150836521167,-0.0010629319334432,0.000215469403604118,0.00027775189350044,0.00119684586657342 +2.552,0.560428061109452,-0.292771287662281,-0.00132173576764191,-1.84867231523e-05,-2.54911393243739e-05,-0.000273618386077007,-0.00110670350661479,0.000260962185888446,0.00207074114192544,0.000275424360426507,0.00236238497939685 +2.554,0.560428021836191,-0.29277133796072,-0.00132227865924545,-2.12279989697528e-05,-2.37801942998272e-05,-0.000267846717673381,-0.00156024194952753,0.00131122428539965,0.00347608568838919,0.000269736889856766,0.0040294957228804 +2.556,0.560427976197456,-0.292771382783058,-0.00132280715451261,-2.47276909504101e-05,-2.02462421827754e-05,-0.00025971404332345,-0.00186749860020541,0.00208776260862686,0.00444292407638519,0.00026167298928563,0.00525222601191845 +2.558,0.560427922925427,-0.292771418945689,-0.00132331751541874,-2.86979933705744e-05,-1.54291438653198e-05,-0.00025007502136784,-0.0020364815667149,0.00260431646734144,0.00500206063548003,0.000252188718256864,0.0059958595742941 +2.56,0.560427861405483,-0.292771444499634,-0.00132380745459808,-3.28736172172697e-05,-9.82897631340959e-06,-0.00023970580078153,-0.00208086839426103,0.00288532481587698,0.00519890291147325,0.000242149033474494,0.00629950030163307 +2.562,0.560427791430959,-0.292771458261594,-0.00132427633862187,-3.70214669476176e-05,-3.88784460181313e-06,-0.000229279409721949,-0.00201837437041516,0.00296277070585576,0.00508875300405496,0.000232281622331701,0.00622472910984118 +2.564,0.560427713319615,-0.292771460051012,-0.00132472457223697,-4.09471146989304e-05,2.02210651001344e-06,-0.00021935078876531,-0.00186919080907843,0.00287316611127796,0.00473241525394268,0.000223149106314296,0.0058433476637531 +2.566,0.5604276276425,-0.292771450173168,-0.00132515374177693,-4.44982301839314e-05,7.60481984329874e-06,-0.000210349748706179,-0.00165455780326562,0.00265481749778251,0.00419227480247946,0.000215139356127845,0.00523075381664857 +2.568,0.560427535326694,-0.292771429631733,-0.00132556597123179,-4.75653459119929e-05,1.26413765011435e-05,-0.000202581689555392,-0.00139552150391075,0.00234546715036088,0.00352896994612605,0.000208474476794375,0.00446120222607765 +2.57,0.560427437381116,-0.292771399607662,-0.00132596406853515,-5.00803161995744e-05,1.69866884447423e-05,-0.000196233868921675,-0.001111910209739,0.00198038078644269,0.00279871442687706,0.000203234635254272,0.00360431058831546 +2.572,0.560427335005429,-0.292771361684979,-0.00132635090670748,-5.20129867509489e-05,2.05628996469143e-05,-0.000191386831847884,-0.00082153971819876,0.00159090447413024,0.00205129346755178,0.000199391832925558,0.00272281278173993 +2.574,0.560427229329169,-0.292771317356063,-0.00132672961586254,-5.33664750723694e-05,2.33503063412632e-05,-0.000188028695051467,-0.00053965575758097,0.00120349499116434,0.00132871535735851,0.000196845136162005,0.00187219470978002 +2.576,0.560427121539529,-0.292771268283754,-0.00132710302148768,-5.41716097812727e-05,2.53768796115716e-05,-0.00018607197041845,-0.000278594383673614,0.000839189214646428,0.000664472107544944,0.000195451598869181,0.0011060635380929 +2.578,0.56042701264273,-0.292771215848545,-0.00132747390374421,-5.44808526070639e-05,2.67070631998489e-05,-0.000185370806621288,-4.76491554546321e-05,0.000513470290591788,8.33441987299621e-05,0.000195048113225891,0.000522368104690452 +2.58,0.560426903616119,-0.292771161455501,-0.00132784450471417,-5.43622064030913e-05,2.74307607739388e-05,-0.00018573859362353,0.000146891172836394,0.000236463695846289,-0.000398336971914326,0.000195464885037943,0.000485967529063838 +2.582,0.560426795193904,-0.292771106125502,-0.00132821685811871,-5.38932879157183e-05,2.76529179832341e-05,-0.000186964154508945,0.000301557390169904,1.33970889937274e-05,-0.000772054686674905,0.000196531843289068,0.000828966091451439 +2.584,0.560426688042967,-0.292771050843829,-0.0013285923613322,-5.31559768424116e-05,2.74843491299137e-05,-0.00018882681237023,0.000415407472309503,-0.000154751069597614,-0.00103619936502736,0.000198082084982635,0.0011270405430486 +2.586,0.560426582569997,-0.292770996188105,-0.00132897216536819,-5.22316580264803e-05,2.70339137048436e-05,-0.000191108951969054,0.000489654206070611,-0.000270482070768851,-0.00119497370418969,0.000199954019997365,0.00131942561208841 +2.588,0.560426479116335,-0.292770942708174,-0.00132935679714008,-5.11973600181292e-05,2.64024208468383e-05,-0.000193606707186988,0.000527249549575614,-0.000338952539646886,-0.00125720046265792,0.000201994590440407,0.00140478963370608 +2.59,0.560426377780557,-0.292770890578422,-0.00132974659219694,-5.01226598281778e-05,2.56781035462561e-05,-0.000196137753819686,0.000532450257495485,-0.000367150587710085,-0.00123510352726535,0.000204062893499566,0.00139419638280487 +2.592,0.560426278625696,-0.29277083999576,-0.00133014134815536,-4.90675589881473e-05,2.49338184959979e-05,-0.00019854712129605,0.000510392034192007,-0.000363118556057084,-0.00114313047482744,0.00020603465733899,0.00130349622047739 +2.594,0.560426181510321,-0.292770790843148,-0.00133054078068212,-4.80810916914098e-05,2.42256293220277e-05,-0.000200710275718996,0.000466690734668429,-0.000335258473760368,-0.000996864185816292,0.000207805888447564,0.00115062447871435 +2.596,0.560426086301329,-0.292770743093243,-0.00133094418925823,-4.72007960494735e-05,2.35927846009565e-05,-0.000202534578039315,0.000407086628295694,-0.00029174390334119,-0.000812064440865178,0.000209295938647874,0.000954087356687837 +2.598,0.560425992707137,-0.292770696472009,-0.00133135091899428,-4.6452745178227e-05,2.3058653708663e-05,-0.000203958533482457,0.000337141953243858,-0.000240053716488164,-0.000603862633508089,0.000210448669337118,0.00073207961560488 +2.6,0.560425900490348,-0.292770650858628,-0.00133176002339216,-4.58522282364981e-05,2.26325697350038e-05,-0.000204950028573347,0.000261997951112036,-0.000186631713555707,-0.000386124273180077,0.000211232512315878,0.000502559725038216 +2.602,0.560425809298224,-0.29277060594173,-0.00133217071910857,-4.54047533737789e-05,2.23121268544402e-05,-0.000205503030575177,0.000186193845064242,-0.000136670640082936,-0.000170981446015461,0.000211638650083779,0.000287370260608199 +2.604,0.560425718871335,-0.29277056161012,-0.00133258203551447,-4.51074528562411e-05,2.20858871746721e-05,-0.000205633954357409,0.00011354513163031,-9.40100636226403e-05,3.14710731433298e-05,0.000211678510718815,0.00015073426094976 +2.606,0.560425628868412,-0.292770517598182,-0.001332993254926,-4.49505728472576e-05,2.19360865999496e-05,-0.000205377146282604,4.70789032758212e-05,-6.1135308621063e-05,0.00021332825436704,0.000211380032429279,0.000226854343588866 +2.608,0.560425539069043,-0.292770473865774,-0.0013334035440996,-4.49191372431379e-05,2.18413459401878e-05,-0.000204780641339941,-1.09817988036553e-05,-3.92594290410386e-05,0.000368895487073972,0.000210783975554937,0.000371141190192002 +2.61,0.560425449191863,-0.292770430232798,-0.00133381237749136,-4.49945000424723e-05,2.17790488837854e-05,-0.000203901564334308,-5.91912005520889e-05,-2.84696849428556e-05,0.000494598161905612,0.00020993970549263,0.000498940340064775 +2.612,0.560425359091043,-0.292770386749578,-0.00133421915035693,-4.51559020453462e-05,2.17274672004164e-05,-0.000202802248692318,-9.68206972928875e-05,-2.79187922780366e-05,0.000588804436631173,0.000208901628512405,0.000597364521028073 +2.614,0.560425268568255,-0.292770343322929,-0.00133462358648613,-4.53817828316438e-05,2.16673737146733e-05,-0.000201546346587783,-0.000123773317983744,-3.6042644563361e-05,0.000651584085298306,0.000207725566841332,0.000664214368021241 +2.616,0.560425177563912,-0.292770300080084,-0.00133502533574328,-4.56509953172812e-05,2.15832966221629e-05,-0.000200195912351125,-0.000140482417365639,-5.07871175670082e-05,0.000684427046288016,0.000206466111961838,0.000700539094262552 +2.618,0.560425085964274,-0.292770256989743,-0.00133542437013554,-4.59437125011064e-05,2.14642252444053e-05,-0.000198808638402631,-0.000147801278160831,-6.98292049183812e-05,0.000689941604715964,0.000205174102623199,0.000709042138101501 +2.62,0.560424993789062,-0.292770214223183,-0.00133582057029689,-4.62422004299245e-05,2.13039798024894e-05,-0.000197436145932261,-0.000146891068752985,-9.07804699468161e-05,0.000671551078634806,0.000203895150448978,0.00069339666210527 +2.622,0.560424900995472,-0.292770171773823,-0.00133621411471926,-4.65312767761183e-05,2.1101103364618e-05,-0.000196122434088092,-0.000139113290331671,-0.000111363553795262,0.000633203325710318,0.000202668264497079,0.00065779996986274 +2.624,0.560424807663955,-0.292770129818769,-0.00133660506003325,-4.67986535912512e-05,2.08585255873084e-05,-0.00019490333262942,-0.000125930404992758,-0.000129555515621104,0.000579105335733742,0.000201525435460849,0.000606635053722401 +2.626,0.560424713800858,-0.292770088339721,-0.00133699372804978,-4.70349983960893e-05,2.05828813021336e-05,-0.000193806012745157,-0.000108818835886648,-0.000143694611764999,0.000513491134161714,0.000200491188467208,0.000544208439255312 +2.628,0.560424619523961,-0.292770047487244,-0.00133738028408423,-4.72339289347978e-05,2.02837471402484e-05,-0.000192849368092773,-8.91961365878657e-05,-0.00015255000040959,0.000440428222538147,0.000199582948205625,0.000474557133141288 +2.63,0.560424524865142,-0.292770007204733,-0.00133776512552215,-4.73917829424408e-05,1.99726813004952e-05,-0.000192044299855004,-6.8363710525876e-05,-0.000155354888675685,0.000363665270640412,0.000198811222509177,0.000401324267173397 +2.632,0.560424429956829,-0.292769967596519,-0.00133814846128365,-4.75073837769013e-05,1.96623275855456e-05,-0.000191394707010212,-4.74647196546662e-05,-0.000151807448556251,0.000286520614525831,0.000198180454411962,0.00032770789370614 +2.634,0.560424334835607,-0.292769928555422,-0.00133853070435019,-4.75816418210595e-05,1.93654515062702e-05,-0.000190898217396901,-2.7457196238867e-05,-0.000142043373591027,0.000211810111117039,0.000197689561575071,0.000256502905983211 +2.636,0.560424239630262,-0.292769890134713,-0.00133891205415324,-4.76172125618568e-05,1.90941540911815e-05,-0.000190547466565743,-9.1003246605048e-06,-0.000126585315146643,0.000141810346451776,0.000197333024775991,0.000190307205014614 +2.638,0.560424144366757,-0.292769852178806,-0.00133929289421646,-4.76180431197015e-05,1.88591102456836e-05,-0.000190330976011094,7.04695329867277e-06,-0.000106275790251464,7.82527306841806e-05,0.000197101558845038,0.000132165400176816 +2.64,0.56042404915809,-0.292769814698272,-0.00133967337805728,-4.75890247486621e-05,1.86690509301757e-05,-0.000190234455643007,2.06178754624808e-05,-8.21990114863169e-05,2.23430345405728e-05,0.000196983240030601,8.7641231565943e-05 +2.642,0.560423954010658,-0.292769777502602,-0.00134005383203903,-4.75355716178516e-05,1.85303141997384e-05,-0.000190241603872931,3.14218373542729e-05,-5.55975994409596e-05,-2.51988195934527e-05,0.000196964136221603,6.86542455731555e-05 +2.644,0.560423859015803,-0.292769740577015,-0.00134043434447277,-4.7463337399245e-05,1.84466605324118e-05,-0.000190335250921381,3.94229024425207e-05,-2.7789361090047e-05,-6.40849517549724e-05,0.000197029326307475,8.02078229864311e-05 +2.646,0.560423764157308,-0.29276970371596,-0.00134081517304271,-4.73778800080815e-05,1.84191567553782e-05,-0.000190497943679951,4.4714745794927e-05,-8.87172280084058e-08,-9.43961653634972e-05,0.000197163372348743,0.000104451196247741 +2.648,0.560423669504283,-0.292769666900388,-0.00134119633624749,-4.72844784160653e-05,1.84463056634998e-05,-0.000190712835582835,4.74941058703493e-05,2.62635954650925e-05,-0.000116514145553914,0.000197351143264375,0.000128534091405108 +2.65,0.560423575019395,-0.292769629930737,-0.00134157802438505,-4.71879035846001e-05,1.85242111372385e-05,-0.000190964000262167,4.80337991604074e-05,5.01596472690657e-05,-0.000131053130153491,0.000197578070744441,0.00014831776359886 +2.652,0.560423480752669,-0.292769592803543,-0.00134196019224854,-4.70923432194236e-05,1.86469442525761e-05,-0.000191237048103448,4.66571434265539e-05,7.06708060127514e-05,-0.000138794292031674,0.000197830750610655,0.000162588767618774 +2.654,0.560423386650022,-0.29276955534296,-0.00134234297257746,-4.70012750108939e-05,1.88068943612896e-05,-0.000191519177430294,4.37147401610715e-05,8.70801278307631e-05,-0.000140625377662018,0.00019809698243977,0.000171083090961548 +2.656,0.560423292747569,-0.292769517575966,-0.00134272626895826,-4.69174842587794e-05,1.89952647638991e-05,-0.000191799549614097,0.224343010203631,-0.298099480312147,0.178695672725139,0.000198366170615843,0.413672853641967 +2.658,0.560423198980085,-0.292769479361901,-0.00134311017077592,0.000850370765803631,-0.0011735910268873,0.000523263513470262,0.144755187211909,-0.219881746914285,0.409612909813873,0.001540860487602,0.486913526960404 +2.66,0.560426694230632,-0.292774211940073,-0.00134063321490438,0.000532103264588856,-0.000860531722893242,0.0014466520896414,-0.416893469787349,0.53086143485953,0.205118662627984,0.00176534727426519,0.705469839136123 +2.662,0.560425327393143,-0.292772921488793,-0.00133732356241735,-0.000817203113345765,0.000949854712550823,0.0013437381639822,-0.347481172564834,0.526930801752339,-0.195539074890338,0.00183730159657016,0.660783447833981 +2.664,0.560423425418178,-0.292770412521223,-0.00133525826224845,-0.000857821425670479,0.00124719148411612,0.000664495790080044,0.0440340861204701,0.0449531113236311,-0.338413518014002,0.00165314816378484,0.344214311342153 +2.666,0.56042189610744,-0.292767932722856,-0.00133466557925703,-0.000641066768863884,0.00112966715784535,-9.91590807380981e-06,0.337761051932838,-0.393169913417978,-0.121316112552429,0.00129892756337253,0.53233702499893 +2.668,0.560420861151103,-0.292765893852592,-0.00133529792588075,0.000493222782060875,-0.000325488169555798,0.000179231339870328,0.254037323364764,-0.364734274813788,0.187165002942316,0.000617523387780874,0.482282895417897 +2.67,0.560423868998569,-0.292769234675535,-0.00133394865389755,0.000375082524595171,-0.000329269941409804,0.000738744103695454,-0.32830527224581,0.371494369398594,0.0583338997228038,0.000891542733309796,0.499194613488692 +2.672,0.560422361481201,-0.292767210932358,-0.00133234294946596,-0.000819998306922364,0.00116048930803858,0.000412566938761543,-0.279900184529946,0.374354497283124,-0.2780356290321,0.00147964324632206,0.543865069614949 +2.674,0.560420589005341,-0.292764592718302,-0.0013322983861425,-0.000744518213524614,0.00116814804772269,-0.000373398412432946,0.0930059731174547,-0.0864294481435489,-0.369176464638104,0.00143467892090031,0.390399055563166 +2.676,0.560419383408347,-0.292762538340167,-0.0013338365431157,-0.000447974414452545,0.000814771515464385,-0.00106413891979087,0.370264114007978,-0.494462415845386,-0.112187008288224,0.00141312608744935,0.627833194116423 +2.678,0.560418797107683,-0.292761333632241,-0.00133655494182167,0.0007365382425073,-0.000809701615658852,-0.000822146445585841,0.271533694404246,-0.432077359033971,0.225279958211525,0.00136895217851674,0.557828334667913 +2.68,0.560422329561317,-0.292765777146629,-0.00133712512889804,0.000638160363164441,-0.000913537920671503,-0.000163019086944771,-0.324879859917026,0.337679098960652,0.115037359603442,0.00112622173852545,0.482501493634078 +2.682,0.560421349749136,-0.292764987783923,-0.00133720701816945,-0.000562981197160805,0.000541014780183757,-0.000361997007172071,-0.286505182335583,0.370399579705665,-0.21003914435231,0.000860631543655837,0.51322267127586 +2.684,0.560420077636529,-0.292763613087509,-0.00133857311692673,-0.000507860366177892,0.00056806039815116,-0.00100317566435401,0.0799232852261021,-0.066433279471284,-0.294614851914683,0.00125975242846922,0.312408423560174 +2.686,0.560419318307671,-0.292762715542331,-0.00134121972082686,-0.000243288056256396,0.000275281662298621,-0.0015404564148308,0.352941632503211,-0.457147580953248,-0.0344917897672144,0.00158365875045992,0.578568397241661 +2.688,0.560419104484304,-0.292762511960859,-0.00134473494258605,0.000903906163834955,-0.00126052992566183,-0.00114114282342287,0.251017798047481,-0.383805512184365,0.302593530105039,0.00192566585625787,0.549435574550045 +2.69,0.560422933932326,-0.292767757662033,-0.00134578429212055,0.000760783135933529,-0.00125994038643884,-0.000330082294410644,-0.348336973550466,0.391236897510915,0.187406706238582,0.00150837497936816,0.556350816175782 +2.692,0.560422147616847,-0.292767551722405,-0.00134605527176369,-0.000489441730366913,0.000304417664381828,-0.000391515998468539,-0.309781173712941,0.424361921349397,-0.145251409421933,0.000696784112095749,0.545110436349715 +2.694,0.560420976165405,-0.292766539991376,-0.00134735035611443,-0.000478341558918238,0.00043750729895875,-0.000911087932098375,0.0591945275504878,-0.0160824824256555,-0.238362455872234,0.00111817015862784,0.24612862227368 +2.696,0.560420234250612,-0.292765801693209,-0.00134969962349209,-0.000252663620164961,0.000240087734679206,-0.00134496582195748,0.33566443428945,-0.413102672947723,0.0128099203900583,0.00138939342431581,0.532436404562845 +2.698,0.560419965510924,-0.292765579640437,-0.00135273021940226,0.000864316178239565,-0.00121490339283214,-0.000859848250538141,0.236841596126802,-0.347542060706584,0.340173507767764,0.00172115418363237,0.540922768057599 +2.7,0.560423691515325,-0.292770661306781,-0.00135313901649424,0.000694702764342247,-0.00115008050814713,1.57282091135802e-05,-0.360659652393069,0.419181603896617,0.213479174268616,0.00134370550440439,0.592757926776217 +2.702,0.560422744321982,-0.29277017996247,-0.0013526673065658,-0.000578322431332711,0.000461823022754326,-5.93155346367835e-06,-0.318630442384948,0.444028469250012,-0.130701370865127,0.000740116559911352,0.561933704866473 +2.704,0.560421378225599,-0.29276881401469,-0.00135316274270809,-0.000579819005197545,0.000626033368852918,-0.000507077274346928,0.0548313636022922,-0.0044246381974977,-0.233809753193842,0.000992590157046056,0.240193789566322 +2.706,0.560420425045961,-0.292767675828994,-0.00135469561566319,-0.000358996976923542,0.000444124469964335,-0.000941170566239046,0.335454651063937,-0.40867315520901,0.00942429289121915,0.00110087574640196,0.528802787441041 +2.708,0.560419942237692,-0.29276703751681,-0.00135692742497305,0.000761999599058204,-0.00100865925198312,-0.000469380102782052,0.239324864960421,-0.349095571290647,0.330244044915994,0.00134846377647444,0.536847499841011 +2.71,0.560423473044357,-0.292771710466002,-0.00135657313607432,0.000598302482918144,-0.000952257815198253,0.000379805613424932,-0.357577149320831,0.413059600162801,0.196869025589387,0.00118701858100927,0.580721158766907 +2.712,0.560422335447623,-0.292770846548071,-0.00135540820251935,-0.000668308998225119,0.000643579148668083,0.000318095999575496,-0.3139357366011,0.434580270058243,-0.152663867412222,0.000980824195590082,0.557424357426572 +2.714,0.560420799808364,-0.292769136149408,-0.00135530075207602,-0.000657440463486258,0.000786063265034719,-0.000230849856223958,0.0616930824134942,-0.0162819285380589,-0.258647514517207,0.00105043565999289,0.266401340800915 +2.716,0.560419705685769,-0.29276770229501,-0.00135633160194425,-0.000421536668571143,0.000578451434515847,-0.000716494058493333,0.115618865724476,-0.123733387286107,-0.198730767811579,0.00101275019669203,0.261096900241439 +2.718,0.56041911366169,-0.292766822343669,-0.00135816672830999,-0.000194965000588354,0.000291129715890292,-0.00102577292747027,0.0998324924394998,-0.142742594147482,-0.11186792924639,0.00108396400385793,0.207017893730254 +2.72,0.560418925825767,-0.292766537776147,-0.00136043469365413,-2.22066988131431e-05,7.48105792591768e-06,-0.00116396577547889,0.0724367677576442,-0.131428102380371,-0.0348440403743696,0.00116420162780596,0.154060178398218 +2.722,0.560419024834895,-0.292766792419438,-0.00136282259141191,9.4782070442223e-05,-0.000234582693631191,-0.00116514908896775,0.0463829628177813,-0.105474461609134,0.0241225174739747,0.00119230242830876,0.117720589281462 +2.724,0.560419304954049,-0.292767476106921,-0.00136509529001,0.000163325152457982,-0.000414416788510618,-0.00106747570558299,0.0244125281795293,-0.072148239112224,0.0649254908143339,0.00115668524760835,0.100083261820312 +2.726,0.560419678135504,-0.292768450086592,-0.00136709249423424,0.00019243218316034,-0.000523175650080087,-0.000905447125710417,0.00690385669466219,-0.0368156762887983,0.0900047652024545,0.00106328613430715,0.0974880249928727 +2.728,0.560420074682781,-0.292769568809522,-0.00136871707851284,0.000190940579236631,-0.000561679493665812,-0.000707456644773174,-0.00636086956024017,-0.00373216862969982,0.102489605509001,0.000923275182509321,0.10275460564682 +2.73,0.560420441897821,-0.292770696804566,-0.00136992232081333,0.00016698870491938,-0.000538104324598887,-0.000495488703674412,-0.0157755882246313,0.0240783429861224,0.105417147986536,0.000750300304672486,0.109276762737582 +2.732,0.560420742637601,-0.29277172122682,-0.00137069903332754,0.000127838226338106,-0.000465366121721322,-0.000285788052827029,-0.0217973697841378,0.0448798788584003,0.101402794766905,0.000560877036878746,0.113012634879425 +2.734,0.560420953250727,-0.292772558269053,-0.00137106547302464,7.97992257828283e-05,-0.000358584809165285,-8.98775246067906e-05,-0.0249104222388441,0.0581025846463356,0.0925513227393452,0.000378191685827554,0.112081161751226 +2.736,0.560421061834504,-0.292773155566057,-0.00137105854342597,2.81965373827297e-05,-0.000232955783135979,8.4417238130352e-05,-0.0256090307293455,0.0640998982920359,0.080491528242979,0.000249378651272377,0.106035397555893 +2.738,0.560421066036876,-0.292773490092186,-0.00137072780407212,-2.26368971345536e-05,-0.000102185215997141,0.000232088588365126,-0.0243839416991242,0.063858658326532,0.0664641315682029,0.000254596465665923,0.0953414161902708 +2.74,0.560420971286916,-0.292773564306921,-0.0013701301890725,-6.93392294137673e-05,2.24788501701489e-05,0.000350273764403164,-0.021710123865315,0.0587182280922803,0.0514238202228844,0.000357777776657285,0.0810158569346762 +2.742,0.560420788679959,-0.292773400176785,-0.0013693267090145,-0.000109477392595814,0.00013268769637198,0.000437783869256663,-0.0180356413831406,0.0501345842028599,0.0361283945208429,0.000470367984071425,0.0643740769560898 +2.744,0.560420533377345,-0.292773033556135,-0.00136837905359548,-0.00014148179494633,0.000223017186981589,0.000494787342486535,-0.013770997925322,0.0395047996364083,0.0212011983333898,0.000560863867863944,0.0469016032662394 +2.746,0.560420222752779,-0.292772508108037,-0.00136734755964456,-0.000164561384297102,0.000290706894917614,0.000522588662590223,-0.00927933274663671,0.0280529466253898,0.00716562112163671,0.000620233712581198,0.0304042753021449 +2.748,0.560419875131808,-0.292771870728556,-0.00136628869894512,-0.000178599125932877,0.000335228973483148,0.000523449826973082,-0.00486859409731809,0.0167693765401599,-0.00554155296737107,0.00064674247873841,0.0183200438678592 +2.75,0.560419508356275,-0.292771167192143,-0.00136525376033667,-0.000184035760686374,0.000357784401078253,0.000500422450720738,-0.000786692266885324,0.00639197462320993,-0.0165703851456172,0.000642107053419978,0.0177779044935175 +2.752,0.560419138988765,-0.292770439590951,-0.00136428700914223,-0.000181745895000418,0.000360796871975988,0.000457168286390613,0.00278048820773202,-0.00258329135860435,-0.0256646841877497,0.000610089169923946,0.0259437954697016 +2.754,0.560418781372695,-0.292769724004655,-0.0013634250871911,-0.000172913807855446,0.000347451235643836,0.000397763713969739,0.00570804176147631,-0.0098738820800137,-0.0326691993943195,0.000555731516335451,0.0346027726800408 +2.756,0.560418447333534,-0.292769049786009,-0.00136269595428636,-0.000158913727954513,0.000321301343655933,0.000326491488813335,0.00792833265705893,-0.0153735701460822,-0.0375326221430452,0.000484855461591449,0.0413267811798851 +2.758,0.560418145717783,-0.292768438799281,-0.00136211912123585,-0.00014120047722721,0.000285956955059507,0.000247633225397559,0.00942482374782781,-0.01911311539593,-0.0403041901771497,0.000403771184257736,0.0455912955360078 +2.76,0.560417882531625,-0.292767905958188,-0.00136170542138477,-0.000121214432963201,0.000244848882072213,0.000165274728104736,0.0102243007463198,-0.0212229950245779,-0.0411239149010131,0.000319311211141571,0.0473933351891404 +2.762,0.560417660860051,-0.292767459403753,-0.00136145802232343,-0.000100303274241931,0.000201064974961196,8.31375657935062e-05,0.0103880201038353,-0.0219004608094375,-0.040207287385803,0.000239582398823177,0.0469485580637782 +2.764,0.560417481318528,-0.292767101698289,-0.00136137287112159,-7.96623525478601e-05,0.000157247038834463,4.44557856152383e-06,0.0100025105559398,-0.0213819162271644,-0.0378261900526102,0.000176330612215841,0.0445876352015147 +2.766,0.560417342210641,-0.292766830415597,-0.00136144024000918,-6.02932320181714e-05,0.000115537310052538,-6.81671944169348e-05,0.00917051228010999,-0.019920641063792,-0.0342879301071588,0.000147074505731107,0.040701257804956 +2.768,0.5604172401456,-0.292766639549048,-0.00136164553989926,-4.29803034274201e-05,7.75644745792946e-05,-0.000132706141867111,0.00800259153388437,-0.017769441817278,-0.0299144278861906,0.000159607250113299,0.0357024863211783 +2.77,0.560417170289428,-0.292766520157699,-0.00136197106457665,-2.82828658826339e-05,4.4459542783426e-05,-0.000187824905961697,0.00660977526184546,-0.0151676233413333,-0.0250231153142016,0.00019507631005985,0.0299983704034818 +2.772,0.560417127014136,-0.292766461710877,-0.00136239683952311,-1.65412023800382e-05,1.68939812139612e-05,-0.000232798603123918,0.00509742607152085,-0.0123316258419936,-0.0199107145467184,0.000233996170041055,0.0239685064662454 +2.774,0.560417104124618,-0.292766452581774,-0.00136290225898915,-7.89316159655051e-06,-4.8669605845486e-06,-0.000267467764148571,0.00356049827815452,-0.00944876451733355,-0.0148405920998365,0.000267628462918196,0.0179499156757488 +2.776,0.56041709544149,-0.29276648117872,-0.0013634667105797,-2.29920926742011e-06,-2.0901076855373e-05,-0.000292160971523264,0.00208016114056075,-0.00667354988631573,-0.0100339777788644,0.000292916668454335,0.0122288204060158 +2.778,0.560417094927781,-0.292766536186081,-0.00136407090287524,4.27482965692505e-07,-3.15611601298116e-05,-0.000307603675264028,0.000721773037171135,-0.00412620258100071,-0.00566498728742786,0.000309218871685354,0.00704546556469929 +2.78,0.560417097151422,-0.29276660742336,-0.00136469712528076,5.87882881264434e-07,-3.74058871793758e-05,-0.000314820920672975,-0.000465969242358088,-0.00189298212174837,-0.00185907934272672,0.000317035894017283,0.00269382342603148 +2.782,0.560417097279312,-0.29276668580963,-0.00136533018655793,-1.43639400373985e-06,-3.91330886168051e-05,-0.000315039992634935,-0.00145082658387085,-2.80246659212224e-05,0.00130553734923461,0.000317464421332289,0.00195195054461246 +2.784,0.560417091405846,-0.292766763955715,-0.0013659572852513,-5.21542345421899e-06,-3.75179858430607e-05,-0.000309598771276037,-0.00221599626148982,0.00144363906592892,0.00379418476931931,0.000311907356564668,0.00462499418889879 +2.786,0.560417076417619,-0.292766835881574,-0.00136656858164304,-1.03003790496992e-05,-3.33585323530894e-05,-0.000299863253557658,-0.00275843519553786,0.00252217962140588,0.00561028372370042,0.000301888821130402,0.00674133801489252 +2.788,0.56041705020433,-0.292766897389844,-0.00136715673826553,-1.62491642363704e-05,-2.74292673574372e-05,-0.000287157636381235,-0.00308676284532793,0.00322848868472558,0.00678885770516444,0.000288921975935034,0.0081264895860186 +2.79,0.560417011420962,-0.292766945598643,-0.00136771721218856,-2.26474304310109e-05,-2.0444577614187e-05,-0.000272707822737,-0.00321890167298555,0.00359941133495911,0.00738949360121891,0.000274409262673302,0.00882732720709029 +2.792,0.560416959614608,-0.292766979168154,-0.00136824756955647,-2.91247709283126e-05,-1.30316220176008e-05,-0.00025759966197636,-0.00317964243823354,0.00368296161623593,0.0074892621626868,0.000259568220906125,0.00893103465692162 +2.794,0.560416894921878,-0.292766997725131,-0.00136874761083647,-3.53660001839451e-05,-5.71273114924331e-06,-0.000242750774086253,-0.00299826120875312,0.0035337638683297,0.00717595798754855,0.000245379965738178,0.0085423316718615 +2.796,0.560416818150607,-0.292767002019079,-0.00136921857265282,-4.11178157633251e-05,1.10343345571806e-06,-0.000228895830026165,-0.00270630821225248,0.00320891102578713,0.00654197253140142,0.000232562235416469,0.0077729414453432 +2.798,0.560416730450615,-0.292766993311397,-0.00136966319415657,-4.6191233032955e-05,7.12291295390521e-06,-0.000216582883960647,-0.00233565207452546,0.00276439734991917,0.00567898809054889,0.000221568299904939,0.00673409749365654 +2.8,0.560416633385675,-0.292766973527427,-0.00137008490418866,-5.0460424061427e-05,1.21610228553948e-05,-0.00020617987766397,-0.00191683214439963,0.00225221476538029,0.00467362653525787,0.000212612997784421,0.00553077768584737 +2.802,0.560416528608919,-0.292766944667306,-0.00137048791366723,-5.38585616105535e-05,1.61317720154264e-05,-0.000197888377819616,-0.0014777577078684,0.00171817008884356,0.00360409764879609,0.000205720171114051,0.00425739311779153 +2.804,0.560416417951429,-0.292766909000339,-0.00137087645769994,-5.63714548929006e-05,1.9033703210769e-05,-0.000191763487068785,-0.00104275207218895,0.00120041561760264,0.00253784135026413,0.000200781617080444,0.00299482357713258 +2.806,0.560416303123099,-0.292766868532493,-0.0013712549676155,-5.80295698993094e-05,2.09334344858369e-05,-0.000187737012418559,-0.00063194247057474,0.000728663285959329,0.00153010819466115,0.000197612817129654,0.00180873783556113 +2.808,0.560416185833149,-0.292766825266601,-0.00137162740574961,-5.88992247751995e-05,2.19483563546063e-05,-0.000185643054290141,-0.000260956554976044,0.000324005017260375,0.000623381518280452,0.000195995389313015,0.000749454529727122 +2.81,0.5604160675262,-0.292766780739068,-0.00137199753983266,-5.90733961192135e-05,2.22294545548784e-05,-0.000185243486345438,5.90989965298938e-05,-7.46468858947579e-07,-0.000152471162431777,0.000195701211064922,0.000163525851105858 +2.812,0.560415949539565,-0.292766736348783,-0.001372368379695,-5.866282878908e-05,2.19453704791705e-05,-0.000186252938939868,0.000321436162407712,-0.00024030792633519,-0.000779458058866262,0.000196502122204172,0.000876712023126452 +2.814,0.560415832874885,-0.292766692957586,-0.00137274255158842,-5.77876514695827e-05,2.12682228495377e-05,-0.000188361318580903,0.000523196513890823,-0.000395874732300781,-0.00125026568091616,0.000198170977448979,0.00141195455617327 +2.816,0.560415718388959,-0.292766651275892,-0.00137312182496932,-5.65700427335169e-05,2.03618715499676e-05,-0.000191254001663532,0.000664936064544367,-0.000473880521629256,-0.00156674930580807,0.000200481591923557,0.00176675015380258 +2.818,0.560415606594714,-0.292766611510099,-0.00137350756759508,-5.51279072114052e-05,1.93727007630207e-05,-0.000194628315804135,0.000750023751439066,-0.000484668548350608,-0.00173823306269527,0.000203210651790493,0.00195419891764631 +2.82,0.56041549787733,-0.292766573785089,-0.00137390033823254,-5.35699477277606e-05,1.84231973565652e-05,-0.000198206933914313,0.000784003910403452,-0.000441164448722331,-0.00177974267007857,0.000206143498932435,0.00199418458875872 +2.822,0.560415392314923,-0.29276653781731,-0.00137430039533074,-5.19918915697914e-05,1.76080429681313e-05,-0.000201747286484449,0.000773957176125605,-0.000357625540292615,-0.00171026409527541,0.00020908172461985,0.00191099686371645 +2.824,0.560415289909764,-0.292766503352917,-0.00137470732737847,-5.04741190232582e-05,1.69926951953947e-05,-0.000205047990295415,0.000727894133856208,-0.000248523361612295,-0.00155111419194997,0.000211851520422597,0.00173134311095114 +2.826,0.560415190418447,-0.292766469846529,-0.00137512058729192,-4.90803150343666e-05,1.66139495216821e-05,-0.000207951743252249,0.00065420579370423,-0.000127602147598216,-0.00132448089214948,0.000214310121469405,0.00148273974866021 +2.828,0.560415093588503,-0.292766436897119,-0.00137553913435148,-4.78572958484413e-05,1.64822866050018e-05,-0.000210345913864013,0.00056118872049371,-7.13525766249389e-06,-0.00105217753086639,0.000216350156036323,0.00119250209575136 +2.83,0.560414998989264,-0.292766403917383,-0.00137596197094737,-4.68355601523917e-05,1.65854084910322e-05,-0.000212160453375715,0.000456656344682837,0.000102608865848452,-0.000754634308167134,0.00021790067334956,0.000887995797035484 +2.832,0.560414906246263,-0.292766370555485,-0.00137638777616499,-4.60306704697099e-05,1.68927220683956e-05,-0.000213364451096681,0.000347639750319928,0.000193697016759308,-0.000450135568576259,0.0002189259593437,0.000600827729387908 +2.834,0.560414814866582,-0.292766336346495,-0.00137681542875176,-4.5445001151112e-05,1.73601965580694e-05,-0.00021396099565002,0.000240179875987678,0.000260670148660712,-0.00015429757124763,0.000219421813440932,0.000386578633301391 +2.836,0.560414724466258,-0.292766301114698,-0.00137724362014759,-4.50699509657592e-05,1.79354026630385e-05,-0.000213981641381672,0.000139202843696395,0.000300515182183325,0.000120230947593669,0.00021941085204961,0.00035233831352141 +2.838,0.560414634586778,-0.292766264604884,-0.00137767135531729,-4.48881897763264e-05,1.85622572868027e-05,-0.000213480071859645,0.236467953773633,-0.297853684622789,0.191454551039249,0.000218936630233902,0.425780172998816 +2.84,0.560414544913499,-0.292766226865669,-0.00137809754043502,0.000900801864128774,-0.00117347933582812,0.000551836562775326,0.15487679095455,-0.219647561541802,0.43459302254134,0.00157893044243537,0.510982354792469 +2.842,0.560418237794234,-0.292770958522227,-0.00137546400906619,0.000574618974041873,-0.000860027988880407,0.00152489201830572,-0.436531349935764,0.532885026383044,0.213701438558922,0.00184258806423983,0.721245017772845 +2.844,0.560416843389395,-0.292769666977625,-0.0013719979723618,-0.000845323535614283,0.00095806076970406,0.00140664231701101,-0.368619636433031,0.530929780889754,-0.207372174130388,0.00190028811665902,0.678800476725839 +2.846,0.560414856500092,-0.292767126279148,-0.00136983743979814,-0.000899859571690253,0.00126369113467861,0.000695403321784165,0.0417986657508251,0.0463593530924954,-0.354107144648341,0.00170007303154198,0.359566666932162 +2.848,0.560413243951109,-0.292764612213086,-0.00136921635907467,-0.000678128872610983,0.00114349818207404,-9.78626158235073e-06,0.116522528077756,-0.09764825491948,-0.314635879379923,0.00132948961304368,0.34944014914092 +2.85,0.560412143984601,-0.29276255228642,-0.00136987658484447,-0.000433769459379229,0.000873098115000691,-0.000563140195735528,0.351039664524266,-0.447241070702236,-0.0424834452365449,0.0011258699491331,0.570138811616397 +2.852,0.560411508873271,-0.292761119820626,-0.00137146891985761,0.000726029785486081,-0.000645466100734903,-0.00017972004252853,0.250150751730793,-0.383717825340468,0.281196907375366,0.000987949912848492,0.537481598562191 +2.854,0.560415048103743,-0.292765134150823,-0.00137059546501458,0.000566833547543943,-0.00066177318636118,0.000561647433765938,-0.364745333290838,0.376407544692286,0.12739918844179,0.00103667345903314,0.539399991726313 +2.856,0.560413776207461,-0.292763766913371,-0.00136922233012254,-0.000732951547677273,0.000860164078034242,0.00032987671123863,-0.317372086312828,0.397185849276143,-0.240829809298841,0.00117725054979839,0.562566117965421 +2.858,0.560412116297553,-0.292761693494511,-0.00136927595816963,-0.000702654797707369,0.000926970210743393,-0.000401671803429426,0.0759697639449163,-0.055821372951098,-0.346873685379278,0.00123058432218889,0.35945623422135 +2.86,0.56041096558827,-0.292760059032528,-0.00137082901733626,-0.000429072491897608,0.000636878586229849,-0.00105761803027848,0.135259405696641,-0.16470732730825,-0.277671759320828,0.00130700934766033,0.350036021607433 +2.862,0.560410400007585,-0.292759145980166,-0.00137350643029074,-0.000161617174920803,0.000268140901510394,-0.00151235884071274,0.119433973100324,-0.181686272037601,-0.176806896799546,0.00154442510902088,0.280241064323798 +2.864,0.560410319119571,-0.292758986468922,-0.00137687845269911,4.86634005036901e-05,-8.98665019205546e-05,-0.00176484561747667,0.0895665476507988,-0.165863739576277,-0.083574809652681,0.00176780207270006,0.206198194397506 +2.866,0.560410594661187,-0.292759505446174,-0.00138056581276065,0.000196649015682393,-0.000395314056794715,-0.00184665807932346,0.0598624629033483,-0.133820672765239,-0.0078119801443649,0.00189870748163033,0.146807744884157 +2.868,0.560411105715633,-0.29276056772515,-0.00138426508501641,0.000288113252117083,-0.000625149192981511,-0.00179609353805413,0.0337145763043555,-0.0935116794276157,0.0492406960154317,0.00192347933624739,0.11093129850876 +2.87,0.560411747114196,-0.292762006042946,-0.00138775018691287,0.000331507320899815,-0.000769360774505178,-0.00164969529526174,0.0119292158443085,-0.0508846230429238,0.0892124241581164,0.00185021827695169,0.103394427688576 +2.872,0.560412431744917,-0.292763645168248,-0.00139086386619745,0.000335830115494317,-0.000828687685153206,-0.00143924384142166,-0.00539652626058151,-0.0106964979651458,0.114675479860257,0.0016943812974262,0.115299623787677 +2.874,0.560413090434657,-0.292765320793686,-0.00139350716227855,0.000309921215857489,-0.000812146766365761,-0.00119099337582071,-0.0184262880162378,0.0236165579037272,0.128325066967548,0.00147448253682631,0.131774780248358 +2.876,0.56041367142978,-0.292766893755313,-0.00139562783970074,0.000262124963429366,-0.000734221453538297,-0.000925943573551468,-0.0274620727547247,0.0500100122424739,0.132615503846585,0.00121043882153953,0.144367720162652 +2.878,0.560414138934511,-0.2927682576795,-0.00139721093657276,0.00020007292483859,-0.000612106717395866,-0.000660531360434368,-0.0328998809098757,0.0677154991073069,0.129637203897907,0.000922499586369494,0.149911959555278 +2.88,0.56041447172148,-0.292769342182183,-0.00139826996514247,0.000130525439789864,-0.000463359457109069,-0.000407394757959839,-0.0352034694242608,0.0769941065105471,0.121121622059274,0.000630642026618829,0.147776263409019 +2.882,0.56041466103627,-0.292770111117329,-0.0013988405156046,5.92590471415466e-05,-0.000304130291353677,-0.000176044872197273,-0.0348811220601818,0.0788346175527309,0.108503479350624,0.000356368721711026,0.13858064306408 +2.884,0.560414708757668,-0.292770558703348,-0.00139897414463126,-8.99904845086396e-06,-0.000148020986898145,2.6619159442659e-05,-0.0324632345935493,0.0746558809563978,0.0929983390175053,0.00015066444532389,0.123596331748424 +2.886,0.560414625040077,-0.292770703201276,-0.00139873403896683,-7.05938912326509e-05,-5.50676752808509e-06,0.000195948483872749,-0.0284806364325707,0.0660514711224579,0.0756683774189372,0.000208349778737594,0.104401373699104 +2.888,0.560414426382103,-0.292770580730418,-0.00139819035069577,-0.000122921594181147,0.000116184897591687,0.000329292669118408,0.216301284258757,-0.243517423125644,0.251895014703566,0.000370192261776973,0.411750020486036 +2.89,0.5604141333537,-0.292770238461686,-0.00139741686829035,0.000794611245802378,-0.000979576460030661,0.00120352854268701,0.139928338124817,-0.178165638960864,0.479901109645512,0.00174340414880318,0.530686357235326 +2.892,0.560417604827087,-0.292774499036258,-0.00139337623652502,0.000436791758318122,-0.00059647765825177,0.00224889710770046,-0.453765859088905,0.561691546149822,0.236856402917144,0.00236730032694452,0.759935394289356 +2.894,0.560415880520733,-0.292772624372319,-0.00138842127985955,-0.00102045219055324,0.00126718972456863,0.00215095415435559,-0.380711052891391,0.547862503304935,-0.206102442814638,0.00269697909621058,0.69826387938614 +2.896,0.560413523018324,-0.29276943027736,-0.0013847724199076,-0.00108605245324744,0.00159497235496797,0.0014244873364419,0.0400203676170773,0.0515694514591213,-0.368244937956792,0.00239846011348953,0.373985791814077 +2.898,0.56041153631092,-0.292766244482899,-0.00138272333051379,-0.000860370720084935,0.00147346753040511,0.000677974402528424,0.120887993663998,-0.102825755354807,-0.340193391804889,0.00183602658739502,0.375391244975303 +2.9,0.560410081535444,-0.292763536407238,-0.00138206052229749,-0.00060250047859145,0.00118366933354874,6.37137692223455e-05,0.362747640078597,-0.460088939321922,-0.0731258115024487,0.001329714015221,0.59043633592188 +2.902,0.560409126309006,-0.292761509805565,-0.0013824684754369,0.000590619840229455,-0.000366888226882578,0.000385471156518629,0.264081678399974,-0.401809873276648,0.248045240440301,0.000795001118996394,0.541033038209526 +2.904,0.560412444014805,-0.292765003960146,-0.00138051863767141,0.000453826235008447,-0.000423570159557851,0.00105589473098355,-0.357279946877619,0.355618805659984,0.0863703404898815,0.00122486065108184,0.5114425980462 +2.906,0.560410941613946,-0.292763204086203,-0.00137824489651296,-0.000838499947281023,0.00105558699575736,0.000730952518478156,-0.309651678014055,0.375679279417811,-0.288633933461478,0.00153350502166504,0.565975821238196 +2.908,0.560409090015016,-0.292760781612163,-0.0013775948275975,-0.000784780477047774,0.0010791469581134,-9.86410028623596e-05,0.0888089033146409,-0.0777063487410189,-0.39491782949895,0.00133797182399572,0.412171554087338 +2.91,0.560407802492038,-0.292758887498371,-0.00137863946052441,-0.000483264334022459,0.000744761600793286,-0.000848718799517644,0.14908273460873,-0.186224892541331,-0.322614268664228,0.00122822549200422,0.401229782925198 +2.912,0.56040715695768,-0.29275780256576,-0.00138098970279557,-0.000188449538612856,0.000334247387948072,-0.00138909807751927,0.13242441500999,-0.201307391575755,-0.216883223232329,0.00144112040229859,0.324190104897446 +2.914,0.560407048693883,-0.292757550508819,-0.00138419585283449,4.64333260175031e-05,-6.04679655097362e-05,-0.00171625169244696,0.100926415100288,-0.182590604493743,-0.117838035563686,0.00171794420760541,0.2396064956129 +2.916,0.560407342690984,-0.292758044437622,-0.00138785470956536,0.000215256121788298,-0.0003961150300269,-0.00186045021977402,0.0692188470291509,-0.147137231044925,-0.0358018253827918,0.00191429290737801,0.166500403135705 +2.918,0.56040790971837,-0.292759134968939,-0.00139163765371358,0.000323308714134107,-0.000649016889689435,-0.00185945899397813,0.0409092678135824,-0.103260178244829,0.0276278958408898,0.00199583045322576,0.114453192322418 +2.92,0.56040863592584,-0.292760640505181,-0.00139529254554127,0.000378893193042628,-0.000809155743006217,-0.00174993863641046,0.016953798726016,-0.0571790964749851,0.0737797638651961,0.00196483543824313,0.0948700897066194 +2.922,0.560409425291142,-0.292762371591911,-0.00139863740825923,0.000391123909038171,-0.000877733275589376,-0.00156433993851734,-0.00243337552885414,-0.0138555483683578,0.104986182765561,0.00183590660398033,0.10592448304682 +2.924,0.560410200421477,-0.292764151438283,-0.00140154990529534,0.000369159690927212,-0.000864577936479648,-0.00132999390534821,-0.017329086235418,0.0231322276021683,0.123768574247958,0.00162869815310151,0.127098611931702 +2.926,0.560410901929906,-0.292765829903657,-0.00140395738388062,0.000321807564096499,-0.000785204365180702,-0.00106926564152551,-0.0279751436876862,0.0516577701760445,0.132460253726534,0.00136507692660726,0.144902907842477 +2.928,0.560411487651733,-0.292767292255744,-0.00140582696786144,0.000257259116176467,-0.00065794685577547,-0.000800152890442079,-0.034729600847938,0.0709226148226659,0.133076512507518,0.00106738979101523,0.154743402604134 +2.93,0.560411930966371,-0.29276846169108,-0.00140715799544239,0.000182889160704747,-0.000501513905890038,-0.000536959591495439,-0.0380391873833207,0.0811994425101158,0.127321002808475,0.000757159326564309,0.155727219832927 +2.932,0.560412219208376,-0.292769298311367,-0.00140797480622742,0.000105102366643184,-0.000333149085735007,-0.000290868879208178,-0.0384148231905023,0.0835208190282098,0.116645784614677,0.000454576204493692,0.148518230935714 +2.934,0.560412351375837,-0.292769794287423,-0.00140832147095922,2.92298679427372e-05,-0.000167430629777199,-7.03764530367301e-05,-0.0364051629814232,0.0793732017057013,0.102319002760927,0.000183957185533945,0.134516242018235 +2.936,0.560412336127848,-0.292769968033886,-0.00140825631203957,-4.05182852825092e-05,-1.56562789122017e-05,0.000118407131835529,-0.0325705228135242,0.0704327801984149,0.085481841992016,0.000126123349864836,0.11545025246041 +2.938,0.560412189302696,-0.292769856912539,-0.00140784784243188,-0.00010105222331136,0.000114300491016461,0.000271550914931334,-0.0274589611465314,0.058362044190463,0.0671832816193442,0.000311474001295161,0.0931327873440948 +2.94,0.560411931918954,-0.292769510831922,-0.00140717010837985,-0.000150354129868635,0.000217791897849651,0.000387140258312907,-0.0215847454979045,0.0446702929438047,0.048389398176786,0.000468953360947644,0.0693027428447545 +2.942,0.560411587886177,-0.292768985744947,-0.00140629928139863,-0.000187391205302978,0.00029298166279168,0.000465108507638478,-0.0154100446569938,0.0306315246050015,0.0299729361729478,0.000580757817368628,0.0455426907284248 +2.944,0.560411182354133,-0.292768338905271,-0.00140530967434929,-0.00021199430849661,0.000340317996269656,0.000507032003004698,-0.00933104184197562,0.0172481575723415,0.01269326739637,0.000646404964005464,0.0233599297664349 +2.946,0.560410739908943,-0.292767624472962,-0.00140427115338661,-0.00022471537267088,0.000361974293081046,0.000515881577223958,0.239921604527904,-0.292780476446319,0.195543223163209,0.00066907113918119,0.42605156475764 +2.948,0.560410283492642,-0.292766891008099,-0.0014032461480404,0.000747692109615005,-0.00083080390951562,0.00128920489565754,0.162361453157067,-0.224648606193117,0.432395699041104,0.00170626137793549,0.513609071459052 +2.95,0.560413730677381,-0.2927709476886,-0.00139911433380398,0.000424730439957388,-0.000536620131691423,0.00224546437338838,-0.442370822119342,0.520757684318445,0.190833540537546,0.00234743846873978,0.709434951375633 +2.952,0.560411982414402,-0.292769037488626,-0.00139426429054684,-0.00102179117886236,0.00125222682775816,0.00205253905780772,-0.372233232799612,0.514121417258261,-0.250709511478465,0.00261247886597852,0.682446826082343 +2.954,0.560409643512666,-0.292765938781289,-0.00139090417757275,-0.00106420249124106,0.00151986553734162,0.00124262632747452,0.0516625222879429,0.0244447484823439,-0.405364781345951,0.00223307823053632,0.409374117273146 +2.956,0.560407725604437,-0.292762958026476,-0.00138929378523694,-0.000815141089710591,0.00135000582168754,0.000431079932423916,0.375691136263178,-0.421664182938263,-0.168676795081826,0.00163487021590811,0.589403405350518 +2.958,0.560406382948307,-0.292760538758002,-0.00138917985784305,0.000438562053811653,-0.000166791194411431,0.000567919147147211,0.29177386339646,-0.395835823129714,0.163838432645433,0.000736673696607325,0.518325205103694 +2.96,0.560409479852653,-0.292763625191254,-0.00138702210864836,0.000351954363875251,-0.000233337470831318,0.00108643366300565,-0.33823858074794,0.344251976772125,0.0156478055322179,0.0011656141529926,0.482866042330448 +2.962,0.560407790765763,-0.292761472107886,-0.00138483412319103,-0.000914392269180108,0.00121021671267707,0.000630510369276082,-0.294286796348464,0.353935480514044,-0.345690177775727,0.00164264452616624,0.575653317442333 +2.964,0.560405822283576,-0.292758784324403,-0.00138450006717125,-0.000825192821518605,0.00118240445122486,-0.000296327048097261,0.106032497192154,-0.105673792522021,-0.435067203405185,0.0014720167113169,0.46010141530493 +2.966,0.560404489994476,-0.292756742490081,-0.00138601943138342,-0.00049026228041149,0.000787521542588986,-0.00110975844434466,0.164248614778484,-0.216181185928171,-0.347044750818002,0.00144641318039843,0.440626794097102 +2.968,0.560403861234454,-0.292755634238233,-0.00138893910094863,-0.00016819836240467,0.000317679707512175,-0.00168450605136927,0.144281174958849,-0.228805437773455,-0.228337395453276,0.00172243192108725,0.353987220058287 +2.97,0.560403817201027,-0.292755471771251,-0.00139275745558889,8.68624194239053e-05,-0.000127700208504833,-0.00202310802615776,0.1093078179637,-0.204670824826419,-0.119250316403703,0.0020289944575243,0.260881167517886 +2.972,0.560404208684132,-0.292756145039067,-0.00139703153305326,0.000269032909450128,-0.000501003591793503,-0.00216150731698408,0.0743511202536128,-0.162301483176696,-0.02977861667669,0.00223506089105709,0.180987918203122 +2.974,0.560404893332665,-0.292757475785618,-0.00140140348485683,0.000384266900438357,-0.000776906141211619,-0.00214222249286452,0.0431701998523936,-0.111207218170261,0.0389528566563726,0.00231092219946054,0.125491181244563 +2.976,0.560405745751734,-0.292759252663632,-0.00140560042302472,0.000441713708859703,-0.000945832464474549,-0.00200569589035859,0.0167895722463784,-0.0584892514698953,0.0887220386880382,0.00226108957276131,0.107584768544096 +2.978,0.5604066601875,-0.292761259115476,-0.00140942626841827,0.00045142518942387,-0.0010108631470912,-0.00178733433811237,-0.00454511414615943,-0.00967313174352057,0.122224195371438,0.00210242551354123,0.12269059244508 +2.98,0.560407551452491,-0.29276329611622,-0.00141274976037717,0.000423533252275065,-0.000984524991448631,-0.00151679910887284,-0.0209039611800965,0.0313832090592658,0.142247600722761,0.00185724242123829,0.147160664972875 +2.982,0.560408354320509,-0.292765197215442,-0.00141549346485376,0.000367809344703484,-0.000885330310854137,-0.00121834393522133,-0.0325428993405707,0.0625013836588749,0.151312920087729,0.0015503081686745,0.166916335456539 +2.984,0.56040902268987,-0.292766837437463,-0.00141762313611805,0.000293361654912782,-0.000734519456813131,-0.000911547428521924,-0.039852407915375,0.0829933317764152,0.151570264575462,0.00120685484108701,0.177340499151996 +2.986,0.560409527767129,-0.292768135293269,-0.00141913965456784,0.000208399713041984,-0.000553356983748476,-0.000612062876919477,-0.0433269574939831,0.0933419758049335,0.144832039849878,0.000851031936628785,0.17766898845868 +2.988,0.560409856288722,-0.292769050865398,-0.00142007138762573,0.00012005382493685,-0.000361151553593397,-0.000332219269122413,-0.0435367544238118,0.0948375258533194,0.13265271338065,0.000505186112557662,0.168778990585283 +2.99,0.560410007982429,-0.292769579899483,-0.00142046853164433,3.4252695346737e-05,-0.000174006880335198,-8.14520233968773e-05,-0.0410969058090015,0.0892320016140922,0.116407618745706,0.000195156536293176,0.152322156895105 +2.992,0.560409993299504,-0.29276974689292,-0.00142039719571932,-4.43337982991565e-05,-4.22354713702777e-06,0.000133411205860412,0.210007743792206,-0.219490358829149,0.298795233254385,0.000140648049652948,0.426096070724882 +2.994,0.560409830647235,-0.292769596793672,-0.00141993488682089,0.000874283670515562,-0.0010519683156518,0.00111372890962066,0.132899210761317,-0.15526679028946,0.531300044564509,0.00176391648265735,0.569253646226374 +2.996,0.560413490434186,-0.292773954766182,-0.00141594228008084,0.000487263044746111,-0.000625290708294867,0.00225861138411845,-0.476778257332832,0.582776259323152,0.275122020948134,0.00239368734991114,0.801646930703663 +2.998,0.560411779699414,-0.292772097956505,-0.00141090044128442,-0.00103282935881577,0.00127913672164082,0.0022142169934132,-0.4034191069327,0.566515547181789,-0.184417168602908,0.00275784048324075,0.719511315486124 +3,0.56040935911675,-0.292768838219296,-0.00140708541210718,-0.00112641338298469,0.00164077148043229,0.00152094270970682,0.0297426021103608,0.0649327919211017,-0.354302228157583,0.00250483629935716,0.361429050747712 +3.002,0.560407274045882,-0.292765534870583,-0.00140481667044559,-0.000913858950374324,0.00153886788932522,0.000797008080782868,0.116082610641943,-0.0957746868687768,-0.330828220110324,0.00195920250173603,0.363449135863089 +3.004,0.560405703680949,-0.292762682747738,-0.00140389737978405,-0.000662082940416919,0.00125767273295718,0.000197629829265522,0.120244104812039,-0.159709254710094,-0.262629990676818,0.00143497458954179,0.33006090768979 +3.006,0.560404625714121,-0.292760504179651,-0.00140402615112853,-0.000432882531126166,0.000900030870484846,-0.000253511881924406,0.105552388253438,-0.183107252152425,-0.191792599775822,0.00103039367615332,0.285401425689475 +3.008,0.560403972150824,-0.292759082624257,-0.00140491142731175,-0.000239873387403166,0.000525243724347479,-0.000569540569837767,0.0869887359228326,-0.181114758690537,-0.129895912683204,0.000811046652568031,0.239254141290775 +3.01,0.560403666220571,-0.292758403204754,-0.00140630431340788,-8.49275874348353e-05,0.000175571835722699,-0.000773095532657225,0.0683191061640053,-0.16132368503563,-0.0794230413962356,0.00079731729394332,0.192356052998475 +3.012,0.560403632440475,-0.292758380336914,-0.00140800380944238,3.34030372528548e-05,-0.000120051015795042,-0.00088723273542271,0.0506980828013369,-0.130207699986645,-0.03975966245736,0.000895940810599004,0.145276190390121 +3.014,0.56040379983272,-0.292758883408817,-0.00140985324434957,0.000117864743770513,-0.000345258964223882,-0.000932134182486665,0.0346305227411081,-0.0936738210784159,-0.00924948951024764,0.001000984507553,0.100297611721086 +3.016,0.56040410389945,-0.292759761372771,-0.00141173234617233,0.000171925128217287,-0.000494746300108706,-0.0009242306934637,0.26864894867723,-0.354530363944754,0.216962751758455,0.0010623250566207,0.494910974049658 +3.018,0.560404487533233,-0.292760862394018,-0.00141355016712343,0.00119246053847943,-0.0017633804200029,-6.4283175452845e-05,0.173289585271574,-0.242357391690151,0.489086414559753,0.00212969598021092,0.572688315383999 +3.02,0.560408873741604,-0.292766814894451,-0.00141198947887414,0.000865083469303584,-0.00146417586686931,0.00103211496477531,-0.45696939451889,0.539855113175502,0.264586168146827,0.00198933196789726,0.755162506433758 +3.022,0.56040794786711,-0.292766719097485,-0.00140942170726432,-0.000635417039596131,0.000396040032699107,0.000994061497134462,-0.39868261502568,0.561439811953834,-0.168280492168597,0.0012444921782778,0.708858811058292 +3.024,0.560406332073445,-0.29276523073432,-0.0014080132328856,-0.000729646990799137,0.000781583380946026,0.000358992996100926,0.0244037396956997,0.089473360585096,-0.314131516491664,0.00112788886145878,0.327535699457141 +3.026,0.560405029279147,-0.292763592763961,-0.00140798573527992,-0.000537802080813332,0.000753933475039492,-0.000262464568832193,0.101535497371019,-0.0498682657806836,-0.271013654835547,0.00096256657577777,0.293674483511377 +3.028,0.560404180865122,-0.29276221500042,-0.00140906309116093,-0.000323505001315061,0.000582110317823292,-0.000725061623241263,0.0984439738060948,-0.0997560265711404,-0.188378588390596,0.000984490866127993,0.234795599149623 +3.03,0.560403735259142,-0.29276126432269,-0.00141088598177289,-0.000144026185588952,0.00035490936875493,-0.00101597892239458,0.0788035750820536,-0.115691502867304,-0.108531065972847,0.00108577961526056,0.177125716830196 +3.032,0.56040360476038,-0.292760795362945,-0.00141312700685051,-8.29070098684603e-06,0.000119344306354074,-0.00115918588713265,0.0575541718519922,-0.111840848800865,-0.0428744461409418,0.00116534274791132,0.132887457233401 +3.034,0.560403702096338,-0.292760786945465,-0.00141552272532142,8.61905018190167e-05,-9.24540264485295e-05,-0.00118747670695834,0.0382378563673624,-0.0946911023723405,0.00658315460998204,0.0011941848597177,0.10233218678734 +3.036,0.560403949522387,-0.29276116517905,-0.00141787691367834,0.000144660724482604,-0.000259420103135288,-0.00113285326869272,0.0216962856153246,-0.0696057713481245,0.041152453651369,0.00117114561157285,0.0837210645894879 +3.038,0.560404280739236,-0.292761824625877,-0.00142005413839619,0.000172975644280315,-0.000370877111841028,-0.00102286689235287,0.00807921287510059,-0.0414492144322486,0.0633313280828245,0.00110169282700458,0.0761194336189259 +3.04,0.560404641424964,-0.292762648687498,-0.00142196838124775,0.000176977575983006,-0.000425216960864283,-0.000879527956361425,-0.00268104515671607,-0.014220465797965,0.0758279724228163,0.000992824230278845,0.0771964445580159 +3.042,0.56040498864954,-0.292763525493721,-0.00142357225022163,0.000162251463653451,-0.000427758975032888,-0.000719555002661603,-0.0107450930306174,0.00923063454491555,0.0810726190686102,0.000852679705419458,0.0823008578386787 +3.044,0.560405290430819,-0.292764359723398,-0.0014248466012584,0.000133997203860536,-0.00038829442268462,-0.000555237480086984,-0.0163286122678574,0.0272472839013548,0.081028706380888,0.00069066378841211,0.0870326910784403 +3.046,0.560405524638355,-0.292765078671411,-0.00142579320014198,9.69370145820213e-05,-0.000318769839427468,-0.000395440177138051,-0.0196899031731923,0.0392260393160259,0.077185170505034,0.000517091799412505,0.0887914691470035 +3.048,0.560405678178877,-0.292765634802756,-0.00142642836196695,5.52375911677671e-05,-0.000231390265420517,-0.000246496798066847,-0.0211215221562755,0.0453788824607281,0.0706343175086928,0.000342568705322892,0.0865711758121688 +3.05,0.56040574558872,-0.292766004232473,-0.00142677918733425,1.24509259569194e-05,-0.000137254309584556,-0.000112902907103279,-0.02093944982684,0.0464666575390737,0.0621773989352771,0.000178159584331266,0.0803967646131416 +3.052,0.560405727982581,-0.292766183819994,-0.00142687997359536,-2.8520208139593e-05,-4.55236352642218e-05,2.21279767426141e-06,-0.0194712487244786,0.0435507721552319,0.0524288635474906,5.37652314562378e-05,0.0708843072554766 +3.054,0.560405631507887,-0.292766186327014,-0.00142677033614355,-6.54340689409949e-05,3.6948779036372e-05,9.68125470866831e-05,-0.0170442524746739,0.0377909613533122,0.041898797160933,0.000122554065309417,0.0589421114820378 +3.056,0.560405466246305,-0.292766036024878,-0.00142649272340702,-9.66972180382885e-05,0.000105640210149027,0.000169807986317993,-0.0139735990764555,0.030299173482684,0.0310437466410212,0.000222137250802396,0.0455742865045106 +3.058,0.560405244719015,-0.292765763766174,-0.00142609110419828,-0.000121328465246817,0.000158145472967108,0.000220987533650768,-0.0105506418879297,0.022047392130714,0.0202882119272954,0.000297600532808978,0.0317649978312554 +3.06,0.560404980932444,-0.292765403442986,-0.00142560877327241,-0.000138899785590007,0.000193829778671883,0.000250960834027175,-0.00703319129324863,0.013820509639495,0.0100258597222902,0.000346185605929184,0.0184659180555379 +3.062,0.560404689119873,-0.292764988447059,-0.00142508726086217,-0.000149461230419812,0.000213427511525088,0.000261090972539929,-0.00363857300539338,0.00620339549173286,0.000608720801195672,0.000368861028052899,0.00721746978907687 +3.064,0.560404383087522,-0.29276454973294,-0.00142456440938225,-0.000153454077611581,0.000218643360638815,0.000253395717231958,-0.000539374878094633,-0.000408962787246114,-0.0076688297812738,0.000368188080467788,0.00769864442837983 +3.066,0.560404075303562,-0.292764113873616,-0.00142407367799324,-0.00015161872993219,0.000211791660376104,0.000230415653414834,0.00213801944898284,-0.00578787360400178,-0.0145851875030592,0.000347757559241639,0.0158366127224076 +3.068,0.560403776612603,-0.292763702566298,-0.00142364274676859,-0.00014490199981565,0.000195491866222808,0.000195054967219721,0.0043123621062957,-0.00984140998208648,-0.020001455498797,0.000311865515161483,0.0227048021229361 +3.07,0.560403495695563,-0.292763331906151,-0.00142329345812436,-0.000134369281507007,0.000172426020447758,0.000150409831419645,0.00594410787951523,-0.0125838591595555,-0.0238643640525893,0.000265346855507741,0.0276259624531953 +3.072,0.560403239135477,-0.292763012862217,-0.00142304110744292,-0.000121125568297589,0.000145156429584586,9.95975110093637e-05,0.00703036568544612,-0.0141072208567643,-0.0262024034101999,0.000213685414908035,0.0305778623589597 +3.074,0.56040301119329,-0.292762751280433,-0.00142289506808033,-0.000106247818765226,0.000115997137020707,4.56002177788572e-05,0.00759868921951569,-0.0145562714867804,-0.0271160931998262,0.000163778248405727,0.0317002780409463 +3.076,0.560402814144202,-0.292762548873668,-0.0014228587065718,-9.07308114195259e-05,8.6931343637464e-05,-8.86686178994122e-06,0.00770030988972435,-0.0141077328326411,-0.0267639975251587,0.000125967296888765,0.0312191361443854 +3.078,0.560402648270044,-0.292762403555059,-0.00142293053552749,-7.54465792063285e-05,5.95662056901424e-05,-6.14557723217778e-05,0.0074032133617896,-0.0129534005154086,-0.0253462965841416,0.000114092642733541,0.0294114417110763 +3.08,0.560402512357885,-0.292762310608846,-0.00142310452966109,-6.11179579723675e-05,3.51177415758297e-05,-0.000110252048126508,0.00678553274680026,-0.0112868157667312,-0.0230878049395713,0.00013085936984484,0.0265797366754775 +3.082,0.560402403798212,-0.292762263084092,-0.00142337154371999,-4.83044482191275e-05,1.44189426232177e-05,-0.000153806992080063,0.00592956211908912,-0.00929300522645169,-0.0202218660609945,0.000161857395372725,0.0230313594920447 +3.084,0.560402319140092,-0.292762252933075,-0.00142371975762941,-3.7399709496011e-05,-2.05427932997715e-06,-0.000191139512370486,0.00491660120255365,-0.00714082420971705,-0.016976203499365,0.000194774925293732,0.0190618945288995 +3.086,0.560402254199374,-0.29276227130121,-0.00142413610176947,-2.86380434089128e-05,-1.41443542156505e-05,-0.000221711806077523,0.00382277421523413,-0.00497754144151984,-0.0135613992613761,0.000224000725982364,0.0149432617399669 +3.088,0.560402204587918,-0.292762309510492,-0.00142460660485372,-2.21086126350744e-05,-2.19644450960565e-05,-0.000245385109415991,0.00271585418737396,-0.00292534771059726,-0.0101623385678762,0.000247356179474302,0.0109181797183925 +3.09,0.560402165764924,-0.29276235915899,-0.00142511764220714,-1.7774626659417e-05,-2.58457450580396e-05,-0.000262361160349028,0.00165311458272254,-0.00107957328146502,-0.00693264169855656,0.000264229669700765,0.00720831375664435 +3.092,0.560402133489412,-0.292762412893472,-0.00142565604949511,-1.54961543041843e-05,-2.62827382219166e-05,-0.000273115676210217,0.000680100357974832,0.000491610314956591,-0.00399185418314267,0.000274814638835752,0.00407910738007261 +3.094,0.560402103780307,-0.292762464289943,-0.00142621010491198,-1.50542252275176e-05,-2.38793037982132e-05,-0.000278328577081599,-0.000169747577105639,0.00174619173634593,-0.00142505715387818,0.000279756407732434,0.00226026275283106 +3.096,0.560402073272511,-0.292762508410687,-0.00142676936380344,-1.61751446126068e-05,-1.92979712765329e-05,-0.00027881590482573,-0.000874780491100234,0.00266625048775393,0.000715561352358784,0.000279950630973425,0.00289588684517319 +3.098,0.560402039079728,-0.292762541481828,-0.00142732536853128,-1.85533471919186e-05,-1.32143018471975e-05,-0.000275466331672164,-0.00142425111288036,0.00325503687545469,0.00240762140085725,0.000276406483914996,0.00429189900894424 +3.1,0.560401999059122,-0.292762561267895,-0.00142787122913013,-2.18721490641282e-05,-6.27782377471408e-06,-0.000269185419222301,-0.00181702071444522,0.00353344857539905,0.00365444331393293,0.000270145501346803,0.0053983126110352 +3.102,0.560401951591132,-0.292762566593123,-0.00142840211020817,-2.58214300496995e-05,9.19492454398706e-07,-0.000260848558416432,-0.00205998126195927,0.00353614939413437,0.00448031807834259,0.000262125088734589,0.00606804131663452 +3.104,0.560401895773402,-0.292762557589925,-0.00142891462336379,-3.01120741119653e-05,7.86677380182343e-06,-0.00025126414690893,-0.00216634124527992,0.00330756661989783,0.00492555101219704,0.00025318430966244,0.00631617638368488 +3.106,0.560401831142835,-0.292762535126028,-0.00142940716679581,-3.44867950308192e-05,1.41497589339901e-05,-0.000241146354367644,-0.00215387701424374,0.00289798950114938,0.00504156761563928,0.000244010489393782,0.00620120418663362 +3.108,0.560401757826222,-0.292762500990889,-0.00142987920878127,-3.87275821689403e-05,1.9458731806421e-05,-0.000231097876446373,-0.00204325207447953,0.00235994860112165,0.00488634349215393,0.000235126979230775,0.00579832641053572 +3.11,0.560401676232507,-0.292762457291101,-0.00143033155830159,-4.26598033287373e-05,2.35895533384767e-05,-0.000221600980399028,0.252592755413394,-0.295891916954338,0.213954199818761,0.000226899361745611,0.443994961938004 +3.112,0.560401587187008,-0.292762406632676,-0.00143076561270286,0.000971643439484637,-0.00116410893601093,0.00062471892282867,0.42335820010092,-0.515742619860981,0.68418816650921,0.00163997387812558,0.95568617376469 +3.114,0.560405562806265,-0.292767113726845,-0.00142783268261028,0.00165077299707494,-0.00203938092610545,0.00251515168563782,-0.295892943480424,0.31646114633313,0.699343007583979,0.0036345720589089,0.822666963841744 +3.116,0.560408190278997,-0.29277056415638,-0.00142070500596031,-0.000211928334437061,0.000101735649321588,0.00342209095316459,-0.866380704934998,1.07103838867597,0.00066594312703172,0.00343015601001049,1.37758455253445 +3.118,0.560404715092927,-0.292766706784247,-0.00141414431879762,-0.00181474982266505,0.00224477262859845,0.00251781545814594,-0.362802857513388,0.583280588637574,-0.605754598489472,0.00383036757429967,0.915849765022854 +3.12,0.560400931279706,-0.292761585065866,-0.00141063374412773,-0.00166313976449062,0.00243485800387188,0.000999072559206698,0.160054194307812,-0.0550405639676564,-0.717599106852573,0.00311331228016219,0.737289147453705 +3.122,0.560398062533869,-0.292756967352232,-0.00141014802856079,-0.0011745330454338,0.00202461037272783,-0.000352580969264354,0.244007600423701,-0.258987805843574,-0.590719986670942,0.00236704211539645,0.689611843933034 +3.124,0.560396233147524,-0.292753486624375,-0.00141204406800478,-0.000687109362795812,0.00139890678049759,-0.00136380738747707,0.224407266921633,-0.327480638807886,-0.420629966967587,0.00207099735564796,0.578387205384431 +3.126,0.560395314096418,-0.29275137172511,-0.0014156032581107,-0.000276903977747267,0.000714687817496284,-0.00203510083713471,0.182569167214708,-0.333189080208018,-0.262870349606626,0.00217464707634969,0.462003554845249 +3.128,0.560395125531613,-0.292750627873105,-0.00142018447135332,4.31673060630188e-05,6.61504596655149e-05,-0.00241528878590358,0.138301831514864,-0.299604412161424,-0.132066122785108,0.00241658006673445,0.355431654716416 +3.13,0.560395486765642,-0.292751107123271,-0.00142526441325432,0.00027630334831219,-0.000483729831149415,-0.00256336532827514,0.0968482261054502,-0.241006582905878,-0.0299586632333468,0.00262320031565176,0.261459888714252 +3.132,0.560396230745007,-0.29275256279243,-0.00143043793266642,0.00043056021048482,-0.000897875871957997,-0.00253512343883696,0.0598985662736417,-0.169633199032654,0.0462274383954478,0.00272367656421199,0.185742392889439 +3.134,0.560397209006484,-0.292754698626759,-0.00143540490700966,0.000515897613406757,-0.00116226262728003,-0.00237845557469335,0.0281487541539671,-0.0959398530724074,0.100665789163658,0.00269704573247851,0.141881672093042 +3.136,0.56039829433546,-0.292757211842939,-0.0014399517549652,0.000543155227100689,-0.00128163528424763,-0.00213246028218233,0.00189997076405213,-0.0279708354984642,0.137522588036093,0.00254656503110375,0.140351130196843 +3.138,0.560399381627392,-0.292759825167896,-0.00144393474813839,0.000523497496462965,-0.00127414596927389,-0.00182836522254898,-0.0187913300614406,0.0289317641788411,0.160340716755941,0.00228919570304648,0.164010080524908 +3.14,0.560400388325446,-0.292762308426816,-0.00144726521585539,0.000467989906854926,-0.00116590822753226,-0.00149109741515857,-0.0340681355834315,0.0719828824741196,0.171886289692009,0.00194980205391165,0.189438828690159 +3.142,0.56040125358702,-0.292764488800806,-0.00144989913779903,0.000387224954129239,-0.000986214439377408,-0.00114082006378094,-0.0442502511369124,0.100522408872511,0.17424799990829,0.00155693047483246,0.20597379659377 +3.144,0.560401937225263,-0.292766253284573,-0.00145182849611052,0.000290988902307276,-0.00076381859204222,-0.000794105415525408,-0.0498100553372737,0.11545787049691,0.169035813377821,0.0011396037880694,0.210676689922462 +3.146,0.560402417542629,-0.292767544075174,-0.00145307555946113,0.000187984732780144,-0.000524382957389768,-0.000464676810269654,-0.0513401216747921,0.118703290578892,0.157584525989872,0.000725424209522705,0.203860643870493 +3.148,0.560402689164194,-0.292768350816403,-0.00145368720335159,8.56284156081077e-05,-0.000289005429726652,-0.000163767311565921,-0.0495162025548889,0.112688658349125,0.14111704828984,0.000343039496718047,0.187255465485042 +3.15,0.560402760056291,-0.292768700096893,-0.00145373062870739,-1.00800774394116e-05,-7.36283239932688e-05,9.97913828897078e-05,-0.0450584560635069,0.0999771138029957,0.120844783046622,0.000124422900441529,0.163184402860045 +3.152,0.560402648843884,-0.292768645329699,-0.00145328803782004,-9.46054086459202e-05,0.000110903025485332,0.000319611820620569,-0.0386932230492242,0.082996965716786,0.0980032949854033,0.00035128532603463,0.134127952553248 +3.154,0.560402381634657,-0.292768256484791,-0.00145245218142491,-0.000164852969636309,0.000258359538873876,0.000491804562831321,-0.0311176540854218,0.0638771866824649,0.0738364487858424,0.000579480699373791,0.102471579199068 +3.156,0.560401989432005,-0.292767611891543,-0.00145132081956871,-0.000219076024987608,0.000366411772215191,0.000614957615763939,-0.0229698004436396,0.0443656801019098,0.049549746155078,0.000748615228757949,0.0703640721345652 +3.158,0.560401505330557,-0.292766790837702,-0.00144999235096185,-0.000256732171410867,0.000435822259281515,0.000690003547451634,-0.0148060422255902,0.0258081003304266,0.0262511538409726,0.000855545057269587,0.0396787097450728 +3.16,0.56040096250332,-0.292765868602506,-0.0014485608053789,-0.000278300193889968,0.000469644173536898,0.000719962231127829,-0.00708585271014248,0.00916631973102431,0.0048937505315455,0.000903527676336985,0.0125769439971004 +3.162,0.560400392129781,-0.292764912261008,-0.00144711250203734,-0.000285075582251437,0.000472487538205612,0.000709578549577816,-0.00016413906345214,-0.0049402282507882,-0.0137692255817653,0.000898896144933636,0.0146295717614555 +3.164,0.560399822200991,-0.292763978652353,-0.00144572249118059,-0.000278956750143777,0.000449883260533745,0.000664885328800768,0.00570976541047761,-0.0161828941254438,-0.0292110466830822,0.000849873118185154,0.0338787947193996 +3.166,0.560399276302781,-0.292763112727966,-0.00144445296072214,-0.000262236520609527,0.000407755961703837,0.000592734362845487,0.0103870138185025,-0.0244697425447193,-0.0411383053872116,0.000765746003544424,0.0489797767083731 +3.168,0.560398773254908,-0.292762347628507,-0.00144335155372921,-0.000237408694869767,0.000352004290354868,0.000500332107251921,0.272092083794528,-0.327334030249259,0.163841988586564,0.000656202808874778,0.456098527345651 +3.17,0.560398326668001,-0.292761704710805,-0.00144245163229313,0.000826131814568586,-0.000901580159293202,0.00124810231719174,0.189772877794147,-0.251616327835713,0.424084122641748,0.00174731220817945,0.528367168412859 +3.172,0.560402077782167,-0.292765953949144,-0.00143835914446044,0.000521682816306823,-0.000654461020987984,0.00219666859781892,-0.454039656913595,0.502529554993052,0.1716871336193,0.00235070736534052,0.698687652346985 +3.174,0.560400413399266,-0.292764322554889,-0.00143366495790186,-0.000990026813085797,0.00110853806067901,0.00193485085166894,-0.389816670859355,0.505176152860997,-0.286250013152925,0.00243980686547252,0.699356169865797 +3.176,0.560398117674914,-0.292761519796901,-0.00143061974105377,-0.0010375838671306,0.00136624359045601,0.00105166854520722,0.0535753655883652,0.0193887507229928,-0.437628138632087,0.0020122645349879,0.441321460134345 +3.178,0.560396263063798,-0.292758857580527,-0.00142945828372103,-0.000775725350732336,0.00118609306357098,0.000184338297140596,0.138175807788687,-0.127737266545497,-0.389927929111965,0.00142917709994692,0.432958604284656 +3.18,0.560395014773511,-0.292756775424647,-0.00142988238786521,-0.000484880635975848,0.000855294524274019,-0.000508043171240646,0.136274476272846,-0.177283069367068,-0.297186176944318,0.00110668234748807,0.371913489046077 +3.182,0.560394323541254,-0.29275543640243,-0.00143149045640599,-0.000230627445640952,0.000476960786102709,-0.00100440641063668,0.114559642314105,-0.186843099478362,-0.203867005808128,0.00113556719215141,0.299325928591206 +3.184,0.560394092263729,-0.292754867581502,-0.00143390001350775,-2.66420667194289e-05,0.000107922126360571,-0.00132351119447316,0.0893060421031098,-0.172654283907974,-0.122660869348798,0.001328171249114,0.229849428490263 +3.186,0.560394216972987,-0.292755004713924,-0.00143678450118388,0.000126596722771488,-0.00021365634952919,-0.00149504988803187,0.0648022798199753,-0.14293136354343,-0.0565391162325734,0.00151553618683775,0.166809417655632 +3.188,0.56039459865062,-0.292755722206901,-0.00143988021305988,0.000232567052560473,-0.00046380332781315,-0.00154966765940345,0.0424339021559694,-0.104448915922567,-0.00501687406635059,0.00163421871713311,0.112851145829271 +3.19,0.560395147241197,-0.292756859927236,-0.0014429831718215,0.000296332331395366,-0.000631452013219457,-0.00151511738429727,0.0227982847808561,-0.0631789780006219,0.0336659245602638,0.00166797037858258,0.075131481594931 +3.192,0.560395783979945,-0.292758248014953,-0.00144594068259707,0.000323760191683897,-0.000716519239815638,-0.0014150039611624,0.00619884459041042,-0.0239363404617998,0.061570606379839,0.00161878247236942,0.0663499332248369 +3.194,0.560396442281964,-0.292759726004195,-0.00144864318766615,0.000321127709757007,-0.000727197375066657,-0.00126883495877791,-0.00723116652667776,0.00988130461482272,0.0805916716391587,0.00149729128124576,0.0815165473251992 +3.196,0.560397068490784,-0.292761156804454,-0.00145101602243218,0.000294835525577186,-0.000676994021356347,-0.00109263727460576,-0.0174925225832067,0.0363019894249194,0.0922885910661224,0.00131875134348842,0.100702566121728 +3.198,0.560397621624066,-0.29276243398028,-0.00145301373676457,0.00025115761942418,-0.000581989417366979,-0.000899680594513424,-0.0247052698645888,0.0545990647762839,0.0978906179258802,0.00110055304454897,0.114777965269636 +3.2,0.560398073121262,-0.292763484762123,-0.00145461474481023,0.000196014446118831,-0.000458597762251211,-0.00070107480290224,-0.0290942120603765,0.0650122113365902,0.0983763321464602,0.000860371692870881,0.121453544719281 +3.202,0.560398405681851,-0.292764268371329,-0.00145581803597618,0.000134780771182674,-0.000321940572020618,-0.000506175265927583,-0.0309688736183089,0.068442792364176,0.0945701073154849,0.000614837367139,0.12077662090593 +3.204,0.560398612244347,-0.292764772524411,-0.00145663944587394,7.2138951645595e-05,-0.000184826592794507,-0.0003227943736403,-0.0307007193833808,0.0661720523827124,0.0872284254185145,0.000378894583495708,0.113710478357058 +3.206,0.560398694237658,-0.2927650076777,-0.00145710921347074,1.1977893649151e-05,-5.7252362489768e-05,-0.000157261564253525,-0.0286995706158532,0.0596302709467144,0.0770981182429338,0.000167787075003993,0.101604893599247 +3.208,0.560398660155921,-0.292765001533861,-0.00145726849213096,-4.2659330817818e-05,5.36944909923509e-05,-1.44019006685647e-05,-0.0253900190039235,0.0502266407041706,0.0649399127831614,7.00737583665875e-05,0.0859334671343479 +3.21,0.560398523600334,-0.292764792899737,-0.00145716682107341,-8.95821823665432e-05,0.000143654200326915,0.000102498086879121,-0.0211889680662436,0.0392372299304333,0.0515222917888552,0.000197907439180537,0.0681401433187656 +3.212,0.560398301827192,-0.29276442691706,-0.00145685849978344,-0.000127415203082792,0.000210643410714084,0.000191687266486856,-0.0164862185847436,0.0277416825206211,0.0375970086721397,0.000312008475184721,0.0495472644390366 +3.214,0.560398013939522,-0.292763950326094,-0.00145640007200747,-0.000155527056705518,0.000254620930409399,0.00025288612156768,-0.0116293612587026,0.0165974692184489,0.0238660056084069,0.000391116189963511,0.0313098107858109 +3.216,0.560397679718965,-0.292763408433338,-0.00145584695529717,-0.000173932648117603,0.00027703328758788,0.000287151288920484,-0.00691295857363493,0.00644029246946174,0.0109475085429203,0.000435265288349124,0.0144607851318769 +3.218,0.560397318208929,-0.292762842192943,-0.00145525146685178,-0.000183178891000057,0.000280382100287246,0.000296676155739361,-0.00257218987775864,-0.00229911122431868,-0.000652218905619616,0.000447420797073386,0.00351104865957164 +3.22,0.560396947003401,-0.292762286904937,-0.00145466025067421,-0.000184221407628637,0.000267836842690605,0.000284542413298005,0.00121941902408995,-0.00936945266163944,-0.010557271037416,0.000432016766221638,0.0141679073152134 +3.222,0.560396581323299,-0.292761770845573,-0.00145411329719859,-0.000178301214903698,0.000242904289640688,0.000254447071589697,0.00434841419122422,-0.0146697447661603,-0.0185292003624174,0.000394381958769103,0.0240300100614489 +3.224,0.560396233798542,-0.292761315287779,-0.00145364246238786,-0.00016682775086374,0.000209157863625964,0.000210425611848336,0.00675696951168979,-0.0182198823459045,-0.0244636686221044,0.000340378390172728,0.0312424684065239 +3.226,0.560395914012295,-0.292760934214118,-0.0014532715947512,-0.000151273336856938,0.00017002476025707,0.000156592397101279,0.0084361699292934,-0.0201327759810632,-0.0283782394692663,0.00027624847578626,0.0358025433056733 +3.228,0.560395628705194,-0.292760635188738,-0.00145301609279945,-0.000133083071146567,0.000128626759701711,9.69126539712705e-05,0.00941790287423137,-0.0205889881567389,-0.0303936870081622,0.000208921060778752,0.0378995981221031 +3.23,0.560395381680011,-0.292760419707079,-0.00145288394413531,-0.000113601725360013,8.76688076301146e-05,3.50176490686304e-05,0.00976592841317457,-0.0198141601667756,-0.0307112977774442,0.000147707168351274,0.037830650431373 +3.232,0.560395174298293,-0.292760284513507,-0.00145287602220318,-9.40193574938685e-05,4.93701190346085e-05,-2.59325371385066e-05,0.00956685758390917,-0.0180592698052761,-0.0295887349786513,0.000109313973120966,0.035960467566029 +3.234,0.560395005602581,-0.292760222226603,-0.00145298767428387,-7.53342950243762e-05,1.543172840901e-05,-8.3337290845975e-05,0.00892150638087673,-0.0155836841105039,-0.0273164137004622,0.000113395318660233,0.0326899211380938 +3.236,0.560394872961113,-0.292760222786593,-0.00145320937136656,-5.83333319703616e-05,-1.29646174074072e-05,-0.000135198191940355,0.00793703478635387,-0.0126409307812936,-0.0241959654560461,0.000147815459364797,0.0284294635293637 +3.238,0.560394772269253,-0.292760274085073,-0.00145352846705163,-4.35861558789607e-05,-3.51319947161643e-05,-0.000180121152670159,0.00672015049857365,-0.00946717097424775,-0.020521799364015,0.00018862035859437,0.0235782102398804 +3.24,0.560394698616489,-0.292760363314572,-0.00145392985597724,-3.14527299760669e-05,-5.08333013043982e-05,-0.000217285389396415,0.00537152996388234,-0.00627230269459321,-0.0165663936128185,0.000225358024462416,0.0185105513850971 +3.242,0.560394646458333,-0.292760477418278,-0.00145439760860921,-2.21000360234313e-05,-6.02212054945372e-05,-0.000246386727121434,0.00398156947689631,-0.00323367355808956,-0.0125695005688542,0.0002546005194124,0.0135757830245649 +3.244,0.560394610216345,-0.292760604199394,-0.00145491540288573,-1.55264520684817e-05,-6.37679955367564e-05,-0.000267563391671832,0.00262740688233842,-0.000492267799440115,-0.00873114982744003,0.000275495184225686,0.00913118676957881 +3.246,0.560394584352525,-0.29276073249026,-0.0014554678621759,-1.15904084940777e-05,-6.21902766922977e-05,-0.000281311326431194,0.00137119075122038,0.00184877542094841,-0.00520813300819432,0.000288336661669309,0.00569410081262867 +3.248,0.560394563854711,-0.292760852960501,-0.00145604064819145,-1.00416890636001e-05,-5.63728938529628e-05,-0.000288395923704609,0.00025941673115204,0.00372358041969555,-0.00211348322697036,0.00029402541980251,0.00428942414934998 +3.25,0.560394544185769,-0.292760957981835,-0.00145662144587072,-1.05527415694695e-05,-4.72959550135154e-05,-0.000289765259339075,-0.000676774733476825,0.00510117910759721,0.000481573441714344,0.000293789334787895,0.00516836195592216 +3.252,0.560394521643745,-0.292761042144321,-0.00145719970922881,-1.27487879975074e-05,-3.59681774225739e-05,-0.000286469629937752,-0.00142056966190296,0.00598175188895599,0.00254380460099068,0.000289000156157708,0.00665359419211669 +3.254,0.560394493190617,-0.292761101854545,-0.00145776732439047,-1.62350202170813e-05,-2.33689474576914e-05,-0.000279590040935112,-0.00196786508616098,0.00639184417547399,0.00407282560455078,0.000281034294307345,0.00783045805594772 +3.256,0.560394456703664,-0.292761135620111,-0.00145831806939255,-2.06202483421514e-05,-1.04008007206779e-05,-0.000270178327519549,-0.00232528553356647,0.00637895114855013,0.00509517584807577,0.000271163603676054,0.00848874475355556 +3.258,0.560394410709623,-0.292761143457748,-0.00145884803770055,-2.55361623513472e-05,2.14685713650908e-06,-0.000259209337542809,-0.00250797563966509,0.0060058439610433,0.00565804771004291,0.000260473002924643,0.00862401341503337 +3.26,0.560394354559014,-0.292761127032682,-0.00145935490674272,-3.06521509008117e-05,1.36225751234953e-05,-0.000247546136679377,-0.00253733935251521,0.00534496494980496,0.00582308858510655,0.000249808363936691,0.0083015120294115 +3.262,0.56039428810102,-0.292761088967448,-0.00145983822224727,-3.56855197614081e-05,2.35267169357289e-05,-0.000235916983202383,-0.00243884404338423,0.00447318239046867,0.00566056474696901,0.000239757764616142,0.00761572808213227 +3.264,0.560394211816935,-0.292761032925815,-0.00146029857467553,-4.04075270743487e-05,3.151530468537e-05,-0.000224903877691501,-0.00223999591791868,0.00346711373500063,0.00524414389604237,0.000230668023085883,0.00667379236762134 +3.266,0.560394126470911,-0.292760962906229,-0.00146073783775803,-4.46455034330828e-05,3.73951718757315e-05,-0.000214940407618214,-0.00196856475564999,0.00239918594019394,0.00464644236541217,0.000222690365044141,0.00558755465547395 +3.268,0.560394033234922,-0.292760883345127,-0.001461158336306,-4.82817860969486e-05,4.11120484461458e-05,-0.000206318108229852,-0.00165110032590565,0.00133451241723925,0.0039354409895817,0.000215843677645871,0.00447154911193552 +3.27,0.560393933343767,-0.292760798458035,-0.00146156311019095,-5.12499047367054e-05,4.27332215446885e-05,-0.000199198643659887,-0.00131177818607497,0.000328633332352666,0.00317179505750219,0.000210078034537282,0.00344804955930026 +3.272,0.560393828235303,-0.292760712412241,-0.00146195513088064,-5.35288988412485e-05,4.24265817755564e-05,-0.000193630927999844,0.264167034948192,-0.297604307322729,0.22274395565687,0.000205324850250512,0.456034445927093 +3.274,0.560393719228172,-0.292760628751708,-0.00146233763390295,0.00100541823505607,-0.00114768400774623,0.000691777178967595,0.179156145072023,-0.219681858773523,0.494276757092258,0.001675291041688,0.569795187758634 +3.276,0.560397849908243,-0.292765303148272,-0.00145918802216477,0.000663095681446845,-0.000836300853318538,0.00178347610036919,-0.482165585583004,0.534650551813758,0.233734833613753,0.0020784325826456,0.756945729177334 +3.278,0.560396371610897,-0.292763973955121,-0.00145520372950148,-0.000923244107275955,0.000990918199508805,0.00162671651342261,-0.419158889736203,0.536216662853222,-0.237886764125824,0.00211672038181224,0.72098030272164 +3.28,0.560394156931814,-0.292761339475474,-0.00145268115611108,-0.00101353987749797,0.00130856579809435,0.000831929043865891,0.0357737457920559,0.0459987578999009,-0.395773847034451,0.00185248845212285,0.400040728692439 +3.282,0.560392317451387,-0.292758739691929,-0.00145187601332601,-0.000780149124107731,0.00117491323110841,4.3621125284804e-05,0.125763342254115,-0.107453437130783,-0.352593987690968,0.00141101260059957,0.389467815823032 +3.284,0.560391036335317,-0.292756639822549,-0.00145250667160994,-0.000510486508481511,0.000878752049571218,-0.000578446906897983,0.126960497878747,-0.162503960971644,-0.264473456504724,0.00116935985225554,0.335369519409038 +3.286,0.560390275505353,-0.292755224683731,-0.0014541898009536,-0.000272307132592742,0.000524897387221834,-0.00101427270073409,0.107631313611689,-0.176811002200461,-0.176309560557044,0.00117406028509085,0.27190382732269 +3.288,0.560389947106787,-0.292754540233001,-0.00145656376241288,-7.99612540347549e-05,0.000171508040769375,-0.00128368514912616,0.0845061636500775,-0.166732763998145,-0.100653263138302,0.00129755784930091,0.212302109423583 +3.29,0.560389955660337,-0.292754538651567,-0.00145932454155011,6.57175220075689e-05,-0.000142033668770747,-0.0014168857532873,0.0619495699460958,-0.140514264067998,-0.0401695100221005,0.0014255025758068,0.158731210410848 +3.292,0.560390209976875,-0.292755108367676,-0.00146223130542603,0.000167837025749629,-0.000390549015502617,-0.00144436318921456,0.307777769686934,-0.401867377902709,0.227618757979095,0.00150561709045846,0.55500886832537 +3.294,0.56039062700844,-0.292756100847629,-0.00146510199430697,0.00129682860075531,-0.00174950318038158,-0.00050641072137092,0.204160086468563,-0.28417045669013,0.535003405457631,0.00223583935393884,0.639267419171031 +3.296,0.560395397291278,-0.292762106380397,-0.00146425694831151,0.000984477371623881,-0.00152723084226314,0.000695650432615962,-0.209327829979455,0.211392588662928,0.518950986942538,0.0019456513729849,0.598176473788593 +3.298,0.560394564917927,-0.292762209770999,-0.0014623193925765,0.000459517280837484,-0.000903932825729869,0.00156939322639923,-0.244852896402747,0.324939212495434,0.334998795347048,0.00186848756589067,0.527031901859783 +3.3,0.560397235360401,-0.2927657221117,-0.00145797937540591,5.0657860128922e-06,-0.000227473992281402,0.00203564561400415,-0.463123770451378,0.615563439408661,-0.0759609419028611,0.00204832203160702,0.774062038462351 +3.302,0.560394585181071,-0.292763119666968,-0.00145417681012049,-0.00139297780096803,0.00155832093190478,0.00126554945878779,-0.316934539827673,0.482113316262188,-0.502429657515609,0.00244343338633169,0.765059679374332 +3.304,0.560391663449198,-0.292759488827972,-0.00145291717757076,-0.0012626723732978,0.00170097927276735,2.59269839417153e-05,0.137277477420261,-0.0527050799184469,-0.572478647682151,0.00211857126789966,0.591062376833499 +3.306,0.560389534491578,-0.292756315749877,-0.00145407310218472,-0.000843867891286986,0.00134750061223099,-0.00102436513194082,0.474047175832991,-0.513858070892713,-0.221771244187339,0.00189134736139192,0.733453016003899 +3.308,0.560388287977632,-0.292754098825524,-0.00145701463809852,0.000633516330034167,-0.000354453010803501,-0.000861157992807642,0.366630038196868,-0.481884601860604,0.210352297405278,0.00112630944498575,0.640998005802099 +3.31,0.560392068556898,-0.29275773356192,-0.00145751773415595,0.000622652261500489,-0.000580037795211429,-0.000182955942319707,-0.340763472772564,0.27915444593754,0.0873128486638187,0.000870409420592115,0.449077368172238 +3.312,0.560390778586678,-0.292756418976704,-0.0014577464618678,-0.000729537561056092,0.00076216477294666,-0.000511906598152367,-0.319535219776845,0.318389622763759,-0.276679710937283,0.00117267581169922,0.529175179884529 +3.314,0.560389150406654,-0.292754684902828,-0.00145956536054856,-0.000655488617606891,0.000693520695843607,-0.00128967478606884,0.101438548262556,-0.117037631561928,-0.352803740989032,0.00160433703977603,0.385302564137713 +3.316,0.560388156632208,-0.292753644893921,-0.00146290516101208,-0.00032378336800587,0.000294014246698948,-0.0019231215621085,0.160550267525039,-0.208893950019717,-0.251863139660163,0.00197222630276188,0.364483349244758 +3.318,0.560387855273182,-0.292753508845841,-0.00146725784679699,-1.32875475067351e-05,-0.000142055104235261,-0.00229712734470949,0.135620642521816,-0.203374509493564,-0.126126584319881,0.00230155387713825,0.275067382766438 +3.32,0.560388103482018,-0.292754213114338,-0.00147209367039092,0.000218699202081396,-0.00051948379127531,-0.00242762789938802,0.0954769984115587,-0.164465061732593,-0.0163336123697524,0.00249220183136838,0.190870114605278 +3.322,0.56038873006999,-0.292755586781006,-0.00147696835839455,0.0003686204461395,-0.000799915351165636,-0.0023624617941885,0.0568430921360496,-0.112395685421956,0.0685495780070043,0.00252130349845925,0.143397949322845 +3.324,0.560389577963803,-0.292757412775743,-0.00148154351756767,0.000446071570625594,-0.000969066532963136,-0.00215342958736,0.0237922091333997,-0.0570405250498173,0.12870611382134,0.00240319137380839,0.14277588889024 +3.326,0.560390514356272,-0.292759463047138,-0.00148558207674399,0.000463789282673099,-0.00102807745136491,-0.00184763733890314,0.265906127581983,-0.301829188496804,0.391129337682684,0.00216467260361387,0.561060679882649 +3.328,0.560391433120933,-0.292761525085548,-0.00148893406692328,0.00150969608095353,-0.00217638328695035,-0.000588912236629268,0.160023702351661,-0.178977420804048,0.687585297900531,0.00271341926193041,0.72829530024638 +3.33,0.560396553140596,-0.292768168580286,-0.0014879377256905,0.00110388409207974,-0.0017439871345811,0.000902703852698988,-0.524364421702951,0.609442425449147,0.429036168572231,0.00225275952112264,0.911290376679327 +3.332,0.560395848657302,-0.292768501034086,-0.00148532325151249,-0.00058776160585805,0.000261386414845965,0.00112723243765947,-0.471027254755926,0.633463267358434,-0.0534126972816143,0.00129785959629637,0.791198648915823 +3.334,0.560394202094173,-0.292767123034627,-0.00148342879593986,-0.000780224926943961,0.00078986593485264,0.000689053063572531,-0.0147310275575019,0.153184179202403,-0.225816643956849,0.00130668789543794,0.273268279569269 +3.336,0.560392727757594,-0.292765341570347,-0.0014825670392582,-0.000646685716088057,0.000874123131655579,0.00022396586183207,0.0772048616981545,-0.000980445037657151,-0.201475518119692,0.00111015961553007,0.215763612186813 +3.338,0.560391615351308,-0.2927636265421,-0.00148253293249254,-0.000471405480151343,0.000785944154702011,-0.000116849008906239,0.0821664578112834,-0.0642317283493231,-0.13591816731915,0.000923896656509454,0.171320722399222 +3.34,0.560390842135673,-0.292762197793728,-0.00148303443529382,-0.000318019884842924,0.000617196218258286,-0.000319706807444531,0.0684876031373237,-0.0921928709936291,-0.0728183218506524,0.000764382274594467,0.13598744516568 +3.342,0.560390343271769,-0.292761157757227,-0.00148381175972231,-0.000197455067602048,0.000417172670727494,-0.000408122296308849,0.0524315330457935,-0.0992072562502886,-0.0234277002806107,0.000616104982667766,0.114629849911272 +3.344,0.560390052315403,-0.292760529103045,-0.00148466692447906,-0.000108293752659749,0.000220367193257131,-0.000413417608566973,0.0377607186977102,-0.0916478091091131,0.0108327041408243,0.000480836100768643,0.0997122874578187 +3.346,0.560389910096758,-0.292760276288454,-0.00148546543015658,-4.64121928112071e-05,5.05814342910415e-05,-0.000364791479745552,0.0252497300845533,-0.0747011466468993,0.0318936202968467,0.000371194553881698,0.0850588807552967 +3.348,0.560389866666631,-0.292760326777308,-0.00148612609039804,-7.29483232153604e-06,-7.8437393330466e-05,-0.000285843127379587,0.0149532224588688,-0.0530961579668642,0.0427254606112994,0.000296499464959416,0.0697729592119634 +3.35,0.560389880917429,-0.292760590038027,-0.0014866088026661,1.34006970242684e-05,-0.000161803197576415,-0.000193889637300354,0.00674966127434117,-0.0307685470019025,0.0463058286966424,0.000252889392579348,0.0560043853926585 +3.352,0.56038992026942,-0.292760973990098,-0.00148690164894724,1.97038127758286e-05,-0.000201511581338076,-0.000100619812593017,0.000471498992626883,-0.0105831345839635,0.0451480827307059,0.000226096228047995,0.0463742862282645 +3.354,0.56038995973268,-0.292761396084353,-0.00148701128191647,1.52866929947759e-05,-0.00020413573591227,-1.32973063775299e-05,-0.0040667695253016,0.00571640169921838,0.0411443577298664,0.000205138733583052,0.0417381604261851 +3.356,0.560389981416192,-0.292761790533042,-0.00148695483817275,3.43673467462224e-06,-0.000178645974541203,6.39576183264489e-05,-0.00706366841407567,0.0173782794959942,0.0355878647202365,0.000189780853373019,0.0402292943643156 +3.358,0.560389973479619,-0.292762110668251,-0.00148675545144317,-1.29679806615268e-05,-0.000134622617928293,0.000129054152503416,-0.00872886519315273,0.0244169584585896,0.0292852203919238,0.000186939541185592,0.0391152793845611 +3.36,0.560389929544269,-0.292762329023514,-0.00148643862156274,-3.14787260979887e-05,-8.09781407068443e-05,0.000181098499894144,-0.00928029919577964,0.0273605089452788,0.0227002106851365,0.00020086073815706,0.03674263147976 +3.362,0.560389847564715,-0.292762434580814,-0.00148603105744359,-5.00891774446454e-05,-2.51805821471773e-05,0.000219854995243962,0.26211717909369,-0.269595260407595,0.242518387162313,0.000226890295843772,0.447439591589839 +3.364,0.560389729187559,-0.292762429745842,-0.00148555920158176,0.00101698999027677,-0.00115935918233723,0.0011511720485434,0.17711387122199,-0.193433927209163,0.514547221279644,0.00192446861219932,0.57753341938056 +3.366,0.560393915524676,-0.292767072017543,-0.00148142636924942,0.000658366307443314,-0.00079891629098383,0.00227804388036254,-0.497500214614865,0.55742541324108,0.240507269257291,0.00250223846897795,0.784903370762557 +3.368,0.560392362652789,-0.292765625411006,-0.00147644702606031,-0.000973010868182688,0.00107034247062709,0.00211320112557256,-0.434349114501741,0.555038816015678,-0.246945623728379,0.00256085965081081,0.746799425301822 +3.37,0.560390023481203,-0.29276279064766,-0.00147297356474713,-0.00107903015056365,0.00142123897307889,0.00129026138544902,0.0312444844788317,0.0589178082086027,-0.412206413947547,0.00220204466966603,0.417566346385758 +3.372,0.560388046532187,-0.292759940455114,-0.00147128598051852,-0.000848032930267361,0.0013060137034615,0.000464375469782368,0.397840075723465,-0.397692962138262,-0.145638236412511,0.00162495422131907,0.581073931519307 +3.374,0.560386631349482,-0.292757566592847,-0.001471116062868,0.000512330152330209,-0.000169532875474165,0.000707708439798976,0.3153942586126,-0.378871901719757,0.219517415383195,0.00088998585191897,0.53963446140425 +3.376,0.560390095852796,-0.292760618586616,-0.00146845514675932,0.000413544104183039,-0.000209473903417523,0.00134244513131515,-0.380213903236614,0.358263399502511,0.0377889568352329,0.00142023130964969,0.523777892714281 +3.378,0.560388285525899,-0.29275840448846,-0.00146574628234274,-0.00100852546061625,0.00126352072253588,0.000858864267139908,-0.341295330018309,0.368540597647098,-0.369833011988444,0.00183064361642527,0.623763682144794 +3.38,0.560386061750954,-0.292755564503726,-0.00146501968969076,-0.000951637215890199,0.00126468848717087,-0.000136886916638629,0.101256990132914,-0.0978430960765773,-0.469455158888347,0.00158864356864485,0.49011671641305 +3.382,0.560384478977035,-0.292753345734512,-0.00146629383000929,-0.000603497500084593,0.000872148338229572,-0.00101895636841348,0.174120307838699,-0.218477778257675,-0.378329013760343,0.00147075628069893,0.470301247975302 +3.384,0.560383647760953,-0.292752075910373,-0.00146909551516441,-0.000255155984535404,0.000390777374140172,-0.00165020297168,0.157814615625584,-0.235629382300955,-0.25312047343632,0.00171492897238505,0.380127127131447 +3.386,0.560383458353097,-0.292751782625015,-0.00147289464189601,2.77609624177444e-05,-7.03691909742509e-05,-0.00203143826215876,0.122617824005466,-0.212301189555369,-0.137454953038664,0.00203284625759927,0.281070791732833 +3.388,0.560383758804803,-0.292752357387137,-0.00147722126821305,0.000235315311486461,-0.000458427384081305,-0.00220002278383466,0.0860423279222532,-0.168784118702303,-0.0422769186499138,0.00225956394281888,0.194110017183362 +3.39,0.560384399614343,-0.292753616334551,-0.00148169473303135,0.000371930274106757,-0.000745505665783463,-0.00220054593675842,0.0527213014564486,-0.115676642313544,0.0311645570252871,0.00235297965275868,0.130888696298725 +3.392,0.560385246525899,-0.2927553394098,-0.00148602345196008,0.000446200517312256,-0.000921133953335484,-0.00207536455573351,0.0240489368696916,-0.0607687251318044,0.0847698540876183,0.00231402694470746,0.107037925431799 +3.394,0.560386184416412,-0.292757300870365,-0.00148999619125428,0.000468126021585524,-0.000988580566310681,-0.00186146652040794,0.000478246033053242,-0.010020304717917,0.1213889192931,0.0021590486596583,0.121802729661756 +3.396,0.560387119029986,-0.292759293732065,-0.00149346931804172,0.000448113501444469,-0.000961215172207152,-0.00158980887856111,-0.0179234506611503,0.0324671922610764,0.14392642022111,0.00191108152306744,0.148627665979736 +3.398,0.560387976870418,-0.292761145731053,-0.00149635542676853,0.000396432218940923,-0.000858711797266375,-0.0012857608395235,-0.0313219691017163,0.0644193426553584,0.15497139137146,0.00159615957580408,0.170725070215723 +3.4,0.560388704758861,-0.292762728579254,-0.00149861236139981,0.000322825625037604,-0.000703537801585718,-0.000969923313075271,-0.0400578016451769,0.0851588935063539,0.156708621223619,0.00124094039167395,0.182795668935778 +3.402,0.560389268172918,-0.29276395988226,-0.00150023512002083,0.000236201012360215,-0.000518076223240959,-0.000658926354629024,-0.0446096760017833,0.0952487050412397,0.150970948095338,0.000870848914652996,0.18399610369196 +3.404,0.560389649562911,-0.292764800884147,-0.00150124806681833,0.00014438692103047,-0.000322542981420759,-0.000366039520693917,-0.0455593807263676,0.0960960104788576,0.139335302394919,0.000508789237836536,0.175283846647677 +3.406,0.560389845720602,-0.292765250054186,-0.0015016992781036,5.39634894547447e-05,-0.000133692181325529,-0.000101585145049349,-0.0435534647166835,0.0895825511514068,0.123211791827442,0.000176366661351877,0.158439526018449 +3.408,0.560389865416869,-0.292765335652872,-0.00150165440739852,-2.98269378362636e-05,3.57872231848688e-05,0.000126807646615851,0.234815782783337,-0.218608096218958,0.333405074625682,0.00013509459946357,0.462695251070059 +3.41,0.560389726412851,-0.292765106905293,-0.00150119204751714,0.000993226620588094,-0.00100812456620136,0.00123203515345338,0.154388630241309,-0.154759928636116,0.593838093671839,0.00187635947519883,0.632795516857577 +3.412,0.560393838323351,-0.292769368151137,-0.00149672626678471,0.000587727583128971,-0.000583252491359598,0.00250216002130321,-0.522190410003064,0.583640937659029,0.300026665163086,0.00263560466550958,0.838651040790841 +3.414,0.560392077323183,-0.292767439915258,-0.00149118340743193,-0.00109553501942416,0.00132643918443476,0.00243214181410572,-0.454224444432215,0.569733469121119,-0.208662633541592,0.00297908571422679,0.757928866314678 +3.416,0.560389456183273,-0.292764062394399,-0.00148699769952829,-0.00122917019459989,0.00169568138512488,0.00166750948713684,0.021345373128756,0.0625196269615768,-0.390358991008213,0.0026770847235086,0.395909674762275 +3.418,0.560387160642405,-0.292760657189718,-0.00148451336948338,-0.00101015352690914,0.00157651769228106,0.000870705850072872,0.122895939640155,-0.107489600269239,-0.364235156498533,0.00206493265249821,0.399154951585958 +3.42,0.560385415569166,-0.29275775632363,-0.00148351487612799,-0.000737586436039272,0.00126572298404792,0.000210568861142707,0.131349454639273,-0.175098073186552,-0.28930757615779,0.00148000934735536,0.362782149629738 +3.422,0.560384210296661,-0.292755594297782,-0.00148367109403881,-0.000484755708352047,0.000876125399534854,-0.00028652445455829,0.117038162175675,-0.198211731597397,-0.211320420618818,0.00104147975282764,0.312477426574805 +3.424,0.560383476546332,-0.292754251822032,-0.00148466097394623,-0.00026943378733657,0.000472876057658333,-0.000634712821332566,0.0973908093962471,-0.193675644084845,-0.143035005020775,0.000836102085411202,0.259719536284487 +3.426,0.560383132561511,-0.292753702793551,-0.00148620994532414,-9.51924707670581e-05,0.000101422823195474,-0.00085866447464139,0.0770231764757322,-0.170197404343597,-0.0871981588601577,0.000869857962869141,0.206163151577363 +3.428,0.560383095776449,-0.292753846130739,-0.00148809563184479,3.86589185663588e-05,-0.000207913559716055,-0.000983505456773197,0.0574496278049618,-0.135023414137014,-0.0431438874426773,0.00100598486261036,0.152948282513439 +3.43,0.560383287197186,-0.29275453444779,-0.00149014396715123,0.000134606040452789,-0.000438670833352583,-0.0010312400244121,0.314903876794114,-0.390840367469474,0.221916323161347,0.00112871912985919,0.548787298458235 +3.432,0.560383634200611,-0.292755600814073,-0.00149222059194244,0.00129827442574282,-0.00177127502959395,-9.58401641278083e-05,0.212296771599784,-0.271418193864558,0.531126086156067,0.00219820769083837,0.633113476864813 +3.434,0.560388480294889,-0.292761619547908,-0.00149052732780774,0.000983793126851928,-0.00152434360881082,0.00109326432021217,-0.488540044828178,0.520115926792851,0.276893558029227,0.00211818300153987,0.765416223490454 +3.436,0.560387569373118,-0.292761698188508,-0.00148784753466159,-0.000655885753569895,0.000309188677577454,0.0010117340679891,-0.43961162499162,0.553249039254854,-0.198483583640878,0.00124474478685706,0.733988156061879 +3.438,0.560385856751874,-0.292760382793198,-0.00148648039153579,-0.000774653373114553,0.000688652548208601,0.000299329985648661,0.0220232336464732,0.0842358498266692,-0.350678090157464,0.00107885523632246,0.361325094800728 +3.44,0.560384470759626,-0.292758943578315,-0.001486650214719,-0.000567792818984003,0.000646132076884131,-0.000390978292640759,0.111171381600439,-0.0572165848415628,-0.300338488991996,0.000944848861662374,0.325324486686566 +3.442,0.560383585580598,-0.29275779826489,-0.00148804430470635,-0.000329967846712797,0.000459786208842349,-0.000902023970319326,0.109731926246914,-0.105358282091739,-0.207223431017943,0.00106486120256893,0.257066165813451 +3.444,0.560383150888239,-0.29275710443348,-0.00149025831060028,-0.000128865113996346,0.000224698948517177,-0.00121987201671253,0.0883652814809287,-0.117405224816375,-0.117283417607958,0.00124706999491942,0.188010132256721 +3.446,0.560383070120142,-0.292756899469096,-0.0014929237927732,2.34932792109177e-05,-9.83469042314943e-06,-0.00137115764075116,0.0644564031107574,-0.109101091227276,-0.0431453477996862,0.00137139415599385,0.133862605105813 +3.448,0.560383244861356,-0.292757143772242,-0.00149574294116328,0.000128960498446684,-0.000211705416391927,-0.00139245340791127,0.0423831160167864,-0.0878313371928395,0.0129016559840058,0.00141434666425633,0.0983723794746487 +3.45,0.560383585962136,-0.292757746290762,-0.00149849360640485,0.000193025743278063,-0.000361160039194508,-0.00131955101681513,0.023303023018173,-0.0594596428100945,0.0522627826692739,0.00138163323550676,0.0825219877197906 +3.452,0.560384016964329,-0.292758588412398,-0.00150102114523054,0.000222172590519376,-0.000449543987632306,-0.00118340227723418,0.00751282446670441,-0.0291006054704834,0.0776458832637757,0.00128525927600523,0.0832596598481409 +3.454,0.560384474652498,-0.292759544466712,-0.00150322721551378,0.000223077041144881,-0.000477562461076441,-0.00100896748376003,0.272119184907548,-0.296924381339158,0.324598144330404,0.0011383517267525,0.517278352853792 +3.456,0.560384909272494,-0.292760498662243,-0.00150505701516558,0.00131064933014957,-0.00163724151298894,0.000114990300087436,0.176143416595609,-0.194393631296197,0.615447327256649,0.00210037715841466,0.66902227147222 +3.458,0.560389717249819,-0.292766093432764,-0.00150276725431343,0.000927650707527316,-0.00125513698626123,0.00145282182526657,-0.521057704795657,0.577718601516701,0.339348378842509,0.00213227482877507,0.848773960774227 +3.46,0.560388619875324,-0.292765519210188,-0.00149924572786451,-0.000773581489033059,0.000673632893077868,0.00147238381545747,-0.464835712817024,0.591094307285377,-0.157879552255442,0.00179447031037913,0.768368839188361 +3.462,0.560386622923863,-0.292763398901192,-0.0014968777190516,-0.00093169214374078,0.00110924024288028,0.0008213036162448,0.00667255378727915,0.10302654113864,-0.328536785719132,0.00166523385660699,0.344376844058504 +3.464,0.560384893106749,-0.292761082249216,-0.00149596051339954,-0.000746891273883942,0.00108573905763243,0.000158236672580941,0.103652437417889,-0.055501442910305,-0.294057111041232,0.00132729601853619,0.31669199942801 +3.466,0.560383635358767,-0.292759055944961,-0.00149624477236128,-0.000517082394069223,0.000887234471239062,-0.000354924827920127,0.10860482491104,-0.117542058135356,-0.214424576973522,0.00108652236179719,0.267561287623839 +3.468,0.560382824777172,-0.292757533311331,-0.00149738021271122,-0.000312471974239781,0.000615570825091005,-0.000699461635313147,0.0924096323906552,-0.140093240029448,-0.135507739616909,0.000982757729383732,0.215703508447611 +3.47,0.56038238547087,-0.292756593661661,-0.00149904261890253,-0.000147443864506602,0.000326861511121268,-0.000896955786387765,0.0724998673248821,-0.138971857851361,-0.0698255562354629,0.000965975063533015,0.171595502098325 +3.472,0.560382235001714,-0.292756225865287,-0.00150096803585677,-2.24725049402519e-05,5.96833936855611e-05,-0.000978763860254999,0.0532818770423992,-0.121812197304699,-0.0196403815155843,0.000980839342145992,0.134398342323996 +3.474,0.560382295580851,-0.292756354928086,-0.00150295767434355,6.56836436629948e-05,-0.000160387278097529,-0.000975517312450102,0.0359741694488935,-0.0948476341876279,0.0163649824438255,0.000990793846827003,0.102752261429686 +3.476,0.560382497736289,-0.292756867414399,-0.00150487010510657,0.000121424172855322,-0.000319707143064951,-0.000913303930479697,0.020974308623245,-0.0636341931127548,0.0406960447389692,0.000975233590741221,0.0783926030485701 +3.478,0.560382781277542,-0.292757633756659,-0.00150661089006547,0.000149580878155975,-0.000414924050548548,-0.000812733133494225,0.287094678273758,-0.328666004540539,0.290215717258304,0.000924700791128064,0.524089552822327 +3.48,0.560383096059802,-0.292758527110601,-0.00150812103764054,0.00126980288595035,-0.00163437116122711,0.000247558938553521,0.468976783844776,-0.518050912570732,0.819677043056159,0.00208443131090387,1.07711950437918 +3.482,0.560387860489086,-0.292764171241303,-0.00150562065431126,0.00202548801353508,-0.00248712770083148,0.00246597503873041,-0.320182610091812,0.338068254879947,0.832029219682318,0.00404591630967066,0.953456696010859 +3.484,0.560391198011856,-0.292768475621405,-0.00149825713748562,-1.09275544168952e-05,-0.000282098141707321,0.00357567581728279,-0.960954562395642,1.11193237366594,0.0586059804410023,0.00358680307841136,1.47080316002476 +3.486,0.560387816778868,-0.29276529963387,-0.00149131795104213,-0.00181833023604749,0.00196060179383228,0.00270039896049442,-0.150280337687936,0.336363938143596,-0.368291709437577,0.00380032087949719,0.520925774001941 +3.488,0.560383924690912,-0.292760633214229,-0.00148745554164365,-0.000612048905168638,0.00106335761086707,0.00210250897953248,0.334219994110873,-0.230506726203033,-0.204551377823783,0.00243431248608755,0.454618105070531 +3.49,0.560385368583247,-0.292761046203427,-0.001482907915124,-0.000481450259603999,0.00103857488902015,0.00188219344919929,-0.260950390865155,0.309433577601325,-0.352820180996374,0.00220297170494419,0.536960264412691 +3.492,0.560381998889873,-0.292756478914673,-0.00147992676784685,-0.00165585046862926,0.00230109192127237,0.000691228255546988,-0.216319461190939,0.237615239165323,-0.672749428003333,0.00291798925732622,0.745551409395988 +3.494,0.560378745181373,-0.292751841835742,-0.00148014300210181,-0.00134672810436775,0.00198903584568144,-0.000808804262814044,0.218832279692826,-0.264255422863235,-0.673717968044037,0.00253458172447562,0.756051847172912 +3.496,0.560376611977456,-0.29274852277129,-0.0014831619848981,-0.000780521349857954,0.00124407022981943,-0.00200364361662916,0.271951418030769,-0.390944393979103,-0.495342705555435,0.00248425281659614,0.68713862422339 +3.498,0.560375623095973,-0.292746865554822,-0.00148815757656832,-0.000258922432244679,0.000425258269765027,-0.00279017508503579,0.233154009640634,-0.391132922526043,-0.300719660241942,0.00283424812376713,0.545690451951743 +3.5,0.560375576287727,-0.292746821738211,-0.00149432268523825,0.000152094688704585,-0.000320461460284749,-0.00320652225759693,0.176225573578214,-0.335948726417484,-0.133330890245142,0.00322608328012847,0.402112081213761 +3.502,0.560376231474728,-0.292748147400664,-0.00150098366559871,0.000445979862068179,-0.000918536635904909,-0.00332349864601636,0.119998613969108,-0.253284678387172,-0.00161517653939069,0.00347681619286128,0.280277370573247 +3.504,0.560377360207175,-0.292750495884755,-0.00150761667982231,0.000632089144581016,-0.00133360017383344,-0.00321298296375449,0.0696694781032735,-0.160070073629975,0.0962691678813366,0.00353571571760547,0.199359016188516 +3.506,0.560378759831307,-0.292753481801359,-0.00151383559745373,0.000724657774481274,-0.00155881693042481,-0.00293842197449101,0.0268832182626077,-0.0687667362740672,0.165068476870762,0.00340431532218548,0.180829127903597 +3.508,0.560380258838273,-0.292756731152477,-0.00151937036772028,0.000739622017631447,-0.00160866711892971,-0.00255270905627144,-0.00782840534063744,0.0117249867280511,0.209890875888831,0.00310663389450078,0.21036382537245 +3.51,0.560381718319377,-0.292759916469835,-0.00152404643367882,0.000693344153118724,-0.00151191698351261,-0.00209885847093569,-0.0344473259708544,0.0759171382910815,0.235278112782275,0.00267802650485694,0.249611338899575 +3.512,0.560383032214886,-0.292762778820411,-0.00152776580160402,0.000601832713748029,-0.00130499856576538,-0.00161159660514234,-0.0533012295828027,0.12138119536223,0.244963011705908,0.00215927476012048,0.278534185992727 +3.514,0.560384125650232,-0.292765136464098,-0.00153049282009939,0.000480139234787513,-0.00102639220206369,-0.00111900642411206,-0.0649890412041109,0.148153269294987,0.241944399542726,0.00159254199770164,0.291049925527413 +3.516,0.560384952771825,-0.292766884389219,-0.00153224182730047,0.000341876548931585,-0.000712385488585431,-0.000643819006971441,-0.0703213977465421,0.158030810125387,0.22868758968713,0.00101925245783082,0.286734807107234 +3.518,0.560385493156428,-0.292767986006052,-0.00153306809612727,0.000198853643801344,-0.000394268961562138,-0.000204256065363534,-0.0702595557150464,0.153888448609085,0.207334255943568,0.00048652988185943,0.267592140154115 +3.52,0.5603857481864,-0.292768461465065,-0.00153305885156192,6.08383260713996e-05,-9.68316941490909e-05,0.000185518016802832,-0.0658529992966782,0.139093048311806,0.179862657869942,0.00021793258927799,0.236715164915724 +3.522,0.560385736509732,-0.292768373332829,-0.00153232602406006,-6.45583533853688e-05,0.000162103231685084,0.000515194566116233,-0.0581785871006656,0.117055051221393,0.148175441076759,0.000543939959618957,0.197591989594124 +3.524,0.560385489952986,-0.292767813052139,-0.00153099807329746,-0.000171876022331263,0.000371388510736481,0.000778219781109867,-0.0482852355182527,0.0909196921916598,0.114119916298956,0.000879259245427745,0.153691931126393 +3.526,0.560385049005643,-0.292766887778786,-0.00152921314493562,-0.00025769929545838,0.000525782000451724,0.000971674231312058,-0.0371471909135778,0.0633825999393766,0.0794574527814353,0.00113446306712675,0.108216239864259 +3.528,0.560384459155804,-0.292765709924137,-0.00152711137637221,-0.000320464785985574,0.000624918910493987,0.00109604959223561,-0.0256274750934371,0.0366041456416332,0.0458043250325251,0.00130174729974355,0.0639895862582642 +3.53,0.560383767146499,-0.292764388103144,-0.00152482894656668,-0.000360209195832128,0.000672198583018257,0.00115489153144216,-0.0144527863357724,0.0121954973168747,0.0145648239198436,0.00138397111572843,0.0238693796209587 +3.532,0.560383018319021,-0.292763021129805,-0.00152249181024644,-0.000378275931328664,0.000673700899761486,0.00115430888791498,0.278005225493038,-0.304354230481335,0.224709865781665,0.00138902649048948,0.469481551067701 +3.534,0.560382254042774,-0.292761693299545,-0.00152021171101502,0.000751811706140026,-0.000545218338907083,0.00205373099456882,0.199743386469775,-0.241835159921904,0.491746713705657,0.00225395094814027,0.583263658608335 +3.536,0.560386025565846,-0.29276520200316,-0.00151427688626816,0.000420697614550436,-0.000293639739926132,0.00312129574273761,-0.496275663862399,0.500633522443338,0.190799484923315,0.00316317844791979,0.730293024602516 +3.538,0.560383936833232,-0.292762867858504,-0.00150772652804407,-0.00123329094930957,0.00145731575086627,0.00281692893426208,-0.432134145141038,0.495919397755506,-0.324104434568962,0.00340291997908483,0.733293701714549 +3.54,0.560381092402048,-0.292759372740157,-0.00150300917053112,-0.00130783896601372,0.00169003785109589,0.00182487800446176,0.0522849738018859,-0.00110299466088426,-0.497301346076908,0.00281013352535587,0.500043561994943 +3.542,0.560378705477368,-0.2927561077071,-0.00150042701602622,-0.00102415105410203,0.00145290377222273,0.000827723549954445,0.1537484774633,-0.160443965679241,-0.455530927680191,0.00196085211785757,0.506842467161484 +3.544,0.560376995797832,-0.292753561125068,-0.0014996982763313,-0.000692845056160518,0.00104826198837893,2.75429374099745e-06,0.158074960850129,-0.215246550173964,-0.3621354953574,0.00125654090831147,0.449956539687237 +3.546,0.560375934097143,-0.292751914659147,-0.00150041599885126,-0.00039185121070151,0.000591917571526878,-0.000620818431475156,0.138072925828791,-0.224762006225537,-0.265057984608595,0.000943042579987664,0.373948963756047 +3.548,0.560375428392989,-0.292751193454782,-0.0015021815500572,-0.000140553352845352,0.00014921396347678,-0.00105747764469338,0.112294304875637,-0.20702788062002,-0.178362919788823,0.00107716248584825,0.295438462995449 +3.55,0.560375371883732,-0.292751317803293,-0.00150464590943003,5.73260088010396e-05,-0.000236193950953201,-0.00133427011063045,0.0859323595892024,-0.171587282046109,-0.105647654870949,0.00135622659680222,0.219061618647061 +3.552,0.560375657697024,-0.292752138230586,-0.00150751863049972,0.000203176085511458,-0.000537135164707658,-0.00148006826417718,0.0608536087562394,-0.126241831654994,-0.0468110851322908,0.00158757575362996,0.147754659654198 +3.554,0.560376184588074,-0.292753466343951,-0.00151056618248674,0.000300740443825997,-0.000741161277573176,-0.00152151445115961,0.0380043667785878,-0.0777718220483502,-0.000417500856803032,0.00171894475740615,0.0865618998516501 +3.556,0.5603768606588,-0.292755102875696,-0.00151360468830436,0.00035519355262581,-0.000848222452901059,-0.00148173826760439,0.0179768445129902,-0.0316053915469516,0.0352753071891642,0.00174390139718841,0.0506597967896659 +3.558,0.560377605362284,-0.292756859233763,-0.00151649313555716,0.000372647821877958,-0.000867582843760983,-0.00138041322240295,0.00114334401668525,0.00842524836355828,0.0618478164194843,0.00167245539687122,0.0624295157868965 +3.56,0.560378351250087,-0.292758573207071,-0.00151912634119397,0.000359766928692551,-0.000814521459446826,-0.00123434700192645,-0.0123092174231232,0.0400704434702636,0.0805705261857149,0.00152200196190579,0.090822722725738 +3.562,0.560379044429999,-0.292760117319601,-0.00152143052356486,0.000323410952185465,-0.000707301069879928,-0.00105813111766009,-0.022364919666229,0.0624561163516112,0.0924311308924187,0.00131320634692625,0.113773767009159 +3.564,0.560379644893896,-0.292761402411351,-0.00152335886566461,0.000270307250027635,-0.000564696994040381,-0.000864622478356779,-0.0291614313113752,0.0757775085666322,0.098230967459159,0.00106748336501117,0.127443881173858 +3.566,0.560380125658999,-0.292762376107577,-0.00152488901347829,0.000206765226939964,-0.000404191035613399,-0.000665207247823457,-0.0329643897803433,0.0809697167439281,0.0986901018519905,0.000805371302505015,0.131842641913527 +3.568,0.560380471954804,-0.292763019175493,-0.00152601969465591,0.000138449690906261,-0.000240818127064668,-0.000469862070948817,-0.0341375399198762,0.0794049099563097,0.0945337144796913,0.000545831524328968,0.12809033738061 +3.57,0.560380679457763,-0.292763339380085,-0.00152676846176208,7.02150672604595e-05,-8.65713957881597e-05,-0.000287072389904691,-0.0331114481388894,0.0726442938164816,0.0865430443905411,0.000307953436877545,0.117742345629484 +3.572,0.560380752815073,-0.292763365461076,-0.00152716798421552,6.0038983507038e-06,4.97590482012588e-05,-0.000123689893386652,-0.0303524440581348,0.0622538669468874,0.0755667226935013,0.000133458605564805,0.102504362779247 +3.574,0.560380703473356,-0.292763140343892,-0.00152726322133563,-5.11947089720798e-05,0.00016244407199939,1.51945008693144e-05,-0.0263333091513051,0.0496806048903841,0.0624999532041619,0.00017099663040875,0.0840705050755323 +3.576,0.560380548036237,-0.292762715684788,-0.00152710720621205,-9.93293382545167e-05,0.000248481467762795,0.000126309919429995,-0.0215078733017959,0.0361791575136105,0.0482449686381447,0.000295911393842896,0.0640241911409766 +3.578,0.560380306156003,-0.292762146418021,-0.00152675798165791,-0.000137226202179264,0.000307160702053832,0.000208174375421893,-0.0162908549913854,0.0227775247794992,0.0336639293064752,0.000395620143613849,0.0437888995954729 +3.58,0.560379999131428,-0.29276148704198,-0.00152627450871036,-0.000164492758220058,0.000339591566880792,0.000260965636655896,-0.011042938750927,0.0102701724451204,0.0195331134799844,0.000458784658983505,0.02467722554363 +3.582,0.56037964818497,-0.292760788051754,-0.00152571411911129,-0.000181397957182971,0.000348241391834314,0.000286306829341831,-0.00606125268032799,-0.000771101071874255,0.00650537046367851,0.000485951526784954,0.00892486558932567 +3.584,0.560379273539599,-0.292760094076413,-0.00152512928139299,-0.00018873776894137,0.000336507162593295,0.00028698711851061,-0.0015747576298521,-0.0099761176021462,-0.00491483745021556,0.000480854054877964,0.011232026138087 +3.586,0.560378893233894,-0.292759442023103,-0.00152456617063725,-0.000187696987702379,0.000308336921425733,0.000266647479540971,0.00225572015927735,-0.0171500823022235,-0.0143825575156252,0.000448779115659807,0.0224960342527361 +3.588,0.560378522751649,-0.292758860728727,-0.00152406269147483,-0.000179714888304261,0.000267906833384401,0.000229456888448109,0.00533393066520781,-0.0222455021937906,-0.0217107767866084,0.000395881265164896,0.0315384053635107 +3.59,0.560378174374341,-0.29275837039577,-0.00152364834308345,-0.000166361265041548,0.000219354912650571,0.000179804372394537,0.00762174380553036,-0.0253341533550111,-0.0268581483806734,0.000328819495380607,0.0376997405732537 +3.592,0.560377857306589,-0.292757983309076,-0.00152334347398525,-0.000149227913082139,0.000166570219964357,0.000122024294925416,0.00913081744241538,-0.0265802145536786,-0.0299088190889099,0.000254763688099128,0.0410416506999833 +3.594,0.560377577462689,-0.29275770411489,-0.00152316024590375,-0.000129837995271886,0.000113034054435856,6.01690960388978e-05,0.00991301767061523,-0.0262150954589979,-0.0310472339937889,0.000182359322757485,0.0418261866290412 +3.596,0.560377337954607,-0.292757531172859,-0.00152310279760109,-0.000109575842399678,6.17098381283653e-05,-2.16464104974001e-06,0.0100504523592448,-0.0245142889251925,-0.0305308667965242,0.000125776210112654,0.0404239505921969 +3.598,0.560377139159319,-0.292757457275538,-0.00152316890446795,-8.9636185834907e-05,1.49768987350862e-05,-6.19543711471992e-05,0.00964565649574921,-0.0217765167218053,-0.028663118846299,0.000109987714818501,0.0372670062087917 +3.6,0.560376979409864,-0.292757471265264,-0.00152335061508568,-7.09932164166815e-05,-2.5396228758856e-05,-0.000116817116434936,0.00881245284384267,-0.018305381040834,-0.0257682521423094,0.000139036843694509,0.0328138555894413 +3.602,0.560376855186454,-0.292757558860453,-0.00152363617293369,-5.43863744595363e-05,-5.82446254282498e-05,-0.000165027379716437,0.00766784073041869,-0.0143937713380226,-0.0221695531880256,0.000183260334426747,0.0275220915512438 +3.604,0.560376761864366,-0.292757704243765,-0.00152401072460455,-4.03218534950067e-05,-8.29713141109466e-05,-0.000205495329187039,0.00632514618459367,-0.0103111656608867,-0.0181715435840917,0.000225251905990292,0.0218296268353647 +3.606,0.56037669389904,-0.292757890745709,-0.00152445815425044,-2.90857897211616e-05,-9.94892880717967e-05,-0.000237713554052804,0.00488860738695473,-0.00629397647888828,-0.0140465142442828,0.000259329588333364,0.0161498354330756 +3.608,0.560376645521207,-0.292758102200918,-0.00152496157882076,-2.07674239471878e-05,-0.0001081472200265,-0.00026168138616417,0.00344937617358098,-0.0025389076986626,-0.0100253569716713,0.000283908884964285,0.0109019278432135 +3.61,0.560376610829344,-0.292758323334589,-0.00152550487979509,-1.52882850268376e-05,-0.000109644918866447,-0.000277814981939489,0.00105117655552211,0.000856891727712971,-0.00695415972376543,0.000299060034244515,0.00708516570360521 +3.612,0.560376584368067,-0.292758540780593,-0.00152607283874852,-1.65627177250993e-05,-0.000104719653115648,-0.000289498025059231,-0.00210896845820318,0.00396192349760848,-0.00556927717918626,0.00030830120966402,0.00715272214315661 +3.614,0.560376544578473,-0.292758742213202,-0.00152666287189533,-2.37241588596504e-05,-9.37972248760132e-05,-0.000300092090656234,-0.00362840659601237,0.00653335234176987,-0.00515964492658893,0.000315303057363021,0.00908140754597936 +3.616,0.560376489471432,-0.292758915969493,-0.00152727320711114,-3.10763441091488e-05,-7.85862437485684e-05,-0.000310136604765587,-0.00346203685164247,0.00805212576476809,-0.00494176597299472,0.000321444008320618,0.0100619818835864 +3.618,0.560376420273097,-0.292759056558177,-0.00152790341831439,-3.75723062662203e-05,-6.15887218169408e-05,-0.000319859154548213,-0.00297222414041842,0.00856281885674991,-0.00474564515549197,0.000327894384827653,0.010231184245054 +3.62,0.560376339182207,-0.29275916232438,-0.00152855264372934,-4.29652406708225e-05,-4.43349683215688e-05,-0.000329119185387555,-0.00241542644219272,0.00842911906245856,-0.00446090715928991,0.000334859731099671,0.0098378872605123 +3.622,0.560376248412134,-0.29275923389805,-0.00152921989505594,-4.72340120349912e-05,-2.78722455671065e-05,-0.000337702783185373,-0.0018682225350064,0.00786076913630861,-0.00407487881024652,0.000342127291716141,0.0090491206298095 +3.624,0.560376150246159,-0.292759273813362,-0.00152990345486208,-5.04381308108481e-05,-1.28918917763343e-05,-0.000345418700628541,-0.00136074554402121,0.00701883983572625,-0.00360444459869546,0.000349319745587298,0.00800673228853171 +3.626,0.560376046659611,-0.292759285465617,-0.00153060156985846,-5.2676994211076e-05,2.03113775798513e-07,-0.000352120561580154,-0.000909042299768181,0.00603156499398571,-0.00307081650299107,0.000356039038395852,0.00682905909876931 +3.628,0.560375939538182,-0.292759273000907,-0.0015313119371084,-5.40743000099208e-05,1.12343681996085e-05,-0.000357701966640505,-0.000522812002023975,0.00499560810426901,-0.00249071062385919,0.00036194051705894,0.00560652050140759 +3.63,0.560375830362411,-0.292759240528144,-0.00153203237772502,-5.47682422191719e-05,2.01855461928746e-05,-0.000362083404075591,-0.000207274614139052,0.00397810046709467,-0.00187474359560763,0.000366757969426501,0.00440260259860428 +3.632,0.560375720465213,-0.292759192258722,-0.0015327602707247,-5.4903398466477e-05,2.71467700679872e-05,-0.000365200941022936,3.62309626744661e-05,0.0030210980037082,-0.00122904631957854,0.000370301306522581,0.00326173277359374 +3.634,0.560375610748817,-0.292759131941064,-0.00153349318148911,-5.46233183684741e-05,3.22699382077074e-05,-0.000366999589353905,0.000209790317062808,0.00214734636669322,-0.000557939429900178,0.000372442954568143,0.00222854320198672 +3.636,0.560375501971939,-0.292759063178969,-0.00153422826908212,-5.40642371982258e-05,3.57361555347601e-05,-0.000367432698742537,0.000318391278619767,0.00136610409789961,0.000133535376332927,0.000373104278535444,0.0014090582348972 +3.638,0.560375394491868,-0.292758988996442,-0.00153496291228408,-5.3349753253995e-05,3.77343545993058e-05,-0.000366465447848574,0.000369303532199438,0.000678199094106268,0.000837868478591185,0.000372245889374408,0.00113945719426324 +3.64,0.560375288572926,-0.292758912241551,-0.00153569413087351,-5.2587023069428e-05,3.84489519111852e-05,-0.000364081224828172,0.000371416515598799,7.99250804428552e-05,0.00154432344082883,0.000369863292543008,0.00159036886804186 +3.642,0.560375184143776,-0.292758835200634,-0.0015364192371834,-5.18640871915998e-05,3.80540549210772e-05,-0.000360288154085258,0.000334566555015847,-0.00043426698001503,0.00223909319210791,0.000365985721866738,0.00230522469894163 +3.644,0.560375081116578,-0.292758760025331,-0.00153713528348985,-5.12487568493646e-05,3.67118839911251e-05,-0.00035512485205974,0.000268910324563443,-0.000870143419123836,0.0029061346601758,0.000360676944169205,0.00304550176417228 +3.646,0.560374979148748,-0.292758688353098,-0.00153783973659163,-5.0788445893346e-05,3.45734812445819e-05,-0.000348663615444555,0.00018436947801792,-0.00123288065867477,0.00352840236455404,0.000354035462314864,0.0037421397714609 +3.648,0.560374877962794,-0.292758621731406,-0.00153852993795163,-5.0511278937293e-05,3.1780361356426e-05,-0.000341011242601524,9.01727789659467e-05,-0.00152682654713798,0.00408921497965091,0.00034619365714649,0.00436589161396765 +3.65,0.560374777103632,-0.292758561231653,-0.00153920378156204,-5.04277547774822e-05,2.846617505603e-05,-0.000332306755525952,-5.4968044005399e-06,-0.00175559707396577,0.00457353846808338,0.00033731448433532,0.00489891880112482 +3.652,0.560374676251775,-0.292758507866706,-0.00153985916497373,-5.05332661548951e-05,2.47579730605629e-05,-0.000322717088729191,-9.57453491490234e-05,-0.00192233775425654,0.00496903755468902,0.000327586458169738,0.00532877883133027 +3.654,0.560374574970568,-0.292758462199761,-0.00154049464991696,-5.08107361740783e-05,2.07768240390038e-05,-0.000312430605307195,-0.000175107199573698,-0.00203002522083939,0.00526681427637232,0.000317216472555131,0.00564721148447496 +3.656,0.56037447300883,-0.29275842475941,-0.00154110888739496,-5.12336949531899e-05,1.66378721772053e-05,-0.000301649831623701,-0.000239590888795327,-0.00208174071730793,0.00546181170169718,0.000306421819079107,0.00584999446776556 +3.658,0.560374370035788,-0.292758395648272,-0.00154170124924345,-5.17690997292596e-05,1.24498611697721e-05,-0.000290583358500407,-0.000286643882241311,-0.00208087870545714,0.00555290090385046,0.000295421270336617,0.00593691244251039 +3.66,0.560374265932431,-0.292758374959965,-0.00154227122082896,-5.23802704821552e-05,8.31435735537677e-06,-0.000279438228008299,-0.000315053066968218,-0.00203128275311215,0.00554269813726747,0.000284426694503935,0.00591158783229728 +3.662,0.560374160514706,-0.292758362390842,-0.00154281900215548,-5.30293119971325e-05,4.32473015732348e-06,-0.000268412565951337,-0.000324795378092712,-0.00193731323344659,0.00543717249695817,0.000273635006500271,0.00578113478166666 +3.664,0.560374053815183,-0.292758357661045,-0.00154334487109277,-5.3679451994526e-05,5.65104421590412e-07,-0.000257689538020467,-0.000316855486293121,-0.00180385803863481,0.00524510834071234,0.000263221771353818,0.00555566942218052 +3.666,0.560373945796898,-0.292758360130425,-0.00154384976030757,-5.4296733942305e-05,-2.89070199721575e-06,-0.000247432132588487,-0.000293023619257759,-0.00163629979010871,0.00497748384262891,0.000253336045031348,0.00524773143826783 +3.668,0.560373836628248,-0.292758369223853,-0.00154433459962312,-5.48515464715571e-05,-5.98009473884442e-06,-0.000237779602649951,-0.000255687665484672,-0.00144044888517047,0.00464681733976928,0.000244097507401808,0.00487167122887519 +3.67,0.560373726390712,-0.292758384050804,-0.00154480087871817,-5.53194846042437e-05,-8.65249753789764e-06,-0.00022884486322941,-0.000207629163861966,-0.00122245273626031,0.00426652568222967,0.000235595166582445,0.00444305547559354 +3.672,0.560373615350309,-0.292758403833843,-0.00154524997907604,-5.56820631270049e-05,-1.08699056838857e-05,-0.000220713499921032,-0.000151833122463696,-0.000988684831920715,0.00385032543175068,0.000227888341191575,0.00397813485497076 +3.674,0.56037350366246,-0.292758427530426,-0.00154568373271785,-5.59268170940985e-05,-1.26072368655805e-05,-0.000213443561502408,-9.13172731875632e-05,-0.000745620988562566,0.00341170146560959,0.000221008835204599,0.00349342187452504 +3.676,0.560373391643041,-0.29275845426279,-0.00154610375332205,-5.60473322197552e-05,-1.38523896381359e-05,-0.000207066694058594,-2.89865978442272e-05,-0.000499703445289156,0.00296345488252913,0.000214964666715239,0.0030054298522631 +3.678,0.560373279473131,-0.292758482939985,-0.00154651199949409,-5.60427634854754e-05,-1.46060506467371e-05,-0.000201589741972291,3.24853616229248e-05,-0.000257199820469233,0.00251733955382304,0.000209744015702567,0.00253065317173475 +3.68,0.560373167471987,-0.292758512686993,-0.00154691011228994,-5.59173907732635e-05,-1.48811889200129e-05,-0.000196997335843302,9.07466254917998e-05,-2.40581582433563e-05,0.00208378669180886,0.000205319640326788,0.00208590045830953 +3.682,0.560373055803568,-0.292758542464741,-0.00154729998883746,-5.56797769835082e-05,-1.47022832797106e-05,-0.000193254595205056,0.000143828907117616,0.000194233469585913,0.00167171655338083,0.000201652506224049,0.00168909728259728 +3.684,0.560372944752879,-0.292758571496126,-0.00154768313067076,-5.5342075144793e-05,-1.41042550416692e-05,-0.000190310469629778,0.292647639565934,-0.294110440928613,0.249519632379569,0.000198695118566912,0.484152495965446 +3.686,0.560372834435267,-0.292758598881761,-0.00154806123071598,0.00111491078128023,-0.00119114404699416,0.000804823934313219,0.204726341088146,-0.214082319142938,0.550597422821485,0.00181922834084893,0.625221269729861 +3.688,0.560377404396004,-0.292763336072314,-0.00154446383493351,0.000763563289207791,-0.000870433531613423,0.00201207922165616,-0.52342272542638,0.540495337795348,0.254827918882635,0.00232145347224606,0.794382670954838 +3.69,0.560375888688424,-0.292762080615887,-0.00154001291382935,-0.000978780120425292,0.000970837304187232,0.00182413560984376,-0.467903974982197,0.544709961542571,-0.265201094041753,0.00228648339561899,0.765489838135551 +3.692,0.560373489275522,-0.292759452723097,-0.00153716729249413,-0.001108052610721,0.00130840631455686,0.000951274845489152,0.0278687875762684,0.0504526776502755,-0.43509008224897,0.00196077319028956,0.438891241282472 +3.694,0.560371456477981,-0.292756846990629,-0.0015362078144474,-0.000867304970120219,0.00117264801478833,8.37752808478808e-05,0.133089737175407,-0.111271170569194,-0.388847951436101,0.00146093790951683,0.425789714386467 +3.696,0.560370020055642,-0.292754762131038,-0.00153683219137074,-0.000575693662019371,0.000863321632280089,-0.000604116960255252,0.138614905081935,-0.169601584169149,-0.293273383747232,0.00120071009611816,0.366043804589163 +3.698,0.560369153703333,-0.2927533937041,-0.00153862428228842,-0.000312845349792479,0.000494241678111739,-0.00108931825414105,0.119538194336133,-0.183676454240666,-0.197110694970942,0.00123643087476591,0.294752516222499 +3.7,0.560368768674243,-0.292752785164326,-0.0015411894643873,-9.75408846748404e-05,0.000128615815317423,-0.00139255974013902,0.0951061538134733,-0.171487119910579,-0.11419969385331,0.00140188404726959,0.226924178669015 +3.702,0.560368763539794,-0.292752879240839,-0.00154419452124897,6.75792654614149e-05,-0.000191706801530578,-0.00154611702955429,0.0706017344448416,-0.142347584962399,-0.0475345287515374,0.00155942179154684,0.165852257370462 +3.704,0.560369038991305,-0.292753551991532,-0.00154737393250552,0.000184866053104526,-0.000440774524532172,-0.00158269785514517,0.0477896553024992,-0.103745482867706,0.00369054687331116,0.00165329674884702,0.114282966821873 +3.706,0.560369503004007,-0.292754642338937,-0.00155052531266955,0.000258737886671412,-0.000606688733001403,-0.00153135484206104,0.0274663761803961,-0.0621265428442373,0.0415911171908894,0.00166735244176324,0.0796487926804053 +3.708,0.560370073942851,-0.292755978746464,-0.00155349935187377,0.000294731557826111,-0.000689280695909122,-0.00141633338638161,0.0100725719293093,-0.0225973006105772,0.0685060466670133,0.00160249019663484,0.0728366194307432 +3.71,0.560370681930238,-0.29275739946172,-0.00155619064621508,0.000299028174388649,-0.000697077935443712,-0.00125733065539299,-0.00415718683088872,0.0112967934971786,0.0865053567675534,0.00146840589557235,0.0873388601662886 +3.712,0.560371270055549,-0.292758767058205,-0.00155852867449534,0.000278102810502556,-0.000644093521920407,-0.0010703119593114,-0.0151535255316082,0.0375417491642326,0.0972368184781398,0.00127975205740575,0.105328111794041 +3.714,0.56037179434148,-0.292759975835808,-0.00156047189405233,0.000238414072262216,-0.000546910938786782,-0.00086838338148043,-0.0229946491847599,0.0554371232669436,0.101957975252691,0.00105358556465466,0.11831085007248 +3.716,0.560372223711838,-0.292760954701961,-0.00156200220802126,0.000186124213763516,-0.000422345028852633,-0.000662480058300635,-0.0278873286407854,0.0652845214554886,0.101642716254964,0.000807401618769513,0.123979891950584 +3.718,0.560372538838335,-0.292761665215924,-0.00156312181428553,0.000126864757699074,-0.000285772852964827,-0.000461812516460574,-0.0301411414299623,0.0680586492822487,0.0970991170219994,0.000557702062572257,0.122346665975322 +3.72,0.560372731170869,-0.292762097793372,-0.0015638494580871,6.5559648043667e-05,-0.000150110431723638,-0.000274083590212637,-0.0301397188873231,0.0651100583309859,0.0890693865589902,0.000319300835557496,0.114372540290343 +3.722,0.560372801076927,-0.29276226565765,-0.00156421814864638,6.30588214978189e-06,-2.53326196408832e-05,-0.000105534970224613,-0.0283117525257114,0.0579263509416227,0.0782942870336879,0.000108715848466848,0.101424912356889 +3.724,0.560372756394397,-0.292762199123851,-0.001564271597968,-4.76873620591789e-05,8.15949720428532e-05,3.90935579221152e-05,-0.0251031438969207,0.0479594000832305,0.0655374308130076,0.000102274778092387,0.0850025101242466 +3.726,0.560372610327479,-0.292761939277762,-0.00156406177441469,-9.41066934379008e-05,0.000166504980692039,0.000156614753027417,-0.02095155187537,0.0365138565078248,0.0515767833815169,0.000247200645652293,0.0665762256893875 +3.728,0.560372379967623,-0.292761533103928,-0.00156364513895589,-0.000131493569560659,0.000227650398074153,0.000245400691448183,-0.0162651235119382,0.024685960248183,0.0371765234040074,0.000359634205745742,0.0474978396207889 +3.73,0.560372084353201,-0.29276102867617,-0.0015630801716489,-0.000159167187485654,0.000265248821684771,0.000305320846643447,-0.0114064444695083,0.0133402621761702,0.0230502679530314,0.00043464002389601,0.0289721318351184 +3.732,0.560371743298874,-0.292760472108642,-0.00156242385556932,-0.000177119347438692,0.000281011446778834,0.000337601763260309,-0.00668145386240048,0.00311221543675131,0.00982431956186162,0.000473617616874954,0.0122818958428134 +3.734,0.560371375875811,-0.292759904630383,-0.00156172976459586,-0.000185893002935256,0.000277697683431777,0.000344618124890894,-0.00233328209531258,-0.00557336195944334,-0.00199222753398397,0.000480035273627864,0.00636203893531313 +3.736,0.560370999726862,-0.292759361317908,-0.00156104538306975,-0.000186452475819942,0.00025871799894106,0.000329632853124373,0.00145959108688309,-0.0124755624580919,-0.0120263492619371,0.00045864730084714,0.0173897424177805 +3.738,0.560370630065908,-0.292758869758387,-0.00156041123318336,-0.000180054638587723,0.000227795433599409,0.000296512727843145,0.00458121604540728,-0.0175073679997695,-0.0200477371647967,0.00041500630142045,0.0270075404315687 +3.74,0.560370279508307,-0.292758450136173,-0.00155985933215838,-0.000168127611638313,0.000188688526941982,0.000249441904465186,0.0069731829893671,-0.0207054955576879,-0.0259643471315143,0.000355093674539491,0.0339336138549729 +3.742,0.560369957555461,-0.292758115004279,-0.0015594134655655,-0.000152161906630255,0.000144973451368657,0.000192655339317088,0.00862738380735804,-0.0222018165449422,-0.0298087507732969,0.000285108097391984,0.0381564415521057 +3.744,0.560369670860681,-0.292757870242368,-0.00155908871080111,-0.000133618076408881,9.98812607622134e-05,0.000130206901371999,0.00957744947238657,-0.0221972024233574,-0.0317179257051589,0.000211622054048146,0.0398806989013181 +3.746,0.560369423083156,-0.292757715479236,-0.00155889263796001,-0.000113852108740708,5.61846416752276e-05,6.57836364964525e-05,0.00988943212737457,-0.020938088842598,-0.0319091636958798,0.000142991270557252,0.0394258691718132 +3.748,0.560369215452246,-0.292757645503801,-0.00155882557625513,-9.40603478993828e-05,1.61289053918212e-05,2.57024658847915e-06,0.0096524632592354,-0.0186958252872127,-0.0306547806461915,9.54677788765238e-05,0.037180902444763 +3.75,0.560369046841764,-0.292757650963615,-0.00155888235697366,-7.52422557037668e-05,-1.85986594736231e-05,-5.68354860883135e-05,0.0089698477812039,-0.015748845179353,-0.0282576308957907,9.61123283273363e-05,0.0335704929595016 +3.752,0.560368914483223,-0.292757719898439,-0.00155905291819948,-5.81809567745672e-05,-4.68664753255909e-05,-0.000110460276994684,0.00795099964340239,-0.012367642000799,-0.0250290234310793,0.000133352776627975,0.0290280722388316 +3.754,0.560368814117937,-0.292757838429516,-0.00155932419808164,-4.34382571301572e-05,-6.8069227476819e-05,-0.000156951579812631,0.00670449720047149,-0.00880259857713449,-0.0212700227830015,0.000176505241614738,0.0239760274776849 +3.756,0.560368740730195,-0.292757992175349,-0.00155968072451873,-3.13629679726812e-05,-8.20768696341289e-05,-0.00019554036812669,0.00533240221423092,-0.0052746400094894,-0.0172567354390571,0.000214374167884366,0.0188162498553152 +3.758,0.560368688666065,-0.292758166736995,-0.00156010635955414,-2.21086482732335e-05,-8.91677875147766e-05,-0.000225978521568859,0.00392595948112139,-0.00196870791197012,-0.0132297100826489,0.000243938473532154,0.0139396627491845 +3.76,0.560368652295602,-0.292758348846499,-0.00156058463860501,-1.56591300481956e-05,-8.99517012820094e-05,-0.000248459208457285,0.00256260653669349,0.000970080481221824,-0.00938729339573783,0.000264704543188467,0.0097790227374526 +3.762,0.560368626029545,-0.2927585265438,-0.00156110019638797,-1.18582221264596e-05,-8.52874655898893e-05,-0.00026352769515181,0.00130427266209487,0.00343775440059257,-0.00588257206141085,0.000277238913810404,0.00693714181443432 +3.764,0.560368604862713,-0.292758689996361,-0.00156163874938561,-1.04420393998161e-05,-7.62006836796391e-05,-0.000271989496702929,0.000196774818661538,0.00537058959110269,-0.00282337395043212,0.000282655031260341,0.00607069957659729 +3.766,0.560368584261387,-0.292758831346534,-0.00156218815437478,-1.10711228518134e-05,-6.38051072254786e-05,-0.000274821190953539,-0.000729797083875992,0.00674232020908548,-0.000274762723857791,0.000282347920952814,0.00678726602837241 +3.768,0.560368560578222,-0.29275894521679,-0.00156273803414943,-1.33612277353201e-05,-4.92314028432971e-05,-0.00027308854759836,-0.00145994900196955,0.00755987116310418,0.00173661562734294,0.000277812181629776,0.00789296756158403 +3.77,0.560368530816476,-0.292759028272146,-0.00156328050856518,-1.69109188596916e-05,-3.35656225730618e-05,-0.000267874728444167,-0.00199105477938221,0.00785803460495725,0.00321689301065186,0.000270498614292999,0.00872131914501397 +3.772,0.560368492934546,-0.292759079479281,-0.0015638095330632,-2.1325446852849e-05,-1.77992644234681e-05,-0.000260220975555753,-0.00233126093429625,0.00769351384682924,0.00419862392422865,0.000261699340115098,0.00906936468073891 +3.774,0.560368445514689,-0.292759099469203,-0.0015643213924674,-2.62359625968766e-05,-2.7915671857448e-06,-0.000251080232747253,-0.00249717409250838,0.00713874134805613,0.00473416033285045,0.000252462674186011,0.00892243131326187 +3.776,0.560368387990696,-0.292759090645549,-0.00156481385399419,-3.13141432228825e-05,1.07557009687564e-05,-0.000241284334224351,-0.00251150929914123,0.0062758158669851,0.00488919036072815,0.000243545459023979,0.00834252516564451 +3.778,0.560368320258116,-0.2927590564464,-0.0015652865298043,-3.62819997934416e-05,2.23116962821956e-05,-0.00023152347130434,0.296178659681123,-0.288522945392916,0.259275752259417,0.000235408821127866,0.488048362540431 +3.78,0.560368242862697,-0.292759001398764,-0.00156573994787941,0.00115340049550161,-0.00114333608060291,0.000795818674813319,0.207888601493067,-0.209477214362791,0.567077842808516,0.00180855673381108,0.639277446631975 +3.782,0.560372933860098,-0.292763629790722,-0.00156210325510504,0.000795272406178826,-0.000815597161168968,0.00203678789992972,-0.534954778232121,0.543156817606193,0.263212799824115,0.00233370132592765,0.806521494603036 +3.784,0.560371423952321,-0.292762263787409,-0.00155759279627969,-0.000986418617426875,0.00102929118982187,0.00184866987410978,-0.48093772627572,0.546118859332672,-0.268378832476122,0.00233453257541897,0.775612082677497 +3.786,0.560368988185628,-0.292759512625963,-0.0015547085756086,-0.00112847849892406,0.00136887827616172,0.000963272570025236,0.0243201108141022,0.0496523652991631,-0.441767951878633,0.00201870886995733,0.445214272543968 +3.788,0.560366910038326,-0.292756788274304,-0.00155373970599959,-0.000889138174170467,0.00122790065101852,8.15980665952453e-05,0.133447468901593,-0.114985930107364,-0.395476766787763,0.00151821110060853,0.432934018238115 +3.79,0.560365431632932,-0.292754601023359,-0.00155438218334222,-0.000594688623317685,0.000908934555732265,-0.000618634497125819,0.439735298680965,-0.468502289113076,-0.0434168354601638,0.001250010090496,0.644008190484876 +3.792,0.560364531283832,-0.292753152536081,-0.00155621424398809,0.000869803020553394,-0.000646108505433784,-9.20692752454099e-05,0.332506917354036,-0.402813988758382,0.363182976050729,0.00108742367401207,0.636177517459385 +3.794,0.560368910845014,-0.29275718545738,-0.0015547504604432,0.000735339046098459,-0.000702321399301264,0.000834097407077099,-0.137346213652245,0.0697308643674009,0.398711068765045,0.00131517958664443,0.427430570041261 +3.796,0.560367472640017,-0.292755961821679,-0.00155287785435979,0.000320418165944414,-0.00036718504796418,0.00150277499981477,-0.197193791282024,0.183975607595532,0.243506241116332,0.00157981814161755,0.363356168205425 +3.798,0.560370192517678,-0.292758654197572,-0.00154873936044395,-5.34361190296372e-05,3.35810310808648e-05,0.00180812237154243,-0.459863410851024,0.481752555393094,-0.181966771567454,0.00180922348396698,0.690414214238087 +3.8,0.560367258895541,-0.292755827497554,-0.00154564536487362,-0.00151903547745968,0.0015598251736082,0.000774907913544953,-0.31792742040404,0.364666682534792,-0.628975745021152,0.00231106158041658,0.793517562389523 +3.802,0.560364116375768,-0.292752414896878,-0.00154563972878977,-0.0013251458006458,0.00149224776122003,-0.000707780608542179,0.177490230013344,-0.14945571624389,-0.677002232182462,0.0021174910067492,0.715661802283873 +3.804,0.560361958312338,-0.292749858506509,-0.00154847648730778,-0.000809074557406308,0.000962002308632636,-0.0019331010151849,0.553594557625713,-0.585953847540009,-0.256833557766775,0.00230584683276353,0.846033286623457 +3.806,0.560360880077538,-0.292748566887643,-0.00155337213285051,0.000889232429857056,-0.000851567628940008,-0.00173511483960928,0.435730092042396,-0.524806219828754,0.246838618059297,0.00212756321823826,0.72540442847259 +3.808,0.560365515242057,-0.292753264777025,-0.00155541694666622,0.000933845810763278,-0.00113722257068238,-0.000945746542947711,-0.363457809807177,0.263606446181813,0.113210716285068,0.00174922259791232,0.463040607571531 +3.81,0.560364615460781,-0.292753115777926,-0.0015571551190223,-0.000564598809371652,0.000202858155787244,-0.00128227197446901,-0.363459476626637,0.330752514189624,-0.283320346085823,0.00141567816378651,0.567248124984699 +3.812,0.56036325684682,-0.292752453344402,-0.0015605460345641,-0.000519992095743271,0.000185787486076116,-0.002079027927291,0.396457553390738,-0.382257765267623,-0.0972135583395329,0.002151108061459,0.55924061607952 +3.814,0.560362535492398,-0.292752372627982,-0.00156547123073146,0.0010212314041913,-0.00132617290528325,-0.00167112620782714,0.376217287455238,-0.388579523759313,0.332813087621994,0.0023652295783075,0.635057513110172 +3.816,0.560367341772437,-0.292757758036023,-0.00156723053939541,0.000984877054077681,-0.00136853060896114,-0.000747775576803027,-0.399071565307384,0.375945006639288,0.171336358954776,0.00184445849846923,0.574411794929196 +3.818,0.560366475000615,-0.292757846750417,-0.00156846233303867,-0.000575054857038237,0.000177607121273904,-0.000985780772008032,-0.391026500429214,0.42343811704551,-0.23901529146858,0.00115498749282891,0.623963037816163 +3.82,0.560365041553009,-0.292757047607538,-0.00157117366248344,-0.000579228947639176,0.000325221859220903,-0.00170383674267735,0.0737965768146663,-0.0179556294416238,-0.318387917246955,0.00182875232800826,0.327321256912932 +3.822,0.560364158084824,-0.292756545862981,-0.00157527768000938,-0.000279868549779571,0.000105784603507408,-0.00225933244099585,0.147171029932225,-0.127272896756347,-0.206518139036875,0.00227905679315615,0.283738337295681 +3.824,0.560363922078809,-0.292756624469124,-0.00158021099224742,9.4551720897229e-06,-0.000183869727804486,-0.00252990929882485,0.125252789903718,-0.137423241310802,-0.0699633838675828,0.00253659979842359,0.198666262141398 +3.826,0.560364195905512,-0.292757281341892,-0.00158539731720468,0.000221142609835301,-0.0004439083617358,-0.00253918597646618,0.0851445724481257,-0.112207469323,0.0458344261390283,0.00258716526541817,0.148124640113454 +3.828,0.560364806649249,-0.292758400102571,-0.00159036773615329,0.000350033461882226,-0.000632699605096487,-0.00234657159426873,0.0463650566828732,-0.0723594602083931,0.131099644263763,0.0024554491364627,0.156756903162002 +3.83,0.56036559603936,-0.292759812140312,-0.00159478360358176,0.000406602836566794,-0.000733346202569373,-0.00201478739941113,0.0137251914139602,-0.0280097805678558,0.186761346765256,0.00218231317284045,0.18934816960399 +3.832,0.560366433060595,-0.292761333487381,-0.00159842688575093,0.000404934227538067,-0.00074473872736791,-0.00159952620720771,-0.0118012763311581,0.014045703412846,0.217101606174267,0.00181027389867327,0.217875329743532 +3.834,0.56036721577627,-0.292762791095222,-0.00160118170841059,0.000359397731242161,-0.000677163388917989,-0.00114638097471406,-0.0303525433051343,0.0490918524928551,0.227218416700737,0.00137909619813096,0.234434416744343 +3.836,0.56036787065152,-0.292764042140937,-0.00160301240964979,0.00028352405431753,-0.000548371317396489,-0.000690652540404762,-0.0424781122984554,0.0743466180459677,0.221986391034718,0.000926335750517793,0.237928071996417 +3.838,0.560368349872487,-0.292764984580491,-0.00160394431857221,0.000189485282048339,-0.000379776916734118,-0.000258435410575187,-0.0489288796007346,0.0888014247794985,0.20563109037581,0.000496914519848411,0.229268126068577 +3.84,0.560368628592648,-0.292765561248604,-0.00160404615129209,8.78085359146129e-05,-0.000193165618278534,0.000131871821098389,-0.0505688630692054,0.0928955435908311,0.181633056859684,0.000249826884590514,0.210184108046592 +3.842,0.560368701106631,-0.292765757242964,-0.00160341683128781,-1.27901702284827e-05,-8.19474237079287e-06,0.00046809681686355,-0.0483209357249325,0.0880949654960548,0.152795567803267,0.000468343220528263,0.182871871307226 +3.844,0.560368577431967,-0.292765594027573,-0.00160217376402463,-0.000105475206985117,0.000159214243705685,0.000743054092311456,-0.0431206521878113,0.0764630452669555,0.121364848225912,0.000767205043510618,0.1497845596899 +3.846,0.560368279205803,-0.29276512038599,-0.00160044461491857,-0.000185272778979728,0.00029765743869703,0.000953556209767197,0.267133586237533,-0.232812240291702,0.348209164803374,0.00101597017605249,0.496801282787021 +3.848,0.560367836340851,-0.292764403397819,-0.00159835953918556,0.000963059137965016,-0.000772034717461122,0.00213589075152495,0.186742639865511,-0.170721650257638,0.62975889475892,0.00246689071720517,0.678686202113029 +3.85,0.560372131442355,-0.292768208524859,-0.00159190105191247,0.000561697780482317,-0.000385229162333522,0.00347259178880288,-0.558237346438838,0.563831108687378,0.291176824195396,0.00353875679240212,0.845173589880345 +3.852,0.560370083131973,-0.292765944314468,-0.00158446917203035,-0.00126989024779034,0.00148328971728839,0.00330059804830654,-0.497145840792911,0.550337213651302,-0.274765825479181,0.00383493378082744,0.790899041975918 +3.854,0.560367051881364,-0.29276227536599,-0.00157869865971924,-0.00142688558268933,0.00181611969227169,0.00237352848688615,0.0224700977269343,0.0389561332983511,-0.473136749873543,0.00331178662972175,0.475269260203431 +3.856,0.560364375589643,-0.292758679835699,-0.00157497505808281,-0.0011800098568826,0.0016391142504818,0.00140805104881236,0.140958957964288,-0.138304693211855,-0.445175214774939,0.00246205738043089,0.487009843683591 +3.858,0.560362331841936,-0.292755718908988,-0.00157306645552399,-0.000863049750832178,0.00126290091942427,0.000592827627786396,0.457972055382948,-0.499776181783067,-0.101882106737228,0.00164049327976709,0.685488584195652 +3.86,0.560360923390639,-0.292753628232021,-0.00157260374757166,0.000651878364649194,-0.000359990476650473,0.00100052262186345,0.35460841592283,-0.438517426745721,0.300710642961964,0.0012472305570492,0.639117792737446 +3.862,0.560364939355395,-0.292757158870895,-0.00156906436503654,0.000555383912859141,-0.000491168787558615,0.00179567019963425,-0.423065515328668,0.325663039986434,0.070145049910035,0.00194271190205574,0.538480430378299 +3.864,0.560363144926291,-0.292755592907171,-0.00156542106677313,-0.00104038369666548,0.000942661683295264,0.00128110282150359,-0.39459349070181,0.360902853848571,-0.403794337352353,0.0019005877313886,0.67007817431857 +3.866,0.560360777820608,-0.292753388224162,-0.00156393995375052,-0.0010229900499481,0.000952442627835669,0.000180492850224839,0.0947644370474786,-0.0922578786040349,-0.525117791182541,0.00140933788375734,0.541516859672783 +3.868,0.560359052966091,-0.29275178313666,-0.00156469909537223,-0.000661325948475566,0.000573630168879124,-0.000819368343226572,0.184729160801477,-0.209774988272487,-0.434528667512222,0.00119906966547289,0.516667757311299 +3.87,0.560358132516814,-0.292751093703486,-0.00156721742712343,-0.000284073406742191,0.00011334267474572,-0.00155762181982405,0.172532859665786,-0.222887404338623,-0.301687128820282,0.00158736574107186,0.412869841927317 +3.872,0.560357916672464,-0.292751329765961,-0.00157092958265152,2.88054901875778e-05,-0.000317919448475368,-0.0020261168585077,0.136549631352123,-0.195449486137255,-0.17554036772522,0.00205110995714831,0.296075537920348 +3.874,0.560358247738775,-0.29275236538128,-0.00157532189455746,0.000262125118666301,-0.000668455269803303,-0.00225978329072493,0.0974169956716174,-0.148649462700795,-0.0694637556138826,0.00237110998197115,0.190819147757514 +3.876,0.560358965172939,-0.29275400358704,-0.00157996871581442,0.000418473472874048,-0.000912517299278547,-0.00230397188096323,0.0609752116090266,-0.0933718295112461,0.0140953396680216,0.00251318409537605,0.112405309382607 +3.878,0.560359921632666,-0.292756015450477,-0.00158453778208131,0.000506025965102408,-0.00104194258784829,-0.00220340193205284,0.0291505088609311,-0.0374223009247387,0.0764469840529648,0.00248931450562279,0.0899684508266491 +3.88,0.560360989276799,-0.292758171357392,-0.00158878232354263,0.000535075508317772,-0.0010622065029775,-0.00199818394475137,0.00267961110245185,0.0133111346181658,0.120174441091067,0.00232536610701011,0.12093908761039 +3.882,0.5603620619347,-0.292760264276489,-0.00159253051786032,0.000516744409512215,-0.000988698049375624,-0.00172270416768858,-0.0182011049704167,0.0548274662302838,0.148109099211597,0.00205237868508053,0.158976842793684 +3.884,0.560363056254437,-0.292762126149589,-0.00159567314021339,0.000462271088436105,-0.000842896638056367,-0.00140574754790498,-0.0335655388969402,0.084967363266769,0.162904711445248,0.00170302538738901,0.186772704732272 +3.886,0.560363911019053,-0.292763635863041,-0.00159815350805194,0.000382482253924454,-0.000648828596308548,-0.00107108532190758,-0.0437248115700561,0.103185118498217,0.166906589637791,0.0013093872569873,0.201039392883201 +3.888,0.560364586183453,-0.292764721463974,-0.00159995748150102,0.000287371842155881,-0.0004301561640635,-0.000738121189353818,-0.049176423530528,0.110192601338738,0.162164019136546,0.000901354420480082,0.202133369643831 +3.89,0.560365060506422,-0.292765356487698,-0.00160110599280935,0.000185776559802342,-0.000208058190953597,-0.000422429245361399,-0.0505542952569659,0.107560563244319,0.150496627945341,0.000506209055955618,0.191766124634363 +3.892,0.560365329289692,-0.292765553696738,-0.00160164719848246,8.51546611280173e-05,8.60889137754838e-08,-0.000136134677572452,0.257411611401248,-0.195294597896134,0.395655179822977,0.000160573890034726,0.510826525321808 +3.894,0.560365401125067,-0.292765356143342,-0.00160165053151964,0.00121542300540733,-0.000989236582538132,0.00116019147393051,0.172910557448558,-0.130028722809816,0.691394413059216,0.00194984264864788,0.724452734167123 +3.896,0.560370190981714,-0.292769510643068,-0.00159700643258674,0.000776796890922248,-0.000520028802325489,0.00262944297466441,-0.581843961136584,0.604246899484766,0.355852656632425,0.00279066546221624,0.911201308098501 +3.898,0.56036850831263,-0.292767436258551,-0.00159113275962099,-0.00111195283913901,0.00142775101540093,0.00258360210046021,-0.522920906013967,0.588381269598508,-0.212501210418089,0.00315434809302178,0.815349959704404 +3.9,0.560365743170357,-0.292763799639007,-0.0015866720241849,-0.00131488673313362,0.00183349627606855,0.00177943813299205,0.00105657481375143,0.0722390607124644,-0.412587561758777,0.00287350583512097,0.418865246064899 +3.902,0.560363248765698,-0.292760102273447,-0.00158401500708902,-0.001107726539884,0.00171670725825079,0.000933251853425104,0.122214633996309,-0.111666087043716,-0.387136303641247,0.00224613020985332,0.421046611856115 +3.904,0.560361312264197,-0.292756932809974,-0.0015829390167712,-0.000826028197148387,0.00138683192789368,0.000230892918427067,0.444423366940948,-0.479681514290591,-0.0448028929919338,0.00163062470191313,0.65544929892074 +3.906,0.560359944652909,-0.292754554945735,-0.00158309143541531,0.000669966927879794,-0.000202018798911574,0.000754040281457368,0.343130877850095,-0.425183124184297,0.355729644681973,0.00102870988409107,0.651968610080929 +3.908,0.560363992131909,-0.292757740885169,-0.00157992285564537,0.000546495314251993,-0.000313900568843506,0.00165381149715496,-0.439346918845728,0.331867732260293,0.115109497151114,0.00176982574389164,0.562505202775234 +3.91,0.560362130634166,-0.292755810548011,-0.00157647618942669,-0.00108742074750312,0.0011254521301296,0.00121447827006182,-0.409279860079381,0.360879524916035,-0.371157569435675,0.00198093004615657,0.65992573576094 +3.912,0.560359642448919,-0.292753239076649,-0.00157506494256512,-0.00109062412606553,0.00112961753082064,0.000169181219412256,0.0870357293319966,-0.0981292597873605,-0.501017695902876,0.001579278010768,0.517902791472101 +3.914,0.560357768137662,-0.292751292077888,-0.00157579946454904,-0.000739277830175133,0.000732935090980157,-0.00078959251354968,0.181171235374977,-0.220964641930998,-0.416873725810062,0.00130659170946101,0.505402901437806 +3.916,0.560356685337598,-0.292750307336285,-0.00157822331261932,-0.000365939184565622,0.000245758963096643,-0.00149831368382799,0.479225917518477,-0.53014691333078,-0.0257239684154503,0.00156181075994792,0.715104854050522 +3.918,0.560356304380924,-0.292750309042035,-0.00158179271928435,0.00117762583989878,-0.00138765256234297,-0.000892488387211481,0.356002817468448,-0.423926872175628,0.413944611174325,0.00202704656431017,0.691232334398751 +3.92,0.560361395840958,-0.292755857946534,-0.00158179326616817,0.00105807208530817,-0.00144994852560587,0.000157464760869308,-0.446599186826323,0.374774674988253,0.20160907976581,0.00180184972057346,0.616889870017737 +3.922,0.560360536669265,-0.292756108836138,-0.00158116286024088,-0.000608770907406519,0.000111446137610049,-8.60520681482401e-05,-0.431104199755116,0.434447816138882,-0.265278090712944,0.000624841754146875,0.667059368727138 +3.924,0.560358960757328,-0.292755412161984,-0.00158213747444076,-0.000666344713712296,0.000287842738949662,-0.000903647601982471,0.0559669730212929,-0.00503280167540864,-0.382664630924241,0.00115907191684858,0.386768471985832 +3.926,0.56035787129041,-0.292754957465182,-0.00158477745064881,-0.000384903015321347,9.13149309084148e-05,-0.0016167105918452,0.143919410063031,-0.118567789132023,-0.292897253296661,0.00166440436360722,0.347217393287369 +3.928,0.560357421145267,-0.29275504690226,-0.00158860431680814,-9.0667073460171e-05,-0.000186428417578432,-0.00207523661516912,0.131361334226865,-0.134577437280875,-0.166239838813968,0.0020855654106331,0.251003128992138 +3.93,0.560357508622116,-0.292755703178852,-0.00159307839710948,0.000140542321586112,-0.000446994818215085,-0.00228166994710108,0.0970803602298729,-0.115318585396096,-0.0511555280531538,0.00232928621237756,0.159184988395626 +3.932,0.560357983314553,-0.292756834881533,-0.00159773099659655,0.000297654367459321,-0.000647702759162815,-0.00227985872738173,0.0615075490748017,-0.0804268939051665,0.0399658658251088,0.00238869688397532,0.108852810196029 +3.934,0.560358699239586,-0.292758293989889,-0.00160219783201901,0.000386572517885319,-0.000768702393835751,-0.00212180648380064,0.0300334089819997,-0.0392891671280315,0.105843133086161,0.00228962975971476,0.116826423082235 +3.936,0.560359529604625,-0.292759909691108,-0.00160621822253175,0.00041778800338732,-0.000804859427674941,-0.00185648619503709,0.00408765443715707,0.00161964168465811,0.148970139214784,0.00206612838576282,0.149035011106975 +3.938,0.5603603703916,-0.292761513427599,-0.00160962377679916,0.000402923135633948,-0.000762223827097119,-0.00152592592694151,0.292906692560268,-0.254653278953381,0.438222075154446,0.00175265003646934,0.585389793369318 +3.94,0.560361141297167,-0.292762958586417,-0.00161232192623952,0.00158941477362839,-0.00182347254348847,-0.000103597894419299,0.189059699812199,-0.145800855794881,0.766872055634435,0.00242116169703979,0.803177570252421 +3.942,0.560366728050694,-0.292768807317773,-0.00161003816837683,0.00115916193488275,-0.00134542725027664,0.00154156229559624,-0.588725586773974,0.624922512851982,0.447691310741931,0.00235164733501263,0.968273449654293 +3.944,0.560365777944907,-0.292768340295418,-0.00160615567705713,-0.000765487573467504,0.000676217507919463,0.00168716734854843,-0.543031421412764,0.637310605865192,-0.113902746573177,0.00197225125305016,0.844998087966321 +3.946,0.5603636661004,-0.292766102447742,-0.00160328949898264,-0.00101296375076831,0.00120381517318413,0.00108595130930353,-0.0234900385809311,0.139855899229657,-0.309885552812923,0.00191168950871657,0.340793941119909 +3.948,0.560361726089904,-0.292763525034725,-0.00160181187181992,-0.000859447727791229,0.00123564110483809,0.000447625137296736,0.0938064013897287,-0.0345988542121977,-0.284087344371887,0.00157029538632415,0.30116829329589 +3.95,0.560360228309489,-0.292761159883322,-0.00160149899843345,-0.000637738145209398,0.00106541975633534,-5.0398068184021e-05,0.416839560278547,-0.399936400614919,0.0575477468456319,0.00124272650423231,0.580530866291396 +3.952,0.560359175137323,-0.2927592633557,-0.00160201346409265,0.000807910513322962,-0.000364104497621586,0.000677816124679264,0.31515844479274,-0.348866847129508,0.453949161104832,0.00111567297251536,0.653530996371284 +3.954,0.560363459951542,-0.292762616301313,-0.00159878773393474,0.000622895633961562,-0.000330047632182695,0.00176539857623531,-0.472935459475131,0.399630442061288,0.199004322238086,0.0019009372802098,0.650365404461595 +3.956,0.560361666719859,-0.292760583546229,-0.00159495186978771,-0.00108383132457757,0.00123441727062357,0.00147383341363161,-0.440722027976458,0.417388846658816,-0.305684733261334,0.00220695746884399,0.679626744182357 +3.958,0.560359124626244,-0.29275767863223,-0.00159289240028021,-0.00113999247794427,0.00133950775445257,0.000542659643189974,0.0641342990242987,-0.0549087617145171,-0.451497599709103,0.00184074532794604,0.459323701726181 +3.96,0.560357106749947,-0.292755225515211,-0.00159278123121495,-0.000827294128480371,0.0010147822237655,-0.000332156985204806,0.164768504208601,-0.191937855678614,-0.382068925891196,0.00135075045789698,0.458219886684653 +3.962,0.56035581544973,-0.292753619503335,-0.00159422102822103,-0.000480918461109869,0.000571756331738115,-0.00098561606037481,0.471325001541455,-0.513899365402192,-0.00176249609872002,0.00123678085673561,0.697311208307544 +3.964,0.560355183076103,-0.292752938489884,-0.00159672369545645,0.00105800587768545,-0.00104081523784327,-0.000339206969599687,0.352800405119257,-0.419154923464448,0.42841391236642,0.00152241064262199,0.695483613053465 +3.966,0.560360047473241,-0.292757782764287,-0.00159557785609943,0.000930283159367161,-0.00110486336211968,0.000728039589090872,-0.452708109735522,0.369220408986264,0.200898993423653,0.00161746451238973,0.617761077270922 +3.968,0.56035890420874,-0.292757357943332,-0.00159381153710009,-0.000752826561256636,0.000436066398101786,0.000464389004094928,-0.434443565032471,0.420893388870801,-0.281212829706528,0.000986184000078705,0.667063049182626 +3.97,0.560357036166996,-0.292756038498694,-0.00159372030008305,-0.000807491100762724,0.000578710193363529,-0.000396811729735241,0.0600591320357168,-0.0248792693946509,-0.407929174801348,0.00106976956143336,0.41307661400835 +3.972,0.560355674244337,-0.292755043102559,-0.00159539878401903,-0.000512590033113769,0.000336549320523183,-0.00116732769511046,0.46320360350821,-0.434878528483145,-0.0562109739189047,0.0013185855812059,0.637837429465823 +3.974,0.560354985806863,-0.292754692301412,-0.00159838961086349,0.00104532331327012,-0.00116080392056905,-0.00062165562541086,0.363273911285766,-0.371877296418548,0.38984058199111,0.00168125616367033,0.649797151101476 +3.976,0.56035985553759,-0.292759686318241,-0.00159788540652067,0.000940505612029296,-0.00115095986515101,0.000392034632853977,-0.443850065340311,0.399401267503485,0.18512138042024,0.00153718917859969,0.625135328128785 +3.978,0.560358747829311,-0.292759296140873,-0.00159682147233207,-0.000730076948091129,0.000436801149444887,0.000118829896270101,-0.42962153027487,0.439720138051269,-0.276912005808122,0.000859027437593232,0.674246778297253 +3.98,0.560356935229798,-0.292757939113643,-0.00159741008693559,-0.000777980509070186,0.000607920687054064,-0.00071561339037851,0.0619625142583845,-0.0136712936804617,-0.388206808512626,0.00121939483299316,0.393358339964563 +3.982,0.560355635907275,-0.292756864458125,-0.00159968392589359,-0.000482226891057591,0.00038211597472304,-0.00143399733778041,0.151261054182061,-0.136501421641594,-0.293937939843148,0.00156041781499664,0.357647951345564 +3.984,0.560355006322234,-0.292756410649744,-0.00160314607628671,-0.000172936292341941,6.19150004876889e-05,-0.0018913651497511,0.138722337610086,-0.156973976653957,-0.165257986690058,0.00190026381278689,0.266823759180878 +3.986,0.560354944162106,-0.292756616798123,-0.00160724938649259,7.26624593827551e-05,-0.000245779931892786,-0.00209502928454064,0.103984540866797,-0.138614519133717,-0.0502154079134314,0.00211064807843649,0.180411631681171 +3.988,0.560355296972071,-0.292757393769472,-0.00161152619342488,0.000243001871125248,-0.00049254307604718,-0.00209222678140483,0.0677809023214014,-0.102342888080864,0.0395817253027661,0.00216311384257972,0.128976860088076 +3.99,0.56035591616959,-0.292758586970427,-0.00161561829361821,0.000343786068668361,-0.000655151484216243,-0.00193670238332957,0.0356038273169323,-0.0585916163364785,0.103600229723992,0.00207321693266181,0.124232111884967 +3.992,0.560356672116346,-0.292760014375409,-0.00161927300295819,0.000385417180392977,-0.000726909541393094,-0.00167782586250886,0.321391377067214,-0.306178741842771,0.413598523335382,0.00186870102189034,0.606713752699567 +3.994,0.560357457838312,-0.292761494608592,-0.00162232959706825,0.00162935157693722,-0.00187986645158733,-0.000282308289988042,0.210956112758897,-0.185794908055814,0.759876442257659,0.00250367378219833,0.810206416210073 +3.996,0.560363189522654,-0.292767533841215,-0.00162040223611815,0.00122924163142857,-0.00147008917361635,0.00136167990652178,-0.581224828558046,0.596817898105422,0.447134623788452,0.00235082311853664,0.945485735810829 +3.998,0.560362374804838,-0.292767374965287,-0.00161688287744216,-0.000695547737294965,0.00050740514083436,0.00150623020516577,-0.541946899301785,0.621259385054389,-0.11262351619701,0.00173492825867671,0.832077954029281 +4,0.560360407331704,-0.292765504220652,-0.00161437731529748,-0.000938545965778573,0.00101494836660121,0.000911185841733736,-0.0217510949182349,0.134150212528758,-0.304290492155995,0.00165567157217901,0.333259798457886 +4.002,0.560358620620975,-0.29276331517182,-0.00161323813407523,-0.000782552116967895,0.00104400599094933,0.000289068236541924,0.093941463261169,-0.0324147485277417,-0.273720847963194,0.00133637448729257,0.291202364433149 +4.004,0.560357277123236,-0.292761328196688,-0.00161322104235131,-0.000562780112733855,0.000885289372490229,-0.000183697550119162,0.105038329742358,-0.0994322087894657,-0.194105260928665,0.00106498991462485,0.242067484764066 +4.006,0.560356369500524,-0.29275977401433,-0.0016139729242757,-0.000362398797998415,0.000646277155791424,-0.000487352807172823,0.0907738740007934,-0.125028589873628,-0.115634329103353,0.000886859520751612,0.192985342847798 +4.008,0.560355827528044,-0.292758743088065,-0.00161517045358001,-0.000199684616730722,0.000385175012995773,-0.000646234866532524,0.071561838281573,-0.126343473811527,-0.0518429990030856,0.000778365749193461,0.15417998125125 +4.01,0.560355570762057,-0.292758233314278,-0.00161655786374183,-7.61514448721549e-05,0.000140903260545373,-0.000694724803185143,0.052728930270695,-0.111612683643954,-0.00486106664813104,0.000712948331612515,0.12353688196913 +4.012,0.560355522922265,-0.292758179475023,-0.00161794935279275,1.12311043520817e-05,-6.12757215800939e-05,-0.00066567913312505,0.0357609117873593,-0.0872662736274486,0.0270760034583625,0.00066858773548297,0.0981190872764381 +4.014,0.560355615686474,-0.292758478417165,-0.00161922058027433,6.68922022772985e-05,-0.00020816183396446,-0.000586420789351681,0.021132088155745,-0.058858735066408,0.0469475526041358,0.000625855620753543,0.0781983921762966 +4.016,0.560355790491074,-0.292759012122359,-0.00162029503595015,9.57594569750525e-05,-0.0002967106618457,-0.000477888922708527,0.00900337193687388,-0.0308247404961932,0.0577841852917432,0.000570600484490319,0.0661077711220236 +4.018,0.560355998724302,-0.292759665259812,-0.00162113213596517,0.00010290569002479,-0.00033146079594922,-0.000355284048184733,-0.00060610220315412,-0.00626535558849051,0.0621504054870146,0.000496671516382106,0.0624683515288441 +4.02,0.560356202113834,-0.292760337965542,-0.00162171617214289,9.33350481624358e-05,-0.000321772084199665,-0.000229287300760441,-0.00777501435455501,0.0130360941832757,0.061991680019317,0.000405981984422572,0.0638228720082868 +4.022,0.560356372064495,-0.292760952348149,-0.00162204928516821,7.18056326065665e-05,-0.000279316419216111,-0.000107317328107438,-0.0126653963566901,0.0264218923649741,0.0586808171498811,0.000307718572448689,0.065589381475938 +4.024,0.560356489336365,-0.292761455231219,-0.00162214544145532,4.26734627356809e-05,-0.00021608451473978,5.43596783905758e-06,-0.0155093509493538,0.0340807186673274,0.0531474425337411,0.000220324968350223,0.0650129679343211 +4.026,0.560356542758346,-0.292761816686208,-0.00162202754129685,9.7682288091583e-06,-0.000142993544546816,0.000105272442027504,-0.0165909684393659,0.036754168483009,0.0460239088862188,0.000177833796356498,0.0611909251752285 +4.028,0.56035652840928,-0.292762027205397,-0.00162172435168721,-2.36904110217902e-05,-6.90678408077273e-05,0.000189531603383953,-0.0162264135322715,0.0354754492275153,0.0377752608230325,0.000203110390894989,0.0543026180240182 +4.03,0.560356447996701,-0.292762092957571,-0.00162126941488332,-5.51374253199349e-05,-1.09174763673904e-06,0.00025637348531965,-0.01474464885604,0.031364653759611,0.028793694657764,0.000262237853024232,0.0450579962647337 +4.032,0.560356307859579,-0.292762031572388,-0.00162069885774593,-8.26690064459437e-05,5.6390774230703e-05,0.000304706382014997,-0.0124696615741407,0.0254863649941373,0.0194516194219406,0.000320718043280647,0.0344007668304647 +4.034,0.560356117320676,-0.292761867394474,-0.00162005058935526,-0.000105016071616492,0.000100853712339799,0.000334179963007404,-0.00970491893097937,0.0187637631612818,0.0101196434651954,0.000364521733599122,0.0234237367491233 +4.036,0.560355887795292,-0.292761628157539,-0.0016193621378939,-0.000121488682169865,0.000131445826875839,0.000345184955875783,-0.00672124221557406,0.0119378204994969,0.00116152608973847,0.000388831787616971,0.0137490289859236 +4.038,0.560355631365947,-0.292761341611167,-0.00161866984953175,-0.000131901040478791,0.000148604994337792,0.000338826067366359,-0.00374866264419496,0.00555906043074059,-0.00708353612483324,0.000392790571104342,0.00975356901469539 +4.04,0.56035536019113,-0.292761033737561,-0.00161800683362444,-0.000136483332746644,0.000153682068598799,0.000316850811376453,-0.000971783660478788,1.47024745229465e-07,-0.0143229485346904,0.000377677527788394,0.0143558774803834 +4.042,0.560355085432616,-0.292760726882892,-0.00161740244628625,-0.000135788175120706,0.000148605582436773,0.000281534273227603,0.00147161410835764,-0.00452023062037151,-0.0203303525429582,0.000346097666325242,0.0208787300252249 +4.044,0.56035481703843,-0.292760439315231,-0.00161688069653153,-0.000130596876313212,0.00013560114611731,0.000235529401204611,0.00348929234116691,-0.00790910188729627,-0.0249585661591025,0.000301524980329821,0.0264132368032404 +4.046,0.560354563045111,-0.292760184478308,-0.00161646032868143,-0.000121831005756037,0.000116969174887584,0.000181700008591182,0.00503094077507978,-0.0101709073212167,-0.0281443288101883,0.000248071511785302,0.030345691044943 +4.048,0.560354329714407,-0.292759971438532,-0.00161615389649716,-0.000110473113212896,9.49175168324483e-05,0.00012295208596387,0.00608305968791809,-0.0113815976053653,-0.0299053700119584,0.000190606555992847,0.0325710843351795 +4.05,0.560354121152658,-0.292759804808241,-0.00161596852033757,-9.74987670043672e-05,7.14427844661278e-05,6.2078528543362e-05,0.0066627933864629,-0.0116662001656302,-0.0303310973724311,0.000135881657061409,0.0331733102031006 +4.052,0.560353939719339,-0.292759685667394,-0.00161590558238299,-8.38219396670409e-05,4.82527161699221e-05,1.62769647413223e-06,0.00681131732959707,-0.0111800824709145,-0.0295687894863415,9.67320607819973e-05,0.0323373097135259 +4.054,0.560353785864899,-0.292759611797376,-0.00161596200955168,-7.02534976859759e-05,2.67224545824648e-05,-5.61966294020173e-05,0.00658712558803911,-0.010093647282577,-0.0278073123659355,9.38493722524183e-05,0.0303070711220069 +4.056,0.560353658705348,-0.292759578777576,-0.0016161303689006,-5.74734373148874e-05,7.87812703961863e-06,-0.000109601552989598,0.00605965160688616,-0.00858004520904046,-0.0252603142058032,0.000124007101813454,0.0273572664416955 +4.058,0.56035355597115,-0.292759580284868,-0.00161640041576364,-4.60148912584339e-05,-7.5977262536933e-06,-0.000157237886225219,0.00530347586680447,-0.00680549924053533,-0.0221503512831914,0.000164008684301553,0.0237714058934571 +4.06,0.560353474645783,-0.292759609168481,-0.0016167593204455,-3.62595338476672e-05,-1.93438699225257e-05,-0.000198202958122373,0.00439331536427911,-0.00492189620310321,-0.0186950094190151,0.000202418753347828,0.0198249756444036 +4.062,0.560353410933015,-0.292759657660347,-0.00161719322759613,-2.84416298013155e-05,-2.72853110661083e-05,-0.000232017923901288,0.00339991964442994,-0.00306139253531021,-0.0150956554843267,0.000235341733479621,0.015773724745453 +4.064,0.560353360879264,-0.292759718309725,-0.0016176873921411,-2.26598552699489e-05,-3.15894400637652e-05,-0.000258585580059673,0.00238690549270328,-0.00133283291001,-0.0115291202478853,0.000261491613592472,0.0118488132353962 +4.066,0.560353320293594,-0.292759784018108,-0.00161822756991636,-1.88940078305034e-05,-3.26166427061477e-05,-0.000278134404892824,0.00140855676428281,0.000180171801091359,-0.00814230000782449,0.000280676996026402,0.00826520075095179 +4.068,0.560353285303232,-0.292759848776296,-0.00161879992976068,-1.7025628212817e-05,-3.08687528593997e-05,-0.000291154780090975,0.000508497230432619,0.00141966956246172,-0.0050494408290207,0.000293281192525126,0.0052698087048506 +4.07,0.560353252191081,-0.292759907493119,-0.00161939218903673,-1.68600189087727e-05,-2.69379644563002e-05,-0.000298332168208909,-0.000280816411791681,0.00235247383725703,-0.00233176139076004,0.000300019993925208,0.00332416939934618 +4.072,0.560353217863157,-0.292759956528154,-0.00161999325843351,-1.81488938599836e-05,-2.14588575103726e-05,-0.000300481825654014,-0.000937932696786387,0.00296815931208488,-3.89670292395415e-05,0.000301793294263409,0.00311307016865745 +4.074,0.560353179595505,-0.292759993328549,-0.00162059411633934,-2.06117496959179e-05,-1.5065327207962e-05,-0.000298488036325867,-0.00145167020071257,0.00327618600998215,0.00180778133089771,0.000299577896613021,0.00401357876264836 +4.076,0.560353135416158,-0.292760016789463,-0.00162118721057881,-2.39555746628346e-05,-8.35411347044252e-06,-0.000293250700330422,-0.00181997569098761,0.00330240022480748,0.00321191517738553,0.000294346112618439,0.00495323710994273 +4.078,0.560353083773207,-0.292760026745003,-0.00162176711914067,-2.78916524598691e-05,-1.85572630873064e-06,-0.000285640375616323,-0.00204848599194741,0.0030851808538459,0.00419690944496029,0.000287004899225273,0.00559720328819125 +4.08,0.560353023849548,-0.292760024212368,-0.00162232977208128,-3.21495186306233e-05,3.98660994493971e-06,-0.000276463062550583,-0.00214893754180001,0.00267147033314329,0.00480151790377611,0.00027835464709949,0.00589993732845568 +4.082,0.560352955175132,-0.292760010798563,-0.00162287297139087,-3.64874026270682e-05,8.83015502384134e-06,-0.000266434304001221,-0.00213752340133318,0.00211292644491864,0.0050750708184697,0.000269066052367871,0.00589828858783344 +4.084,0.560352877899938,-0.292759988891748,-0.00162339550929728,-4.0699612235957e-05,1.24383157246152e-05,-0.000256162779276702,-0.00203329999365545,0.00146237355905292,0.00507309070358388,0.000259673910166168,0.00565765804703727 +4.086,0.560352792376683,-0.2927599610453,-0.00162389762250797,-4.46206026016909e-05,1.46796492600537e-05,-0.000246141941186883,-0.00185671854280578,0.000770712136472812,0.00485338423355453,0.000250584008847698,0.00525325988915654 +4.088,0.560352699417527,-0.292759930173151,-0.00162438007706203,-4.81264864071793e-05,1.55211642705061e-05,-0.000236749242342486,-0.00162833418970472,8.43775084516563e-05,0.00447273894485489,0.000242089382220604,0.00476067069498779 +4.09,0.560352599870737,-0.292759898960643,-0.00162484461947734,-5.11339393605091e-05,1.50171592938603e-05,-0.000228250985407465,-0.00136773674330439,-0.000556586304823652,0.00398427844450742,0.000234390074805356,0.00424911365311269 +4.092,0.56035249488177,-0.292759870104513,-0.00162529308100366,-5.35974333803975e-05,1.32948190512113e-05,-0.000220812128564455,-0.00109271280218932,-0.00111983150877154,0.00343549886974835,0.000227612462751352,0.00377500945166342 +4.094,0.560352385481004,-0.292759845781367,-0.0016257278679916,-5.55047905692668e-05,1.05378332587736e-05,-0.000214508989928471,-0.000818653478343691,-0.00158140656472644,0.00286696267159467,0.000221824107044434,0.0033749837334247 +4.096,0.560352272862607,-0.29275982795318,-0.00162615111696338,-5.68720472937719e-05,6.96919279230622e-06,-0.000209344277878077,-0.000558185359045405,-0.0019259076139426,0.00231159740047472,0.000217043834493991,0.00306009371986811 +4.098,0.560352157992815,-0.292759817904596,-0.00162656524510311,-5.77375320054482e-05,2.83420280300404e-06,-0.000205262600326573,-0.00032101622748599,-0.0021461527485726,0.0017945283020104,0.000213247251800428,0.00281591101869917 +4.1,0.560352041912479,-0.292759816616369,-0.00162697216736468,-5.81561122037157e-05,-1.61541820198323e-06,-0.000202166164670036,-0.000113955934962874,-0.00224246811050787,0.001333350688551,0.000210370865615966,0.00261141211615811 +4.102,0.560351925368366,-0.292759824366269,-0.0016273739097618,-5.81933557452998e-05,-6.13566963902843e-06,-0.000199929197572368,5.89102516735866e-05,-0.00222168206054371,0.000938752573061019,0.000208316579121176,0.00241259155045414 +4.104,0.560351809139056,-0.292759841159048,-0.00162777188415497,-5.79204711970213e-05,-1.05021464441591e-05,-0.000198411154377792,0.000195939986454984,-0.00209592133232431,0.000615382378724306,0.000206959083504802,0.00219316533385617 +4.106,0.560351693686481,-0.292759866374854,-0.00162816755437931,-5.74095957994799e-05,-1.45193549683247e-05,-0.000197467668057471,0.00029757152298126,-0.00188130407086037,0.000362876648012009,0.000206155653055189,0.0019389515930001 +4.108,0.560351579500673,-0.292759899236468,-0.0016285617548272,-5.67301851050964e-05,-1.80273627275997e-05,-0.000196959647785744,0.000365918899350777,-0.00159660840798209,0.000176954594217719,0.000205758116643926,0.00164753390792298 +4.11,0.560351466765741,-0.292759938484305,-0.00162895539297045,-5.59459202020766e-05,-2.09057886002538e-05,-0.0001967598496806,0.0004043511150877,-0.00126199269437455,5.05139775385311e-05,0.000205624503478034,0.00132615121568174 +4.112,0.560351355716992,-0.292759982859622,-0.00162934879422592,-5.51127806447454e-05,-2.30753335050985e-05,-0.00019675759187559,0.000417081903733336,-0.000897819762980782,-2.53390832731142e-05,0.000205629374281615,0.000990292739729931 +4.114,0.560351246314618,-0.292760030785639,-0.00162974242333795,-5.42775925871435e-05,-2.44970676521766e-05,-0.000196861206013693,0.000408790376552343,-0.000523634382380951,-6.0365192868136e-05,0.000205670848235176,0.000667043098220267 +4.116,0.560351138606622,-0.292760080847893,-0.00163013623904998,-5.34776191385362e-05,-2.51698710346221e-05,-0.000196999052647062,0.000384285943347425,-0.000157317187053633,-6.44091646227945e-05,0.000205674512034102,0.000420205811578438 +4.118,0.560351032404142,-0.292760131465124,-0.00163053041954854,-5.27404488137536e-05,-2.51263364003912e-05,-0.000197118842672184,0.000348229979571319,0.000185563453490569,-4.67728399523541e-05,0.000205593593913825,0.000397348225742605 +4.12,0.560350927644827,-0.292760181353238,-0.00163092471442067,-5.20846992202508e-05,-2.44276172206597e-05,-0.000197186144006872,0.000304916238089064,0.000492203215683819,-1.5752410671542e-05,0.000205406669230193,0.00057921158156743 +4.122,0.560350824065345,-0.292760229175592,-0.00163131916412457,-5.15207838613975e-05,-2.31575235376561e-05,-0.00019718185231487,0.000258114175869078,0.000752819428324858,2.16665409681453e-05,0.000205113005312713,0.000796134070647314 +4.124,0.560350721561691,-0.292760273983332,-0.00163171344182993,-5.10522425167746e-05,-2.14163395073606e-05,-0.000197099477842999,0.000210969026973077,0.000960733589906409,5.99675127372857e-05,0.000204727123825518,0.000985450690648862 +4.126,0.560350619856375,-0.29276031484095,-0.00163210756203594,-5.06769077535051e-05,-1.931458917803e-05,-0.000196941982263921,0.000165957081407705,0.00111229680674222,9.51348921406308e-05,0.000204272726306318,0.0011286259729693 +4.128,0.56035051885406,-0.292760351241689,-0.00163250120975898,-5.03884141911437e-05,-1.69671522803912e-05,-0.000196718938274437,0.000124885421445831,0.001206686413984,0.00012458167569388,0.000203777371700162,0.00121951181384272 +4.13,0.560350418302718,-0.29276038270956,-0.00163289443778904,-5.01773660677218e-05,-1.44878435220946e-05,-0.000196443655561145,8.89301271539621e-05,0.00124560045958272,0.00014699703174535,0.000203267743347637,0.00125739301722661 +4.132,0.560350318144596,-0.292760409193063,-0.00163328698438123,-5.00326936825279e-05,-1.19847504420609e-05,-0.000196130950147455,5.87020501680003e-05,0.0012328790696686,0.000162140009762652,0.000202766501883402,0.00124487995962931 +4.134,0.560350218171943,-0.292760430648561,-0.00163367896158963,-4.99425578670498e-05,-9.55632724341963e-06,-0.000195795095522095,0.321655642877835,-0.288743600987407,0.278271335093528,0.000202290142881934,0.514072130776473 +4.136,0.560350118374365,-0.292760447418372,-0.00163407016476332,0.00123658987782896,-0.00116695915439182,0.000916954390226783,0.231422255844764,-0.206459307247654,0.612395350166452,0.00193177471453689,0.686447209153735 +4.138,0.560355164531455,-0.292765098485179,-0.00163001114402872,0.000875746465511903,-0.000835393556233946,0.00225378630514344,-0.567844209480096,0.543854299397331,0.280455361905321,0.0025581960391858,0.834793241009103 +4.14,0.560353621360227,-0.292763788992597,-0.00162505501954274,-0.00103478696009118,0.00100845804319727,0.00203877583784794,-0.521598376323971,0.547161491514577,-0.293187365390791,0.00249887546601598,0.810807865776506 +4.142,0.560351025383614,-0.292761064653006,-0.00162185604067733,-0.00121064703978422,0.00135325240982461,0.00108103684358015,0.017497557118438,0.0484447918309154,-0.478641626836554,0.00211319639333691,0.481405098956582 +4.144,0.560348778772068,-0.292758375982958,-0.00162073087216842,-0.000964796731617419,0.00120223721052095,0.000124209330501515,0.140088162015014,-0.121647245318553,-0.430203411843876,0.00154649119023824,0.468505838802942 +4.146,0.560347166196688,-0.292756255704164,-0.00162135920335532,-0.00065029439172422,0.000866663428550447,-0.000639776803795165,0.151106917270547,-0.183013522843456,-0.326867262462518,0.00125829354801221,0.40394239349234 +4.148,0.560346177594501,-0.292754909329244,-0.0016232899793836,-0.000360369062535297,0.000470183119147208,-0.00118325971934841,0.132750381035003,-0.196243596189281,-0.221847718050087,0.00132326928105962,0.324577606612457 +4.15,0.560345724720438,-0.292754374971687,-0.00162609224223272,-0.000119292867584151,8.16890437932336e-05,-0.00152716767599561,0.107068314388039,-0.181092151194774,-0.130578188008049,0.00153399641418686,0.24760584474869 +4.152,0.56034570042303,-0.292754582573068,-0.00162939865008759,6.79041950169065e-05,-0.000254185485631969,-0.00170557247138067,0.0804513213409463,-0.148082590755605,-0.0565447771497183,0.00172574583758397,0.177758770847763 +4.154,0.560345996337218,-0.29275539171363,-0.00163291453211824,0.000202512417779599,-0.000510641319229122,-0.00175334678459446,0.0551770486245623,-0.105511178665598,0.000971840830995,0.00183738694436059,0.119071659066807 +4.156,0.560346510472701,-0.292756625138345,-0.00163641203722596,0.000288612389515131,-0.000676230200294316,-0.00170168510805669,0.0323447928093727,-0.0603481520172336,0.0441062996421785,0.00185373045563632,0.0814459989312061 +4.158,0.560347150786776,-0.292758096634431,-0.00163972127255047,0.000331891589017104,-0.000752033927298084,-0.00157692158602573,0.0126046622237079,-0.0180045743800414,0.0752196820176963,0.00177831064303782,0.0783648056925017 +4.16,0.560347838039058,-0.292759633274055,-0.00164271972357007,0.000339031038409969,-0.00074824849781449,-0.00140080637998587,-0.00366526328730481,0.0178393343152793,0.0964011772022797,0.00162390774790198,0.0981063859785024 +4.162,0.560348506910929,-0.292761089628422,-0.00164532449807041,0.000317230535867887,-0.000680676590036974,-0.00119131687721665,-0.0163112183204827,0.0451607150113857,0.10932667171567,0.00140825840492881,0.119406311273165 +4.164,0.560349106961201,-0.292762355980415,-0.00164748499107893,0.000273786165128045,-0.000567605637768967,-0.000963499693123235,-0.0253772721795062,0.0633351327772549,0.115299120559276,0.00115128913956973,0.133974744593627 +4.166,0.56034960205559,-0.292763360050973,-0.0016491784968429,0.000215721447149851,-0.000427336058927926,-0.000730120394979496,-0.0310751068210838,0.0727897743919531,0.115363097566901,0.000873056493696423,0.139902315206731 +4.168,0.56034996984699,-0.29276406532465,-0.00165040547265885,0.000149485737843696,-0.000276446540201122,-0.000502047302855579,-0.0337485693419025,0.0746470544196669,0.110429619754033,0.000592300742623548,0.137498543938393 +4.17,0.560350199998541,-0.292764465837134,-0.00165118668605432,8.07271697822554e-05,-0.000128747841249291,-0.000288401915963414,-0.0338353418755182,0.0704093726274099,0.101373062292638,0.000325988569889764,0.127979716643716 +4.172,0.560350292755669,-0.292764580316015,-0.0016515590803227,1.41443703416384e-05,5.19095030848624e-06,-9.65550536850715e-05,-0.0318289104031506,0.0617090498908279,0.0890853745633096,9.77235261827654e-05,0.112948175447705 +4.174,0.560350256576023,-0.292764445073333,-0.00165157290626906,-4.65884718303614e-05,0.000118088358314048,6.79395822898645e-05,-0.0282430473869102,0.0501288837800875,0.0744883577753014,0.000143983099419747,0.0941227398602383 +4.176,0.560350106401781,-0.292764107962582,-0.00165128732199354,-9.88278192060152e-05,0.000205706485428859,0.000201398377416168,-0.0235810278109783,0.0370868831756224,0.0585146401549899,0.000304373787344402,0.0731810418672238 +4.178,0.560349861264746,-0.292763622247391,-0.0016507673127594,-0.000140912583074264,0.000266435891016521,0.000301998142909798,-0.0183108180978831,0.0237733998806219,0.0420697451857548,0.000426670034583396,0.0516751783866495 +4.18,0.560349542751449,-0.292763042219018,-0.00165007932942191,-0.000172071091597539,0.000300800084951336,0.000369677358159168,-0.0128464729756587,0.0111271048347344,0.0259874555971536,0.000506705536584949,0.0310514440619358 +4.182,0.560349172980379,-0.292762419047052,-0.00164928860332676,-0.000192298474976905,0.000310944310355464,0.000405947965298424,-0.00753585926994548,-0.000162557387672853,0.0109883516305334,0.0005463138458348,0.0133251443293105 +4.184,0.560348773557549,-0.292761798441777,-0.00164845553756071,-0.000202214528677325,0.000300149855400644,0.000413630764681306,-0.00265402827494003,-0.00963661581780558,-0.00235168066268239,0.000549609916937515,0.0102683315316266 +4.186,0.560348364122265,-0.29276121844763,-0.00164763408026804,-0.000202914588076664,0.000272397847084246,0.000396541242647696,0.0015981462819893,-0.0170388846955527,-0.0136196289801889,0.000522130131548672,0.0218717159081078 +4.188,0.560347961899197,-0.292760708850388,-0.00164686937259012,-0.000195821943549368,0.000231994316618441,0.000359152248760557,0.00509125177434635,-0.0222844178318739,-0.0225697688455321,0.000470274318146839,0.03212336514869 +4.19,0.56034758083449,-0.292760290470363,-0.00164619747127299,-0.000182549580979276,0.00018326017575674,0.000306262167265558,0.00776120049477157,-0.0254272135013926,-0.0291155838128146,0.000400880476741256,0.0394271054013159 +4.192,0.560347231700873,-0.292759975809685,-0.00164564432392106,-0.000164777141570279,0.000130285462612859,0.000242689913509285,0.00960083473832449,-0.026628988000761,-0.0333118320818255,0.000320973834247377,0.0437144962943075 +4.194,0.560346921725924,-0.292759769328513,-0.00164522671161896,-0.000144146242025982,7.67442237537082e-05,0.00017301483893827,0.0106499463900603,-0.0261299719743552,-0.0353297610507365,0.000237911642133394,0.0452149179960981 +4.196,0.560346655115905,-0.29275966883279,-0.00164495226456531,-0.000122177356010042,2.57655747154499e-05,0.000101370869306355,0.0109846619231246,-0.0242222183560725,-0.0354287178309948,0.000160832908031746,0.0443009334755245 +4.198,0.5603464330165,-0.292759666266214,-0.00164482122814173,-0.000100207594333479,-2.01446496705926e-05,3.12999676142754e-05,0.0107067745502774,-0.0212257373934085,-0.0339268299140034,0.000106897412714755,0.0414270049264743 +4.2,0.560346254285528,-0.292759749411389,-0.00164482706469485,-7.93502578089277e-05,-5.91373748581934e-05,-3.43364503496739e-05,0.00993364310252982,-0.0174676338705931,-0.0311730948762741,0.00010475058158348,0.0370885068786911 +4.202,0.560346115615469,-0.292759902815714,-0.00164495857394313,-6.0473021923364e-05,-9.00151851529573e-05,-9.33924118908072e-05,0.00878906625951132,-0.0132644574699048,-0.0275224530405635,0.000143114857850075,0.0317911770630629 +4.204,0.56034601239344,-0.29276010947213,-0.00164520063434241,-4.41939927708863e-05,-0.000112195204737807,-0.000144426262511916,0.00739542906774863,-0.00890786088294371,-0.0233149795424749,0.000188148394269928,0.026031339336884 +4.206,0.560345938839498,-0.292760351596533,-0.00164553627899318,-3.08913056523662e-05,-0.000125646628684736,-0.000186652330060717,0.00586734466567516,-0.00465367968813868,-0.018859686112303,0.00022711327654244,0.020292122321734 +4.208,0.560345888828217,-0.292760612058644,-0.00164594724366265,-2.0724614108183e-05,-0.000130809923490364,-0.000219865006961136,0.0043068119209836,-0.00071437657873255,-0.0144230733155473,0.000256673658561817,0.0150693067751844 +4.21,0.560345855941041,-0.292760874836226,-0.00164641573902102,-1.36640579684337e-05,-0.000128504134999666,-0.0002443446233229,0.0027999396551304,0.0027452489691288,-0.0102221939896982,0.000276413303115076,0.0109484840931472 +4.212,0.560345834171985,-0.292761126075184,-0.00164692462215595,-9.52485548766262e-06,-0.00011982892761385,-0.000260753782919924,0.00141506986683959,0.00560936084734764,-0.00642177501711832,0.000287127550179702,0.00864329487026094 +4.214,0.560345817841619,-0.292761354151937,-0.0016474587541527,-8.00377850107469e-06,-0.000106066691610273,-0.000270031723391376,0.000202221871192258,0.00780973255856021,-0.00313479969327932,0.000290226351624313,0.00841782545782508 +4.216,0.560345802156871,-0.292761550341951,-0.00164800474904951,-8.7159680028935e-06,-8.85899973796054e-05,-0.000273292981693043,-0.000806408204102116,0.00932219154994479,-0.000425844639080441,0.000287425137342961,0.00936669061847026 +4.218,0.560345782977747,-0.292761708511926,-0.00164855192607948,-1.12294113174828e-05,-6.87779254104979e-05,-0.000271735101947698,-0.00159504692787089,0.0101613527245297,0.00168350729018569,0.000280528908194565,0.0104226417328106 +4.22,0.560345757239226,-0.292761825453652,-0.0016490916894573,-1.50961557143764e-05,-4.79445864814911e-05,-0.000266558952532301,-0.00216232370203629,0.0103741573040398,0.00320789440498618,0.000271256801694172,0.0110720084029454 +4.222,0.560345722593125,-0.292761900290272,-0.0016496181618896,-1.98787061256289e-05,-2.72812961943339e-05,-0.000258903524327751,-0.00251880898083451,0.0100327326342493,0.00419063523811233,0.000261094747148622,0.0111607144256617 +4.224,0.560345677724402,-0.292761934578837,-0.00165012730355461,-2.51713916377155e-05,-7.81365594448943e-06,-0.00024979641157985,-0.00268434999228964,0.00922703258590725,0.00469600725665264,0.000251182999851439,0.0106956229073876 +4.226,0.560345621907558,-0.292761931544896,-0.00165061734753592,-3.06161060947863e-05,9.62683414929106e-06,-0.000240119495301143,-0.00268536433367521,0.00805768679904048,0.00480176717746608,0.000242254811947711,0.00975676514950507 +4.228,0.560345555259977,-0.292761896071501,-0.00165108778153582,-3.59128489724152e-05,2.4417091251669e-05,-0.000230589342869988,-0.00255225425515921,0.00662937952103169,0.00459230855427549,0.000234643073862666,0.00845883990122312 +4.23,0.560345478256162,-0.292761833876531,-0.0016515397049074,-4.08251231154243e-05,3.61443522334208e-05,-0.000221750261084039,-0.00231706080711302,0.00504503641293865,0.00415268808921894,0.000228355606821034,0.00693296340377453 +4.232,0.560345391959485,-0.292761751494092,-0.00165197478258015,-4.51810922008683e-05,4.45972369034258e-05,-0.00021397859051311,-0.00201143576794842,0.00340097352017064,0.00356371595426854,0.000223197405517763,0.00532095537814331 +4.234,0.560345297531793,-0.292761655487584,-0.00165239561926946,-4.88708661872171e-05,4.97482463141018e-05,-0.000207495397266966,-0.00166499986714335,0.00178312457160575,0.00289817004510911,0.000218900866741531,0.00378829082909685 +4.236,0.56034519647602,-0.292761552501106,-0.00165280476416922,-5.18410916694409e-05,5.1729735189848e-05,-0.000202385910332675,-0.00130409123083296,0.000264352185971826,0.00221815771307413,0.000215228996627956,0.00258665027721835 +4.238,0.560345090167427,-0.292761448568643,-0.00165320516291079,-5.40872311105495e-05,5.08056550579893e-05,-0.000198622766414669,-0.000950925109491451,-0.00109717630466789,0.00157355684037283,0.000212032182682944,0.00214105944272226 +4.24,0.560344980127096,-0.292761349278486,-0.00165359925523488,-5.56447921074072e-05,4.73410299711759e-05,-0.000196091682971183,-0.000623116946932654,-0.00225864869168636,0.00100143805486676,0.000209259322702429,0.0025480672714327 +4.242,0.560344867588258,-0.292761259204523,-0.00165398952964267,-5.65796988982799e-05,4.17710602912448e-05,-0.000194617014195202,-0.000333553122619199,-0.00319241176202896,0.000526324765899373,0.000206934448605181,0.00325265557708604 +4.244,0.5603447538083,-0.292761182194245,-0.00165437772329166,-5.69790045978838e-05,3.45713829230615e-05,-0.000193986383907586,-9.05354818860368e-05,-0.00388507425536234,0.000161127976423481,0.000205115832211265,0.00388946794149867 +4.246,0.56034463967224,-0.292761120918991,-0.0016547654751783,-5.69418408258241e-05,2.62307632697937e-05,-0.000193972502289508,0.000101837809015794,-0.0043360582346866,-9.14114409275041e-05,0.000203852294131812,0.00433821714595651 +4.248,0.560344526040937,-0.292761077271192,-0.00165515361330082,-5.65716533618206e-05,1.72271499843132e-05,-0.000194352029671296,0.000243133284335785,-0.00455576192742679,-0.000236949180773268,0.000203149792266751,0.00456839418697779 +4.25,0.560344413385626,-0.292761052010391,-0.00165554288329699,-5.5969307688481e-05,8.00771556008861e-06,-0.000194920299012601,0.000335929423170652,-0.0045634842120455,-0.000287583875105725,0.000202954699080315,0.00458485999962498 +4.252,0.560344302163706,-0.29276104524033,-0.00165593329449687,-5.52279356691381e-05,-1.02678686386681e-06,-0.000195502365171718,0.000385115613013822,-0.00438524890705673,-0.000259874688597841,0.000203155984300916,0.0044097910229401 +4.254,0.560344192473884,-0.292761056117539,-0.00165632489275767,-5.44288452364256e-05,-9.53328006814029e-06,-0.000195959797766993,0.000397184313213603,-0.00405165186470607,-0.000172939615763781,0.000203601633007963,0.00407474493951948 +4.256,0.560344084448325,-0.29276108337345,-0.00165671713368794,-5.36391984162835e-05,-1.72333943226929e-05,-0.000196194123634774,0.00037955947412555,-0.00359582654624456,-4.67392505016449e-05,0.000204123216796717,0.00361610543300566 +4.258,0.56034397791709,-0.292761125051116,-0.00165710966925221,-5.29106073399235e-05,-2.3916586253117e-05,-0.000196146754768999,0.000339992381473621,-0.00305161023186799,9.93954727660573e-05,0.000204560711950004,0.00307210014268869 +4.26,0.560343872805896,-0.292761179039795,-0.00165750172070701,-5.22792288903892e-05,-2.94398352501635e-05,-0.000195796541743709,0.00028604481283899,-0.00245195916001396,0.00024793931058643,0.000204783074085059,0.00248100771039965 +4.262,0.560343768800174,-0.292761242810457,-0.00165789285541919,-5.17664280885674e-05,-3.37244228931739e-05,-0.000195154997526653,0.000224677325352681,-0.00182765301851181,0.000384041657839023,0.000204701179371675,0.00188103254930868 +4.264,0.560343665740183,-0.292761313937487,-0.00165828234069712,-5.13805195889784e-05,-3.67504473242116e-05,-0.000194260375112353,0.000161942098617022,-0.00120629487649007,0.000496082313238376,0.000204273460122834,0.00131433261918687 +4.266,0.560343563278096,-0.292761389812246,-0.00165866989691964,-5.11186596940994e-05,-3.85496023991337e-05,-0.0001931706682737,0.000102785877034793,-0.000611611410820292,0.000575939302336862,0.000203504536301676,0.000846368438884433 +4.268,0.560343461265544,-0.292761468135896,-0.00165905502337022,-5.09693760808392e-05,-3.91968929674925e-05,-0.000191956617903006,5.09483982808436e-05,-6.30295156323722e-05,0.000618995322023732,0.000202439168327514,0.000624278517823174 +4.27,0.560343359400592,-0.292761546599818,-0.00165943772339125,-5.0914866100976e-05,-3.88017204616632e-05,-0.000190694686985605,8.95291479558011e-06,0.000424490796677769,0.000623928532092918,0.000201152580757502,0.000754691595492548 +4.272,0.56034325760608,-0.292761623342778,-0.00165981780211816,-5.09335644216569e-05,-3.74989297807812e-05,-0.000189460903774634,-2.18337570274123e-05,0.00084040796543919,0.000592331366237138,0.000199739409677961,0.00102840590660883 +4.274,0.560343155666334,-0.292761696595537,-0.00166019556700635,-5.10022011290857e-05,-3.54400885999068e-05,-0.000188325361520657,-4.10803752098374e-05,0.00117836776100874,0.000528208865546138,0.000198301957105488,0.00129199178908136 +4.276,0.560343053597276,-0.292761765103132,-0.00166057110356424,-5.10978859224963e-05,-3.27854587367468e-05,-0.00018734806831245,0.330693036856773,-0.286604726198253,0.287790983805167,0.000196939531203701,0.523759299740135 +4.278,0.56034295127479,-0.292761827737372,-0.0016609449592796,0.00127176994629815,-0.00118185899339305,0.00096283857370014,0.239903679352668,-0.202935100050707,0.632321475757004,0.00198525756403953,0.70609268435741 +4.28,0.560348140677061,-0.292766492539106,-0.00165671974926944,0.000908516831488282,-0.000844525858939664,0.00234193783471585,-0.581527655363403,0.545544337603925,0.289400970255919,0.00265015086008115,0.848260549494805 +4.282,0.560346585342116,-0.292765205840808,-0.00165157720794074,-0.0010543406751552,0.00100031835702241,0.00212044245472369,-0.53844083464099,0.548107992461762,-0.301520119806155,0.00257070948931951,0.825381903398219 +4.284,0.56034392331436,-0.292762491265678,-0.00164823797945055,-0.00124524650707544,0.00134790611090714,0.00113585735549136,0.0140954197758724,0.0483304329958914,-0.49272348515498,0.00215816164344292,0.495288748545228 +4.286,0.560341604356088,-0.292759814216364,-0.00164703377851877,-0.000997958996051706,0.001193640089006,0.000149548514103548,0.142288820469058,-0.123951947331094,-0.444061746310744,0.00156303025497057,0.482494588792655 +4.288,0.560339931478376,-0.292757716705322,-0.00164763978539413,-0.000676091225199146,0.000852098321582711,-0.000640389629751813,0.486666229385143,-0.473817655517083,-0.0504029876004606,0.00126224790446608,0.681092982391325 +4.29,0.560338899991187,-0.292756405823078,-0.00164959533703778,0.000948705921488651,-0.000701630533062125,-5.20634362982721e-05,0.377775318430344,-0.402977487001152,0.402803993360679,0.00118111766212848,0.683634480780644 +4.292,0.560343726302062,-0.292760523227454,-0.00164784803913932,0.000835010048522062,-0.000759811626421717,0.000970826343690725,-0.471536903690009,0.361378037022589,0.152994335058495,0.00148897927399354,0.613472414818997 +4.294,0.560342240031381,-0.292759445069584,-0.00164571203166301,-0.000937441693271596,0.000743881615028391,0.000559913903935775,-0.455999512323454,0.398063133316652,-0.362785787712033,0.0013212344096646,0.705693517832592 +4.296,0.560339976535289,-0.292757547700994,-0.00164560838352358,-0.00098898800077196,0.00083244090684507,-0.000480316807157569,0.0715623522523271,-0.0579937520228383,-0.494691055447508,0.00137904291604649,0.50319348751086 +4.298,0.560338284079378,-0.292756115305956,-0.00164763329889164,-0.000651192284262319,0.000511906606937063,-0.00141885031785404,0.176541119376094,-0.184198969972783,-0.400938055493725,0.00164293517516155,0.47523399679809 +4.3,0.560337371766152,-0.292755500074566,-0.001651283784795,-0.000282823523267663,9.5645026954017e-05,-0.00208406902913229,0.501303415063805,-0.490739331088149,0.0263959487757683,0.00210534577556348,0.702016346777801 +4.302,0.560337152785285,-0.292755732725849,-0.00165596957500817,0.00135402137599312,-0.00145105071741575,-0.00131326652275095,0.375424899542992,-0.383314914448312,0.503166338041103,0.00237983004244788,0.735561379201679 +4.304,0.560342787851656,-0.292761304277436,-0.001656536850886,0.00121887607490447,-0.0014376146308394,-7.14036769676541e-05,-0.489001631319463,0.408585762078094,0.266524177791938,0.00188613180818907,0.690724299379789 +4.306,0.560342028289585,-0.292761483184372,-0.00165625518971604,-0.000601985149284512,0.000183292330896443,-0.000247169811583319,-0.483293319281164,0.463542738200841,-0.243974348025466,0.000676073305406064,0.712718587589092 +4.308,0.560340379911059,-0.292760571108112,-0.00165752553013233,-0.000714297202219969,0.000416556321963755,-0.00104730106906941,0.0393361940312611,0.0168339963600577,-0.375908458200436,0.0013343834500402,0.378335682352253 +4.31,0.560339171100776,-0.292759816959084,-0.00166044439399232,-0.00044464037315945,0.000250628316336682,-0.00175080364438523,0.141885000595714,-0.107881173140566,-0.286985202571875,0.00182368665498921,0.337831625824834 +4.312,0.560338601349566,-0.292759568594847,-0.00166452874470988,-0.000146757199837049,-1.49683705985576e-05,-0.00219524187935704,0.467385933518383,-0.418868518370442,0.132074018267919,0.00220019286352479,0.641361047175563 +4.314,0.560338584071977,-0.292759876832566,-0.00166922536150975,0.00142490336091388,-0.0014248457571449,-0.00122250757131361,0.343495927965239,-0.320412406711044,0.597295279287004,0.00235691743205327,0.759878420249979 +4.316,0.56034430096301,-0.292765267977875,-0.00166941877499513,0.00122722651202376,-0.00129661799744259,0.000193939237790714,-0.519174986383893,0.459350862517364,0.344844065762799,0.00179580499249247,0.774250160525641 +4.318,0.560343492978025,-0.292765063304556,-0.00166844960455859,-0.000651796584621927,0.000412557692924763,0.000156868691737737,-0.509013467472827,0.500787759240211,-0.183535564870173,0.000787178775224358,0.737270909127545 +4.32,0.560341693776671,-0.292763617747104,-0.00166879130022818,-0.000808827357867781,0.000706533039518476,-0.00054020302169006,0.0201129637111512,0.0402934356019998,-0.332939500556866,0.00120216884646445,0.33597143225714 +4.322,0.560340257668593,-0.292762237172398,-0.00167061041664535,-0.000571344729777331,0.000573731435332744,-0.00117488931048958,0.128722982509255,-0.0975879223264311,-0.260628504901929,0.00142687331323982,0.306627178145517 +4.324,0.560339408397752,-0.292761322821362,-0.00167349085747014,-0.000293935427830816,0.000316181350212794,-0.00158271704129766,0.126788088979094,-0.132679378643532,-0.146589552662147,0.00164053708119338,0.234877700035343 +4.326,0.560339081926882,-0.292760972446997,-0.00167694128481054,-6.4192373860898e-05,4.30139207585563e-05,-0.00176124752113823,0.0988641014332105,-0.127686387862268,-0.0422910473967853,0.00176294177128926,0.16693249200628 +4.328,0.560339151628257,-0.292761150765679,-0.00168053584755469,0.00010152097790207,-0.000194564201236335,-0.00175188123088482,0.0675582660092491,-0.103182825970958,0.0392622998114111,0.00176557344352577,0.129430842800357 +4.33,0.560339488010793,-0.292761750703802,-0.00168394880973408,0.000206040690176069,-0.000369717383125231,-0.00160419832189261,0.0390166889491171,-0.0692094158233238,0.0969233310260941,0.00165909492355207,0.125325086683998 +4.332,0.560339975791017,-0.292762629635212,-0.00168695264084226,0.000257587733698521,-0.0004714018645296,-0.00136418790678049,0.0149664906440158,-0.0327274267200305,0.133443207438074,0.0014661445370222,0.138210599858597 +4.334,0.560340518361728,-0.29276363631126,-0.0016894055613612,0.000265906652752138,-0.000500627090005367,-0.00107042549214025,0.330310910810774,-0.28615752457886,0.443834670031944,0.00121125743153501,0.622880920398199 +4.336,0.560341039417628,-0.292764632143572,-0.00169123434281082,0.00157883137694177,-0.00161603196284517,0.000411150773347486,0.225063883051222,-0.17454850551053,0.79869303624113,0.00229636947814964,0.847957250319925 +4.338,0.560346833687236,-0.292770100439112,-0.00168776095826781,0.00116616218495693,-0.00119882111204741,0.00212434665282392,-0.615056629682618,0.592466516694068,0.447336956762589,0.0027036928452911,0.964065134731963 +4.34,0.560345704066368,-0.29276942742802,-0.00168273695619953,-0.000881395141788434,0.000753834103930844,0.00220049860039765,-0.578794283528851,0.605556503333674,-0.162033796385642,0.0024874318769706,0.853203640725077 +4.342,0.560343308106669,-0.292767085102696,-0.00167895896386622,-0.00114901494915874,0.00122340490128756,0.00147621146728128,-0.0227393011365474,0.10849008372231,-0.37215156917571,0.00223520808919828,0.388309109501947 +4.344,0.560341108006571,-0.292764533808415,-0.0016768321103304,-0.000972352346334633,0.00118779443882013,0.000711892323694641,0.10874980050503,-0.0679876907376002,-0.343304707799655,0.00169207428762742,0.366479150292513 +4.346,0.560339418697284,-0.292762333924941,-0.00167611139457144,-0.000714015747138664,0.000951454138337187,0.000102992636082805,0.125700553493866,-0.138416317525879,-0.258687685921644,0.00119402300966448,0.319184938481728 +4.348,0.560338251943583,-0.292760727991862,-0.00167642013978607,-0.000469550132359223,0.000634129168716675,-0.00032285841999182,0.448034052351271,-0.44925176179498,0.119593236244631,0.000852546003905642,0.645650214665541 +4.35,0.560337540496754,-0.292759797408266,-0.00167740282825141,0.00107812046226662,-0.000845552908842933,0.000581365581061384,0.336666555543459,-0.36124983361984,0.542348301673152,0.00148838482646578,0.733476306529128 +4.352,0.560342564425432,-0.292764110203497,-0.00167409467746182,0.000877116089814763,-0.000810870165762845,0.00184653478670103,-0.517209624198488,0.407858049774516,0.250491194255746,0.00219921208145854,0.704698391178157 +4.354,0.560341048961113,-0.292763040888929,-0.0016700166891046,-0.000990718034527103,0.000785879290254952,0.00158333035808426,-0.495911719245011,0.442188937795865,-0.307782560239506,0.00202634239594894,0.732249680355794 +4.356,0.560338601553294,-0.292760966686336,-0.00166776135602949,-0.00110653078716506,0.00095788558542042,0.000615404545743143,0.045201625754942,-0.021648474304902,-0.473017163861531,0.00158766430098484,0.475664882788531 +4.358,0.560336622837965,-0.292759209346587,-0.00166755507092163,-0.000809911531507355,0.000699285393035353,-0.000308738297361659,0.496484821227389,-0.446303294723791,-0.112309352763062,0.00111367683195754,0.676976513114422 +4.36,0.560335361907168,-0.292758169544764,-0.00166899630921893,0.000879408497744717,-0.000827327593474943,0.000166167134690846,0.406199080885082,-0.393299958541914,0.357031561575693,0.00121878700743076,0.668695810262136 +4.362,0.560340140471956,-0.292762518656961,-0.00166689040238287,0.000814884792033156,-0.00087391444113248,0.00111938794894127,-0.456052797262514,0.365810337191914,0.123421041862313,0.00163731275416206,0.597523313571784 +4.364,0.560338621446336,-0.292761665202528,-0.00166451875742317,-0.00094480269130514,0.000635913755292553,0.000659851302140041,-0.44847439805572,0.401699067158943,-0.380192843946948,0.00131622269035434,0.712066025629838 +4.366,0.56033636126119,-0.29275997500194,-0.00166425099717431,-0.000979012800189529,0.000732881827503114,-0.000401383426846352,0.0792529804075418,-0.0535345490576777,-0.498650046692432,0.00128712489346068,0.507738960404509 +4.368,0.560334705395135,-0.292758733675218,-0.00166612429113056,-0.000627790769674937,0.000421775559061818,-0.00133474888462991,0.181620355324486,-0.178529424955207,-0.393650478264598,0.00153413508457754,0.468849024826731 +4.37,0.560333850098112,-0.292758287899704,-0.00166958999271283,-0.000252531378891502,1.87641276822047e-05,-0.00197598533990492,0.507680139413901,-0.481785243942961,0.045636441095674,0.0019921451386211,0.701383511349087 +4.372,0.56033369526962,-0.292758658618708,-0.00167402823249017,0.00140292978798044,-0.00150536541670981,-0.00115220312024724,0.378759672341202,-0.371128884252975,0.531296678982501,0.00235837000026209,0.750647519956409 +4.374,0.560339461817264,-0.292764309361371,-0.00167419880519382,0.00126250731047314,-0.00146575140932953,0.000149201376024849,-0.498606215044961,0.421829871928559,0.289904087078309,0.00194026105294039,0.714557890053307 +4.376,0.560338745298862,-0.292764521624345,-0.00167343142698607,-0.000591495072199622,0.00018195407100461,7.41322806613237e-06,-0.495767102981422,0.477512146736859,-0.230930542145435,0.000618893092821327,0.726038419076718 +4.378,0.560337095836975,-0.292763581545087,-0.00167416915228155,-0.000720561101452767,0.000444297177618118,-0.000774520792556995,0.0328336599575173,0.0305034786006632,-0.36911847213329,0.00114738430400166,0.371829205285117 +4.38,0.560335863054456,-0.292762744435634,-0.0016765295101563,-0.000460160432369567,0.00030396798540725,-0.00146906066046687,0.138115295672576,-0.0960858153806444,-0.284326794237162,0.00156916646147005,0.330378638439696 +4.382,0.560335255195245,-0.292762365673145,-0.00168004539492342,-0.000168099918762524,5.9953916095583e-05,-0.00191182796950552,0.469464880900526,-0.408153320651592,0.135847063580853,0.00192014016147956,0.636742359389892 +4.384,0.560335190654781,-0.29276250461997,-0.00168417682203433,0.00141769909123275,-0.0013286452971993,-0.000925672406143393,0.346213375954075,-0.311344375791135,0.603243978979335,0.0021522170993065,0.762038266887635 +4.386,0.56034092599161,-0.292767680254334,-0.00168374808454799,0.00121675358505393,-0.0011854235870691,0.000501147946412095,-0.526579890733385,0.464802226620598,0.342758519135944,0.00177112044528723,0.781543916639695 +4.388,0.560340057669121,-0.292767246314318,-0.00168217223024868,-0.000688620471700561,0.000530563609282889,0.000445361670400234,-0.517299797692172,0.503106783175037,-0.196578589069962,0.000976751204249104,0.747902839712374 +4.39,0.560338171509724,-0.292765557999897,-0.00168196663786639,-0.000852445605714529,0.00082700354563083,-0.000285166409867667,0.0190268111197385,0.0396598907568718,-0.35089753628101,0.00122144105731909,0.353643899204152 +4.392,0.560336647886698,-0.292763938300136,-0.00168331289588815,-0.000612513227221599,0.000689203172310394,-0.000958228474723964,0.4690877873983,-0.38776730843996,0.0148371448868195,0.00132980272071309,0.608791408159967 +4.394,0.560335721456815,-0.292762801187207,-0.00168579955176529,0.00102390554387888,-0.000724065688129185,-0.000225817830320382,0.377303040262394,-0.34046221105564,0.482316185903467,0.00127422422516702,0.700643279089016 +4.396,0.560340743508874,-0.292766834562888,-0.00168421616720943,0.00089669893382781,-0.000672645671912016,0.000971036268889693,-0.489587526436631,0.409736337320844,0.236120092173877,0.00148304841909127,0.680685323840348 +4.398,0.56033930825255,-0.292765491769895,-0.00168191540668973,-0.000934444561867427,0.000914879661154009,0.000718662538375023,-0.480460833528149,0.435228354737855,-0.28579650444403,0.00149220215710222,0.708481457255453 +4.4,0.560337005730626,-0.292763175044244,-0.00168134151705593,-0.001025144400285,0.0010682677470396,-0.000172149748886555,0.0540955332680761,-0.0314419159804837,-0.422376159929476,0.00149055444611811,0.426985411081984 +4.402,0.560335207674949,-0.292761218698907,-0.00168260400568528,-0.000718062428795098,0.00078911199723206,-0.000970842101343068,0.162328628920662,-0.168468626816193,-0.335070074612608,0.00144251370238307,0.408661494258382 +4.404,0.560334133480911,-0.292760018596255,-0.0016852248854613,-0.000375829884602427,0.000394393239774903,-0.00151243004733684,0.495973176480075,-0.482511796358374,0.089260868601072,0.00160755677281635,0.697692287528061 +4.406,0.56033370435541,-0.292759641125948,-0.00168865372587462,0.00126583027712498,-0.00114093518820123,-0.00061379862693882,0.37205181819399,-0.381582526631722,0.561404109661108,0.00181130012659251,0.774081619983632 +4.408,0.560339196802019,-0.292764582337008,-0.00168768007996906,0.0011123773881737,-0.00113193686675215,0.000733186391307845,-0.50585832812859,0.402355471339841,0.303096402406965,0.00174820674075804,0.713897753607757 +4.41,0.560338153864963,-0.292764168873415,-0.00168572098030939,-0.000757603035389604,0.000468486697158317,0.000598586982689175,-0.499622497811318,0.451219991273769,-0.234295416399685,0.00107319547170624,0.712822883323917 +4.412,0.560336166389878,-0.292762708390219,-0.0016852857320383,-0.000886112603071352,0.000672943098342723,-0.000203995274290792,0.0356944216406839,-0.000460603093886316,-0.384137638058076,0.00113122147736947,0.385792727853067 +4.414,0.560334609414551,-0.292761477101021,-0.00168653696140655,-0.000614825348826884,0.000466644284782772,-0.000937963569542961,0.145132460070713,-0.129854868757143,-0.307179195145359,0.00121471920865289,0.363709741189678 +4.416,0.560333707088483,-0.29276084181308,-0.00168903758631647,-0.000305582762788436,0.000153523623314094,-0.00143271205487237,0.48115121865918,-0.441834070323528,0.110093822778701,0.00147296101781598,0.662453387590326 +4.418,0.5603333870835,-0.292760863006528,-0.00169226780962604,0.00130977952581005,-0.00130069199651154,-0.000497588278428106,0.359166038750642,-0.343089134637109,0.577183773608227,0.00191178350522475,0.761479813399214 +4.42,0.560338946206586,-0.292766044581066,-0.00169102793943018,0.00113108139221398,-0.00121883291523419,0.000876023039560289,-0.518354557548023,0.435672029716688,0.313264606860805,0.00187944543866307,0.746080611408659 +4.422,0.560337911409069,-0.292765738338189,-0.0016887637174678,-0.000763638704381812,0.000441996122355021,0.000755470149014974,-0.510004326784112,0.478100005019788,-0.229598507549102,0.00116156781509282,0.735798547706647 +4.424,0.560335891651768,-0.292764276596577,-0.00168800605883412,-0.000908935914922702,0.000693567104845172,-4.2370990636221e-05,0.0288284293242366,0.0196730482495101,-0.383556598088391,0.00114411324929273,0.385141235265544 +4.426,0.560334275665409,-0.29276296406977,-0.00168893320143035,-0.000648324987084852,0.00052068831535307,-0.00077875624333876,0.481338820926325,-0.402025540084028,-0.0128316152772697,0.00113925541348852,0.627276849374519 +4.428,0.56033329835182,-0.292762193843315,-0.00169112108380748,0.00101641936878239,-0.000914535055490762,-9.36974517452941e-05,0.38852476445115,-0.348734007386859,0.461101783303394,0.00137049695855957,0.696549894168027 +4.43,0.560338341342884,-0.292766622209992,-0.00168930799123733,0.000905774070719577,-0.000874247714194212,0.00106565088987461,-0.485065550739853,0.406541483852178,0.216659303133677,0.0016493476140742,0.668958758251701 +4.432,0.560336921448103,-0.292765690834172,-0.00168685848024798,-0.000923842834177243,0.000711630879918133,0.000772939760789512,-0.478322772327848,0.437012314786995,-0.305090162573451,0.00139904966506663,0.716137169194548 +4.434,0.560334645971547,-0.292763775686472,-0.00168621623219417,-0.00100751701859203,0.000873801544953963,-0.000154709760419331,0.0577610166640655,-0.0252052590083922,-0.438993431369513,0.00134259256391711,0.443493937854089 +4.436,0.560332891380028,-0.292762195627992,-0.00168747731928966,-0.000692798767521006,0.000610809843884575,-0.000983033964688348,0.165752137078257,-0.158792409922552,-0.347939128667552,0.00134885676533716,0.416833824986596 +4.438,0.560331874776477,-0.292761332447096,-0.00169014836805292,-0.000344508470279076,0.000238631905263826,-0.00154646627508939,0.159523358168881,-0.183797234844927,-0.215480927513446,0.00160224505375823,0.325055619025689 +4.44,0.560331513346147,-0.292761241100371,-0.00169366318439002,-5.47053348454113e-05,-0.000124379095495217,-0.00184495767474223,0.125754919498547,-0.165338433940468,-0.0942050294682774,0.00184995450069644,0.228091396359204 +4.442,0.560331655955138,-0.292761829963478,-0.00169752819875189,0.000158511207715168,-0.000422721830498121,-0.00192328639296254,0.0881009881992409,-0.126214442577911,0.00259032839612179,0.00197556323571427,0.153943429343819 +4.444,0.560332147390978,-0.292762931987693,-0.00170135632996186,0.000297698617951513,-0.000629236865806806,-0.00183459636115774,0.0532927500740321,-0.0781742173945374,0.0737186219170278,0.00196221999500409,0.119940654880017 +4.446,0.56033284674961,-0.292764346910942,-0.00170486658419652,0.000371682208011273,-0.000735418700076236,-0.00162841190529446,0.365035794431991,-0.314886399173964,0.420326134001865,0.00182502429065442,0.6395925535263 +4.448,0.56033363411981,-0.292765873662493,-0.00170786997758304,0.00175784179567964,-0.0018887824625028,-0.000153291825150098,0.249338493803229,-0.186118894331163,0.806965961278652,0.00258476408071495,0.864872239109047 +4.45,0.560339878116792,-0.292771902040792,-0.00170547975149712,0.0013690361832243,-0.00147989427740097,0.00159945193982051,-0.617065726960003,0.594127389813596,0.465496677255682,0.00257344004225027,0.974907494714998 +4.452,0.560339110264543,-0.292771793239603,-0.00170147216982376,-0.000710421112160098,0.000487727096751321,0.00170869488387242,-0.590909627659694,0.619082270184116,-0.14400865723614,0.00191369121952317,0.867856865316046 +4.454,0.560337036432344,-0.292769951132405,-0.00169864497196164,-0.000994602327414218,0.000996434803335222,0.00102341731087601,-0.0304373951181639,0.13103530812486,-0.349483734881344,0.00174054563260955,0.374480397275437 +4.456,0.560335131855233,-0.29276780750039,-0.00169737850058026,-0.000832170692632768,0.00101186832925082,0.000310759944346893,0.10092943760609,-0.0406061724383401,-0.314692738955074,0.00134646103561456,0.332967164397062 +4.458,0.560333707749573,-0.292765903659088,-0.00169740193218425,-0.000590884576989813,0.000834010113581843,-0.000235353644944423,0.458677689205211,-0.393747930645841,0.0736255613004501,0.00104886071099544,0.608969111482118 +4.46,0.560332768316925,-0.292764471459935,-0.00169831991516003,0.00100254006418787,-0.000563123393332372,0.000605262189548661,0.352710790414744,-0.33197632516584,0.520670990927277,0.00129943712988248,0.71113392756836 +4.462,0.56033771790983,-0.292768156152661,-0.00169498088342605,0.000819958584669009,-0.000493895187081373,0.00184733031876446,-0.518128262350032,0.415445701753358,0.237425281018801,0.00208059939513135,0.705282065147031 +4.464,0.560336048151264,-0.292766447040684,-0.00169093059388498,-0.00106997298521249,0.00109865941368125,0.00155496331362397,-0.500565797534278,0.434747971657351,-0.320757981955578,0.00218398846221114,0.736517209241932 +4.466,0.560333438017889,-0.292763761515006,-0.00168876103017156,-0.00118230460546833,0.00124509669954822,0.000564298390941998,0.0493839580200731,-0.0386951224777029,-0.481354386979076,0.00180735791844262,0.485425724161065 +4.468,0.560331318932842,-0.292761466653885,-0.00168867340032121,-0.000872437153132218,0.000943878923770451,-0.000370454234292119,0.167636165747452,-0.182506180390687,-0.407779638961071,0.00133764358055817,0.477173578374292 +4.47,0.560329948269277,-0.292759985999311,-0.00169024284710872,-0.000511759942478594,0.000515071977985557,-0.00106682016490211,0.168700070385396,-0.215379192463482,-0.28504452472848,0.00129046605746661,0.395092762996165 +4.472,0.560329271893072,-0.292759406365973,-0.00169294068098082,-0.000197636871590556,8.23621539164284e-05,-0.00151063233320617,0.139781564753554,-0.201993239610342,-0.167115013197511,0.00152573061303028,0.297098607080608 +4.474,0.56032915772179,-0.292759656550695,-0.00169628537644155,4.73663165356849e-05,-0.0002929009804559,-0.00173528021769223,0.104909870672644,-0.165018191267856,-0.0686204659406474,0.00176046357139481,0.20723381181597 +4.476,0.560329461358338,-0.292760577969895,-0.00169988180185159,0.000222002611099972,-0.000577710611154922,-0.00178511419696873,0.0711395001240484,-0.116325673427104,0.00800644978970947,0.00188935634695933,0.136589143105899 +4.478,0.560330045732235,-0.29276196739314,-0.00170342583322942,0.000331924317031847,-0.000758203674164263,-0.00170325441853339,0.384528999780488,-0.349415057075587,0.364844557401555,0.00189370593757499,0.634873991315485 +4.48,0.560330789055607,-0.292763610784592,-0.00170669481952572,0.0017601186102221,-0.00197537083945743,-0.000325735967362342,0.267215520030635,-0.215270518331326,0.763755144834567,0.00266574781175234,0.837297707789261 +4.482,0.560337086206675,-0.292769868876498,-0.00170472877709887,0.00140078639715451,-0.00161928574748966,0.00135176616080522,-0.606423881437148,0.57074117300328,0.430640851843072,0.00253210596460226,0.937521708449774 +4.484,0.560336392201195,-0.292770087927582,-0.0017012877548825,-0.000665576915526229,0.000307593852555444,0.00139682744000976,-0.583779875204603,0.602446933457934,-0.171955817568596,0.00157757202871232,0.856335245988658 +4.486,0.560334423899013,-0.292768638501088,-0.00169914146733884,-0.000934333103663649,0.000790501986341808,0.000663942890530909,-0.0233389107969906,0.121429214287827,-0.368452825409699,0.00139236916832377,0.388647968465216 +4.488,0.560332654868781,-0.292766925919636,-0.00169863198332038,-0.000758932558714202,0.000793310709706807,-7.69838616292065e-05,0.106267031216249,-0.0437381072678882,-0.324151485187535,0.00110056668392394,0.3439184340802 +4.49,0.560331388168778,-0.292765465258249,-0.00169944940278535,-0.000509264978798608,0.000615549557270235,-0.000632663050219376,0.463638751065147,-0.390312717552702,0.0750428826631328,0.00101907537071564,0.610685142451507 +4.492,0.560330617808865,-0.292764463721407,-0.00170116263552125,0.00109562244554618,-0.000767940160503828,0.000223187669023292,0.355102195606666,-0.322959216776003,0.532094882956697,0.0013564414358546,0.716606718845104 +4.494,0.560335770658561,-0.292768537018891,-0.00169855665210926,0.000911143803627899,-0.000676287309833636,0.00149571648160718,-0.522882975008353,0.428005028873332,0.252640165767614,0.00187742252827724,0.721402774913942 +4.496,0.56033426238408,-0.292767168870647,-0.00169517976959482,-0.000995909454487464,0.00094407995498969,0.00123374833209386,-0.507862177111189,0.449881338866021,-0.304890834168951,0.00184533399413094,0.743825000090908 +4.498,0.560331787020743,-0.292764760699071,-0.00169362165878088,-0.00112030490481708,0.00112323804563065,0.000276153144931238,0.0437104329189629,-0.0220907391753702,-0.463851773486872,0.00161028175993047,0.466430134607739 +4.5,0.560329781164461,-0.292762675918464,-0.0016940751570151,-0.000821067722811632,0.000855716998288219,-0.000621658761853424,0.162329093347852,-0.165793641430302,-0.388640793888056,0.00133897849228119,0.452636645400915 +4.502,0.560328502749851,-0.292761337831078,-0.0016961082938283,-0.000470988531425745,0.000460063479909516,-0.00127841003062081,0.16337398454914,-0.199263182794343,-0.265030835404609,0.00143799193623363,0.369646072020331 +4.504,0.560327897210335,-0.292760835664545,-0.00169918879713758,-0.000167571784614998,5.86642671107574e-05,-0.00168178210347198,0.134480126597032,-0.187094861988481,-0.147143813402918,0.0016911276837641,0.273387442386799 +4.506,0.560327832462713,-0.292761103174009,-0.00170283542224219,6.69319749624438e-05,-0.000288315968044493,-0.00186698528423255,0.0998143523806132,-0.151874813211802,-0.0495295115399837,0.00189030157335879,0.188366760185205 +4.508,0.560328164938235,-0.292761988928417,-0.00170665673827451,0.000231685624907411,-0.000548834985736384,-0.00187990014963189,0.066444403021278,-0.105348291815755,0.0255465340297934,0.0019720351525627,0.127144589669741 +4.51,0.560328759205213,-0.292763298513952,-0.00171035502284071,0.000332709587047527,-0.000709709135307466,-0.00176479914811339,0.0367486626684299,-0.0558461506240241,0.079904688179543,0.00193103567010917,0.104182608627876 +4.512,0.560329495776583,-0.292764827764958,-0.00171371593486697,0.000378680275581147,-0.000772219588232506,-0.00156028139691369,0.0116781595366396,-0.0096081864895242,0.116586002017304,0.00178162843520166,0.117562717407176 +4.514,0.560330273926315,-0.292766387392305,-0.00171659614842837,0.00037942222519409,-0.000748141881265567,-0.00129845514004412,-0.0083911247672294,0.0291100936515211,0.138712668473012,0.0015458535668626,0.141982438780869 +4.516,0.560331013465484,-0.292767820332483,-0.00171890975542714,0.000345115776512233,-0.000655779213626434,-0.0010054307230217,-0.0234242546748519,0.05794858524287,0.14905686929804,0.00124901649909762,0.161631322842002 +4.518,0.560331654389421,-0.29276901050916,-0.00172061787132045,0.000285725206494693,-0.000516347540294113,-0.000702227662852028,-0.0336428455163911,0.0761828712094097,0.149945153517608,0.000917266246227799,0.171520319448071 +4.52,0.56033215636631,-0.292769885722644,-0.00172171866607855,0.000210544394446653,-0.000351047728788761,-0.000405650108951199,-0.0394694875949071,0.0843456277460342,0.143315779148642,0.000576294595508907,0.170913539322838 +4.522,0.560332496566999,-0.292770414700075,-0.00172224047175626,0.000127847256115046,-0.000178965029309938,-0.000128964546257396,-0.0414738938053746,0.0838157353487402,0.13082564989144,0.000254961284910924,0.160812039440295 +4.524,0.560332667755334,-0.292770601582761,-0.00172223452426358,4.46488192251731e-05,-1.57847873938372e-05,0.000117652490614502,-0.0403191994097289,0.0764397776707824,0.113952043400221,0.0001268258062031,0.14301659220694 +4.526,0.560332675162276,-0.292770477839224,-0.0017217698617938,-3.34295415238513e-05,0.000126794081373157,0.000326843627343439,-0.0367112225688136,0.0642231659832158,0.0940609593035118,0.000352166196635587,0.119665337406041 +4.528,0.560332534037168,-0.292770094406436,-0.00172092714975421,-0.000102196071050098,0.000241107876539055,0.000493896327828591,-0.031353560553395,0.0491031820690283,0.0724357505938786,0.000559026500006767,0.0929575505958398 +4.53,0.560332266377991,-0.292769513407718,-0.00171979427648249,-0.000158843783737445,0.000323206809649292,0.000616586629718986,-0.0249103553895514,0.032800615810284,0.0502720323980851,0.000714053962515383,0.0649898718617118 +4.532,0.560331898662033,-0.292768801579197,-0.00171846080323533,-0.000201837492608292,0.000372310339780176,0.00069498445742091,-0.0179777516831537,0.0167376042261955,0.02865168937518,0.000813853032547197,0.0377394522332491 +4.534,0.560331459028021,-0.292768024166359,-0.0017170143386528,-0.000230754790470052,0.000390157226554067,0.000731193387219693,-0.0110644802347878,0.00200636228462446,0.00850847537560545,0.000860298904027576,0.0141011476731668 +4.536,0.560330975642871,-0.292767240950291,-0.00171553602968645,-0.000246095413547448,0.000380335788918675,0.000729018358923335,-0.00458064379483984,-0.0106264547473705,-0.00940412295774674,0.000858304160859513,0.0149111155410163 +4.538,0.560330474646367,-0.292766502823203,-0.00171409826521711,-0.000249077365649414,0.00034765140756458,0.000693576895388702,0.00116591486464027,-0.0206926823523136,-0.0245353046525103,0.000814831237175844,0.0321174039236803 +4.54,0.560329979333409,-0.292765850344661,-0.0017127617221049,-0.000241431754088888,0.00029756505950943,0.000630877140313305,0.0059672343524913,-0.027982925442113,-0.036545692636215,0.000738132930232205,0.0464137873091295 +4.542,0.560329508919351,-0.292765312562965,-0.00171157475665586,-0.000225208428239451,0.00023571970579614,0.000547394124843858,0.0097077584720996,-0.0325012645477444,-0.0453015746027212,0.000637120823521156,0.0565933338233489 +4.544,0.560329078499696,-0.292764907465838,-0.00171057214560552,-0.000202600720200485,0.000167560001318438,0.000449670841902399,0.0123534471679773,-0.0344190841210103,-0.0508563445504984,0.00052089084453924,0.0626390356702608 +4.546,0.56032869851647,-0.29276464232296,-0.00170977607328825,-0.000175794639567536,9.80433693120838e-05,0.000343968746641842,0.0139384380912129,-0.0340309125740328,-0.053421962520326,0.000398535765312356,0.0648559106525161 +4.548,0.560328375321137,-0.29276451529236,-0.00170919627061895,-0.000146846967835639,3.14363510223216e-05,0.000235982991821119,0.0145506166976492,-0.0317138884771471,-0.053334118270255,0.00027971458409773,0.0637339732033739 +4.55,0.560328111128598,-0.292764516577556,-0.00170883214132096,-0.000117592172776946,-2.88121845964907e-05,0.000130632273560845,0.0143168974314816,-0.027891750138671,-0.0510145703640583,0.000178109101326409,0.0598782904506389 +4.552,0.560327904952446,-0.292764630541099,-0.00170867374152471,-8.95793781097065e-05,-8.01306495323749e-05,3.19247103648632e-05,0.0133891372849849,-0.0230037286094735,-0.046933990876893,0.00012435663677055,0.0539559081733109 +4.554,0.560327752811086,-0.292764837100154,-0.0017087044424795,-6.40356236370003e-05,-0.000120827099034395,-5.71036899467477e-05,0.0119312629706635,-0.0174785712917041,-0.0415777457471876,0.000148191026587919,0.0466536647209208 +4.556,0.560327648809952,-0.292765113849495,-0.0017089021562845,-4.18543262270578e-05,-0.000150044934699184,-0.000134386272623869,0.0101080690068125,-0.0117136845535703,-0.0354165047324019,0.000205730253785242,0.0386485740012135 +4.558,0.560327585393781,-0.292765437279893,-0.00170924198757,-2.36033476097548e-05,-0.000167681837248671,-0.00019876970887634,0.00807601013841415,-0.00605936672017501,-0.0288826896418584,0.000261120113603417,0.0305965296357813 +4.56,0.560327554396561,-0.292765784576844,-0.00170969723512,-9.55028567339759e-06,-0.000174282401579887,-0.000249917031191315,0.00597606067409419,-0.000807912358550686,-0.0223532604058773,0.000304834522218822,0.0231524140065893 +4.562,0.560327547192638,-0.292766134409499,-0.00171024165569476,3.00895086624597e-07,-0.000170913486682874,-0.000288182750499859,0.00392873182597542,0.00381267187265171,-0.0161387192334183,0.000335053440742837,0.0170419969212545 +4.564,0.560327555600142,-0.292766468230791,-0.001710849966122,6.16464163050236e-06,-0.000159031714089281,-0.000314471908124982,0.00203104207063818,0.00764077630680929,-0.0104778673081486,0.000352450946788875,0.0131260160669782 +4.566,0.560327571851205,-0.292766770536356,-0.00171149954332726,8.42506336917642e-06,-0.00014035038145564,-0.000330094219732448,0.000355349125124716,0.0105796290513003,-0.00553756694577013,0.000358791590158259,0.0119465255008613 +4.568,0.560327589300395,-0.292767029632317,-0.00171217034300093,7.58603813100138e-06,-0.000116713197884075,-0.000336622175908065,-0.00105030900643352,0.012592689519606,-0.0014165821311296,0.000356362186332855,0.0127155685394097 +4.57,0.560327602195357,-0.292767237389147,-0.0017128460320309,4.22382734344186e-06,-8.99796233772109e-05,-0.000335760548256967,-0.0021605680022852,0.01369667018691,0.00184744794373946,0.000347633886590981,0.013988562907115 +4.572,0.560327606195705,-0.29276738955081,-0.00171351338519396,-1.05623387813847e-06,-6.19265171364415e-05,-0.000329232384133108,-0.00297017276051937,0.0139528766353364,0.00426891269644573,0.000335007420688894,0.0148905442559405 +4.574,0.560327597970422,-0.292767485095216,-0.00171416296156743,-7.65686369863431e-06,-3.41681168358716e-05,-0.000318684897471186,-0.00349073958627515,0.0134575696211785,0.00590387076901708,0.000320602794195605,0.0151045401461054 +4.576,0.56032757556825,-0.292767526223277,-0.00171478812478384,-1.50191922232406e-05,-8.09623865172158e-06,-0.000305616901057037,-0.00374718037154984,0.012331966926791,0.00683928337573031,0.000306092821586934,0.0145909069668043 +4.578,0.560327537893653,-0.29276751748017,-0.00171538542917166,-2.26455851848353e-05,1.51597508712981e-05,-0.000291327763968262,-0.0037740156833016,0.0107124771345243,0.00718246805692645,0.000292599567042726,0.0134383112080455 +4.58,0.560327484985909,-0.292767465584274,-0.00171595343583972,-3.01152549564454e-05,3.47536698863709e-05,-0.000276887028829334,-0.00361181125285588,0.00874160668851068,0.00705136366138898,0.00028067984054007,0.0117975674402831 +4.582,0.560327417432633,-0.292767378465491,-0.00171649297728697,-3.70928301962573e-05,5.01261776253369e-05,-0.000263122309322709,-0.00330391080466156,0.00655993317999142,0.00656595846097732,0.000270410542321505,0.00985192166241649 +4.584,0.560327336614588,-0.292767265079563,-0.00171700592507701,-4.33308981750931e-05,6.09934026063395e-05,-0.000250623194985422,-0.00289358191574368,0.00429936684518128,0.00584118528891491,0.000261552571699955,0.00780876540510719 +4.586,0.56032724410904,-0.29276713449188,-0.00171749547006692,-4.86671578592333e-05,6.7323645006064e-05,-0.000239757568167047,-0.00242167920439257,0.00207787346704176,0.00498138320261767,0.000253741318914311,0.00591576427229356 +4.588,0.560327141945957,-0.292766995784983,-0.00171796495534968,-5.30176149926623e-05,6.93048964745056e-05,-0.000230697662174953,-0.00192483735200484,-4.32269845292601e-06,0.00407638037649231,0.000246648428958793,0.00450798119907864 +4.59,0.56032703203858,-0.292766857272295,-0.00171841826071562,-5.63665072672518e-05,6.73063542122523e-05,-0.00022345204666108,-0.00143423003334482,-0.00186707156333076,0.00319910798547528,0.000240079456880175,0.00397206041166022 +4.592,0.560326916479928,-0.292766726559567,-0.00171885876353632,-5.87545351260422e-05,6.18366102211818e-05,-0.000217901230233051,-0.000974834241110685,-0.00345129469794439,0.00240462051744891,0.000234001726272694,0.00431786251780174 +4.594,0.56032679702044,-0.292766609925854,-0.00171928986563655,-6.0265844231695e-05,5.35011754204732e-05,-0.000213833564591283,-0.000565182567416944,-0.00471879156235571,0.00173032009899648,0.00022851507849187,0.00505771023176127 +4.596,0.560326675416551,-0.292766512554865,-0.00171971409779469,-6.10152653957097e-05,4.2961443971761e-05,-0.000210979949837066,-0.000217502876816974,-0.00565106320419025,0.0011971623527695,0.000223788041487248,0.0057805726825346 +4.598,0.560326552959378,-0.292766438080078,-0.0017201337854359,-6.11358557389628e-05,3.08969226037147e-05,-0.000209044915180205,6.18033818600588e-05,-0.00624735850204937,0.00081160381801741,0.000219981792987544,0.0063001594161226 +4.6,0.560326430873128,-0.292766388967174,-0.00172055027745541,-6.07680518682695e-05,1.79720099635607e-05,-0.000207733534564996,0.00027145273528644,-0.00652216711541192,0.000568044266127164,0.00021718418601008,0.00655248233550729 +4.602,0.560326309887171,-0.292766366192038,-0.00172096471957416,-6.00500447978169e-05,4.80825414206407e-06,-0.000206772738115696,0.000414402810674555,-0.00650236806759618,0.000451545706196487,0.000215369664567638,0.00653118777105466 +4.604,0.560326190672949,-0.292766369734158,-0.00172137736840787,-5.91104406255714e-05,-8.03746230682112e-06,-0.00020592735174021,0.000496898293348427,-0.00622422653001634,0.000440613094632541,0.00021439384129685,0.00625955619114115 +4.606,0.560326073445408,-0.292766398341887,-0.00172178842898112,-5.80624516244234e-05,-2.00886519779986e-05,-0.000205010285737166,0.000527498308925233,-0.00573041162438109,0.000509877262818089,0.0002140187362942,0.00577718328200687 +4.608,0.560325958423142,-0.292766450088766,-0.00172219740955082,-5.70004473898703e-05,-3.0959108804348e-05,-0.000203887842688937,0.000516147097281534,-0.00506716956241826,0.000632528423724354,0.000213957401874657,0.00513251472546835 +4.61,0.560325845443619,-0.292766522178322,-0.00172260398035187,-5.5997863235297e-05,-4.03573302276739e-05,-0.000202480172042269,0.000473332588399038,-0.00428176984840478,0.000782414823891029,0.000213922170099995,0.004378329559386 +4.612,0.560325734431689,-0.292766611518087,-0.00172300733023899,-5.51071170362743e-05,-4.80861881979653e-05,-0.000200758183393374,0.000409361558539967,-0.00342029219876991,0.000935727668960534,0.000213665448874794,0.00356953244571819 +4.614,0.560325625015151,-0.292766714523075,-0.00172340701308545,-5.43604170011374e-05,-5.4038499022752e-05,-0.000198737261366427,0.000333778303610316,-0.00252581324258493,0.00107225617101696,0.000213006369314622,0.0027642130505195 +4.616,0.560325516990021,-0.292766827672083,-0.00172380227928445,-5.37720038218332e-05,-5.81894411683039e-05,-0.000196469158709306,0.000254926774137706,-0.00163700266536334,0.00117619939310165,0.000211843267021724,0.0020317997930189 +4.618,0.560325409927135,-0.29276694728084,-0.00172419288972028,-5.33407099045864e-05,-6.05865096842061e-05,-0.00019403246379402,0.000179665810004294,-0.000787137209582352,0.00123657086479065,0.000210153642592312,0.00147681152949274 +4.62,0.560325303627182,-0.292767070018122,-0.00172457840913963,-5.30533405818159e-05,-6.13379900066336e-05,-0.000191522875250143,0.000113216734595583,-3.49949930481624e-06,0.00124723008482547,0.000207985618995703,0.00125236303042752 +4.622,0.560325197713773,-0.2927671926328,-0.00172495898122128,-5.28878429662041e-05,-6.06005076814253e-05,-0.000189043543454719,5.91401302959002e-05,0.000692864793320274,0.00120660730713548,0.000205443439386076,0.00139264509853261 +4.624,0.56032509207581,-0.292767312420152,-0.00172533458331345,-5.28167800606324e-05,-5.85665308333528e-05,-0.000186696446021602,1.94105148650268e-05,0.00128708854685608,0.00111718030921024,0.000202670209322742,0.0017044252810911 +4.626,0.560324986446653,-0.292767426898923,-0.00172570576700537,-5.2810200906744e-05,-5.54521534940005e-05,-0.000184574822217877,-5.4225374220182e-06,0.00177016851523833,0.000984778270204278,0.000199829236208553,0.00202566389554628 +4.628,0.560324880835006,-0.292767534228766,-0.00172607288260232,-5.28384702103204e-05,-5.14858567723987e-05,-0.000182757332940784,-1.60188459748444e-05,0.00213845842422528,0.000817777111642917,0.000197086123624631,0.00228954590255217 +4.63,0.560324775092772,-0.29276763284235,-0.00172643679633713,-5.28742762906434e-05,-4.68983197971003e-05,-0.000181303713771306,-1.39928762991704e-05,0.00239301853680326,0.000626252230638988,0.000194592338287811,0.00247364617001936 +4.632,0.560324669337901,-0.292767721822045,-0.0017267980974574,-5.28944417155171e-05,-4.19137826251867e-05,-0.000180252324018228,-1.64600971448105e-06,0.00253887964818604,0.000421143483811653,0.000192472043300631,0.00257357230543038 +4.634,0.560324563515005,-0.292767800497481,-0.00172715780563321,-5.28808603295013e-05,-3.6742801204355e-05,-0.000179619139836059,1.8299972645414e-05,0.0025842643060191,0.000213479307138429,0.000190812615476484,0.00259313137093737 +4.636,0.56032445781446,-0.29276786879325,-0.00172751657401675,-5.28212418249355e-05,-3.15767254011092e-05,-0.000179398406789675,4.29510454950815e-05,0.00253980849198994,1.36967971586987e-05,0.000189660121094707,0.00254020856831595 +4.638,0.560324352230038,-0.292767926804382,-0.00172787539926036,-5.2709056147521e-05,-2.65835672363964e-05,-0.000179564352647424,6.94595353485822e-05,0.00241781532642379,-0.000168918223149053,0.000189019277822827,0.00242470388828254 +4.64,0.560324246978235,-0.292767975127519,-0.00172823483142734,-5.25434036835412e-05,-2.1905464095415e-05,-0.000180074079682271,9.52061832178069e-05,0.00223156695899993,-0.000326654248778926,0.000188857969917353,0.00225735648670484 +4.642,0.560324142056423,-0.292768014426239,-0.00172859569557909,-5.23282314146497e-05,-1.76572994003956e-05,-0.00018087096964254,0.000117939165375361,0.00199471300934995,-0.000453657837000687,0.000189114599342655,0.00204904735657122 +4.644,0.560324037665309,-0.292768045756717,-0.00172895831530591,-5.20716470220397e-05,-1.39266120580144e-05,-0.000181888711030274,0.000135871161541135,0.00172074582360733,-0.000546078056915427,0.00018970743303112,0.00181042216243757 +4.646,0.560323933769835,-0.292768070132687,-0.00172932325042321,-5.17847467684853e-05,-1.07743161059671e-05,-0.000183055281870202,0.000147732340252785,0.00142256971133536,-0.000602085659097034,0.000190543911227849,0.00155178496218247 +4.648,0.560323830526322,-0.292768088853981,-0.00172969053643339,-5.14807176610286e-05,-8.23633321267355e-06,-0.000184297053666662,0.000152786491794464,0.00111216152953765,-0.00062177898419249,0.000191529385384846,0.00128329890713031 +4.65,0.560323727846964,-0.29276810307802,-0.00173006043863788,-5.11736008013073e-05,-6.32566998781599e-06,-0.000185542397806972,0.000150811106655519,0.00080032204127732,-0.000606999681431426,0.000192573967357291,0.00101573026582002 +4.652,0.560323625831919,-0.292768114156661,-0.00173043270602462,-5.08774732344064e-05,-5.03504504756391e-06,-0.000186725052392387,0.000142051828630441,0.000496507036873186,-0.000561076348586806,0.000193597815463627,0.000762564507845302 +4.654,0.560323524337071,-0.2927681232182,-0.00173080733884745,-5.06053934867856e-05,-4.33964184032346e-06,-0.000187786703201319,0.000127153620968539,0.000208733169637933,-0.000488521896536322,0.000194534275233119,0.000546251977413312 +4.656,0.560323423410345,-0.292768131515229,-0.00173118385283742,-5.03688587505323e-05,-4.20011236901227e-06,-0.000188679139978533,0.000107079727032509,-5.64559718416421e-05,-0.000394702934388458,0.000195331719745622,0.000412848339118375 +4.658,0.560323322861636,-0.292768140018649,-0.00173156205540737,-5.01770745786555e-05,-4.56546572769005e-06,-0.000189365514938873,8.30212565333461e-05,-0.000293970358472794,-0.000285504314644837,0.000195953771432568,0.000418119378141957 +4.66,0.560323222702047,-0.292768149777091,-0.00173194131489718,-5.00367737243989e-05,-5.37599380290358e-06,-0.000189821157237112,5.63067370479305e-05,-0.000500115171498203,-0.000167003913313092,0.000196378847559894,0.000530260257290275 +4.662,0.560323122714542,-0.292768161522625,-0.00173232134003631,-4.99518476304638e-05,-6.56592641368265e-06,-0.000190033530592125,2.83137541218233e-05,-0.000672499864823017,-4.51746955709859e-05,0.000196598680617839,0.000674609879841215 +4.664,0.560323022894656,-0.292768176040797,-0.00173270144901955,-4.99235187079116e-05,-8.06599326219536e-06,-0.000190001856019396,3.89903390127593e-07,-0.000809926833932893,7.43768406344197e-05,0.000196616691199654,0.000813334828205439 +4.666,0.560322923020467,-0.292768193786598,-0.00173308134746039,-4.99502880169033e-05,-9.80563374941458e-06,-0.000189736023229587,-2.62162305780747e-05,-0.000912264788017094,0.000186625851914537,0.000196445769201522,0.000931527531962649 +4.668,0.560322823093504,-0.292768215263332,-0.00173346039311247,-5.0028383630224e-05,-1.17150524142641e-05,-0.000189255352611738,-5.04102523640831e-05,-0.000980315439936469,0.00028729463425256,0.00019610627250018,0.00102278920711531 +4.67,0.560322722906932,-0.292768240646807,-0.00173383836887084,-5.01519290263596e-05,-1.372689550916e-05,-0.000188586844692577,-7.12926939677711e-05,-0.00101567678920046,0.000372965988832642,0.00019562372462584,0.0010843364870554 +4.672,0.560322622485788,-0.292768270170914,-0.00173421474049124,-5.0313554406095e-05,-1.57777595710655e-05,-0.000187763488656407,-8.81853895434436e-05,-0.00102060861845067,0.000441145807394224,0.000195026970254071,0.00111536013841548 +4.674,0.560322521652715,-0.292768303757846,-0.00173458942282546,-5.05046705845335e-05,-1.78093299829631e-05,-0.000186822261463,-0.000100643417214069,-0.000997901972860968,0.000490278272830671,0.000194346215202262,0.00111638265378774 +4.676,0.560322420467106,-0.292768341408234,-0.00173496202953709,-5.07161280749513e-05,-1.97693674625099e-05,-0.000185802375565084,-0.000108454391303855,-0.000950754974750145,0.000519718426270923,0.000193611663652816,0.00108894656416684 +4.678,0.560322318788202,-0.292768382835316,-0.00173533263232772,-5.09384881497488e-05,-2.16123498819633e-05,-0.000184743387757917,-0.000111626083373855,-0.000882656444460849,0.000529669059490853,0.000192852126155442,0.00103541880126815 +4.68,0.560322216713153,-0.292768427857634,-0.00173570100308812,-5.11626324084467e-05,-2.32999932403529e-05,-0.000183683699327121,-0.000110365383495992,-0.000797277535656569,0.000521088149202801,0.000192094263418923,0.000958835150574086 +4.682,0.560322114137673,-0.292768476035288,-0.00173606736712503,-5.13799496837328e-05,-2.48014600245899e-05,-0.000182659035161105,-0.000105049663415355,-0.000698372717296185,0.000495575648216472,0.000191361790268695,0.000862760167805928 +4.684,0.560322011193354,-0.292768527063474,-0.00173643163922876,-5.15828310621082e-05,-2.60934841095379e-05,-0.000181701396734255,-9.61938723149517e-05,-0.000589688797793372,0.000455245695297709,0.000190675263074516,0.000751155631278254 +4.686,0.560321907806348,-0.292768580409225,-0.00173679417271197,-5.17647251729926e-05,-2.71602152157632e-05,-0.000180838052379915,-8.44146350014419e-05,-0.00047488377466342,0.000402592839284327,0.000190051743615687,0.000628268592469829 +4.688,0.560321804134454,-0.292768635704335,-0.00173715499143828,-5.19204896021139e-05,-2.79930192081914e-05,-0.000180091025377118,-7.03940378181638e-05,-0.000357453611847325,0.000340356859893336,0.000189504943962671,0.000498569149927566 +4.69,0.56032170012439,-0.292768692381302,-0.00173751453681348,-5.20463013242653e-05,-2.85900296631526e-05,-0.000179476624940341,-5.48441778132009e-05,-0.000240668946578814,0.000271394046115197,0.000189045143226828,0.00036685713016669 +4.692,0.560321595949248,-0.292768750064453,-0.00173787289793804,-5.21398663133667e-05,-2.89556949945068e-05,-0.000179005449192657,-3.84747164712374e-05,-0.000127519855787577,0.000198557217532886,0.000188679486888362,0.000239095349310748 +4.694,0.560321491564925,-0.292768808204082,-0.00173823055861025,-5.22002001901502e-05,-2.91001090863029e-05,-0.00017868239607021,-2.19638959768541e-05,-2.06706839129294e-05,0.00012459012642013,0.000188411984528898,0.000128188882128265 +4.696,0.560321387148448,-0.29276886646489,-0.00173858762752233,-5.22277218972741e-05,-2.90383777301585e-05,-0.000178507088686977,-5.93443349726791e-06,7.75769865029468e-05,5.20370482914025e-05,0.000188243839281073,9.36016064535949e-05 +4.698,0.560321282654037,-0.292768924357593,-0.001738944586965,-5.22239379241393e-05,-2.87898011402911e-05,-0.000178474247877044,9.06605346061385e-06,0.000165310671400074,-1.68291769508141e-05,0.000188173455878555,0.000166412236932672 +4.7,0.560321178252696,-0.292768981624094,-0.00173930152451383,-5.21914576834317e-05,-2.83771350445581e-05,-0.00017857440539478,2.2578834632408e-05,0.000241025002038607,-8.00619275836272e-05,0.000188196780818795,0.000254976013831643 +4.702,0.560321073888206,-0.292769037866133,-0.00173965888458658,-5.21336225856097e-05,-2.78257011321367e-05,-0.000178794495587379,3.42428585515915e-05,0.000303629333482844,-0.000136076691571525,0.000188307344253321,0.000334484994434836 +4.704,0.560320969718206,-0.292769092926899,-0.00174001670249618,-5.20544862492253e-05,-2.71626177106268e-05,-0.000179118712161066,4.37986799635106e-05,0.000352446623970515,-0.000183670309854031,0.000188496658818673,0.000399839630147682 +4.706,0.560320865670261,-0.292769146516604,-0.00174037535943522,-5.19584278657556e-05,-2.64159146362545e-05,-0.000179529176826795,5.10878769814885e-05,0.000387202523514808,-0.000222024217597323,0.000188754348570986,0.000449255515926532 +4.708,0.560320761884494,-0.292769198590557,-0.00174073481920349,-5.18501347412993e-05,-2.56138076165674e-05,-0.000180006809031455,5.60485616223495e-05,0.00040800653827584,-0.000250694100905088,0.000189068651317441,0.000482139304313991 +4.71,0.560320658269722,-0.292769248971834,-0.00174109538667135,-5.17342336192662e-05,-2.47838884831513e-05,-0.000180531953230415,5.87075388331828e-05,0.000415324559467667,-0.000269587322941356,0.000189426656502475,0.000498616475363127 +4.712,0.56032055494756,-0.292769297726111,-0.00174145694701641,-5.16153045859666e-05,-2.3952509378697e-05,-0.000181085158323221,5.91703006065084e-05,0.000409944564406968,-0.000278931039713786,0.000189814901780615,0.000499357782833608 +4.714,0.560320451808504,-0.292769344781872,-0.00174181972730464,-5.14975524168402e-05,-2.31441102255233e-05,-0.00018164767738927,5.76089870223618e-05,0.000392936055219952,-0.000279233045550113,0.000190219679433997,0.000485477736466618 +4.716,0.56032034895735,-0.292769390302552,-0.00174218353772597,-5.13848686378772e-05,-2.2380765157817e-05,-0.000182202090505421,5.42492092885786e-05,0.000365604640311008,-0.000271237496882607,0.000190627661052972,0.000458453388514601 +4.718,0.56032024626903,-0.292769434304932,-0.00174254853566666,-5.12805555796859e-05,-2.16816916642794e-05,-0.000182732627376801,4.93565327525851e-05,0.000329442934739043,-0.000255877784228636,0.000191026187319997,0.00042005018156952 +4.72,0.560320143835128,-0.292769477029319,-0.00174291446823548,-5.11874425068668e-05,-2.10629934188609e-05,-0.000183225601642336,4.32231889197549e-05,0.000286079156892634,-0.000234228304276741,0.000191403827180526,0.000372253175397002 +4.722,0.56032004151926,-0.292769518556906,-0.00174328143807323,-5.11076628240069e-05,-2.05373750367088e-05,-0.000183669540593908,3.61549679055889e-05,0.0002372251527149,-0.000207457277061794,0.000191750559620325,0.000317208884791639 +4.724,0.560319939404476,-0.292769559178819,-0.00174364914639785,-5.10428226352445e-05,-2.01140928080012e-05,-0.000184055430750583,2.84596790550151e-05,0.000184624801556909,-0.000176781336107785,0.000192058189257435,0.000257192362790764 +4.726,0.560319837347969,-0.292769599013277,-0.00174401765979623,-5.09938241077868e-05,-1.97988758304812e-05,-0.000184376665938339,2.04363331841076e-05,0.000130004725735772,-0.00014342378499099,0.000192320359098626,0.000194651623493838 +4.728,0.56031973542918,-0.292769638374322,-0.00174438665306161,-5.09610773025081e-05,-1.95940739050582e-05,-0.000184629125890547,1.23662885515541e-05,7.50279734184901e-05,-0.000108576901799451,0.000192532784894252,0.000132555895727779 +4.73,0.56031963350366,-0.292769677389573,-0.00174475617629979,-5.09443589535806e-05,-1.94987639368072e-05,-0.000184810973545537,4.50574299809695e-06,2.12524511866935e-05,-7.33694771706564e-05,0.000192693086142455,7.65182891974406e-05 +4.732,0.560319531651744,-0.292769716369378,-0.00174512589695579,-5.09430543305157e-05,-1.95090641003114e-05,-0.000184922603799229,-2.91985880201626e-06,-2.9905501687223e-05,-3.88392556066604e-05,0.000192800850004555,4.91055229344695e-05 +4.734,0.560319429731442,-0.292769755425829,-0.00174549586671499,-5.09560383887887e-05,-1.96183859435561e-05,-0.000184966330567963,-9.72010666117378e-06,-7.72011829453237e-05,-5.91138595379821e-06,0.000192857310877983,7.80349127349848e-05 +4.736,0.560319327827591,-0.292769794842922,-0.00174586576227806,-5.09819347571604e-05,-1.98178688320927e-05,-0.000184946249343045,-1.57418661411154e-05,-0.000119585202850153,2.46179292331887e-05,0.000192865291700422,0.000123103491136715 +4.738,0.560319225803703,-0.292769834697305,-0.00174623565171236,-5.10190058533531e-05,-2.00967267549567e-05,-0.00018486785885103,-2.08704165089437e-05,-0.000156219721187946,5.20921786506511e-05,0.000192828790953769,0.000165993284954144 +4.74,0.560319123751567,-0.292769875229829,-0.00174660523371346,-5.10654164231961e-05,-2.04427477168445e-05,-0.000184737880628442,-2.50290344034418e-05,-0.000186488054166925,7.60002590272345e-05,0.000192752865679806,0.000202929264233479 +4.742,0.560319021542038,-0.292769916468295,-0.00174697460323488,-5.11191219909669e-05,-2.08426789716244e-05,-0.000184563857814921,-2.81775644455606e-05,-0.000209997123855584,9.59775098041549e-05,0.000192643192226894,0.000232603631858808 +4.744,0.560318919275079,-0.292769958600545,-0.00174734348914472,-5.11781266809784e-05,-2.12827362122668e-05,-0.000184353970589225,-3.03098796033275e-05,-0.000226573319133019,0.000111802498692865,0.000192505953111243,0.000254467987099535 +4.746,0.560318816829531,-0.29277000159924,-0.00174771201911723,-5.12403615093802e-05,-2.17489722481565e-05,-0.00018411664782015,-3.14507586669053e-05,-0.00023625235795584,0.000123390124496562,0.000192347426408549,0.000268383027935254 +4.748,0.560318714313633,-0.292770045596434,-0.001748079955736,-5.1303929715646e-05,-2.22277456440903e-05,-0.000183860410091239,-3.16521114902192e-05,-0.000239263688723995,0.000130781613826926,0.0001921739219551,0.000274504643710771 +4.75,0.560318611613812,-0.292770090510223,-0.0017484474607576,-5.13669699553411e-05,-2.27060270030524e-05,-0.000183593521364842,-3.09887254717312e-05,-0.000236010384845207,0.000134132039686866,0.000191991433016682,0.000273226292533687 +4.752,0.560318508845753,-0.292770136420542,-0.00174881432982146,-5.14278846175329e-05,-2.3171787183471e-05,-0.000183323881932492,-2.95538177235443e-05,-0.000227045358207411,0.000133695794029169,0.000191805643098186,0.000265136923431381 +4.754,0.560318405902274,-0.292770183197372,-0.00174918075628533,-5.14851852262353e-05,-2.36142084358822e-05,-0.000183058738188726,-2.74546635454469e-05,-0.000213044887288525,0.000129810898998974,0.000191621650042685,0.00025098356928113 +4.756,0.560318302905012,-0.292770230877375,-0.00174954656477422,-5.15377032717147e-05,-2.40239667326252e-05,-0.000182804638336496,-2.48080653270956e-05,-0.000194780160751828,0.00012288223649417,0.000191444043086826,0.00023163504737753 +4.758,0.560318199751461,-0.292770279293239,-0.00174991197483867,-5.15844174875436e-05,-2.43933290788894e-05,-0.000182567209242749,-2.17361753567479e-05,-0.000173088338799364,0.000113364800196239,0.000191276691004853,0.000208047139540528 +4.76,0.560318096567343,-0.292770328450692,-0.00175027683361119,-5.16246479731417e-05,-2.47163200878226e-05,-0.000182351179135711,-1.8362540651815e-05,-0.000148843583290537,0.000101746755128538,0.000191122874845526,0.000181229129460866 +4.762,0.560317993252869,-0.292770378158519,-0.00175064137955522,-5.16578676501509e-05,-2.49887034120516e-05,-0.000182160222222235,-1.48083767499217e-05,-0.000122929205011152,8.85334019536217e-05,0.000190985122845812,0.000152213799401115 +4.764,0.560317889935872,-0.292770428405505,-0.00175100547450008,-5.16838814801414e-05,-2.52080369078672e-05,-0.000181997045527896,-1.11895284733259e-05,-9.6211150159307e-05,7.42318437520562e-05,0.000190865380073194,0.000122033428163195 +4.766,0.560317786517343,-0.292770478990666,-0.00175136936773733,-5.17026257640442e-05,-2.53735480126888e-05,-0.000181863294847227,-7.61368051651159e-06,-6.95145538340154e-05,5.93371324398784e-05,0.000190764872191759,9.17122489743731e-05 +4.768,0.560317683125369,-0.292770529899697,-0.00175173292767947,-5.17143362022074e-05,-2.54860951232032e-05,-0.000181759696998137,-4.17801210008089e-06,-4.36026215119537e-05,4.43195445721619e-05,0.000190684296852988,6.23126505527325e-05 +4.77,0.560317579659998,-0.292770580935047,-0.00175209640652532,-5.17193378124445e-05,-2.55479584987366e-05,-0.000181686016668938,-9.67601002195581e-07,-1.91592054735451e-05,2.96141045612763e-05,0.000190623704560153,3.52846509837234e-05 +4.772,0.560317476248018,-0.292770632091531,-0.00175245967174614,-5.17182066062162e-05,-2.55627319450974e-05,-0.000181641240579892,1.94597115911783e-06,3.22517706843679e-06,1.56114296736226e-05,0.000190582702359008,1.60594304796077e-05 +4.774,0.560317372787172,-0.292770683185975,-0.00175282297148764,-5.1711553927808e-05,-2.55350577904629e-05,-0.000181623570950243,4.50543075357281e-06,2.30633533119006e-05,2.65069824737762e-06,0.000190560346113007,2.36483270753651e-05 +4.776,0.560317269401802,-0.292770734231762,-0.00175318616602994,-5.17001848832019e-05,-2.54704785318498e-05,-0.000181630637786902,6.66806193881283e-06,3.99780417118174e-05,-8.98544172086242e-06,0.000190555354100785,4.1514395479769e-05 +4.778,0.560317165986432,-0.292770785067889,-0.00175354949403879,-5.16848816800528e-05,-2.53751456236156e-05,-0.000181659512717127,8.40562341665664e-06,5.37044089740386e-05,-1.90739533643459e-05,0.000190566008433626,5.76075840946198e-05 +4.78,0.560317062662275,-0.292770835732345,-0.00175391280408081,-5.16665623895353e-05,-2.52556608959537e-05,-0.00018170693360036,0.362780622431635,-0.279595347981645,0.319650803224233,0.000190590376973468,0.558533772145211 +4.782,0.560316959320182,-0.292770886090532,-0.00175427632177319,0.00139943760804633,-0.00114375653755007,0.00109694370017966,0.270133534936714,-0.190723062797741,0.702818598398271,0.00211421146467585,0.776724787575925 +4.784,0.560322660412707,-0.292775410758495,-0.00174952502928009,0.0010288675773572,-0.000788147912086835,0.00262956745999242,-0.629177389126149,0.547086820921968,0.324243231913107,0.00293161570634943,0.894595914396863 +4.786,0.560321074790492,-0.292774038682181,-0.00174375805193322,-0.00111727194845855,0.00104459074613805,0.00239391662783224,-0.59776610789036,0.542874516805358,-0.32818060367766,0.00284082791712931,0.87163040869928 +4.788,0.560318191324914,-0.292771232395511,-0.00173994936276876,-0.00136219685420451,0.00138335015513484,0.00131684504528163,0.00151847701073619,0.0392493524834614,-0.542088642266334,0.00234591534258997,0.543509809954669 +4.79,0.560315626003075,-0.29276850528156,-0.00173849067175209,-0.00111119804041561,0.00120158815607187,0.00022556205876714,0.149492577289432,-0.139526077969153,-0.493805154228799,0.00165210575454205,0.534470848074073 +4.792,0.560313746532752,-0.292766426042886,-0.0017390471145337,-0.000764226545046845,0.00082524584325829,-0.00065837557163335,0.532688655990819,-0.482185608021532,-0.0604657960871076,0.00130327714139889,0.721052201508911 +4.794,0.560312569096895,-0.292765204298187,-0.00174112417403863,0.00101955658354791,-0.000727154276014471,-1.63011255813176e-05,0.423178463271291,-0.403413676162238,0.440981397858764,0.00125240356709697,0.732316324513425 +4.796,0.560317824759086,-0.29276933465999,-0.00173911231903602,0.000928487308038508,-0.000788408861390842,0.0011055500198019,-0.505192630617712,0.354643492853811,0.165398388062046,0.001644967495178,0.639021304674201 +4.798,0.560316283046127,-0.292768357933633,-0.00173670197395942,-0.00100121393892272,0.000691419695400617,0.000645292426666793,-0.503691689551828,0.389469756657172,-0.402712436715627,0.00137727733684779,0.753371964012207 +4.8,0.56031381990333,-0.292766568981209,-0.00173653114932935,-0.00108627945016858,0.000769470165237676,-0.000505299727060425,0.067740785800226,-0.0656313358625663,-0.549159337971411,0.00142387330658904,0.557200381181793 +4.802,0.560311937928326,-0.292765280052972,-0.00173872317286766,-0.000730250795721783,0.000428894351950323,-0.0015513449252191,0.189555448323825,-0.194235029941882,-0.448703950006068,0.00176745230962259,0.524398464525611 +4.804,0.560310898900148,-0.292764853403801,-0.00174273652903023,-0.000328057656873196,-7.46995452993808e-06,-0.0023001155270849,0.550370181068374,-0.490430606813004,0.0241254966871243,0.00232340462778029,0.737571390374252 +4.806,0.560310625697699,-0.29276530993279,-0.001747923634976,0.00147122992855147,-0.00153282807530148,-0.00145484293847061,0.421485817969653,-0.373040677764668,0.553673278665077,0.00257500434693144,0.789533876109446 +4.808,0.560316783819862,-0.292770984716102,-0.00174855590078411,0.00135788561500523,-0.00149963266558844,-8.54224124248364e-05,-0.523895211046419,0.413368088848779,0.294476437317206,0.00202485764034969,0.729421511316261 +4.81,0.560316057240159,-0.292771308463452,-0.0017482653246257,-0.000624350915634439,0.000120644280093827,-0.000276937189201656,-0.5336580920847,0.466331222810561,-0.266634491524064,0.000693587279969748,0.757198600557193 +4.812,0.560314286416199,-0.292770502138982,-0.00174966364954092,-0.000776746753333809,0.000365692225654009,-0.00115196037852121,0.0318789173669733,0.0198194562428644,-0.412740590093679,0.00143669030636429,0.414444050420719 +4.814,0.560312950253146,-0.29276984569455,-0.00175287316613978,-0.00049683524616656,0.000199922105065275,-0.00192789954957619,0.515679735954608,-0.387598070215897,0.00403437185488168,0.00200090249217277,0.64511559449882 +4.816,0.560312299075215,-0.292769702450562,-0.00175737524773922,0.0012859721904844,-0.00118470005520941,-0.00113582289110168,0.419336260992709,-0.32166276094433,0.530943227185036,0.0020850257397603,0.74913986815236 +4.818,0.560318094141907,-0.292774584494771,-0.00175741645770419,0.00118050979780446,-0.00108672893871219,0.00019587335916419,-0.519042662939989,0.432341268761311,0.280014230260208,0.00161646204464476,0.731253873681495 +4.82,0.560317021114406,-0.292774049366316,-0.00175659175430257,-0.000790198461275791,0.000544665019836026,-1.57659700607288e-05,-0.526761385510938,0.462601337930565,-0.273148993520115,0.000959855279637281,0.752388149681801 +4.822,0.560314933348062,-0.292772405834691,-0.00175747952158443,-0.000926535744239056,0.000763676413009868,-0.00089672261491615,0.040316098612369,0.00081198799070399,-0.413701130986924,0.0014985932060577,0.415661728947565 +4.824,0.560313314971429,-0.292770994660664,-0.00176017864476223,-0.000628934066826333,0.000547912971798841,-0.00167057049400824,0.159722463241601,-0.136738154531841,-0.316294889253725,0.00186723658397405,0.379803956188932 +4.826,0.560312417611795,-0.292770214182804,-0.00176416180356047,-0.000287645891272582,0.000216723794882443,-0.00216190217193119,0.156175480270324,-0.164206112360202,-0.175418855628053,0.00219169577337619,0.28657669633795 +4.828,0.560312164387864,-0.292770127765485,-0.00176882625344996,-4.23214574496502e-06,-0.000108911477642038,-0.00237224591652053,0.121998936446221,-0.14747903131012,-0.0474031003279682,0.00237474847288468,0.197182299131752 +4.83,0.560312400683212,-0.292770649828715,-0.00177365078722655,0.000200349854512249,-0.000373192330357971,-0.00235151457324304,0.083135726025585,-0.110250809835782,0.0534223400301262,0.00238935835901932,0.148056531181644 +4.832,0.560312965787282,-0.292771620534806,-0.00177823231174293,0.000328310758357338,-0.000549914716985117,-0.00215855655640005,0.0471782765215428,-0.064687170692849,0.12585572009397,0.00225156846602266,0.149163943726896 +4.834,0.560313713926246,-0.292772849487583,-0.00178228501345215,0.000389062960598442,-0.000631941013129396,-0.00184809169286711,0.382720015248989,-0.297607640850658,0.496091021701343,0.0019915226176544,0.69365064677946 +4.836,0.560314522039124,-0.292774148298859,-0.0017856246785144,0.00185919081935347,-0.00174034528038788,-0.000174192469594456,0.265342045717512,-0.167973381277264,0.90967633843013,0.00255259382084185,0.962357781047631 +4.838,0.560321150689523,-0.292779810868704,-0.00178298178333053,0.00145043114346837,-0.00130383453823838,0.00179061366085301,-0.660581111471095,0.599248143728316,0.536949316736974,0.00264764655637411,1.04104769887768 +4.84,0.560320323763698,-0.292779363637012,-0.00177846222387099,-0.00078313362653062,0.000656647294525119,0.0019736047973532,-0.642824659252631,0.613998722902927,-0.125797857754019,0.00222252105559109,0.897799017199945 +4.842,0.560318018155017,-0.292777184279526,-0.00177508736414111,-0.00112086749354244,0.0011521603533736,0.00128742222983688,-0.0455878796865473,0.119253280785084,-0.355939885234261,0.00205943521768573,0.378143890143554 +4.844,0.560315840293724,-0.292774754995598,-0.00177331253495164,-0.00096548514527683,0.00113366041766551,0.000549845256415998,0.102197917517493,-0.0603599189657515,-0.328575052682517,0.00158734914695379,0.349355548700436 +4.846,0.560314156214436,-0.292772649637855,-0.00177288798311545,-0.000712075823472514,0.000910720677510624,-2.68779808930449e-05,0.491140891845151,-0.409963857864938,0.0832300752449637,0.00115636782931572,0.645148809053567 +4.848,0.56031299199043,-0.292771112112888,-0.00177342004687521,0.00099907842210356,-0.000506195013794063,0.000882765557395816,0.386153802989184,-0.343558505914972,0.561311019821369,0.00142606665861988,0.76303162943776 +4.85,0.560318152528124,-0.29277467441791,-0.00176935692088587,0.000832539388484395,-0.000463513346149417,0.00221836609839268,-0.543978191443139,0.396924324005925,0.253282296029889,0.00241435593936242,0.719453343334702 +4.852,0.560316322147984,-0.292772966166273,-0.00176454658248164,-0.00117683434366924,0.00108150228222982,0.00189589474151548,-0.536079497515179,0.413340982607989,-0.350343166982288,0.00247971835695382,0.762215409323797 +4.854,0.560313445190749,-0.292770348408782,-0.00176177334191981,-0.00131177860157609,0.00118985058428236,0.000816993430463687,0.0484241802837335,-0.0590444029294801,-0.527040781741969,0.00195038093148257,0.532544015432186 +4.856,0.560311075033578,-0.292768206763936,-0.00176127860875978,-0.000983137622534326,0.000845324670511921,-0.000212268385452162,0.180362458746008,-0.203393901648134,-0.451965718666708,0.0013138459768485,0.527420806000739 +4.858,0.560309512640259,-0.2927669671101,-0.00176262241546161,-0.000590328766591975,0.00037627497768973,-0.000990869444203346,0.552785982467441,-0.511223053885992,0.00297964593622345,0.00121321604298544,0.752947695080421 +4.86,0.560308713718511,-0.292766701664025,-0.0017652420865366,0.00122800630733568,-0.00119956754503228,-0.000200349801707267,0.43038851596517,-0.402407799634448,0.519531345019298,0.00172832341562426,0.785543843677042 +4.862,0.560314424665489,-0.29277176538028,-0.00176342381466844,0.00113122529726851,-0.00123335622084788,0.00108725593587362,-0.518005176870898,0.3766436556773,0.243593663034182,0.00199573638308691,0.685220898176217 +4.864,0.5603132386197,-0.292771635088908,-0.0017608930627931,-0.000844014400147679,0.000307007077676758,0.000774024850429352,-0.525149107102946,0.425825690614985,-0.333374467592341,0.00118563405926215,0.75382202085189 +4.866,0.560311048607888,-0.292770537351969,-0.00176032771526673,-0.00096937113114304,0.000469946541611868,-0.0002462419344956,0.0478381886604235,-0.0208518078567823,-0.487542905917609,0.0011050634516491,0.490327824313278 +4.868,0.560309361135176,-0.292769755302742,-0.00176187803053109,-0.000652661645505963,0.00022359984624962,-0.0011761467732413,0.17008175722666,-0.147132585382571,-0.39464009300804,0.0013635561400116,0.454220876702142 +4.87,0.560308437961306,-0.292769642952584,-0.00176503230235969,-0.000289044102236323,-0.000118583799918483,-0.00182480230652794,0.167394998307203,-0.165941306060787,-0.251651767905983,0.00185135411754488,0.344798803370364 +4.872,0.560308204958767,-0.292770229637942,-0.0017691772397572,1.69183477227738e-05,-0.000440165377993455,-0.00218275384486512,0.501401182261012,-0.420351541650924,0.208447874609701,0.00222675686543171,0.686694313774587 +4.874,0.560308505634697,-0.292771403614096,-0.00177376331773915,0.0017165606268075,-0.001799989966522,-0.000991010808089221,0.368411753333325,-0.287765419704816,0.709050303063539,0.00267743285384251,0.849287047497206 +4.876,0.560315071201274,-0.292777429597808,-0.00177314128298955,0.00149056536105624,-0.00159122705681285,0.000653447367389353,-0.582552645657279,0.497312239569513,0.407624188597466,0.00227613314721746,0.867666138395225 +4.878,0.560314467896141,-0.292777768522323,-0.00177114952826959,-0.000613649955821872,0.000189258991756279,0.000639485946300826,-0.58586694617895,0.540355323121913,-0.198094147131803,0.000906271212031504,0.821258330234228 +4.88,0.560312616601451,-0.292776672561841,-0.00177058333920435,-0.000852902423659301,0.000570194235674567,-0.000138929221137772,-0.00480626325540726,0.0788878373666928,-0.380193036079689,0.00103530929637783,0.388320918486715 +4.882,0.560311056286447,-0.29277548774538,-0.00177170524515415,-0.000632875008843499,0.000504810341223016,-0.000881286198017762,0.495542365239124,-0.345527647625753,0.0125128023368123,0.00119667440026139,0.604241806930712 +4.884,0.560310085101415,-0.292774653320476,-0.00177410848399642,0.00112926703729742,-0.000811916354828599,-8.88780117905175e-05,0.40920203193264,-0.297233882656066,0.522211248180553,0.00139368271487612,0.726979278702559 +4.886,0.560315573354596,-0.2927787354108,-0.00177206075720131,0.00100393311888725,-0.000684125189401383,0.00120755879470468,-0.530849976226931,0.437809203123664,0.249206518713548,0.00171292358984304,0.731835011849827 +4.888,0.560314100833891,-0.292777389821233,-0.0017692782488176,-0.000994132867610074,0.000939320457665863,0.000907948063063563,-0.532879087425441,0.452174001741616,-0.325607749657762,0.00164164331262096,0.771000555319897 +4.89,0.560311596823125,-0.292774978128969,-0.00176842896494905,-0.00112758323081428,0.00112457081756488,-9.48722039262222e-05,0.0461783492417438,-0.0213042693452322,-0.47881065765113,0.00159533827171855,0.48150385015214 +4.892,0.560309590500968,-0.292772891537963,-0.00176965773763331,-0.000809419470643078,0.000854103380284925,-0.00100729456754117,0.5422772141258,-0.444618911816317,-0.0604154787075105,0.00154896572249621,0.70384698889192 +4.894,0.560308359145243,-0.292771561715448,-0.00177245814321922,0.00104152562568916,-0.000653904829700585,-0.000336534118756291,0.44941136979204,-0.38602015919879,0.47126333929328,0.0012749989679839,0.757014714234849 +4.896,0.56031375660347,-0.292775507157282,-0.00177100387410833,0.000988226008524882,-0.000689977256510064,0.000877758789631741,-0.129471652371484,0.0872350802636285,0.54260887928129,0.00149101299498091,0.564621345568251 +4.898,0.560312312049277,-0.292774321624474,-0.00176894710806069,0.000523639016203278,-0.00030496450864611,0.00183390139836863,-0.232463369574668,0.210276757266889,0.374313618137438,0.00193142318246482,0.488227628841123 +4.9,0.560315851159535,-0.292776727015316,-0.00176366826851486,5.83725302261075e-05,0.000151129772557584,0.00237501326218166,-0.576937040801221,0.489954825721294,-0.152174204557586,0.00238053262022957,0.772055094425771 +4.902,0.560312545539398,-0.292773717105384,-0.00175944705501196,-0.00178410914700186,0.00165485479423928,0.00122520458013822,-0.428379805780901,0.354373802784972,-0.715758465504928,0.00272446620489668,0.906311332293232 +4.904,0.560308714722947,-0.292770107596139,-0.00175876745019431,-0.00165514669289731,0.00156862498369732,-0.000488020599837739,0.546258022662936,-0.444539187322104,-0.458635786597971,0.0023320075086402,0.840452081404381 +4.906,0.560305924952626,-0.292767442605449,-0.00176139913741132,0.000400922943649639,-0.000123301955048935,-0.000609338566253463,0.568039558786169,-0.50648969313752,0.120193646880804,0.000739754058581234,0.770485082497404 +4.908,0.560310318414722,-0.29277060080396,-0.00176120480445932,0.000617011542247623,-0.000457333788852991,-7.2460123144705e-06,-0.37161026785607,0.212125486846036,-0.0404515733028525,0.00076805595003742,0.429799654639698 +4.91,0.560308392998795,-0.292769271940604,-0.00176142812146057,-0.00108551812777481,0.000725199992335304,-0.000771144859464891,-0.399464902253786,0.250780529845897,-0.505568121460181,0.00151622195897895,0.691420427612022 +4.912,0.560305976342211,-0.29276770000399,-0.00176428938389718,-0.000980848066767345,0.000545788330530488,-0.00202951849815497,0.149164718778243,-0.178173886963879,-0.562625714883467,0.00231924409370331,0.608723042419245 +4.914,0.560304469606528,-0.292767088787282,-0.00176954619545319,-0.0004888592526619,1.25044444798647e-05,-0.00302164771899851,0.243803028827927,-0.270937004630237,-0.391925353390694,0.00306096302946863,0.53521235035647 +4.916,0.5603040209052,-0.292767649986212,-0.00177637597477318,-5.63595145552868e-06,-0.000537959687990581,-0.00359721991171792,0.58567225933584,-0.525395718219827,0.1376185003418,0.00363722744451205,0.79874370590046 +4.918,0.560304447062722,-0.292769240626034,-0.00178393507510007,0.00185382978468172,-0.00208907842839968,-0.00247117371763125,0.43407441392705,-0.369197098112312,0.707326468033083,0.00372929391350285,0.908315928771934 +4.92,0.560311436224339,-0.292776006299926,-0.0017862606696437,0.00173066170425248,-0.00201474808043967,-0.0007679140395859,-0.546130307303818,0.445035672699244,0.457010586019759,0.0027647950619159,0.839746234445118 +4.922,0.560311369709539,-0.292777299618356,-0.00178700673125841,-0.000330691444533312,-0.000308935737602899,-0.000643131373552414,-0.571429908759159,0.51801705928597,-0.114006620179874,0.000786394357242719,0.779661031333889 +4.924,0.560310113458561,-0.292777242042876,-0.00178883319513791,-0.000555057930784413,5.73201567044481e-05,-0.00122394052030545,-0.00403355992358471,0.0838808228466153,-0.271366394444806,0.00134514136957305,0.284063341670579 +4.926,0.560309149477816,-0.292777070337729,-0.00179190249333963,-0.000346825684227652,2.65875537835998e-05,-0.00172859695133176,0.114995574770899,-0.0411439675766848,-0.189502222294509,0.00176324767784042,0.225450439208705 +4.928,0.560308726155824,-0.292777135692661,-0.00179574758294324,-9.50756317008688e-05,-0.000107255713602273,-0.0019819494094834,0.11229430974676,-0.0674643934120436,-0.0647715698497222,0.00198712521638553,0.146139702479353 +4.93,0.560308769175289,-0.292777499360584,-0.00179983029097756,0.000102351554759339,-0.000243270019864545,-0.00198768323073062,0.08089957642675,-0.0582317804011055,0.0459436149082654,0.00200512861658654,0.109756537233775 +4.932,0.560309135562043,-0.292778108772741,-0.00180369831586616,0.000228522674006167,-0.000340182835206721,-0.00179817494985032,0.046631914191192,-0.0343976424288651,0.1283629103764,0.00184428309219962,0.140835968367809 +4.934,0.560309683265985,-0.292778860091924,-0.00180702299077697,0.000288879211524128,-0.000380860589580021,-0.00147423158922496,0.0166085253328227,-0.00556318427437986,0.181653085093029,0.00154979507232886,0.182495576540411 +4.936,0.560310291078889,-0.292779632215099,-0.00180959524222306,0.000294956775337451,-0.000362435572304238,-0.00107156260947828,-0.0073126540309381,0.022220102501046,0.209473331979742,0.00116901902012793,0.210775436602154 +4.938,0.560310863093087,-0.292780309834214,-0.00181130924121488,0.000259628595400378,-0.000291980179575846,-0.000636338261306086,-0.0248704035837985,0.0448583055909325,0.21679412270417,0.000746716690329585,0.222779029969118 +4.94,0.56031132959327,-0.292780800135817,-0.00181214059526828,0.000195475161002246,-0.000183002349940488,-0.000204386118661503,0.336441172331406,-0.216454226667511,0.538298698815226,0.000336859145866798,0.670679195911224 +4.942,0.560311644993731,-0.292781041843613,-0.00181212678568952,0.00160539328472615,-0.00115779708624599,0.00151685653395506,0.237111936238273,-0.118633697494161,0.914799714763648,0.00249371919753722,0.952446608802536 +4.944,0.560317751166409,-0.292785431324162,-0.00180607316913246,0.00114392290595523,-0.000657537139917081,0.00345481274039268,-0.688157516685971,0.613490355242587,0.499214597939319,0.00369819493487282,1.04840183066551 +4.946,0.560316220685354,-0.292783671992173,-0.00179830753472796,-0.00114723678201743,0.00129616433472409,0.00351371492571211,-0.658257713358117,0.597980190340005,-0.204124037692766,0.00391693589375631,0.912441860064807 +4.948,0.560313162219281,-0.292780246666823,-0.00179201830942961,-0.00148910794747753,0.00173438362144321,0.00263831658962153,-0.0393665033696725,0.0804579151324921,-0.459380264630749,0.0034908800398529,0.468031436152785 +4.95,0.560310264253565,-0.292776734457687,-0.00178775426836947,-0.00130470279549614,0.0016179959952541,0.00167619386718891,0.121720508214295,-0.115473364228137,-0.444914173705922,0.00267016596967969,0.475498267011073 +4.952,0.560307943408099,-0.292773774682842,-0.00178531353396086,-0.0010022259146204,0.00127249016453071,0.000858659894798036,0.151577671976616,-0.195374856598685,-0.361580995485259,0.00183329888935184,0.438050158690667 +4.954,0.560306255349906,-0.292771644497029,-0.00178431962879028,-0.00069839210758974,0.000836496568859441,0.000229869885248037,0.143514684226877,-0.220646782990463,-0.270199110304751,0.00111369574381929,0.377212177218949 +4.956,0.560305149839669,-0.292770428696567,-0.00178439405441987,-0.000428167177712831,0.000389903032568762,-0.00022213654642109,0.123936016817277,-0.212729870295534,-0.188614652812066,0.00062023878638213,0.310144516694884 +4.958,0.560304542681195,-0.292770084884899,-0.00178520817497596,-0.000202648040320574,-1.44229123227884e-05,-0.00052458872600031,0.100847087527998,-0.183298671133805,-0.120994036172145,0.000562554512996091,0.241677666927511 +4.96,0.560304339247508,-0.292770486388216,-0.00178649240932387,-2.47788276008825e-05,-0.000343291651966375,-0.000706112691109617,0.077233717032954,-0.141455447660864,-0.0668708117689736,0.000785530573022555,0.17448895720447 +4.962,0.560304443565885,-0.292771458051507,-0.0017880326257404,0.000106286827811208,-0.000580244702966183,-0.000792071973076175,0.0546323217914704,-0.0947976119269486,-0.0243640954156089,0.000987602559544713,0.112093206559541 +4.964,0.560304764394819,-0.292772807367028,-0.00178966069721617,0.000193750459565024,-0.000722482099674212,-0.000803569072772064,0.0340385854502637,-0.0492568331643727,0.00852311194880536,0.00109783554307878,0.0604773044218211 +4.966,0.560305218567723,-0.292774347979905,-0.00179124690203149,0.000242441169612278,-0.000777272035623696,-0.00075797952528095,0.0161267865242541,-0.0089639258342854,0.0334084007168308,0.00111241291741453,0.0381647278048433 +4.968,0.560305734159497,-0.292775916455171,-0.0017926926153173,0.000258257605662033,-0.00075833780301135,-0.000669935469904755,0.00130650604222891,0.0236514120927498,0.0514419553794974,0.00104431161450731,0.0566336562945185 +4.97,0.560306251598146,-0.292777381331118,-0.00179392664391111,0.000247667193781193,-0.000682666387252707,-0.000552211703762983,-0.0102506489546693,0.047587562855587,0.0634100651197033,0.000912310364367812,0.0799405297768993 +4.972,0.560306724828272,-0.29277864712072,-0.00179490146213235,0.000217255009843351,-0.000567987551588981,-0.000416295209425913,-0.0185806652771987,0.0629211493359158,0.0698959036742439,0.000736960853406098,0.0958631811820111 +4.974,0.560307120618185,-0.292779653281324,-0.00179559182474881,0.000173344532672389,-0.000430981789909016,-0.000272628089065976,-0.0238874232963358,0.0704565411117748,0.0714276025054052,0.000538627612723628,0.10313406603467 +4.976,0.560307418206403,-0.292780371047879,-0.00179599197448861,0.000121705316658019,-0.000286161387141913,-0.000130584799404324,0.348579843559283,-0.204214585682708,0.400560295986931,0.000337272758208071,0.568911289273216 +4.978,0.560307607439452,-0.292780797926872,-0.00179611416394643,0.00156766390690937,-0.00124784013263976,0.00132961309488157,0.254896252549422,-0.116778318546381,0.792709391985415,0.00240469251750267,0.840831407232238 +4.98,0.560313688862031,-0.29278536240841,-0.00179067352210908,0.00114129032685582,-0.00075327466132749,0.00304025276853769,-0.672814453150839,0.607543505091248,0.392106552628006,0.00333363213660023,0.987692233218952 +4.982,0.560312172600759,-0.292783811025518,-0.00178395315287228,-0.00112359390569429,0.0011823338877255,0.00289803930539377,-0.323647830258186,0.559178664160607,-0.115190947555551,0.00332550875845857,0.656275590649247 +4.984,0.560309194486408,-0.292780633072859,-0.00177908136488751,-0.000153300994176781,0.00148343999531469,0.00257948897831554,0.887932709206568,-0.0729496710296474,0.216527900195549,0.00297957359428596,0.916859030683203 +4.986,0.560311559396782,-0.292777877265537,-0.00177363519695901,0.00242813693113159,0.000890535203606946,0.00376415090617587,1.15513382521723,-0.372090909795535,1.00772424029142,0.00456702681726887,1.57743270657876 +4.988,0.560318907034133,-0.292777070932045,-0.00176402476126281,0.00446723430669266,-4.92364386761535e-06,0.00661038593948167,0.790001929249074,-0.371645885174165,1.73258715787109,0.00797830864670311,1.94012421556043 +4.99,0.560329428334009,-0.292777896960112,-0.00174719365320108,0.00558814464812824,-0.000596048337089882,0.010694499537661,0.347369635480035,-0.177241546463936,2.20553926096304,0.0120811818374521,2.23975080334752 +4.992,0.560341259612725,-0.292779455125393,-0.00172124676311217,0.00585671284861265,-0.000713889829723281,0.0154325429833329,-0.0336362952841113,0.055027145874664,2.39760262235627,0.0165219280658313,2.39846987095381 +4.994,0.560352855185404,-0.292780752519431,-0.00168546348126776,0.00545359946699181,-0.00037593975359125,0.020284910027085,-0.319273415941544,0.253987251338361,2.34697356439208,0.0210085852129942,2.38216916903998 +4.996,0.560363074010593,-0.292780958884407,-0.00164010712300382,0.00457961918484633,0.000302059175630275,0.0248204372409022,-0.507492788299731,0.383216873633247,2.11084362428661,0.0252412015651664,2.20455549002626 +4.998,0.560371173662143,-0.292779544282728,-0.00158618173230414,0.00342362831379266,0.00115692774094191,0.0287282845242324,-0.607580669380205,0.428619683103787,1.74701543422236,0.0289546895050528,1.89866585526776 +5,0.560376768523848,-0.292776331173443,-0.0015251939849069,0.00214929650732577,0.00201653790804524,0.0318084989777909,-0.633590446740184,0.392923283635345,1.30654122324991,0.03194474147385,1.50428572055796 +5.002,0.560379770848172,-0.292771478131096,-0.00145894773639299,0.0008892665268322,0.00272862087548312,0.0339544494172315,-0.601482164554175,0.290702068746724,0.831281853389984,0.03407551616726,1.06645112725614 +5.004,0.560380325589956,-0.292765416689942,-0.00138937618723796,-0.000256632150891194,0.00317934618303226,0.0351336263913512,-0.527429408557439,0.143353141430504,0.353860204071129,0.0352781207778913,0.651113621570387 +5.006,0.560378744319569,-0.292758760746364,-0.00131841323082757,-0.00122045110739779,0.0033020334412052,0.0353698902335162,-0.42665508091799,-0.0254390710994713,-0.101331547512956,0.035544648836124,0.439260500082708 +5.008,0.560375443785526,-0.292752208556177,-0.00124789662630391,-0.00196325247456297,0.00307758989863439,0.0347283002012994,-0.312628854401352,-0.193290612692842,-0.516801024422251,0.0349196327978206,0.634177704120355 +5.01,0.560370891309671,-0.292746450386769,-0.00117950003002239,-0.00247096652500306,0.00252887099043391,0.0333026861358274,-0.196569592929143,-0.341557635046796,-0.880682114552316,0.0334898457433798,0.964832736703843 +5.012,0.560365559919426,-0.292742093072215,-0.00111468588176059,-0.00274953084627963,0.00171135935844705,0.0312055717430898,-0.0872117404336608,-0.456661801453148,-1.18566326460882,0.0313731792864783,1.27355536417493 +5.014,0.560359893186285,-0.292739604949336,-0.00105467774305001,-0.00281981348673774,0.000702223784621114,0.0285600330773916,0.0092062182875544,-0.530478783709204,-1.4281348307809,0.0287074895406299,1.52350306508072 +5.016,0.560354280665479,-0.292739284177077,-0.00100044574945103,-0.00271270597312941,-0.000410555776389533,0.0254930324199668,0.0887815246737765,-0.560027008291618,-1.6075149851757,0.0256402424268503,1.70458699886627 +5.018,0.560349042362393,-0.292741247172441,-0.000952705613370158,-0.00246468738804268,-0.00153788424854511,0.0221299731366895,0.149663485979452,-0.546706739726199,-1.72568886737926,0.022319845046803,1.81639463919444 +5.02,0.560344421915927,-0.292745435714071,-0.000911925856904264,-0.00211405202921154,-0.00259738273529457,0.018590276950449,0.191695448660408,-0.49530130750647,-1.78651343191396,0.0188895211731323,1.8637866757394 +5.022,0.560340586154276,-0.292751636703382,-0.000878344505568354,-0.00169790559340096,-0.00351908947857121,0.0149839194090329,0.216023196525291,-0.412914561990593,-1.79535139872,0.0154849835330453,1.85484530401506 +5.024,0.560337630293553,-0.292759512071985,-0.000851990179268139,-0.00124995924311047,-0.00424904098325676,0.0114088713555698,0.224706831614224,-0.307961259590565,-1.75862644930052,0.0122384269003321,1.79947222422634 +5.026,0.560335586317304,-0.292768632867315,-0.00083270902014608,-0.000799078266944164,-0.00475093451693334,0.00794941361183154,0.220361720384996,-0.189288567278566,-1.68339897476553,0.00929532579487474,1.70828029250326 +5.028,0.560334433980485,-0.292778515810053,-0.000820192524820809,-0.000368512361570387,-0.00500619525237111,0.0046752754565069,0.205848005516107,-0.0654646885071692,-1.57697699248353,0.00685973708386182,1.59170206434455 +5.03,0.560334112267857,-0.292788657648325,-0.00081400791832005,2.43137551203558e-05,-0.00501279327096204,0.00164150564189673,0.184018575259701,0.0557525294088543,-1.44657411648748,0.00527477282055533,1.45929704140988 +5.032,0.560334531235506,-0.292798566983137,-0.000813626502253223,0.000367561939468338,-0.00478318513473572,-0.00111102100944239,0.157529451538794,0.1677757178363,-1.29902873710021,0.00492425928398626,1.31925732115071 +5.034,0.560335582515615,-0.292807790388864,-0.00081845200235782,0.000654431561275464,-0.00434169039961692,-0.00355460930650352,0.40855790880273,0.000562257518587079,-0.860087405540114,0.00564923034725976,0.952192326238508 +5.036,0.560337148961751,-0.292815933744735,-0.000827844939479239,0.00200179357467944,-0.00478093610466137,-0.00455137063160323,0.236840155168374,0.195905266411647,-0.392926897747221,0.00689778965891994,0.49886238531408 +5.038,0.560343589689914,-0.292826914133283,-0.000836657484884235,0.00160179218194907,-0.00355806933397024,-0.00512631689749258,-0.533105792351058,0.970579774370265,-0.63099345713612,0.00644241573580986,1.27451152493945 +5.04,0.560343556130479,-0.292830166022071,-0.000848350207069207,-0.000130629594724555,-0.000898617007180734,-0.00707534446014743,-0.406296351174262,0.937048288379901,-1.06415998993622,0.00713337759033905,1.47498227240678 +5.042,0.560343067171535,-0.292830508601311,-0.000864958862724821,-2.33932227478002e-05,0.000190123819548949,-0.00938295685723698,0.143430536822506,0.422170935904198,-1.04126669436152,0.00938491202379654,1.13271220828681 +5.044,0.560343462557588,-0.292829405526793,-0.000885882034498159,0.000443092552565533,0.000790066736436246,-0.011240411237594,0.226269298561619,0.258132801841958,-0.77824602315625,0.0112768515663012,0.850586392682639 +5.046,0.560344839541745,-0.292827348334366,-0.000909920507675202,0.000881683971498778,0.0012226550269169,-0.0124959409498623,0.189744760702226,0.201670111322443,-0.486317496147355,0.0125865321738312,0.559623636986309 +5.048,0.560346989293474,-0.292824514906685,-0.000935865798297603,0.00120207159537435,0.00159674718172593,-0.0131856812221832,0.128158828070719,0.182890993578809,-0.224730911829556,0.0133362950993066,0.316824531052202 +5.05,0.560349647828127,-0.292820961345639,-0.000962663232563929,0.0013943192837816,0.00195421900123205,-0.0133948645971805,0.0673134424380177,0.177581580398805,-0.00734274791590506,0.0136082877595493,0.190053237743402 +5.052,0.560352566570609,-0.29281669803068,-0.00098944525668633,0.00147132536512645,0.00230707350332123,-0.0132150522138468,0.0146094487203038,0.173729385811419,0.166237994212364,0.0134953692611387,0.240895010753801 +5.054,0.560355533129587,-0.292811733051625,-0.00101552344141932,0.00145275707866282,0.00264913654447781,-0.0127299126203309,-0.0278692664570168,0.16395156983445,0.301001912619862,0.0130835432082503,0.343888011807402 +5.056,0.560358377598924,-0.292806101484502,-0.00104036490716765,0.0013598482992984,0.00296287978265896,-0.0120110445633675,-0.0598851804534923,0.144060038526619,0.402997225685588,0.0124456030591849,0.432141520162689 +5.058,0.560360972522784,-0.292799881532495,-0.00106356761967279,0.00121321635684888,0.00322537669858422,-0.0111179237175887,-0.0820386185305127,0.112654656009796,0.477891414823189,0.0116397240760431,0.497796756531006 +5.06,0.560363230464351,-0.292793199977708,-0.00108483660203801,0.00103169382517631,0.0034134984066982,-0.0100994789040745,-0.0953934706642725,0.0706383502873233,0.530459462011544,0.0107105479624193,0.543577898386484 +5.062,0.560365099298085,-0.292786227538868,-0.00110396553528909,0.000831642474191743,0.00350793009973355,-0.00899608586954233,-0.101275065667004,0.0205684300322859,0.564522882186538,0.00969158210828736,0.57390398478495 +5.064,0.560366557034248,-0.292779168257309,-0.00112082094551617,0.00062659356250834,0.00349577212682733,-0.00784138737532861,-0.101124670845489,-0.034042258099443,0.583091368613875,0.00860815881738033,0.592773665526835 +5.066,0.560367605672335,-0.292772244450361,-0.0011353310847904,0.000427143790809833,0.00337176106733579,-0.00666372039508709,-0.0963835174658388,-0.0893601289077637,0.588564380192341,0.0074804006588637,0.603061393813842 +5.068,0.560368265609411,-0.29276568121304,-0.00114747582709653,0.000241059492644941,0.00313833161119624,-0.00548712985455898,-0.0884035152581602,-0.141734887892049,0.582920414102909,0.00632580659059541,0.606382856892969 +5.07,0.560368569910306,-0.292759691123916,-0.00115727960420864,7.35297297771523e-05,0.00280482151576753,-0.00433203873867519,-0.078384250756795,-0.188047358309773,0.567859375380502,0.00516129731655289,0.60329940323319 +5.072,0.56036855972833,-0.292754461926977,-0.00116480398205122,-7.24775103822042e-05,0.00238614217795723,-0.00321569235303722,-0.0673344370608104,-0.225909022239112,0.54489291770345,0.00400494753927186,0.593697822555133 +5.074,0.560368280000264,-0.292750146555204,-0.00117014237362079,-0.00019580801846606,0.00190118542681118,-0.00215246706786163,-0.0560553350126115,-0.25373716279136,0.515391440947839,0.00287853457256356,0.577194149110223 +5.076,0.560367776496256,-0.292746857185269,-0.00117341385032267,-0.000296698850432675,0.00137119352679167,-0.00115412658924564,-0.0451421820063632,-0.27073726817362,0.480603128107851,0.00181664803409115,0.553458084882191 +5.078,0.560367093204863,-0.292744661781097,-0.00117475887997777,-0.000376376746491533,0.000818236354116576,-0.000230054555430012,-0.0350000019661254,-0.27682318249135,0.441658658940253,0.000929567256830639,0.522415969816362 +5.08,0.56036627098927,-0.292743584239853,-0.00117433406854439,-0.000436698858297161,0.000263900796826395,0.000612508046515176,-0.0258686174841939,-0.27250184874571,0.399571825415909,0.000797192342191951,0.48433881385511 +5.082,0.560365346409429,-0.29274360617791,-0.00117230884779171,-0.000479851216428297,-0.000271771040866145,0.00136823274623345,-0.0178532500796631,-0.258743394251871,0.355242735889061,0.00147518728859311,0.439845750245846 +5.084,0.560364351584405,-0.292744671324016,-0.00116886113755946,-0.000508111858615822,-0.000771072780181206,0.00203347899007158,-0.0109566600237354,-0.236851079193926,0.30946583592415,0.00223333107627708,0.389855852487091 +5.086,0.560363313961995,-0.29274669046903,-0.00116417493183142,-0.000523677856523244,-0.00121917535764196,0.00260609608993019,-0.00511038106279661,-0.208340780738592,0.262943070139518,0.0029244424904661,0.33551610251636 +5.088,0.560362256872978,-0.292749548025447,-0.00115843675319974,-0.000528553382867006,-0.00160443590313548,0.00308525127062954,-0.000202659833330259,-0.174834860054639,0.216299655453015,0.00351743637451077,0.278123732015853 +5.09,0.560361199748463,-0.292753108212643,-0.0011518339267489,-0.000524488495856565,-0.00191851479786043,0.00347129471174215,0.00389805478870423,-0.137973220633183,0.170100759763028,0.00400070921058559,0.219057236618625 +5.092,0.560360158918995,-0.292757222084638,-0.00114455157435277,-0.000512961163712187,-0.00215632878566827,0.00376565430968173,0.00732476313627803,-0.0993412436826555,0.124866079625528,0.00436955779998424,0.159730625405612 +5.094,0.560359147903809,-0.292761733527785,-0.00113677130951018,-0.000495189443311449,-0.0023158797725911,0.00397075903024432,0.0101988206907282,-0.0604143834370627,0.0810813358374636,0.00462335797685303,0.101627243841155 +5.096,0.560358178161222,-0.292766485603729,-0.00112866853823179,-0.000472165880949279,-0.0023979863194165,0.00408997965303155,0.0126216612162108,-0.0225171941820137,0.0392049879268748,0.00476457894986045,0.0469399770348656 +5.098,0.560357259240285,-0.292771325473063,-0.00112041139089805,-0.000444702798446611,-0.00240594854931915,0.0041275789819518,0.0146708730511487,0.0132042584714745,-0.000329342927289044,0.00479825564691664,0.0197407047652353 +5.1,0.560356399350028,-0.292776109397926,-0.00111215822230398,-0.000413482388744677,-0.00234516928553059,0.00408866228132239,0.0163996379531658,0.0457991436406176,-0.0371149629343826,0.00473159020988784,0.0611884805893187 +5.102,0.56035560531073,-0.292780706150205,-0.00110405674177276,-0.000379104246633941,-0.00222275197475665,0.00397911913021425,0.0178388778609793,0.0745188308836048,-0.070777276262691,0.00457359108617479,0.104310615733795 +5.104,0.560354882933041,-0.292785000405825,-0.00109624174578313,-0.000342126877300768,-0.00204709396199621,0.00380555317627166,0.0190010638889892,0.09881633631857,-0.100981447331885,0.00433472945716849,0.14255862463415 +5.106,0.560354236803221,-0.292788894526053,-0.00108883452906768,-0.000303099991077992,-0.00182748662948242,0.00357519334088676,0.0198851019470182,0.118339155537415,-0.127440965742342,0.00402660954281012,0.175045059233595 +5.108,0.560353670533077,-0.292792310352343,-0.00108194097241958,-0.000262586469512686,-0.00157373733984649,0.00329578931330223,0.020481479186246,0.132917307646317,-0.149926348349027,0.00366167011983268,0.201406086280619 +5.11,0.560353186457343,-0.292795189475413,-0.00107565137181447,-0.000221174074332999,-0.00129581739889709,0.00297548794749058,0.0207772685445373,0.142547375483276,-0.168272791368384,0.00325293547862591,0.22151113168473 +5.112,0.56035278583678,-0.292797493621938,-0.00107003902062962,-0.000179477395334546,-0.00100354783791345,0.00262269814782877,0.0207605227176122,0.147373910002679,-0.182386204953212,0.00281387028362028,0.235403475781946 +5.114,0.560352468547761,-0.292799203666764,-0.00106516057922315,-0.000138131983462559,-0.00070632175888644,0.00224594312767781,0.020423849007861,0.14766890876069,-0.192247058174789,0.00235843834023595,0.243273861316274 +5.116,0.560352233308846,-0.292800318908974,-0.00106105524811891,-9.77819993030928e-05,-0.000412872202870627,0.00185370991512952,0.0197670263490857,0.143810302170133,-0.197911758862253,0.00190164802861635,0.245440833271281 +5.118,0.560352077419764,-0.292800855155576,-0.00105774573956263,-5.90638780662077e-05,-0.000131080550205845,0.00145429609222871,0.0187986046035192,0.136260105802762,-0.199511574281348,0.00146138556726354,0.242332565373787 +5.12,0.560351997053334,-0.292800843231175,-0.00105523806374999,-2.25875808890244e-05,0.00013216822034036,0.00105566361800422,0.0175365927890286,0.12554278635768,-0.197249050956508,0.00106414487343412,0.234468998795878 +5.122,0.56035198706944,-0.292800326482694,-0.00105352308509062,1.10824930898991e-05,0.000371090595224818,0.000665299888402766,0.0160082616537672,0.112224453133184,-0.191392356047963,0.000761875969581749,0.222444658906003 +5.124,0.560352041383306,-0.292799358868794,-0.00105257686419638,4.14454657260375e-05,0.000581066032873047,0.000290094193812452,0.0142493032720365,0.0968931052648247,-0.182267623588697,0.000650776538046483,0.206912549402568 +5.126,0.560352152851303,-0.292798002218563,-0.00105236270831537,6.80797061780515e-05,0.00075866301628416,-6.37706059521054e-05,0.0123024044423903,0.0801404960934825,-0.170249957953482,0.000764376287475068,0.188570666998704 +5.128,0.560352313702131,-0.292796324216729,-0.00105283194662019,9.06550834956044e-05,0.000901628017247013,-0.000390905638001553,0.0102155146841703,0.0625456049314081,-0.155753205876994,0.000986893430654889,0.168152819118383 +5.13,0.560352515471637,-0.292794395706494,-0.00105392633086737,0.000108941764914728,0.00100884543600976,-0.000686783429460012,0.00803986022201492,0.0446602134474892,-0.139219220830397,0.00122527911141965,0.146428021451455 +5.132,0.56035274946919,-0.292792288834985,-0.00105557908033803,0.00012281452438366,0.00108026887103695,-0.000947782521323081,0.0058279521000719,0.0269964101559041,-0.121106697697115,0.00144234390796944,0.124215954748523 +5.134,0.560353006729735,-0.29279007463101,-0.00105771746095266,0.000132253573315018,0.00111683107663339,-0.00117121022024853,0.00363161897776868,0.0100164360140087,-0.101880257241897,0.00162374137146385,0.102435855355913 +5.136,0.560353278483484,-0.292787821510678,-0.00106026392121902,0.000137341000294737,0.00112033461509299,-0.00135530355029071,0.00150024183354848,-0.00587541482127181,-0.0819998012443477,0.00176376299812875,0.0822237108685425 +5.138,0.560353556093736,-0.292785593292549,-0.00106313867515383,0.000138254540649212,0.00109332941734831,-0.00149920942522588,-0.000520802803668356,-0.0203385298082958,-0.0619107018090131,0.00186067526278377,0.065167952467511 +5.14,0.560353831501646,-0.292783448193009,-0.00106626075891993,0.000135257789080064,0.00103898049585982,-0.00160294635752674,-0.00239139402725289,-0.033099701170961,-0.0420347884146886,0.00191499664892453,0.0535558812836474 +5.142,0.560354097124892,-0.292781437370566,-0.00106955046058393,0.000128688964540199,0.000960930612664449,-0.00166734857888466,-0.00407762305170504,-0.0439546482474662,-0.0227625463617765,0.00192873009398899,0.0496666047680159 +5.144,0.560354346257504,-0.292779604470558,-0.00107293015323547,0.000118947296873242,0.000863161902869931,-0.00169399654297386,-0.00555242940513642,-0.0527677240131779,-0.00444644742562592,0.0019049465130567,0.0532450285429428 +5.146,0.56035457291408,-0.292777984722954,-0.00107632644675583,0.000106479246919656,0.000749859716611761,-0.00168513436858716,-0.0067959359945146,-0.0594697435463621,0.0126043330877619,0.00184751326512566,0.0611694724196544 +5.148,0.560354772174492,-0.292776605031692,-0.00107967069070981,9.17635528951863e-05,0.000625282928684509,-0.00164357921062281,-0.00779551006386131,-0.064054322290757,0.0281279131636626,0.0017608952019174,0.0703910909151611 +5.15,0.560354939968291,-0.29277548359124,-0.00108290076359832,7.5297206664207e-05,0.000493642427448704,-0.00157262271593249,-0.00854556828771602,-0.0665727813708646,0.0419123132822236,0.00164999840065855,0.0791302973675709 +5.152,0.560355073363319,-0.292774630461982,-0.00108596118157354,5.75812797443184e-05,0.00035899180320102,-0.0014759299574939,-0.00904718616689729,-0.0671279830853506,0.0537967794416875,0.00152005261684274,0.0864991975046196 +5.154,0.56035517029341,-0.292774047624027,-0.0010888044834283,3.91084619966219e-05,0.000225130495107331,-0.00135743559816577,-0.00930752158679089,-0.0658672544527815,0.0636718514875192,0.00137653355018854,0.0920827336642692 +5.156,0.560355229797167,-0.292773729940002,-0.00109139092396621,2.03511933971589e-05,9.55227853899236e-05,-0.00122124255154385,-0.00933912906037068,-0.0629747099294126,0.0714782654367873,0.00122514168295046,0.0957192553886194 +5.158,0.560355251698184,-0.292773665532885,-0.00109368945363447,1.75194575513496e-06,-2.67683446103476e-05,-0.00107152253641859,-0.00915916251176148,-0.0586632036558789,0.0772048283480279,0.00107185827404561,0.0973953142678663 +5.16,0.56035523680495,-0.29277383701338,-0.00109567701411188,-1.62854566498911e-05,-0.000139130029233618,-0.000912423238151706,-0.00878854691799453,-0.0531661484698541,0.080885332586239,0.000923113506916721,0.0971921546609337 +5.162,0.560355186556357,-0.292774222053002,-0.00109733914658708,-3.34022419168393e-05,-0.000239432938489741,-0.000747981206073666,-0.00825110444552154,-0.0467294694432496,0.0825947260794052,0.000786078702445448,0.095255513305795 +5.164,0.560355103195982,-0.292774794745134,-0.00109866893893618,-4.92898744319737e-05,-0.000326047907006596,-0.000582044333834121,-0.00757271075013311,-0.0396038416713763,0.0824445806875984,0.000668963628258897,0.0917764627123455 +5.166,0.56035498939686,-0.29277552624463,-0.00109966732392242,-6.36930849173751e-05,-0.000397848305175263,-0.000418202883323235,-0.00678045696672897,-0.0320374835098738,0.0805781221399302,0.000580718291960042,0.0869782082703513 +5.168,0.560354848423642,-0.292776386138355,-0.00110034175046947,-7.64117022988926e-05,-0.000454197841046106,-0.000259731845274364,-0.00590188445337909,-0.0242695612704121,0.0771648407827473,0.000528767490026367,0.081106451638486 +5.17,0.56035468375005,-0.292777343035995,-0.00110070625130351,-8.73006227308888e-05,-0.000494926550256901,-0.00010954352019228,-0.00496426100920618,-0.0165244511268506,0.0723949629272279,0.00051436705930154,0.074422658039376 +5.172,0.560354499221152,-0.292778365844556,-0.00110077992455024,-9.62687463357151e-05,-0.000520295645553501,2.98480064345152e-05,-0.00399395313349075,-0.00900682612864182,0.0664737836381361,0.000529968049783286,0.0671999887627508 +5.174,0.560354298675065,-0.292779424218577,-0.00110058685927777,-0.000103276435264854,-0.000530953854771473,0.000156351614360294,-0.00301586309398561,-0.00189776503195627,0.0596161289032769,0.000563048705966697,0.0597225231192581 +5.176,0.56035408611541,-0.292780489659975,-0.0011001545180928,-0.000108332198711659,-0.000527886705681327,0.00026831252204765,-0.00205296947498109,0.00464822205722902,0.0520409355695757,0.000601989907556893,0.0522884272752131 +5.178,0.56035386534627,-0.292781535765399,-0.00109951360918958,-0.000111488313164777,-0.000512360966542559,0.000364515356638574,-0.00112594505940431,0.0105051169395647,0.0439661815018952,0.000638603828076609,0.0452178100978842 +5.18,0.560353640162158,-0.292782539103841,-0.00109869645666624,-0.000112835978949276,-0.000485866237923073,0.000444177248055211,-0.000252873735833575,0.0155764221209081,0.0356041467575586,0.000667900731388177,0.0388631462641506 +5.182,0.560353414002354,-0.292783479230351,-0.00109773690019736,-0.000112499808108112,-0.000450055278058919,0.000506931943668825,0.000550951728677647,0.0197952280886212,0.0271571862610936,0.00068715788261862,0.0336105246687343 +5.184,0.560353190162925,-0.292784339324953,-0.00109666872889157,-0.000110632172034565,-0.000406685325568579,0.000552805993099598,0.00127314467301368,0.0231235030498179,0.0188139906501562,0.00069514523484574,0.0298376194566109 +5.186,0.560352971473666,-0.292785105971653,-0.00109552567622496,-0.000107407229416057,-0.000357561265859658,0.000582187906269441,0.00190426166502614,0.0255505999795461,0.0107464540235023,0.000691613425245917,0.0277839098379425 +5.188,0.560352760534008,-0.292785769570017,-0.00109433997726649,-0.000103015125374461,-0.000304482925650406,0.000595791809193602,0.00243777068670834,0.0270911695125913,0.00310712430000472,0.000676971083555813,0.0273775165582382 +5.19,0.560352559413165,-0.292786323903356,-0.00109314250898819,-9.76561466692229e-05,-0.00024919658780928,0.000594616403469461,0.00286994873698858,0.0277825248362448,-0.00397271003243516,0.000652076935363479,0.0282114820070005 +5.192,0.560352369909421,-0.292786766356368,-0.00109196151165261,-9.15353304265055e-05,-0.000193352826305414,0.00057990096906386,0.00319973110506994,0.0276816301894501,-0.0103843203939952,0.000618101258757645,0.0297379393895302 +5.194,0.560352193271843,-0.292787097314661,-0.00109082290511194,-8.48572222489446e-05,-0.000138470067051492,0.000553079121893485,0.00342850213497733,0.0268617963636415,-0.0160422321416792,0.000576429720531063,0.0314748144213562 +5.196,0.560352030480532,-0.292787320236636,-0.00108974919516504,-7.78213218865977e-05,-8.590564085086e-05,0.00051573204049715,0.00355985846356824,0.0254092223858657,-0.020884334987958,0.000528597649318958,0.0330825727902814 +5.198,0.560351881986556,-0.292787440937225,-0.00108875997694995,-7.061778839467e-05,-3.68331775080181e-05,0.000469541781941643,0.00359932837700872,0.023419487335525,-0.0248714665876106,0.000476248926499604,0.03435138137023 +5.2,0.560351748009378,-0.292787467569346,-0.00108787102803727,-6.34240083785612e-05,7.7723084912504e-06,0.000416246174146696,0.00355408383278763,0.020994090271789,-0.027986490339583,0.00042112218073838,0.0351657074400343 +5.202,0.560351628290522,-0.292787409847991,-0.00108709499225336,-5.64014530635211e-05,4.71431835791288e-05,0.000357595820583323,0.293444027188453,-0.011457090762224,0.130172505144789,0.000365073108519804,0.32122506614052 +5.204,0.560351522403566,-0.292787278996612,-0.00108644064475494,0.00111035210037512,-3.80560545576405e-05,0.000936936194725797,0.757316366048311,-0.116791205376891,0.602401400183491,0.00145333392002086,0.974708013140877 +5.206,0.560356069698924,-0.292787562072209,-0.00108334724747446,0.00297286401113006,-0.000420021637928489,0.00276720142131756,0.679161953481893,-0.183949338629365,1.14803995564764,0.00408310449427177,1.34651181131209 +5.208,0.560363413859611,-0.292788959083163,-0.00107537183906967,0.003826999914303,-0.000773853409075183,0.00552909601731688,0.195621886703509,-0.0694328252809737,1.46552114005257,0.00676872810884894,1.48014899646114 +5.21,0.560371377698581,-0.292790657485845,-0.00106123086340519,0.00375535155794401,-0.000697752939052353,0.00862928598152719,-0.184030987143914,0.134733710535671,1.50577103374929,0.00943684804575608,1.52294680900624 +5.212,0.560378435265843,-0.29279175009492,-0.00104085469514356,0.00309087596572742,-0.000234918566932559,0.0115521801523134,-0.404818968138938,0.288811214711028,1.3348550511918,0.0119608347217117,1.4244747531635 +5.214,0.560383741202444,-0.292791597160113,-0.00101502214279593,0.00213607568538808,0.00045749191979189,0.013968706186295,-0.494191241220792,0.359524785557133,1.04157981284618,0.0141384889825404,1.20763055644429 +5.216,0.560386979568584,-0.29278992012724,-0.000984979870398375,0.00111411100084403,0.00120318057529614,0.0157184994036986,-0.491339372368772,0.347829061060725,0.698768864206236,0.0158038005025071,0.92232172268802 +5.218,0.560388197646447,-0.292786784437812,-0.000952148145181145,0.000170718195913208,0.00184880816403464,0.0167637816431196,-0.431460688676893,0.270464274573711,0.35624428587014,0.0168662862334306,0.621465397998431 +5.22,0.560387662441368,-0.292782524894584,-0.000917924743825904,-0.000611731753863352,0.00228503767359086,0.017143476547179,-0.342218865578769,0.151163281891661,0.0432721082385648,0.0173059065359804,0.376611955601103 +5.222,0.560385750719432,-0.292777644287117,-0.000883574238992421,-0.00119815726640202,0.00245346129160135,0.0169368700760739,-0.243573996139313,0.0145961579699086,-0.226194492874718,0.017155541994301,0.332724041856923 +5.224,0.560382869812302,-0.292772711049418,-0.000850177263521601,-0.00158602773842071,0.0023434223054705,0.01623869857568,-0.148751763171073,-0.117726859323487,-0.448137325538235,0.0164833990281316,0.486635143606827 +5.226,0.560379406608478,-0.292768270597896,-0.000818619444689708,-0.00179316431908625,0.00198255385430745,0.0151443207739212,-0.0655735455170287,-0.229719286502913,-0.624085460270254,0.0153784397701423,0.668246587857967 +5.228,0.560375697155026,-0.292764780834001,-0.000789599980425923,-0.0018483219204888,0.00142454515945895,0.0137423567345993,0.00219171296399393,-0.311435340634476,-0.758040321307736,0.0139390814422645,0.819525413718309 +5.23,0.560372013320796,-0.292762572417258,-0.000763650017751305,-0.00178439746723027,0.000736812491769407,0.0121121594886899,0.0536159805232889,-0.358670594988096,-0.854618258596117,0.0122650468587994,0.928381191646216 +5.232,0.560368559565157,-0.292761833584034,-0.000741151342471158,-0.00163385799839562,-1.01372204935901e-05,0.0103238837002144,0.0896089148438068,-0.371896837766297,-0.918135027845131,0.0104523762550778,0.994640108238269 +5.234,0.560365477888802,-0.29276261296614,-0.000722354482950452,-0.00142596180785508,-0.000750774859295616,0.00843961937730976,0.112132082522122,-0.354924326428917,-0.952309918219508,0.0085921013262574,1.02246714458755 +5.236,0.560362855717925,-0.292764836683471,-0.000707392864961923,-0.00118532966830718,-0.0014298345262091,0.00651464402733681,0.123617192177068,-0.313573654510984,-0.960315851062942,0.00677421729780083,1.0177505494019 +5.238,0.560360736570129,-0.292768332304244,-0.000696295906841102,-0.000931493039146754,-0.00200506947733969,0.00459835597305756,0.126560273754007,-0.254535684043956,-0.94497053365927,0.00510224073774379,0.986800500014415 +5.24,0.560359129745769,-0.29277285696138,-0.00068899944106969,-0.000679088573291095,-0.00244797726238504,0.0027347618926993,0.123263643153601,-0.184500626009845,-0.908943888197567,0.00373265007431569,0.935635291453478 +5.242,0.560358020215836,-0.292778124213294,-0.000685356859270306,-0.000438438466532402,-0.00274307198137899,0.000962580420267695,0.11569308450841,-0.109570571393688,-0.854914146963791,0.00293993762679491,0.869637164912722 +5.244,0.560357375991903,-0.292783829249306,-0.00068514911938862,-0.000216316235257506,-0.00288625954795975,-0.000684894695155487,0.105422192205052,-0.0349236937665984,-0.785651692137307,0.0029742843904504,0.793462087534014 +5.246,0.560357154950895,-0.292789669251486,-0.000688096438050928,-1.67496977121465e-05,-0.0028827667564454,-0.00218002634828188,0.0936369623713452,0.0353223657231567,-0.70403409132336,0.00361429655723536,0.711111490546962 +5.248,0.560357308993112,-0.292795360316331,-0.000693869224781749,0.000158231614227917,-0.0027449700850671,-0.00350103106044924,0.0811790364097123,0.0981070036527869,-0.613010058458665,0.00445164200019328,0.626096120327888 +5.25,0.560357787877352,-0.292800649131826,-0.000702100562292723,0.000307966447926667,-0.00249033874183429,-0.00463206658211627,0.0686088700157983,0.151336452133984,-0.515532200963203,0.00526808040972114,0.541648732131176 +5.252,0.560358540858904,-0.292805321671299,-0.000712397491110212,0.00043266709429108,-0.00213962427653123,-0.00556315986430182,0.0562750600910081,0.193750553091022,-0.414477113581596,0.00597611416682971,0.460974442777747 +5.254,0.560359518545729,-0.292809207628932,-0.000724353201749933,0.000533066688290725,-0.00171533652947012,-0.00628997503644284,0.044379891088488,0.224777382408384,-0.312566676702975,0.0065414314536326,0.387546608500878 +5.256,0.560360673125657,-0.292812183017417,-0.000737557391255986,0.000610186658645052,-0.0012405147468976,-0.00681342657111386,0.0330350765493184,0.244395443143406,-0.212299660763916,0.00695226482778233,0.325409887484008 +5.258,0.560361959292364,-0.29281416968792,-0.000751606908034386,0.000665206994487984,-0.000737754756896606,-0.00713917367949841,0.0223047866703901,0.25301338807064,-0.115898527910735,0.0072079527782084,0.27918765521289 +5.26,0.560363333953635,-0.292815134036444,-0.000766114085973976,0.000699405805326602,-0.000228461194615145,-0.00727702068275675,0.0122353366257702,0.251370365064714,-0.0252727944973778,0.00731412284660567,0.252933742384879 +5.262,0.560364756915585,-0.292815083532698,-0.000780714990765416,0.00071414834099107,0.000267726703362362,-0.00724026485748793,0.00287287552084843,0.240455816792593,0.0580013464024486,0.00728032421305592,0.247368974262433 +5.264,0.560366190546999,-0.292814063129631,-0.000795075145403931,0.000710897307409997,0.000733362072555336,-0.00704501529714693,-0.00572892262791828,0.221444862679645,0.13268729575717,0.00711866809509895,0.2582180594324 +5.266,0.560367600504815,-0.292812150084408,-0.000808895051954001,0.000691232650479399,0.00115350615408085,-0.00670951567445931,-0.0135082987712648,0.195645286592925,0.197882151390045,0.00684295108928935,0.278598094287226 +5.268,0.560368955477601,-0.292809449105014,-0.000821913208101765,0.000656864112324944,0.00151594321892695,-0.00625348669158684,-0.0203996582820781,0.164451694279515,0.253001587050657,0.00646804840016869,0.302440587321841 +5.27,0.560370227961264,-0.292806086311532,-0.000833908998720351,0.000609634017351078,0.00181131293119898,-0.00569750932625657,-0.0263399914240593,0.129304295763772,0.297757282979697,0.00600950253287415,0.325688187717387 +5.272,0.56037139401367,-0.29280220385329,-0.000844703245406794,0.000551504146628695,0.00203316040198209,-0.00506245755966792,-0.0312759985687536,0.0916497966860039,0.332129524256985,0.00548328137043646,0.345959382301203 +5.274,0.56037243397785,-0.292797953669924,-0.00085415882895902,0.000484530023076077,0.00217791211794296,-0.00436899122922877,-0.0351702254680925,0.0529041782741916,0.356336110966564,0.00490572674512379,0.361954722053905 +5.276,0.560373332133762,-0.292793492204818,-0.000862179210323707,0.00041082324475634,0.00224477711507884,-0.00363711311580182,-0.0380058269786227,0.0144167666796404,0.370799658686187,0.00429376196964287,0.373021008694707 +5.278,0.560374077270829,-0.292788974561464,-0.000868707281422229,0.00033250671516157,0.00223557918466152,-0.00288579259448386,-0.0397891930653309,-0.0225630711543776,0.376113885630606,0.00366553869232031,0.378885110592724 +5.28,0.560374662160623,-0.292784549888079,-0.000873722380701644,0.000251666472494999,0.00215452483046132,-0.00213265757327922,-0.0405508128742309,-0.0569162431281461,0.373010475877593,0.00304196344214024,0.37950051682575 +5.282,0.560375083936719,-0.292780356462142,-0.000877237911715345,0.000170303463664664,0.00200791421214896,-0.00139375069097365,-0.0403442215191202,-0.0876795002679815,0.362326765503941,0.0024501558606904,0.374961379314956 +5.284,0.560375343374478,-0.292776518231231,-0.000879297383465538,9.02895864185359e-05,0.00180380682938943,-0.000683350511263621,-0.0392437048968304,-0.114065847500125,0.344975407725289,0.00193102025064778,0.365457409112444 +5.286,0.560375445095065,-0.292773141234825,-0.0008799713137604,1.33286440773247e-05,0.00155165082214841,-1.38490600723447e-05,-0.0373408895193388,-0.135478460585353,0.321916068505044,0.00155176986795455,0.351253057601519 +5.288,0.560375396689054,-0.292770311627942,-0.000879352779705828,-5.90739716588361e-05,0.00126189298704796,0.000604313762756697,-0.0347408350975867,-0.151518142154447,0.29412988868892,0.00140037808064305,0.33268162625154 +5.29,0.560375208799178,-0.292768093662877,-0.000877554058709373,-0.000125634696313007,0.000945578253530692,0.0011626704946832,-0.0315578301962571,-0.161983793524404,0.262596671788338,0.00150389660205571,0.310147800323595 +5.292,0.560374894150269,-0.292766529314928,-0.000874702097727095,-0.000185305292443851,0.000613957812950414,0.00165470044990993,-0.0279112741252564,-0.166866450435081,0.22827512131766,0.0017746311803929,0.284135500275293 +5.294,0.560374467578009,-0.292765637831625,-0.000870935256909733,-0.000237279792814045,0.000278112451790293,0.00207577097995395,-0.0239218325842719,-0.166337194133053,0.192086065116484,0.00210771758002291,0.255220243394173 +5.296,0.560373945031097,-0.292765416865121,-0.000866399013807279,-0.000280992622780949,-5.13909635818711e-05,0.00242304471037595,-0.0197079843625334,-0.160729819152098,0.154898612906063,0.00243982449239204,0.224089401115989 +5.298,0.560373343607518,-0.292765843395479,-0.00086124307806823,-0.00031611173026417,-0.000364806824818027,0.00269536543157813,-0.0153831250029723,-0.150519213308605,0.117519213906109,0.00273824861091735,0.191581418062943 +5.3,0.560372680584176,-0.29276687609242,-0.000855617552080967,-0.000342525122792831,-0.000653467816816227,0.00289312156600034,-0.0110531331587249,-0.136296402605073,0.0806832536821556,0.00298571533187862,0.15877237965228 +5.302,0.560371973507026,-0.292768457266746,-0.000849670591804227,-0.000360324262899074,-0.000909992435238381,0.00301809844630679,-0.0068145606588378,-0.11874159018547,0.0450492183862043,0.00317282808204672,0.12718268574753 +5.304,0.560371239287125,-0.292770516062161,-0.000843545158295739,-0.000369783365428185,-0.00112843417755816,0.00307331843954517,-0.00275322104700111,-0.0985959902056355,0.0111948571959349,0.00329475183606856,0.0992676903045538 +5.306,0.560370494373565,-0.292772971003457,-0.000837377318046048,-0.000371337147087077,-0.00130437639606088,0.00306287787509052,0.00105665397961251,-0.0766338937966609,-0.0203845578734442,0.00334970296252169,0.0793057399925524 +5.308,0.560369753938536,-0.292775733567745,-0.000831293646795378,-0.000365556749509736,-0.00143496975274477,0.00299178020805141,0.00455297133330217,-0.0536354830062691,-0.0492765436529494,0.00333819093847141,0.0729772042466596 +5.31,0.560369032146567,-0.292778710882468,-0.000825410197213841,-0.000353125261753866,-0.00151891832808598,0.0028657717004787,0.00768587034986246,-0.0303617210575222,-0.0751501284680729,0.00326258452413862,0.0814152842983278 +5.312,0.560368341437489,-0.292781809241058,-0.000819830559993462,-0.000334813268110282,-0.00155641663697487,0.00269117969417908,0.0104176362813839,-0.00753150767107964,-0.0977536550602147,0.00312681640310343,0.0985952728639775 +5.314,0.560367692893494,-0.292784936549015,-0.000814645478437126,-0.000311454716628335,-0.00154904435877029,0.00247475708023789,0.0127222634510779,0.0141978321114598,-0.116911466758646,0.0029361479990177,0.118455584434175 +5.316,0.560367095618623,-0.292788005418493,-0.000809931531672511,-0.000283924214305977,-0.00149962530852904,0.00222353382714455,0.0145849176971942,0.0342468361482724,-0.132520068178644,0.00269695971529168,0.137648589097284 +5.318,0.560366557196637,-0.29279093505025,-0.000805751343128547,-0.000253115045839552,-0.00141205701417719,0.00194467680752325,0.0160011512650835,0.0521262475231542,-0.144543560452266,0.0024165554252771,0.154486321047759 +5.32,0.560366083158439,-0.292793653646549,-0.000802152824442418,-0.000219919609245636,-0.0012911203184364,0.00164535958533542,0.0169760695362017,0.0674457508453216,-0.153008813767482,0.00210298941420664,0.168073832985742 +5.322,0.5603656775182,-0.292796099531523,-0.000799169904787206,-0.000185210767694753,-0.00114227401079593,0.00133264155245339,0.017523340709048,0.0799187518143334,-0.158000209141925,0.00176494375307977,0.177927345987227 +5.324,0.560365342315369,-0.292798222742593,-0.000796822258232605,-0.000149826246409451,-0.0009714453111791,0.00101335874876779,0.0176641885910108,0.0893636801884302,-0.159654261811009,0.00141175417492891,0.183813422278726 +5.326,0.560365078213214,-0.292799985312768,-0.000795116469792134,-0.000114554013330702,-0.000784819290042172,0.000694024505209284,0.0174263078272979,0.0957018152572001,-0.158154019117818,0.00105391363679547,0.18567500480984 +5.328,0.560364884099315,-0.292801362019753,-0.000794046160211767,-8.01210151002518e-05,-0.000588638050150257,0.000380742672296444,0.0168427815166989,0.0989521674841847,-0.153723397637059,0.000705605494347109,0.183592194060964 +5.33,0.560364757729154,-0.292802339864969,-0.000793593499102949,-4.71828872639132e-05,-0.000389010620105477,7.91309146611162e-05,0.0159509905908783,0.0992237035972779,-0.146621433177854,0.0003997714210152,0.177757199920337 +5.332,0.560364695367766,-0.292802918062233,-0.000793729636553123,-1.63170527367455e-05,-0.000191743235761189,-0.000205743060414908,0.014791537675251,0.0967054266907963,-0.137136481861257,0.000281712480339578,0.168455168503463 +5.334,0.560364692460943,-0.292803106837912,-0.000794416471344608,1.19832634370973e-05,-2.188913342249e-06,-0.000469415012783972,0.0134072215413052,0.0916548039062051,-0.125580433422816,0.000469573044553453,0.156047434862624 +5.336,0.56036474330082,-0.292802926817887,-0.000795607296604259,3.73118334284813e-05,0.000174875979863673,-0.000708064794106228,0.0118420346514913,0.0843849717914642,-0.112282879882792,0.000730294142041253,0.140955675173818 +5.338,0.560364841708277,-0.292802407333992,-0.000797248730521033,5.93514020430573e-05,0.000335350973823571,-0.000918546532315091,0.0101402575017319,0.0752513244321641,-0.0975853839583992,0.000979648200425526,0.123646649017693 +5.34,0.560364980706428,-0.292801585413991,-0.000799281482733519,7.78728634354044e-05,0.000475881277592296,-0.00109840632993978,0.00834558169792759,0.0646377956887658,-0.0818357286813677,0.00119959311388249,0.104617301887354 +5.342,0.56036515319973,-0.292800503808882,-0.000801642355840793,9.27337288347714e-05,0.000593902156578663,-0.0012458894470406,0.00650036281052855,0.0529434625203259,-0.0653823608952246,0.00138331479797605,0.084380791988124 +5.344,0.560365351641344,-0.292799209805365,-0.000804265040521682,0.000103874314677522,0.000687655127673623,-0.00135993577352071,0.00464490500923849,0.0405696435092503,-0.0485688801929209,0.0015274438634421,0.0634539773395396 +5.346,0.560365568696989,-0.292797753188371,-0.000807082098934875,0.000111313348871723,0.000756180730615647,-0.00144016496781226,0.00281689373215466,0.027908068109917,-0.031728830909774,0.00163042175326053,0.0423498980733963 +5.348,0.560365796894739,-0.292796185082442,-0.00081002570039293,0.000115141889606139,0.000799287400113279,-0.00148685109715979,0.00105086225137743,0.0153301503956028,-0.0151806436526416,0.00169199414533479,0.0216002260250132 +5.35,0.560366029264548,-0.292794556038771,-0.000813029503323515,0.000115516797877234,0.000817501332198065,-0.00150088754242283,-0.000622190264581149,0.00317783821137115,0.000776998387423016,0.00171298452232864,0.0033300905268548 +5.352,0.560366258961931,-0.292792915077114,-0.000816029250562622,0.000112653128547814,0.000811998752958765,-0.0014837431036101,-0.00217514497385347,-0.00824405486927832,0.0158695095917628,0.0016951478695644,0.0180149113522105 +5.354,0.560366479877062,-0.292791308043759,-0.000818964475737954,0.000106816217981821,0.000784525112720955,-0.00143740950405579,-0.00358496660136168,-0.0186736996248444,0.0298502045426159,0.00164104705577375,0.0353920012778001 +5.356,0.560366686226803,-0.292789776976663,-0.000821778888578845,9.83132621423689e-05,0.000737303954459396,-0.00136434228543965,-0.0048328694032866,-0.0278964771005903,0.0425036725564343,0.00155393451940975,0.0510698760726671 +5.358,0.56036687313011,-0.292788358827941,-0.000824421844879714,8.7484740368672e-05,0.000672939204318581,-0.00126739481383003,-0.00590435818292331,-0.035747390655192,0.0536484979278833,0.0014376335995759,0.0647371509577404 +5.36,0.560367036165764,-0.292787085219846,-0.000826848467834165,7.4695829410673e-05,0.000594314391838612,-0.00114974829372809,-0.0067892295743632,-0.0421119250928744,0.0631394199328066,0.00129642207718339,0.0761977310862507 +5.362,0.560367171913428,-0.292785981570374,-0.000829020838054625,6.03278220712222e-05,0.000504491503947102,-0.00101483713409883,-0.00748147316321082,-0.0469253005862587,0.070868765938177,0.00113492093663682,0.0853248982501748 +5.364,0.560367277477052,-0.29278506725383,-0.00083090781637056,4.4769936757833e-05,0.000406613189493598,-0.000866273229975415,-0.0079791296972458,-0.0501704129178716,0.0767672274611847,0.000958002057450554,0.0920540279137881 +5.366,0.560367350993175,-0.292784355117616,-0.000832485930974527,2.84113032822354e-05,0.000303809852275593,-0.000707768224254061,-0.0082840769591283,-0.0518745240061842,0.0808038868749462,0.000770742166848071,0.0963787336814094 +5.368,0.560367391122265,-0.292783852014421,-0.000833738889267577,1.16336289213161e-05,0.000199115093468838,-0.000543057682475594,0.0354199941529725,-0.278729431212782,0.247164287791814,0.00057852727529888,0.374212315363394 +5.37,0.560367397527691,-0.292783558657242,-0.00083465816170443,0.00017009127989411,-0.000811107872575412,0.000280888926913084,-0.149055512141394,-0.102945871355298,0.359916055075698,0.000875057491661097,0.402932953269011 +5.372,0.560368071487385,-0.292787096445911,-0.000832615333559925,-0.000584588419644195,-0.000212668391952307,0.000896606537827038,-0.336553298889365,0.524819524574876,0.0102850630989167,0.00109127207835254,0.623545859493319 +5.374,0.560365059174012,-0.29278440933081,-0.000831071735553121,-0.0011761219156635,0.00128817022572433,0.000322029179308755,0.0267363128372508,0.279639023305344,-0.313813304363959,0.00177379482558522,0.42117882636135 +5.376,0.560363366999722,-0.292781943765008,-0.000831327216842689,-0.00047764316829518,0.000905887701269192,-0.000358646679628938,0.322673389695222,-0.255461585843538,-0.231170615287399,0.00108508200811676,0.472036642255084 +5.378,0.560363148601339,-0.292780785780005,-0.000832506322271637,0.000114571643117247,0.00026632388235029,-0.000602653281840737,0.270915153997912,-0.522104328763821,0.12941002723417,0.000668764569807737,0.602274776101724 +5.38,0.560363825286295,-0.292780878469479,-0.000833737829970052,0.00060601744769635,-0.00118252961378586,0.000158993429307686,-0.0382058160386452,-0.280398187769302,0.373454585579842,0.00133824973190954,0.468562861923668 +5.382,0.56036557267113,-0.29278551589846,-0.000831870348554406,-3.82516210373175e-05,-0.000855268868726793,0.000891165060478466,-0.272570717815807,0.203648894400741,0.246349413243688,0.00123576825875355,0.420066306440754 +5.384,0.560363672279811,-0.292784299544954,-0.000830173169728138,-0.000484265423567,-0.000367934036182808,0.00114439108228255,-0.147544347600672,0.206800132136705,0.0430350922329065,0.00129596273274046,0.257658006520584 +5.386,0.560363635609435,-0.292786987634604,-0.000827292784225275,-0.000628429011440071,-2.80683401798796e-05,0.00106330542941011,-0.0647578795657101,0.35095418247927,-0.242169852588705,0.00123544700022017,0.431287211343409 +5.388,0.560361158563765,-0.292784411818314,-0.000825919948010498,-0.000743296941829812,0.00103588269373412,0.000175711671927833,0.197122770689874,0.094742789887721,-0.396179986096995,0.00128701899386259,0.452539682617974 +5.39,0.560360662421668,-0.292782844103829,-0.000826589937537564,0.000160062071319338,0.000350902819370963,-0.000521414514977694,0.418111526193036,-0.588443174111201,-0.0391556587838955,0.000648556668107692,0.722921699154435 +5.392,0.56036179881205,-0.292783008207037,-0.000828005606070409,0.000929149162942518,-0.00131789000271095,1.90890367922337e-05,0.057302269221302,-0.372691506430441,0.310364467399701,0.00161261173801008,0.488373434625188 +5.394,0.56036437901832,-0.29278811566384,-0.000826513581390395,0.000389271148204571,-0.00113986320635097,0.000720043354621249,-0.296080889222741,0.379583701748409,0.0880033382425479,0.00140331129424353,0.489379471512431 +5.396,0.560363355896643,-0.292787567659862,-0.000825125432651924,-0.000255174393948316,0.000200444804282518,0.000371102389762386,-0.0345761898140833,0.253164798784463,-0.20028287453081,0.000492959506022656,0.324655445166042 +5.398,0.560363358320744,-0.292787313884623,-0.000825029171831346,0.000250966388948254,-0.00012720401121323,-8.10881435019027e-05,0.213147881858411,-0.19210494367133,-0.135033758059772,0.000292814405156315,0.317128435715621 +5.4,0.560364359762199,-0.292788076475907,-0.000825449785225932,0.000597417133485423,-0.000567974970402888,-0.000169032642476761,0.149391408882385,-0.403472497016728,0.184674887748407,0.000841471825201995,0.468201519713108 +5.402,0.560365747989278,-0.292789585784505,-0.000825705302401253,0.00084853202447786,-0.00174109399928032,0.00065761140749181,-0.149659547567238,-0.139763443346492,0.382889707475463,0.00204545048196181,0.434207701871747 +5.404,0.560367753890297,-0.292795040851904,-0.000822819339595965,-1.22105678346265e-06,-0.0011270287437888,0.00136252618742492,-0.40556822721032,0.563764378888705,0.0496880578218487,0.00176824005489201,0.696264866926658 +5.406,0.560365743105051,-0.29279409389948,-0.000820255197651554,-0.000773740884363241,0.00051396351627425,0.000856363638779183,-0.0670235213301301,0.369115464488708,-0.29294037373705,0.0012634049762524,0.475975252614469 +5.408,0.560364658926759,-0.292792984997839,-0.000819393885040848,-0.000269315142104013,0.000349433114166203,0.000190764692476592,0.230399566675211,-0.139185686798936,-0.240180604113523,0.000480650928364946,0.360753847278381 +5.41,0.560364665844483,-0.292792696167023,-0.000819492138881647,0.000147857382337707,-4.27792309215572e-05,-0.000104358777675018,0.149273668668977,-0.174575527325823,-0.0755921641601492,0.000185964035737619,0.241812775058308 +5.412,0.560365250356289,-0.292793156114763,-0.000819811320151548,0.000327779532571829,-0.000348868995137013,-0.000111603964163971,0.0462126969330484,-0.118770820425188,0.0309883644751598,0.00049153274820507,0.131157919605121 +5.414,0.560365976962613,-0.292794091643004,-0.000819938554738303,0.00033270817006988,-0.000517862512622256,1.95946802256075e-05,0.0221434580810244,-0.277922213052286,0.239496770626292,0.000615841099557206,0.367545633063554 +5.416,0.560366581188969,-0.292795227564813,-0.000819732941430645,0.000416353364895936,-0.00146055784734628,0.000846383118341304,-0.19769574913923,-0.0484079724777662,0.35110985424549,0.00173866147737796,0.405838725081058 +5.418,0.560367642376072,-0.292799933874393,-0.000816553022264938,-0.000458074826487126,-0.000711494402533342,0.00142403409720772,-0.395392770413736,0.608099734934806,-0.0255039078206623,0.00165648119262118,0.725790038397714 +5.42,0.560364748889663,-0.292798073542423,-0.000814036805041815,-0.00116521771675883,0.000971841092392674,0.000744367487058666,-0.0230697140973535,0.373887140373047,-0.376341988653469,0.00169005632808545,0.530996325663856 +5.422,0.560362981505205,-0.292796046510024,-0.000813575552316703,-0.00055035368287653,0.000784054158958681,-8.13338574059872e-05,0.287706920357178,-0.160316647797328,-0.310722452980118,0.00096137677150881,0.452797021156683 +5.424,0.560362547474931,-0.292794937325788,-0.000814362140471439,-1.43900353299903e-05,0.000330574501203292,-0.000498522324861944,0.205697350104364,-0.208808929792704,-0.125641240828794,0.000598340273045665,0.318901693940516 +5.426,0.560362923945064,-0.292794724212019,-0.000815569641616151,0.000272435717541016,-5.11815602122268e-05,-0.000583898820721221,0.0942034237006095,-0.155841513790905,0.00191366523232726,0.000646357954339141,0.182111297211839 +5.428,0.560363637217802,-0.292795142052028,-0.000816697735754324,0.000362423659472406,-0.000292791553960258,-0.000490867663932636,0.0145780702648217,-0.0865823108937817,0.0616614963082674,0.000676778299379136,0.107290059275443 +5.43,0.560364373639702,-0.292795895378235,-0.000817533112271882,0.000330747998600297,-0.000397510803787315,-0.000337252835488179,-0.0310890106575277,-0.0252933633030975,0.0745129113480342,0.000617372296714516,0.0846076519494919 +5.432,0.560364960209796,-0.292796732095244,-0.000818046747096277,0.000238067616842281,-0.000393965007172659,-0.000192816018540465,-0.0511416788223455,0.0196400132649933,0.062060153511819,0.000499061753765317,0.0827808195642421 +5.434,0.560365325910169,-0.292797471238263,-0.000818304376346043,0.000126181283310892,-0.000318950750727333,-8.90122214408749e-05,-0.0543404916480959,0.0465053310895353,0.0401328245861597,0.000354364887105583,0.0820138918816047 +5.436,0.560365464934929,-0.292798007898246,-0.00081840279598204,2.07056502499215e-05,-0.000207943682814538,-3.22847201958445e-05,-0.00385798092084755,-0.165731720347377,0.186238209104466,0.000211451181914099,0.249332223502149 +5.438,0.56036540873277,-0.292798303012995,-0.000818433515226827,0.000110749359627503,-0.000981877632116769,0.000655940614976906,-0.179830548410714,0.0098557502957546,0.281696466762218,0.00118600471984112,0.3343487121882 +5.44,0.560365907932368,-0.292801935408775,-0.000815779033522132,-0.000698616543393015,-0.000168520681631515,0.00109450114685315,-0.356507883381145,0.618999405232967,-0.0868050575993771,0.00130934985977882,0.719578524288005 +5.442,0.560362614266597,-0.292798977095721,-0.000814055510639414,-0.00131528217389724,0.00149411998881538,0.000308720384579359,0.0232962724805105,0.351148796210661,-0.415518961616904,0.00201436590861847,0.544521992994656 +5.444,0.560360646803672,-0.29279595892882,-0.000814544151983815,-0.000605431453470984,0.00123607450321097,-0.000567574699614278,0.331305514050878,-0.200878389301162,-0.323371388886665,0.00148881444847317,0.504662784519759 +5.446,0.560360192540783,-0.292794032797708,-0.000816325809437871,9.9398823061303e-06,0.000690606431610819,-0.000984765170967157,0.239899931850342,-0.255257264217973,-0.116166381351005,0.00120282936719739,0.369056738719171 +5.448,0.560360686563201,-0.292793196503093,-0.000818483212667684,0.000354168273930493,0.000215045446338967,-0.00103224022501835,0.161292151357184,-0.422569074631052,0.195481382299995,0.00111229474169213,0.492740044800389 +5.45,0.560361609213879,-0.292793172615923,-0.000820454770337944,0.00065510848773494,-0.000999669866913576,-0.000202839641767089,-0.116354137325031,-0.169430950377356,0.376944456792162,0.00121229158777481,0.429339324689416 +5.452,0.560363306997152,-0.292797195182561,-0.000819294571234752,-0.000111248275369581,-0.000462678355170383,0.00047553760215013,-0.359974556364586,0.516884935849364,0.034748478804439,0.000672743227520406,0.630840054940319 +5.454,0.560361164220777,-0.292795023329344,-0.000818552619929344,-0.000784789737723247,0.00106786987648365,-6.38457265493481e-05,-0.0172444794138593,0.313273938828223,-0.300824420562979,0.00132676949103284,0.434664542867551 +5.456,0.560360167838201,-0.292792923703055,-0.00081954995414095,-0.000180226193025026,0.000790417400142652,-0.000727760080101921,0.274306190914353,-0.192295136886646,-0.229956168608731,0.00108943833294525,0.406326402692961 +5.458,0.560360443316005,-0.292791861659743,-0.000821463660249752,0.000312435025934289,0.000298689328936985,-0.000983670400984374,0.223534502130679,-0.441255033501645,0.120892788526408,0.00107444795984922,0.509204030375879 +5.46,0.560361417578305,-0.292791728945739,-0.000823484635744887,0.000713911815497593,-0.000974602733863735,-0.000244188925996341,-0.0817794632707208,-0.197854474852393,0.353383528437173,0.00123253754536768,0.413175739852511 +5.462,0.560363298963267,-0.292795760070679,-0.000822440415953737,-1.46828271485583e-05,-0.000492728570472501,0.000429863712764163,-0.351456469427319,0.492121980239595,0.0438263963306286,0.000654048806377888,0.6063220648736 +5.464,0.560361358846997,-0.292793699860021,-0.00082176518089383,-0.000691914062211841,0.000993885187094867,-6.88833406738066e-05,-0.0242334678365882,0.295113965969429,-0.275515916257709,0.00121297062999706,0.404460794125855 +5.466,0.560360531307018,-0.29279178452993,-0.000822715949316433,-0.000111616698494922,0.000687727293405347,-0.000672199952266796,0.259927749865515,-0.203224843980932,-0.199596035783483,0.000968132167271098,0.385618139954159 +5.468,0.560360912380203,-0.292790948950847,-0.000824453980702897,0.000347796937250105,0.000180985811171228,-0.00086726748380765,0.162989532731534,-0.224428158255473,-0.0204200834453037,0.000951772799504122,0.27811969690387 +5.47,0.560361922494767,-0.292791060586685,-0.000826185019251663,0.000540341432431141,-0.000209985339616446,-0.000753880286048002,0.0909538530601986,-0.375990053879458,0.263157212939183,0.000950998523735652,0.467859853721916 +5.472,0.560363073745932,-0.292791788892206,-0.000827469501847089,0.00071161234949094,-0.00132297440434677,0.000185361367949201,-0.174610434222591,-0.12167486281024,0.419664115031789,0.00151360901399031,0.470543882570698 +5.474,0.560364768944165,-0.292796352484303,-0.000825443573779866,-0.000158100304459303,-0.000696684790857459,0.000924776174079341,-0.403411948235504,0.553771328723522,0.0555676613308315,0.00116857878477536,0.687380280107859 +5.476,0.560362441344714,-0.292794575631369,-0.000823770397150772,-0.000902035443450899,0.000892110910547071,0.000407632013272502,-0.044087682601881,0.335490375681684,-0.293711825084338,0.00133255156605791,0.448067129040521 +5.478,0.560361160802391,-0.292792784040661,-0.000823813045726776,-0.000334451034866808,0.00064527671186913,-0.000250071126257883,0.261335022559697,-0.18264715998321,-0.229180541567806,0.000768618954874261,0.392657229271947 +5.48,0.560361103540575,-0.292791994524522,-0.000824770681655804,0.000143304646788007,0.000161522270614149,-0.000509090152998824,0.176110790964227,-0.219419799121731,-0.0513834339608553,0.000552990460655292,0.28600754575059 +5.482,0.560361734020978,-0.292792137951578,-0.000825849406338772,0.000369992128990178,-0.000232402484617892,-0.000455604862101328,0.109414798062123,-0.380458185435326,0.236182388695129,0.000631253420380139,0.460979554459254 +5.484,0.560362583509091,-0.29279292413446,-0.000826593101104209,0.00058096383903645,-0.00136031047112699,0.000435639401781588,-0.111522003291862,-0.350949657584851,0.567895651133941,0.00154199391973844,0.676836974428848 +5.486,0.560364057876335,-0.292797579193463,-0.000824106848731646,-7.60958841772212e-05,-0.00163620111495714,0.00181597774243418,-0.530963408136489,0.50141808182604,0.318752436122881,0.0024455510285398,0.796834580760833 +5.488,0.560362279125554,-0.29279946893892,-0.000819329190134471,-0.00154288979350974,0.000645361856177401,0.00171064914627325,-0.363288277786814,0.897778234885867,-0.392403121254259,0.00239234640927494,1.04497097633483 +5.49,0.560357886317161,-0.292794997746038,-0.000817264252146552,-0.00152924899532464,0.00195491182458673,0.000246365257416974,0.31179168793331,0.124630822887697,-0.650388075294647,0.00249418896069896,0.731950508684462 +5.492,0.560356162129573,-0.292791649291622,-0.000818343729104803,-0.00029572304177664,0.00114388514772813,-0.000890903154905047,0.523949993731871,-0.444692140309202,-0.373938347396885,0.00147974111926729,0.782371128837408 +5.494,0.560356703424993,-0.292790422205447,-0.000820827864766172,0.000566550979602612,0.000176143263350117,-0.0012493881321704,0.354294104394574,-0.64036599791906,0.122642630212924,0.001383104177754,0.742047261598054 +5.496,0.560358428333491,-0.292790944718568,-0.000823341281633486,0.00112145337580181,-0.00141757884394839,-0.000400332634053296,-0.0421494329993739,-0.319572304209582,0.42444113449145,0.00185133834584481,0.532966517680406 +5.498,0.560361189238497,-0.292796092520823,-0.000822429195302385,0.000397953247605098,-0.00110214595348835,0.000448376405795586,-0.368071673778633,0.439039526987252,0.126191033979906,0.00125464492640124,0.586648651538816 +5.5,0.560360020146482,-0.292795353302382,-0.000821547776010303,-0.000350833319312554,0.00033857926400042,0.00010443150186627,-0.0618475253580606,0.273065456780968,-0.189856406389671,0.000498623981104976,0.338282892158493 +5.502,0.560359785905219,-0.292794738203767,-0.00082201146929492,0.000150563146172883,-9.8841263645999e-06,-0.000311049219763014,0.208054962237664,-0.236386454275477,-0.0705724714560982,0.000345714584671587,0.32271643404709 +5.504,0.560360622399066,-0.292795392838888,-0.000822791972889356,0.000481386529638196,-0.000606966553101594,-0.000177858383958154,0.0597319741377305,-0.252953243747023,0.188709364819395,0.000794842746865908,0.321192273610482 +5.506,0.560361711451338,-0.292797166069979,-0.000822722902830753,0.000389491042723831,-0.0010216971013528,0.000443788239514652,-0.143188419572676,-0.128229554106969,0.381967165184639,0.00118004925355103,0.427603387878746 +5.508,0.560362180363237,-0.292799479627293,-0.000821016819931297,-9.13671486524426e-05,-0.00111988476952941,0.00135001027678023,-0.310327412114696,0.0334511476366439,0.474726368225399,0.00175642181730046,0.568143649684206 +5.51,0.560361345982743,-0.292801645609057,-0.000817322861723632,-0.000851818605734816,-0.000887892510806244,0.00234269371241604,-0.419903146732415,0.186260485247218,0.480651957517923,0.00264615983606725,0.66485932742658 +5.512,0.560358773088814,-0.292803031197336,-0.000811646045081632,-0.00177097973558229,-0.000374842828540458,0.00327261810685214,-0.472500810422318,0.30723909378439,0.425833239502777,0.00373990717040514,0.706389994595499 +5.514,0.560354262063801,-0.292803144980372,-0.000804232389296222,-0.0027418218474243,0.000341063864331452,0.00404602667042733,-0.477531850423744,0.387848845435977,0.335892217472647,0.00489941255870285,0.700918666347128 +5.516,0.560347805801425,-0.292801666941879,-0.000795461938399925,-0.00368110713727706,0.00117655255320328,0.00461618697674258,-0.447366903057036,0.429462431273517,0.231017000782343,0.00602029964958631,0.661773360355849 +5.518,0.560339537635252,-0.292798438770159,-0.000785767641389254,-0.00453128945965225,0.00205891358942533,0.00497009467355661,-0.394351756610441,0.439387662868304,0.124939159466709,0.00703374369734863,0.603477107926107 +5.52,0.560329680643586,-0.292793431287521,-0.000775581559705696,-0.005258514163719,0.00293410320467669,0.00511594361460947,-0.32985091585916,0.430095031957292,0.0237443826383073,0.00790150693814735,0.542537702758384 +5.522,0.560318503578597,-0.29278670235734,-0.000765303866930814,-0.00585069312308904,0.00377929371725469,0.00506507220410985,-0.268005046093551,0.447456830758153,-0.0998083164256164,0.00861212096145243,0.531042390164338 +5.524,0.560306277871094,-0.292778314112652,-0.000755321270889259,-0.00633053434809308,0.00472393052770911,0.00471671034890705,-0.187568430474691,0.499320178703811,-0.289386729419274,0.00919992072131577,0.606833779659248 +5.526,0.560293181441205,-0.292767806635229,-0.000746437025535188,-0.00660096684498771,0.00577657443206971,0.00390752528643288,-0.0385906838495105,0.495330231518503,-0.526537970536143,0.00960262096107,0.723936125326307 +5.528,0.560279874003714,-0.292755207814924,-0.000739691169743525,-0.00648489708349114,0.00670525145378334,0.00261055846676224,0.166410151630402,0.391678188157622,-0.741867980862597,0.00968655267627857,0.855261505431664 +5.53,0.560267241852871,-0.292740985629414,-0.000735994791668138,-0.00593532623846603,0.00734328718470037,0.000940053362982161,0.368587116119922,0.229987439725055,-0.884942095913958,0.00948871248164166,0.985836293570832 +5.532,0.56025613269876,-0.292725834666185,-0.000735930956291597,-0.00501054861901162,0.00762520121268346,-0.000929209916893206,0.528111159470486,0.0555752090523974,-0.940946668211375,0.00917129882116166,1.08044927369894 +5.534,0.560247199658395,-0.292710484824563,-0.00073971163133571,-0.00382288160058432,0.00756558802090994,-0.00282373330986292,0.627969807584643,-0.0994102010748302,-0.918537895946203,0.00893454059476208,1.11711249818669 +5.536,0.560240841172358,-0.292695572314102,-0.00074722588953105,-0.00249866938867277,0.00722756040838409,-0.00460336150067843,0.674837354504085,-0.255022210532692,-0.807611100056368,0.00892591257388621,1.0829023371631 +5.538,0.56023720498084,-0.29268157458293,-0.000758125077338426,-0.00112353218256768,0.00654549917877906,-0.00605417771008876,0.652530030141601,-0.413429016479472,-0.580822289080985,0.00898659845603431,0.966474791909783 +5.54,0.560236347043627,-0.292669390317387,-0.000771442600371403,0.000111450731893349,0.00557384434246639,-0.00692665065700211,0.516953707008278,-0.482304534244972,-0.27071692626034,0.00889149320102264,0.757064365233701 +5.542,0.560237650783768,-0.29265927920556,-0.000785831679966431,0.000944282645465205,0.00461628104179938,-0.00713704541513,0.288616956910166,-0.419078181955684,0.0394493051753274,0.00855214228302075,0.51037487995216 +5.544,0.560240124174209,-0.292650925193219,-0.000799990782031926,0.00126591855953414,0.00389753161464346,-0.00676885343630078,0.0379855928656605,-0.274016300167316,0.28819629457935,0.00791269102951955,0.399480840882273 +5.546,0.560242714458006,-0.292643689079101,-0.000812907093711637,0.00109622501692786,0.00352021584112999,-0.00598426023681247,-0.184146305627601,-0.10293646835935,0.453419597264729,0.00702886900132417,0.500095100534187 +5.548,0.560244509074277,-0.292636844329855,-0.000823927822979173,0.000529333337023821,0.00348578574120611,-0.00495517504724207,-0.351816659270648,0.0523877112695292,0.539547560858019,0.00608150111108195,0.646243765509778 +5.55,0.560244831791354,-0.292629745936137,-0.000832727793900603,-0.000311041620154571,0.00372976668620808,-0.00382606999338063,-0.457678339324457,0.167622418205856,0.563536118882376,0.00535226288753306,0.745076972303522 +5.552,0.560243264907796,-0.29262192526311,-0.000839232102952697,-0.00130138002027421,0.00415627541402961,-0.00270103057171231,-0.506093067537144,0.233998233206896,0.54519473058324,0.00512482013574725,0.779822197945684 +5.554,0.560239626271273,-0.29261312083448,-0.000843531916187454,-0.00233541389030337,0.00466575961903577,-0.00164529107104743,-0.507601760645255,0.254372630369435,0.501884140805641,0.00547087319996682,0.757794611542894 +5.556,0.560233923252235,-0.292603262224634,-0.000845813267236886,-0.00333178706285501,0.00517376593550724,-0.000693494008489969,-0.474996164921562,0.238776585274621,0.446431447605464,0.0061927048151381,0.694216574115535 +5.558,0.560226299123021,-0.292592425770738,-0.000846305892221413,-0.00423539854998941,0.00562086596013415,0.000140434719374234,-0.42078373910903,0.200369440171378,0.387021089096697,0.00703935060424276,0.605798804108065 +5.56,0.560216981658035,-0.292580778760793,-0.000845251528359389,-0.00501492201929132,0.00597524369619284,0.000854590347896993,-0.355755124900837,0.152300449470961,0.328076911824967,0.00784750309023092,0.507337753252086 +5.562,0.560206239434944,-0.292568524795954,-0.000842887530829825,-0.00565841904959292,0.00623006775801806,0.00145274236667425,-0.288313754468259,0.105643797866311,0.271419059667755,0.00854060365514187,0.409821594104227 +5.564,0.560194347981837,-0.292555858489761,-0.000839440558892693,-0.00616817703716423,0.00639781888765804,0.00194026658656789,-0.224373041895728,0.0683299481819149,0.217372811591685,0.00909632502211887,0.319786151931818 +5.566,0.560181566726795,-0.292542933520403,-0.000835126464483554,-0.00655591121717574,0.00650338755074569,0.00232223361304089,-0.168933350037545,0.0517361281693827,0.160232694139772,0.00952191107269027,0.2385154502001 +5.568,0.560168124336968,-0.292529844939558,-0.000830151624440528,-0.00684391043731448,0.00660476340033559,0.00258119736312705,-0.119990890654428,0.0625629138533702,0.0875867232007121,0.00985518084439899,0.161193567213166 +5.57,0.560154191085046,-0.292516514466802,-0.000824801675031045,-0.0070358747797935,0.0067536392061592,0.00267258050584378,-0.0649177989007822,0.0830811451826527,-0.00339824805433889,0.0101122630011349,0.105490973020549 +5.572,0.560139980837849,-0.292502830382734,-0.000819461302417154,-0.00710358163291758,0.00693708798106617,0.0025676043709097,0.00163870873854025,0.0911472143486493,-0.0986697363910852,0.0102555669700944,0.134336208556497 +5.574,0.560125776758514,-0.292488766114877,-0.000814531257547407,-0.00702931994483934,0.00711822806355376,0.00227790156027948,0.069789555565515,0.0846886511157841,-0.181221575731962,0.0102600850469187,0.211858465029412 +5.576,0.56011186355807,-0.292474357470479,-0.000810349696176035,-0.00682442341065549,0.00727584258552934,0.00184271806798177,0.127756272852051,0.0718887497867589,-0.242004064338273,0.0101442717873375,0.282941026991834 +5.578,0.560098479064872,-0.292459662744535,-0.000807160385275479,-0.00651829485343108,0.00740578306270083,0.00130988530292628,0.169126526817711,0.0598292491699189,-0.279502254345442,0.00995236605410366,0.332121711596581 +5.58,0.560085790378656,-0.292444734338229,-0.000805110154964331,-0.00614791730338472,0.00751515958220899,0.000724709050600122,0.192394596338159,0.0526089363839295,-0.296687524957501,0.00973651446480447,0.357500864828295 +5.582,0.560073887395658,-0.292429602106206,-0.000804261549073079,-0.00574871646807853,0.00761621880823652,0.000123135203096411,0.199646991675148,0.0512476088020008,-0.298566597512943,0.00954304418115806,0.362804702068916 +5.584,0.560062795512783,-0.292414269462996,-0.000804617614151945,-0.00534932933668404,0.00772015001741702,-0.000469557339451785,0.194205166676966,0.0543941012444489,-0.289618740923612,0.00940406958389641,0.352921209490728 +5.586,0.560052490078312,-0.292398721506137,-0.000806139778430887,-0.00497189580137058,0.00783379521321434,-0.00103533976059817,0.179629005239455,0.0597099109466123,-0.273302498479764,0.00933595328405952,0.332454671592759 +5.588,0.560042907929578,-0.292382934282143,-0.000808758973194337,-0.0046308133157263,0.00795898966120344,-0.00156276733337072,0.159823677716162,0.0644506061154941,-0.252518829558316,0.00933981745702248,0.305717594961226 +5.59,0.560033966825049,-0.292366885547492,-0.000812390847764369,-0.004332601090506,0.00809159763767629,-0.00204541507883132,0.137741413171415,0.0659240033703701,-0.228745917138369,0.00940367520622723,0.275033390209822 +5.592,0.560025577525216,-0.292350567891592,-0.000816940633509664,-0.00407984766304058,0.00822268567468495,-0.00247775100192429,0.115334391724323,0.0623986013384755,-0.20261472413752,0.0095077319422575,0.241346915871616 +5.594,0.560017647434397,-0.292333994804793,-0.000822301851772067,-0.00387126352360865,0.00834119204303022,-0.00285587397538149,0.0945402948841099,0.0529901745092113,-0.175007760223891,0.0096290280989929,0.205848347309067 +5.596,0.560010092471122,-0.29231720312342,-0.000828364129411188,-0.00370168648350418,0.00843464637272177,-0.00317778204281978,0.0762360178251857,0.0374153610519874,-0.146089920543422,0.00974392328411374,0.168979598001877 +5.598,0.560002840688463,-0.292300256219302,-0.000835012979943345,-0.00356631945230794,0.00849085348723815,-0.00344023365755511,0.0604235667960561,0.0164297898233027,-0.115758007438917,0.00983099359150586,0.131608744786293 +5.6,0.559995827193312,-0.292283239709471,-0.00084212506404141,-0.00345999221631993,0.00850036553201499,-0.0036408140725755,0.0475634343159133,-0.00867193268536159,-0.0847447650944265,0.009873362518713,0.097566171962075 +5.602,0.559989000719597,-0.292266254757174,-0.000849576236233648,-0.00337606571504427,0.0084561657564967,-0.00377921271793286,0.037705379179836,-0.0366036133516795,-0.0535436549362461,0.00985834711201783,0.0750229505779815 +5.604,0.559982322930452,-0.292249415046445,-0.00085724191491314,-0.0033091706996006,0.00835395107860829,-0.00385498869232046,0.0297298792253029,-0.065694595017871,-0.0218777150976634,0.00977752766095777,0.0753543625227346 +5.606,0.559975764036799,-0.29223283895286,-0.000864996191002929,-0.00325714619814307,0.00819338737642525,-0.0038667235783235,0.0228130118617007,-0.0939951757266119,0.00992470552290214,0.00962767621430038,0.097231817579407 +5.608,0.55996929434566,-0.292216641496939,-0.000872708809226436,-0.00321791865215379,0.0079779703757018,-0.00381528987022885,0.0175409920406401,-0.120100237417892,0.0403451403481404,0.00941060298606448,0.127904197661042 +5.61,0.55996289236219,-0.292200927071357,-0.000880257350483846,-0.0031869822299805,0.00771298642675363,-0.00370534301693092,0.0142952397278928,-0.143334811921891,0.0684102822148928,0.00913107782392724,0.15946532193641 +5.612,0.55995654641674,-0.292185789551232,-0.000887530181294158,-0.00316073769324223,0.0074046311280143,-0.00354164874136931,0.0118861139543728,-0.162945869787168,0.0945835185244661,0.0087955727905966,0.188782091740983 +5.614,0.559950249411417,-0.292171308546845,-0.000894423945449321,-0.00313943777416302,0.00706120294760503,-0.0033270089428331,0.00933287235011647,-0.177897616874072,0.118896137166719,0.00841342053571548,0.214175059306505 +5.616,0.559943988665643,-0.292157544739442,-0.000900838217065492,-0.00312340620384176,0.00669304066051793,-0.00306606419270238,0.0073799464801383,-0.187772225021834,0.139973278988163,0.00799707504224608,0.234318993959939 +5.618,0.559937755786602,-0.292144536384203,-0.000906688202220132,-0.00310991798824246,0.00631011404751761,-0.00276711582688038,0.00665247109465382,-0.192981151693837,0.156996495275337,0.0075595012524402,0.248865184004279 +5.62,0.55993154899369,-0.292132304283252,-0.000911906680373012,-0.00309679631946314,0.00592111605374267,-0.0024380782116011,0.00607243372269859,-0.193783827162275,0.17073759798357,0.00711294510958812,0.258341582959798 +5.622,0.559925368601324,-0.292120851919988,-0.000916440515066536,-0.00308562825335167,0.00553497873886859,-0.00208416543494618,0.00479223480360093,-0.190002592971869,0.181514791651382,0.00667089476141198,0.262814707424625 +5.624,0.559919206480677,-0.292110164368296,-0.000920243342112798,-0.00307762738024874,0.0051611056818551,-0.00171201904499549,0.00390486661738321,-0.181985149536432,0.18807102619862,0.00624818464526786,0.261733745494346 +5.626,0.559913058091803,-0.292100207497261,-0.000923288591246518,-0.00307000878688213,0.00480703814072278,-0.00133188133015162,0.00437387633039578,-0.170851832986569,0.189762717797119,0.00585717316762135,0.25538083071126 +5.628,0.559906926445529,-0.292090936215734,-0.000925570867433403,-0.00306013187492716,0.0044776983499089,-0.0009529681738071,0.00565452552836592,-0.157428874519895,0.187400829128194,0.00550657225004915,0.244816043080281 +5.63,0.559900817564303,-0.292082296703861,-0.000927100463941746,-0.00304739068476867,0.00417732264264327,-0.000582278013638924,0.00634061906468527,-0.141948782350186,0.182293238571111,0.0052034279212383,0.231128719741983 +5.632,0.55989473688279,-0.292074226925163,-0.000927899979487959,-0.00303476939866842,0.00390990322050822,-0.000223795219522735,0.00577046369732012,-0.124481888280135,0.174868678119368,0.00495451842232079,0.214727951949171 +5.634,0.559888678486709,-0.292066657090979,-0.000927995644819837,-0.00302430882997939,0.00367939508952267,0.000117196698838627,0.00550346031230417,-0.105628256141582,0.163825027005107,0.00476425515585737,0.195003220599417 +5.636,0.55988263964747,-0.292059509344805,-0.000927431192692604,-0.0030127555574192,0.00348739019594185,0.000431504888497767,0.00700876886372571,-0.0867729877047455,0.148541600565812,0.00462869127252067,0.172172243218372 +5.638,0.559876627464479,-0.292052707530195,-0.000926269625265846,-0.00299627375452449,0.00333230313870373,0.000711363101101809,0.00981243774445038,-0.0688761755131821,0.13026323986574,0.00453739331355308,0.147677767954865 +5.64,0.559870654552452,-0.29204618013225,-0.000924585740288197,-0.0029735058064414,0.00321188549388915,0.000952557847960671,0.0120948675659787,-0.0519953594521961,0.111033922721026,0.00447943206896898,0.123200386447529 +5.642,0.559864733441253,-0.29203985998822,-0.000922459393874003,-0.00294789428426057,0.00312432170089492,0.00115549879198596,0.0127989640759122,-0.0357798127617208,0.0918214946846365,0.00444821809943488,0.0993740175740169 +5.644,0.559858862975315,-0.292033682845446,-0.000919963745120253,-0.00292230995013775,0.00306876624284225,0.00131984382669926,0.0134851201176236,-0.0204006190827586,0.0714217978926256,0.00443837914387205,0.0754924296718659 +5.646,0.559853044201453,-0.292027584923248,-0.000917180018567207,-0.00289395380379008,0.0030427192245639,0.00144118598355643,0.0156976716280078,-0.00692656506820868,0.0492264499891248,0.00443960875947434,0.0521309656223313 +5.648,0.5598472871601,-0.292021511968548,-0.000914199001186028,-0.00285951926362572,0.00304105998256942,0.00151674962665574,0.018916777394674,0.00400768892360965,0.02656150919515,0.00444133151955492,0.0328545249278103 +5.65,0.559841606124398,-0.292015420683318,-0.000911113020060583,-0.00281828669421138,0.00305874998025834,0.00154743202033705,0.0212085110860649,0.0127060811526714,0.00554881297515448,0.00443770629831038,0.0253384049651759 +5.652,0.559836014013323,-0.292009276968627,-0.000908009273104679,-0.00277468521928145,0.00309188430718011,0.00153894487855636,0.0214678706129827,0.0198835253298689,-0.0128772563757209,0.00443023452813962,0.0319694820096502 +5.654,0.559830507383521,-0.292003053146089,-0.000904957240546359,-0.00273241521175945,0.0031382840815778,0.00149592299483417,0.0214902161137384,0.0256859352258336,-0.0302149324016448,0.00442184412577069,0.0451058621143291 +5.656,0.559825084352476,-0.291996723832301,-0.000902025581125343,-0.00268872435482651,0.00319462804808343,0.00141808514894979,0.0230911244363052,0.0292482981270183,-0.0473949163223536,0.00440974517534863,0.0602904724169812 +5.658,0.559819752486102,-0.291990274633897,-0.000899284899950559,-0.00264005071401422,0.00325527727408589,0.00130634332954473,0.0258097925113948,0.0301309427444936,-0.0632515020827689,0.0043901287906385,0.0746643932264887 +5.66,0.55981452414962,-0.291983702723205,-0.000896800207807164,-0.00258548518478092,0.00331515181906142,0.00116507914061869,0.0284167525758923,0.028843091408513,-0.0763801931476375,0.00436261098747673,0.0864486532817587 +5.662,0.559809410545363,-0.291977014026621,-0.000894624583388084,-0.00252638370371067,0.00337064963971993,0.00100082255695422,0.0292043760565011,0.0261341172832599,-0.0854203739053837,0.00432961192286645,0.0939815298085761 +5.664,0.559804418614805,-0.291970220124646,-0.000892796917579347,-0.00246866768055493,0.00341968828819445,0.000823397644997189,0.0273945623756276,0.0228773776691525,-0.0901589767210449,0.00429727492571951,0.0969663732443114 +5.666,0.55979953587464,-0.291963335273468,-0.000891330992808095,-0.00241680545420814,0.00346215915039655,0.000640186650069996,0.0252586062411703,0.0192934544384303,-0.0928250983950912,0.00427051911751869,0.0981159185120979 +5.668,0.559794751392988,-0.291956371488044,-0.000890236170979067,-0.00236763325559023,0.00349686210594818,0.000452097251416783,0.0250987071749688,0.0144803464047782,-0.0950116177435143,0.00424713123716842,0.0993319336371586 +5.67,0.559790065341618,-0.291949347825044,-0.000889522603802428,-0.00231641062550828,0.00352008053601566,0.000260140179095981,0.0266952846218674,0.00792450563136271,-0.0959561223569632,0.00422189508145146,0.0999150310430243 +5.672,0.559785485750486,-0.2919422911659,-0.000889195610262683,-0.00226085211710278,0.00352856012847363,6.82727619889724e-05,0.0287086426993377,0.000146284931888853,-0.0943660253419357,0.0041912826253656,0.0986364755237857 +5.674,0.55978102193315,-0.29193523358453,-0.000889249512754473,-0.00220157605471092,0.00352066567574321,-0.000117323922271804,0.0289920293673883,-0.00796087094836863,-0.0888171665155246,0.00415400876597175,0.0937678105798707 +5.676,0.559776679446267,-0.291928208503197,-0.00088966490595177,-0.00214488399963321,0.00349671664468015,-0.000286995904073166,0.026453051977954,-0.0153009728982322,-0.0792310347599749,0.00411216747154351,0.0849202013640872 +5.678,0.559772442397151,-0.291921246717951,-0.000890397496370765,-0.00209576384679911,0.00345946178415029,-0.000434248061311668,0.0234824683449455,-0.0215289198345623,-0.0683226154506006,0.00406800606148755,0.0753850150283532 +5.68,0.55976829639088,-0.29191437065606,-0.000891401898197017,-0.00205095412625344,0.00341060096534191,-0.000560286365875538,0.02252882932996,-0.0275977769354423,-0.0581345110852217,0.00401902134661825,0.0681821591171375 +5.682,0.559764238580646,-0.29190760431409,-0.000892638641834267,-0.00200564852947926,0.00334907067640851,-0.000666786105652581,0.0233288299649164,-0.0341243245603245,-0.0481350518585046,0.00396024041316597,0.0634483021967592 +5.684,0.559760273796762,-0.291900974373355,-0.000894069042619627,-0.00195763880639376,0.0032741036671006,-0.000752826573309578,0.0245320380258868,-0.0406973441785148,-0.0372288141105398,0.00388829684678284,0.0603662100265138 +5.686,0.55975640802542,-0.291894507899422,-0.000895649948127505,-0.00190752037737573,0.00318628129969447,-0.000815701362094724,0.467256174377481,-0.0911746811696907,0.220993082721561,0.00380215612817379,0.524861026930989 +5.688,0.559752643715253,-0.291888229248156,-0.000897331848068006,-8.86141088840454e-05,0.00290940494242187,0.000131145757576569,1.29240852406158,-0.262614093259873,1.02648878367687,0.00291370705271008,1.67121667597596 +5.69,0.559756053568985,-0.291882870279652,-0.000895125365097199,0.00326211371887116,0.00213582492665486,0.00329025377261321,1.45572676884392,-0.414809529822151,2.12410338745403,0.0051018529889015,2.60826044944781 +5.692,0.559765692170128,-0.291879685948449,-0.000884170832977552,0.00573429296649227,0.00125016682313309,0.00862755930739365,0.917146669319019,-0.307195006422155,3.04590945210836,0.0104345489846864,3.19579273036546 +5.694,0.559778990740851,-0.291877869612359,-0.000860615127867628,0.00693070039614684,0.000907044900966369,0.0154738915810453,0.311501157423636,-0.00389088891321331,3.59535952021206,0.0169793597963958,3.60883058478398 +5.696,0.559793414971713,-0.291876057768846,-0.000822275266653377,0.00698029759618668,0.00123460326748023,0.0230089973882403,-0.195677232431643,0.307181514093305,3.75654280763367,0.0240761865869878,3.77415737979711 +5.698,0.559806911931236,-0.291872931199289,-0.000768579138314657,0.00614799146642018,0.00213577095733973,0.0305000628115817,-0.565549689211409,0.542151761123778,3.59090538594407,0.0311867463542419,3.67537433112042 +5.7,0.559818006937578,-0.291867514685016,-0.000700275015407037,0.00471809883934079,0.00340321031197559,0.0373726189320182,-0.799022511092763,0.662880983805501,3.18111283381294,0.037822677627624,3.34624073153342 +5.702,0.559825784326593,-0.291859318358042,-0.0006190886625866,0.00295190142204948,0.00478729489256144,0.043224514146832,-0.91168760110753,0.660904059590438,2.60761397957686,0.0435888808943694,2.84035545741743 +5.704,0.559829814543267,-0.291848365505446,-0.000527376958819728,0.00107134843491107,0.00604682655033705,0.0478030748503245,-0.923929055554564,0.548844085262623,1.93696898152339,0.0481959112782876,2.21511254003255 +5.706,0.559830069720333,-0.29183513105184,-0.000427876363185281,-0.00074381480016919,0.00698267123361218,0.0509723900729264,-0.857361529972506,0.352409536792305,1.22295384274827,0.0514538191756475,1.5345609718065 +5.708,0.559826839284066,-0.291820434820511,-0.000323487398528,-0.00235809768497934,0.00745646469750643,0.0526948902213181,-0.734380557109097,0.104093748631567,0.509951319550484,0.053272046571479,0.900111470583126 +5.71,0.559820637329593,-0.29180530519305,-0.000217096802300032,-0.00368133702860525,0.0073990462281384,0.0530121953511281,-0.576787887444786,-0.162093526920729,-0.167194071651135,0.0536525021164016,0.622022858235857 +5.712,0.559812113935952,-0.291790838635599,-0.00011143861712351,-0.00466524923475823,0.00680809058982358,0.0520261139347136,-0.404023092280253,-0.415192291814871,-0.782763681935948,0.0526766663623417,0.973826617030006 +5.714,0.559801976332654,-0.291778072830691,-8.99234656115411e-06,-0.00529742939772645,0.00573827706087873,0.049881140623384,-0.232519645954313,-0.630318885242213,-1.31778593045219,0.0504887984778912,1.47916430505385 +5.716,0.559790924218361,-0.291767885527355,8.80859453700478e-05,-0.00559532781857558,0.00428681504885445,0.0467549702129043,-0.0752986343974579,-0.78980849681553,-1.76072630926378,0.0472833132962357,1.93122357124124 +5.718,0.559779595021379,-0.291760925570495,0.000178027534290442,-0.00559862393531624,0.00257904307361696,0.0428382353863296,0.0596284130200181,-0.883885434812646,-2.10998401936959,0.0432794462090176,2.28841464151676 +5.72,0.559768529722619,-0.291757569355061,0.000259438886915347,-0.00535681416649554,0.000751273309604255,0.0383150341354269,0.169184121677763,-0.910993164002167,-2.36885955145268,0.0386949830132928,2.54362485174115 +5.722,0.559758167764713,-0.291757920477257,0.000331287670832167,-0.00492188744860512,-0.00106492958239212,0.0333627971805178,0.252474928296977,-0.875709523975128,-2.54096151592691,0.0337407066728093,2.69946220296208 +5.724,0.559748842172825,-0.29176182907339,0.000392890075637434,-0.00434691445330752,-0.00275156478629665,0.0281511880717181,0.309619579488624,-0.786397347692324,-2.6310688513152,0.0286174101533805,2.76347758681364 +5.726,0.5597407801069,-0.291768926736402,0.000443892423119027,-0.00368340913065076,-0.00421051897316107,0.0228385217752582,0.342027671685027,-0.653945928984058,-2.64589735694889,0.0235136991927271,2.74688933700327 +5.728,0.559734108536302,-0.291778671149283,0.000484244162738456,-0.00297880376656756,-0.00536734850223259,0.0175675986439237,0.351875541260275,-0.490663901512107,-2.5925971132025,0.0186091972942985,2.66197807131656 +5.73,0.559728864891834,-0.291790396130411,0.00051416281769473,-0.0022759069656095,-0.00617317457920971,0.012468133322447,0.341838674720708,-0.308900084161226,-2.48013410936935,0.014097595023543,2.52256578546267 +5.732,0.55972500490844,-0.2918033638476,0.00053411669602825,-0.00161144906768458,-0.00660294883887764,0.00764706220644521,0.316369598206355,-0.120550509436304,-2.32234044071875,0.0102309951547159,2.34688884921983 +5.734,0.559722419095563,-0.291816807925767,0.000544751066520507,-0.00101042857278422,-0.00665537661695488,0.00317877155957304,0.281416110144239,0.0626588854312827,-2.13326702500201,0.00744443365489672,2.15266099582194 +5.736,0.559720963194149,-0.291829985354068,0.000546831782266541,-0.000485784627107745,-0.00635231329715253,-0.00088600589356187,0.241836743616888,0.230499498745136,-1.92301292693794,0.00643217516650017,1.95181806187344 +5.738,0.559720475957055,-0.291842217178955,0.00054120704294626,-4.30815983165585e-05,-0.00573337862197423,-0.00451328014817958,0.200672685066156,0.375387015523817,-1.69908261945817,0.00729679272989007,1.75158975953286 +5.74,0.559720790867756,-0.291852918868556,0.00052877866167382,0.000316906113156969,-0.0048507652350571,-0.0076823363713953,0.15991291944104,0.492245262117203,-1.4676871280111,0.00909113001631029,1.55627216309053 +5.742,0.559721743581507,-0.291861620239896,0.000510477697460682,0.000596570079447533,-0.00376439757350563,-0.0103840286602233,0.120439489027773,0.578184991072419,-1.23286214779922,0.0110614029927242,1.36702327335521 +5.744,0.559723177148073,-0.29186797645885,0.000487242547032932,0.000798664069268006,-0.00253802527076768,-0.0126137849625916,0.0824736627116391,0.632505448714611,-0.998509261010484,0.0128913539883558,1.18485686562489 +5.746,0.559724938237784,-0.291871772340979,0.00046002255761031,0.000926464730294126,-0.00123437577864691,-0.0143780657042657,0.0473993156669293,0.656093312411395,-0.772024338323301,0.0144606636727216,1.01426165691116 +5.748,0.559726883006994,-0.291872913961964,0.000429730284215862,0.000988261331935745,8.63479788781969e-05,-0.0157018823158852,0.017506097092834,0.650274092631955,-0.560190230216327,0.0157331886372586,0.858473035693933 +5.75,0.559728891283112,-0.291871426949063,0.000397215028346776,0.000996489118665454,0.00136672059188063,-0.0166188266251308,-0.00616683067117198,0.6172351241368,-0.365609659623562,0.0167046794083588,0.717417348186364 +5.752,0.559730868963469,-0.291867447079597,0.000363254977715347,0.00096359400925106,0.00255528847542512,-0.0171643209543793,-0.0240509170218949,0.560519581735218,-0.188533531931135,0.0173802165243201,0.591866151068505 +5.754,0.559732745659149,-0.291861205795161,0.000328557744529251,0.000900285450577864,0.00360879891882175,-0.0173729607528554,0.442569786457456,0.441876717834219,0.246751272971451,0.0177666459651017,0.672316324628498 +5.756,0.559734470105271,-0.291853011883921,0.000293763134703917,0.00273387315508108,0.0043227953467622,-0.0161773158624934,1.36890247961382,0.176357604992034,1.2808937543912,0.0169666193024109,1.88299888836127 +5.758,0.55974368115177,-0.291843914613774,0.000263848481079285,0.00637589536903253,0.00431422933878981,-0.0122493857352912,1.6552044312111,-0.105699151233919,2.66537000334115,0.0144676213468725,3.13927878252047 +5.76,0.559759973686748,-0.291835754966566,0.000244765591762758,0.00935469087992475,0.00389999874182657,-0.00551583584912995,1.19471118396129,-0.136788327737906,3.93192459614726,0.0115388334228267,4.1116999999362 +5.762,0.559781099915289,-0.291828314618807,0.000241785137682762,0.0111547401048782,0.00376707602783812,0.00347831264929962,0.608260439766657,0.0540473705063715,4.86699460085889,0.0122767156639375,4.90515426114545 +5.764,0.559804592647167,-0.291820686662455,0.000258678842359958,0.0117877326389917,0.00411618822385208,0.0139521425543078,0.0674609269216932,0.289671909209639,5.41209122937244,0.0187231388425727,5.42025758305788 +5.766,0.559828250845845,-0.291811849865912,0.000297593707899987,0.011424583812565,0.00492576366467655,0.025126677566787,-0.375970471353613,0.483589888164902,5.59026277445655,0.0280380846085436,5.62372215376434 +5.768,0.559850290982417,-0.291800983607796,0.000359185552627095,0.0102838507535774,0.00605054777651147,0.0363131936521316,-0.708187195421404,0.588861726033158,5.4539923476102,0.0382232226262374,5.53121322712624 +5.77,0.55986938624886,-0.291787647674806,0.00044284648250853,0.00859183503087905,0.00728121056880944,0.0469426469572303,-0.930149992160161,0.58510979405005,5.06577081915819,0.0482747113911243,5.18358625579274 +5.772,0.559884658322541,-0.291771858765521,0.000546956140456037,0.0065632507849363,0.00839098695271193,0.0565762769287666,-1.05045948337715,0.473155772639186,4.48713284089473,0.0575704788413909,4.63267769688706 +5.774,0.559895639251999,-0.291754083726995,0.000669151590223571,0.00438999709737091,0.00917383365936598,0.0648911783208072,-1.08144744580299,0.269820155655387,3.77080884526902,0.0656833032237831,3.93208988223703 +5.776,0.55990221831093,-0.291735163430884,0.000806520853739237,0.00223746100172481,0.00947026757533336,0.071659512309841,-1.03714091855002,0.00169408216570547,2.96329129311723,0.0723172033762846,3.13954764937714 +5.778,0.559904589096006,-0.291716202656693,0.000955789639462967,0.000241433423170374,0.0091806099880288,0.0767443434932774,-0.933298328398154,-0.30010771146244,2.10831795880802,0.0772918892773638,2.32510537905327 +5.78,0.559903184044623,-0.291698440990931,0.00111349822771238,-0.00149573231186822,0.00826983672948347,0.080092784145074,-0.786699431779163,-0.604048913447104,1.24543202240978,0.0805324871514006,1.59212813813524 +5.782,0.559898606166759,-0.291683123309775,0.00127616077604323,-0.00290536430394593,0.00676441433424065,0.081726071582916,-0.613698366722009,-0.881606304154361,0.408812836079068,0.0820569876329849,1.14934037420817 +5.784,0.559891562587407,-0.291671383333594,0.00144040251404401,-0.00395052577875599,0.00474341151286642,0.0817280354893901,-0.429332485500387,-1.10970780577853,-0.371649226210982,0.0819608344983384,1.24655563239471 +5.786,0.559882804063644,-0.291664149663724,0.00160307291800083,-0.00462269424594767,0.00232558311112603,0.0802394746780719,-0.247151680864363,-1.27163057514452,-1.07249329382005,0.0804061622981175,1.68177588824595 +5.788,0.559873071810423,-0.29166208100115,0.00176136041275633,-0.00493913250221355,-0.000343110787712246,0.0774380623141094,-0.0779246106949423,-1.35745176294017,-1.68097921493465,0.0775961741959677,2.16204501680785 +5.79,0.559863047533635,-0.291665522106875,0.00191282516725723,-0.00493439268872741,-0.00310422394063404,0.073515557818334,0.0716917266249637,-1.36468801021845,-2.1909809400401,0.0737463333245863,2.58222976292185 +5.792,0.559853334239669,-0.291674497896913,0.00205542264402964,-0.00465236559571373,-0.00580186282858543,0.06867413855395,0.197510963980082,-1.29711422265597,-2.59847828821758,0.0690756355312423,2.91094577446006 +5.794,0.559844438071252,-0.291688729558189,0.00218752172147306,-0.00414434883280699,-0.00829268083125852,0.0631216446654626,0.29666114081924,-1.16292507550857,-2.90250077594027,0.0637987947212957,3.140845955798 +5.796,0.559836756844337,-0.291707668620238,0.00230790922269151,-0.00346572103243663,-0.0104535631306202,0.0570641354501876,0.36793697905781,-0.973567068703033,-3.10589058261936,0.0581171554627194,3.27563227011593 +5.798,0.559830575187122,-0.291730543810712,0.00241577826327379,-0.00267260091657591,-0.0121869491060702,0.0506980823349865,0.411680788910321,-0.742732260648861,-3.21357791503514,0.0522107276009279,3.3238855724841 +5.8,0.559826066440671,-0.291756416416662,0.00251070155203144,-0.00181899787679553,-0.0134244921732153,0.0442098237900485,0.429123307221832,-0.484942526072277,-3.23375534489989,0.0462388825874031,3.29795234911952 +5.802,0.559823299195615,-0.291784241779405,0.002592617558434,-0.000956107687688394,-0.0141267192103595,0.0377630609553855,0.422964456750395,-0.214662200786387,-3.18107443244353,0.0403302257652863,3.21624211415536 +5.804,0.55982224200992,-0.291812923293503,0.002661753795853,-0.000127140049793764,-0.014283140976361,0.031485526060273,0.398130053001801,0.0535897659226842,-3.07197542496713,0.0345740167182668,3.09813047073826 +5.806,0.559822790635416,-0.29184137434331,0.00271855966267508,0.000636412524318634,-0.0139123601466688,0.0254751592555183,0.359827549638321,0.306306322532633,-2.91990373397795,0.0290334724903128,2.95789405564171 +5.808,0.559824787660018,-0.29186857273409,0.00276365443287506,0.00131217014875936,-0.0130579156862306,0.0198059111243624,0.312270465201054,0.532252354857419,-2.73606093726443,0.0237593153948961,2.80478784672075 +5.81,0.559828039316011,-0.291893606006055,0.00279778330717254,0.00188549438512299,-0.0117833507272389,0.0145309155064594,0.259056468221514,0.722751427854852,-2.53032659983867,0.0188029239453154,2.64424518190821 +5.812,0.559832329637558,-0.291915706136999,0.0028217780949009,0.00234839602164553,-0.0101669099748109,0.00968460472500664,0.203150646818789,0.87164947472305,-2.31010947155061,0.0142363124084157,2.47742785215548 +5.814,0.559837432900097,-0.291934273645954,0.00283652172607256,0.00269809697239805,-0.0082967528283471,0.00529047762025797,0.146721395560692,0.975539635798696,-2.08203102890615,0.0102031851996129,2.30392229779077 +5.816,0.559843122025448,-0.291948893148312,0.00284294000538193,0.00293528160388823,-0.0062647514316165,0.00135648060938297,0.0920284715931159,1.03361794201127,-1.85550222639256,0.00705003746356696,2.12596420519705 +5.818,0.559849174026513,-0.291959332651681,0.00284194764851009,0.00306621085877056,-0.00416228106030157,-0.00213153128531308,0.0419710377565459,1.04670665721264,-1.63909486773891,0.00559192795694437,1.94524763968798 +5.82,0.559855386868883,-0.291965542272554,0.00283441388024068,0.00310316575491444,-0.00207792480276548,-0.00519989886157342,-0.00133179789401861,1.0171932839989,-1.43698597590602,0.0064020588375158,1.76057168148549 +5.822,0.559861586689533,-0.291967644350892,0.0028211480530638,0.00306088366719448,-9.35079243064122e-05,-0.00787947518893651,-0.0371426369801309,0.94928619197657,-1.25046007775897,0.00845363127946045,1.57040576152413 +5.824,0.559867630403551,-0.291965916304251,0.00280289597948494,0.00295459520699393,0.00171921996514038,-0.0102017391726087,-0.0655147626081762,0.848645747800007,-1.07941046698803,0.0107592208022546,1.37463404061661 +5.826,0.559873405070361,-0.291960767471031,0.00278034109637336,0.00279882461676175,0.003301075066894,-0.0121971170568891,-0.0871305134707036,0.721829570189081,-0.921834951353495,0.0129421860723804,1.17405678410966 +5.828,0.559878825702019,-0.291952712003983,0.00275410751125738,0.00260607315311108,0.00460653824589703,-0.0138890789780231,-0.103169201001597,0.576078425688525,-0.77578916541589,0.0148633215247482,0.971781387841813 +5.83,0.559883829362973,-0.291942341318048,0.00272478478046127,0.00238614781275541,0.00560538876964784,-0.0153002737185523,-0.114313395249843,0.418962819034606,-0.64292522636125,0.0164685293971816,0.775854524223862 +5.832,0.55988837029327,-0.291930290448905,0.00269290641638317,0.00214881957211175,0.00628238952203527,-0.0164607798834679,-0.120393148485382,0.257414079464827,-0.52529066999527,0.0177494540206748,0.597232623433305 +5.834,0.559892424641262,-0.291917211759959,0.00265894166092739,0.00190457521881383,0.00663504508750726,-0.0174014363985336,-0.121595759329399,0.0975661786573756,-0.422139058434874,0.0187206094668305,0.450006747239392 +5.836,0.559895988594145,-0.291903750268555,0.00262330067078903,0.0016624365347941,0.00667265423666481,-0.0181493361172075,-0.118838277801601,-0.0549775535926046,-0.331330798085392,0.0194084108388521,0.35626558271854 +5.838,0.559899074387401,-0.291890521143013,0.00258634431645857,0.00142922210760748,0.00641513487313687,-0.0187267595908751,-1.30289508470253,0.755590918374477,-1.31348787847551,0.0198466157328609,1.99842529121658 +5.84,0.559901705482575,-0.291878089729062,0.00254839363242554,-0.00354914380401543,0.00969501791016239,-0.023403287631109,-0.970764195640101,0.338226083626115,-2.49788779418874,0.025579360155492,2.70115224293984 +5.842,0.559884877812185,-0.291851741071372,0.00249273116593413,-0.00245383467495336,0.00776803920764148,-0.0287183107676311,2.00098961089503,-2.26337719529764,-1.1542357010552,0.0298513837382741,3.23405253585863 +5.844,0.559891890143875,-0.291847017572231,0.002433520389355,0.00445481463956559,0.000641509128970834,-0.0280202304353303,1.86971798545071,-2.34045035004898,1.05603838630247,0.0283793978280803,3.17628245902448 +5.846,0.559902697070743,-0.291849175034856,0.00238065024419282,0.00502503726684866,-0.00159376219255343,-0.0244941572224217,-1.26508952223045,0.215315112146,0.768031872197358,0.0250550357312925,1.49555509877994 +5.848,0.559911990292943,-0.291853392621002,0.00233554376046533,-0.000605543449355638,0.00150276957755474,-0.0249481029465412,-1.42475210208877,0.4920537949697,-0.57003925112872,0.0250006567894425,1.61151488897182 +5.85,0.559900274896945,-0.291843163956546,0.00228085783240664,-0.000673971141507059,0.000374452987325593,-0.0267743142269369,0.260145453151416,-0.824357480496472,-0.686384101408057,0.0267854130911221,1.103795292213 +5.852,0.559909294408377,-0.291851894809052,0.00222844650355757,0.000435038363250143,-0.00179466034443152,-0.0276936393521737,0.503005080407311,-1.05589154549717,-0.163955738343362,0.0277551387079517,1.18101759127613 +5.854,0.559902015050398,-0.291850342597924,0.00217008327499796,0.00133804918012196,-0.00384911319466261,-0.0274301371803102,1.48367350204234,-1.83809742178982,1.37745011076909,0.0277311823354935,2.73445753309697 +5.856,0.559914646605097,-0.291867291261831,0.00211872595483634,0.00636973237141887,-0.00914705003158997,-0.022183838909098,0.995188504701297,-1.34581063949234,2.97889373209857,0.0248266937691816,3.41693053842136 +5.858,0.559927493979884,-0.29188693079805,0.00208134791936156,0.0053188031989276,-0.00923235575263256,-0.0155145622519146,-1.91917038869885,1.23883317967815,2.08977693975114,0.018820937864002,3.09597969725992 +5.86,0.559935921817893,-0.291904220684842,0.00205666770582867,-0.0013069491833774,-0.00419171731287684,-0.0138247311500925,-1.92157114395365,1.4734348671717,0.25029442604809,0.0145052335924431,2.43435684910478 +5.862,0.559922266183151,-0.291903697667302,0.00202604899476119,-0.00236748137688618,-0.00333861628394642,-0.0145133845477224,-0.166993197631065,0.0955069552474146,-0.350789185665357,0.0150794448767652,0.400076691817262 +5.864,0.559926451892385,-0.291917575149977,0.00199861416763779,-0.00197492197390159,-0.00380968949188722,-0.0152278878927537,0.219691904002144,-0.302274603742905,-0.252151012022402,0.0158209551071315,0.45079330254113 +5.866,0.559914366495255,-0.291918936425269,0.00196513744319017,-0.0014887137608775,-0.00454771469891817,-0.0155219885958121,1.27460724072537,-1.23218889144468,0.887183730652004,0.0162428478910905,1.98242479157289 +5.868,0.559920497037342,-0.291935766008773,0.00193652621325453,0.00312350698900045,-0.00873844505766649,-0.0116791529701453,0.936080591491929,-0.952399375212428,2.15997539285362,0.0149170818874284,2.53944977138868 +5.87,0.559926860523211,-0.2919538902055,0.00191842083130959,0.0022556086050898,-0.00835731219976746,-0.00688208702439858,-1.68751338439788,1.32471175845174,1.17813337823023,0.0110587322598539,2.4475622407617 +5.872,0.559929519471762,-0.291969195257572,0.00190899786515694,-0.00362654654859033,-0.00343959802386013,-0.00696661945722493,-1.61549172005675,1.42936413838002,-0.631491468302232,0.00857417407664551,2.2475935602767 +5.874,0.559912354337017,-0.291967648597595,0.00189055435348069,-0.00420635827513791,-0.00263985564624673,-0.0094080528976078,1.04544835813327,-0.744400185826078,-0.368004782589364,0.0106383150496697,1.33511101642901 +5.876,0.559912694038662,-0.291979754680157,0.00187136565356651,0.000555246883943211,-0.00641719876716477,-0.00843863858758255,1.16259008351579,-0.917696720268217,0.753289234921286,0.0106159954941243,1.66169420897125 +5.878,0.559914575324552,-0.291993317392664,0.00185679979913037,0.000444002058924746,-0.00631064252731919,-0.00639489595792299,-0.286631482354668,0.300812854122862,0.80373216239082,0.00899533441560672,0.904782498031322 +5.88,0.559914470046897,-0.292004997250266,0.00184578606973482,-0.000591279045475335,-0.00521394735067346,-0.00522370993801963,-0.48841627094806,0.570267357988486,0.290312202297303,0.00740418823381591,0.805007135444579 +5.882,0.559912210208371,-0.292014173182067,0.00183590495937828,-0.00150966302486771,-0.004029573095365,-0.00523364714873364,-1.29232546362826,1.2981532235276,-1.0788591294873,0.00677551505473864,2.12585133934036 +5.884,0.559908431394798,-0.292021115542648,0.00182485148113988,-0.00576058089998896,-2.13344565624963e-05,-0.00953914645596931,-0.864245558320206,0.935646860124994,-2.4959905005903,0.0111436108408714,2.80219985207604 +5.886,0.559889167884771,-0.292014258519893,0.00179774837355441,-0.00496664525814815,-0.000286985654865433,-0.0152176091510938,0.697400547498992,-0.478108810739974,-2.62372487976204,0.0160101703351912,2.75660802495411 +5.888,0.559888564813765,-0.292022263485267,0.00176398104453551,-0.00297097870999329,-0.00193376969952218,-0.0200340459750163,0.95983463180321,-0.861308607012761,-2.09725735703973,0.0203452495161669,2.46203644542081 +5.89,0.559877283969931,-0.292021993598691,0.00171761218965436,-0.00112730673093574,-0.0037322200829161,-0.0236066385792517,1.73185716782742,-1.58836386780723,-0.706095758697935,0.0239264220522909,2.4537319019734 +5.892,0.559884055586842,-0.292037192365599,0.00166955449021849,0.00395644996131717,-0.00828722517075183,-0.0228584290098084,1.31614009563762,-1.22170969802888,0.76577802798427,0.0246341099722234,1.95223341989279 +5.894,0.559893109769776,-0.292055142499374,0.00162617847361511,0.00413725365161534,-0.00861905887503218,-0.0205435264673143,-0.185998960802557,0.184923629946706,1.04902366078099,0.0226592480762782,1.08131540413084 +5.896,0.559900604601448,-0.292071668601099,0.00158738038434925,0.00321245411810702,-0.00754753065096508,-0.0186623343666849,-1.29905808888437,1.32983007958324,0.00887190985200952,0.0203854802347687,1.85905316482469 +5.898,0.559905959586248,-0.292085332621978,0.00155152913614838,-0.00105897870392157,-0.00329973855669981,-0.0205080388279063,-1.04872528373928,1.25075253997617,-1.24866453361489,0.02079878282508,2.0550838801661 +5.9,0.559896368686632,-0.292084867555326,0.00150534822903761,-0.000982447016850575,-0.00254452049105985,-0.023656992501145,1.08544861747433,-0.561155913004528,-0.714627703751844,0.023813716233918,1.41555198238939 +5.902,0.559902029798181,-0.292095510703942,0.00145690116614379,0.00328281576597625,-0.00554436220871818,-0.023366549642914,1.09030479219387,-0.682915962426104,0.51635680144558,0.0242386566019977,1.38627670326541 +5.904,0.559909499949696,-0.292107045004161,0.00141188203046597,0.00337877215192443,-0.00527618434076396,-0.0215915652953629,-0.181760161810556,0.348606518145752,0.836228205797289,0.022482213288648,0.92403510381698 +5.906,0.559915544886789,-0.292116615441305,0.00137053490496235,0.00255577511873411,-0.00414993613613533,-0.0200216368197252,-0.42233421664049,0.586568261275339,0.645233673511789,0.020606307222123,0.968893703723184 +5.908,0.559919723050171,-0.292123644748705,0.00133179548318706,0.00168943528536228,-0.00292991129566234,-0.0190106306013154,-1.12352368371301,1.18055510398678,-0.275989620115367,0.0193091337880172,1.65293257328444 +5.91,0.55992230262793,-0.292128335086488,0.00129449238255708,-0.00193831961611845,0.000572284279812326,-0.0211255953001868,-0.826736952001894,0.879551439167434,-1.2808563401054,0.0212220491239283,1.76002775146732 +5.912,0.559911969771707,-0.292121355611586,0.00124729310198632,-0.00161751252264493,0.000588294461007009,-0.0241340559617365,1.09633780665679,-0.8828698551851,-0.673282713329516,0.0241953527417559,1.56036065688928 +5.914,0.55991583257784,-0.292125981908644,0.00119795615871014,0.00244703161050825,-0.00295919514092769,-0.0238187261535046,1.08838606915891,-1.04912795498618,0.5358257558168,0.0241262619392346,1.60385876624761 +5.916,0.559921757898149,-0.29213319239215,0.00115201819737229,0.0027360317539912,-0.00360821735893817,-0.021990752938469,-0.0706970378973354,-0.121991924551837,0.898902047677461,0.0224521339090291,0.909892846516583 +5.918,0.559926776704855,-0.292140414778079,0.00110999314695626,0.00216424345891887,-0.00344716283913509,-0.0202231179627943,-0.305675381409491,0.126140750421161,0.77823666389392,0.0206286543799173,0.845577455201704 +5.92,0.559930414871984,-0.292146981043506,0.00107112572552112,0.00151333022835337,-0.00310365435725358,-0.0188778062828937,-0.297346516228822,0.164530191519765,0.563791275475384,0.019190998119009,0.658290009750344 +5.922,0.559932830025769,-0.292152829395508,0.00103448192182469,0.000974857394003716,-0.0027890420730561,-0.017967952860893,-0.232705046635005,0.128289231838557,0.366596200297471,0.0182092403091176,0.452772061646554 +5.924,0.55993431430156,-0.292158137211798,0.000999253914077541,0.000582510041813246,-0.0025904974298993,-0.0174114214817037,-0.161966524712899,0.0610190193544973,0.215451014254916,0.0176127111171636,0.276361385497378 +5.926,0.559935160065936,-0.292163191385228,0.000964836235897867,0.000326991295152049,-0.00254496599563808,-0.0171061488038733,-0.0988107225485707,-0.016894524557257,0.113162240066295,0.0172975172243393,0.151177632034002 +5.928,0.559935622266741,-0.292168317075781,0.000930829318862056,0.000187267151619007,-0.00265807552812832,-0.0169587725214385,-0.0466801215529181,-0.0918934223019503,0.0527625864380407,0.0171668401266281,0.115790005346712 +5.93,0.559935909134543,-0.292173823687341,0.000897001145812121,0.000140270808940397,-0.00291253968484585,-0.0168950984581211,-0.607048555756203,0.356095401693525,-0.504980980560615,0.0171448801461325,0.866208794045018 +5.932,0.559936183349977,-0.29217996723452,0.000863248925029564,-0.00224092707140608,-0.00123369392135406,-0.0189786964436812,-0.410188118256374,0.161597251624989,-1.13797186857355,0.0191503178441598,1.22038843724292 +5.934,0.559926945426257,-0.292178758463026,0.000821086360037387,-0.00150048166408528,-0.00226615067834582,-0.0214469859324158,0.525817235579032,-0.698377119988603,-0.998292116582516,0.0216185126617551,1.32695196483759 +5.936,0.559930181423321,-0.292189031837234,0.00077746098129991,-0.000137658129090183,-0.00402720240130816,-0.0229718649100108,0.618766029712807,-0.848895086492119,-0.500496420731955,0.0233226046226701,1.16361116124009 +5.938,0.559926394793741,-0.292194867272631,0.000729198900397354,0.000974582454765673,-0.00566173102431392,-0.0234489716153434,1.05741359236721,-1.22649034204425,0.489578769173729,0.0241424787246463,1.69177109434948 +5.94,0.55993407975314,-0.292211678761331,0.000683665094838526,0.00409199624037913,-0.00893316376948572,-0.0210135498333157,0.74212141090024,-0.888904399559999,1.47862019889448,0.0231973085671802,1.87808756788719 +5.942,0.559942762778702,-0.292230599927709,0.000645144701064082,0.00394306809836697,-0.00921734862255432,-0.0175344908197648,-0.262853746081479,0.125336072853231,1.65561099182635,0.020198160063889,1.68102616851838 +5.944,0.559949852025533,-0.292248548155821,0.000613527131559474,0.00304058125605333,-0.00843181947807285,-0.014391105866011,-0.467556266731335,0.493664648476372,1.40886134101993,0.0169541924647625,1.56435415617293 +5.946,0.559954925103726,-0.292264327205621,0.000587580277600044,0.00207284303144183,-0.00724269002864905,-0.0118990454556857,-0.454114972452191,0.619657481816162,1.08336764074808,0.0140833419272758,1.32811191094578 +5.948,0.559958143397659,-0.292277518915936,0.000565930949736726,0.00122412136624436,-0.00595318955080792,-0.0100576353030182,-0.38313614713475,0.6253910580334,0.78058657198794,0.0117513814862621,1.07108481413811 +5.95,0.559959821589191,-0.292288139963825,0.000547349736387967,0.000540298442902658,-0.00474112579651517,-0.00877669916773363,-0.299412706974975,0.559349426942705,0.526913421350092,0.00999002725254945,0.824716620493412 +5.952,0.55996030459143,-0.292296483419122,0.000530824153065795,2.64705383445947e-05,-0.00371579184303735,-0.00794998161761808,-0.216674180722494,0.451790784672652,0.324159232454429,0.00877553516491436,0.596776190621191 +5.954,0.559959927471345,-0.292303003131197,0.000515549809917498,-0.000326398279987225,-0.00293396265782476,-0.00748006223791605,-0.140162328889052,0.32640549238821,0.166808200508886,0.00804151750590561,0.392442352018491 +5.956,0.55995899899831,-0.292308219269753,0.000500903904114128,-0.000534178777211676,-0.00241016987348437,-0.00728274881558246,-0.552622823842014,0.613871742889518,-0.374123332139221,0.00768977867665531,0.906751768567501 +5.958,0.559957790756236,-0.292312643810691,0.000486418814655165,-0.00253688957535553,-0.000478475686266408,-0.00897655556647311,-0.362037701290395,0.38270235612129,-0.963528948648178,0.00934041206467225,1.09814408226766 +5.96,0.559948851440009,-0.292310133172498,0.000464997681848239,-0.0019823295823731,-0.000879360448999375,-0.0111368646101747,0.878116156545622,-0.778706365073933,-0.517630094407799,0.0113460415439826,1.28273633379184 +5.962,0.559949861437906,-0.292316161252487,0.000441871356214471,0.000975575050826573,-0.0035933011465618,-0.0110470759441041,0.847897335488821,-0.845482744131943,0.305724761084954,0.0116576775870874,1.23581495042517 +5.964,0.559952753740212,-0.292324506377085,0.000420809378071818,0.00140925975958257,-0.00426129142552753,-0.00991396556583479,0.0653125069652856,-0.166192681398175,0.562048141881318,0.0108826159963407,0.589732010924155 +5.966,0.559955498476945,-0.292333206418189,0.000402215493951127,0.00123682507868775,-0.00425807187215457,-0.00879888337657855,-0.552550140850471,0.448004989311025,0.100083958442374,0.00985298234131855,0.718357102936236 +5.968,0.559957701040527,-0.292341538664573,0.000385613844565508,-0.000800940803819072,-0.00246927146828362,-0.00951362973206534,-0.443832762077391,0.428144221714902,-0.503569725251517,0.00986143794961666,0.796164218909009 +5.97,0.559952294713729,-0.292343083504062,0.00036416097502287,-0.000538505969621623,-0.00254549498529515,-0.0108131622775844,0.682097074357238,-0.531132811811435,-0.167746221542028,0.0111217809653335,0.88062323241614 +5.972,0.559955547016649,-0.292351720644514,0.000342361195455165,0.00192744749361019,-0.0045938027155296,-0.0101846146182335,0.651771623977306,-0.533111082865746,0.524853696576381,0.0113377445795788,0.992212214854361 +5.974,0.559960004503704,-0.292361458714924,0.000323422516549932,0.00206858052628789,-0.00467793931675838,-0.00871374749127864,-0.0647107478087455,0.11121174299499,0.707967793848088,0.0101040356782217,0.719565097672254 +5.976,0.559963821338754,-0.292370432401781,0.000307506205490055,0.00166860450237523,-0.00414895574354969,-0.00735274344284149,-0.215001847298061,0.308783599734917,0.59955216459361,0.00860586491199631,0.707838896837207 +5.978,0.559966678921713,-0.292378054537898,0.000294011542778569,0.00120857313709575,-0.00344280491781885,-0.00631553883290446,-0.214368761755668,0.354281400997426,0.43751792228333,0.00729380459566826,0.602404523081026 +5.98,0.559968655631302,-0.292384203621453,0.000282244050158434,0.000811129455352464,-0.00273183013955983,-0.00560267175370797,-0.17652459954186,0.334878226964322,0.289174168351804,0.00628575832215533,0.476367568984434 +5.982,0.559969923439535,-0.292388981858457,0.000271600855763734,0.000502474738928227,-0.00210329200996141,-0.00515884215949712,-0.132215632490924,0.28181524224643,0.170641629404573,0.00559374387767561,0.354992070225852 +5.984,0.559970665530258,-0.292392616789492,0.000261608681520448,0.000282266925388828,-0.00160456917057423,-0.00492010523608975,-0.0901302749448385,0.21184805764155,0.0828724839865933,0.00518283246637623,0.244685337914306 +5.986,0.559971052507236,-0.292395400135139,0.000251920434819378,0.000141953639148913,-0.0012558997793953,-0.00482735222355078,-0.0530957302916117,0.137013896828939,0.0221822382253423,0.00499006659091574,0.148606918385843 +5.988,0.559971233344814,-0.29239764038861,0.000242299272626242,6.98840042223569e-05,-0.00105651358325842,-0.00483137628318837,-0.0221343046669019,0.0663567102029273,-0.0165295904822311,0.00494603897228993,0.0718774498264426 +5.99,0.559971332043253,-0.292399626189472,0.000232594929686622,5.34164204812951e-05,-0.000990472938583562,-0.00489347058547971,-0.373094640279759,0.332109933335476,-0.367406978180054,0.00499298951801409,0.620068146287951 +5.992,0.559971447010496,-0.292401602280364,0.000222725390284326,-0.00142249455689652,0.000271926150083342,-0.00630100419590843,-0.249841316309065,0.19081960665404,-0.767696642852115,0.00646529879219476,0.829572746095878 +5.994,0.559965642065026,-0.292398538484872,0.000207390912902991,-0.000945948844754857,-0.000227194511967485,-0.00796425715688783,0.696985525634664,-0.688571225110901,-0.369643002897953,0.00802345490572486,1.04716527090349 +5.996,0.559967663215117,-0.292402511058412,0.000190868361656771,0.00136544754564245,-0.00248235875036057,-0.00777957620750041,0.652288004165892,-0.708996316108057,0.314565139120344,0.00827939357282277,1.01346269955205 +5.998,0.559971103855208,-0.292408467919873,0.000176272608072986,0.00166320317190901,-0.00306317977640003,-0.00670599660040632,0.0238205416364912,-0.147695739708024,0.546629186305749,0.00755775797034117,0.566731785814985 +6,0.559974316027805,-0.292414763777518,0.000164044375255148,0.00146072971218841,-0.0030731417091926,-0.00559305946227765,-0.124091420812636,0.052861782326611,0.512165486223442,0.00654677366383036,0.529628675610129 +6.002,0.559976946774057,-0.29242076048671,0.000153900370223878,0.00116683748865851,-0.00285173264709361,-0.00465733465551277,-0.143121473186785,0.135633762159278,0.416465433916063,0.0055843222425715,0.460785992811771 +6.004,0.55997898337776,-0.292426170708106,0.000145415036633095,0.000888243819441204,-0.00253060666055543,-0.00392719772661321,-0.128853389139085,0.167297715104716,0.320043736392555,0.00475561028019948,0.383431499196394 +6.006,0.559980499749335,-0.292430882913352,0.000138191579317423,0.000651423932102118,-0.00218254178667467,-0.00337715970994241,-0.106730189380873,0.168678164807237,0.239484894706655,0.00407345670117589,0.311763807073034 +6.008,0.559981589073488,-0.292434900875253,0.000131906397793327,0.000461323061917757,-0.00185589400132656,-0.0029692581477867,-0.0837384000682367,0.150241875000161,0.177716608584802,0.00353180626023211,0.247321518708817 +6.01,0.559982345041582,-0.292438306489357,0.000126314546726278,0.000316470331829208,-0.00158157428667409,-0.00266629327560328,-0.0620929246630936,0.12018894926185,0.133010962526412,0.00311619167040862,0.189717766616853 +6.012,0.559982854954815,-0.2924412271724,0.000121241224690913,0.000212951363265355,-0.0013751382042791,-0.00243721429768099,-0.0426719410778588,0.0855401997255043,0.102020286629955,0.00280648657520487,0.139807579224052 +6.014,0.559983196847035,-0.292443807042174,0.000116565689535553,0.000145782567517754,-0.00123941348777204,-0.00225821212908342,-0.025900117807392,0.0518191501617432,0.0814232464229007,0.00258010084504517,0.0999289021453077 +6.016,0.559983438085085,-0.292446184826351,0.00011220837617458,0.000109350892035799,-0.00116786160363215,-0.00211152131198942,-0.0120212702986536,0.022844688026754,0.0685520568333017,0.00241544625148498,0.0732514519085406 +6.018,0.559983634250604,-0.292448478488589,0.000108119604287596,9.76974863231452e-05,-0.00114803473566503,-0.00198400390175024,-0.00112234871397248,0.000791167985356968,0.0614021086936527,0.00229429728572553,0.0614174614050756 +6.02,0.559983828875031,-0.292450776965293,0.000104272360567578,0.000104861497179908,-0.00116469693169073,-0.00186591287721478,0.00687143308920044,-0.0135727313104543,0.0585550297310952,0.0022020775966429,0.060498984576062 +6.022,0.559984053696592,-0.292453137276316,0.000100655952778736,0.00012518321867995,-0.00120232566090685,-0.00174978378282584,0.0121609722361722,-0.0205408701125368,0.0590838084845373,0.00212673484942399,0.0637237241201936 +6.024,0.559984329607905,-0.292455586267937,9.72732254362757e-05,0.000153505386124592,-0.00124686041214086,-0.00162957764327666,0.015033292125037,-0.0210991629202182,0.0623761808906802,0.00205760736934928,0.0675423014899364 +6.026,0.559984667718137,-0.292458124717964,9.413764220563e-05,0.000185316387180091,-0.00128672231258772,-0.00150027905926314,0.0158398429927921,-0.0165994086322833,0.0679453628933738,0.00198515332625268,0.071714805526405 +6.028,0.559985070873454,-0.292460733157187,9.12721091992225e-05,0.000216864758095767,-0.00131325804667,-0.00135779619170313,0.0149742243119136,-0.0085099265239467,0.0753248928273899,0.00190139094313899,0.0772689182184159 +6.03,0.559985535177169,-0.292463377750151,8.87064574388169e-05,0.000245213284427752,-0.00132076201868351,-0.00119897948795355,0.0128418494796538,0.00175963966307335,0.0840336570788247,0.00180058148312986,0.085027436465199 +6.032,0.559986051726592,-0.292466016205262,8.64761912474088e-05,0.000268232156014377,-0.00130621948801771,-0.00102166156338787,0.00983344806275458,0.0129691070730642,0.0935664200650524,0.0016798661227912,0.094971413608861 +6.034,0.559986608105793,-0.292468602628103,8.46198111852658e-05,0.000284547076678766,-0.00126888559039126,-0.00082471380769338,0.00625364972304846,0.0241520411136513,0.103353114610931,0.00153986705430992,0.10632166065574 +6.036,0.559987189914899,-0.292471091747624,8.31773360166349e-05,0.000293246754906574,-0.0012096113235631,-0.000608249104944102,0.00219378328699029,0.0347320634404974,0.112617587456852,0.00138532313451433,0.11787217619331 +6.038,0.559987781092813,-0.292473441073397,8.21868147654892e-05,0.000293322209826729,-0.00112995733662925,-0.000374243457865922,-0.00232318005803456,0.0443713349777257,0.12031994642974,0.00122592808399814,0.128261849519423 +6.04,0.559988363203738,-0.29247561157697,8.16803621851714e-05,0.000283954034674436,-0.00103212598365221,-0.000126969319225193,-0.0070055853826519,0.0526264766695999,0.125417855341619,0.00107797734111736,0.136192006783441 +6.042,0.559988916908952,-0.292477569577332,8.16789374885885e-05,0.000265299868296124,-0.000919451429950876,0.000127427963500501,-0.0113793685793805,0.0589765997740129,0.127173113466188,0.000965408119936091,0.140643983656798 +6.044,0.559989424403211,-0.29247928938269,8.21900740391734e-05,0.000238436560356909,-0.000796219584556135,0.000381723134639618,-0.0150496009890108,0.0630377287209371,0.125240019680478,0.000914620233574938,0.141015276696496 +6.046,0.559989870655193,-0.29248075445567,8.32058300271471e-05,0.000205101464340074,-0.0006673005150671,0.000628388042222469,-0.0177563508896212,0.0646188971289685,0.119628928106504,0.000939269992968714,0.137120276775503 +6.048,0.559990244809068,-0.29248195858475,8.4703626208063e-05,0.000167411156798432,-0.000537743996040289,0.000860238847065581,-0.0193728635286663,0.0637251998739466,0.110632879796492,0.00102820522012811,0.129134979894449 +6.05,0.55999054029982,-0.292482905431654,8.6646785415409e-05,0.000127610010225418,-0.000412399715571342,0.00107091956140839,-0.0198856241959193,0.0605362133893224,0.0987480030895447,0.0011546542976667,0.11752122912628 +6.052,0.559990755249109,-0.292483608183613,8.89873044536971e-05,8.78686600147462e-05,-0.000295599142482972,0.0012552308594238,-0.0193696465741673,0.0553713312145591,0.0846000852471992,0.00129255725788039,0.102948248905525 +6.054,0.55999089177446,-0.292484087828224,9.16677088531048e-05,5.01314239287398e-05,-0.000190914390713081,0.00140931990239722,-0.017964255499824,0.0486490292841922,0.0688808312853688,0.00142307556072732,0.0862207135468073 +6.056,0.559990955774805,-0.292484371841175,9.46245840632853e-05,1.6011638015458e-05,-0.000101003025346225,0.00153075418456525,-0.0158503230263146,0.0408444059858787,0.0522944764045055,0.00153416633949681,0.0682217744037721 +6.058,0.559990955821012,-0.292484491840326,9.77907255913651e-05,-1.32698681765116e-05,-2.75367667695839e-05,0.00161849780801522,-0.0132298489663431,0.032448773581299,0.0355149364057146,0.00161878643355929,0.0498925096432782 +6.06,0.559990902695332,-0.292484481988242,0.000101098575295347,-3.69077578499203e-05,2.87920689789857e-05,0.00167281393018812,-0.0103084828451124,0.0239341786563414,0.019153317675893,0.00167346873614568,0.0323412941069976 +6.062,0.559990808189981,-0.29248437667205,0.000104481981312118,-5.45037995569657e-05,6.81999478557924e-05,0.0016951110787188,-0.00728142740547365,0.0157248926414883,0.00373492529534903,0.00169735778969812,0.0177268468885291 +6.064,0.559990684680134,-0.292484209188451,0.000107879019610221,-6.60334674718117e-05,9.1691639544932e-05,0.00168775363136952,-0.00432277592887472,0.00817676183359104,-0.0103152415741989,0.00169153187844326,0.0138546033703102 +6.066,0.559990544056111,-0.292484009905492,0.000111232995837596,-7.17949032724627e-05,0.000100906995190153,0.00165385011242201,-0.00157814153411582,0.00156453731219874,-0.0226795171125017,0.00165848030563299,0.0227881285795745 +6.068,0.559990397500521,-0.29248380556047,0.00011449442005991,-7.23460336082756e-05,9.79497887937276e-05,0.0015970355629195,0.000839578094542946,-0.00392341089477383,-0.0331480160836503,0.00160167122061089,0.0333899537991295 +6.07,0.559990254671977,-0.292483618106336,0.000117621138089274,-6.84365908942905e-05,8.52133516110559e-05,0.00152125804808739,0.00285171601610229,-0.00818394674250902,-0.041613667975834,0.00152517898331202,0.0425065480946604 +6.072,0.559990123754157,-0.292483464707064,0.000120579452252259,-6.09391695438677e-05,6.52140018236952e-05,0.00143058089101618,0.00441300092302412,-0.0111928787696661,-0.0480628939114058,0.00143336252712257,0.0495459068282952 +6.074,0.559990010915298,-0.292483357250329,0.000123343461653339,-5.0784587202196e-05,4.04418365323965e-05,0.00132900647244179,0.00550892484407976,-0.0129948437600787,-0.052563135880394,0.00133059115442407,0.0544251547619972 +6.076,0.559989920615809,-0.292483302939718,0.000125895478142027,-3.89034701675462e-05,1.32346267833746e-05,0.00122032834749458,0.00615173931933494,-0.0136907332519398,-0.0552482270314108,0.00122102002892501,0.0572507350498064 +6.078,0.559989855301418,-0.292483304311822,0.000128224775043317,-2.61776299248535e-05,-1.43210964753686e-05,0.00110801356431612,0.00637559693927794,-0.0134238346445625,-0.056302742031056,0.00110841527453444,0.0582309740010617 +6.08,0.559989815905289,-0.292483360224104,0.000130327532399291,-1.34010824104373e-05,-4.04607117948697e-05,0.000995117379370385,0.00623124678939135,-0.0123657809547587,-0.0559461930793513,0.000996029747012458,0.0576343430191012 +6.082,0.559989801697088,-0.292483466154669,0.000132205244560799,-1.25264276729084e-06,-6.37842202943979e-05,0.000884228791998743,0.00578067648609959,-0.0107031244665721,-0.054417967025816,0.000886527242938435,0.0557609920034308 +6.084,0.559989810894718,-0.292483615360985,0.000133864447567286,9.72162353396369e-06,-8.32732096611628e-05,0.000777445511267096,0.00509201902865178,-0.00862523092185283,-0.0519635883228433,0.000781952978382182,0.0529201074982787 +6.086,0.559989840583582,-0.292483799247508,0.000135315026605867,1.91154333473186e-05,-9.8285143981813e-05,0.000676374438707347,0.00423494655316251,-0.0063139116747495,-0.0488228599987451,0.000683745384376567,0.0494112528823318 +6.088,0.559989887356451,-0.292484008501561,0.000136569945322115,2.66614097466118e-05,-0.000108528856360158,0.000582154071272137,0.0032767563107317,-0.00393510425633079,-0.0452201548290329,0.000592783861227045,0.0455091702867655 +6.09,0.559989947229221,-0.292484233362933,0.000137643642890956,3.22224585902439e-05,-0.000114025561007134,0.000495493819391235,0.00227921006373611,-0.00163268325594684,-0.0413570473145838,0.000509464660654206,0.0414519699858717 +6.092,0.559990016246286,-0.292484464603805,0.00013855192059968,3.57782500015573e-05,-0.000115059589383946,0.000416725882013783,0.00129621825773097,0.000475592787368192,-0.0374072654518444,0.000433796326658654,0.0374327380625012 +6.094,0.559990090342221,-0.292484693601291,0.000139310546419011,3.74073316211684e-05,-0.000112123189857661,0.000345864757583841,0.000372304694020568,0.00230015254759042,-0.0335138568346489,0.000365504238965025,0.033594760193529 +6.096,0.559990165875612,-0.292484913096564,0.000139935379630016,3.72674687776394e-05,-0.000105858979193585,0.000282670454675202,-0.000458147637884954,0.00377989793632416,-0.0297883452002515,0.000304134137596038,0.0300307015808235 +6.098,0.559990239412096,-0.292485117037207,0.000140441228237712,3.55747410696288e-05,-9.70035981123665e-05,0.000226711376782848,-0.00117100742991386,0.00488098733653553,-0.0263115841640544,0.000249145155705848,0.0267860926042313 +6.1,0.559990308174576,-0.292485301110957,0.000140842225137147,3.25834390579835e-05,-8.63350298474411e-05,0.000177424118018973,-0.00175192257922754,0.00559441307514968,-0.0231359838075719,0.000199986838402967,0.0238671413689039 +6.102,0.559990369745853,-0.292485462377327,0.000141150924709788,2.85670507527179e-05,-7.46259458117653e-05,0.00013416744155255,-0.00219542687501662,0.00593269145268345,-0.0202887451023566,0.000156160207958896,0.0212520564855425 +6.104,0.559990422442779,-0.29248559961474,0.000141378894903357,2.38017315579179e-05,-6.26042640367099e-05,9.62691376095554e-05,-0.00250371317428602,0.0059259764595462,-0.0177757742839545,0.000117275586363151,0.0189040717320975 +6.106,0.559990464952779,-0.292485712794383,0.000141536001260226,1.85521980555749e-05,-5.09220399735831e-05,6.30643444167396e-05,-0.00268522142021849,0.00561788126435481,-0.0155859343712474,8.31525690792391e-05,0.0167836931037487 +6.108,0.559990496651572,-0.2924858033029,0.000141631152281024,1.30608458770428e-05,-4.01327389792882e-05,3.39254001245588e-05,-0.00275313001563034,0.00506127220342428,-0.0136953685241393,5.41493786355389e-05,0.0148579716049031 +6.11,0.559990517196162,-0.292485873325339,0.000141671702860724,7.53967799305227e-06,-3.06769511598837e-05,8.2828703201763e-06,-0.00272386054683814,0.00431424211286152,-0.012071635380543,3.26577405440987e-05,0.0131055897252961 +6.112,0.559990526810284,-0.292485926010704,0.000141664283762305,2.16540368969144e-06,-2.2875770527844e-05,-1.43611413976079e-05,-0.00261566694692613,0.00343644753972475,-0.0106774871921557,2.70967199606151e-05,0.0115177957096474 +6.114,0.559990525857777,-0.292485964828421,0.000141614258295134,-2.92298979465112e-06,-1.69311610009862e-05,-3.44270784484419e-05,-0.0024473718468472,0.00248592388341145,-0.00947413822480605,3.84763799320586e-05,0.0100959765061923 +6.116,0.559990515118324,-0.292485993735348,0.000141526575448511,-7.62408369769844e-06,-1.29320749941971e-05,-5.22576942968364e-05,-0.00223729549470047,0.0015164737902908,-0.0084239535277938,5.43712408273589e-05,0.0088469303674029 +6.118,0.559990495361442,-0.292486016556721,0.000141405227517946,-1.1872171773454e-05,-1.08652658398224e-05,-6.81228925596209e-05,-0.00200239509001807,0.000575656224077145,-0.00749250877747393,6.99980782241774e-05,0.00777680229691941 +6.12,0.559990467629637,-0.292486037196412,0.000141254083878273,-1.56336640577698e-05,-1.06294500978888e-05,-8.22277294067288e-05,-0.00175763310156163,-0.000296608290011831,-0.00665003309710153,8.43729586102142e-05,0.00688477964716044 +6.122,0.559990432826786,-0.292486059074521,0.000141076316600319,-1.89027041796997e-05,-1.20516989998696e-05,-9.4723024948024e-05,-0.0015155586091652,-0.00106885442857558,-0.00587226543606013,9.73396482908824e-05,0.00615815467805469 +6.124,0.559990392018821,-0.292486085403208,0.000140875191778481,-2.16958984944313e-05,-1.49048678121916e-05,-0.000105716791150972,-0.00128609810995488,-0.0017183534976879,-0.00514079018417405,0.000108944513525178,0.00557086266292268 +6.126,0.559990346043192,-0.292486118693993,0.000140653449435715,-2.40470966195199e-05,-1.89251129906219e-05,-0.000115286185684723,-0.00107651939446207,-0.00223093760132319,-0.00444293080885385,0.000119278360850863,0.00508680752141393 +6.128,0.559990295830434,-0.29248616110366,0.000140414047035742,-2.60019760722791e-05,-2.38286182174833e-05,-0.000123488514386385,-0.000891550659686042,-0.0026004412408121,-0.00377129095920135,0.000128426317362036,0.00466688254883887 +6.13,0.559990242035288,-0.292486214008466,0.00014015949537817,-2.76132992582636e-05,-2.93268779538692e-05,-0.000130371349521526,-0.000733612004476027,-0.00282785201505069,-0.00312303975127875,0.000136452368401987,0.00427648347128863 +6.132,0.559990185377237,-0.292486278411172,0.000139892561637656,-2.89364240901836e-05,-3.51400262776874e-05,-0.000135980673391502,-0.000603134167610908,-0.00292025445839002,-0.00249902842690998,0.000143397634645519,0.003890604066773 +6.134,0.559990126289591,-0.292486354568571,0.000139615572684604,-3.00258359287075e-05,-4.10078957874305e-05,-0.000140367463229167,-0.000498925928351153,-0.00288965103928654,-0.00190282860476029,0.000149285709542213,0.00349567831899974 +6.136,0.559990065273893,-0.292486442442755,0.000139331091784739,-3.0932127803588e-05,-4.66986304348323e-05,-0.000143591987810542,-0.000418566035996212,-0.00275173589816873,-0.0013397605993287,0.000154130521241996,0.00308904620283894 +6.138,0.55999000256108,-0.292486541363092,0.000139041204733362,-3.17001000726922e-05,-5.20148393801043e-05,-0.000145726505626481,-0.000358790205877013,-0.00252468497496623,-0.000815979373471232,0.000157945099013745,0.00267742170241895 +6.14,0.559989938473493,-0.292486650502112,0.000138748185762233,-3.23672886270962e-05,-5.67973703346983e-05,-0.000146855905304427,-0.000315854217782336,-0.00222801845029274,-0.000337659803771362,0.000160748995557638,0.00227548769384031 +6.142,0.559989873091926,-0.292486768552574,0.000138453781112144,-3.29635169438217e-05,-6.09269131812762e-05,-0.000147077144841567,-0.000285857532091512,-0.00188157390016232,8.96793472734176e-05,0.000162574194550832,0.00190527616259504 +6.144,0.559989806619425,-0.292486894209765,0.000138159877182867,-3.35107187554621e-05,-6.43236659353468e-05,-0.000146497187915334,-0.000265014281353229,-0.00150462308584653,0.000461698784239123,0.00016346843223684,0.00159602285921957 +6.146,0.559989739049051,-0.292487025847237,0.000137867792360483,-3.40235740692345e-05,-6.69454055246617e-05,-0.000145230349704611,-0.000249868514765965,-0.0011151454898348,0.000775596888804932,0.00016349662194868,0.00138113513896872 +6.148,0.559989670525129,-0.292487161991387,0.000137578955784048,-3.45101928145259e-05,-6.87842478946855e-05,-0.000143394800360114,-0.000237448151416964,-0.000729270380191444,0.00103031078721539,0.000162739961093919,0.00128442875640819 +6.15,0.559989601008279,-0.292487300984229,0.000137294213159042,-3.49733666749024e-05,-6.98624870454278e-05,-0.000141109106555749,-0.000225363186447642,-0.000360881127068823,0.00122656884995223,0.000161293779872974,0.00129826611191752 +6.152,0.559989530631662,-0.292487441441335,0.000137014519357825,-3.54116455603165e-05,-7.02277724029609e-05,-0.000138488524960305,-0.000211848510957892,-2.13771188289873e-05,0.00136681657918132,0.000159263919968248,0.00138330196773135 +6.154,0.559989459361697,-0.292487581895319,0.000136740259059201,-3.58207607187339e-05,-6.99479955207437e-05,-0.000135641840239024,-0.000195762683839171,0.00028042609901248,0.00145503697025837,0.000156762743658268,0.00149468873355288 +6.156,0.559989387348619,-0.292487721233317,0.000136471951996869,-3.61946962956731e-05,-6.91060680069111e-05,-0.000132668377079272,-0.000176546242900615,0.000538272711129593,0.00149649288881696,0.000153904525444055,0.00160012407447324 +6.158,0.559989314582912,-0.292487858319591,0.000136209585550884,-3.65269456903365e-05,-6.77949046762251e-05,-0.000129655868683756,-0.000154152635103221,0.000748343640523722,0.00149741681727085,0.000150801230584046,0.00168108249763869 +6.16,0.559989241240837,-0.292487992412936,0.000135953328522134,-3.68113068360861e-05,-6.61126934448159e-05,-0.000126678709810188,-0.000128957837466194,0.000909053245869752,0.00146467398799012,0.000147558314115751,0.00172866359328967 +6.162,0.559989167337685,-0.292488122770364,0.000135702870711643,-3.70427770402012e-05,-6.41586916927465e-05,-0.000123797172731796,-0.000101659416993537,0.00102078969930009,0.00140542202962955,0.000144271428311225,0.00173998773806848 +6.164,0.559989093069729,-0.292488249047703,0.000135458139831207,-3.72179445040602e-05,-6.2029534647616e-05,-0.00012105702169167,-7.31712190817164e-05,0.00108561810583162,0.00132678684706225,0.000141023547900926,0.00171589161561816 +6.166,0.559989018465907,-0.292488370888503,0.000135218642624876,-3.73354619165281e-05,-5.98162192694196e-05,-0.000118490025343546,-4.45221359800093e-05,0.00110696590435377,0.00123557163371501,0.000137883294528823,0.00165951589207068 +6.168,0.559988943727881,-0.29248848831258,0.000134984179729833,-3.73960330479802e-05,-5.76016710302004e-05,-0.00011611473515681,-1.67630701007569e-05,0.00108930515649,0.00113801015311976,0.00013490384543716,0.00157541544777198 +6.17,0.559988868881774,-0.292488601295187,0.000134754183684249,-3.74025141969311e-05,-5.545899864346e-05,-0.000113937984731068,9.11311304404595e-06,0.00103784596195186,0.00103957340826611,0.000132123097766303,0.00146898609957452 +6.172,0.559988794117824,-0.292488710148574,0.000134528427790909,-3.73595805958041e-05,-5.34502871823934e-05,-0.000111956441523746,3.22359916558761e-05,0.000958251204083526,0.000944832310486319,0.000129564332517999,0.00134610275396215 +6.174,0.559988719443452,-0.292488815096336,0.000134306357918154,-3.72735702303076e-05,-5.16259938271255e-05,-0.000110158655489122,5.19053758286999e-05,0.000856379224475707,0.000857378354070961,0.000127237933241322,0.00121292093154623 +6.176,0.559988645023543,-0.29248891665255,0.000134087793168952,-3.71519590924892e-05,-5.00247702844902e-05,-0.000108526928107462,6.76213321428306e-05,0.00073806065078737,0.000779797849550673,0.000125143277210037,0.00107582101437242 +6.178,0.559988570835616,-0.292489015195417,0.000133872250205724,-3.70030849017363e-05,-4.86737512239764e-05,-0.00010703946409092,7.90987692032643e-05,0.000608910751684344,0.000713696210643185,0.000123271283044065,0.00094148351015443 +6.18,0.559988497011204,-0.292489111347555,0.000133659635312589,-3.68355640156762e-05,-4.75891272777531e-05,-0.000105672143264889,8.62661539445048e-05,0.00047417912305263,0.000659763668183177,0.000121606684329466,0.000817053112049553 +6.182,0.55998842349336,-0.292489205551926,0.000133449561632665,-3.66580202859582e-05,-4.67770347317656e-05,-0.000104400409418187,8.92525636710477e-05,0.000338634242172531,0.000617875562340345,0.000120130541146985,0.000710217840265237 +6.184,0.559988350379122,-0.292489298455694,0.000133242033674916,-3.6478553760992e-05,-4.62345903090628e-05,-0.000103200641015528,8.83638995288042e-05,0.000206482445722302,0.000587216913977448,0.000118822112973791,0.00062870253951499 +6.186,0.559988277579145,-0.292489390490287,0.000133036759068603,-3.6304564687843e-05,-4.59511049488765e-05,-0.000102051541762277,8.4052154127683e-05,8.13163147953662e-05,0.000566423635431533,0.000117660709836607,0.000578370851997987 +6.188,0.559988205160864,-0.292489482260113,0.000132833827507867,-3.61423451444813e-05,-4.59093250498814e-05,-0.000100934946473802,7.68796901160483e-05,-3.39092469355768e-05,0.000553730434774123,0.000116626749327706,0.000560069386929171 +6.19,0.559988133009764,-0.292489574127588,0.000132633019282707,-3.59970459273788e-05,-4.60867419366188e-05,-9.98366200231803e-05,6.74819089476671e-05,-0.000136879188541766,0.000547118744401115,0.00011570274757102,0.000568004085166759 +6.192,0.55998806117268,-0.292489666607081,0.000132434481027774,-3.58724175086906e-05,-4.64568418040485e-05,-9.8746471496197e-05,5.65295241152927e-05,-0.000225900659292343,0.000544456903167752,0.00011487355710203,0.000592165529537507 +6.194,0.559987989520094,-0.292489759954955,0.000132238033396723,-3.57709278309177e-05,-4.69903445737881e-05,-9.76587924105096e-05,4.46934642093142e-05,-0.000299871148743055,0.000543627769541903,0.000114126646740045,0.00062245591282324 +6.196,0.559987918088969,-0.292489854568459,0.000132043845858132,-3.56936436518534e-05,-4.76563263990206e-05,-9.65719604180296e-05,3.26134466674754e-05,-0.000358234532313403,0.000542638842719349,0.000113451774697344,0.000651039576886942 +6.198,0.559987846745519,-0.29248995058026,0.000131851745555051,-3.56404740442478e-05,-4.84232827030419e-05,-9.54882370396319e-05,2.08715752994145e-05,-0.000400929369567685,0.000539712774466819,0.000112840866315242,0.000672658799808708 +6.2,0.559987775527072,-0.29249004826159,0.000131661892909973,-3.56101573506557e-05,-4.92600438772915e-05,-9.44131093201621e-05,9.97145421590546e-06,-0.000428331176086102,0.000533355945341409,0.000112287445606497,0.000684131267183069 +6.202,0.55998770430489,-0.292490147620436,0.00013147409311777,-3.56005882273841e-05,-5.01366074073861e-05,-9.33548132582665e-05,3.23532869140589e-07,-0.000441191951025583,0.000522405199833118,0.000111786414393449,0.000683781862245524 +6.204,0.55998763312472,-0.29249024880802,0.00013128847365694,-3.56088632191791e-05,-5.10248116813937e-05,-9.23234885208298e-05,-7.76351899236362e-06,-0.000440578001162267,0.000506053293025184,0.000111333503850098,0.000671013548832597 +6.206,0.559987561869437,-0.292490351719683,0.000131104799163687,-3.56316423033536e-05,-5.18989194120354e-05,-9.13306000861656e-05,-1.40859685046966e-05,-0.000427808424105559,0.000483854636039874,0.000110925156215667,0.00064601375454527 +6.208,0.55998749059815,-0.292490456403697,0.000130923151256596,-3.56652070931979e-05,-5.27360453778161e-05,-9.03880699766701e-05,-1.85424522978029e-05,-0.000404395159722876,0.000455713375017181,0.000110558132551157,0.000609552251996543 +6.21,0.559987419208609,-0.292490562663864,0.00013074324688378,-3.57058121125448e-05,-5.35165000509267e-05,-8.9507746586097e-05,-2.11275927288943e-05,-0.000371985421629264,0.000421856785620144,0.00011022956724599,0.000562834502010119 +6.212,0.559987347774902,-0.292490670469698,0.000130565120270251,-3.57497174641135e-05,-5.4223987064333e-05,-8.87006428341897e-05,-2.19215895416302e-05,-0.000332307535652339,0.000382797024985777,0.000109936741406663,0.000507387836548457 +6.214,0.559987276209739,-0.292490779559812,0.000130388444312443,-3.57934984707113e-05,-5.48457301935362e-05,-8.79765584861538e-05,-2.10773620798868e-05,-0.000287120573847179,0.000339283955092601,0.000109677269733991,0.000444967505894372 +6.216,0.559987204600908,-0.292490889852618,0.000130213214036307,-3.5834026912433e-05,-5.53724693597218e-05,-8.73435070138192e-05,-1.88056445435883e-05,-0.000238168474528722,0.000292252708140219,0.00010944896557404,0.000377477840331496 +6.218,0.559987132873631,-0.29249100104969,0.000130039070284388,-3.58687210488857e-05,-5.5798404091651e-05,-8.6807547653593e-05,-1.53596163545806e-05,-0.000187138714244063,0.000242768497150233,0.000109250068093749,0.000306909366738885 +6.22,0.559987061126024,-0.292491113046235,0.000129865983845692,-3.58954653778514e-05,-5.6121024216698e-05,-8.63724330252183e-05,-1.10192271953796e-05,-0.000135625861233039,0.000191971539364232,0.000109079104234127,0.000235305906277466 +6.222,0.55998698929177,-0.292491225533787,0.000129693580552287,-3.59127979576672e-05,-5.63409075365832e-05,-8.6039661496136e-05,-6.07615347125206e-06,-8.510020466402e-05,0.000141024367526147,0.000108935073642807,0.000164823653372366 +6.224,0.559986917474832,-0.292491338409865,0.000129521825199708,-3.59197699917364e-05,-5.64614250353541e-05,-8.58083355551137e-05,-8.19934400149204e-07,-3.68819766425593e-05,9.10635299758081e-05,0.000108817245159125,9.82523230521179e-05 +6.226,0.55998684561269,-0.292491451379487,0.000129350347210067,-3.59160776952678e-05,-5.64884354431534e-05,-8.56754073762328e-05,4.47397674662886e-06,7.8794783229515e-06,4.31568609022148e-05,0.000108725265715524,4.40978150196169e-05 +6.228,0.559986773810521,-0.292491564363607,0.000129179123570203,-3.59018740847499e-05,-5.64299071220623e-05,-8.56357081115049e-05,9.55453771855352e-06,4.82208856209698e-05,-1.73223587775513e-06,0.000108658885896924,4.91888568907847e-05 +6.23,0.559986702005193,-0.292491677099115,0.00012900780437762,-3.58778595443936e-05,-5.62955519006695e-05,-8.56823363197438e-05,1.42027639629162e-05,8.33749978747832e-05,-4.27729874136533e-05,0.000108618012900706,9.47767757791694e-05 +6.232,0.559986630299083,-0.292491789545814,0.000128836394224924,-3.58450630288982e-05,-5.60964071305631e-05,-8.58068000611595e-05,1.82376960735741e-05,0.000112775160734609,-7.92877707981329e-05,0.0001086024050067,0.000139058984013713 +6.234,0.559986558624941,-0.292491901484744,0.000128664577177376,-3.58049087600993e-05,-5.58444512577311e-05,-8.59994874029363e-05,2.15198345274653e-05,0.00013605499366332,-0.000110764981383583,0.000108611721564313,0.000176756741539668 +6.236,0.559986487079448,-0.292492012923619,0.000128492396275312,-3.57589836907883e-05,-5.55521871559099e-05,-8.62498599866938e-05,2.39524997078643e-05,0.000153043078213468,-0.000136864485885592,0.000108645242694412,0.000206707023412453 +6.238,0.559986415589007,-0.292492123693492,0.000128319577737429,-3.57090987612678e-05,-5.52322789448772e-05,-8.65469453464787e-05,2.54812282365464e-05,0.000163753351153621,-0.000157416334312723,0.000108701969258119,0.000228570241534061 +6.24,0.559986344243053,-0.292492233852735,0.000128146208493926,-3.56570587778421e-05,-5.48971737512954e-05,-8.68795253239447e-05,2.60918509000994e-05,0.000168371420969117,-0.000172413727397139,0.000108780409298184,0.000242396809957408 +6.242,0.559986272960771,-0.292492343282187,0.000127972059636133,-3.56047313576674e-05,-5.45587932610008e-05,-8.72366002560672e-05,2.58070162481952e-05,0.000167237296930517,-0.000182000715708738,0.00010887875477514,0.000248512728226852 +6.244,0.559986201824128,-0.292492452087908,0.000127797262092902,-3.55538307128494e-05,-5.42282245635734e-05,-8.76075281867796e-05,2.46815345958664e-05,0.00016082549875473,-0.000186456096217645,0.000108994743968105,0.000247466957423488 +6.246,0.559986130745449,-0.292492560195086,0.000127621629523386,-3.5506005219284e-05,-5.39154912659818e-05,-8.79824246409379e-05,2.27971808078021e-05,0.000149722595429766,-0.000186174034527008,0.000109125907330855,0.000239994454450665 +6.248,0.559986059800107,-0.292492667749873,0.000127445332394338,-3.54626419896181e-05,-5.36293341818543e-05,-8.83522243248877e-05,2.02570876719809e-05,0.000134603373583099,-0.000181642891705011,0.00010926948341064,0.000226985809882159 +6.25,0.559985988894881,-0.292492774712422,0.000127268220626087,-3.5424976868596e-05,-5.33770777716495e-05,-8.87089962077579e-05,1.7179688229533e-05,0.000116205968461937,-0.000173422708480512,0.000109422700687605,0.000209462179427593 +6.252,0.559985918100199,-0.292492881258184,0.000127090496409507,-3.53939232367e-05,-5.31645103080066e-05,-8.90459151588097e-05,1.36931091485255e-05,9.53071128991234e-05,-0.000162122733635729,0.000109582708329579,0.00018855961330264 +6.254,0.559985847319188,-0.292492987370464,0.000126912036965451,-3.53702044320019e-05,-5.29958493200529e-05,-8.93574871423008e-05,9.9295363578433e-06,7.26975181412539e-05,-0.000148379263741838,0.000109746853782247,0.000165529244379202 +6.256,0.559985776619381,-0.292493093241582,0.000126733066460938,-3.53542050912686e-05,-5.28737202354415e-05,-8.96394322137771e-05,6.01997618225173e-06,4.91587465149662e-05,-0.000132834870712188,0.000109912592166592,0.000141767151869822 +6.258,0.559985705902367,-0.292493198865345,0.000126553479236596,-3.53461245272729e-05,-5.27992143339931e-05,-8.98888266251495e-05,2.09013362369859e-06,2.54416383822995e-05,-0.00011611924876006,0.000110077730288331,0.000118892075239442 +6.26,0.559985635234883,-0.292493304438439,0.000126373511154437,-3.53458445567738e-05,-5.27719536819123e-05,-9.01039092088173e-05,-1.74360525821189e-06,2.24711569090046e-06,-9.8832432684199e-05,0.000110240293348432,9.88733504969943e-05 +6.262,0.559985564518989,-0.292493409953159,0.000126193063599761,-3.53530989483058e-05,-5.27902258712295e-05,-9.02841563558864e-05,-5.37746930514333e-06,-1.97905511452482e-05,-8.1530225284349e-05,0.000110398724819077,8.40699751735252e-05 +6.264,0.559985493822488,-0.292493515599342,0.000126012374529014,-3.53673544339944e-05,-5.28511158864933e-05,-9.04300301099547e-05,-8.722245150327e-06,-4.01170936777366e-05,-6.47126831338264e-05,0.000110551709872777,7.66367413450606e-05 +6.266,0.559985423049571,-0.292493621357623,0.000125831343479321,-3.53879879289071e-05,-5.29506942459404e-05,-9.05430070884217e-05,-1.17050466521897e-05,-5.8268816851955e-05,-4.8814983300537e-05,0.000110698337130228,7.69101146084721e-05 +6.268,0.559985352270536,-0.292493727402119,0.00012565020250066,-3.54141746206032e-05,-5.30841911539011e-05,-9.06252900431569e-05,-1.42702516450527e-05,-7.38795691261202e-05,-3.42012754872164e-05,0.00011083789203124,8.26532398713249e-05 +6.27,0.559985281392873,-0.292493833694388,0.000125468842319149,-3.54450689354873e-05,-5.32462125224449e-05,-9.06798121903705e-05,-1.63796198846227e-05,-8.66845484311417e-05,-2.11610781031598e-05,0.000110969997741316,9.07209684183525e-05 +6.272,0.55998521049026,-0.29249394038697,0.000125287483251899,-3.54796931001417e-05,-5.34309293476257e-05,-9.07099343555695e-05,-1.80118905921121e-05,-9.65206942179291e-05,-9.90838401414106e-06,0.000111094396907418,9.86856052764782e-05 +6.274,0.5599851394741,-0.292494047418105,0.000125106002581726,-3.55171164978557e-05,-5.36322952993166e-05,-9.07194457264271e-05,-1.91619428638054e-05,-0.000103324258868086,-5.82718764036311e-07,0.000111211089808101,0.000105087687604748 +6.276,0.559985068421794,-0.292494154916151,0.000124924605468993,-3.55563408715969e-05,-5.3844226383098e-05,-9.07122652306257e-05,-1.9839380136744e-05,-0.000107125402295845,6.74753482758276e-06,0.000111320120168112,0.00010915576964827 +6.278,0.559984997248737,-0.29249426279501,0.000124743153520804,-3.55964740184027e-05,-5.40607969085e-05,-9.06924555871168e-05,-2.00669827996349e-05,-0.000108040666693889,1.20801068750496e-05,0.000111421722412401,0.000110550433922502 +6.28,0.559984926035898,-0.292494371159338,0.000124561835646644,-3.56366088027954e-05,-5.42763890498736e-05,-9.06639448031254e-05,-1.98787722413931e-05,-0.000106263053914729,1.54725216963321e-05,0.000111516120729341,0.000109208063533575 +6.282,0.559984854702302,-0.292494479900567,0.000124380497741591,-3.56759891073683e-05,-5.44858491241589e-05,-9.06305655003314e-05,-1.93179569543324e-05,-0.000102050763669855,1.7034638461792e-05,0.000111603688812151,0.000105250751702845 +6.284,0.559984783331942,-0.292494589102735,0.000124199313384643,-3.57138806306128e-05,-5.4684592104553e-05,-9.05958062492783e-05,-1.84346773937226e-05,-9.57147555627546e-05,1.69202464589737e-05,0.000111684761687957,9.89315243149569e-05 +6.286,0.559984711846779,-0.292494698638935,0.000124018114516594,-3.57497278169432e-05,-5.486870814641e-05,-9.05628845144955e-05,-1.72840006216053e-05,-8.76055270024136e-05,1.53184053932827e-05,0.000111759805942151,9.05986676648792e-05 +6.288,0.55998464033303,-0.292494808577567,0.000123837061846585,-3.57830166330992e-05,-5.50350142125627e-05,-9.05345326277051e-05,-1.59238108829895e-05,-7.80997107294278e-05,1.24445193682959e-05,0.00011182923887275,8.06721676377014e-05 +6.29,0.559984568714713,-0.292494918778992,0.000123655976386083,-3.58134230604751e-05,-5.51811069893276e-05,-9.05131064370224e-05,-1.4412880609227e-05,-6.75869117586208e-05,8.53150710303408e-06,0.000111893602483591,6.96312313690671e-05 +6.292,0.559984497079338,-0.292495029301995,0.000123475009420837,-3.58406681555361e-05,-5.53053618595971e-05,-9.0500406599293e-05,-1.28089483444419e-05,-5.6457023081246e-05,3.82124280637372e-06,0.000111953383775988,5.80178120017654e-05 +6.294,0.55998442535204,-0.292495140000439,0.000123293974759686,-3.58646588538529e-05,-5.54069350816526e-05,-9.04978214657969e-05,-1.11671921729692e-05,-4.5088557890388e-05,-1.44340529614491e-06,0.000112009186676366,4.6473300426286e-05 +6.296,0.559984353620703,-0.292495250929736,0.000123113018134974,-3.5885336924228e-05,-5.54857160911587e-05,-9.05061802204776e-05,-9.53889051280063e-06,-3.38380955231281e-05,-7.02585646414506e-06,0.000112061548955989,3.58520543330826e-05 +6.298,0.559984281810692,-0.292495361943304,0.000122931950038804,-3.59028144159041e-05,-5.55422874637451e-05,-9.05259248916534e-05,-7.97028415289875e-06,-2.30313372509285e-05,-1.27022064691235e-05,0.000112111109428002,2.7482976080261e-05 +6.3,0.559984210009445,-0.292495473098886,0.000122750914435407,-3.59172180608396e-05,-5.55778414401624e-05,-9.05569890463541e-05,-6.50162562477006e-06,-1.29555879882171e-05,-1.82668168735238e-05,0.000112158420448575,2.33194123977418e-05 +6.302,0.55998413814182,-0.292495584254669,0.000122569722082619,-3.59288209184032e-05,-5.5594109815698e-05,-9.05989921591475e-05,-5.16667264726704e-06,-3.85399698574736e-06,-2.35366726159308e-05,0.000112204111328595,2.44033349532328e-05 +6.304,0.559984066294161,-0.292495695475325,0.000122388518466771,-3.59378847514286e-05,-5.55932574281054e-05,-9.06511357368178e-05,-3.99211219836588e-06,4.07829672502056e-06,-2.83548297739074e-05,0.000112248698176191,2.8923447849261e-05 +6.306,0.559983994390281,-0.292495806627699,0.000122207117539672,-3.59447893671967e-05,-5.55777966287979e-05,-9.07124114782432e-05,-2.99766461453778e-06,1.0696311894853e-05,-3.25928121247157e-05,0.000112292746680105,3.44338276044102e-05 +6.308,0.559983922515004,-0.292495917786511,0.000122025668820858,-3.59498754098868e-05,-5.5550472180526e-05,-9.07815069853167e-05,-2.19596562956147e-06,1.59058252710847e-05,-3.6151919994241e-05,0.000112336683732389,3.95572858253761e-05 +6.31,0.559983850590779,-0.292496028829588,0.00012184399151173,-3.59535732297149e-05,-5.55141733277136e-05,-9.08570191582201e-05,-1.59286473100076e-06,1.96622613992919e-05,-3.89635008335888e-05,0.000112380962794243,4.36726016925306e-05 +6.312,0.559983778700711,-0.292496139843205,0.000121662240744225,-3.59562468688108e-05,-5.54718231349288e-05,-9.0937360988651e-05,-1.18795945502637e-06,2.19681460491873e-05,-4.09885164054948e-05,0.000112425879913763,4.65195568081719e-05 +6.314,0.559983706765792,-0.29249625071688,0.000121480242067776,-3.5958325067535e-05,-5.54263007435168e-05,-9.10209732238421e-05,-9.75011736018118e-07,2.28693279622214e-05,-4.22160622381474e-05,0.000112471745440305,4.80224189334955e-05 +6.316,0.559983634867411,-0.292496361548408,0.000121298156851329,-3.59601469157549e-05,-5.538034582308e-05,-9.11062252376036e-05,-9.42690368213505e-07,2.2450364487189e-05,-4.26613267231362e-05,0.000112518705763671,4.82171787697718e-05 +6.318,0.559983562925204,-0.292496472238264,0.000121115817166825,-3.59620958290079e-05,-5.53364992855681e-05,-9.11916185307347e-05,-1.07544529037596e-06,2.08288247729782e-05,-4.23629169988338e-05,0.000112566921339492,4.72187808043167e-05 +6.32,0.559983491019027,-0.292496582894405,0.000120933390377206,-3.59644486969164e-05,-5.5297030523988e-05,-9.1275676905599e-05,-1.35407657508762e-06,1.81492043585384e-05,-4.13798006327531e-05,0.000112616394674218,4.52052545908724e-05 +6.322,0.55998341906741,-0.292496693426386,0.000120750714459203,-3.59675121353082e-05,-5.52639024681339e-05,-9.13571377332657e-05,-1.75690017889658e-06,1.45763783018946e-05,-3.97876679469172e-05,0.000112667153421154,4.24100934129211e-05 +6.324,0.559983347148979,-0.292496803950015,0.000120567961826273,-3.59714762976319e-05,-5.52387250107805e-05,-9.14348275773866e-05,-2.2604834650783e-06,1.02890994366343e-05,-3.76753697633177e-05,0.000112719082421541,3.91204401753809e-05 +6.326,0.559983275181504,-0.292496914381286,0.000120384975148893,-3.59765540691685e-05,-5.52227460703874e-05,-9.15078392123189e-05,-2.84030438257724e-06,5.47347930561674e-06,-3.51411530134194e-05,0.000112772109865666,3.56781016844683e-05 +6.328,0.559983203242763,-0.292497024840999,0.000120201930469424,-3.59828375151623e-05,-5.5216831093558e-05,-9.15753921894403e-05,-3.47170903336397e-06,3.16843770373987e-07,-3.22889206742326e-05,0.000112826040816413,3.24765692753106e-05 +6.33,0.559983131250154,-0.29249713524861,0.000120018673580136,-3.5990440905302e-05,-5.52214786953059e-05,-9.16369948950159e-05,-4.13073741678524e-06,-4.99814078707159e-06,-2.92245403173654e-05,0.000112880744058689,2.99352327483041e-05 +6.332,0.559983059280999,-0.292497245726914,0.000119835382489844,-3.59993604648294e-05,-5.52368236567063e-05,-9.16922903507098e-05,-4.79458139657105e-06,-1.0298487753952e-05,-2.60526296665515e-05,0.000112935985192133,2.84215828786703e-05 +6.334,0.559982987252712,-0.292497356195905,0.000119651904418733,-3.60096192308883e-05,-5.52626726463217e-05,-9.17412054136821e-05,-5.44218142972673e-06,-1.54254213599734e-05,-2.28733360428218e-05,0.000112991612237031,2.81202856417682e-05 +6.336,0.559982915242522,-0.292497466777604,0.000119468417668189,-3.60211291905483e-05,-5.52985253421462e-05,-9.17837836948811e-05,-6.05478167803615e-06,-2.02379849021016e-05,-1.97797698410127e-05,0.000113047386535589,2.89391725698889e-05 +6.338,0.559982843168196,-0.292497577390006,0.000119284769283953,-3.60338383576004e-05,-5.53436245859301e-05,-9.18203244930461e-05,-6.6162769687407e-06,-2.46159273489638e-05,-1.68556843778831e-05,0.000113103166529936,3.05586828253995e-05 +6.34,0.559982771107169,-0.292497688152103,0.000119101136370217,-3.60475942984233e-05,-5.5396989051542e-05,-9.18512064323926e-05,-7.11332381686047e-06,-2.84616184756144e-05,-1.41736587693294e-05,0.000113158736179609,3.2581523980384e-05 +6.342,0.559982698977818,-0.292497798977962,0.000118917364458224,-3.60622916528679e-05,-5.54574710598326e-05,-9.18770191281234e-05,-7.53570817058214e-06,-3.17013047787743e-05,-1.17937873060267e-05,0.000113213985971161,3.4653326555018e-05 +6.344,0.559982626858002,-0.292497909981987,0.000118733628293705,-3.60777371311056e-05,-5.55237942706571e-05,-9.18983815816167e-05,-7.87628296117881e-06,-3.42852656018749e-05,-9.76285892917085e-06,0.000113268739659413,3.65079263331479e-05 +6.346,0.55998255466687,-0.29249802107314,0.000118549770931897,-3.60937967847126e-05,-5.55946121222401e-05,-9.19160705638401e-05,-8.13091954676406e-06,-3.61875529511224e-05,-8.11385506883073e-06,0.000113322932768506,3.79668998648063e-05 +6.348,0.559982482482815,-0.292498132360435,0.000118365964011449,-3.61102608092927e-05,-5.56685444824616e-05,-9.1930837001892e-05,-8.29841750670526e-06,-3.74048222919882e-05,-6.86613005524235e-06,0.000113376437465548,3.89246477921934e-05 +6.35,0.559982410225827,-0.292498243747317,0.00011818204758389,-3.61269904547394e-05,-5.5744231411408e-05,-9.19435350840611e-05,-8.38030339767511e-06,-3.79545422899224e-05,-6.02578404351222e-06,0.000113429239699116,3.93330247859688e-05 +6.352,0.559982337974853,-0.292498355337361,0.000117998189871113,-3.61437820228834e-05,-5.58203626516213e-05,-9.19549401380661e-05,-8.38049768670967e-06,-3.78729166114973e-05,-5.58653297743794e-06,0.000113481262247437,3.91892830356256e-05 +6.354,0.559982265650699,-0.292498467028768,0.000117814227823337,-3.61605124454862e-05,-5.5895723077854e-05,-9.19658812159708e-05,-8.3051551726878e-06,-3.72123373750919e-05,-5.53075119913599e-06,0.000113532540826612,3.85269109089585e-05 +6.356,0.559982193332803,-0.292498578920253,0.000117630326346249,-3.61770026435741e-05,-5.59692120011217e-05,-9.19770631428626e-05,-8.16217926379257e-06,-3.6038318159901e-05,-5.83093382094992e-06,0.000113583046079447,3.74083057001093e-05 +6.358,0.559982120942688,-0.292498690905616,0.000117446319570766,-3.61931611625414e-05,-5.60398763504936e-05,-9.19892049512546e-05,-7.96084726118736e-06,-3.44266178096109e-05,-6.45121977183183e-06,0.00011363285829319,3.59191500382379e-05 +6.36,0.559982048560159,-0.292498803079759,0.000117262369526444,-3.62088460326189e-05,-5.61069184723601e-05,-9.20028680219499e-05,-7.71148423096777e-06,-3.24600867049988e-05,-7.3490952957642e-06,0.000113681988704202,3.41633344333765e-05 +6.362,0.559981976107304,-0.29249891533329,0.000117078308098678,-3.62240070994653e-05,-5.61697166973136e-05,-9.20186013324377e-05,-7.42509525885176e-06,-3.02256761255325e-05,-8.47712611401351e-06,0.000113730553306386,3.22581029200648e-05 +6.364,0.55998190366413,-0.292499027758626,0.000116894295121114,-3.62385464136543e-05,-5.62278211768622e-05,-9.2036776526406e-05,-7.11283809427703e-06,-2.78113990139623e-05,-9.78480490565144e-06,0.00011377859356594,3.03283495744638e-05 +6.366,0.559981831153118,-0.292499140244575,0.000116710160992572,-3.62524584518424e-05,-5.62809622933695e-05,-9.20577405520603e-05,-6.78587741754836e-06,-2.5303648068867e-05,-1.12202365505364e-05,0.000113826249415593,2.84994113302198e-05 +6.368,0.559981758654296,-0.292499252882475,0.000116526064158906,-3.62656899233245e-05,-5.63290357691377e-05,-9.20816574726081e-05,-6.45489911723075e-06,-2.27846803955351e-05,-1.27317965249522e-05,0.000113873579811993,2.68869117991095e-05 +6.37,0.559981686090359,-0.292499365560718,0.000116341834362682,-3.62782780483113e-05,-5.63721010149516e-05,-9.21086677381601e-05,-6.12986050606319e-06,-2.03305219850038e-05,-1.42695863754553e-05,0.00011392073517797,2.55837137517816e-05 +6.372,0.559981613541184,-0.292499478370879,0.000116157629487953,-3.62902093653487e-05,-5.64103578570777e-05,-9.213873581811e-05,-5.8198168486441e-06,-1.80091636017047e-05,-1.57868830803934e-05,0.000113967777935274,2.46460122368455e-05 +6.374,0.559981540929521,-0.292499591202149,0.00011597327941941,-3.63015573157059e-05,-5.64441376693584e-05,-9.21718152704817e-05,-5.53265766735501e-06,-1.58791591018629e-05,-1.72411659653054e-05,0.000114014855484006,2.40835171536389e-05 +6.376,0.559981468334955,-0.292499704147429,0.000115788942226872,-3.63123399960181e-05,-5.64738744934852e-05,-9.22077004819712e-05,-5.27494714776679e-06,-1.39885811299137e-05,-1.85951211077596e-05,0.000114062020692539,2.38596730583668e-05 +6.378,0.559981395680161,-0.292499817097647,0.000115604448617482,-3.63226571042969e-05,-5.65000919938781e-05,-9.22461957549127e-05,-5.05193803255722e-06,-1.23744937876334e-05,-1.98173118489029e-05,0.000114109405596939,2.39034730384863e-05 +6.38,0.559981323044326,-0.292499930147797,0.000115419957443852,-3.63325477481484e-05,-5.65233724686357e-05,-9.22869697293668e-05,-4.86735651581828e-06,-1.10626577311789e-05,-2.08826740570696e-05,0.000114157042896742,2.41279844019988e-05 +6.382,0.55998125034997,-0.292500043191137,0.000115235300738564,-3.63421265303602e-05,-5.65443426248028e-05,-9.2329726451141e-05,-4.72354100479949e-06,-1.00676689238909e-05,-2.17727329272667e-05,0.000114205040301041,2.44483475169015e-05 +6.384,0.55998117767582,-0.292500156325168,0.000115050638538047,-3.63514419121676e-05,-5.65636431443313e-05,-9.23740606610759e-05,-4.62140048653501e-06,-9.39343741993549e-06,-2.24756975235269e-05,0.000114253403178501,2.4794172464276e-05 +6.386,0.559981104944203,-0.29250026944571,0.00011486580449592,-3.63606121323064e-05,-5.65819163744825e-05,-9.24196292412351e-05,-4.56056026074859e-06,-9.0339784233028e-06,-2.29861789273521e-05,0.000114302210146315,2.51152522926779e-05 +6.388,0.559981032233372,-0.292500382652833,0.000114680960021082,-3.63696841532105e-05,-5.65997790580245e-05,-9.24660053767853e-05,-4.53944520659799e-06,-8.97419638286999e-06,-2.33049577848246e-05,0.000114351436655432,2.53823525476753e-05 +6.39,0.559980959465466,-0.292500495844826,0.000114495940474413,-3.63787699131327e-05,-5.6617813160014e-05,-9.25128490723744e-05,-4.55541160550953e-06,-9.19126580715258e-06,-2.34383857859722e-05,0.000114401131598,2.55849383482823e-05 +6.392,0.559980886718292,-0.292500609124086,0.000114310908624793,-3.63879057996326e-05,-5.66365441212531e-05,-9.25597589199292e-05,-4.60489979683491e-06,-9.65588720406639e-06,-2.33978487677942e-05,0.000114451241975773,2.57274286860757e-05 +6.394,0.559980813913843,-0.292500722391002,0.000114125701438733,-3.63971895123201e-05,-5.66564367088303e-05,-9.26064404674456e-05,-4.68365623860391e-06,-1.03336610070753e-05,-2.3198968782526e-05,0.000114501790557999,2.58246653055403e-05 +6.396,0.559980741129534,-0.292500835749833,0.000113940482862923,-3.6406640424587e-05,-5.66778787652814e-05,-9.26525547950593e-05,-4.78686534652788e-06,-1.11865031095674e-05,-2.28607696957263e-05,0.000114552701052348,2.58972338821579e-05 +6.398,0.559980668287281,-0.292500949102517,0.000113755091219553,-3.64163369737062e-05,-5.67011827212685e-05,-9.26978835462285e-05,-4.90936458354949e-06,-1.21741471102264e-05,-2.24048887133381e-05,0.00011460397608514,2.59671091331459e-05 +6.4,0.559980595464186,-0.292501062554564,0.000113569691328738,-3.64262778829212e-05,-5.67265753537223e-05,-9.27421743499126e-05,-5.04578323770141e-06,-1.32554696417446e-05,-2.18547766740882e-05,0.000114655523089448,2.60537649367486e-05 +6.402,0.559980522582169,-0.292501176008819,0.000113384122522153,-3.6436520106657e-05,-5.67542045998355e-05,-9.27853026529248e-05,-5.19089632389282e-06,-1.43899094029487e-05,-2.12347145076032e-05,0.000114707332484186,2.61711290832071e-05 +6.404,0.559980449718106,-0.292501289571382,0.000113198550118127,-3.64470414682168e-05,-5.67841349913341e-05,-9.2827113207943e-05,-5.3395066126101e-06,-1.55384802215812e-05,-2.05691626874009e-05,0.000114759303609861,2.63257507418752e-05 +6.406,0.559980376794004,-0.292501403145359,0.000113012814069322,-3.64578781331074e-05,-5.68163585207218e-05,-9.28675793036744e-05,-5.48668055231077e-06,-1.6664909032912e-05,-1.98819112163865e-05,0.000114811422599182,2.65162827367376e-05 +6.408,0.559980303886593,-0.292501516836816,0.000112827079800912,-3.6468988190426e-05,-5.68507946274657e-05,-9.29066408528086e-05,-5.62801888628657e-06,-1.773653099706e-05,-1.91954716062735e-05,0.000114863588068458,2.67343460473848e-05 +6.41,0.559980230918051,-0.292501630548537,0.00011264118750591,-3.64803902086526e-05,-5.68873046447101e-05,-9.29443611900995e-05,-5.75966358143276e-06,-1.87249590864426e-05,-1.85304783721914e-05,0.000114915789065521,2.69662093380305e-05 +6.412,0.559980157965032,-0.292501744386035,0.000112455302356151,-3.64920268447517e-05,-5.69256944638115e-05,-9.29807627662973e-05,-5.87826315198784e-06,-1.96065247339335e-05,-1.79052684086178e-05,0.000114967930128483,2.71950073839117e-05 +6.414,0.559980084949943,-0.292501858251315,0.000112269264454845,-3.65039032612605e-05,-5.69657307436458e-05,-9.3015982263734e-05,-5.98116000968757e-06,-2.03627115137891e-05,-1.73354559822007e-05,0.000115020008646115,2.74031445160241e-05 +6.416,0.559980011949419,-0.292501972248958,0.000112083238427096,-3.65159514847905e-05,-5.70071453098667e-05,-9.30501045902261e-05,-6.06633493641192e-06,-2.09802661386685e-05,-1.68337236562945e-05,0.000115071939644172,2.75743764924355e-05 +6.418,0.559979938886138,-0.292502086279896,0.000111897064036484,-3.65281686010062e-05,-5.70496518082005e-05,-9.30833171583592e-05,-6.13255973983216e-06,-2.14511672345696e-05,-1.64096332060443e-05,0.000115123732592303,2.76954315121645e-05 +6.42,0.559979865836745,-0.292502200447565,0.000111710905158463,-3.65404817237498e-05,-5.70929499788049e-05,-9.31157431230503e-05,-6.17923073617256e-06,-2.17723998520683e-05,-1.60696646909738e-05,0.000115175315754913,2.77570605628466e-05 +6.422,0.559979792724211,-0.292502314651696,0.000111524601063992,-3.65528855239509e-05,-5.71367414076088e-05,-9.31475958171231e-05,-6.20629936129033e-06,-2.19457854634856e-05,-1.5817186964741e-05,0.000115226712464242,2.77546222249351e-05 +6.424,0.559979719625203,-0.292502428994531,0.000111338314775195,-3.6565306921195e-05,-5.71807331206589e-05,-9.31790118709093e-05,-6.21436236006565e-06,-2.197738519267e-05,-1.56526918214721e-05,0.00011527786502055,2.76880934827079e-05 +6.426,0.559979646462983,-0.292502543374629,0.000111151885016508,-3.65777429733911e-05,-5.72246509483794e-05,-9.3210206584409e-05,-6.20459933634592e-06,-2.18770314395913e-05,-1.55738902728592e-05,0.000115328810661948,2.75617056033278e-05 +6.428,0.559979573314231,-0.292502657893134,0.000110965473948857,-3.65901253185404e-05,-5.72682412464173e-05,-9.32413074320007e-05,-6.17853684678217e-06,-2.16577554469795e-05,-1.55761020349438e-05,0.000115379504843422,2.7383346091579e-05 +6.43,0.559979500102482,-0.292502772447594,0.00011077891978678,-3.66024571207783e-05,-5.73112819701674e-05,-9.32725109925487e-05,-6.13811778978715e-06,-2.13351558610378e-05,-1.5652601605504e-05,0.00011542999703369,2.71637497896867e-05 +6.432,0.559979426904402,-0.292502887138262,0.000110592383904887,-3.66146777896995e-05,-5.73535818698614e-05,-9.33039178384227e-05,-6.08554873363522e-06,-2.09266284888099e-05,-1.57949304728916e-05,0.000115480254013167,2.69153768679095e-05 +6.434,0.55997935364377,-0.292503001861921,0.000110405704115427,-3.66267993157128e-05,-5.73949884841226e-05,-9.33356907144403e-05,-6.02321664969946e-06,-2.04508285338253e-05,-1.59932830919504e-05,0.000115530334944324,2.66514658243858e-05 +6.436,0.559979280397205,-0.292503116718216,0.000110219041142029,-3.66387706562983e-05,-5.74353851839967e-05,-9.33678909707905e-05,-5.95359872309579e-06,-1.99268657098742e-05,-1.62369779028565e-05,0.000115580214789437,2.63849344549661e-05 +6.438,0.559979207088688,-0.292503231603462,0.000110032232551543,-3.66506137106052e-05,-5.74746959469621e-05,-9.34006386260517e-05,-5.87925541380802e-06,-1.93738011712572e-05,-1.65147782550125e-05,0.000115629959159874,2.61275279515003e-05 +6.44,0.55997913379475,-0.292503346617,0.000109845438587525,-3.66622876779536e-05,-5.75128803886817e-05,-9.34339500838106e-05,-5.80258757913121e-06,-1.88100750285445e-05,-1.68153494652607e-05,0.000115679547788915,2.5889088876046e-05 +6.442,0.559979060439537,-0.292503461654984,0.000109658496751208,-3.66738240609217e-05,-5.75499362470763e-05,-9.34679000239128e-05,-5.72596137375164e-06,-1.82529338897726e-05,-1.71275346388133e-05,0.00011572904937039,2.56770066799433e-05 +6.444,0.559978987099454,-0.292503576816745,0.000109471566987429,-3.66851915234486e-05,-5.75858921242408e-05,-9.35024602223658e-05,-5.65150703809187e-06,-1.77180145523286e-05,-1.74407554318928e-05,0.000115778444956269,2.54960295244814e-05 +6.446,0.559978913698771,-0.292503691998552,0.000109284486910319,-3.66964300890741e-05,-5.76208083052856e-05,-9.35376630456403e-05,-5.58110502054158e-06,-1.72190907333973e-05,-1.77451846567698e-05,0.000115827802962314,2.53483213929077e-05 +6.448,0.559978840313734,-0.292503807299978,0.000109097416335246,-3.67075159435307e-05,-5.76547684871744e-05,-9.35734409609929e-05,-5.51639983896188e-06,-1.67677156913484e-05,-1.80321200731487e-05,0.000115877102610199,2.52337930367522e-05 +6.45,0.559978766868707,-0.292503922617626,0.000108910193146475,-3.67184956884299e-05,-5.7687879168051e-05,-9.36097915259329e-05,-5.45872375283382e-06,-1.63730695700143e-05,-1.82940234193887e-05,0.000115926409407251,2.51504744492708e-05 +6.452,0.559978693439751,-0.292504038051495,0.000108722977169143,-3.67293508385421e-05,-5.77202607654545e-05,-9.36466170546705e-05,-5.40903432951032e-06,-1.60418796270208e-05,-1.85247329576781e-05,0.000115975698323558,2.50951247356719e-05 +6.454,0.559978619951304,-0.292504153498669,0.000108535606678256,-3.6740131825748e-05,-5.77520466865591e-05,-9.36838904577637e-05,-5.36805322211265e-06,-1.57784861533188e-05,-1.87195424040261e-05,0.000116025029689124,2.50638761667473e-05 +6.456,0.559978546479224,-0.292504269059682,0.000108348241607312,-3.67508230514305e-05,-5.77833747100678e-05,-9.37214952242866e-05,-5.33614125312789e-06,-1.55847765280642e-05,-1.8875160988014e-05,0.000116074372946476,2.50525720281667e-05 +6.458,0.559978472948012,-0.292504384632168,0.000108160720697359,-3.67614763907605e-05,-5.78143857926713e-05,-9.37593911017157e-05,-5.31336086444424e-06,-1.54604280798626e-05,-1.89897472798621e-05,0.000116123782106754,2.50572772232229e-05 +6.46,0.559978399433318,-0.292504500317225,0.000107973204042905,-3.67720764948883e-05,-5.78452164223872e-05,-9.3797454213406e-05,-5.29948307255542e-06,-1.54029879097056e-05,-1.9062928314008e-05,0.000116173220191293,2.50745247868797e-05 +6.462,0.559978325859706,-0.292504616013034,0.000107785530880505,-3.67826743230507e-05,-5.78759977443101e-05,-9.38356428149717e-05,-5.29404297973019e-06,-1.54082371829405e-05,-1.90955324417347e-05,0.000116222734900509,2.51013948494964e-05 +6.464,0.559978252302621,-0.292504731821216,0.000107597861471645,-3.67932526668072e-05,-5.7906849371119e-05,-9.3873836343173e-05,-5.29633281880287e-06,-1.54703992704059e-05,-1.90895519929698e-05,0.000116272283007077,2.51355403802186e-05 +6.466,0.559978178686695,-0.292504847640431,0.000107410035535133,-3.68038596543259e-05,-5.79378793413918e-05,-9.39120010229436e-05,-5.30553379212233e-06,-1.55824519986166e-05,-1.90479880184896e-05,0.000116321906295273,2.51751334983762e-05 +6.468,0.559978105087182,-0.292504963572733,0.000107222213467553,-3.68144748019757e-05,-5.79691791791134e-05,-9.39500282952469e-05,-5.32061894338334e-06,-1.57364087006755e-05,-1.8974716757886e-05,0.00011637155625978,2.52187117192252e-05 +6.47,0.559978031428796,-0.292505079517148,0.000107034235421952,-3.68251421300995e-05,-5.80008249761945e-05,-9.39878998899752e-05,-5.34047111884123e-06,-1.59236790387976e-05,-1.88742216248333e-05,0.000116421270034943,2.52650040143504e-05 +6.472,0.559977957786614,-0.292505195576033,0.000106846261867993,-3.68358366864511e-05,-5.80328738952686e-05,-9.40255251817463e-05,-5.36393846211202e-06,-1.61353326565423e-05,-1.87514821430843e-05,0.000116470995113111,2.53128204340215e-05 +6.474,0.559977884085449,-0.292505311648643,0.000106658133321225,-3.68465978839479e-05,-5.80653663068206e-05,-9.40629058185475e-05,-5.38987604752602e-06,-1.63624773484903e-05,-1.8611706799015e-05,0.00011652076549266,2.53609356838437e-05 +6.476,0.559977810400222,-0.292505427837498,0.000106470010244719,-3.68573961906412e-05,-5.80983238046626e-05,-9.40999720089423e-05,-5.41709038532598e-06,-1.65964290889069e-05,-1.84602368061827e-05,0.000116570526356146,2.54080040476667e-05 +6.478,0.559977736655864,-0.292505544041939,0.000106281733433189,-3.68682662454892e-05,-5.81317520231763e-05,-9.41367467657722e-05,-5.4444851384574e-06,-1.68289895875379e-05,-1.83023301323241e-05,0.000116620310155974,2.54525558094451e-05 +6.48,0.559977662927157,-0.292505660364506,0.000106093463257656,-3.6879174131195e-05,-5.81656397630127e-05,-9.41731813294716e-05,-5.47106804509782e-06,-1.70526440223047e-05,-1.81430521700244e-05,0.000116670061349744,2.54930499499326e-05 +6.482,0.559977589139168,-0.292505776704498,0.000105905040707871,-3.68901505176696e-05,-5.81999625992655e-05,-9.42093189744523e-05,-5.49593010195674e-06,-1.72608281866622e-05,-1.79870328753259e-05,0.000116719812514424,2.55279217531142e-05 +6.484,0.559977515366555,-0.292505893164357,0.000105716625981758,-3.69011578516028e-05,-5.82346830757594e-05,-9.42451294609729e-05,-5.51825945844157e-06,-1.74479215765304e-05,-1.78384806873564e-05,0.000116769508823316,2.55556754562391e-05 +6.486,0.559977441534536,-0.29250600964323,0.000105528060190027,-3.69122235555034e-05,-5.82697542855716e-05,-9.42806728972018e-05,-5.53745937787245e-06,-1.76093757598809e-05,-1.77010420157978e-05,0.000116819184187622,2.55749967636226e-05 +6.488,0.559977367717661,-0.292506126243374,0.000105339503290169,-3.69233076891143e-05,-5.83051205787989e-05,-9.43159336290361e-05,-5.55294699316561e-06,-1.77418080259535e-05,-1.75777586982798e-05,0.000116868785707434,2.55848504626008e-05 +6.49,0.559977293841306,-0.292506242863712,0.000105150796455511,-3.6934435343476e-05,-5.83407215176754e-05,-9.43509839319949e-05,-5.5644100458961e-06,-1.78429979157615e-05,-1.7470950906506e-05,0.000116918349587564,2.5584553139703e-05 +6.492,0.55997721997992,-0.29250635960626,0.000104962099354441,-3.69455653292979e-05,-5.83764925704619e-05,-9.43858174326621e-05,-5.57170975818337e-06,-1.79118005117859e-05,-1.73822475458059e-05,0.000116967825553707,2.55737966862006e-05 +6.494,0.559977146059044,-0.292506476369683,0.00010477325318578,-3.69567221825088e-05,-5.84123687197226e-05,-9.44205129221781e-05,-5.57474899371035e-06,-1.7948212357541e-05,-1.73126408989668e-05,0.000117017252550259,2.55527628265681e-05 +6.496,0.559977072153031,-0.292506593255735,0.000104584417302753,-3.69678643252727e-05,-5.84482854198921e-05,-9.4455067996258e-05,-5.5735416302741e-06,-1.79531528564889e-05,-1.72624987273799e-05,0.000117066583325365,2.55220282521912e-05 +6.498,0.559976998187587,-0.292506710162824,0.000104395432913795,-3.69790163490299e-05,-5.84841813311485e-05,-9.44895629170876e-05,-5.56837909321253e-06,-1.79284087608315e-05,-1.72314905452507e-05,0.000117115859798657,2.54825224974344e-05 +6.5,0.559976924236965,-0.29250682719246,0.000104206459051084,-3.69901378416456e-05,-5.85199990549354e-05,-9.4523993958439e-05,-5.55957363274205e-06,-1.78765474612987e-05,-1.72187897568283e-05,0.000117165037535899,2.54355367311916e-05 +6.502,0.559976850227036,-0.29250694424282,0.000104017336937962,-3.70012546435608e-05,-5.85556875209937e-05,-9.45584380761149e-05,-5.54741669062117e-06,-1.78008059648849e-05,-1.72230623807458e-05,0.000117214161250458,2.53826003929843e-05 +6.504,0.559976776231947,-0.29250706141521,0.00010382822529878,-3.70123275084081e-05,-5.8591202278795e-05,-9.4592886207962e-05,-5.53238705053342e-06,-1.77047820880992e-05,-1.72425710914564e-05,0.000117263188994743,2.53253405329113e-05 +6.506,0.559976702177726,-0.29250717860763,0.00010363896539313,-3.7023384191763e-05,-5.86265066493461e-05,-9.46274083604808e-05,-5.51508838803221e-06,-1.75924379263536e-05,-1.72752237914486e-05,0.000117312167621001,2.52654592114421e-05 +6.508,0.55997662813841,-0.292507295921237,0.000103449715665338,-3.70343878619602e-05,-5.86615720305004e-05,-9.46619871031278e-05,-5.49598560900325e-06,-1.74679055909499e-05,-1.73187887589559e-05,0.000117361057083312,2.52046429775557e-05 +6.51,0.559976554040174,-0.292507413253918,0.000103260317444717,-3.7045368134199e-05,-5.86963782717099e-05,-9.46966835155166e-05,-5.47564077207578e-06,-1.73353935340614e-05,-1.73708226569757e-05,0.000117409905848067,2.51444624246711e-05 +6.512,0.559976479956938,-0.29250753070675,0.000103070928931276,-3.70562904250485e-05,-5.87309136046366e-05,-9.47314703937557e-05,-5.45457429429671e-06,-1.71989714169807e-05,-1.74288084017588e-05,0.000117458675098367,2.50862584065329e-05 +6.514,0.559976405815013,-0.292507648177572,0.000102881391563142,-3.70671864313762e-05,-5.87651741573778e-05,-9.47663987491236e-05,-5.43333434005975e-06,-1.70625007211328e-05,-1.74902453683879e-05,0.000117507413959985,2.5031155306057e-05 +6.516,0.559976331688192,-0.292507765767447,0.000102691863336279,-3.70780237624087e-05,-5.87991636075212e-05,-9.48014313752292e-05,-5.41240663192898e-06,-1.69295202823842e-05,-1.75527838739002e-05,0.000117556083967875,2.49800525272638e-05 +6.518,0.559976257502917,-0.292507883374227,0.000102502185837641,-3.70888360579039e-05,-5.88328922385074e-05,-9.48366098846192e-05,-5.39220057287791e-06,-1.68032428216685e-05,-1.76142130342659e-05,0.000117604734359146,2.49336178112724e-05 +6.52,0.559976183332848,-0.292508001099016,0.000102312516896741,-3.70995925647003e-05,-5.88663765788079e-05,-9.48718882273663e-05,-5.37309086318652e-06,-1.66863536909442e-05,-1.7672508427203e-05,0.000117653326497004,2.489220880181e-05 +6.522,0.559976109104547,-0.292508118839733,0.000102122698284732,-3.71103284213566e-05,-5.88996376532712e-05,-9.4907299918328e-05,-5.35544525599008e-06,-1.65810733231926e-05,-1.77258971442687e-05,0.000117701908943802,2.48559895399115e-05 +6.524,0.559976034891534,-0.292508236697566,0.000101932887697068,-3.71210143457242e-05,-5.89327008721006e-05,-9.49427918159434e-05,-5.33947191810331e-06,-1.64890913390616e-05,-1.77729289566123e-05,0.00011775044227493,2.48249289475099e-05 +6.526,0.55997596062049,-0.292508354570536,0.000101742927117468,-3.7131686309029e-05,-5.89655940186274e-05,-9.49783916341545e-05,-5.32533739121987e-06,-1.64115318524453e-05,-1.78124234059791e-05,0.000117798974034295,2.4798790770278e-05 +6.528,0.559975886364789,-0.292508472559942,0.000101552974130531,-3.71423156952891e-05,-5.89983469995104e-05,-9.50140415095673e-05,-5.31315269764627e-06,-1.6348991608237e-05,-1.78435790501549e-05,0.000117847463476585,2.4777256335475e-05 +6.53,0.559975812051227,-0.292508590563924,0.00010136287095143,-3.71529389198196e-05,-5.90309899850603e-05,-9.50497659503551e-05,-5.30298721807823e-06,-1.63016267184542e-05,-1.78658520322355e-05,0.000117895956912073,2.47599146997855e-05 +6.532,0.559975737753033,-0.292508708683902,0.00010117277506673,-3.71635276441614e-05,-5.90635535063842e-05,-9.50855049176962e-05,-5.29477156357095e-06,-1.62690624828088e-05,-1.78790463284397e-05,0.000117944412267869,2.47462582544196e-05 +6.534,0.559975663397116,-0.292508826818138,0.000100982528931759,-3.71741180060739e-05,-5.90960662349916e-05,-9.51212821356689e-05,-5.28843635343551e-06,-1.62505078805028e-05,-1.78832452266026e-05,0.000117992874399743,2.47357438795243e-05 +6.536,0.559975589056561,-0.292508945068167,0.000100792289938187,-3.71846813895751e-05,-5.91285555379062e-05,-9.51570378986026e-05,-5.28387750426908e-06,-1.62448388107478e-05,-1.78787922020039e-05,0.000118041299855938,2.4727825623571e-05 +6.538,0.559975514658391,-0.29250906333236,0.000100601900780165,-3.7195253516091e-05,-5.91610455902346e-05,-9.51927973044769e-05,-5.28090071878548e-06,-1.62506293177159e-05,-1.78662484165565e-05,0.000118089732229806,2.47219274755344e-05 +6.54,0.559975440275547,-0.29250918171235,0.000100411518748969,-3.72058049924503e-05,-5.91935580551771e-05,-9.52285028922689e-05,-5.27927701348013e-06,-1.62661793723833e-05,-1.78464335270778e-05,0.000118138126798552,2.47174947516129e-05 +6.542,0.559975365835171,-0.292509300106593,0.000100220986768595,-3.72163706241449e-05,-5.92261103077241e-05,-9.52641830385852e-05,-5.27882598537521e-06,-1.62897334477348e-05,-1.78202487435657e-05,0.000118186526112859,2.47140179830127e-05 +6.544,0.559975291410064,-0.292509418616791,0.000100030462016815,-3.72269202963918e-05,-5.9258716988968e-05,-9.52997838872431e-05,-5.27921456756735e-06,-1.63193139590252e-05,-1.77887609209726e-05,0.00011823488462754,2.47109313795974e-05 +6.546,0.55997521692749,-0.292509537141461,9.98397876330465e-05,-3.72374874824152e-05,-5.92913875635602e-05,-9.53353380822691e-05,-5.28023458497239e-06,-1.63529675944645e-05,-1.77531019452044e-05,0.000118283243954822,2.47077529349547e-05 +6.548,0.559975142460114,-0.292509655782341,9.96491206644856e-05,-3.72480412347317e-05,-5.93241288593459e-05,-9.53707962950239e-05,-5.28167093187698e-06,-1.63887965665525e-05,-1.77144297441665e-05,0.000118331558033736,2.47040426224837e-05 +6.55,0.559975067935325,-0.292509774437976,9.94583044478664e-05,-3.72586141661427e-05,-5.93569427498264e-05,-9.54061958012457e-05,-5.28320442742688e-06,-1.64249794288091e-05,-1.76738771134647e-05,0.000118379868134127,2.46993548596038e-05 +6.552,0.559974993425658,-0.292509893210112,9.92674958812806e-05,-3.72691740524414e-05,-5.93898287770611e-05,-9.54414918034778e-05,-5.28463384370799e-06,-1.64598022744574e-05,-1.76326037157572e-05,0.00011842812780076,2.46933424139632e-05 +6.554,0.559974918858629,-0.292510011997291,9.90765384806525e-05,-3.72797527015175e-05,-5.94227819589242e-05,-9.54767262161088e-05,-5.28581345567452e-06,-1.64918009837006e-05,-1.75916477618551e-05,0.000118476378346782,2.46857326111939e-05 +6.556,0.559974844306647,-0.29251013090124,9.88855889764162e-05,-3.72903173062641e-05,-5.94557959809959e-05,-9.55118583945252e-05,-5.28648652424291e-06,-1.65196571666795e-05,-1.75519659517406e-05,0.000118524573547056,2.46762542021006e-05 +6.558,0.559974769697359,-0.292510249820475,9.86944910470744e-05,-3.73008986476145e-05,-5.9488860587591e-05,-9.55469340799157e-05,-5.28650040202954e-06,-1.65422744913539e-05,-1.75143849023532e-05,0.000118572754821676,2.46647037354138e-05 +6.56,0.559974695103052,-0.292510368856682,9.85034012400965e-05,-3.73114633078722e-05,-5.95219650789613e-05,-9.55819159341346e-05,-5.28574406673601e-06,-1.65588376377077e-05,-1.74796236565881e-05,0.000118620876217788,2.46509926255912e-05 +6.562,0.559974620451506,-0.292510487908335,9.83121633833378e-05,-3.73220416238814e-05,-5.95550959381418e-05,-9.56168525745421e-05,-5.2841758767149e-06,-1.65688018893591e-05,-1.74482373047411e-05,0.000118668979684826,2.46351110366372e-05 +6.564,0.559974545814886,-0.292510607077066,9.81209338297984e-05,-3.73326000113791e-05,-5.95882402865188e-05,-9.56517088833536e-05,-5.28167787076411e-06,-1.65717994849119e-05,-1.74206673339224e-05,0.000118717019910202,2.46170735396764e-05 +6.566,0.559974471121106,-0.292510726261297,9.79295565478044e-05,-3.73431683353645e-05,-5.96213831360814e-05,-9.56865352438778e-05,-5.27826393496222e-06,-1.65677471708684e-05,-1.73971609634573e-05,0.000118765039364961,2.45969820521417e-05 +6.568,0.559974396442213,-0.292510845562598,9.77381876888228e-05,-3.73537130671189e-05,-5.96545112752023e-05,-9.57212975272074e-05,-5.27394100820715e-06,-1.65568010723554e-05,-1.73778491649828e-05,0.000118812993378991,2.45750230337326e-05 +6.57,0.559974321706254,-0.292510964879342,9.75466713576956e-05,-3.73642640993973e-05,-5.96876103403709e-05,-9.57560466405377e-05,-5.26872989888649e-06,-1.65392838347003e-05,-1.73626798755509e-05,0.00011886092515229,2.455137627452e-05 +6.572,0.559974246985156,-0.29251108431304,9.73551635022607e-05,-3.73747879867145e-05,-5.97206684105411e-05,-9.57907482467096e-05,-5.26267224036131e-06,-1.65156638332226e-05,-1.73515299297805e-05,0.000118908790516589,2.45262810443319e-05 +6.574,0.559974172207102,-0.292511203762015,9.71635083647088e-05,-3.73853147883588e-05,-5.97536729957038e-05,-9.58254527602568e-05,-5.25587212433262e-06,-1.64866592566989e-05,-1.73441660286178e-05,0.000118956633253511,2.4500086131728e-05 +6.576,0.559974097443897,-0.292511323327732,9.69718616912196e-05,-3.73958114752118e-05,-5.97866150475679e-05,-9.58601249108241e-05,-5.24843363421809e-06,-1.64529639945372e-05,-1.73402412273921e-05,0.000119004410013472,2.44730473305323e-05 +6.578,0.559974022623856,-0.292511442908476,9.67800678650654e-05,-3.74063085228956e-05,-5.98194848516819e-05,-9.58948137251664e-05,-5.24046778401926e-06,-1.64154419257571e-05,-1.73392732517031e-05,0.000119052164972398,2.44454419700376e-05 +6.58,0.559973947818663,-0.292511562605671,9.6588282436319e-05,-3.74167733463479e-05,-5.98522768152709e-05,-9.59294820038309e-05,-5.23204396266607e-06,-1.63750020454427e-05,-1.7340806736607e-05,0.000119099855101285,2.44175869874948e-05 +6.582,0.559973872956763,-0.292511682317583,9.63963499370502e-05,-3.74272366987463e-05,-5.98849848598637e-05,-9.59641769521128e-05,-5.22330095634598e-06,-1.6332522136956e-05,-1.7344353378743e-05,0.000119147525012761,2.43897672469713e-05 +6.584,0.559973798109716,-0.292511802145611,9.62044257285105e-05,-3.74376665501733e-05,-5.99176069038187e-05,-9.59988594173459e-05,-5.2143636651533e-06,-1.62889216037617e-05,-1.7349347658286e-05,0.000119195132045037,2.43622334693279e-05 +6.586,0.559973723206096,-0.29251192198801,9.60123544993807e-05,-3.74480941534069e-05,-5.99501405462787e-05,-9.6033574342746e-05,-5.20537085865499e-06,-1.6245067794296e-05,-1.73552196972628e-05,0.000119242720986586,2.43351959958753e-05 +6.588,0.55997364831734,-0.292512041946173,9.58202914311396e-05,-3.74584880336079e-05,-5.99825871749959e-05,-9.60682802961349e-05,-5.1963988646783e-06,-1.62017205174206e-05,-1.73615002529418e-05,0.000119290249262153,2.43088461247821e-05 +6.59,0.559973573372144,-0.292512161918359,9.56280813781962e-05,-3.74688797488656e-05,-6.00149474283484e-05,-9.61030203437577e-05,-5.18755871384357e-06,-1.61596222480986e-05,-1.73676463782099e-05,0.00011933776176741,2.42833131456431e-05 +6.592,0.559973498441821,-0.292512282005963,9.54358793497645e-05,-3.74792382684632e-05,-6.00472256639883e-05,-9.61377508816478e-05,-5.17893367288164e-06,-1.61193732006734e-05,-1.73732191880525e-05,0.000119385215817152,2.42586951695018e-05 +6.594,0.559973423455191,-0.292512402107262,9.52435303746696e-05,-3.74895954835571e-05,-6.00794249211511e-05,-9.617251322051e-05,-5.17061393909201e-06,-1.60815215344346e-05,-1.73778188073529e-05,0.000119432656202255,2.42350813877487e-05 +6.596,0.559973348483439,-0.292512522323662,9.50511892968825e-05,-3.74999207242196e-05,-6.0111551750126e-05,-9.62072621568772e-05,-5.16261339026018e-06,-1.60464454190791e-05,-1.73811225775301e-05,0.000119480040173465,2.42124845825435e-05 +6.598,0.559973273455508,-0.292512642553469,9.48587013260421e-05,-3.75102459371182e-05,-6.01436107028274e-05,-9.62420377108201e-05,-5.15500142364475e-06,-1.60144363014934e-05,-1.73828312801501e-05,0.000119527412259144,2.41908873968388e-05 +6.6,0.559973198442455,-0.292512762898105,9.46662211460392e-05,-3.75205407299142e-05,-6.0175609495332e-05,-9.62767934819978e-05,-5.14781967261822e-06,-1.59856711234945e-05,-1.73827436873041e-05,0.000119574729428818,2.41702607919077e-05 +6.602,0.559973123373345,-0.292512883255907,9.44735941521141e-05,-3.75308372158087e-05,-6.02075533873214e-05,-9.63115686855693e-05,-5.14109588442817e-06,-1.59602157912133e-05,-1.73807357448845e-05,0.000119622035970309,2.41505554807438e-05 +6.604,0.559973048319106,-0.292513003728319,9.42809748712969e-05,-3.75411051134519e-05,-6.02394503584968e-05,-9.63463164249773e-05,-5.13478842570212e-06,-1.59379905073526e-05,-1.73767415333848e-05,0.000119669288630354,2.41316543135203e-05 +6.606,0.559972973208925,-0.292513124213708,9.40882088864142e-05,-3.75513763695115e-05,-6.02713053493508e-05,-9.63810756517028e-05,-5.12889036588266e-06,-1.59188738546421e-05,-1.7370759339474e-05,0.000119716531270909,2.41134680462013e-05 +6.608,0.559972898113601,-0.29251324481354,9.38954505686901e-05,-3.75616206749154e-05,-6.03031258539154e-05,-9.64157994623352e-05,-5.12338088829205e-06,-1.5902650727388e-05,-1.7362874164617e-05,0.000119763720389109,2.40959069374891e-05 +6.61,0.559972822962442,-0.292513365426212,9.37025456885648e-05,-3.75718698930646e-05,-6.03349159522604e-05,-9.64505271483613e-05,-5.1182530456982e-06,-1.58890227397659e-05,-1.73531397638355e-05,0.000119810899660358,2.40788084740048e-05 +6.612,0.559972747826121,-0.292513486153204,9.35096484600967e-05,-3.75820936870982e-05,-6.03666819448745e-05,-9.64852120213906e-05,-5.11341663247469e-06,-1.58776013137001e-05,-1.73417530282293e-05,0.00011985802515373,2.40620375535028e-05 +6.614,0.559972672634067,-0.292513606892939,9.33166048404793e-05,-3.75923235595945e-05,-6.03984263575152e-05,-9.65198941604742e-05,-5.10882308470917e-06,-1.58680672734709e-05,-1.73289021967154e-05,0.000119905140281068,2.40455085961928e-05 +6.616,0.559972597456827,-0.292513727746909,9.31235688834547e-05,-3.76025289794371e-05,-6.04301542139684e-05,-9.65545276301774e-05,-5.1044654635117e-06,-1.58600042854614e-05,-1.73148153854454e-05,0.000119952201021324,2.40291101673593e-05 +6.618,0.559972522223952,-0.292513848613556,9.29303867299586e-05,-3.76127414214486e-05,-6.0461866374657e-05,-9.6589153422016e-05,-5.10030212717048e-06,-1.58529370220254e-05,-1.72997345669108e-05,0.000119999250670683,2.40126947696066e-05 +6.62,0.559972447005861,-0.292513969594375,9.27372122697667e-05,-3.76229301879457e-05,-6.04935659620565e-05,-9.66237265684451e-05,-5.0961942978035e-06,-1.584644914951e-05,-1.72839017350221e-05,0.000120046244983783,2.39961331500488e-05 +6.622,0.559972371732231,-0.29251409058782,9.25438918236848e-05,-3.76331261986398e-05,-6.0525252171255e-05,-9.66582890289561e-05,-5.09212116708077e-06,-1.58401833283113e-05,-1.72675623745981e-05,0.000120093227019187,2.39793622979298e-05 +6.624,0.559972296473356,-0.292514211695383,9.23505791136509e-05,-3.76432986726141e-05,-6.05569266953697e-05,-9.66927968179435e-05,-5.08806191832625e-06,-1.58337371025966e-05,-1.72509897046005e-05,0.000120140152581142,2.39623089560897e-05 +6.626,0.559972221159036,-0.292514332815527,9.2157120636413e-05,-3.76534784463131e-05,-6.05885871196654e-05,-9.67272929877745e-05,-5.08396103203017e-06,-1.5826808617037e-05,-1.72344005440036e-05,0.000120187064765752,2.39449178926692e-05 +6.628,0.559972145859442,-0.292514454049732,9.19636699416998e-05,-3.76636345167422e-05,-6.06202339298379e-05,-9.67617344201195e-05,-5.07974911924954e-06,-1.58190543963706e-05,-1.72180134679508e-05,0.000120233919401759,2.39271043148222e-05 +6.63,0.559972070504498,-0.292514575296463,9.17700736987326e-05,-3.76737974427901e-05,-6.06518633372509e-05,-9.67961650416463e-05,-5.07542618834628e-06,-1.58102211844274e-05,-1.72019915619195e-05,0.000120280759503798,2.39088175908015e-05 +6.632,0.559971995164253,-0.292514696657185,9.15764852815332e-05,-3.76839362214956e-05,-6.06834748145756e-05,-9.68305423863672e-05,-5.07094366706701e-06,-1.58001424477676e-05,-1.71865455948365e-05,0.000120327540918757,2.38900883323547e-05 +6.634,0.559971919768753,-0.292514818030362,9.13827515291871e-05,-3.76940812174584e-05,-6.0715063907042e-05,-9.68649112240256e-05,-5.0662737914708e-06,-1.57886932728297e-05,-1.7171796975851e-05,0.00012037430693675,2.38709148708943e-05 +6.636,0.559971844387928,-0.292514939517441,9.11890256366371e-05,-3.77042013166615e-05,-6.07466295876669e-05,-9.68992295742706e-05,-5.06140962265813e-06,-1.57757661067443e-05,-1.71578168286041e-05,0.000120421013512077,2.38512754784093e-05 +6.638,0.559971768951948,-0.29251506101688,9.099515461089e-05,-3.7714326855949e-05,-6.0778166971469e-05,-9.693354249134e-05,-5.05637892457667e-06,-1.57613227990798e-05,-1.71446684920108e-05,0.000120467703931508,2.38311964010757e-05 +6.64,0.55997169353062,-0.292515182630109,9.08012914666717e-05,-3.77244268323598e-05,-6.08096748788632e-05,-9.69678082482386e-05,-5.05111924718524e-06,-1.57453702887439e-05,-1.71324352328189e-05,0.000120514334314098,2.38107292661455e-05 +6.642,0.559971618054241,-0.29251530425558,9.0607283377897e-05,-3.77345313329377e-05,-6.08411484526239e-05,-9.70020722322713e-05,-5.04567221547179e-06,-1.57280091761998e-05,-1.71210806003175e-05,0.00012056094814369,2.37899239526985e-05 +6.644,0.559971542592495,-0.292515425994703,9.04132831777427e-05,-3.77446095212217e-05,-6.0872586915568e-05,-9.70362925706399e-05,-5.04003089053849e-06,-1.57093053809259e-05,-1.71105889819605e-05,0.000120607501680276,2.37688123859472e-05 +6.646,0.559971467075802,-0.292515547745927,9.02191382076145e-05,-3.77546914564999e-05,-6.09039856741476e-05,-9.70705145881992e-05,-5.03423691412761e-06,-1.56893942248651e-05,-1.71009126944043e-05,0.000120654038475262,2.37474598101025e-05 +6.648,0.559971391573729,-0.292515669610645,9.00250011193898e-05,-3.77647464688782e-05,-6.09353444924675e-05,-9.71046962214175e-05,-5.02831804182039e-06,-1.56684248942502e-05,-1.70919728077519e-05,0.000120700514963807,2.37259152712258e-05 +6.65,0.559971316016817,-0.292515791487305,8.98307194227288e-05,-3.77748047286672e-05,-6.09666593737246e-05,-9.71388824794302e-05,-5.0222603874434e-06,-1.56466124812668e-05,-1.70836860337143e-05,0.000120746974773007,2.37042593226775e-05 +6.652,0.55997124047451,-0.292515913477283,8.96364455894721e-05,-3.77848355104279e-05,-6.09979309423925e-05,-9.71730309655523e-05,-5.01608476767441e-06,-1.56241304582486e-05,-1.7075981248608e-05,0.000120793374490637,2.368256098009e-05 +6.654,0.559971164877475,-0.292516035479029,8.94420272988666e-05,-3.77948690677379e-05,-6.10291558955576e-05,-9.72071864044246e-05,-5.00986057984149e-06,-1.56011488416354e-05,-1.70686980120869e-05,0.000120839757885541,2.36608326150229e-05 +6.656,0.559971089295034,-0.292516157593906,8.92476168438544e-05,-3.78048749527473e-05,-6.10603355377591e-05,-9.72413057576007e-05,-5.00356006837295e-06,-1.55778757982563e-05,-1.70617400470227e-05,0.000120886081463582,2.36391370649585e-05 +6.658,0.559971013657975,-0.292516279720371,8.90530620758362e-05,-3.78148833080114e-05,-6.10914673987507e-05,-9.72754333646127e-05,-4.99725261381541e-06,-1.55545472369582e-05,-1.70549737581085e-05,0.000120932389064321,2.3617548630686e-05 +6.66,0.559970938035501,-0.292516401959776,8.8858515110396e-05,-3.78248639632026e-05,-6.11225537267069e-05,-9.73095256526331e-05,-4.99097291273342e-06,-1.55312845917572e-05,-1.70483089451131e-05,0.00012097863733176,2.3596089709395e-05 +6.662,0.559970862358519,-0.292516524210586,8.86638239732257e-05,-3.78348471996623e-05,-6.11535925371177e-05,-9.73436266003931e-05,-4.98469321164974e-06,-1.5508243991151e-05,-1.70416406626674e-05,0.000121024870099225,2.35747813262142e-05 +6.664,0.559970786696112,-0.292516646574146,8.84691406039945e-05,-3.78448027360492e-05,-6.11845867026715e-05,-9.73776922152838e-05,-4.97844126824122e-06,-1.54855850331044e-05,-1.70348440160847e-05,0.000121071043958833,2.35536437081648e-05 +6.666,0.559970710979308,-0.292516768948933,8.82743132043645e-05,-3.78547609647353e-05,-6.12155348772501e-05,-9.74117659764575e-05,-4.97228647354973e-06,-1.5463456907238e-05,-1.70278227336272e-05,0.000121117202694981,2.35327193359562e-05 +6.668,0.559970635277068,-0.292516891436286,8.80794935400886e-05,-3.78646918819434e-05,-6.12464405303005e-05,-9.74458035062183e-05,-4.96618024691709e-06,-1.54419047027759e-05,-1.70205377623936e-05,0.000121163302983695,2.35119984862102e-05 +6.67,0.55997055952054,-0.292517013934695,8.78845299903397e-05,-3.78746256857229e-05,-6.12773024960612e-05,-9.74798481275071e-05,-4.96015034390993e-06,-1.54210082169843e-05,-1.70128954273019e-05,0.000121209388510087,2.34914707220046e-05 +6.672,0.559970483778565,-0.292517136545496,8.76895741475786e-05,-3.7884532483319e-05,-6.13081245631684e-05,-9.75138550879275e-05,-4.95422452851319e-06,-1.54008090968232e-05,-1.70048515145367e-05,0.000121255415850353,2.34711362432063e-05 +6.674,0.55997040798241,-0.292517259167193,8.74944745699879e-05,-3.7894442583837e-05,-6.13389057324485e-05,-9.75478675335652e-05,-4.94842361741759e-06,-1.53813316284451e-05,-1.69963695949293e-05,0.000121301428662402,2.34509880041132e-05 +6.676,0.559970332200795,-0.292517381901119,8.72993826774443e-05,-3.79043261777887e-05,-6.13696498896822e-05,-9.75818405663072e-05,-4.94266433547844e-06,-1.53625792676766e-05,-1.69874730655899e-05,0.000121347383485935,2.34310267304487e-05 +6.678,0.559970256365106,-0.292517504645793,8.71041472077227e-05,-3.79142132411789e-05,-6.14003560495192e-05,-9.76158174258276e-05,-4.9370160716326e-06,-1.53445277283686e-05,-1.69781046806227e-05,0.000121393323953246,2.34112087992999e-05 +6.68,0.559970180543942,-0.292517627502543,8.6908919407741e-05,-3.79240742420752e-05,-6.14310280005956e-05,-9.76497529850297e-05,-4.93147883429619e-06,-1.53271076352161e-05,-1.69682748700389e-05,0.000121439206463011,2.33914955490196e-05 +6.682,0.559970104668809,-0.292517750369905,8.67135481957826e-05,-3.79339391565161e-05,-6.14616644800601e-05,-9.76836905253077e-05,-4.92601099010966e-06,-1.53102842937698e-05,-1.69580382776492e-05,0.00012148507453689,2.33718944815552e-05 +6.684,0.559970028808185,-0.292517873349201,8.65181846456398e-05,-3.79437782860356e-05,-6.14922691377707e-05,-9.77175851381403e-05,-0.00104470326140149,4.02587373126528e-05,-0.000690699176678102,0.000121530884632515,0.00125303273020968 +6.686,0.559969952893696,-0.292517996338981,8.63226778552301e-05,-4.21127522021216e-05,-6.13006295308095e-05,-0.00010044648723202,-0.00298056616193431,0.000330369370752454,-0.00264152478449282,0.00012498299034734,0.00399631977623026 +6.688,0.559969860357177,-0.292518118551719,8.61163986967117e-05,-4.98660429337716e-05,-6.01707916547611e-05,-0.00010828368427611,-0.00342914842354736,0.000678668430484839,-0.00504535504867339,0.000133538394054451,0.0061380173766802 +6.69,0.559969753429524,-0.292518237022148,8.58895431181256e-05,-5.58293458963126e-05,-5.85859558088698e-05,-0.000120627907426716,-0.00237579254880603,0.000588051177193838,-0.00706454392902001,0.000145259499281105,0.00747649485701788 +6.692,0.559969637039793,-0.292518352895542,8.56338870670048e-05,-5.93692131289968e-05,-5.78185869459854e-05,-0.000136541859992194,-0.00120979997548013,9.37951452585226e-05,-0.00852902798388092,0.000159722797352521,0.00861491334023561 +6.694,0.559969515952671,-0.292518468296496,8.53433756781569e-05,-6.06685457982326e-05,-5.82107752278358e-05,-0.000154744019362236,-0.000187885595966976,-0.000475805214669287,-0.00935420672430677,0.000176110415166956,0.00936818419121573 +6.696,0.55996939436561,-0.292518585738643,8.50149109895559e-05,-6.01207555128646e-05,-5.97218078046624e-05,-0.000173958686889417,0.000626079341151562,-0.000971274876495502,-0.00957743199156739,0.000193501484012875,0.00964689347822534 +6.698,0.559969275469649,-0.292518707183727,8.46475409305991e-05,-5.8164228433626e-05,-6.20958747338182e-05,-0.000193053747328509,0.00122333035368015,-0.00130857909924951,-0.00928300535053404,0.000210970909098428,0.00945426383973239 +6.7,0.559969161708696,-0.292518834122142,8.42426960002418e-05,-5.52274340981434e-05,-6.4956124201661e-05,-0.000211090708291557,0.00161488547533996,-0.00144659691517601,-0.00857020738231779,0.000227659075539276,0.00884018960822646 +6.702,0.559969054559913,-0.292518967008224,8.3803178097433e-05,-5.17046865322669e-05,-6.78822623945216e-05,-0.000227334576857777,0.0018212847133245,-0.00137990587705999,-0.00753831216284771,0.000242821716475901,0.00787701520254163 +6.704,0.55996895488995,-0.292519105651191,8.33333576928108e-05,-4.79422952448462e-05,-7.04757477099004e-05,-0.000241243956942944,0.00186851836087266,-0.00113155476654955,-0.00627966596689746,0.000255859221936796,0.006648757907341 +6.706,0.559968862790732,-0.292519248911215,8.28382022696611e-05,-4.42306130887755e-05,-7.24084814607203e-05,-0.000252453240725369,0.00178557693630577,-0.000744277754015114,-0.00487701013776549,0.000266330572924698,0.00524666201069368 +6.708,0.559968777967498,-0.292519395285117,8.23235447299092e-05,-4.07999874996224e-05,-7.34528587259612e-05,-0.000260751997494009,0.00160253338376893,-0.000271359091451233,-0.00340290843074775,0.000273955408108876,0.00377114502381721 +6.71,0.559968699590782,-0.29251954272265,8.17951942796852e-05,-3.78204795537004e-05,-7.34939178265251e-05,-0.000266064874448359,0.00134893386044781,0.000231595520543052,-0.00192005330557017,0.000278607720722856,0.00235793633103804 +6.712,0.559968626685579,-0.292519689260789,8.12592852321159e-05,-3.54042520578317e-05,-7.25264766437891e-05,-0.000268432210716288,0.00105247339316126,0.000713178644616318,-0.000481756084662718,0.000280302341460378,0.00135956351361703 +6.714,0.559968557973774,-0.292519832828556,8.07214654368199e-05,-3.36105859810549e-05,-7.06412032480595e-05,-0.00026799189878701,0.000737966437956127,0.00113068680459724,0.000867676335280046,0.000279176483432596,0.0016049639673354 +6.716,0.559968492243236,-0.292519971825602,8.01873176369677e-05,-3.24523863060069e-05,-6.80037294253996e-05,-0.000264961505375168,0.000426622667746738,0.00145266371847836,0.00209273800023893,0.000275467355458668,0.00258298105243975 +6.718,0.559968428164229,-0.292520104843474,7.96616194153194e-05,-3.19040953100682e-05,-6.48305483741467e-05,-0.000259620946786055,0.000135612958364752,0.00165975842792254,0.0031666147273937,0.000269488232229413,0.00357779789050235 +6.72,0.559968364626854,-0.292520231147795,7.91488338498236e-05,-3.1909934472548e-05,-6.13646957137102e-05,-0.000252295046465594,-0.000122086757368555,0.00174428025842875,0.00407103252672531,0.000261604014245109,0.00443065735866864 +6.722,0.559968300524491,-0.292520350302257,7.86524392294569e-05,-3.23924423395425e-05,-5.78534273404309e-05,-0.000243336816679152,-0.000337616892777776,0.00170884638383765,0.00479595539756142,0.000252208437066047,0.00510248266094481 +6.724,0.559968235057085,-0.292520462561504,7.81754865831069e-05,-3.32604020436592e-05,-5.45293101783588e-05,-0.000233111224875347,-0.000505954354803295,0.0015644878691128,0.00533904865716321,0.000241703419867237,0.00558650630226995 +6.726,0.559968167482882,-0.292520568419497,7.77199943299556e-05,-3.44162597587554e-05,-5.15954758639804e-05,-0.000221980622050502,-0.000625486926140545,0.00132850870929482,0.00570489462789386,0.0002304820353766,0.00589083966857163 +6.728,0.559968097392046,-0.292520668943408,7.7287564094905e-05,-3.57623497482211e-05,-4.92152753411801e-05,-0.000210291646363774,-0.000697483099052642,0.00102232943638689,0.00590397421837825,0.000218914744859291,0.00603229241012422 +6.73,0.559968024433483,-0.292520765280599,7.68788277445004e-05,-3.72061921549663e-05,-4.75061581184324e-05,-0.000198364725176986,-0.000725507126599675,0.000669468949024464,0.00595148291238298,0.00020733957651251,0.00603280184664153 +6.732,0.559967948567277,-0.29252085896804,7.6494105194197e-05,-3.86643782546201e-05,-4.6537399545082e-05,-0.000186485714714239,-0.000714818294835774,0.000293770754247949,0.00586605153860414,0.000196055057304614,0.00591674125716541 +6.734,0.55996786977597,-0.292520951430197,7.61328848856435e-05,-4.00654653343091e-05,-4.63310751014407e-05,-0.000174900519022572,-0.000671789665560658,-8.2076109794908e-05,0.00566846251448879,0.000185315950708176,0.00570872184650099 +6.736,0.559967788305416,-0.292521044292341,7.57945031181068e-05,-4.13515369168625e-05,-4.68657039842616e-05,-0.000163811864656286,-0.000603374294969455,-0.000437693981750304,0.00538043406096857,0.000175330176574076,0.00543182356542635 +6.738,0.559967704369823,-0.292521138893013,7.54776374270183e-05,-4.24789625141872e-05,-4.80818510284422e-05,-0.000153378782778695,-0.00051663748279703,-0.000755857831188747,0.00502353857296168,0.000166256962745255,0.00510628780462226 +6.74,0.559967618389566,-0.292521236619745,7.51809879869919e-05,-4.34180868480508e-05,-4.98891353090169e-05,-0.000143717710364437,-0.00041837033837556,-0.00102303366126001,0.00461829800096153,0.000158205045304575,0.00474871646213888 +6.742,0.559967530697475,-0.292521338449554,7.49027665855606e-05,-4.41524438676892e-05,-5.21739856734817e-05,-0.000134905590774851,-0.000314786835484502,-0.00122964470896936,0.00418348207552424,0.00015123187991577,0.00437180044584875 +6.744,0.55996744177979,-0.292521445315688,7.46413656238926e-05,-4.46772341899887e-05,-5.48077141448938e-05,-0.000126983782062342,-0.000211309213180299,-0.00137009640091236,0.00373561649756576,0.000145343805136345,0.00398455095942483 +6.746,0.559967351988539,-0.292521557680411,7.43948314573112e-05,-4.49976807204105e-05,-5.76543712771318e-05,-0.000119963124784587,-0.000112432813062206,-0.00144259929349715,0.00328869132706899,0.000140499000372457,0.00359294092684396 +6.748,0.559967261789068,-0.292521675933173,7.41615131247542e-05,-4.51269654422376e-05,-6.0578111318883e-05,-0.000113829016754065,-2.16663284560762e-05,-0.00144882816508282,0.00285405191059831,0.000136613306951355,0.00320081002093468 +6.75,0.559967171480677,-0.292521799992856,7.3939515390295e-05,-4.50843460342348e-05,-6.34496839374624e-05,-0.000108546917142195,5.84663567584964e-05,-0.00139345694010969,0.00244044101160794,0.000133569808977077,0.00281085269801718 +6.752,0.559967081451683,-0.292521929731908,7.37273254561854e-05,-4.48931000152036e-05,-6.61519390793212e-05,-0.000104067252707634,0.000126371961508807,-0.00128360853196182,0.00205416384336938,0.000131230570215342,0.00242553289637285 +6.754,0.559966991908277,-0.292522064600612,7.35232463794644e-05,-4.45788581881995e-05,-6.85841180653103e-05,-0.000100330261768716,0.000181295992105208,-0.00112825563822561,0.00169933898375973,0.000129449670817423,0.00204782372377772 +6.756,0.559966903136251,-0.292522204068381,7.33260044091105e-05,-4.41679160467827e-05,-7.06649616322241e-05,-9.72698967725945e-05,0.000223203670821421,-0.000937607852473226,0.00137820664255523,0.000128085028120193,0.00168177938900171 +6.758,0.559966815236613,-0.292522347260459,7.31341667923741e-05,-4.36860435049139e-05,-7.23345494752028e-05,-9.48174351984958e-05,0.0002526461678778,-0.000722512737135159,0.0010914622660589,0.000127008281078498,0.00133309587790837 +6.76,0.559966728392077,-0.292522493406579,7.29467346683166e-05,-4.31573313752716e-05,-7.35550125807645e-05,-9.29040477083594e-05,0.000270621886013933,-0.000493899032778835,0.000838594108222093,0.00012611128897838,0.00101015470998972 +6.762,0.559966642607287,-0.292522641480509,7.27625506015406e-05,-4.26035559608581e-05,-7.43101456063183e-05,-9.14630587656071e-05,0.000278440756560185,-0.000262279389183412,0.000618202319191801,0.000125309823395068,0.000726975818276202 +6.764,0.559966557977853,-0.292522790647161,7.25808824332541e-05,-4.20435683490307e-05,-7.46041301374982e-05,-9.04312384315919e-05,0.000277599339346596,-3.7330683687302e-05,0.000428287326605674,0.000124544155853913,0.000511747014921692 +6.766,0.559966474433014,-0.29252293989703,7.24008256478142e-05,-4.14931586034718e-05,-7.44594683410675e-05,-8.97499094591846e-05,0.000269669883648074,0.00017244160266797,0.000266496498485005,0.000123777788332395,0.000416507306277131 +6.768,0.559966392005218,-0.292523088485034,7.22218827954174e-05,-4.09648888144386e-05,-7.39143637268264e-05,-8.9365252437652e-05,0.000256208734785737,0.000359947703591657,0.000130324996459275,0.000122994323543675,0.00046064071661494 +6.77,0.559966310573458,-0.292523235554485,7.20433646380636e-05,-4.04683236643288e-05,-7.30196775267007e-05,-8.92286094733474e-05,0.000238682976159089,0.000519669033495544,1.72689562253142e-05,0.000122193712092118,0.000572122088658938 +6.772,0.559966230131924,-0.292523380563744,7.1864968357524e-05,-4.00101569098021e-05,-7.1835687592844e-05,-8.92961766127508e-05,0.000218417971207274,0.000647727153159615,-7.50668537796465e-05,0.000121387749898988,0.00068767136600482 +6.774,0.559966150532831,-0.292523522897235,7.16861799316126e-05,-3.95946517794998e-05,-7.04287689140626e-05,-8.9528876888466e-05,0.000196562946477297,0.000741875061387001,-0.000148902044335469,0.000120595886070796,0.000781784764141055 +6.776,0.559966071753317,-0.29252366227882,7.15068528499702e-05,-3.9223905123893e-05,-6.88681873472963e-05,-8.98917847900926e-05,0.000174074039906929,0.00080142019063074,-0.000206249238169344,0.000119841040275937,0.000845644630779127 +6.778,0.55996599363721,-0.292523798369984,7.13266127924522e-05,-3.8898355619872e-05,-6.72230881515392e-05,-9.03538738411435e-05,0.000151711115890005,0.000827091103934922,-0.000248910139900299,0.000119146330907254,0.000876956221620022 +6.78,0.559965916159894,-0.292523931171173,7.11454373546055e-05,-3.86170606603329e-05,-6.55598229315563e-05,-9.08874253496939e-05,0.000130047056454786,0.000820860206192987,-0.000278492992560965,0.00011853223968,0.000876517006058245 +6.782,0.559965839168968,-0.292524060609276,7.09630630910535e-05,-3.83781673940529e-05,-6.39396473267677e-05,-9.14678458113872e-05,0.000109485046031401,0.000785735806283801,-0.00029644285723574,0.000118014952655047,0.000846903831722966 +6.784,0.559965762647225,-0.292524186929762,7.077956597136e-05,-3.81791204762074e-05,-6.24168797064214e-05,-9.20731967786367e-05,9.02821775693466e-05,0.000725535995869166,-0.000304079588760572,0.000117605211099084,0.000791844523368903 +6.786,0.559965686452486,-0.292524310276795,7.05947703039389e-05,-3.80170386837754e-05,-6.10375033432907e-05,-9.26841641664296e-05,7.25760354570614e-05,0.000644655301359352,-0.00030263625286864,0.00011730825346878,0.000715846659588318 +6.788,0.55996561057907,-0.292524431079775,7.04088293146943e-05,-3.78888163343791e-05,-5.98382585009837e-05,-9.32837417901114e-05,5.64120625191738e-05,0.000547835648370196,-0.00029329513384462,0.000117124020021578,0.000623961740782072 +6.79,0.55996553489722,-0.292524549629829,7.02216353367785e-05,-3.77913904336988e-05,-5.88461607498101e-05,-9.3857344701808e-05,4.1769906979788e-05,0.000439949163908428,-0.000277216202245286,0.000117048113954812,0.000521678842526822 +6.792,0.559965459413508,-0.292524666464418,7.00333999358871e-05,-3.77217367064599e-05,-5.80784618453502e-05,-9.43926065990924e-05,2.8587333891087e-05,0.000325801361586859,-0.000255557307949079,0.000117072632715953,0.000415058189314501 +6.794,0.559965384010274,-0.292524781943676,6.98440649103821e-05,-3.76770410981344e-05,-5.75429553034625e-05,-9.48795739336044e-05,1.67804312091334e-05,0.000209958495031133,-0.000229484002118829,0.00011718739130465,0.00031149166880637 +6.796,0.559965308705344,-0.29252489663624,6.96538816401526e-05,-3.76546149816234e-05,-5.72386278652256e-05,-9.53105426075678e-05,6.25950679968588e-06,9.6604359925026e-05,-0.000200169813021937,0.000117380705746119,0.000222350034466237 +6.798,0.559965233391814,-0.292525010898188,6.94628227399519e-05,-3.76520030709357e-05,-5.71565378637625e-05,-9.56802531856921e-05,-3.05898361987175e-06,-1.05728967216151e-05,-0.000168786920199095,0.000117640358744368,0.000169145404774024 +6.8,0.559965158097331,-0.292525125262391,6.92711606274099e-05,-3.76668509161029e-05,-5.7280919452112e-05,-9.59856902883641e-05,-1.12454212587592e-05,-0.000108462065714488,-0.00013648962515232,0.000117954008542945,0.000174699447545096 +6.802,0.55996508272441,-0.292525240021866,6.90788799787984e-05,-3.76969847559707e-05,-5.75903861266205e-05,-9.62262116863014e-05,-0.277871915484175,0.295366436885155,-0.235718500976941,0.000118309758893348,0.46906006561622 +6.804,0.559965007309392,-0.292525355623936,6.88862557806647e-05,-0.00114915451285293,0.00112418482808864,-0.00103885969419623,-0.189885051030169,0.216332023947374,-0.522092144066131,0.00191404730514698,0.596184605709899 +6.806,0.559960486106359,-0.292520743282553,6.49234412020139e-05,-0.000797237188876564,0.000807737709662782,-0.0021845947879506,0.503978859242645,-0.537686200462939,-0.240962179641768,0.00246180456788917,0.775347607689288 +6.808,0.559961818360637,-0.292522124673097,6.01478766288632e-05,0.00086676092411743,-0.00102655997376288,-0.0020027084127632,0.442478512642453,-0.541157598926624,0.254267811065802,0.00241162618700773,0.743835264538124 +6.81,0.559963953150055,-0.292524849522448,5.69126075509602e-05,0.000972676861693447,-0.00135689268604396,-0.00116752354368727,-0.0336500350292053,-0.0497402358884971,0.415447148020025,0.00203724550895995,0.419765111367873 +6.812,0.559965709068084,-0.292527552243841,5.54777824541136e-05,0.000732160784000594,-0.00122552091731689,-0.000340919820682915,-0.130879399214109,0.107649331421104,0.369871003609595,0.00146771497796543,0.406844386719574 +6.814,0.559966881793191,-0.292529751606118,5.55489282682287e-05,0.000449159264837067,-0.000926295360359588,0.000311960470750945,-0.133716560331328,0.164330195420099,0.277782680624239,0.00107567954109197,0.349353330152208 +6.816,0.559967505705143,-0.292531257425283,5.67256243371173e-05,0.000197294542675342,-0.000568200135636568,0.00077021090181392,-0.391001145537355,0.474323468120597,-0.0490982258252789,0.000977241712157181,0.616664644681909 +6.818,0.559967670971362,-0.29253202440666,5.86297718754847e-05,-0.00111484531731253,0.000970998512123014,0.000115567567449807,-0.278956047775047,0.384504635485251,-0.413746199290138,0.00148292752848042,0.629957307066879 +6.82,0.559963046323874,-0.292527373431234,5.71878946069165e-05,-0.000918529648424972,0.000969818406304608,-0.000884773895346816,0.436497236820689,-0.396900269053513,-0.197230046877809,0.00160220763390083,0.622060569975521 +6.822,0.559963996852768,-0.292528145133035,5.50906762940978e-05,0.000631143629970035,-0.000616602564090864,-0.000673352620061342,0.396663034245343,-0.437040187258789,0.247900779270761,0.0011099300674541,0.640156609259773 +6.824,0.559965570898394,-0.29252983984149,5.44944841266715e-05,0.000668122488556225,-0.000778342342730355,0.00010682922173612,-0.0587505587859801,0.0142788662317905,0.373027797477508,0.0010313180619083,0.377895821450107 +6.826,0.559966669342722,-0.292531258502406,5.55179931810423e-05,0.000396141394826088,-0.000559487099163695,0.000818758569848857,-0.13903577202042,0.133128386623589,0.302462085646429,0.00106785739428367,0.35852116601381 +6.828,0.559967155463973,-0.292532077789887,5.77695184060673e-05,0.000111979400474484,-0.000245828796235941,0.00131667756432197,-0.128381001128503,0.156643205503907,0.194027297039085,0.00134410229952124,0.280473469828412 +6.83,0.559967117260324,-0.292532241817591,6.07847034383296e-05,-0.000117382609687868,6.70857228518636e-05,0.00159486775800511,-0.0984535384746026,0.145135166985263,0.0923665314120667,0.00160058812215758,0.198214257961193 +6.832,0.559966685933534,-0.292531809446996,6.4148989438087e-05,-0.000281834753423884,0.000334711871705047,0.0016861436899702,-0.0670871423691162,0.116413478686681,0.00929815943241613,0.00174199408969265,0.134681990110107 +6.834,0.559965989921311,-0.292530902970104,6.75292781982112e-05,-0.000385731179164363,0.000532739637598641,0.00163206039573478,-0.0388716673086087,0.0789451284726091,-0.0533466070214948,0.00175960825167826,0.102903840111114 +6.836,0.559965143008818,-0.292529678488445,7.06772310210269e-05,-0.000437321422658336,0.000650492385595519,0.0014727572618842,-0.0150423554029747,0.0389076877730203,-0.0971940868820314,0.00166835377629156,0.105767533528697 +6.838,0.55996424063562,-0.292528301000562,7.34203072457473e-05,-0.000445900600776255,0.000688370388690705,0.0012432840482067,-0.271390230711907,0.296974611187181,-0.358226930409223,0.00148944162769947,0.538677185971388 +6.84,0.559963359406414,-0.292526925006891,7.56503672138531e-05,-0.00152288234550585,0.00183839083034411,3.98495402474619e-05,-0.169101737099102,0.186250138003222,-0.656920080524632,0.00238755931218569,0.703440476225702 +6.842,0.559958149106238,-0.29252094743724,7.35797054067372e-05,-0.00112230754917274,0.00143337094070368,-0.00138439627389213,0.52921151472837,-0.591682783951977,-0.383433532994724,0.00228706788962424,0.881575078124986 +6.844,0.559958870176218,-0.292521191523128,7.0112782118284e-05,0.000593963713407873,-0.000528340305464062,-0.00149388459173161,0.473353304386623,-0.610166599548295,0.111000595354998,0.00169222561871526,0.780184441108144 +6.846,0.559960524961091,-0.292523060798462,6.76041670398114e-05,0.000771105668373547,-0.00100729545748923,-0.000940393892472184,0.00354384770137084,-0.125954233216844,0.280585224085492,0.00157911011759004,0.30757941364285 +6.848,0.559961954598891,-0.292525220704958,6.63512065483957e-05,0.000608139104213355,-0.00103215723833138,-0.000371543695389762,-0.0925352381248244,0.0311969817271486,0.249134575979606,0.00125428324245251,0.267589347531324 +6.85,0.559962957517508,-0.292527189427415,6.61179922582522e-05,0.000400964715874208,-0.000882507530580624,5.61444114463509e-05,-0.0975118400053592,0.0939057329777651,0.174612138885921,0.000970950276710529,0.220943985375566 +6.852,0.559963558457755,-0.29252875073508,6.65757841941811e-05,0.000218091744191875,-0.000656534306420281,0.000326904860154001,-0.0820887053748456,0.118719395134059,0.101945230144796,0.000765158867153561,0.176707895353859 +6.854,0.559963829884485,-0.292529815564641,6.74256116988681e-05,7.26098943748612e-05,-0.000407629950044442,0.00046392533202549,-0.0634997126755641,0.120981461355954,0.0430713370099837,0.000621820783368748,0.143261535568795 +6.856,0.559963848897332,-0.29253038125488,6.84314855222828e-05,-3.59071065103538e-05,-0.000172608460996518,0.000499190208193917,-0.0459626053467214,0.107861342638764,-0.000181770261194939,0.000529408977126586,0.117246165679408 +6.858,0.559963686256059,-0.292530505998485,6.9422372531644e-05,-0.000111240527012045,2.38154205106618e-05,0.00046319825098071,-0.0305261287636435,0.0851697983181201,-0.0294636818510482,0.000476963571790977,0.0951517085031246 +6.86,0.559963403935224,-0.292530285993198,7.02842785262059e-05,-0.000158011621564941,0.000168070732276001,0.000381335480789711,-0.291509607688937,0.354029488388526,-0.279270217371682,0.000445681716594357,0.53694188171014 +6.862,0.559963054209573,-0.292529833715556,7.09477144548026e-05,-0.00127727895776767,0.00143993337406461,-0.000653882618505896,-0.193208786913859,0.248076027480744,-0.571351035004462,0.002032833524046,0.652160529280959 +6.864,0.559958294819393,-0.292524526259702,6.76687480521826e-05,-0.000930846769220291,0.00116037484219887,-0.00190406865922788,0.225980190164697,-0.234200830746156,-0.530457596515534,0.00241628287690613,0.622336193042072 +6.866,0.559959330822496,-0.292525192216187,6.33314398178902e-05,-0.000373358197108778,0.00050313005107988,-0.00277571300456827,0.257321762051014,-0.335458888688013,-0.323758809800679,0.0028455436871321,0.532510020702322 +6.868,0.559956801386605,-0.292522513739498,5.65658960339083e-05,9.84402789838798e-05,-0.000181460712553336,-0.00319910389843075,0.475192998991653,-0.612392243193423,0.114672686089705,0.00320575798083411,0.783570335546964 +6.87,0.559959724583612,-0.292525918059037,5.05350242241687e-05,0.00152741379885763,-0.00194643892169354,-0.0023170222602095,0.320063559072764,-0.467511648484509,0.562639626234925,0.00338972116008538,0.798480539728304 +6.872,0.5599629110418,-0.292530299495184,4.72978069930713e-05,0.00137869451527479,-0.00205150730649117,-0.000948545393491295,-0.151253323539597,0.0761594893227768,0.637522310477353,0.00264749299499526,0.659630602725543 +6.874,0.559965239361673,-0.292534124088263,4.67408426502031e-05,0.000922400504699169,-0.0016418009644024,0.000233066981700199,-0.500060648236856,0.54330960065271,0.278072689411985,0.00189753875210515,0.789031301453425 +6.876,0.559966600643819,-0.292536866699042,4.82300749198722e-05,-0.000621548077672853,0.000121731096119917,0.000163745364156771,-0.392203280727456,0.513712954560591,-0.164351208310267,0.000654181180487645,0.666885097126781 +6.878,0.559962753169362,-0.292533637163879,4.73958241068301e-05,-0.000646412618210484,0.000413050853839737,-0.000424337851540798,0.331344942559909,-0.247476940776904,-0.0345699284936156,0.000876654374933319,0.415005285668 +6.88,0.559964014993346,-0.292535214495627,4.65327235137092e-05,0.000703831692566636,-0.000868176666987588,2.54656501823241e-05,0.311716701908959,-0.290983446438838,0.334877157200393,0.00111792588122026,0.542200496832159 +6.882,0.559965568496133,-0.292537109870547,4.74976867075594e-05,0.000600454189425492,-0.000750882931915747,0.000915170777260924,-0.117487828438195,0.139892170344193,0.404704631763384,0.00132736881182035,0.444025954337658 +6.884,0.559966416810104,-0.292538218027354,5.01934066227533e-05,0.000233880378813804,-0.000308607985610754,0.00164428417723604,-0.177113236882193,0.227980116764012,0.294964950074463,0.00168926296824551,0.412732787758679 +6.886,0.559966504017648,-0.292538344302489,5.40748234165028e-05,-0.000107998758103201,0.000161037535140203,0.00209503057755865,-0.149677206372225,0.217389936805357,0.159698031781166,0.00210398430136291,0.308488431041439 +6.888,0.559965984815071,-0.292537573877214,5.8573528932987e-05,-0.000364828446675029,0.000560951761610577,0.00228307630436064,-0.106084001499888,0.172890438441356,0.0405575224054831,0.0023791183421365,0.206857032035035 +6.89,0.559965044703861,-0.292536100495443,6.32071286339464e-05,-0.0005323347641028,0.000852599288905702,0.0022572606671806,-0.0638762024316099,0.115419069451231,-0.0530074157240165,0.00247093738652267,0.142167214757168 +6.892,0.559963855476015,-0.292534163480058,6.76025716017103e-05,-0.000620333256401497,0.00102262803941555,0.00207104664146455,-0.0274709607006952,0.0552955781164028,-0.120921264000906,0.00239161360740362,0.13577262879028 +6.894,0.559962563370835,-0.292532009983285,7.14913151998037e-05,-0.000642218606905569,0.00107378160137129,0.00177357561117703,0.00207258067656093,-0.000586216228394423,-0.166028725124185,0.00217048891152689,0.166042695733626 +6.896,0.559961286601587,-0.292529868353653,7.46968740464177e-05,-0.000612042933695254,0.00102028317450198,0.00140693174096788,0.024689677184694,-0.0474995380494104,-0.191959556019847,0.00184256105261156,0.199284363214298 +6.898,0.559960115199101,-0.292527928850587,7.71190421636758e-05,-0.000543459898166782,0.000883783449173626,0.00100573738709755,0.0407193504122986,-0.0826866172857475,-0.202307222394509,0.00144496696770359,0.222313639728067 +6.9,0.559959112761995,-0.292526333219856,7.87198235948083e-05,-0.000449165532046041,0.000689536705358949,0.000597702851389752,0.0507325075421537,-0.105166826375848,-0.200310910307584,0.00101708369457725,0.231858382379709 +6.902,0.559958318536973,-0.292525170703766,7.95098535692346e-05,-0.000340529867998189,0.000463116143670279,0.000204493745867307,0.0554552780710175,-0.115407782261306,-0.18877524168504,0.000610126909442402,0.228101591282595 +6.904,0.559957750642523,-0.292524480755281,7.95377985782775e-05,-0.000227344419761996,0.000227905576313777,-0.000157398115350326,0.0557146641599957,-0.114916029494289,-0.170106272580844,0.000358330299622664,0.212710981400918 +6.906,0.559957409159293,-0.29252425908146,7.88802611078332e-05,-0.000117671211358181,3.45202569307329e-06,-0.000475931344456145,0.0523912095651153,-0.105823087563615,-0.146389188706792,0.000490274489546133,0.18807753526518 +6.908,0.559957279957677,-0.292524466947178,7.76340732004527e-05,-1.77795815015111e-05,-0.00019538677394073,-0.000742954870177558,0.0463747999307521,-0.0905221587167912,-0.119459298647592,0.000768423089235277,0.156892980469937 +6.91,0.559957338040967,-0.292525040628556,7.59084416271233e-05,6.78279883648067e-05,-0.000358636609174052,-0.000953768539046462,0.0385242171496798,-0.0713826722488644,-0.0909479709009154,0.00102122244370181,0.121865231363906 +6.912,0.559957551269631,-0.292525901493615,7.38189990442673e-05,0.000136317287097191,-0.000480917462936156,-0.00110674675378118,0.0296328751606085,-0.0505502615044473,-0.0623013952805337,0.00121439383476847,0.0855271891409598 +6.914,0.559957883310116,-0.292526964298408,7.14814546119991e-05,0.000186359489007228,-0.000560837655191819,-0.00120297412016857,0.0204020993918464,-0.0298258406652651,-0.0347777532526754,0.00134030424472186,0.050152951581024 +6.916,0.559958296707587,-0.292528144844236,6.90071025635924e-05,0.000217925684664586,-0.00060022082559723,-0.0012458577667919,0.011422620252454,-0.0106105400993517,-0.00943092353176704,0.00139997079204991,0.0182209256980473 +6.918,0.559958755012855,-0.29252936518171,6.64980235448309e-05,0.000232049970017049,-0.00060327981558923,-0.00124069781429564,0.00316382870597823,0.00610016418972202,0.0129091656998789,0.0013989727627371,0.014624239272156 +6.92,0.559959224907467,-0.292530557963498,6.40443113064104e-05,0.000230580999488498,-0.000575820168838345,-0.00119422110399239,-0.00402903425901391,0.0196887239220846,0.0316507384893674,0.00134569703476932,0.0374919753235635 +6.922,0.559959677336852,-0.292531668462386,6.17211391288619e-05,0.000215933832980995,-0.000524524919900901,-0.00111409486033819,-0.00993106540060299,0.0298676859182809,0.0464438618458453,0.0012501844542526,0.0561046969982023 +6.924,0.559960088642799,-0.292532656063178,5.95879318650572e-05,0.000190856737886081,-0.000456349425165208,-0.00100844565660898,-0.0144281377678514,0.0366219388633612,0.0571714831968597,0.0011232291549718,0.0694112098762778 +6.926,0.559960440763804,-0.292533493860086,5.76873565024255e-05,0.000158221281909583,-0.00037803716444744,-0.000885408927550721,-0.0175033912086441,0.0401485487390276,0.0639282846433551,0.000975651085552151,0.0774925818842987 +6.928,0.559960721527926,-0.292534168211836,5.60462961548547e-05,0.000120843173051512,-0.000295755230209115,-0.000752732518035592,-0.0192208093677347,0.0407989495625414,0.0669891189724954,0.000817728850155972,0.080756026764996 +6.93,0.559960924136496,-0.292534676881007,5.46764264302835e-05,8.13380444386522e-05,-0.000214841366197292,-0.000617452451660769,-0.0197074678798282,0.0390263544848634,0.0667704442994859,0.000658802110018264,0.0798106062285172 +6.932,0.559961046880104,-0.2925350275773,5.35764863482113e-05,4.20133015321908e-05,-0.000139649812269644,-0.000485650740837619,-0.0191354906017803,0.0353398202437729,0.0637882384022656,0.00050707379112779,0.0753923686714861 +6.934,0.559961092189702,-0.292535235480256,5.27338234669328e-05,4.79608203152235e-06,-7.34820852221843e-05,-0.000362299498051678,-0.0177048426960884,0.0302655155520737,0.0586159515742824,0.000369707378260093,0.0683029477071427 +6.936,0.559961066064432,-0.292535321505641,5.21272883560048e-05,-2.88060692521551e-05,-1.85877500613628e-05,-0.000251186934540515,-0.0156276787274814,0.024315251201394,0.0518452314222434,0.00025351562113993,0.0593580980542861 +6.938,0.559960976965425,-0.292535309831257,5.17290757287708e-05,-5.77146328783964e-05,2.37789195833811e-05,-0.000154918572362727,-0.0131148015433634,0.0179619480400431,0.0440516842240043,0.000167021495406269,0.0493475478609262 +6.94,0.559960835205901,-0.292535226389963,5.15076140665538e-05,-8.12652754256147e-05,5.32600420988179e-05,-7.4980197644478e-05,-0.0103646231389175,0.0116216617232503,0.0357670427155853,0.000122730220863379,0.0390098677085677 +6.942,0.559960651904324,-0.292535096791088,5.14291549381929e-05,-9.91731254340709e-05,7.02655664763873e-05,-1.18504015003697e-05,-0.00755470491026817,0.00564159137115137,0.0274584315979062,0.0001221187563658,0.0290321646677814 +6.944,0.559960438513399,-0.292534945327697,5.14602124605523e-05,-0.000111484095066684,7.58264075834209e-05,3.48535287471346e-05,-0.00483595069544211,0.000293541847075625,0.0195147667270488,0.000139259168480829,0.0201071804675808 +6.946,0.559960205967943,-0.292534793485458,5.15685690531814e-05,-0.000118516928215837,7.14397338646897e-05,6.62086654078168e-05,-0.0023291909581546,-0.00422785148557529,0.0122398150078801,0.000153406275045905,0.0131572386970351 +6.948,0.559959964445686,-0.292534659568762,5.17250471221836e-05,-0.000120800858899303,5.89150016411178e-05,8.38127887786606e-05,-0.000124013951892017,-0.00780279452161238,0.00585116613841341,0.000158393208478264,0.00975372374973188 +6.95,0.559959722764508,-0.292534557825451,5.19038202082961e-05,-0.000119012984023405,4.02285557782367e-05,8.96133299614731e-05,-0.266473064267146,0.286014890899727,-0.225135315334902,0.000154314535844624,0.451107882891943 +6.952,0.55995948839375,-0.292534498654539,5.20835004420295e-05,-0.00118669311596777,0.0012029745652399,-0.000816728472560847,-0.178126115121795,0.205837020598313,-0.505546638239489,0.00187681478947471,0.57417348891465 +6.954,0.559954975992044,-0.29252974592719,4.86369063180531e-05,-0.000831517444510506,0.000863576638171396,-0.00193257322299626,0.493134075997503,-0.548841827159529,-0.240625210737559,0.00227420868276481,0.776085729924353 +6.956,0.559956162323972,-0.292531044347986,4.43532075500436e-05,0.000785843188022462,-0.000992392743398463,-0.00177922931551119,0.430035844427254,-0.55127690244678,0.235075779404684,0.00218358646050154,0.737629766702984 +6.958,0.559958119364796,-0.292533715498164,4.15199890560075e-05,0.000888625933198704,-0.00134153097161597,-0.000992270105377417,-0.0309892686997291,-0.0605925269404191,0.390876115780024,0.00189049235888005,0.396756760475292 +6.96,0.559959716827705,-0.292536410471872,4.03841271285343e-05,0.000661886113223559,-0.00123476285116011,-0.000215724852391265,-0.122768194416083,0.095157437839185,0.346009781397128,0.00141748712072543,0.379275277811238 +6.962,0.559960766909249,-0.292538654549569,4.06570896464425e-05,0.000397553155534425,-0.000960901220259273,0.000391769020210942,-0.124330378825652,0.152449872985911,0.256809010556979,0.00111124373193651,0.323496328844092 +6.964,0.559961307040327,-0.292540254076753,4.19512032093783e-05,0.000164564597920895,-0.000624963359216398,0.000811511189836765,-0.10503921502728,0.168935261043947,0.168207567408638,0.00103740595645205,0.260511314247703 +6.966,0.559961425167641,-0.292541154403005,4.390313440579e-05,-2.26037045747443e-05,-0.000285160176083408,0.00106459928984557,-0.0819627271539481,0.161005353917221,0.0926944538392651,0.00110236060407841,0.203058795438863 +6.968,0.559961216625509,-0.292541394717458,4.62096003687601e-05,-0.000163286310694861,1.90580564524166e-05,0.00118228900519378,-0.0595464827723977,0.136877050221933,0.0327967914926055,0.00119366365471107,0.152829120328001 +6.97,0.559960772022398,-0.29254107817078,4.86322904265646e-05,-0.000260789635664309,0.000262348024804264,0.00119578645581598,-0.039148805058824,0.103272557557658,-0.0124463165573147,0.00125169603662453,0.111142974937143 +6.972,0.559960173466966,-0.292540345325358,5.09927461920245e-05,-0.000319881530930175,0.000432148286683094,0.00113250373896452,-0.0213076936234213,0.0661083530417861,-0.0451882839193717,0.00125365108953089,0.0828632195429598 +6.974,0.559959492496274,-0.292539349577633,5.31623053824232e-05,-0.000346020410158004,0.000526781436971438,0.00101503332013847,-0.00627816341971203,0.0301615821277386,-0.0677728260455944,0.0011947892900319,0.0744465736120832 +6.976,0.559958789385325,-0.292538238199611,5.5052879472578e-05,-0.00034499418460902,0.000552794615194035,0.000861412434782172,0.00583937799505084,-0.00118206507779421,-0.0822777928783734,0.00108010844677695,0.0824932167766159 +6.978,0.559958112519536,-0.292537138399172,5.66079551215515e-05,-0.000322662898177803,0.000522053176660261,0.000685922148625013,0.0150640327156884,-0.0259359881349646,-0.0903572781648791,0.000920402118150498,0.095205242920554 +6.98,0.559957498733733,-0.292536149986904,5.77965680670783e-05,-0.00028473805374626,0.000449050662654165,0.000499983322122615,0.0215189851215756,-0.0433325930103133,-0.0932560563978896,0.000729866822976713,0.105059375557569 +6.982,0.559956973567321,-0.292535342196521,5.86078884100422e-05,-0.000236586957691491,0.000348722804618989,0.000312897923033413,0.0254181827877185,-0.0535449450576743,-0.0919077061825862,0.000524867691184809,0.109362569525427 +6.984,0.559956552385902,-0.292534755095685,5.90481597592118e-05,-0.000183065322595397,0.000234870882423492,0.000132352497392311,0.0270497364576869,-0.0573852567340076,-0.0870519426647737,0.000325874864500667,0.107716278503155 +6.986,0.55995624130603,-0.292534402712992,5.91372983996113e-05,-0.000128388011860755,0.000119181777682984,-3.53098476256435e-05,0.0267560526096042,-0.056028947998527,-0.0793357004466484,0.000178702442794103,0.100743648586052 +6.988,0.559956038833854,-0.292534278368575,5.89069203687093e-05,-7.60411121569686e-05,1.07550904293584e-05,-0.000184990304394318,0.0249122057704926,-0.0507905925581297,-0.0693818959758929,0.000200298116386837,0.089521783818057 +6.99,0.559955937141582,-0.29253435969263,5.8397337182034e-05,-2.87391887787734e-05,-8.39805925495577e-05,-0.000312837431529246,0.0219045985586092,-0.042960414520935,-0.0578229414653514,0.000325186007482568,0.075292105917751 +6.992,0.559955923877099,-0.292534614290945,5.76555706425924e-05,1.15772820774586e-05,-0.000161086567654363,-0.000416282070255698,0.0181110998906402,-0.0336985204116244,-0.0453031791056677,0.000446512796855067,0.0592957018194542 +6.994,0.55995598345071,-0.292535004038901,5.67322089010114e-05,4.37052107837794e-05,-0.000218774674196041,-0.000494050147951897,0.0138838028851358,-0.023977213065698,-0.0324599925896314,0.000542086757088318,0.0426769006357082 +6.996,0.559956098697942,-0.292535489389642,5.56793700507846e-05,6.71124936180081e-05,-0.000256995419917165,-0.000546122040614239,0.0095354753815193,-0.0145595978017065,-0.0198942026489939,0.000607289071120737,0.0264326782210629 +6.998,0.559956251900684,-0.29253603202058,5.45477207385542e-05,8.18471123098609e-05,-0.000277013065402873,-0.000573626958547881,0.00533000135694507,-0.00600290211984383,-0.00813871064122166,0.000642248453303122,0.0114316385189087 +7,0.559956426086392,-0.292536597441903,5.33848622165933e-05,8.84324990457861e-05,-0.000281007028396538,-0.000578676883179122,0.0014769860334728,0.00132311384766643,0.00236822067948831,0.00064934751252441,0.00308878409470724 +7.002,0.559956605630681,-0.292537156048694,5.2233013205838e-05,8.77550564437514e-05,-0.000271720610012208,-0.000564154075829929,-0.00186999894736144,0.00721015133710324,0.0113011459982067,0.000632299660851067,0.0135351054388153 +7.004,0.559956777106617,-0.292537684324343,5.11282459132734e-05,8.09525032563395e-05,-0.000252166423048122,-0.00053347229918629,-0.00461177181165296,0.0115827690806551,0.0184553233511067,0.00059559542199001,0.0222716846873433 +7.006,0.559956929440694,-0.292538164714386,5.00991240090926e-05,6.93079691971375e-05,-0.000225389533689582,-0.000490332782425494,-0.00669932392893511,0.0144703354333534,0.02374472045372,0.000544086642008573,0.0286021554796815 +7.008,0.559957054338494,-0.292538585882478,4.91669147835716e-05,5.4155207540602e-05,-0.000194285081314715,-0.00043849341737142,-0.00812756408702759,0.0159811273138646,0.0271916506351591,0.0004826551112371,0.0325705325789315 +7.01,0.559957146061524,-0.292538941854711,4.83451503396071e-05,3.67977128490308e-05,-0.000161465024434131,-0.00038156617988487,-0.0089278647114065,0.01627930356838,0.0289103458933111,0.000415954054455978,0.0343588502812235 +7.012,0.559957201529346,-0.292539231742576,4.7640650064032e-05,1.84437486949719e-05,-0.000129167867041188,-0.000322852033798163,-0.00915992939831483,0.0155648781953365,0.0290867537659566,0.00034822111577201,0.0342375376518108 +7.014,0.559957219836519,-0.29253945852618,4.70537422044143e-05,1.57995255767335e-07,-9.92055116527777e-05,-0.00026521916482103,-0.00890361376293485,0.0140565793831053,0.0279568935466927,0.000283165965280355,0.0325338233039736 +7.016,0.559957202161327,-0.292539628564622,4.65797734047479e-05,-1.71707063567635e-05,-7.29415495087729e-05,-0.000211024459611404,-0.00825111602653638,0.0119774138177042,0.0257856179533702,0.000223934421998531,0.0296046862959408 +7.018,0.559957151153693,-0.292539750292378,4.62096443659687e-05,-3.28464688503746e-05,-5.12958563819664e-05,-0.000162076693007561,-0.00729990813630196,0.00954275596390577,0.0228472689422079,0.00017314447670707,0.0258137666430663 +7.02,0.559957070775451,-0.292539833748048,4.59314666327176e-05,-4.63703389019746e-05,-3.47705256531455e-05,-0.000119635383842562,-0.00614665351950276,0.00695086330853847,0.0194091505376338,0.000132935408568362,0.0215130419702871 +7.022,0.559956965672338,-0.29253988937448,4.57311028305984e-05,-5.74330829283883e-05,-2.34924031478094e-05,-8.44400908570168e-05,-0.00488223574069223,0.00437570275846247,0.015718375230737,0.000104788267302497,0.0170308637582583 +7.024,0.559956841043119,-0.292539927717661,4.55937062692896e-05,-6.58992818647414e-05,-1.72677146192976e-05,-5.67618829196211e-05,-0.00358799249338917,0.00196202718308466,0.0119922501122227,8.86724346741585e-05,0.0126703316276207 +7.026,0.55995670207521,-0.292539958445339,4.550405529892e-05,-7.17850529019434e-05,-1.56442944154716e-05,-3.64710904081315e-05,-0.00233309831176446,-0.000177435035413455,0.00841209028736844,8.20242537512587e-05,0.00873144283191437 +7.028,0.559956553902908,-0.292539990294838,4.54478219076571e-05,-7.52316751118003e-05,-1.79774547609515e-05,-2.31135217701436e-05,-0.00117306900998935,-0.00196281650308248,0.0051201608309064,8.07293546885421e-05,0.00560756510985994 +7.03,0.55995640114851,-0.292540030355158,4.54116012118394e-05,-7.64773289419014e-05,-2.34955604278024e-05,-1.59904470845036e-05,-0.000149223133853782,-0.00334620874759169,0.00221929151011161,8.15874843334847e-05,0.00401803874209667 +7.032,0.559956247993592,-0.29254008427708,4.53838601193191e-05,-7.58285676472154e-05,-3.13622897513167e-05,-1.42363557296981e-05,0.000711000758273152,-0.00430928118188991,-0.000225312236748987,8.32840843999403e-05,0.00437335020172 +7.034,0.559956097834239,-0.292540155804317,4.53546557889206e-05,-7.36333259088091e-05,-4.07326851553601e-05,-1.68916960314994e-05,0.00139307629321407,-0.00485974218158708,-0.00218261283265475,8.58274298763464e-05,0.0055065011039208 +7.036,0.559955953460288,-0.292540247207821,4.5316293335193e-05,-7.02562624743585e-05,-5.08012584776672e-05,-2.2966807060318e-05,0.00189390400584112,-0.00502697562396407,-0.00365111509515691,8.96893778901748e-05,0.00649522884472538 +7.038,0.559955816809189,-0.292540359009351,4.52627885606793e-05,-6.60577098854437e-05,-6.08405876512186e-05,-3.14961564121287e-05,0.00222000347965482,-0.00485719151358366,-0.00465356769525451,9.51693543625906e-05,0.00708353140344737 +7.04,0.559955689229449,-0.292540490570171,4.51903087095445e-05,-6.13762485557402e-05,-7.02300245319997e-05,-4.15810778413341e-05,0.00238551398079967,-0.00440841655540919,-0.00523137212975718,0.00010211898093395,0.00724514098127819 +7.042,0.559955571304195,-0.292540639929449,4.5096464249314e-05,-5.65156539622461e-05,-7.84742538728534e-05,-5.24216449311551e-05,0.0024101539306016,-0.00374560491650048,-0.00543906853149931,0.000110001165998227,0.00703006860919955 +7.044,0.559955463166833,-0.292540804467187,4.49806221298199e-05,-5.17356328333327e-05,-8.52124441980033e-05,-6.33373519673337e-05,0.0023172459853695,-0.00293611887928082,-0.00533915104229273,0.000118107393947615,0.00651896900455861 +7.046,0.559955364361664,-0.292540980779226,4.48431148414447e-05,-4.72466700207671e-05,-9.0218729389978e-05,-7.37782491003284e-05,0.00213190020498004,-0.00204575393084568,-0.00499743527723518,0.000125757294027438,0.00580555483823202 +7.048,0.559955274180153,-0.292541165342104,4.46855091334186e-05,-4.32080320134135e-05,-9.33954599213852e-05,-8.33270930762722e-05,0.00187942517105006,-0.00113544839502376,-0.00447910402430757,0.000132412425417485,0.00498837196807805 +7.05,0.559955191529536,-0.292541354361065,4.45098064691396e-05,-3.97289693365677e-05,-9.47605229700726e-05,-9.16946651975567e-05,0.00158400310229716,-0.00025873764588655,-0.00384551791711575,0.000137716590662852,0.00416701560452372 +7.052,0.559955115264276,-0.292541544384196,4.43187304726284e-05,-3.68720196042241e-05,-9.44304105049315e-05,-9.8709164744737e-05,0.00126766132313218,0.000540016115152821,-0.00315181277952223,0.000141492570343562,0.0034398410474831 +7.054,0.559955044041457,-0.292541732082707,4.41149698101606e-05,-3.46583240440384e-05,-9.26004585094611e-05,-0.000104301916315647,0.00094952987139501,0.00122665230750165,-0.00244526443365136,0.000143718245497293,0.0028957902221416 +7.056,0.559954976630979,-0.29254191478603,4.39015228073658e-05,-3.30739001186445e-05,-8.95238012749254e-05,-0.000108490222479341,0.000645386445676501,0.00177755102304625,-0.00176436821749368,0.000144494021458977,0.00258635003638285 +7.058,0.559954911745857,-0.292542090177912,4.36810089202433e-05,-3.20767782613327e-05,-8.54902544172768e-05,-0.000111359389185621,0.00036744898096639,0.00217937649871662,-0.00113854566138949,0.000144008391643515,0.00248615906567548 +7.06,0.559954848323866,-0.292542256747048,4.34560852506233e-05,-3.16041041947788e-05,-8.0806295280058e-05,-0.0001130444051249,0.000124395146959162,0.00242832493349079,-0.000588385548622803,0.000142504436032303,0.00250168616917234 +7.062,0.55995478532944,-0.292542413403093,4.32288312997436e-05,-3.1579197673496e-05,-7.57769546833126e-05,-0.000113712931380112,-7.84432241402968e-05,0.00252899402807978,-0.000126300771930628,0.000140249860427156,0.00253336061753296 +7.064,0.559954722007076,-0.292542559854867,4.30012335251029e-05,-3.19178770913399e-05,-7.06903191677399e-05,-0.000113549608212622,-0.00023874246329705,0.00249298859334311,0.000242502224037028,0.00013751140180834,0.00251610759288686 +7.066,0.559954657657932,-0.29254269616437,4.27746328668932e-05,-3.25341675266841e-05,-6.58050003099413e-05,-0.000112742922483964,-0.000356757338946613,0.00233737291327814,0.000518859079839201,0.000134535261893196,0.00242070293083439 +7.068,0.559954591870406,-0.292542823074868,4.2550261835167e-05,-3.33449064471266e-05,-6.13408275146263e-05,-0.000111474171893265,-0.000434832073128028,0.00208307309595613,0.000708378663880751,0.000131533535288291,0.00224278237605849 +7.07,0.559954524278306,-0.29254294152768,4.23287361793201e-05,-3.42734958191964e-05,-5.74727079261158e-05,-0.000109909407828441,-0.260809695687484,0.298684659873268,-0.216681077548511,0.000128677358541539,0.451868247142673 +7.072,0.559954454776422,-0.292543052965699,4.21106242038533e-05,-0.00107658368919695,0.00113339781197831,-0.000978198482087214,-0.17489339899923,0.219942081283733,-0.484516633397762,0.00184404319645714,0.560105872288468 +7.074,0.559950217943549,-0.292538407936432,3.84159422509717e-05,-0.000733847091816038,0.00082229561720872,-0.00204797594141928,0.476056965043001,-0.534256654364322,-0.22705026843709,0.00232570571932042,0.750741121223466 +7.076,0.559951519388055,-0.292539763783231,3.39187204381752e-05,0.000827644170975269,-0.00100362880547922,-0.00188639955583568,0.410639629466705,-0.536409155846943,0.236838819177878,0.00229145563718655,0.715857747066102 +7.078,0.559953528520233,-0.292542422451654,3.08703440276281e-05,0.000908711426050968,-0.00132334100617929,-0.00110062066470766,-0.0385781414868517,-0.0483496092260724,0.390685198333236,0.00194636936937795,0.395551364439023 +7.08,0.559955154233759,-0.292545057147255,2.95162377793451e-05,0.000673331605027879,-0.00119702724238348,-0.000323658762502907,-0.126004862557922,0.103098800399788,0.347228828190332,0.00141102964670575,0.383502864602791 +7.082,0.559956221846653,-0.292547210560624,2.95757089776166e-05,0.000404691975819337,-0.000910945804580186,0.000288294648053518,-0.126126350197273,0.157279151525473,0.25994341314429,0.00103764717427028,0.328960735887675 +7.084,0.559956773001663,-0.292548700930474,3.06694163715593e-05,0.000168826204238729,-0.000567910636281524,0.000716114890074368,-0.106339721007964,0.171537240200391,0.172848690973957,0.000929432791451629,0.265725104216799 +7.086,0.55995689715147,-0.292549482203169,3.24401685379144e-05,-2.06669082125655e-05,-0.000224796843778543,0.000979689411949422,-0.0830521297221032,0.161928244306335,0.0982332175005196,0.00100536166922838,0.206804684608482 +7.088,0.55995669033403,-0.292549600117849,3.45881740193565e-05,-0.000163382314649647,7.98023409437442e-05,0.0011090477600764,-0.0605101968531573,0.136483126560878,0.0386806400381478,0.00112385458511805,0.154224899652427 +7.09,0.559956243622211,-0.292549162993805,3.68763595782196e-05,-0.000262707695625168,0.000321135662464908,0.001134411972102,-0.0400131657390765,0.101817803705551,-0.00663607082658959,0.00120790478494615,0.109599069429902 +7.092,0.559955639503247,-0.292548315575199,3.9125821907765e-05,-0.000323434977605971,0.000487073555765994,0.00108250347677004,-0.0220786156093923,0.0637855673592435,-0.039731547326414,0.00123031077809013,0.0783240686093296 +7.094,0.559954949882301,-0.292547214699582,4.12063734853002e-05,-0.000351022158062747,0.000576277931901911,0.000975485782796322,-0.00695219107978713,0.0271298927629113,-0.0628336031069608,0.00118612196787933,0.0687926283953449 +7.096,0.559954235414615,-0.292546010463471,4.30277650389499e-05,-0.000351243741925117,0.000595593126817627,0.000831169064342227,0.00527031987498099,-0.00477600202098282,-0.0779344611120793,0.00108117776173647,0.0782583330752659 +7.098,0.559953544907333,-0.292544832327075,4.45310497426687e-05,-0.000329940878562825,0.000557173923817982,0.000663747938348039,0.0146091103520203,-0.0299449375261704,-0.0866306483745309,0.000927289108310244,0.0928169953538432 +7.1,0.559952915651101,-0.292543781767776,4.56827567923423e-05,-0.000292807300517029,0.000475813376712933,0.000484646470844065,0.0211854835826902,-0.047603420844058,-0.0901314406425204,0.000739605764172129,0.104108534630861 +7.102,0.559952373678131,-0.292542929073568,4.64696356260452e-05,-0.000245198944232055,0.000366760240441728,0.000303222175777918,0.0252093528829604,-0.0579195873831458,-0.0893503941477092,0.000535331004243994,0.109424325493752 +7.104,0.559951934855324,-0.292542314726814,4.68956454954539e-05,-0.000191969888985198,0.000244135027180375,0.000127244894253267,-0.231133664360658,0.235357742198163,-0.300246739033688,0.000335627193306616,0.446053967490219 +7.106,0.559951605798575,-0.292541952533459,4.69786152030582e-05,-0.00116973360167459,0.00130819120923428,-0.000897764780356702,-0.145654963888643,0.158611650986857,-0.558593603215404,0.00197119824970837,0.598665046488725 +7.108,0.559947255920917,-0.292537081961977,4.33045863740267e-05,-0.000774589744539835,0.000878581631127874,-0.0021071295186086,0.498075069944804,-0.589493191562661,-0.294599434137435,0.00241078612968743,0.826056792716669 +7.11,0.559948507439597,-0.292538438206935,3.85500971286229e-05,0.000822566678104854,-0.00104978155701663,-0.00207616251690657,0.429239821284118,-0.582673637582267,0.176606571076444,0.0024676118118514,0.74494649006271 +7.112,0.55995054618763,-0.292541281088205,3.49999363064013e-05,0.000942369540596448,-0.00145211291920094,-0.0014007032343029,-0.0203143248612049,-0.0848125431308326,0.341862965398097,0.00222680529722309,0.352811743537069 +7.114,0.559952276917759,-0.292544246658611,3.29472841914119e-05,0.000741309378660044,-0.00138903172953992,-0.000708710655314336,-0.110762879458631,0.0765950418230656,0.311407875151431,0.00172662084243012,0.339278765330478 +7.116,0.559953511425144,-0.292546837215124,3.21650936851436e-05,0.000499318022761874,-0.00114573275190864,-0.000155071733697037,-0.114953859729719,0.140869585885029,0.237229820465724,0.00125939242067069,0.298892318088603 +7.118,0.55995427418985,-0.292548829589619,3.23269972566237e-05,0.000281493939741115,-0.000825553385999747,0.000240208626548665,-0.0994243702645501,0.164621962249451,0.162477000856975,0.000904697416551532,0.251762530303537 +7.12,0.559954637400903,-0.292550139428668,3.31259281913382e-05,0.000101620541703718,-0.000487244902910909,0.000494836269730791,-0.0801631782204759,0.163358977789453,0.0989099113203471,0.00070185273651237,0.207112195015701 +7.122,0.559954680672017,-0.292550778569231,3.43063423355466e-05,-3.91587731407528e-05,-0.000172117474842007,0.00063584827183001,-0.0611958173857205,0.144789478920265,0.0487718624678881,0.00065989458207284,0.164583157826355 +7.124,0.559954480765811,-0.292550827898567,3.56693212786585e-05,-0.000143162727839192,9.19130127702181e-05,0.000689923719602365,-0.0436882068993748,0.1153793219577,0.0110201605749155,0.000710590112110223,0.123864810566189 +7.126,0.559954108021106,-0.29255041091718,3.70660372139564e-05,-0.000213911600738272,0.000289399812988843,0.000679928914129677,-0.0280851579492899,0.0809597415253834,-0.016447476180459,0.000769294321412779,0.0872569499673248 +7.128,0.559953625119408,-0.292549670299315,3.83890369351769e-05,-0.000255503359636339,0.000415751978871716,0.000624133814880536,-0.0146127869804383,0.0463511143668055,-0.0358256301959849,0.000792259233836082,0.0603774388767842 +7.13,0.559953086007667,-0.292548747909264,3.95625724734783e-05,-0.000272362748660018,0.000474804270456044,0.000536626393345753,-0.00338967005851404,0.0150797754699685,-0.0489834960987091,0.000766543180868636,0.0513641156974643 +7.132,0.559952535668413,-0.292547771082233,4.05355425085602e-05,-0.000269062039870397,0.000476071080751597,0.000428199830485678,0.00555100695269359,-0.0106621887429895,-0.0573298330197292,0.000694545282940699,0.0585764944414568 +7.134,0.559952009759508,-0.292546843624941,4.12753717954212e-05,-0.000250158720849242,0.000432155515484082,0.00030730706126681,0.0122541865404824,-0.0298668379125423,-0.0618363342093263,0.000586323635106657,0.0697561848376939 +7.136,0.55995153503353,-0.292546042460171,4.17647707536273e-05,-0.000220045293708473,0.000356603729101441,0.0001808544936484,0.0168370249062494,-0.0424563910209303,-0.0631463214634423,0.000456392921466932,0.0779325892074695 +7.138,0.559951129578333,-0.292545417210025,4.19987897700147e-05,-0.000182810621224251,0.000262329951400379,5.47217754130685e-05,0.0194818089924243,-0.0490000497260867,-0.0617086983256996,0.00032439358707977,0.0811696322760457 +7.14,0.559950803791045,-0.292544993140366,4.19836578552796e-05,-0.000142118057738767,0.000160603530197072,-6.5980299654426e-05,0.0204245452078875,-0.0504522992689069,-0.0578923526886221,0.000224375658639009,0.0794614437843423 +7.142,0.559950561106102,-0.292544774795904,4.1734868571397e-05,-0.000101112440392692,6.05207543247288e-05,-0.000176847635341446,0.0199396092762059,-0.0479384664568721,-0.0520643059064864,0.000212512525353356,0.0735280663002136 +7.144,0.559950399341283,-0.292544751057348,4.12762673139139e-05,-6.23596206339518e-05,-3.11503356303956e-05,-0.000274237523280349,0.0183228271652458,-0.0425964793784905,-0.0446310769184025,0.00028295809737563,0.0643592967462044 +7.146,0.55995031166762,-0.292544899397246,4.06379184782757e-05,-2.7821131731717e-05,-0.000109865163189214,-0.000355371943015036,0.0158750973824894,-0.0354728751615533,-0.0360482706714241,0.00037300614919289,0.0530077485612332 +7.148,0.559950288056756,-0.292545190518001,3.98547795418536e-05,1.14076889601287e-06,-0.000173041836276625,-0.000418430605966061,0.012887273331817,-0.0274646915765569,-0.0268055211534643,0.000452801226218288,0.0404836641329954 +7.15,0.559950316230695,-0.292545591564592,3.89641960544113e-05,2.3727961595557e-05,-0.000219723929495454,-0.000462594027628905,0.00962706239032936,-0.0192957352561501,-0.017397379662782,0.000512674219902206,0.0277069404387007 +7.152,0.559950382968603,-0.292546069413719,3.80044034313382e-05,3.96490184573261e-05,-0.000250224777301217,-0.000488020124617182,0.00632900828967254,-0.0115161661699714,-0.00829031214768583,0.00054986191527641,0.0155373004312591 +7.154,0.559950474826769,-0.292546592463701,3.70121155559427e-05,4.90439947542443e-05,-0.000265788594175335,-0.000495755276219645,0.00318778424490393,-0.00451609856107103,0.000107235666554216,0.000564643413239517,0.00552888904695571 +7.156,0.559950579144582,-0.292547132568096,3.60213823264594e-05,5.24001554369432e-05,-0.000268289171545503,-0.000487591181950965,0.000354786908188189,0.00145364135310711,0.00746771913574828,0.000558990175740797,0.00761615231098393 +7.158,0.559950684427391,-0.292547665620387,3.50617508281387e-05,5.04631423869972e-05,-0.000259974028762906,-0.000465884399676648,-0.00206249419626191,0.00625848283265821,0.0135582655840067,0.000535892991401136,0.0150747820986823 +7.16,0.559950780997151,-0.292548172464211,3.4157844727753e-05,4.41501786518965e-05,-0.000243255240214873,-0.000433358119614944,-0.00399852177063455,0.00985758824916026,0.0182448213134881,0.000498920444563249,0.021119510581482 +7.162,0.559950861028105,-0.292548638641348,3.33283183496791e-05,3.44690553044608e-05,-0.000220543675766269,-0.000392905114422704,-0.00542583829255107,0.0122832783527978,0.0214878900905489,0.000451887217824976,0.0253386674632415 +7.164,0.559950918873372,-0.292549054638914,3.2586224270062e-05,2.24468254816898e-05,-0.000194122126803676,-0.000347406559252739,-0.00634974869906187,0.0136228182449782,0.0233317835338216,0.000398595757003025,0.0277537854777696 +7.166,0.559950950815407,-0.292549415129855,3.1938692112668e-05,9.07006050821046e-06,-0.00016605240278635,-0.000299577980287407,-0.00680222645571574,0.0140025837834435,0.0238895980176691,0.000342640675842529,0.0285141286174594 +7.168,0.559950955153614,-0.292549718848525,3.13879123489125e-05,-4.76208034117017e-06,-0.000138111791669908,-0.000251848167182073,-0.0068354374729866,0.0135743637996762,0.0233258724939618,0.000287271724540403,0.0278403104439881 +7.17,0.559950931767086,-0.292549967577022,3.09312994439398e-05,-1.82716893837329e-05,-0.000111754947587651,-0.00020627449031157,-0.00651534828866013,0.0125035409664985,0.0218387970658957,0.0002353129581994,0.0259946409344085 +7.172,0.559950882066857,-0.292550165868315,3.05628143876663e-05,-3.08234734958078e-05,-8.80976278039193e-05,-0.000164492978918499,-0.00591573336844219,0.0109589624389155,0.0196433769424146,0.000189127519564199,0.0232584826832244 +7.174,0.559950808473192,-0.292550319967533,3.02733275282657e-05,-4.19346228575043e-05,-6.79190978319845e-05,-0.000127700982541903,-0.00511284470317178,0.00910439601139521,0.0169565871604208,0.000150595675192481,0.0199137403774381 +7.176,0.559950714328365,-0.292550437544707,3.00520104574986e-05,-5.12748523084972e-05,-5.16800437583344e-05,-9.66666302768089e-05,-0.00418090873727564,0.00709156564720815,0.0139850839095014,0.000121013944697274,0.0162281506387477 +7.178,0.559950603373783,-0.292550526687708,2.98866610071585e-05,-5.86582578066051e-05,-3.9552835243155e-05,-7.17606469039035e-05,-0.00318852065583623,0.00505475483692239,0.0109157635786295,0.000100771069403599,0.0124447219711257 +7.18,0.559950479695334,-0.292550595756048,2.9764967869883e-05,-6.40289349318407e-05,-3.1461024410647e-05,-5.30035759622956e-05,-0.00219599071565504,0.00310700094125077,0.00790918422335445,8.88756413775117e-05,0.00877673203140755 +7.182,0.559950347258043,-0.292550652531806,2.96746467033093e-05,-6.74422206692262e-05,-2.71248314781506e-05,-4.01239100104822e-05,-0.00125358146086185,0.00133783043323835,0.00509566541566069,8.30309446293606e-05,0.00541544668291321 +7.184,0.559950209926452,-0.292550704255374,2.96044722298411e-05,-6.90432607752887e-05,-2.61097026776931e-05,-3.26209142996506e-05,-0.000400599629861111,-0.000187531490338115,0.00257376405604471,8.0701998005918e-05,0.00261149565182502 +7.186,0.559950071085,-0.292550756970616,2.95441630461107e-05,-6.90446191886705e-05,-2.78749574395029e-05,-2.98288537863045e-05,0.000334795184634919,-0.00142763722024563,0.000410729114783549,8.02118021825177e-05,0.00152280473272717 +7.188,0.559949933747975,-0.292550815755203,2.94851568146959e-05,-6.77040800367492e-05,-3.18202515586749e-05,-3.09779978405166e-05,0.000935150457074555,-0.00236316395271566,-0.00135545572075234,8.096917446218e-05,0.00288033165724048 +7.19,0.55994980026868,-0.292550884251623,2.94202510547487e-05,-6.53040173603719e-05,-3.73276132503666e-05,-3.52506766693144e-05,0.00139281137317605,-0.00299437613246643,-0.00271287596814195,8.30697032618827e-05,0.00427386335327363 +7.192,0.559949672531905,-0.292550965065656,2.93441541080186e-05,-6.21328345440444e-05,-4.3797756088542e-05,-4.18295017130856e-05,0.00170864750819963,-0.00333795485349678,-0.00367170494356138,8.67665821640684e-05,0.0052481269138458 +7.194,0.559949551737342,-0.292551059442647,2.92529330478963e-05,-5.84694273275741e-05,-5.06794326643523e-05,-4.99374964435583e-05,0.00189056519745224,-0.00342345582090876,-0.00425981097097505,9.2091434879936e-05,0.00578275678478449 +7.196,0.559949438654196,-0.292551167783387,2.91444041222444e-05,-5.45705737542362e-05,-5.74915793721755e-05,-5.88687455969839e-05,0.00195190470731191,-0.00328964205528393,-0.00451823620010626,9.8735801139891e-05,0.00591997763494675 +7.198,0.559949333455046,-0.292551289408964,2.90174580655084e-05,-5.06618084983256e-05,-6.38380008854895e-05,-6.80104412439854e-05,0.00190983515807293,-0.00298090505057898,-0.00449681754593666,0.000106147676920309,0.00572316636950408 +7.2,0.559949236006962,-0.292551423135391,2.88723623572684e-05,-4.69312331219436e-05,-6.94151995744928e-05,-7.68560157807326e-05,0.00178382569132365,-0.0025439588768924,-0.00425013316208061,0.000113700737622942,0.00526473102444591 +7.202,0.559949145730114,-0.292551567069763,2.87100340023855e-05,-4.35265057330318e-05,-7.4013836393058e-05,-8.5010973892306e-05,0.00159425948831598,-0.00202493793954486,-0.00383393209627259,0.000120828268054559,0.00461963984461157 +7.204,0.559949061900939,-0.292551719190736,2.85323184616992e-05,-4.05541951686804e-05,-7.75149513326714e-05,-9.21917441658212e-05,0.00136124053695885,-0.0014669971383452,-0.00330213347463924,0.00012709259663026,0.00386123579799344 +7.206,0.559948983513333,-0.292551877129568,2.83412670257221e-05,-3.80815435851957e-05,-7.98818249464394e-05,-9.82195077908644e-05,0.00110361627475349,-0.000908456733454824,-0.00270445139634129,0.000132205830541941,0.00305897366344213 +7.208,0.559948909574765,-0.292552038718036,2.81394404305357e-05,-3.6139730069666e-05,-8.11487782664911e-05,-0.000103009549751188,0.000838236591247668,-0.000381510340684646,-0.00208465288434914,0.000136022687973716,0.00227902794436159 +7.21,0.559948838954413,-0.292552201724681,2.79292288267174e-05,-3.47285972202054e-05,-8.14078663091778e-05,-0.00010655811932826,0.000579438511063353,8.85324556765881e-05,-0.00147942569392445,0.000138520572322929,0.00159131623747616 +7.212,0.559948770660376,-0.292552364349501,2.77132079532227e-05,-3.38219760254128e-05,-8.07946484437848e-05,-0.000108927252526885,0.000338753303188074,0.00048351019369283,-0.000917808692755526,0.000139774273822024,0.00109128763592525 +7.214,0.559948703666509,-0.292552524903275,2.74935198166099e-05,-3.3373584007453e-05,-7.94738255344063e-05,-0.000110229354099283,0.000124803452293051,0.000792251129279008,-0.000421110935191143,0.000139929966625169,0.000905854388566775 +7.216,0.55994863716604,-0.292552682244803,2.72722905368256e-05,-3.33227622162405e-05,-7.76256439266684e-05,-0.00011061169626765,-5.66287364241797e-05,0.00101006672123119,-3.24255293367081e-06,0.000139180079134755,0.00101165809900245 +7.218,0.55994857037546,-0.292552835405851,2.70510730315393e-05,-3.36000989531497e-05,-7.5433558649482e-05,-0.000110242324311017,-0.000202402553049299,0.00113798277745922,0.00032863753472643,0.000137740910733456,0.00120165478591222 +7.22,0.559948502765644,-0.292552983979038,2.68313212395815e-05,-3.41323724284376e-05,-7.3073712816832e-05,-0.000109297146128744,-0.000311715993293334,0.00118179028369251,0.000573240595622577,0.000135833178952414,0.00134996293118537 +7.222,0.55994843384597,-0.292553127700702,2.66138844470243e-05,-3.48469629263231e-05,-7.07063975147114e-05,-0.000107949361928527,-0.000385738024856982,0.00115099564948079,0.000734126267582828,0.00013366663837874,0.00141863532512741 +7.224,0.559948363377792,-0.292553266804628,2.63995237918674e-05,-3.56753245278657e-05,-6.84697302189083e-05,-0.000106360641058412,-0.000427201614363412,0.00105774192876348,0.000818612394011281,0.000131428378605136,0.00140408171372178 +7.226,0.559948291144672,-0.292553401579623,2.61884418827907e-05,-3.65557693837766e-05,-6.64754297996579e-05,-0.000104674912352482,-0.000439989197851504,0.000915760915019459,0.000836690212778842,0.000129275459072048,0.00131615312933685 +7.228,0.559948217154715,-0.292553532706347,2.59808241424575e-05,-3.74352813192716e-05,-6.48066865588309e-05,-0.000103013880207297,-0.000428730904942316,0.000739407337444681,0.000799996366032756,0.000127330932712955,0.00117069534259999 +7.23,0.559948141403547,-0.292553660806369,2.57763863619614e-05,-3.82706930035461e-05,-6.35178004498789e-05,-0.000101474926888351,-0.000398434812922533,0.000542809883843098,0.000720888542431015,0.000125683402659056,0.000986444707398587 +7.232,0.559948064071943,-0.292553786777549,2.55749244349041e-05,-3.90290205709619e-05,-6.26354470234583e-05,-0.000100130326037573,-0.000354163823270674,0.000339166601050922,0.000611652371107548,0.000124388688645502,0.000783954475759672 +7.234,0.559947985287465,-0.292553911348157,2.53758650578112e-05,-3.96873482966286e-05,-6.21611340456753e-05,-9.90283174039206e-05,-0.000300765884417908,0.00014019564329241,0.000483859126382277,0.000123473478320302,0.000586715084015469 +7.236,0.55994790532255,-0.292554035422085,2.51788111652884e-05,-4.02320841086334e-05,-6.20746644502887e-05,-9.8194889532044e-05,-0.000242664076330853,-4.42527958687075e-05,0.000347880164784521,0.000122939500928507,0.000426456062137953 +7.238,0.559947824359128,-0.292554159646815,2.4983085499683e-05,-4.06580046019521e-05,-6.23381452291502e-05,-9.76367967447824e-05,-0.000183705377301292,-0.00020643100770779,0.00021255568398586,0.000122768325586875,0.000348627803520259 +7.24,0.559947742690531,-0.292554284774666,2.47882639783092e-05,-4.09669056178386e-05,-6.29003884811199e-05,-9.73446667961005e-05,-0.000127067120716592,-0.000340785049488741,8.50076363413774e-05,0.000122925710820074,0.000373506092799832 +7.242,0.559947660491506,-0.292554411248369,2.45937068324986e-05,-4.11662730848184e-05,-6.3701285427105e-05,-9.72967661994169e-05,-7.52141265913393e-05,-0.000443921913114548,-2.94202622279442e-05,0.000123366026594129,0.000451208800459099 +7.244,0.559947578025439,-0.292554539579808,2.43990769135116e-05,-4.1267762124204e-05,-6.46760761335779e-05,-9.74623478450123e-05,-2.99018379478605e-05,-0.000514472329317906,-0.000127114225390143,0.000124036011957167,0.000530786137576131 +7.246,0.559947495420457,-0.292554669952673,2.42038574411185e-05,-4.12858804366099e-05,-6.57591747443768e-05,-9.78052231009775e-05,7.78520997439383e-06,-0.000552873209023457,-0.000206057673533682,0.000124878559618213,0.000590075554121973 +7.248,0.559947412881917,-0.292554802616507,2.40078560211077e-05,-4.12366212843064e-05,-6.6887568969672e-05,-9.82865785391471e-05,3.73658257090595e-05,-0.000561092190074941,-0.000265635247310928,0.00012583583487445,0.000621918592187074 +7.25,0.559947330473972,-0.292554937502949,2.3810711126962e-05,-4.11364171337737e-05,-6.80035435046764e-05,-9.88677640902211e-05,5.88755155762191e-05,-0.000542317132170183,-0.000306397427389619,0.000126852361113209,0.000625662514212442 +7.252,0.559947248336249,-0.292555074630681,2.36123849647468e-05,-4.10011192220015e-05,-6.90568374983525e-05,-9.95121682487054e-05,7.27681942503316e-05,-0.000500631258666948,-0.000329804431155314,0.000127877324855853,0.000603902169277928 +7.254,0.559947166469495,-0.292555213730299,2.34126624539671e-05,-4.08453443567723e-05,-7.00060685393444e-05,-0.000100186981814843,7.98139679324964e-05,-0.000440691923929096,-0.000337968638323945,0.000128866687367707,0.000561072581564988 +7.256,0.559947084954871,-0.292555354654955,2.32116370374874e-05,-4.06818633502715e-05,-7.08196051940691e-05,-0.000100864042802001,8.0998513449751e-05,-0.000367428427964859,-0.000333408749399272,0.000129784381247737,0.000502718413263114 +7.258,0.559947003742042,-0.29255549700872,2.30092062827592e-05,-4.05213503029733e-05,-7.14757822512036e-05,-0.000101520616812439,7.74294656192099e-05,-0.000285770095083635,-0.000318828344796026,0.000130603227053453,0.000435099279286417 +7.26,0.55994692286947,-0.292555640558084,2.28055545702377e-05,-4.03721454877947e-05,-7.19626855744035e-05,-0.000102139356181185,7.02540942110343e-05,-0.000200413973607133,-0.00029692592568144,0.00013130493641701,0.000365056713281914 +7.262,0.55994684225346,-0.292555784859462,2.26006488580344e-05,-4.02403339261292e-05,-7.22774381456323e-05,-0.000102708320515165,6.05891309324105e-05,-0.000115636368540171,-0.000270241560038193,0.00013187991371861,0.000300122163940252 +7.264,0.559946761908134,-0.292555929667837,2.2394721288177e-05,-4.0129788964065e-05,-7.24252310485642e-05,-0.000103220322421338,4.94660631877829e-05,-3.51515969150538e-05,-0.000241042090806866,0.000132326297520573,0.000248563504387755 +7.266,0.559946681734304,-0.292556074560386,2.21877675683491e-05,-4.00424696733781e-05,-7.24180445332925e-05,-0.000103672488878393,3.7790916231912e-05,3.79832346171484e-05,-0.000211244142832122,0.000132649001133856,0.000217933401163077 +7.268,0.559946601738256,-0.292556219340015,2.19800313326635e-05,-3.99786252991374e-05,-7.22732981100957e-05,-0.000104065298992667,2.63184196680452e-05,0.000101419365964975,-0.000182372617002248,0.000132858219749298,0.000210329071787068 +7.27,0.559946521819803,-0.292556363653579,2.17715063723783e-05,-3.99371959947059e-05,-7.20123670694325e-05,-0.000104401979346402,1.56391496952691e-05,0.000153527791170601,-0.000155550059817658,0.000132968168846189,0.000219114551717114 +7.272,0.559946441989472,-0.292556507389483,2.15624234152778e-05,-3.99160687003563e-05,-7.16591869454132e-05,-0.000104687499231937,6.1788490968198e-06,0.000193376221281834,-0.000131512468455882,0.000132995504095462,0.000233940313953712 +7.274,0.559946362155528,-0.292556650290327,2.13527563754506e-05,-3.99124805983186e-05,-7.12388621843053e-05,-0.000104928029220225,-1.79389142207978e-06,0.000220678038346889,-0.000110645091173661,0.000132958162249882,0.00024686909659958 +7.276,0.559946282339549,-0.292556792344932,2.1142711298397e-05,-3.99232442660446e-05,-7.07764747920257e-05,-0.000105130079596632,-8.15193051728813e-06,0.0002357193815178,-9.30330265891204e-05,0.000132874032273829,0.000253545311198264 +7.278,0.559946202462551,-0.292556933396226,2.09322360570641e-05,-3.99450883203878e-05,-7.0295984658234e-05,-0.000105300161326582,-1.28889746120421e-05,0.000239271102926945,-7.85204150022327e-05,0.000132760157861455,0.000252155194145489 +7.28,0.559946122559196,-0.29255707352887,2.07215106530906e-05,-3.99748001644928e-05,-6.98193903803178e-05,-0.000105444161256641,-1.60959717798731e-05,0.00023249187644129,-6.67736647283813e-05,0.000132631832771725,0.000242425813848255 +7.282,0.55994604256335,-0.292557212673787,2.05104594120376e-05,-4.00094722075072e-05,-6.93660171524689e-05,-0.000105567255985495,-1.79365619557019e-05,0.000216827816122409,-5.734353616363e-05,0.000132502255596752,0.000224998451636792 +7.284,0.559945962521307,-0.292557350992939,2.02992416291486e-05,-4.00465464123156e-05,-6.89520791158283e-05,-0.000105673535401295,-1.86226589682328e-05,0.000193913895361529,-4.97232385415351e-05,0.000132382065168051,0.000201051741331399 +7.286,0.559945882377165,-0.292557488482104,2.00877652704323e-05,-4.00839628433802e-05,-6.85903615710227e-05,-0.000105766148939661,-1.83920309559955e-05,0.000165481010834859,-4.33989684526063e-05,0.000132279401416849,0.000172063076260898 +7.288,0.559945802185456,-0.292557625354385,1.987617703339e-05,-4.01201145361396e-05,-6.82901550724888e-05,-0.000105847131275106,-1.74884967640934e-05,0.000133271928211663,-3.78916871896456e-05,0.00013219978846196,0.00013965326464641 +7.29,0.559945721896707,-0.292557761642724,1.96643767453319e-05,-4.01539168304365e-05,-6.80572738581761e-05,-0.00010591771568842,-1.61455224167923e-05,9.89683231238554e-05,-3.27887534772958e-05,0.000132146479553885,0.000105501228574144 +7.292,0.559945641569788,-0.292557897583481,1.94525061706363e-05,-4.01846966258068e-05,-6.78942817799934e-05,-0.000105978286289015,-1.45734604917058e-05,6.4130877695401e-05,-2.77653126126113e-05,0.000132120552928323,7.13867481341027e-05 +7.294,0.55994556115792,-0.292558033219851,1.92404636001758e-05,-4.02122106724034e-05,-6.78007503473945e-05,-0.00010602877693887,-1.29506544399691e-05,3.01522001773285e-05,-2.25955859984291e-05,0.000132121403163849,3.98426295890417e-05 +7.296,0.559945480720946,-0.292558168786482,1.90283910628808e-05,-4.02364992435666e-05,-6.77736729792841e-05,-0.000106068668633009,-1.14181303323549e-05,-1.77648174325493e-06,-1.71553908290885e-05,0.000132146922348042,2.06842215751412e-05 +7.298,0.559945400211923,-0.292558304314543,1.88161889256439e-05,-4.02578831937328e-05,-6.78078562743675e-05,-0.000106097398502187,-1.0077438881138e-05,-3.06860960215366e-05,-1.14168847927778e-05,0.000132194025964479,3.42569193275985e-05 +7.3,0.559945319689413,-0.292558440017907,1.86040014688721e-05,-4.02768089990912e-05,-6.78964173633702e-05,-0.00010611433617218,-8.99165464084024e-06,-5.58387017142145e-05,-5.43715072375883e-06,0.000132258826454769,5.68187739246637e-05 +7.302,0.559945239104687,-0.292558575900213,1.83917315809551e-05,-4.02938498122962e-05,-6.80312110812244e-05,-0.000106119147105082,-8.18849155372152e-06,-7.67261636207494e-05,6.57688307643654e-07,0.000132337120250457,7.71646818939429e-05 +7.304,0.559945158514014,-0.292558712142751,1.81795248804517e-05,-4.03095629653061e-05,-6.82033220178532e-05,-0.000106111705418949,-7.66482710858321e-06,-9.30598827202601e-05,6.69114763007429e-06,0.000132424499348281,9.3614436937475e-05 +7.306,0.559945077866435,-0.292558848713501,1.79672847592793e-05,-4.03245091207305e-05,-6.84034506121054e-05,-0.000106092382514562,-0.244817285582896,0.297529175546932,-0.201508395665858,0.000132516760144091,0.434815762301279 +7.308,0.559944997215977,-0.292558985756554,1.77551553503935e-05,-0.00101957870529678,0.00112191338016974,-0.000912145288082292,-0.161003476661887,0.219425682162304,-0.45340476867255,0.00176924825716158,0.528815311564081 +7.31,0.559940999551614,-0.29255436105998,1.43187036069498e-05,-0.00068433841576835,0.00080929927803721,-0.00191971145720497,0.207291881409942,-0.235624352928142,-0.418443803025055,0.00219284665849026,0.523052555754534 +7.312,0.559942259862314,-0.292555748559442,1.00763095215728e-05,-0.000190411179656923,0.000179415968457073,-0.0025859205001827,0.222806677038789,-0.313373041634115,-0.233317792923736,0.00259912126310814,0.449758458565136 +7.314,0.559940237906895,-0.292553643396106,3.9750216062201e-06,0.000206888292386709,-0.000444192888499111,-0.00285298262889981,0.40984857128946,-0.580433662054217,0.150771622446614,0.0028947573246343,0.726368480572268 +7.316,0.559943087415484,-0.292557525330996,-1.33562099402518e-06,0.00144898310550074,-0.00214231867975954,-0.00198283401039631,0.262321783503424,-0.433322429608269,0.545993516470751,0.00325894339908774,0.744775111110815 +7.318,0.559946033839317,-0.292562212670825,-3.95631443536604e-06,0.00125617542640052,-0.00217748260693238,-0.000669008563016557,-0.404664612887936,0.402385270024138,0.410593720081835,0.00260134189655552,0.703032401406068 +7.32,0.559948112117189,-0.292566235261423,-4.01165524609171e-06,-0.000169675346051187,-0.000532777599662807,-0.000340459130068786,-0.380417553305659,0.485569017952256,0.0358988286250069,0.000654640445593798,0.617886326078535 +7.322,0.559945355137933,-0.292564343781224,-5.31815095564103e-06,-0.000265494786821947,-0.00023520653512357,-0.000525413248516545,0.254871104894703,-0.222770582352481,0.117825794021723,0.000633931130101035,0.35842562716519 +7.324,0.559947050138042,-0.292567176087564,-6.11330824015766e-06,0.000849809073527513,-0.00142385992907263,0.000130844046018055,0.227493168927748,-0.231208484462111,0.414757821063447,0.00166333181399466,0.526530678431326 +7.326,0.559948754374227,-0.29257003922094,-4.79477477156875e-06,0.000644477888889145,-0.00116004047297212,0.00113361803573743,-0.154940616156571,0.213451949910352,0.449701195058209,0.00174531816559319,0.52134393090578 +7.328,0.559949628049597,-0.292571816249456,-1.57883609720744e-06,0.000230046608901161,-0.000570052129431127,0.00192964882625109,-0.195766304167407,0.300197615245303,0.321702827198659,0.00202519763608101,0.481597096205887 +7.33,0.559949674560663,-0.292572319429458,2.92382053343476e-06,-0.000138587327780397,4.07499880089635e-05,0.00242042934453192,-0.160616606549603,0.284684087460022,0.175234993939826,0.00242473611364521,0.370877374685416 +7.332,0.559949073700286,-0.292571653249504,8.10288128091918e-06,-0.000412419817297181,0.000568684220408836,0.00263058880201032,-0.356192933585654,0.529795011822727,-0.151496903710437,0.00272277235432996,0.656130682351044 +7.334,0.559948024881394,-0.292570044692576,1.34461757414772e-05,-0.00156335906212317,0.00215993003530011,0.00181444172969011,-0.227783788914216,0.383632266228621,-0.501190539828533,0.00322514931514108,0.671007546453421 +7.336,0.559942820264038,-0.292563013529363,1.53606481996804e-05,-0.00132355497295415,0.00210321328532349,0.000625826642695961,0.419374784330079,-0.441009040355577,-0.339993810958223,0.0025626086077864,0.697108294956489 +7.338,0.559942730661502,-0.292561631839435,1.59494823122608e-05,0.000114140075196957,0.000395893873877994,0.000454466485857363,0.382128067563731,-0.508430461541286,0.0446747673142968,0.000613432720767024,0.637588604883795 +7.34,0.559943276824339,-0.292561429953867,1.71785141431097e-05,0.000204957297300611,6.94914391585677e-05,0.000804525711953129,-0.01632516081346,-0.0814561406971319,0.16281960778062,0.000833125545777339,0.182789054406141 +7.342,0.559943550490691,-0.292561353873678,1.91675851600737e-05,4.88394319431097e-05,7.00693110894301e-05,0.00110574491697992,-0.077384996924323,0.0194802703863722,0.108605432648036,0.00110903869179393,0.13477039246055 +7.344,0.559943472182066,-0.292561149676623,2.16014938110298e-05,-0.000104582690396716,0.000147412520704065,0.00123894744254532,-0.0642580110926775,0.0409263453127325,0.0258776621052369,0.00125206180190138,0.0804593756269367 +7.346,0.55994313215993,-0.292560764223596,2.41233749302544e-05,-0.000208192612427572,0.000233774692340342,0.00120925556540085,-0.0391303554697572,0.0387890730160684,-0.0463660803371936,0.00124911720551002,0.0720110429758557 +7.348,0.559942639411617,-0.292560214577853,2.64385160726327e-05,-0.000261104112275727,0.000302568812768322,0.00105348312119657,-0.0160533131926392,0.0265077895362875,-0.0988941294680182,0.00112674306323731,0.103636000568327 +7.35,0.55994208774348,-0.292559553948344,2.83373074150411e-05,-0.000272405865198136,0.000339805850485504,0.000813679047528735,0.00212265976322284,0.00916204937960754,-0.131317374116081,0.000922901166867715,0.131653718436083 +7.352,0.559941549788156,-0.292558855354451,2.9693232262748e-05,-0.000252613473222835,0.000339217010286756,0.000528213624732185,0.0152151951315787,-0.00967889117116087,-0.146272945283029,0.000676676717697825,0.147380316253451 +7.354,0.559941077289588,-0.292558197080303,3.04501619139697e-05,-0.000211545084671828,0.000301090285800864,0.000228587266396682,0.0237132039837691,-0.0270665215518405,-0.147374381580274,0.000433196054242378,0.151704057224124 +7.356,0.559940703607817,-0.292557650993308,3.06075813283346e-05,-0.000157760657287769,0.000230950924079406,-6.12839015888476e-05,0.0282810731777659,-0.0408231313683914,-0.138297375959997,0.0002863258125195,0.146943905461329 +7.358,0.559940446246958,-0.292557273276607,3.02050263076142e-05,-9.84207919607517e-05,0.000137797760327281,-0.000324602237443369,0.029621535863047,-0.0496825765666657,-0.122347559192336,0.000366116767704837,0.135331884792574 +7.36,0.559940309924649,-0.292557099802267,2.9309172378561e-05,-3.92745138355676e-05,3.22206178127207e-05,-0.000550674138358248,0.0284261860716847,-0.053266059760891,-0.102275732734517,0.000553012352760634,0.118767195316784 +7.362,0.559940289148903,-0.292557144394136,2.80023297541815e-05,1.52839523259746e-05,-7.52664787162599e-05,-0.000733705168381391,0.0253477080505736,-0.0519255466471819,-0.0802398014117285,0.000737713979890996,0.0988796967461946 +7.364,0.559940371060459,-0.292557400868182,2.63743517050358e-05,6.21163183667159e-05,-0.000175481568775984,-0.000871633344005126,0.0209827986027922,-0.0465207685498701,-0.0578579330755784,0.000891289461605529,0.0771492071472808 +7.366,0.559940537614177,-0.292557846320411,2.45157963781606e-05,9.92151467371527e-05,-0.000261349552915761,-0.00096513690068373,-0.224986254730715,0.259545673737805,-0.233766336146155,0.00100480668350322,0.415487029266815 +7.368,0.559940767921046,-0.292558446266393,2.25138041023004e-05,-0.000837828700556246,0.000862701126175353,-0.00180669868858985,-0.147169361454396,0.191535418369471,-0.461751825425199,0.00217033875603148,0.521113601553794 +7.37,0.559937186299374,-0.292554395515906,1.7289001623802e-05,-0.000489462299080366,0.000504792120562037,-0.00281214420238432,0.450643497705618,-0.550079843741244,-0.213283776471614,0.00289871410149506,0.742399734523618 +7.372,0.559938810071849,-0.292556427097911,1.12652272927644e-05,0.000964745290266026,-0.00133761824878938,-0.00265983379447622,0.376826646018789,-0.538865895915221,0.231766342343697,0.00312964404826213,0.697201844786472 +7.374,0.559941045280535,-0.292559745988901,6.64966644589593e-06,0.00101784428499496,-0.00165067146309909,-0.00188507883300943,-0.046551541295294,-0.0448746676832332,0.390957047103163,0.0027044861756435,0.396267831745491 +7.376,0.559942881448989,-0.292563029783764,3.72491196072577e-06,0.000778539125084829,-0.00151711691952233,-0.00109600560606339,-0.127295483987016,0.108148685680419,0.359946775357864,0.00202706566378871,0.396814767301338 +7.378,0.559944159437036,-0.292565814456579,2.26564402164287e-06,0.000508662349046952,-0.00121807672037746,-0.000445291731578139,-0.367691437790128,0.463666701266352,0.088350682749044,0.00139310193750326,0.598322359961262 +7.38,0.559944916098385,-0.292567902090645,1.94374503441341e-06,-0.000692226626075521,0.000337549885542872,-0.00074260287506725,-0.266803602877421,0.404136716335134,-0.236009796375252,0.0010698488945342,0.538712606111649 +7.382,0.559941390530531,-0.292564464257037,-7.04767478626467e-07,-0.000558552062462851,0.000398470144963259,-0.00138933091707925,0.355595782770795,-0.353812270752188,-0.0742146394304833,0.00154951581471788,0.507089041850631 +7.384,0.559942681890136,-0.292566308210065,-3.61357863390421e-06,0.00073015650500782,-0.00107769919746604,-0.00103946143278922,0.307463796263322,-0.375306366103061,0.298526201603251,0.00166584637715498,0.569654937215332 +7.386,0.559944311156551,-0.292568775053827,-4.86261320978287e-06,0.000671303122590302,-0.00110275531944882,-0.000195226110666379,-0.0909979084238026,0.0763724493508297,0.400849992005016,0.00130569154521965,0.41808382705837 +7.388,0.559945367102626,-0.292570719231343,-4.39448307656964e-06,0.00036616487131265,-0.000772209400062753,0.000563938535230672,-0.150405129115131,0.183886940008391,0.326227634858963,0.00102391930446047,0.403559883183972 +7.39,0.559945775816037,-0.292571863891427,-2.60685906885993e-06,6.96826061297095e-05,-0.000367207559415176,0.00110968442876962,-0.372092577360906,0.496076658036649,0.0230186567940598,0.00117093833686596,0.620543951172272 +7.392,0.559945645833051,-0.292572188061581,4.42546385093223e-08,-0.00112220543813114,0.00121209723208406,0.000656013162406921,-0.256804911724692,0.398926686941204,-0.323546776761888,0.00177732327240941,0.574259332525662 +7.394,0.559941286994284,-0.292567015502499,1.71935807674606e-08,-0.000957537040768947,0.00122849918834947,-0.000184502678277791,0.374804158077897,-0.388751125610165,-0.177858283135214,0.0015684797348106,0.568541259237584 +7.396,0.559941815684887,-0.292567274064827,-6.93756074601759e-07,0.000377011194180279,-0.000342907270356424,-5.54199701338569e-05,0.334460927960112,-0.431306425293487,0.185333645139032,0.000512634577150402,0.576400819614187 +7.398,0.559942795039061,-0.29256838713158,-2.04486299767992e-07,0.000380306671071653,-0.000496726512824674,0.000556831902278419,-0.0578984256788052,0.00746867835283753,0.285095577844289,0.000837515468513607,0.291011163632585 +7.4,0.559943336911572,-0.292569260970879,1.53357153451217e-06,0.000145417491465032,-0.000313032556945071,0.00108496234124343,-0.114763237329955,0.109506975407705,0.21337422045656,0.00113854244999823,0.26587767161016 +7.402,0.559943376709027,-0.292569639261808,4.13536306520523e-06,-7.87462782481183e-05,-5.86986111939034e-05,0.00141032878410456,-0.0972892579137542,0.124826635042336,0.113296127850849,0.00141374459594648,0.194635302829156 +7.404,0.559943021926459,-0.292569495765323,7.1748866709298e-06,-0.000243739540189942,0.000186273983224218,0.00153814685264677,-0.305472125837408,0.409328094856576,-0.171164339486702,0.00156843957505075,0.5386649608193 +7.406,0.559942401750866,-0.292568894165875,1.0287950475793e-05,-0.00130063478159789,0.00157861376823258,0.000725671426157678,-0.193918193162903,0.304873845103508,-0.486191719920298,0.00217031594084764,0.605751364494394 +7.408,0.559937819387332,-0.29256318131025,1.00775723755608e-05,-0.00101941231284164,0.00140576936363839,-0.000406620027034638,0.427157192284277,-0.479742150217445,-0.30789724760237,0.00178345978752061,0.712331743428973 +7.41,0.559938324101615,-0.292563271088421,8.66147036765463e-06,0.000407993987539035,-0.000340354832636984,-0.000505917564251668,0.37685535229931,-0.512215160786222,0.0869993412077346,0.000733657336762669,0.641835814571353 +7.412,0.559939451363282,-0.292564542729581,8.05390211855439e-06,0.000488009096355436,-0.000643091279506275,-5.86226622037379e-05,-0.262100199752111,0.238897537616738,0.0229355375247716,0.00080941700527387,0.355379497257491 +7.414,0.559940276138,-0.292565843453539,8.42697971883966e-06,-0.000640406811469524,0.000615235317830074,-0.000414175414152571,-0.245701055591435,0.279973089246896,-0.265884708262543,0.000979886041420373,0.457655566456974 +7.416,0.559936889736037,-0.29256208178831,6.39720046194392e-06,-0.000494795126010416,0.000476801077481434,-0.00112216149525403,0.120680337487013,-0.140816390450934,-0.309215666381099,0.00131582974036988,0.360565289526205 +7.418,0.559938296957496,-0.292563936249229,3.93833373782404e-06,-0.000157685461521524,5.19697560263989e-05,-0.00165103807967683,0.155855752186101,-0.213476017793561,-0.198205792937181,0.00165936502941928,0.330376394459938 +7.42,0.559936258994191,-0.292561873909286,-2.06951856762672e-07,0.000128627882733919,-0.000377102993692715,-0.00191498466700266,0.358066147329512,-0.492293565492495,0.120745909311967,0.00195599541791997,0.62059962544646 +7.422,0.559938811469027,-0.292565444661204,-3.72160493018747e-06,0.00127457912779668,-0.0019172045059438,-0.00116805444242891,0.231219585936089,-0.366622269765158,0.468639263152719,0.00258158405850053,0.638355030196 +7.424,0.559941357310702,-0.292569542727309,-4.87916962647883e-06,0.00105350622647838,-0.00184359207275351,-4.04276143915794e-05,-0.16558834683985,0.144503382846281,0.511942695249949,0.00212375645777799,0.557123012882214 +7.426,0.559943025493933,-0.292572819029495,-3.88331538775377e-06,0.000612225740437356,-0.00133919097455874,0.00087971633857066,-0.210702723504921,0.278363724948916,0.381610498015759,0.00171527072497079,0.517212309652102 +7.428,0.559943806213663,-0.292574899491208,-1.36030427219658e-06,0.000210695332458789,-0.00073013717295797,0.00148601437767129,-0.178325386179823,0.299733680691407,0.231045985963094,0.00166905109121943,0.41835686958225 +7.43,0.559943868275263,-0.292575739578186,2.06074212293073e-06,-0.000101075804281858,-0.000140256251793242,0.00180390028242294,-0.133082984243842,0.273640630092643,0.101061447799615,0.00181216565559108,0.320630147310105 +7.432,0.559943401910446,-0.292575460516215,5.85529685749597e-06,-0.000321636604516637,0.000364425347412726,0.00189026016886979,-0.0899642311758041,0.221713591003889,0.000124822672263795,0.0019517529160264,0.239270756482259 +7.434,0.559942581728845,-0.292574281876797,9.62178279841075e-06,-0.000460932728985115,0.000746598112222412,0.00180439957311199,-0.0524748960118188,0.156628096752902,-0.0728656969474647,0.00200642107775772,0.18054192088135 +7.436,0.55994155817953,-0.292572474123766,1.30728951499431e-05,-0.000531536188563889,0.000990937734424267,0.00159879738107997,-0.257577772035085,0.386184453117458,-0.314731764498445,0.00195464610070649,0.560839392393663 +7.438,0.55994045558409,-0.292570318125859,1.60169723227299e-05,-0.00149124381712534,0.00229133592469207,0.00054547251511835,-0.150271880168466,0.244422236394982,-0.587846745859827,0.00278775334393999,0.654131228601478 +7.44,0.559935593204262,-0.292563308780067,1.52547852104168e-05,-0.00113262370923782,0.00196862668000431,-0.000752589602359604,0.460234156236721,-0.561139616397793,-0.378250997232179,0.00239263841428917,0.818392915759372 +7.442,0.559935925089253,-0.292562443619139,1.30066139132912e-05,0.000349692807821749,4.67774591006494e-05,-0.000967531473810536,0.40379354678685,-0.600428748671911,0.0403915157674521,0.00102984967026074,0.724703653367646 +7.444,0.559936991975493,-0.292563121670231,1.13846593151751e-05,0.000482550477909402,-0.000433088314683075,-0.000591023539289813,1.09547232202363e-05,-0.143727572718413,0.191010173220039,0.000877342165885281,0.239044978096345 +7.446,0.559937855291165,-0.292564175972398,1.06425197561322e-05,0.00034973662671463,-0.000528132831772939,-0.000203490780930465,-0.071172721972945,-0.0139966035046518,0.163134830856618,0.000665318340334853,0.178534126433357 +7.448,0.559938390922,-0.292565234201558,1.05706961914531e-05,0.000197859590017591,-0.000489074728701689,6.15157841367329e-05,-0.0683019511157705,0.0345393382679122,0.0996394677989464,0.000531156002803806,0.125642930391899 +7.45,0.559938646729525,-0.292566132271313,1.08885828926791e-05,7.65288222515177e-05,-0.000389975478701275,0.000195067090265365,-0.0517539926400694,0.0553641851634551,0.0399943532328664,0.000442706115078716,0.0856925728608786 +7.452,0.559938697037289,-0.292566794103473,1.13509645525145e-05,-9.15638054266411e-06,-0.000267617988047893,0.000221493197068181,-0.0350719194866553,0.0605477540744019,-0.00573837023039009,0.000347508939710806,0.070206829816149 +7.454,0.559938610104003,-0.292567202743265,1.17745556809518e-05,-6.37588556950881e-05,-0.000147784462403694,0.000172113609343808,-0.0210799113720076,0.0547854307059196,-0.0363188192619268,0.000235644931048492,0.0690279850036586 +7.456,0.559938442001866,-0.292567385241322,1.20394189898898e-05,-9.34760260307039e-05,-4.847626522419e-05,7.62179200204575e-05,-0.0101208492836493,0.0419505613649591,-0.0535927902412221,0.000129988026621007,0.0688074731035602 +7.458,0.559938236199899,-0.292567396648326,1.20794273610336e-05,-0.00010424225282969,2.0017783056161e-05,-4.22575516211046e-05,-0.236721928753627,0.32357722302638,-0.251683615642167,0.000114249111954985,0.47337525621542 +7.46,0.559938025032855,-0.29256730517019,1.18703887834054e-05,-0.00104036374104511,0.00124583262688119,-0.000930516542548101,-0.148677186340145,0.229087692607542,-0.492844329402772,0.00187091332878857,0.56345506446099 +7.462,0.559934074744935,-0.292562413317818,8.35736119084163e-06,-0.000698950998190206,0.000936368553486228,-0.00201363486923197,0.443246452555515,-0.536816861407223,-0.264981603422386,0.00232809878493501,0.744885904381637 +7.464,0.559935229228862,-0.292563559695976,3.8158493064766e-06,0.000732622069177154,-0.000901434818747947,-0.00199044295623776,0.375557584301983,-0.545826409910302,0.16275741085761,0.00230460039719104,0.68224624855794 +7.466,0.559937005233211,-0.292566019057093,3.95589365889681e-07,0.000803279339017892,-0.00124693708615522,-0.00136260522580146,-0.0333044395880666,-0.0691360777377956,0.317093428030575,0.00201415063853321,0.326247183959376 +7.468,0.559938442346218,-0.292568547444321,-1.63457159672864e-06,0.000599404310824902,-0.0011779791296991,-0.000722069244115605,-0.107754584248487,0.0712302855796623,0.287318269392543,0.0015060890913687,0.315018399362721 +7.47,0.559939402850455,-0.292570730973612,-2.49268761057242e-06,0.000372261002023991,-0.000962015943836606,-0.000213332148231414,-0.33976110841434,0.420562782418836,0.0264197268056218,0.00105335821793575,0.541302749587787 +7.472,0.559939931390226,-0.292572395508096,-2.48790018965439e-06,-0.000759640122832609,0.000504271999976435,-0.000616390336893106,-0.239684945814423,0.360016572626494,-0.285360651044672,0.00110058185229113,0.518161661048393 +7.474,0.559936364289963,-0.292568713885612,-4.95824895814512e-06,-0.00058647878123381,0.000478050346669531,-0.00135477475241023,0.366492905974663,-0.394287727464224,-0.124139989610895,0.00155174228677205,0.552440584297758 +7.476,0.559937585475101,-0.292570483306709,-7.90699919929472e-06,0.000706331501065882,-0.00107287890988029,-0.00111295029533663,0.315251080004773,-0.409236288453933,0.24688569105071,0.00169959751251695,0.572547052806416 +7.478,0.559939189615968,-0.292573005401252,-9.41005013949114e-06,0.000674525538785145,-0.00115889480714602,-0.000367231988207498,-0.0766433392030084,0.0483713722445255,0.356446943198546,0.00139028098227165,0.367788545787649 +7.48,0.559940283577257,-0.292575118885938,-9.37592715212487e-06,0.000399758144253814,-0.000879393420902165,0.000312837477457715,-0.136296060715375,0.161653433833277,0.292211266288991,0.0010153849762161,0.36068805494892 +7.482,0.559940788648545,-0.292576522974935,-8.15870022966014e-06,0.000129341295923583,-0.000512281071812838,0.000801613076948598,-0.354649022815734,0.48082912468972,0.00621211058810453,0.000960075305642167,0.597504114506333 +7.484,0.55994080094244,-0.292577168010225,-6.16947484433084e-06,-0.00101883794700897,0.00104392307785651,0.000337685919810131,-0.243761844237473,0.390787842002888,-0.323757864605307,0.00149727683986124,0.562986792968642 +7.486,0.559936713296757,-0.292572347282624,-6.80795655041977e-06,-0.000845706081026204,0.00105087029619854,-0.000493418381472488,0.369440574500531,-0.389553064604446,-0.177016239553594,0.00143631781096387,0.565307595292769 +7.488,0.559937418118116,-0.29257296452904,-8.14314837022101e-06,0.000458924350993321,-0.000514289180561454,-0.000370379038404326,0.325097134976035,-0.425516780286985,0.183854381348582,0.000782486775138421,0.566175865801871 +7.49,0.559938548994161,-0.292574404439346,-8.28947270403724e-06,0.000454682458878081,-0.00065119682494959,0.000241999143921922,-0.0604883947236002,0.0164616889216957,0.288212735484851,0.000830275272963604,0.294951545163021 +7.492,0.559939236847952,-0.29257556931634,-7.17515179453343e-06,0.000216970772098947,-0.000448442424874678,0.000782471903534951,-0.116504326887226,0.119630400207579,0.22248893004078,0.000927598622354682,0.278183419397998 +7.494,0.559939416877249,-0.292576198209046,-5.15958508989778e-06,-1.1334848670773e-05,-0.000172675224119326,0.00113195486408495,-0.0999967600598291,0.136048223239171,0.127647570801537,0.00114510568339547,0.21166571144267 +7.496,0.559939191508557,-0.292576260017237,-2.64733233819314e-06,-0.000183016268140414,9.57504680820679e-05,0.00129306218674116,-0.0710327616379463,0.123500676765105,0.0419239479278816,0.00130945520172391,0.148511574623704 +7.498,0.559938684812176,-0.292575815207173,1.26636570674243e-08,-0.00029546589522259,0.000321327482941149,0.00129965065579649,-0.0432849201342986,0.0972993824261127,-0.0254371833396623,0.00137100082919203,0.10948883243414 +7.5,0.559938009644976,-0.292574974707305,2.55127028499225e-06,-0.000356155948677589,0.000484947997786476,0.00119131345338252,-0.0197832075027162,0.064303999184455,-0.073653512244999,0.00133463454344091,0.099755799211044 +7.502,0.559937260188382,-0.292573875415182,4.77791747059697e-06,-0.000374598725233446,0.000578543479678941,0.00100503660681653,-0.00103870774479595,0.0295596312947452,-0.104757342864582,0.00121866129169135,0.108852889718684 +7.504,0.559936511250075,-0.292572660533386,6.5714167122588e-06,-0.000360310779656774,0.00060318652296547,0.000772284081924143,0.0131024808710869,-0.00287744001886256,-0.121685551421626,0.00104406922309656,0.122422743356064 +7.506,0.559935818945263,-0.29257146266909,7.86705379829389e-06,-0.000322188801749093,0.000567033719603489,0.000518294401129967,0.023015138114742,-0.0300739140569615,-0.127463763504954,0.000833043785993603,0.132970477535403 +7.508,0.559935222494868,-0.292570392398508,8.64459431677844e-06,-0.000268250227197816,0.000482890866737637,0.000262429027904383,0.0291717517364632,-0.0503119630748986,-0.124828764251483,0.000611564197985089,0.137711673842039 +7.51,0.559934745944354,-0.292569531105623,8.9167699099113e-06,-0.000205501794803253,0.000365785867303917,1.89793441240905e-05,0.0320947897147838,-0.0630028696123457,-0.116085118248901,0.000419988694955016,0.135923477681701 +7.512,0.559934400487689,-0.292568929255039,8.72051169327481e-06,-0.000139871068338666,0.000230879388288226,-0.000201911445091274,0.0323299398155449,-0.0684708294437582,-0.103098311990053,0.000337101526774044,0.127916931750224 +7.514,0.559934186460081,-0.29256860758807,8.10912412954612e-06,-7.61820355410587e-05,9.1902549528854e-05,-0.000393413903836169,0.0304268513717776,-0.0676795176082788,-0.0873570173707357,0.000411125626640687,0.1146191906794 +7.516,0.559934095759547,-0.29256856164484,7.14685607793031e-06,-1.81636628515689e-05,-3.98386821448592e-05,-0.000551339514574178,0.0269222792045929,-0.0619603259012552,-0.0700547642291718,0.000553075310942475,0.0973219455958658 +7.518,0.559934113805429,-0.292568766942799,5.90376607124965e-06,3.15070812773009e-05,-0.00015593875407614,-0.000673632960752826,0.0223243143970779,-0.052778192882033,-0.052164174699352,0.000692163966850378,0.0774920239718719 +7.52,0.559934221787872,-0.292569185399857,4.4523242349187e-06,7.11335947367529e-05,-0.000250951453673015,-0.000759996213371609,0.0170983268793518,-0.0415527653431588,-0.0344919119759186,0.000803511583451014,0.0566451858633309 +7.522,0.559934398339808,-0.292569770748613,2.86378121776287e-06,9.99003887947158e-05,-0.000322149815448793,-0.000811600608656516,0.0116553247886462,-0.0295382536173932,-0.0177119329117004,0.000878894839697363,0.0363602473886365 +7.524,0.559934621389427,-0.292570473999119,1.205921800293e-06,0.000117754893891333,-0.000369104468142574,-0.000830843945018403,0.00634323191888719,-0.0177566145918671,-0.00237962168108193,0.000916736594890765,0.0190051717247168 +7.526,0.559934869359384,-0.292571247166486,-4.59594562310373e-07,0.000125273316470262,-0.000393176273816254,-0.000821119095380842,-0.228825340009519,0.290913828967326,-0.175580781786989,0.000918976362541793,0.409659008259104 +7.528,0.559935122482693,-0.292572046704214,-2.07855458123074e-06,-0.000797546466146847,0.00079455084772686,-0.00153316707216644,-0.151533889318482,0.22215675687246,-0.401627746873325,0.0019021021756105,0.483343554104758 +7.53,0.559931679173519,-0.292568068963095,-6.5922628509768e-06,-0.000480862240803734,0.000495450753673686,-0.00242763008287432,0.422102145229746,-0.521274620950905,-0.176621532591312,0.00252390327929241,0.693608403373234 +7.532,0.55993319903373,-0.292570064901199,-1.1789074912727e-05,0.000890862114771949,-0.00129054763607653,-0.00223965320253161,0.349147359052253,-0.513052203863383,0.241566853557066,0.002734080279752,0.665943681522468 +7.534,0.559935242621978,-0.292573231153639,-1.55508756611022e-05,0.000915727195405122,-0.00155675806177962,-0.00146136266864616,-0.0551764114814872,-0.0266724373767292,0.388884120679954,0.00232328061340704,0.393683520885255 +7.536,0.559936861942511,-0.292576291933446,-1.76345255873123e-05,0.000670156468845975,-0.00139723738558346,-0.000684116719811618,-0.128054857939601,0.11718716247033,0.351693136249701,0.00169392965932297,0.392197577472031 +7.538,0.559937923247854,-0.292578820103182,-1.8287342540349e-05,0.00040350776364666,-0.00108800941189825,-5.45901236472029e-05,-0.124744179860738,0.168211643676545,0.272687215662816,0.00116170696705413,0.343823479511554 +7.54,0.559938475973566,-0.292580643971094,-1.78528860819011e-05,0.00017117974940308,-0.000724390810877353,0.000406632142839525,-0.104912184814587,0.182067067134505,0.192327723543172,0.000848171122521578,0.284859503441309 +7.542,0.559938607966851,-0.292581717666425,-1.66608139689911e-05,-1.6140975611643e-05,-0.000359741143360308,0.000714720770525399,-0.0824544373750812,0.173254345921943,0.122004104621944,0.000800312439701081,0.227378108375199 +7.544,0.559938411409663,-0.292582082935667,-1.49940029997991e-05,-0.000158638000097282,-3.13734271895037e-05,0.000894648561327355,-0.0608621501183023,0.148919282683104,0.0643953124548257,0.000909145948290804,0.173285632231953 +7.546,0.559937973414851,-0.292581843160134,-1.30822197236813e-05,-0.00025958957608488,0.000235935987372175,0.00097230202034473,-0.0412002319066974,0.115150286646183,0.0191099684002991,0.00103364585662385,0.123783030000579 +7.548,0.559937373051359,-0.292581139191718,-1.11047949184206e-05,-0.000323438927724054,0.000429227719395178,0.000971088434928542,-0.0239014937008919,0.0774898096106292,-0.0153618875745594,0.00110989275315971,0.0825344751269355 +7.55,0.55993667965914,-0.292580126249256,-9.19786598396755e-06,-0.000355195550888437,0.000545895225814658,0.0009108544700465,-0.00917750516552738,0.0405376526339489,-0.0407878527125639,0.00111974164097879,0.0582338115791487 +7.552,0.559935952269156,-0.292578955610814,-7.46137703823424e-06,-0.000360148948386167,0.000591378329930992,0.000807937024078269,0.00288269896146192,0.00765753375642473,-0.058784478485422,0.00106404785090337,0.0593511810104588 +7.554,0.559935239063347,-0.292577760735937,-5.96611788765411e-06,-0.000343664755042588,0.00057652536084036,0.000675716556104785,0.0122848059572016,-0.019074927897599,-0.0706607418878415,0.000952407381189741,0.0742139459660033 +7.556,0.559934577610135,-0.292576649509371,-4.7585108138154e-06,-0.000311009724557366,0.000515078618340604,0.000525294056526934,0.0191184119438716,-0.0387375206877303,-0.0774139712872114,0.00079872828775713,0.0886511823651839 +7.558,0.559933995024448,-0.292575700421463,-3.86494166154661e-06,-0.00026719110726711,0.000421575278089456,0.000366060670955973,0.0235496272968492,-0.0513234694986435,-0.0798043041823462,0.000618964633658147,0.0977620091509331 +7.56,0.559933508845706,-0.292574963208259,-3.29426812999134e-06,-0.000216811215369959,0.000309784740346007,0.000206076839797513,0.0258112176909482,-0.0574709856162912,-0.0784505652714141,0.000430629019415055,0.100616223034866 +7.562,0.559933127779587,-0.292574461282502,-3.04063430235646e-06,-0.000163946236503305,0.000191691335624266,5.22584098702818e-05,0.0261891690278508,-0.0582077628666312,-0.0739151251238613,0.000257594406032396,0.0976599301371007 +7.564,0.55993285306076,-0.292574196442916,-3.08523449051024e-06,-0.000112054539258567,7.69536888795082e-05,-8.95836606978993e-05,0.025006430842698,-0.0547375512798093,-0.0667622958965025,0.000162798409895952,0.0898817292722639 +7.566,0.55993267956143,-0.292574153467746,-3.39896894514802e-06,-6.39205131325244e-05,-2.72588694949474e-05,-0.000214790773715699,0.0226054947954924,-0.0482796424852651,-0.057586348198631,0.000225751975492256,0.0784736884076951 +7.568,0.559932597378708,-0.292574305478394,-3.94439758537313e-06,-2.16325600765874e-05,-0.000116164881061574,-0.000319929053492449,0.0193308471174678,-0.0399609096715673,-0.0470115330839426,0.000341052556823858,0.0646578703249705 +7.57,0.55993259303119,-0.292574618127271,-4.67868515911796e-06,1.34028753373553e-05,-0.000187102508181234,-0.00040283690605149,0.0155125635045739,-0.0307528996018735,-0.0356721989005263,0.000444369844287565,0.0495871579625719 +7.572,0.559932650990209,-0.292575053888427,-5.55574520957891e-06,4.04176939417011e-05,-0.000239176479469054,-0.000462617849094539,0.0114523948310789,-0.0214438895668086,-0.024182409805498,0.000522354527706646,0.0342897461513125 +7.574,0.559932754701965,-0.292575574833188,-6.52915655549591e-06,5.92124546616657e-05,-0.000272878066448459,-0.000499566545273472,0.00741301757478272,-0.0126354647508714,-0.0131033072239542,0.000572306986758139,0.0196546294607627 +7.576,0.559932887840028,-0.292576145400693,-7.55401139067302e-06,7.00697642408354e-05,-0.000289718338472545,-0.000515031077990361,0.00361090812112436,-0.00475469639356477,-0.00291427251257467,0.000595065961725229,0.00664370224586623 +7.578,0.559933034981022,-0.292576733706542,-8.58928086745758e-06,7.36560871461648e-05,-0.00029189685202272,-0.000511223635323772,0.00021262277355832,0.00192530227523069,0.00600817930734207,0.000593277841072891,0.00631270274003279 +7.58,0.559933182464376,-0.292577312988101,-9.59890593196788e-06,7.09202553350686e-05,-0.000282017129371623,-0.000490998360760995,-0.00266555608835892,0.00726133963029295,0.0134017518107632,0.000570651149254768,0.0154738228658579 +7.582,0.559933318662044,-0.29257786177506,-1.05532743105013e-05,6.29938627927303e-05,-0.000262851493501552,-0.000457616628080725,-0.00495525030036753,0.0112158461962462,0.0191200311477784,0.000531481055806807,0.0227139891372951 +7.584,0.559933434439828,-0.292578364394075,-1.1429372444291e-05,5.10992541335962e-05,-0.000237153744586634,-0.000414518236169873,-0.00663134421679739,0.0138339633116844,0.0231256291572622,0.000480289912929529,0.0277515403347255 +7.586,0.55993352305906,-0.292578810390038,-1.2211347255181e-05,3.64684859255378e-05,-0.000207515640254808,-0.000365114111451666,-0.00770585148468392,0.0152228534708212,0.0254768389917371,0.000421545971155227,0.030662432061221 +7.588,0.559933580313771,-0.292579194456636,-1.28898288900975e-05,2.0275848194864e-05,-0.000176262330703356,-0.000312610880202936,-0.00822079650880859,0.0155334057977523,0.0263098868169409,0.000359451083829573,0.0316398219849152 +7.59,0.559933604162453,-0.292579515439361,-1.34617907759926e-05,3.58529989030702e-06,-0.000145382017063806,-0.000259874564183914,-0.00824075092192772,0.0149442809412101,0.0258190187198947,0.000297797875027045,0.0309493656843778 +7.592,0.559933594654971,-0.292579775984704,-1.39293271468333e-05,-1.26871554928506e-05,-0.000116485206938508,-0.000209334805323346,-0.00784546121124198,0.0136481353198078,0.0242362504648674,0.000239897536606298,0.028900150448063 +7.594,0.559933553413831,-0.292579981380189,-1.42991299972861e-05,-2.77965449546644e-05,-9.07894757845684e-05,-0.000162929562324433,-0.00712298212080192,0.0118398843923468,0.0218123247354708,0.000188577355755893,0.0258204811551418 +7.596,0.559933483468791,-0.292580139142607,-1.45810453961309e-05,-4.11790839760552e-05,-6.91256693691265e-05,-0.000122085506381472,-0.00616358874355583,0.00970694136876396,0.0187998890179446,0.000146215409554729,0.0220374763533246 +7.598,0.559933388697495,-0.292580257882866,-1.47874720228119e-05,-5.2450899928885e-05,-5.19617103095169e-05,-8.77300062526633e-05,-0.00505464298194638,0.00742137187814902,0.0154395760326059,0.00011466329071997,0.0178607582228566 +7.6,0.559933273665191,-0.292580346989449,-1.49319654211416e-05,-6.1397655903843e-05,-3.94401818565271e-05,-6.03272022510414e-05,-0.00387653553702029,0.0051339709462832,0.0119492789135651,9.46814207054409e-05,0.0135709414559651 +7.602,0.559933143106871,-0.292580415643594,-1.50287808318161e-05,-6.79570420769679e-05,-3.14258265243818e-05,-3.99328905983975e-05,-0.00269969550881611,0.00297020276776429,0.00851664093762103,8.48550404639283e-05,0.00941507478368169 +7.604,0.559933001837023,-0.292580472692755,-1.50916969835352e-05,-7.21964379391062e-05,-2.75593707854713e-05,-2.6260638500561e-05,-0.00158266381944006,0.00102795531115204,0.00529457272295751,8.16178026146468e-05,0.00562085555816692 +7.606,0.55993285432112,-0.292580525881077,-1.51338233858184e-05,-7.42876973547274e-05,-2.73140052797741e-05,-1.87545997065698e-05,-0.000571104941111982,-0.000623044633245025,0.00239944427868436,8.13415753034373e-05,0.00254394935391589 +7.608,0.559932704686234,-0.292580581948776,-1.51667153823615e-05,-7.44808577035544e-05,-3.00515493184516e-05,-1.66628613858225e-05,0.000302324672236993,-0.00194032569872533,-8.8447004929423e-05,8.20252688521018e-05,0.00196572808324502 +7.61,0.559932556397689,-0.292580646087274,-1.52004748313617e-05,-7.30783986657793e-05,-3.50753080746763e-05,-1.91083877262875e-05,0.00101742961277793,-0.0029065321434397,-0.00212261883070359,8.32818111569757e-05,0.00374013406420987 +7.612,0.559932412372639,-0.292580722250008,-1.52431489332666e-05,-7.04111392524431e-05,-4.16776778922091e-05,-2.51533367086359e-05,0.0015653688553759,-0.00352631580879752,-0.00368679360825024,8.56005123401238e-05,0.00533645293679153 +7.614,0.559932274753132,-0.292580812797986,-1.53010881781962e-05,-6.68169232442764e-05,-4.91805713098648e-05,-3.38555621592869e-05,0.00194716988366831,-0.00382256332489799,-0.00479040361024449,8.96070807208758e-05,0.00643050757543785 +7.616,0.559932145104946,-0.292580918972293,-1.53785711819038e-05,-6.2622459717769e-05,-5.69679311918028e-05,-4.43149511496161e-05,0.00217198627138943,-0.00383224879607897,-0.00546358462291861,9.55548666514189e-05,0.0070181487680118 +7.618,0.559932024263293,-0.29258104066971,-1.54783479827947e-05,-5.81289781587177e-05,-6.45095664941824e-05,-5.57099006509637e-05,0.0022552473638552,-0.00360218661149943,-0.00575202927302993,0.000103170031024442,0.00715176410503275 +7.62,0.559931912589033,-0.292581177010559,-1.56014107845076e-05,-5.36014702623492e-05,-7.1376677637799e-05,-6.73230682417333e-05,0.00221680397649904,-0.00318492938272327,-0.00571196812678249,0.000111804039472538,0.00690540186553506 +7.622,0.559931809857412,-0.292581326176421,-1.57476402557616e-05,-4.92617622527225e-05,-7.7249284025074e-05,-7.85577731580912e-05,0.00207917015549148,-0.00263500267091532,-0.00540552318184012,0.000120687600134349,0.00636285065679121 +7.624,0.559931715541984,-0.292581486007695,-1.591564187714e-05,-4.52847896403823e-05,-8.19166883214614e-05,-8.89451609690961e-05,0.00186593381717729,-0.00200563347874534,-0.00489658902401177,0.000129121251768048,0.00561078058127588 +7.626,0.559931628718253,-0.292581653843174,-1.6103420899638e-05,-4.17980269840125e-05,-8.52718179400563e-05,-9.81441292541404e-05,0.00160038463037144,-0.00134606269533917,-0.00424736100804767,0.000136567302461503,0.00473425720441935 +7.628,0.559931548349876,-0.292581827094967,-1.63082183941565e-05,-3.88832511188973e-05,-8.73009391028175e-05,-0.000105934605001285,0.00130439769402645,-0.000699501481039295,-0.00351556521653732,0.000142672708401387,0.00381444025485848 +7.63,0.559931473185249,-0.292582003046931,-1.65271593196431e-05,-3.65804362079073e-05,-8.80698238642132e-05,-0.000112206390120288,0.000997577742636027,-0.000101730776575622,-0.00275240530800458,0.000147257244889549,0.00292937629590963 +7.632,0.559931402028132,-0.292582179374263,-1.67570439546377e-05,-3.48929401483527e-05,-8.770786220912e-05,-0.000116944226233304,0.000696671484388312,0.000419676897395856,-0.00200120388750486,0.000150286853765713,0.00216016130294296 +7.634,0.559931333613488,-0.292582353878379,-1.69949362245764e-05,-3.37937502703538e-05,-8.63911162746296e-05,-0.000120211205670309,0.000415221745873427,0.000845577646092259,-0.00129667976270215,0.000151842604354709,0.00160274422813449 +7.636,0.55993126685313,-0.292582524938728,-1.72378887773189e-05,-3.32320531648592e-05,-8.43255516247514e-05,-0.000122130945284113,0.000163448830860711,0.0011649905033765,-0.000664790001686777,0.000152089236339596,0.00135124540317807 +7.638,0.559931200685276,-0.292582691180586,-1.74834600057128e-05,-3.3139954946911e-05,-8.17311542611241e-05,-0.000122870365677055,-5.16833104073117e-05,0.00137444194914675,-0.000123038358140894,0.00015124604111299,0.00138090559913522 +7.64,0.559931134293311,-0.292582851863345,-1.77293702400272e-05,-3.34387864064885e-05,-7.88277838281637e-05,-0.000122623098716676,-0.000226243440650426,0.00147701399374579,0.000318842009211626,0.000149560677580968,0.00152787979206361 +7.642,0.55993106693013,-0.292583006491721,-1.79739524005795e-05,-3.40449287095128e-05,-7.58230982861402e-05,-0.000121594997640209,-0.000358998414331228,0.00148119471201786,0.000657940053127028,0.000147287280019925,0.00166003094847981 +7.644,0.559930998113596,-0.292583155155738,-1.8215750230588e-05,-3.48747800638132e-05,-7.2903004980093e-05,-0.000119991338504168,-0.000450997426902131,0.00139962184203955,0.000897041623280722,0.000144668654986658,0.00172250505186041 +7.646,0.55993092743101,-0.292583298103741,-1.84539177545961e-05,-3.58489184171211e-05,-7.02246109179826e-05,-0.000118006831147086,-0.00050511562987649,0.00124780111243993,0.00104342324191241,0.000141923405848494,0.00170319742763863 +7.648,0.559930854717922,-0.292583436054182,-1.86877775551764e-05,-3.68952425833194e-05,-6.79118005303327e-05,-0.000115817645536518,-0.000525584513413104,0.00104287065094298,0.00110763613644965,0.000139237202622633,0.00160955772997027 +7.65,0.559930779850039,-0.292583569750943,-1.89171883367423e-05,-3.79512564707738e-05,-6.60531283142102e-05,-0.000113576286601287,-0.000517536964674766,0.000802466284390582,0.00110234921190603,0.000136758497015512,0.00145841366984071 +7.652,0.559930702912896,-0.292583700266695,-1.91420827015815e-05,-3.89653904420183e-05,-6.47019353927707e-05,-0.000111408248688895,-0.000486587388435324,0.000543732284894795,0.00104129708589021,0.000134597325277272,0.00127149978580598 +7.654,0.559930623988478,-0.292583828558685,-1.93628213314978e-05,-3.98976060245148e-05,-6.38781991746313e-05,-0.000109411098257727,-0.000438461607297174,0.00028250305567432,0.000938370534927102,0.000132827074492527,0.00107359015381025 +7.656,0.559930543322472,-0.292583955779491,-1.95797270946124e-05,-4.07192368712072e-05,-6.35719231700733e-05,-0.000107654766549186,-0.000378688309878854,3.26738497333863e-05,0.000806869729878289,0.000131487620815326,0.000891914333043912 +7.658,0.55993046111153,-0.292584082846378,-1.97934403976946e-05,-4.14123592640304e-05,-6.37475037756977e-05,-0.000106183619338213,-0.000312354926648269,-0.00019423928091313,0.000658929593174983,0.000130589772774166,0.000754640780247691 +7.66,0.559930377673035,-0.292584210769507,-2.00044615719652e-05,-4.19686565778001e-05,-6.43488802937257e-05,-0.000105019048176486,-0.000243931291830012,-0.000389354510434773,0.000505116112137558,0.000130119741046071,0.000682818934030628 +7.662,0.559930293236904,-0.292584340241899,-2.02135165904005e-05,-4.23880844313504e-05,-6.53049218174367e-05,-0.000104163154889663,-0.000177155588807338,-0.000546511308426504,0.000354181997972077,0.000130044013133665,0.000674910068506328 +7.664,0.559930208120697,-0.292584471989194,-2.04211141915239e-05,-4.26772789330295e-05,-6.6534925527432e-05,-0.000103602320184598,-0.000114980136525354,-0.000662208930055933,0.000212966557577621,0.000130313802798094,0.000705050248909732 +7.666,0.559930122527788,-0.292584606381601,-2.06279258711389e-05,-4.28480049774518e-05,-6.79537575376607e-05,-0.000103311288659353,-5.95664489979017e-05,-0.000735422722723503,8.64160340450658e-05,0.000130869733164284,0.000742874467110257 +7.668,0.559930036728677,-0.292584743804224,-2.08343593461613e-05,-4.29155447290211e-05,-6.94766164183257e-05,-0.000103256656048417,-1.23229343372376e-05,-0.000767324318664112,-2.2297092118298e-05,0.000131646045237329,0.000767747110083103 +7.67,0.559929950865609,-0.292584884288067,-2.10409524953326e-05,-4.28972967148008e-05,-7.10230548123168e-05,-0.000103400477027826,2.60261048847146e-05,-0.000760934735356956,-0.000111583304222636,0.000132574926098011,0.000769512744137141 +7.672,0.559929865139491,-0.292585027896443,-2.12479612542726e-05,-4.28114403094822e-05,-7.25203553597539e-05,-0.000103702989265308,5.5347851299742e-05,-0.000720736196422933,-0.000181195777138232,0.000133590161858716,0.000745222087119285 +7.674,0.559929779619848,-0.292585174369488,-2.14557644523938e-05,-4.26759053096018e-05,-7.39059995980088e-05,-0.000104125260136379,7.59950505278821e-05,-0.000652267632271505,-0.00023196485531588,0.000134630603760971,0.000696445264120252 +7.676,0.559929694435869,-0.292585323520442,-2.16644622948181e-05,-4.25074601073707e-05,-7.51294258888396e-05,-0.000104630848686571,8.86944614975271e-05,-0.000561726238440653,-0.000265525328287168,0.000135642652937926,0.000627619928312533 +7.678,0.559929609590008,-0.292585474887192,-2.18742878471401e-05,-4.23211274636117e-05,-7.61529045517712e-05,-0.000105187361449527,9.44362782441541e-05,-0.000455592178562328,-0.000284054319122951,0.000136582296474236,0.000545132369272068 +7.68,0.55992952515136,-0.29258562813206,-2.20852117406162e-05,-4.21297149943942e-05,-7.69517946030887e-05,-0.000105767065963063,9.43708167190335e-05,-0.00034029199249677,-0.000290031374778823,0.000137416024613506,0.000456971213055848 +7.682,0.559929441071148,-0.29258578269437,-2.22973561109924e-05,-4.19436441967355e-05,-7.75140725217584e-05,-0.000106347486948643,8.97159360667619e-05,-0.000221909879365264,-0.000286030824899239,0.000138121282602293,0.000372969940527089 +7.684,0.559929357376783,-0.29258593818835,-2.25106016884108e-05,-4.17708512501271e-05,-7.78394341205499e-05,-0.00010691118926266,8.16789205692272e-05,-0.000105954408445736,-0.000274551552505576,0.000138685918203414,0.000305411751112596 +7.686,0.559929273987743,-0.292586094052106,-2.2725000868043e-05,-4.16169285144587e-05,-7.79378901555413e-05,-0.000107445693158665,7.13933703845186e-05,2.81730542105932e-06,-0.000257886540241564,0.000139107370182966,0.00026760122978503 +7.688,0.559929190909069,-0.292586249939911,-2.29403844610454e-05,-4.1485277768589e-05,-7.78281648988656e-05,-0.000107942735423626,5.98729954527007e-05,0.000100517288941087,-0.000238032681233269,0.000139391124731085,0.000265232083835354 +7.69,0.559929108046632,-0.292586405364766,-2.31567718097375e-05,-4.13774365326478e-05,-7.75358209997769e-05,-0.000108397823883598,4.79802725305301e-05,0.00018418981617264,-0.000216637375579248,0.00013954921717739,0.000288374318259583 +7.692,0.559929025399323,-0.292586560083195,-2.33739757565798e-05,-4.12933566784669e-05,-7.7091405634175e-05,-0.000108809284925943,3.64100000126867e-05,0.000251824248949288,-0.000194978736287552,0.000139598304482981,0.000320558649959859 +7.694,0.559928942873205,-0.292586713730389,-2.35920089494412e-05,-4.12317965325971e-05,-7.65285240039799e-05,-0.000109177738828748,2.56851345770848e-05,0.000302324575100881,-0.000173973177004306,0.000139558069230309,0.000349752113882307 +7.696,0.559928860472136,-0.292586866197291,-2.38106867118948e-05,-4.11906161401586e-05,-7.58821073337716e-05,-0.000109505177633961,1.61635010954101e-05,0.000335442788133866,-0.000154205286554698,0.000139449435280553,0.000369543493083154 +7.698,0.55992877811074,-0.292587017258818,-2.40300296599771e-05,-4.11671425282155e-05,-7.51867528514443e-05,-0.000109794559974967,8.05208677283706e-06,0.000351684414225067,-0.000135973055737619,0.000139293312216988,0.000377141134320895 +7.7,0.559928695803566,-0.292587166944302,-2.42498649517947e-05,-4.11584077930672e-05,-7.44753696768712e-05,-0.000110049069856911,1.42762190729254e-06,0.000352194017001826,-0.000119343234953344,0.000139109284366423,0.000371867545566055 +7.702,0.559928613477109,-0.292587315160297,-2.44702259394047e-05,-4.11614320405863e-05,-7.37779767834371e-05,-0.00011027193291478,-3.73990421736132e-06,0.000338628503714048,-0.000104210557711758,0.000138914911131423,0.000354320604466867 +7.704,0.559928531157838,-0.292587462056209,-2.46909526834538e-05,-4.11733674099367e-05,-7.31208556620151e-05,-0.000110465912087758,-7.56166656839066e-06,0.000313025508295736,-9.03571063395528e-05,0.000138724992160747,0.000325893470801661 +7.706,0.559928448783639,-0.292587607643719,-2.49120895877558e-05,-4.11916787068599e-05,-7.25258747502541e-05,-0.000110633361340139,-1.02049965722927e-05,0.000277673089378698,-7.75069513839454e-05,0.00013855142563105,0.00028846804681452 +7.708,0.559928366391123,-0.292587752159708,-2.51334861288144e-05,-4.12141873962258e-05,-7.20101633045002e-05,-0.000110775939893294,-1.18700535534767e-05,0.000234986138182757,-6.53739068149311e-05,0.000138402968613808,0.000244198957822623 +7.71,0.55992828392689,-0.292587895684372,-2.53551933473289e-05,-4.12391589210738e-05,-7.15859301975231e-05,-0.000110894856967398,-1.27691676653938e-05,0.000187393461863026,-5.37000400682278e-05,0.000138285512374153,0.000195353667729085 +7.712,0.559928201434488,-0.292588038503429,-2.55770655566839e-05,-4.12652640668874e-05,-7.12605894570482e-05,-0.000110990740053567,-1.31095759225271e-05,0.000137239344892352,-4.22842203897629e-05,0.000138202163535577,0.00014420282265379 +7.714,0.559928118865834,-0.29258818072673,-2.57991563075433e-05,-4.12915972247639e-05,-7.10369728179537e-05,-0.000111063993848957,-1.30801966503204e-05,8.67010525833922e-05,-3.10001972070884e-05,0.000138153748549187,9.30009477927917e-05 +7.716,0.559928036268099,-0.29258832265132,-2.60213215320798e-05,-4.13175848534887e-05,-7.09137852467146e-05,-0.000111114740842395,-1.28421370782698e-05,3.77238622245086e-05,-1.98047784830748e-05,0.000138139036440157,4.44998822092198e-05 +7.718,0.559927953595494,-0.292588464381871,-2.62436152709128e-05,-4.13429657730769e-05,-7.08860773690556e-05,-0.00011114321296289,-1.25229132596313e-05,-8.02648225268171e-06,-8.73730427668875e-06,0.00013815531322175,1.72507466471543e-05 +7.72,0.559927870896236,-0.29258860619563,-2.64658943839313e-05,-4.13676765065272e-05,-7.09458911757253e-05,-0.000111149690059502,-1.22144030977652e-05,-4.91940932394972e-05,2.08842666000413e-06,0.000138198616977848,5.07307794007273e-05 +7.722,0.559927788124788,-0.292588748165436,-2.66882140311508e-05,-4.1391823385468e-05,-7.10828537420137e-05,-0.00011113485925625,-1.19734222559707e-05,-8.47475110960469e-05,1.24979219619975e-05,0.000138264283461741,8.64968296000642e-05 +7.724,0.559927705328942,-0.292588890527045,-2.69104338209564e-05,-4.14155701955511e-05,-7.12848812201095e-05,-0.000111099698371654,-1.18248189041307e-05,-0.000113979596598286,2.22736967697124e-05,0.000138347124015862,0.000116735994237478 +7.726,0.559927622462507,-0.292589033304961,-2.71326128246374e-05,-4.14391226610845e-05,-7.15387721284067e-05,-0.000111045764469171,-1.17663379017075e-05,-0.000136495387905097,3.11751024362808e-05,0.000138441896155402,0.000140503824285649 +7.728,0.559927539572451,-0.292589176682133,-2.7354616878833e-05,-4.14626355471579e-05,-7.18308627717299e-05,-0.000110974997961909,-1.17744633464646e-05,-0.000152189712217413,3.89587511618263e-05,0.00013854339813103,0.000157537712259653 +7.73,0.559927456611965,-0.292589320628412,-2.75765128164851e-05,-4.14862205144704e-05,-7.21475309772765e-05,-0.000110889929464524,-1.1810913360748e-05,-0.00016121655053002,4.53977818817324e-05,0.000138646850578509,0.000167902449175094 +7.732,0.559927373627569,-0.292589465272257,-2.77981765966911e-05,-4.15098792006009e-05,-7.247572897385e-05,-0.000110793406834382,-1.18291071405667e-05,-0.000163952858238272,5.02991198977487e-05,0.000138747902180567,0.000171902498419104 +7.734,0.559927290572448,-0.292589610531328,-2.80196864438226e-05,-4.15335369430327e-05,-7.28033424102295e-05,-0.000110688732984933,-1.17803197729188e-05,-0.000160958840002418,5.3517450893701e-05,0.000138842921918653,0.000170031296116438 +7.736,0.559927207493422,-0.292589756485627,-2.82409315286308e-05,-4.15570004796926e-05,-7.31195643338596e-05,-0.000110579337030807,-1.16189557951791e-05,-0.000152936246995781,5.49654904985755e-05,0.000138928919795036,0.000162928514768514 +7.738,0.559927124344446,-0.292589903009585,-2.84620037919459e-05,-4.15800127662134e-05,-7.34150873982127e-05,-0.000110468871022938,-1.1306844351996e-05,-0.000140686958614752,5.46202744430522e-05,0.000139003755288871,0.000151340805580331 +7.74,0.559927041173371,-0.292590050145976,-2.86828070127226e-05,-4.16022278571006e-05,-7.36823121683187e-05,-0.000110360855933035,-1.08164727198128e-05,-0.000125073278127381,5.25251812469181e-05,0.000139065980784,0.000136085324883506 +7.742,0.559926957935535,-0.292590197738834,-2.89034472156779e-05,-4.16232786570926e-05,-7.39153805107221e-05,-0.000110258770297951,-1.01331790157918e-05,-0.000106980629212344,4.87880473929107e-05,0.000139114978452455,0.000118016142590953 +7.744,0.559926874680256,-0.292590345807498,-2.91238420939144e-05,-4.16427605731637e-05,-7.4110234685168e-05,-0.000110165703743463,-9.25569343159376e-06,-8.72841417157559e-05,4.35759900446797e-05,0.00013915074083359,9.79951843935702e-05 +7.746,0.559926791364493,-0.292590494179773,-2.93441100306518e-05,-4.1660301430819e-05,-7.42645170775852e-05,-0.000110084466337772,-8.19612433709205e-06,-6.6819820514157e-05,3.7107114250191e-05,0.000139173952092141,7.68700383483055e-05 +7.748,0.55992670803905,-0.292590642865567,-2.95641799592655e-05,-4.16755450705121e-05,-7.43775139672247e-05,-0.000110017275286462,-6.9788619351086e-06,-4.63603530606278e-05,2.96398010241068e-05,0.000139185726647262,5.54662478861155e-05 +7.75,0.559926624662312,-0.292590791689828,-2.97841791317977e-05,-4.16882168785594e-05,-7.44499584898277e-05,-0.000109965907133676,-5.63867008409181e-06,-2.65959823567503e-05,2.14607923507153e-05,0.000139187659213678,3.46367793849013e-05 +7.752,0.559926541286183,-0.292590940665401,-3.00040435878002e-05,-4.16980997508485e-05,-7.44838978966517e-05,-0.00010993143211706,-4.21819523523237e-06,-8.12045222317707e-06,1.28722744330267e-05,0.000139181544523756,1.57933645696727e-05 +7.754,0.559926457869913,-0.29259108962542,-3.02239048602659e-05,-4.17050896595004e-05,-7.44824402987204e-05,-0.000109914418035943,-2.76539208430915e-06,8.5781590123135e-06,4.17888032594833e-06,0.00013916942088167,9.93454811247563e-06 +7.756,0.559926374465824,-0.292591238595162,-3.0443701259944e-05,-4.17091613191857e-05,-7.44495852606024e-05,-0.000109914716595756,-1.33049127502672e-06,2.31219453264754e-05,-4.32478532763252e-06,0.000139153296072177,2.35605248422769e-05 +7.758,0.559926291033268,-0.292591387423761,-3.06635637266489e-05,-4.17104116246005e-05,-7.43899525174145e-05,-0.000109931717177254,3.66789954918457e-08,3.52437176706339e-05,-1.2365383884333e-05,0.000139135207316396,3.7350016053584e-05 +7.76,0.559926207624178,-0.292591536154972,-3.0883428128653e-05,-4.17090146032037e-05,-7.43086103899199e-05,-0.000109964178131293,1.28943383979701e-06,4.47837530989232e-05,-1.97005814378557e-05,0.000139116972182915,4.89424160646173e-05 +7.762,0.55992612419721,-0.292591684658203,-3.11034204391741e-05,-4.17052538892413e-05,-7.42108175050188e-05,-0.000110010519503005,2.38642438911572e-06,5.16834457134728e-05,-2.61268636994568e-05,0.000139100280510322,5.79610782245503e-05 +7.764,0.559926040803162,-0.292591832998242,-3.1323470206665e-05,-4.16994689056473e-05,-7.4101876607066e-05,-0.000110068685586091,3.29355986696195e-06,5.59764005939608e-05,-3.14852467076026e-05,0.000139086481623311,6.43080533082089e-05 +7.766,0.559925957399334,-0.292591981065709,-3.15436951815184e-05,-4.16920796497734e-05,-7.3986911902643e-05,-0.000110136460489836,3.98525657150899e-06,5.77776368456733e-05,-3.56646361687731e-05,0.000139076714685247,6.80154678177121e-05 +7.768,0.559925874034843,-0.292592128945889,-3.17640160486243e-05,-4.16835278793612e-05,-7.38707660596833e-05,-0.000110211344130766,4.44540932074567e-06,5.72713890242125e-05,-3.86032065627202e-05,0.00013907173310858,6.92096902298783e-05 +7.77,0.559925790665223,-0.292592276548773,-3.19845405580416e-05,-4.16742980124905e-05,-7.37578263465461e-05,-0.000110290873316087,4.66759269892226e-06,5.46979614338749e-05,-4.02875259256202e-05,0.000139072070521101,6.80935984644094e-05 +7.772,0.559925707337651,-0.292592423977195,-3.22051795418887e-05,-4.16648575085656e-05,-7.36519742139478e-05,-0.000110372494234469,4.65495003423037e-06,5.03403325927926e-05,-4.07498262625368e-05,0.000139077895944535,6.49335505405418e-05 +7.774,0.559925624005793,-0.29259257115667,-3.24260305349794e-05,-4.16556782123535e-05,-7.3556465016175e-05,-0.000110453872621137,4.4195619409529e-06,4.45108359933109e-05,-4.00635835209665e-05,0.000139089205368401,6.00486284032766e-05 +7.776,0.559925540714938,-0.292592718203055,-3.26469950323732e-05,-4.16471792608017e-05,-7.34739308699745e-05,-0.000110532748568552,3.98142630207146e-06,3.75383092706355e-05,-3.83379534654387e-05,0.000139105695656166,5.38031141683718e-05 +7.778,0.559925457417076,-0.292592865052394,-3.28681615292536e-05,-4.16397525071452e-05,-7.34063117790924e-05,-0.000110607224434999,3.36723010354238e-06,2.97560101517888e-05,-3.5711152791025e-05,0.000139126969689848,4.66052015593484e-05 +7.78,0.559925374155928,-0.292593011828302,-3.30894239301133e-05,-4.16337103403876e-05,-7.33549068293674e-05,-0.000110675593179717,2.6088367554216e-06,2.14908438226734e-05,-3.23431394575314e-05,0.000139152416861277,3.89196745540903e-05 +7.782,0.559925290882234,-0.292593158472021,-3.33108639019725e-05,-4.16293171601236e-05,-7.33203484038017e-05,-0.000110736596992829,1.74155828878305e-06,1.30536206884485e-05,-2.84080502116112e-05,0.000139181419201074,3.13120959882366e-05 +7.784,0.55992520763866,-0.292593305109696,-3.35323703180845e-05,-4.16267441072324e-05,-7.33026923466136e-05,-0.000110789225380563,8.02725943584124e-07,4.73095174554037e-06,-2.40868488287734e-05,0.000139213228504537,2.4560182406882e-05 +7.786,0.559925124375258,-0.29259345168279,-3.37540208034948e-05,-4.16261062563492e-05,-7.33014245968196e-05,-0.000110832944388144,-1.70023719638126e-07,-3.22131904891258e-06,-1.95601217576225e-05,0.000139247165614721,1.9824332716466e-05 +7.788,0.559925041134235,-0.292593598315394,-3.39757020956372e-05,-4.1627424202111e-05,-7.33155776228092e-05,-0.000110867465867593,-1.14031007090333e-06,-1.05831905779688e-05,-1.50015503553241e-05,0.000139282487613378,1.83943127876726e-05 +7.79,0.559924957865561,-0.292593744945101,-3.41974906669651e-05,-4.16306674966328e-05,-7.33437573591314e-05,-0.000110892950589565,-2.07431988021576e-06,-1.71739289415534e-05,-1.05721863493735e-05,0.000139318576328608,2.02735730067708e-05 +7.792,0.559924874611565,-0.292593891690423,-3.44192738979954e-05,-4.16357214816319e-05,-7.33842733385754e-05,-0.000110909754612991,-2.94187590723291e-06,-2.28539721828563e-05,-6.4155833361993e-06,0.000139354793764121,2.39189963822073e-05 +7.794,0.559924791322675,-0.292594038482194,-3.46411296854171e-05,-4.16424350002618e-05,-7.34351732478629e-05,-0.00011091861292291,-3.7173666945583e-06,-2.75253465894171e-05,-2.65410697508048e-06,0.000139390658781128,2.79017527020171e-05 +7.796,0.559924708041825,-0.292594185431116,-3.48629483496871e-05,-4.16505909484101e-05,-7.34943747249331e-05,-0.000110920371040891,-4.38030861813849e-06,-3.11308721897301e-05,6.13623729001108e-07,0.00013942569187352,3.14435182663175e-05 +7.798,0.559924624720311,-0.292594332459693,-3.50848111695806e-05,-4.16599562347343e-05,-7.35596967366218e-05,-0.000110916158427994,-4.91594958953197e-06,-3.36522372427494e-05,3.31439130229524e-06,0.000139459582452722,3.41705256253667e-05 +7.8,0.559924541402,-0.292594479669903,-3.5306612983399e-05,-4.16702547467682e-05,-7.36289836739041e-05,-0.000110907113475682,-5.31514415582262e-06,-3.51069312468788e-05,5.40088720890008e-06,0.000139492025532001,3.59154139836019e-05 +7.802,0.559924458039292,-0.292594626975628,-3.55284396234834e-05,-4.16812168113576e-05,-7.37001244616093e-05,-0.000110894554879158,-5.57433960333563e-06,-3.55443972906765e-05,6.85113857390925e-06,0.000139522881572804,3.66253401421703e-05 +7.804,0.559924374677133,-0.292594774470401,-3.57501912029157e-05,-4.16925521051816e-05,-7.37711612630668e-05,-0.000110879708921386,-5.69524982961247e-06,-3.5041674427353e-05,7.66709872058259e-06,0.00013955200817486,3.63199562236171e-05 +7.806,0.559924291269084,-0.292594922060273,-3.59719584591689e-05,-4.17039978106761e-05,-7.38402911593187e-05,-0.000110863886484276,-5.68450147832543e-06,-3.36985196650749e-05,7.87264958700714e-06,0.000139579415954804,3.50696791572767e-05 +7.808,0.559924207861141,-0.292595069831566,-3.61936467488527e-05,-4.17152901110949e-05,-7.39059553417271e-05,-0.000110848218323038,-0.211534750486858,0.297673706441064,-0.167704560902334,0.000139605097218612,0.401847490868542 +7.81,0.559924124407923,-0.292595217684094,-3.64153513324611e-05,-0.000887842999758204,0.00111685453460507,-0.000781682130093687,-0.133222071679875,0.219553357900383,-0.386707982523096,0.00162685469424757,0.464214240513036 +7.812,0.559920656489142,-0.292590602413427,-3.93203752692278e-05,-0.000574603576830653,0.000804307476259902,-0.0016576801484156,0.397919004864505,-0.528082330791184,-0.196437453759985,0.00193002157017099,0.689781237615169 +7.814,0.559921825993616,-0.292592000454189,-4.30460719261228e-05,0.00070383301969964,-0.000995474788559435,-0.00156743194513354,0.32601953506298,-0.522030105552839,0.183945663969053,0.00198574768711991,0.642370746251108 +7.816,0.559923471821221,-0.292594584312582,-4.55901030497613e-05,0.000729474563421125,-0.00128381294595122,-0.000921897492539466,-0.0468727412231426,-0.0433370511385883,0.321669710916254,0.00174074805920356,0.327942916972004 +7.818,0.55992474389187,-0.292597135705973,-4.6733661896281e-05,0.000516342054807048,-0.00116882299311381,-0.00028075310146838,-0.320628572379703,0.390006070820276,0.118812833874282,0.00130827314073858,0.518675145149789 +7.82,0.55992553718944,-0.292599259604554,-4.67131154556349e-05,-0.000553039726097831,0.000276211337330054,-0.000446646157042284,-0.237021817936524,0.359943519771131,-0.172925338822653,0.000762652234712954,0.464372536235827 +7.822,0.559922531732965,-0.292596030860624,-4.852024652445e-05,-0.000431745216938942,0.000270951085970558,-0.000972454456758916,0.311582138277952,-0.373000892440343,-0.0566217059150374,0.00109794630734319,0.489304723292022 +7.824,0.559923810208573,-0.29259817580021,-5.06029332826702e-05,0.000693288827013838,-0.00121579223243115,-0.000673132980702409,0.260121920996025,-0.372655372751011,0.260324160608265,0.00155303192491702,0.523740497975147 +7.826,0.559925304888273,-0.292600894029553,-5.12127784472599e-05,0.000608742467045274,-0.00121967040503365,6.88421856742594e-05,-0.0927733462343818,0.0858723347463998,0.348436076404824,0.0013648818757049,0.37065975096672 +7.828,0.559926245178441,-0.29260305448183,-5.03275645399731e-05,0.00032219544207627,-0.000872302893445516,0.000720611324917044,-0.138659620133038,0.192460904487715,0.275490301631059,0.00117643653564773,0.363541739425392 +7.83,0.559926593670042,-0.292604383241127,-4.83303331475921e-05,5.41039865131825e-05,-0.000449826787082879,0.00117080339219837,-0.329021306935701,0.505403405192581,0.00929967784373149,0.00125540908190006,0.603136888613133 +7.832,0.559926461594387,-0.292604853788979,-4.56443509711801e-05,-0.000993889785666391,0.00114931072732459,0.000757810036291966,-0.220210368509453,0.40943958671748,-0.299329468086104,0.00169794231500961,0.552929934110245 +7.834,0.559922618110899,-0.292599785998218,-4.52990930024239e-05,-0.000826737487524728,0.00118793155978723,-2.65144801461751e-05,0.337045059577101,-0.372665721413914,-0.184667235059124,0.00144754249736394,0.535332700109629 +7.836,0.559923154644437,-0.29260010206274,-4.57504088917648e-05,0.000354290452642164,-0.000341352158331236,1.91410960553883e-05,0.290922977597159,-0.409921747046595,0.137885395125181,0.000492350893559649,0.521233536703614 +7.838,0.55992403527271,-0.292601151406851,-4.52225286182023e-05,0.000336954422863782,-0.000451755428398975,0.000525027100354488,-0.0582424774728448,0.0222706745024915,0.236174799473318,0.000770243277336484,0.244267691337256 +7.84,0.559924502462128,-0.292601909084453,-4.36503004903471e-05,0.000121320542750811,-0.00025226946032128,0.000963840293948557,-0.103474534614285,0.113653837126304,0.175391564353617,0.00100366661145172,0.233208865298008 +7.842,0.559924520554881,-0.292602160484693,-4.13671674424076e-05,-7.69437155934052e-05,2.85992010629034e-06,0.00122659335776904,-0.0851594193842995,0.123734158849461,0.0884594997625962,0.00122900764026732,0.17431968298016 +7.844,0.559924194687266,-0.292601897644773,-3.87439270592704e-05,-0.000219317134786425,0.000242667175076621,0.00131767829299898,-0.266401044508931,0.406309618290835,-0.154489996620107,0.00135766838635629,0.509827599769544 +7.846,0.559923643286341,-0.292601189815992,-3.60964542704123e-05,-0.00114254789362901,0.00162809839326945,0.000608633371288675,-0.162803595396542,0.301823278647792,-0.431167122408388,0.00208003717467955,0.550915047583267 +7.848,0.559919624495691,-0.2925953852512,-3.6309393574116e-05,-0.000870531516372522,0.00144996028966766,-0.000406990196634381,0.383619899207965,-0.477018117193956,-0.285899745989531,0.00173949733623465,0.675610224875611 +7.85,0.559920161160276,-0.292595389974834,-3.772441505695e-05,0.00039193170320302,-0.000279974075506586,-0.000534965612669576,0.327915246789385,-0.503178122387206,0.0650666732706621,0.00071985008833112,0.604111168491834 +7.852,0.559921192222504,-0.292596505147502,-3.84492560247945e-05,0.000441129470785166,-0.000562752199881395,-0.000146723503551704,-0.0293730265457495,-0.0551085690380092,0.190040302701899,0.000729940432474485,0.200037610765835 +7.854,0.559921925678159,-0.292597640983633,-3.83113090711568e-05,0.000274439597020034,-0.000500408351658598,0.000225195598137936,-0.083378524071167,0.0548049461889278,0.152999512476056,0.000613545978915107,0.182659276306922 +7.856,0.559922289980892,-0.292598506780908,-3.75484736322429e-05,0.000107615374500535,-0.000343532415125708,0.000465274546352454,-0.0734562155477169,0.0842498114779578,0.0864296840103988,0.00058828223885689,0.141293795386781 +7.858,0.559922356139657,-0.292599015113294,-3.64502108857467e-05,-1.9385265170866e-05,-0.00016340910574673,0.00057091433417957,-0.0530705993109721,0.0876211899286469,0.0256763844214394,0.000594156125373115,0.105608892394037 +7.86,0.559922212439832,-0.292599160417331,-3.52648162955244e-05,-0.000104667022743377,6.95234458891824e-06,0.000567980084038224,-0.033723821860074,0.0775505477820873,-0.0208442439862059,0.000577585402005031,0.087096877840186 +7.862,0.559921937471566,-0.292598987303915,-3.41782905495941e-05,-0.000154280552611147,0.000146793085381585,0.000487537358234756,-0.0177095790324041,0.0592229931518912,-0.0524286409738265,0.000532018208809032,0.0810540221194255 +7.864,0.559921595317621,-0.29259857324499,-3.33146668625856e-05,-0.000175505338872986,0.000243844317196457,0.000358265520142941,-0.00524410074391882,0.0366912313864823,-0.0709321332885538,0.00046756428213158,0.0800319597794151 +7.866,0.559921235450211,-0.292598011926646,-3.27452284690222e-05,-0.000175256955586825,0.000293558010927531,0.000203808825080509,-0.203714769948802,0.311103284637167,-0.242828728201618,0.000398031837221582,0.444129206928956 +7.868,0.559920894289799,-0.292597399012946,-3.24994315622634e-05,-0.000990364418668286,0.00148825745574527,-0.00061304939266364,-0.119807946584485,0.211948081099763,-0.458429645101759,0.00188985753277616,0.519070007469886 +7.87,0.559917273992536,-0.292592058896823,-3.51974260396765e-05,-0.000654488741924714,0.00114135033532649,-0.00162990975532633,0.405726208054012,-0.551777576921013,-0.268461547254691,0.0020946698813331,0.735624804264439 +7.872,0.559918276334831,-0.292592833611605,-3.9019070583568e-05,0.000632540413547585,-0.000718852851938542,-0.00168689558168228,0.335495361956889,-0.556862722138973,0.114003288658316,0.00193970964348027,0.660037861813641 +7.874,0.55991980415419,-0.292594934308231,-4.19450083664064e-05,0.000687492705902993,-0.00108610055322965,-0.00117389660069301,-0.0310195663391281,-0.0857128688754436,0.261117843983273,0.00174077392602089,0.276570854995966 +7.876,0.559921026305655,-0.292597178013818,-4.37146569863406e-05,0.000508462148191058,-0.00106170432744036,-0.000642424205749075,-0.0931387177868604,0.046759579621447,0.237352409212196,0.00134106625309154,0.259224700204646 +7.878,0.559921838002783,-0.292599181125541,-4.45147051894024e-05,0.000314937834755592,-0.000899062234743885,-0.000224486963844331,-0.296175122156711,0.393910073445056,0.0136393413386833,0.000978720153383619,0.493022190756344 +7.88,0.559922286056994,-0.292600774262757,-4.46126048417178e-05,-0.000676238340435655,0.000513935966339694,-0.000587866840394347,-0.202316738334679,0.335230346898393,-0.261505932758822,0.00103296461343451,0.470846897579311 +7.882,0.559919133049421,-0.292597125381676,-4.686617255098e-05,-0.000494329118583215,0.000441859152849839,-0.00127051069487974,0.334726535891578,-0.410156103868685,-0.128411948678607,0.00143310788646222,0.544756378516262 +7.884,0.559920308740519,-0.292599006826145,-4.96946476212373e-05,0.000662667803130807,-0.00112668844913523,-0.00110151463510883,0.278287912401676,-0.415051223199498,0.20530499827279,0.00170935367027421,0.540242373739854 +7.886,0.559921783720634,-0.292601632135472,-5.12722310914149e-05,0.000618822531023368,-0.00121834573994797,-0.000449290701788668,-0.0736918615504656,0.0421510336461664,0.313655839029895,0.0014384609141945,0.324941818567203 +7.888,0.559922784030643,-0.292603880209105,-5.14918104283918e-05,0.000367900356928977,-0.000958084314550582,0.000153108721010608,-0.329344689513305,0.449085738693478,0.0971703876138615,0.00103765047432449,0.565321156014447 +7.89,0.559923255322061,-0.29260546447273,-5.06597962073724e-05,-0.00069855622703,0.000577997214826144,-6.06091513331784e-05,-0.237013269975529,0.393032562027247,-0.200888450139517,0.000908699648890929,0.501005044243721 +7.892,0.559919989805735,-0.292601568220246,-5.17342470337245e-05,-0.000580152722973246,0.000614045933558583,-0.000650445079547551,0.307235363976339,-0.362074387062808,-0.0965607126384476,0.00106616527424256,0.484577549902827 +7.894,0.55992093471117,-0.292603008288996,-5.32615765255623e-05,0.000530385228875222,-0.00087030033342493,-0.000446852001886926,0.260663558862593,-0.379617754460471,0.210728074575979,0.00111283775679967,0.506420232450306 +7.896,0.559922111346651,-0.292605049421579,-5.3521655041272e-05,0.000462501512477013,-0.000904425084283132,0.000192467218756271,-0.0813750690928484,0.0641405079917008,0.29803684876372,0.00103389361755446,0.315534260986518 +7.898,0.559922784717219,-0.292606625989333,-5.24917076505371e-05,0.000204884952503791,-0.000613738301458098,0.000745295393168088,-0.123152051126315,0.160515879379879,0.228200529276908,0.000986974047033014,0.304970911386603 +7.9,0.559922930886461,-0.292607504374785,-5.05404734685994e-05,-3.01066920283011e-05,-0.000262361566763543,0.00110526933586401,-0.307735866469983,0.468600482909989,-0.0283331919653097,0.00113638035420398,0.561329266885711 +7.902,0.559922664290451,-0.2926076754356,-4.80706303070816e-05,-0.00102605851337601,0.00126066363018165,0.000631962625306862,-0.200248742976415,0.372226054725519,-0.326495562598976,0.00174397408843105,0.534089081780353 +7.904,0.559918826652407,-0.292602461720265,-4.80126229673722e-05,-0.000831101663933871,0.00122654265213837,-0.000200712914531753,0.344131821199114,-0.406088081304053,-0.211609779011955,0.00149513294638574,0.572811433817896 +7.906,0.559919339883796,-0.292602769264992,-4.88734819652087e-05,0.000350468771420603,-0.00036368869503474,-0.000214476490741054,0.295718661585906,-0.437561245673832,0.110277076114859,0.00054872396677905,0.53950941052241 +7.908,0.559920228527493,-0.292603916475045,-4.88705289303365e-05,0.000351772982409887,-0.000523702330557154,0.000240395389927732,-0.0484939161882104,-0.000374455601962767,0.214394735764193,0.000675128362374925,0.219811061704513 +7.91,0.559920746975725,-0.292604864074314,-4.79119004054979e-05,0.000156493106667783,-0.000365186517442591,0.000643102452315623,-0.0942573512435956,0.0959203532956432,0.161418385699594,0.00075593124629873,0.210097733642423 +7.912,0.55992085449992,-0.292605377221115,-4.62981191210743e-05,-2.52564225644541e-05,-0.000140020917374624,0.000886068932726037,-0.282829727728196,0.409185702883381,-0.0783323265878517,0.000897419577302303,0.503548952654693 +7.914,0.559920645950035,-0.292605424157983,-4.43676246745933e-05,-0.000974825804245129,0.00127155629409112,0.000329773145964181,-0.180592936674385,0.32162608945909,-0.360997057325138,0.00163581511347218,0.516116290766756 +7.916,0.559916955196703,-0.292600290995938,-4.49790265372174e-05,-0.000747628169262076,0.00114648344046188,-0.000557919296574678,0.356720964135606,-0.44568774262152,-0.233872137481715,0.00147805483667483,0.616914570153088 +7.918,0.559917655437358,-0.292600838224222,-4.65993018608918e-05,0.000452058052297138,-0.000511194676394767,-0.000605715403962576,0.303397126491563,-0.465589108510141,0.0985851333936169,0.000912451440033155,0.56439530725622 +7.92,0.559918763428912,-0.292602335774644,-4.74018881530675e-05,0.000465960336704044,-0.000715872993578479,-0.000163578763000253,-0.0440193944073616,-0.0176427986351934,0.212863823908525,0.000869684534771691,0.218082514101045 +7.922,0.559919519278705,-0.292603701716196,-4.72536169128929e-05,0.000275980474667672,-0.000581765870935548,0.000245739891671621,-0.0933623232473885,0.0881270932062295,0.168840121892226,0.00068920595277607,0.21210821464458 +7.924,0.559919867350811,-0.292604662838127,-4.64189285863809e-05,9.25110437144485e-05,-0.000363364620753521,0.000511781724568728,-0.284376809038581,0.409353750886107,-0.0626971952888066,0.000634438865791676,0.502366003209386 +7.926,0.55991988932288,-0.292605155174679,-4.52064900146182e-05,-0.000861526761486526,0.0010556491326087,-5.04888948357818e-06,-0.18493887386784,0.32805006307953,-0.33886128574144,0.00136258905882147,0.506602607502498 +7.928,0.559916421243765,-0.292600440241597,-4.64391241443152e-05,-0.000647244451756829,0.000948835631564453,-0.000843663418396884,0.348443467405838,-0.434579183403133,-0.208811380678549,0.00142512539785011,0.594873187600533 +7.93,0.559917300345073,-0.292601359832153,-4.85811436882061e-05,0.000532247108136981,-0.000682667601004029,-0.000840294412197868,0.293804616704993,-0.451471044209064,0.124696277687153,0.00120640653875538,0.552898198790177 +7.932,0.559918550232197,-0.292603170912001,-4.9800301793107e-05,0.000527974015063273,-0.000857048545272005,-0.000344878307648216,-0.0529868939141797,-0.00230035586069555,0.239563846014992,0.00106406288189241,0.245364502080584 +7.934,0.559919412241133,-0.292604788026334,-4.99606569187988e-05,0.000320299532480286,-0.00069186902444681,0.000117960971861993,-0.102054905658256,0.103418821628005,0.195092414011959,0.000771485144626062,0.243252351357297 +7.936,0.559919831430327,-0.292605938388099,-4.93284579056591e-05,0.000119754392430296,-0.000443373258760031,0.000435491348399534,-0.29181139809405,0.423790179275612,-0.0371801406919068,0.000632908899937964,0.515882128949946 +7.938,0.559919891258703,-0.292606561519369,-4.82186915252009e-05,-0.000846946059895786,0.00100329169265545,-3.07595909056179e-05,-0.191781524563858,0.341068937575271,-0.315049174876662,0.00131333849458436,0.502358592972418 +7.94,0.559916443646088,-0.292601925221328,-4.94514962692816e-05,-0.000647371705825222,0.000920902491541206,-0.000824705351107254,0.340635098711136,-0.423183846586599,-0.189266876781358,0.00139545348921947,0.575272795404359 +7.942,0.559917301771879,-0.292602877909403,-5.15175129296302e-05,0.000515594334948911,-0.000689443693691137,-0.000787827098031133,0.287145408652017,-0.441940181669006,0.139324142523266,0.00116697971764467,0.545137438242331 +7.944,0.559918506023427,-0.292604682996103,-5.26028046614058e-05,0.00050120992878272,-0.000846858235134622,-0.000267408781014252,-0.0571080615366656,0.00496271624493222,0.25017209572078,0.00101974885108503,0.256655482548748 +7.946,0.559919306611594,-0.292606265342343,-5.25871480536871e-05,0.000287162088802274,-0.00066959282871141,0.000212861284851877,-0.104549461671382,0.108392756027776,0.202055522249456,0.000759030004740145,0.252003995140103 +7.948,0.559919654671783,-0.292607361367418,-5.17513595219982e-05,8.30120820971465e-05,-0.00041328721102347,0.000540813307983662,-0.29223176158803,0.42675806725952,-0.0327668739060156,0.000685694070750137,0.518262017205098 +7.95,0.559919638659923,-0.292607918491187,-5.04238948217522e-05,-0.000881764957549977,0.00103743944032686,8.17937892277999e-05,-0.191284216542779,0.342373555870714,-0.312872302203307,0.00136399422897059,0.501695506003332 +7.952,0.559916127611952,-0.292603211609657,-5.1424184365087e-05,-0.000682124784073887,0.000956207012459237,-0.000710675900829428,0.34006632961691,-0.423029954850553,-0.19076238678192,0.00137283877703967,0.575317077315381 +7.954,0.559916910160786,-0.292604093663137,-5.32665984250696e-05,0.000478500360917513,-0.000654680379075161,-0.000681255757899797,0.287276283497646,-0.44264470649628,0.134433590352592,0.0010590931978895,0.544549712574055 +7.956,0.559918041613396,-0.292605830331173,-5.41492073966865e-05,0.000466980349916827,-0.00081437181352608,-0.000172941539419,-0.0551597596417941,0.00336218592199818,0.243490600119116,0.000954557946869027,0.249682950407676 +7.958,0.559918778082186,-0.292607351150392,-5.39583645827457e-05,0.000257861322350312,-0.000641231635387167,0.000292706642576778,-0.303427584252876,0.403470567352004,0.036739407944726,0.000750564887530799,0.506168530927213 +7.96,0.559919073058685,-0.292608395257714,-5.29783808263795e-05,-0.000746729987094546,0.000799510455881757,-2.5983907640112e-05,-0.212276253470936,0.345885708942541,-0.249492212993379,0.00109430242901436,0.476386918148132 +7.962,0.559915791162238,-0.292604153108568,-5.40623002133062e-05,-0.000591243691533339,0.000742311200382845,-0.000705262209396628,0.318749288769041,-0.405751878377417,-0.14293323590417,0.00118236618904416,0.535411622794658 +7.964,0.559916708083919,-0.292605426012913,-5.57994296639663e-05,0.000528267167981763,-0.000823497057628094,-0.000597716851256857,0.269416021297897,-0.417347293887135,0.166113523047055,0.0011465073218109,0.523791426796972 +7.966,0.55991790423091,-0.292607447096799,-5.64531676183339e-05,0.000486420393658369,-0.000927077975165882,-4.08081172083342e-05,-0.068306017862715,0.0319744090544362,0.261903780588251,0.00104773263470912,0.27254662939956 +7.968,0.559918653765494,-0.292609134324814,-5.59626621327997e-05,0.000255043096530933,-0.000695599421410363,0.000449898271096033,-0.11136474811077,0.13419941431383,0.202513496408085,0.000866783704559401,0.267251391299236 +7.97,0.559918924403296,-0.292610229494484,-5.46535745339499e-05,4.09614012153402e-05,-0.000390280317910619,0.000769245868423915,-0.294294267580379,0.448920897955168,-0.038827032023558,0.000863559939451339,0.538188282079148 +7.972,0.559918817611099,-0.292610695446085,-5.28856786591037e-05,-0.000922133973790714,0.00110008417041051,0.000294590143001783,-0.191099898447231,0.359434909204237,-0.32275335339403,0.00146536671176898,0.519502023353414 +7.974,0.559915235867401,-0.292605829157803,-5.34752139619427e-05,-0.000723438192573669,0.00104745931890649,-0.000521767545152348,0.338584940043375,-0.411328341488217,-0.205725809769604,0.00137578167396306,0.571098831150075 +7.976,0.559915923858328,-0.29260650560881,-5.49727488397128e-05,0.000432205786382637,-0.000545229195542179,-0.000528313096076541,0.28719406582754,-0.436247597261687,0.115648680239077,0.000873608290333937,0.534945805483312 +7.978,0.559916964690546,-0.292608010074585,-5.55884663462486e-05,0.000425338070736366,-0.000697531070140067,-5.91728241960899e-05,-0.0519224871292758,0.00448066687575172,0.224100207762264,0.00081912361176554,0.230080255920474 +7.98,0.559917625210611,-0.29260929573309,-5.52094401364972e-05,0.00022451583786551,-0.00052730652803917,0.000368087734972614,-0.0974193541669372,0.102764352569135,0.1759253038594,0.000681137369847261,0.225833467987539 +7.982,0.559917862753898,-0.292610119300697,-5.4116115406358e-05,3.56606540685739e-05,-0.000286473659863483,0.000644528391241588,-0.082287966649003,0.120341512928332,0.100754087560073,0.000706226371045889,0.177213925381642 +7.984,0.559917767853228,-0.29261044162773,-5.26313265715311e-05,-0.000104636028730465,-4.59404763258948e-05,0.000771104085212861,-0.0579353534105339,0.112347597357192,0.0328682825947296,0.000779525968846129,0.130609386368148 +7.986,0.559917444209783,-0.292610303062602,-5.10316990655069e-05,-0.000196080759573536,0.000162916729565236,0.000776001521620492,-0.0353166242916676,0.0920035045058429,-0.0197478443042904,0.00081680345653314,0.1005081397071 +7.988,0.559916983530189,-0.292609789960811,-4.95273204850488e-05,-0.000245902525897152,0.000322073541697518,0.00069211270799569,-0.0166030839216067,0.0649364496757655,-0.0565322404417949,0.000802009612830987,0.087682946469482 +7.99,0.559916460599679,-0.292609014768435,-4.82632482335238e-05,-0.00026249309525997,0.000422662528268327,0.000549872559853287,-0.00199472859065153,0.0354197061195029,-0.0793281610851417,0.000741556518372633,0.0868993191278994 +7.992,0.559915933557808,-0.292608099310698,-4.73278302456359e-05,-0.000253881440259757,0.000463752366175514,0.000374800063655159,0.00879518995829177,0.00703884412212457,-0.0907329819697543,0.000648071856014183,0.0914296161541858 +7.994,0.559915445073918,-0.292607159758971,-4.67640479789033e-05,-0.000227312335426807,0.000450817904756822,0.00018694063197431,0.0161924074634883,-0.0175000598838733,-0.0933940322682402,0.000538381352731941,0.0963892702468686 +7.996,0.559915024308467,-0.292606296039079,-4.65800677177386e-05,-0.000189111810405796,0.000393752126640013,1.22393458215617e-06,-0.178325874081188,0.260763160311203,-0.244863872416237,0.000436812902836388,0.399694707441794 +7.998,0.559914688626676,-0.292605584750464,-4.67591522405747e-05,-0.000940615831751638,0.00149387054600175,-0.00079251485769075,-0.100429342536623,0.169735944719612,-0.443774748276094,0.00193506773804278,0.485625751973377 +8,0.55991126184514,-0.292600320556895,-4.97501271485012e-05,-0.000590829180552244,0.00107269590551839,-0.00177387505852202,0.399920006596832,-0.581743166652714,-0.259753290928616,0.00215554827121882,0.752218648912524 +8.002,0.559912325309954,-0.292601293966842,-5.38546524746636e-05,0.000659064194635867,-0.000833102120609367,-0.00183152802140533,0.326006175527288,-0.574427884762125,0.112764883739634,0.00211729063881361,0.670047267197644 +8.004,0.559913898101918,-0.292603652965378,-5.70762392341218e-05,0.000713195521556765,-0.00122501563352986,-0.00132281552356354,-0.0295739341558243,-0.0953344335140577,0.260549271760355,0.00193885328577019,0.279014685652478 +8.006,0.55991517809204,-0.292606194029376,-5.91459145689172e-05,0.000540768458012583,-0.00121443985466556,-0.000789330934364022,-0.0902060916032974,0.0426961861803203,0.240419549321755,0.00154607179966694,0.26031070468339 +8.008,0.55991606117575,-0.292608510724796,-6.02335629715789e-05,0.000352371155143455,-0.00105423088880852,-0.000361137326276196,-0.285779337826089,0.394936370773321,0.0292408828954947,0.00116875504975382,0.488364204380735 +8.01,0.559916587576661,-0.292610410952931,-6.05904638740218e-05,-0.000602348893291648,0.000365305628427555,-0.000672367402782056,-0.195288091572919,0.340721719345535,-0.23445332861428,0.000973832796600326,0.457380686127307 +8.012,0.559913651780177,-0.292607049502283,-6.29230325827068e-05,-0.000428781211148135,0.00030865598857347,-0.00129895064073321,0.318965302191569,-0.399326831539236,-0.110982206399785,0.00140228193077468,0.522989323530308 +8.014,0.559914872451816,-0.292609176328977,-6.57862664369541e-05,0.000673512315474486,-0.00123200169772922,-0.00111629622838115,0.261138210728973,-0.400388621001002,0.209909343206014,0.00179375703254411,0.522078677303521 +8.016,0.559916345829439,-0.292611977509073,-6.73882174962309e-05,0.000615771631767642,-0.00129289849543036,-0.000459313267909252,-0.0777501436982456,0.0558446970576207,0.316340247965353,0.00150390488397816,0.330506985580239 +8.018,0.559917335538344,-0.292614347922959,-6.76235195085917e-05,0.000362511740681399,-0.00100862290949866,0.000149064763480688,-0.321259635310825,0.459661051041518,0.109608720084601,0.0010821068521218,0.571410628745407 +8.02,0.559917795876402,-0.292616012000711,-6.67919584423082e-05,-0.000669266909475515,0.000545745708735506,-2.08783875708963e-05,-0.230090859788801,0.401703579965712,-0.178838211169705,0.000863824335029806,0.496276813572827 +8.022,0.559914658470706,-0.292612164940124,-6.77070330588753e-05,-0.000557851698473702,0.000598191410364013,-0.000566288081198052,0.292722038538963,-0.35267212031626,-0.0856877615936796,0.000994843541382388,0.46626838707091 +8.024,0.559915564469608,-0.29261361923507,-6.90571107671012e-05,0.000501621244680728,-0.000864942772530004,-0.000363629433945729,0.245753718000611,-0.369591884440844,0.207483176399379,0.00106394371942252,0.489941138754885 +8.026,0.559916664955684,-0.292615624711214,-6.9161550794658e-05,0.000425163173528633,-0.000880176127399198,0.000263644624399374,-0.0825310349853074,0.0711687461914402,0.291936342779771,0.00101241405923815,0.311613848225389 +8.028,0.559917265122302,-0.29261713993958,-6.80025322695038e-05,0.000171497104739534,-0.000580267787764274,0.000804115937173227,-0.120462938880987,0.163729477992877,0.222591027772154,0.00100634209037825,0.301438927898054 +8.03,0.559917350944103,-0.292617945782365,-6.59450870459655e-05,-5.6688581995263e-05,-0.000225258215427762,0.00115400873548789,-0.29563228272351,0.469334393932112,-0.0241082504637425,0.00117715377947348,0.555206653108875 +8.032,0.559917038367974,-0.292618040972441,-6.33864973275527e-05,-0.00101103202615437,0.00129706978796397,0.000707682935318268,-0.190040464274856,0.371764987613849,-0.312944209693577,0.00179036055857455,0.521784114800427 +8.034,0.559913306815999,-0.292612757503213,-6.31143553046914e-05,-0.000816850439094942,0.00126180173502813,-9.77681032868324e-05,0.332596090037124,-0.405039952317638,-0.209208225493385,0.00150630238013153,0.564309847243115 +8.036,0.559913770966218,-0.292612993765501,-6.37775697407e-05,0.000319352333993974,-0.000323090021306407,-0.000129149966655182,0.283502127572415,-0.435024970383461,0.0990379678414655,0.000472284648260144,0.528610159067516 +8.038,0.559914584225335,-0.292614049863298,-6.36309551713121e-05,0.000317158071194595,-0.000478298146505525,0.000298383768078986,-0.0473250503854499,8.46498218742548e-05,0.201178695573939,0.000646831687634048,0.206670111802382 +8.04,0.559915039598502,-0.292614906958087,-6.25840346683837e-05,0.000130052132452111,-0.00032275142201891,0.000675564815640841,-0.0896937000158094,0.0935122218721448,0.149893983004513,0.000759914375243957,0.198135563700585 +8.042,0.559915104433864,-0.292615340868986,-6.09286959087491e-05,-4.16167288686033e-05,-0.000104249259016987,0.000897959700096972,-0.0734037593833221,0.108091791403027,0.0735122370199177,0.000904948331743618,0.149919966155255 +8.044,0.559914873131587,-0.292615323955123,-5.89921958679962e-05,-0.000163562905081145,0.000109615743593151,0.00096961376372048,-0.0487898490289625,0.0985571620426779,0.00579196561458762,0.000989403500073785,0.11012497638527 +8.046,0.559914450182244,-0.292614902406012,-5.70502408538676e-05,-0.000236776124984432,0.000289979389153681,0.00092112756255532,-0.0264554334827619,0.0777835411392961,-0.0455678384817945,0.000994297222160301,0.0939499714573258 +8.048,0.559913926027087,-0.292614164037567,-5.53076856177753e-05,-0.000269384639012181,0.000420749908150301,0.000787342409793321,-0.00841874701895484,0.0511319076488988,-0.0802258896736603,0.00093247339865723,0.0955067571175725 +8.05,0.559913372643688,-0.29261321940638,-5.39008712146932e-05,-0.000270451113060262,0.000494507019749345,0.000600224003860572,0.00522591912796476,0.0226460087106823,-0.100233971622667,0.000823377101908554,0.102893153360706 +8.052,0.559912844222635,-0.292612186009488,-5.29067896023333e-05,-0.000248480962500324,0.00051133394299302,0.0003864065233027,0.0148594461110974,-0.00429162266146597,-0.108396621884215,0.000687397404150435,0.109494514929774 +8.054,0.559912378719838,-0.292611174070608,-5.23552451214826e-05,-0.000211013328615879,0.000477340529103483,0.000166637516323759,0.0209950165100345,-0.0271499033532791,-0.10756375953128,0.000547858254866071,0.112906467196755 +8.056,0.55991200016932,-0.292610276647371,-5.2240239537038e-05,-0.000164500896460158,0.000402734329579868,-4.38485148225635e-05,0.0241790943516881,-0.0443824927434234,-0.100292013491789,0.000437239267919163,0.112307267066852 +8.058,0.559911720716252,-0.292609563133289,-5.25306391807728e-05,-0.000114296951209138,0.000299810558129809,-0.000234530537643355,0.0249522215459207,-0.0553898372099415,-0.0887079617817506,0.00039743519837716,0.107516277417389 +8.06,0.559911542981515,-0.292609077405139,-5.31783616876114e-05,-6.46920102764863e-05,0.000181174980740126,-0.000398680361949527,0.0238300016178247,-0.0603559403046649,-0.0744949380550472,0.000442668567716304,0.0987937462747067 +8.062,0.559911461948211,-0.292608838433366,-5.41253606285708e-05,-1.89769447378495e-05,5.8386796911176e-05,-0.000532510289863511,0.0212933194479483,-0.0600254765996466,-0.0589469334593676,0.000536037639812403,0.0867825112473142 +8.064,0.559911467073736,-0.292608843857951,-5.53084028470652e-05,2.04812675152975e-05,-5.89269256584338e-05,-0.000634468095786971,0.0177821840030528,-0.0554749418242449,-0.043045640012511,0.000637527747990731,0.0724334340094991 +8.066,0.559911543873281,-0.292609074141069,-5.66632330117195e-05,5.21517912743854e-05,-0.000163512970385878,-0.000704692849913613,0.0136907106970727,-0.0479114682129693,-0.0275353534358038,0.000725291881615195,0.0569310111850118 +8.068,0.559911675680901,-0.292609497909833,-5.81271742467193e-05,7.52441103035822e-05,-0.00025057279851029,-0.000744609509530174,0.00936294575203711,-0.0385169322096323,-0.012983545187676,0.000789234898602072,0.0417108051425218 +8.07,0.559911844849722,-0.292610076432263,-5.96416710498399e-05,8.96035742825297e-05,-0.00031758069922439,-0.000756627030664311,0.00508966409989872,-0.0283419966939861,0.000176839936791236,0.000825451854789817,0.0287959151550174 +8.072,0.559912034095199,-0.29261076823263,-6.11536823693776e-05,9.56027667031839e-05,-0.000363940785286272,-0.000743902149783009,0.00110630389572506,-0.0182465067465447,0.0116226424525541,0.000833656519585779,0.0216620574817193 +8.074,0.559912227260789,-0.292611532195404,-6.26172796489716e-05,9.40287898654294e-05,-0.00039056672621056,-0.0007101364608541,-0.00240783550736809,-0.00887734835295003,0.02112869082038,0.00081589066300625,0.0230440135695451 +8.076,0.559912410210358,-0.292612330499534,-6.39942282127937e-05,8.59714246737126e-05,-0.000399450178698068,-0.000659387386501498,-0.00532852521828559,-0.000673593382461024,0.0285630425128005,0.000775721120377435,0.0290636251461315 +8.078,0.559912571146488,-0.292613129996119,-6.52548291949773e-05,7.27146889922894e-05,-0.000393261099740404,-0.000595884290802911,-0.00758368079446189,0.00611101710558528,0.0338844475976684,0.000717648804492814,0.0352563828753912 +8.08,0.559912701069114,-0.292613903543933,-6.6377765376005e-05,5.56367014958684e-05,-0.00037500611027573,-0.00052384959611084,-0.00914855198541415,0.0113764068096464,0.0371385359756921,0.00064664010441896,0.0399047552272429 +8.082,0.559912793693294,-0.29261463002056,-6.73502275794213e-05,3.61204810506206e-05,-0.000347755472501803,-0.000447330146900093,-0.0100395067537078,0.0151416807876342,0.038450828528053,0.000567752426795288,0.04252679634567 +8.084,0.559912845551038,-0.292615294565823,-6.81670859636052e-05,1.54786744810415e-05,-0.0003144393871252,-0.000370046281998645,-0.0103066447598738,0.0175119741000276,0.0380157046814678,0.000485845621942178,0.0431055676857973 +8.086,0.559912855607992,-0.292615887778108,-6.88304127074157e-05,-5.10609798887003e-06,-0.000277707576101701,-0.000295267328174238,-0.0100258254753771,0.0186491109881129,0.0360818785674194,0.000405376818710822,0.0418354930419575 +8.088,0.559912825126646,-0.292616405396128,-6.93481552763026e-05,-2.46246274204803e-05,-0.000239842943172723,-0.000225718767728919,-0.00929053341897341,0.0187471389939419,0.0329354553768335,0.00033027257193175,0.0390193984134383 +8.09,0.559912757109482,-0.292616847149881,-6.97332877783313e-05,-4.22682316647596e-05,-0.000202719020125941,-0.000163525506666919,-0.00820410041985256,0.0180129454303885,0.0288820828208616,0.00026386018240644,0.0350135427348946 +8.092,0.55991265605372,-0.292617216272208,-7.00022573029702e-05,-5.74410290998869e-05,-0.000167791161451177,-0.000110190436445485,-0.0068726221519337,0.0166516009383925,0.0242295501752585,0.000208794822659077,0.0301923806737742 +8.094,0.559912527345366,-0.292617518314527,-7.01740495241132e-05,-6.97587202724913e-05,-0.000136112616372379,-6.66073059658952e-05,-0.00539885943589354,0.0148557950628723,0.019272111119643,0.000166821631084894,0.0249250195018271 +8.096,0.559912377018839,-0.292617760722674,-7.02686865268337e-05,-7.90364668434587e-05,-0.000108367981199694,-3.31019919669218e-05,-0.00387731352580103,0.0127986856147926,0.0142774349435086,0.000138152540014915,0.0195623378513351 +8.098,0.559912211199498,-0.292617951786452,-7.03064574919809e-05,-8.52679743757006e-05,-8.49178739131911e-05,-9.49756619184166e-06,-0.0023905417645502,0.0106294877517857,0.00947674554628416,0.000120714027882596,0.0144398547756699 +8.1,0.559912035946941,-0.292618100394169,-7.03066767916011e-05,-8.85986339016584e-05,-6.58500301925563e-05,4.80499021821066e-06,-0.00100673201718501,0.00847126285439457,0.00505834865140157,0.000110494490073477,0.00991779687137253 +8.102,0.559911856804963,-0.292618215186573,-7.02872375311081e-05,-8.92949024444402e-05,-5.10328224956165e-05,1.07358284137624e-05,0.000221573863423646,0.00642041626461166,0.00116443904865622,0.000103407865204543,0.00652891708370368 +8.104,0.559911678767331,-0.292618304525459,-7.0263733477946e-05,-8.77123384479636e-05,-4.01683651341011e-05,9.46274641283711e-06,0.00125770217156576,0.00454754505232557,-0.00210910554385779,9.69355220919052e-05,0.00516820151991229 +8.106,0.559911505955609,-0.292618375860033,-7.02493865454568e-05,-8.42640937581777e-05,-3.28426422863162e-05,2.29940623833217e-06,0.00208021350839351,0.00289930157312887,-0.00471043994348351,9.04674743666627e-05,0.00590944010153375 +8.108,0.559911341710956,-0.292618435896029,-7.02545358529927e-05,-7.93914844143904e-05,-2.85711588415869e-05,-9.37901336109485e-06,0.0026815659900931,0.00150101777882139,-0.00662749754208748,8.48957290250763e-05,0.00730531136926671 +8.11,0.559911188389671,-0.292618490144668,-7.02869025989011e-05,-7.35378297978065e-05,-2.68385711710313e-05,-2.42105839300149e-05,0.0030662921299355,0.000359836806188323,-0.0078823684957596,8.19406717577173e-05,0.0084654216112451 +8.112,0.559911047559637,-0.292618543250313,-7.03513781887127e-05,-6.71263158946498e-05,-2.71318116168338e-05,-4.09084873441298e-05,0.00324884699698307,-0.000531861402142001,-0.00852482775256184,8.3159977296681e-05,0.00913841187361037 +8.114,0.559910919884408,-0.292618598671915,-7.04505365482777e-05,-6.05424418098699e-05,-2.89660167796001e-05,-5.83098949402736e-05,0.00325131215699762,-0.00119294457298963,-0.00862553354176404,8.89070370461377e-05,0.00929483600589933 +8.116,0.55991080538987,-0.29261865911438,-7.05846177684738e-05,-5.41210672666607e-05,-3.19035899087918e-05,-7.54106215111821e-05,0.00310108590196359,-0.00165010223887238,-0.00826929037310437,9.81513668160232e-05,0.00898447185118889 +8.118,0.559910703400139,-0.292618726286275,-7.07521790343224e-05,-4.81380982020169e-05,-3.55664257350888e-05,-9.13870564326874e-05,0.00282868820727858,-0.00193466025144541,-0.00754873357832445,0.00010924212201119,0.00829022110073325 +8.12,0.559910612837477,-0.292618801380083,-7.09501659942047e-05,-4.28063144375426e-05,-3.9642230914576e-05,-0.00010560555582449,0.00246576788153838,-0.00207976251498817,-0.00655866732799986,0.00012064999149859,0.00730900406921141 +8.122,0.559910532174881,-0.292618884855198,-7.11746012576203e-05,-3.82750266758645e-05,-4.38854757950406e-05,-0.000117621725744684,0.00204337909093289,-0.00211800159702393,-0.00539123848428949,0.00013124703051861,0.00614221305953658 +8.124,0.55991045973737,-0.292618976921986,-7.14206528971834e-05,-3.4632798073812e-05,-4.81142373026708e-05,-0.000127170509761646,0.0015905696482136,-0.00207955716188858,-0.00413203201862868,0.000140309476111473,0.00489164168744533 +8.126,0.559910393643689,-0.292619077312147,-7.16832832966668e-05,-3.19127480830108e-05,-5.2203704442594e-05,-0.000134149853819197,0.00113329558932089,-0.0019908514593767,-0.00285712547282763,0.000147444340438863,0.00366210518603126 +8.128,0.559910332086378,-0.292619185736804,-7.19572523124601e-05,-3.00996157165289e-05,-5.60776431401767e-05,-0.000138599011652955,0.00069366629107377,-0.00187371449605858,-0.00163107809810595,0.000152513523851545,0.00257922366192485 +8.13,0.559910273245226,-0.29261930162272,-7.22376793432788e-05,-2.91380829187148e-05,-5.96985624268308e-05,-0.000140674166211623,0.000289496121516128,-0.0017450101676208,-0.00050579256236245,0.000155570457579013,0.00183975395246593 +8.132,0.559910215534046,-0.292619424531054,-7.25199489773065e-05,-2.89416312304645e-05,-6.30576838106592e-05,-0.000140622181902404,-6.5859852290765e-05,-0.00161666786207405,0.00047984342716076,0.00015680716676491,0.00168766175846827 +8.134,0.559910157478701,-0.292619553853455,-7.28001680708884e-05,-2.94015223278778e-05,-6.61652338751263e-05,-0.00013875479250298,-0.000363431472416494,-0.0014960379497716,0.00129965242214007,0.000156509361162494,0.00201477254316069 +8.136,0.559910097927957,-0.292619689191989,-7.30749681473186e-05,-3.0395357120131e-05,-6.90418356097476e-05,-0.000135423572213842,-0.190228897176171,0.295420376848823,-0.143985366773658,0.000155016762674175,0.37972624115711 +8.138,0.559910035897272,-0.292619830020798,-7.33418623597437e-05,-0.000790317111032477,0.00111551627352003,-0.000714696259597548,-0.116482348509776,0.217112692879654,-0.341812194042188,0.00154264980989253,0.421356897320718 +8.14,0.559906936659513,-0.292615227126895,-7.59337531857085e-05,-0.000496324751159182,0.000799408935908773,-0.00150267234838244,0.36070512340899,-0.52535193499984,-0.181370180880052,0.00177296844078433,0.66256922972172 +8.142,0.559908050598268,-0.292616632385054,-7.93525517532728e-05,0.000652503382603325,-0.000985891466479092,-0.00144017698311768,0.288223939111367,-0.514968883213286,0.163430990200329,0.00186329074239288,0.612352576799242 +8.144,0.559909546673043,-0.292619170692761,-8.16944611181786e-05,0.000656571005286158,-0.00126046659694414,-0.000848948387581199,-0.049690915812628,-0.0413058449978595,0.295254106634089,0.00165546817902705,0.302242199948284 +8.146,0.559910676882289,-0.292621674251442,-8.27483453035988e-05,0.000453739719352747,-0.00115111484647058,-0.000259160556580929,-0.102820470075598,0.0872406954627495,0.26294200556033,0.00126416348498548,0.295502091869889 +8.148,0.559911361631921,-0.292623775152147,-8.27311033445022e-05,0.00024528912498381,-0.000911503815093185,0.000202819634660007,-0.0956266146476549,0.132548327560448,0.195315016156084,0.000965474890387302,0.254679139514987 +8.15,0.559911658038789,-0.292625320266702,-8.19370667649588e-05,7.12332607621697e-05,-0.00062092153622885,0.00052209950804332,-0.077094316625042,0.147075307016487,0.127869552399614,0.000814374378213536,0.209583639678181 +8.152,0.559911646564964,-0.292626258838292,-8.06427053123282e-05,-6.30881415164611e-05,-0.000323202587027041,0.000714297844258633,-0.0578437760467891,0.142702557336773,0.07024239675944,0.0007865503392495,0.169245137597263 +8.154,0.559911405686223,-0.29262661307705,-7.90798753879246e-05,-0.000160141843424961,-5.01113068818226e-05,0.000803069095081049,-0.0403019305081442,0.124883647301843,0.0245302937320528,0.000820412411270846,0.133498712640517 +8.156,0.55991100599759,-0.29262645928352,-7.74304289320044e-05,-0.00022429586354902,0.000176332002180277,0.000812419019186834,-0.0250554960321058,0.0984739252085859,-0.00984332269253008,0.000861061131473604,0.102087133513633 +8.158,0.559910508502769,-0.292625907749042,-7.58301993111776e-05,-0.000260363827553374,0.000343784393952478,0.000763695804310933,-0.0122195293466855,0.0680818124133494,-0.034446575716044,0.000877045217617449,0.0772723537722396 +8.16,0.55990996454228,-0.292625084145944,-7.4375645714761e-05,-0.000273173980935757,0.000448659251833644,0.000674632716322673,-0.00175883116404445,0.037642301515392,-0.0510773441502143,0.000855013713369044,0.0634738641952633 +8.162,0.559909415806845,-0.292624113112034,-7.3131668445886e-05,-0.000267399152209554,0.000494353600014096,0.000559386427710007,0.00642902388961359,0.0101070319926365,-0.0613987937913157,0.000792969711877729,0.0625563451849763 +8.164,0.559908894945671,-0.292623106731544,-7.21381000039212e-05,-0.000247457885377305,0.000489087379804186,0.000429037541157437,0.0124885545099976,-0.0126437140029155,-0.0667854044333324,0.000696071175844504,0.0691094620356755 +8.166,0.559908425975303,-0.292622156762515,-7.14155182812565e-05,-0.000217444934169569,0.000443778744002439,0.000292244809976707,0.0165948401478729,-0.0297139966902382,-0.0682945687831824,0.000574133174431432,0.076305035509603 +8.168,0.559908025165934,-0.292621331616568,-7.0969120764014e-05,-0.000181078524785792,0.000370231393043193,0.000155859266024617,0.0189479970324835,-0.0410022388471917,-0.0667162527549603,0.000440627765056895,0.0805684092165714 +8.17,0.559907701661204,-0.292620675836943,-7.07920812171581e-05,-0.000141652946039643,0.00027976978861369,2.53797989568955e-05,0.0197711033656,-0.0469734632753508,-0.0626566641929795,0.000314612183390522,0.080766703214665 +8.172,0.55990745855415,-0.292620212537413,-7.08676015681864e-05,-0.0001019941113234,0.00018233753994181,-9.47673907472739e-05,0.0193065728820761,-0.0484398699728101,-0.0566177225935896,0.00022941367780873,0.0769722759902443 +8.174,0.559907293684759,-0.292619946486783,-7.11711507801471e-05,-6.44266545113474e-05,8.60103087224712e-05,-0.000201091091417438,0.017809260885467,-0.0463749973145343,-0.0490556061969384,0.000228004811496415,0.0698159197358224 +8.176,0.559907200847532,-0.292619868496178,-7.16719659338561e-05,-3.07570677815402e-05,-3.16244931630632e-06,-0.000290989815535006,0.0155375942112422,-0.0417724741186194,-0.0404156139527288,0.000292627871279024,0.0601645932342267 +8.178,0.559907170656488,-0.29261995913658,-7.23351100422875e-05,-2.27627766635788e-06,-8.10795877520621e-05,-0.000362753547228407,0.0127442306985242,-0.0355506306649959,-0.0311450846276737,0.000371711201091453,0.0489518033706738 +8.18,0.559907191742421,-0.292620192814529,-7.31229801227695e-05,2.0219855012551e-05,-0.000145364971976274,-0.000415570154045687,0.00966668774193633,-0.028497710847354,-0.0216877302331823,0.000440724824065933,0.0370934228416143 +8.182,0.559907251535908,-0.292620540596468,-7.39973906584701e-05,3.63904733013832e-05,-0.000195070431141466,-0.000449504468161127,0.0065185850744983,-0.0212485428523154,-0.0124663354847371,0.000491356292876802,0.0254833680100996 +8.184,0.559907337304315,-0.292620973096254,-7.49209979954146e-05,4.62941953105529e-05,-0.000230359143385564,-0.000465435495984652,0.003482694410644,-0.0142832696677334,-0.00386151204073228,0.000521381519027345,0.015200402231515 +8.186,0.559907436712689,-0.292621462033042,-7.58591326424085e-05,5.03212509439577e-05,-0.000252203509812393,-0.000464950516324054,0.000706308275755396,-0.00793978457633469,0.00380802942477693,0.00053133588368212,0.00883403297474996 +8.188,0.559907538589318,-0.292621981910293,-7.67808000607106e-05,4.91194284135742e-05,-0.0002621182816909,-0.000450203378285546,-0.00170090726225906,-0.00243339375039007,0.0103004202563229,0.000523260732010328,0.0107197550399302 +8.19,0.559907633190403,-0.292622510506169,-7.76599461555505e-05,4.35176218949222e-05,-0.000261937084813952,-0.000423748835298767,-0.00366687075148883,0.00212117620346318,0.01545900078005,0.000500067890624146,0.0160289124619186 +8.192,0.559907712659806,-0.292623029658632,-7.84757954019055e-05,3.44519454076205e-05,-0.000253633576877048,-0.000388367375165353,-0.00515493588093436,0.00568836077546747,0.0192133761019132,0.00046513024622641,0.02069020622135 +8.194,0.559907770998184,-0.292623525040476,-7.92134156562124e-05,2.28978783711778e-05,-0.000239183641712075,-0.000346895330891089,-0.00616012113540984,0.00829252957618297,0.0215739470940284,0.000421982817056085,0.0239196223296007 +8.196,0.559907804251319,-0.292623986393199,-7.98633767254697e-05,9.8114608659838e-06,-0.00022046345857232,-0.000302071586789249,-0.00670414668224743,0.0100014791795688,0.0226213354723567,0.00037409576965714,0.025626158258103 +8.198,0.559907810244028,-0.29262440689431,-8.04217020033693e-05,-3.91870835780893e-06,-0.000199177724993804,-0.000256409989001672,-0.00682985061562097,0.0109126927876093,0.0224924784032445,0.000324704796497894,0.0259161206207422 +8.2,0.559907788576486,-0.292624783104099,-8.08890166814763e-05,-1.75079415964971e-05,-0.000176812687421887,-0.00021210167317628,-0.00659535878688531,0.0111420630118294,0.0213649595758273,0.000276688225655654,0.0249821100662866 +8.202,0.559907740212261,-0.29262511414506,-8.12701086960743e-05,-3.03001435053472e-05,-0.000154609472946491,-0.000170950150698372,-0.00606841148165091,0.0108146878327584,0.0194411351869426,0.00023247826101602,0.0230595062433614 +8.204,0.559907667375912,-0.292625401541991,-8.157281728427e-05,-4.17815875231088e-05,-0.000133553936090839,-0.000134337132428484,-0.00532113639262653,0.0100573874922533,0.016933246320737,0.000193981494092646,0.0204009893543676 +8.206,0.559907573085911,-0.292625648360804,-8.18074572257882e-05,-5.1584689075851e-05,-0.000114379922977483,-0.000103217165415432,-0.0044254934716769,0.0089926697234694,0.014050409144322,0.00016247316751939,0.0172588266792997 +8.208,0.559907461037156,-0.292625859061683,-8.19856859459317e-05,-5.94835614098145e-05,-9.75832571969655e-05,-7.81354958512021e-05,-0.00344952320180314,0.00773398760311843,0.0109879714944836,0.000138441113384274,0.0138726094203128 +8.21,0.559907335151666,-0.292626038693833,-8.21199992091931e-05,-6.53827818830682e-05,-8.34439725649986e-05,-5.92652794374825e-05,-0.0024544450222335,0.00638216489031341,0.007919475260465,0.000121450311119404,0.0104630023155609 +8.212,0.559907199506028,-0.292626192837573,-8.22227470636816e-05,-6.93013414987474e-05,-7.20545976357147e-05,-4.64575948093455e-05,-0.00149262614768142,0.00502294045939932,0.00499122775315357,0.000110239961399848,0.00723672703362946 +8.214,0.5599070579463,-0.292626326912224,-8.23058295884305e-05,-7.13532864737932e-05,-6.33522107274035e-05,-3.93003684248704e-05,-0.000606354924603948,0.00372555560707115,0.00231929892825828,0.000103195508879946,0.00443018943100527 +8.216,0.559906914092882,-0.292626446246416,-8.23799485373811e-05,-7.17267611971629e-05,-5.71523752074317e-05,-3.71803990963134e-05,0.000172643142845153,0.00254232863581374,-1.13408466601765e-05,9.89621358937197e-05,0.00254820901066867 +8.218,0.559906771039255,-0.292626555521725,-8.24545511848157e-05,-7.06627139024127e-05,-5.31828961841496e-05,-3.93457318115111e-05,0.000823074018663033,0.00150909893262241,-0.00194591678447748,9.67973460089254e-05,0.00259642495765839 +8.22,0.559906631442027,-0.292626658978001,-8.25373314646272e-05,-6.84344651225097e-05,-5.11159794769401e-05,-4.4964066234226e-05,0.0013334251619459,0.000646420732908005,-0.00345754411213386,9.65292009021458e-05,0.00376171419884543 +8.222,0.559906497301394,-0.292626759985642,-8.26344074497526e-05,-6.53290132546297e-05,-5.05972132525179e-05,-5.3175908260045e-05,0.00170093772401014,-3.86610465806569e-05,-0.00454392144743586,9.826309165208e-05,0.00485200019970642 +8.224,0.559906370125974,-0.292626861366854,-8.27500350976673e-05,-6.16307142264699e-05,-5.12706236632627e-05,-6.31397520239674e-05,0.00193030518652561,-0.000550420160838493,-0.00522336161302866,0.000102047293313114,0.00559576152163819 +8.226,0.559906250778538,-0.292626965068137,-8.28869664578485e-05,-5.76077925085247e-05,-5.27988938958726e-05,-7.40693547121666e-05,0.00203222295935195,-0.000902024437788092,-0.00553049748532865,0.000107669170433368,0.00596070303555802 +8.228,0.559906139694804,-0.292627072562429,-8.3046312516516e-05,-5.3501822389063e-05,-5.48787214144147e-05,-8.52617419652795e-05,0.002021878053871,-0.00111304544747639,-0.00551191901149283,0.000114645905753261,0.00597562651293814 +8.23,0.559906036771248,-0.292627184583023,-8.32280134257096e-05,-4.95202802930416e-05,-5.72510756857777e-05,-9.61170307581355e-05,0.0019174705503948,-0.00120705091408184,-0.00522197973231002,0.000122345524761801,0.00569234025208207 +8.232,0.559905941613682,-0.292627301566732,-8.34307806395485e-05,-4.58319401874847e-05,-5.97069250707415e-05,-0.000106149660894517,0.00173883131505082,-0.00120940567976294,-0.00471893541862743,0.00013012776087666,0.00517247986227309 +8.234,0.559905853443487,-0.292627423410723,-8.36526120692876e-05,-4.25649550328391e-05,-6.20886984048289e-05,-0.000114992772432643,0.00150618924971113,-0.00114536959777674,-0.0040615507485011,0.000137441331404709,0.00448069995135876 +8.236,0.559905771353862,-0.292627549921526,-8.38907517292792e-05,-3.98071831886381e-05,-6.428840346185e-05,-0.000122395863888527,0.00123912418519944,-0.00103855695571965,-0.00330624870017966,0.000143869239763426,0.00368039532714347 +8.238,0.559905694214754,-0.292627680564337,-8.41421955248417e-05,-3.76084582920419e-05,-6.62429262277071e-05,-0.00012821776723336,0.000955723632183089,-0.000909780688277838,-0.00250484882834108,0.000149138584023793,0.00283114397633151 +8.24,0.559905620920029,-0.292627814893231,-8.44036227982126e-05,-3.59842886599062e-05,-6.7927526214961e-05,-0.00013241525920189,0.000671953638564497,-0.000776287062409337,-0.00170289954359821,0.000153110478797329,0.00198846929853875 +8.242,0.5599055502776,-0.292627952274442,-8.46718565616494e-05,-3.4920643737783e-05,-6.93480744773455e-05,-0.000135029365407755,0.000401234850895806,-0.000651353155447423,-0.000938582638708078,0.00015576115149548,0.0012108623820934 +8.244,0.559905481237454,-0.292628092285529,-8.49437402598435e-05,-3.43793492563231e-05,-7.05329388367504e-05,-0.000136169589756722,0.000154214439829248,-0.000544211325309691,-0.000242146138210218,0.000157159130472114,0.000615290835538204 +8.246,0.559905412760203,-0.292628234406197,-8.52165349206763e-05,-3.43037859784661e-05,-7.1524919778584e-05,-0.000135997949960596,-6.12923184428873e-05,-0.000460243263639239,0.000364198728467016,0.000157442072760981,0.000590102807858422 +8.248,0.55990534402231,-0.292628378385208,-8.54877320596859e-05,-3.46245185300947e-05,-7.23739118913071e-05,-0.000134712794842854,-0.000240211850406924,-0.000401387180429555,0.000865986932352046,0.000156794060793974,0.000984249342744821 +8.25,0.559905274262129,-0.292628523901845,-8.57553861000476e-05,-3.52646333800937e-05,-7.3130468500302e-05,-0.000132534002231188,-0.000380006880129538,-0.000366693463787955,0.00125589835926725,0.000155424970767,0.00136240596524706 +8.252,0.559905202963777,-0.292628670907082,-8.60178680686108e-05,-3.61445460506133e-05,-7.38406857464594e-05,-0.000129689201405784,-0.000480381706639689,-0.000352970153113956,0.00153292315731945,0.000153551828520478,0.00164475162845628 +8.254,0.559905129683944,-0.292628819264588,-8.62741429056707e-05,-3.71861602066522e-05,-7.45423491127577e-05,-0.000126402309601911,-0.000542930048137743,-0.000355461920306714,0.0017013751007143,0.00015138334186713,0.00182093477293658 +8.256,0.559905054219136,-0.292628969076478,-8.65234773070184e-05,-3.83162662431641e-05,-7.52625334276861e-05,-0.000122883701002927,-0.000570750197104047,-0.000368515520182606,0.00176982222974092,0.000149107307563873,0.00189574001408286 +8.258,0.559904976418879,-0.292629120314721,-8.67656777096826e-05,-3.94691609950692e-05,-7.60164111934886e-05,-0.000119323020682945,-0.000568052951903591,-0.000386192525883681,0.00175000100347051,0.000146881900536774,0.00187998200399967 +8.26,0.559904896342492,-0.292629273142123,-8.70007693897501e-05,-4.05884780507782e-05,-7.68073035312207e-05,-0.000115883696989046,-0.000539781663810977,-0.00040279951596398,0.00165576585428632,0.000144830306407411,0.00178750447799939 +8.262,0.559904814064967,-0.292629427543936,-8.72292124976387e-05,-4.16282876503128e-05,-7.76276092573444e-05,-0.000112699957265801,-0.000491260990220896,-0.000413317165215514,0.00150211804279854,0.000143039296766383,0.00163356268752549 +8.264,0.559904729829341,-0.29262958365256,-8.74515692188133e-05,-4.25535220116615e-05,-7.84605721920826e-05,-0.000109875224817852,-0.000427886323590421,-0.000413716515898113,0.00130434506339345,0.00014156068893969,0.00143372385968898 +8.266,0.559904643850879,-0.292629741386224,-8.76687133969101e-05,-4.33398329446743e-05,-7.92824753209366e-05,-0.000107482577012227,-0.000354861730278353,-0.000401161045354613,0.00107729193100901,0.000140415655729255,0.00120308558986602 +8.268,0.55990455647001,-0.292629900782461,-8.78814995268623e-05,-4.39729689327754e-05,-8.00652163735016e-05,-0.000105566057093815,-0.000276991110608625,-0.000374098727699004,0.000834775196872269,0.00013960033409714,0.000955784265791893 +8.27,0.559904467959004,-0.29263006164709,-8.80909776252853e-05,-4.44477973871087e-05,-8.07788702317325e-05,-0.000104143476224739,-0.000198522809297733,-0.000332255032505696,0.000589142164752129,0.000139092401692735,0.000704906520558329 +8.272,0.55990437867882,-0.292630223897942,-8.82980734317612e-05,-4.47670601699663e-05,-8.13942365035242e-05,-0.000103209488434807,-0.000123046794975296,-0.000276540883942183,0.000350970688275862,0.000138857156514266,0.000463460676081638 +8.274,0.559904288890763,-0.292630387224036,-8.85038155790246e-05,-4.493998456701e-05,-8.18850337675016e-05,-0.000102739593471635,-5.34395860945911e-05,-0.000208893562179325,0.000128898607054344,0.000138853105959877,0.000251211386251657 +8.276,0.559904198918882,-0.292630551438077,-8.87090318056477e-05,-4.49808185143446e-05,-8.22298107522414e-05,-0.000102693894006589,8.14831535578354e-06,-0.000132068640745806,-7.0431590247514e-05,0.000139036152409388,0.000149897064068566 +8.278,0.559904108967489,-0.292630716143279,-8.8914591155051e-05,-4.49073913055869e-05,-8.24133083304847e-05,-0.000103021319832625,6.02691646589682e-05,-4.94022565911256e-05,-0.000242330974731303,0.000139362905839053,0.000254553052386352 +8.28,0.559904019289317,-0.292630881091311,-8.91211170849782e-05,-4.47397418557088e-05,-8.24274197786059e-05,-0.000103663217905514,0.000102126418438065,3.54385895720389e-05,-0.000383943887955898,0.000139792656385091,0.000398871668676196 +8.282,0.559903930008521,-0.292631045852958,-8.9329244026673e-05,-4.44988856318347e-05,-8.22715539721966e-05,-0.000104557095384448,0.0001335019803039,0.000118701659612671,-0.000494068628890843,0.000140288793603437,0.000525372889283357 +8.284,0.559903841293774,-0.292631210177527,-8.95393454665161e-05,-4.4205733934493e-05,-8.1952613140155e-05,-0.000105639492421078,0.000154669443914269,0.000196776896851173,-0.000572937566325279,0.000140819317112995,0.00062522095208163 +8.286,0.559903753185586,-0.29263137366341,-8.97518019963572e-05,-4.38802078561777e-05,-8.1484446384792e-05,-0.000106848845649749,0.000166299668485233,0.000266395187168579,-0.000621973556847525,0.000141357219344543,0.000696758983366876 +8.288,0.559903665772943,-0.292631536115312,-8.9966740849115e-05,-4.35405352605521e-05,-8.08870323914808e-05,-0.000108127386648468,0.000169364945679058,0.000324790031674885,-0.000643538133372613,0.000141880308581928,0.000740482530924903 +8.29,0.559903579023445,-0.29263169721154,-9.01843115429513e-05,-4.32027480734612e-05,-8.0185286258092e-05,-0.00010942299818324,0.000165045650752569,0.00036981753422592,-0.000640683602537095,0.000142371170202399,0.000757944954474393 +8.292,0.55990349296195,-0.292631856856457,-9.0404432841848e-05,-4.28803526575419e-05,-7.94077622545773e-05,-0.000110690121058616,0.000154644005934158,0.000400032246911185,-0.00061691961088253,0.000142816736590239,0.000751352363030574 +8.294,0.559903407502034,-0.292632014842589,-9.06270720271857e-05,-4.25841720497247e-05,-7.85851572704475e-05,-0.00011189067662677,0.000139507246033097,0.000414719793229247,-0.00057600124409736,0.000143208107900279,0.00072334791891147 +8.296,0.559903322625262,-0.292632171197086,-9.0851995548355e-05,-4.23223236734096e-05,-7.77488830816605e-05,-0.000112994126035006,0.000120962399823548,0.00041388855191202,-0.000521744434969723,0.000143540030723061,0.00067686992176989 +8.298,0.559903238212739,-0.292632325838121,-9.10790485313256e-05,-4.21003224504305e-05,-7.69296030627996e-05,-0.000113977654366649,0.000100262881330671,0.000398225376285666,-0.000457870981580741,0.000143810662583667,0.0006150462840017 +8.3,0.559903154223972,-0.292632478915498,-9.13079061658217e-05,-4.19212721480868e-05,-7.61559815765173e-05,-0.000114825609961329,7.85483206209364e-05,0.000369020883286697,-0.000387884806752033,0.000144020996008874,0.000541110778198998 +8.302,0.559903070527651,-0.292632630462048,-9.15383509711709e-05,-4.17861291679468e-05,-7.54535195296529e-05,-0.000115529193593657,5.68161281957252e-05,0.000328071222974234,-0.000314978370629885,0.000144174577414511,0.000458334128918652 +8.304,0.559902987079456,-0.292632780729577,-9.17700229401963e-05,-4.16940076353039e-05,-7.48436966846205e-05,-0.000116085523443849,3.59042656716738e-05,0.000277563486084036,-0.000241967807769418,0.000144276879503767,0.000369971654451099 +8.306,0.55990290375162,-0.292632929836834,-9.20026930649465e-05,-4.16425121052601e-05,-7.43432655853164e-05,-0.000116497064824735,1.64840016590261e-05,0.000219951938598762,-0.000171253746439775,0.000144334978661114,0.000279246169667029 +8.308,0.559902820509407,-0.292633078102639,-9.22360111994952e-05,-4.16280716286678e-05,-7.39638889302256e-05,-0.000116770538429608,-9.38818467410944e-07,0.000157831848285362,-0.000104804764693178,0.00014435689058145,0.000189461902280329 +8.31,0.559902737239334,-0.29263322569239,-9.24697752186648e-05,-4.16462673791297e-05,-7.3711938192175e-05,-0.000116916283883508,-1.60158900031106e-05,9.38173011500104e-05,-4.41596047923237e-05,0.000144351234341068,0.000104920281276204 +8.312,0.559902653924338,-0.292633372950392,-9.27036763350292e-05,-4.16921351886802e-05,-7.35886197256256e-05,-0.000116947176848777,-2.85432094580313e-05,3.04281391831516e-05,9.55556295111257e-06,0.000144326578503798,4.28006453646083e-05 +8.314,0.559902570470793,-0.292633520046869,-9.29375639260599e-05,-4.17604402169618e-05,-7.35902256354425e-05,-0.000116878061631703,-3.84443379908189e-05,-3.00095087668528e-05,5.5598286391441e-05,0.000144291153460543,7.39574687887899e-05 +8.316,0.559902486882577,-0.292633667311294,-9.31711885815562e-05,-4.18459125406436e-05,-7.3708657760693e-05,-0.000116724783703211,-4.57514720599688e-05,-8.54456991354618e-05,9.35730407959137e-05,0.000144252285097338,0.000134722227788126 +8.318,0.559902403087143,-0.2926338148815,-9.34044630608727e-05,-4.19434461052017e-05,-7.39320084319843e-05,-0.00011650376946852,-5.05854733055042e-05,-0.000134170570478932,0.0001233891027676,0.000144216236403329,0.000189170565294861 +8.32,0.559902319108792,-0.292633963039328,-9.36372036594302e-05,-4.20482544338656e-05,-7.42453400426087e-05,-0.000116231227292141,-5.31361898925426e-05,-0.000174857888585137,0.000145216111704895,0.000144187809529152,0.000233423338540595 +8.322,0.559902234894125,-0.29263411186286,-9.38693879700414e-05,-4.21559908647719e-05,-7.4631439986325e-05,-0.0001159229050217,-5.36435201861254e-05,-0.000206588749587751,0.000159438859671412,0.000144170382911655,0.000266415631462402 +8.324,0.559902150484829,-0.292634261565088,-9.41008952795169e-05,-4.226282851461e-05,-7.50716950409596e-05,-0.000115593471853455,-5.23801696461615e-05,-0.000228856246453687,0.000166613582305888,0.000144165726875404,0.000287887042990532 +8.326,0.559902065842811,-0.29263441214964,-9.43317618574552e-05,-4.23655115433566e-05,-7.55468649721397e-05,-0.000115256450692476,-4.9636288135268e-05,-0.000241552503693674,0.00016742649367605,0.000144174251521124,0.000298065435643227 +8.328,0.559901981022783,-0.292634563752548,-9.45619210822868e-05,-4.24613736671511e-05,-7.60379050557342e-05,-0.000114923765878751,-4.57063969958076e-05,-0.000244940505369934,0.000162655666726123,0.000144195018023232,0.000297559728147706 +8.33,0.559901895997316,-0.292634716301261,-9.47914569209701e-05,-4.25483371313398e-05,-7.65266269936193e-05,-0.000114605828025572,-4.08787032002337e-05,-0.000239613245911432,0.000153136545978615,0.00014422614689816,0.000287291450805286 +8.332,0.559901810829434,-0.292634869859056,-9.50203443943892e-05,-4.26248884799521e-05,-7.69963580393803e-05,-0.000114311219694836,-0.176537237744955,0.295731252281857,-0.132961301176634,0.000144264947985912,0.369189758115522 +8.334,0.559901725497762,-0.292635024286693,-9.52487017997494e-05,-0.000748697288111082,0.00110639838213368,-0.000646451032732047,-0.105543678560721,0.217135582687671,-0.319186131154169,0.00148410375207842,0.400208840075291 +8.336,0.559898816040282,-0.292630444265527,-9.76061485253171e-05,-0.000464799602722788,0.000791545972711207,-0.00139105574431137,0.339460234324775,-0.521764960313581,-0.176881114664867,0.00166661926707579,0.647115795838696 +8.338,0.559899866299351,-0.292631858102802,-0.000100812924776997,0.000609143649188471,-0.000980661459121343,-0.00135397549139175,0.267431932224345,-0.508842109617932,0.146946738179397,0.00177932642144216,0.593324089141203 +8.34,0.559901252614879,-0.292634366911364,-0.000103022050490884,0.000604928126174475,-0.0012438224657603,-0.000803268791593847,-0.0493178656524427,-0.0385060210626816,0.275552196191712,0.00159946025762306,0.282566767962314 +8.342,0.559902286011856,-0.292636833392665,-0.000104025999943372,0.000411872186578722,-0.00113468554337205,-0.000251766706625023,-0.0970734782418595,0.0857801241878531,0.245594549262587,0.00123310034262402,0.277665576748631 +8.344,0.559902900103625,-0.292638905653537,-0.000104029117317384,0.00021663421320708,-0.000900701969008921,0.000179109405456393,-0.264873832984944,0.425283324542755,0.0494059832012966,0.00094354363885903,0.503453080942367 +8.346,0.559903152548709,-0.292640436200541,-0.000103309562321546,-0.000647623145360937,0.000566447754798782,-5.41427738198582e-05,-0.176115311750729,0.361003858965955,-0.199751436041156,0.000862096419944244,0.448598958337926 +8.348,0.559900309611043,-0.292636639862518,-0.000104245688412663,-0.000487827033796071,0.000543313466855382,-0.000619896338708499,0.285235459557267,-0.381427536659561,-0.112799562398988,0.00095782890377817,0.489458858729137 +8.35,0.559901201240574,-0.292638262946674,-0.00010578914767638,0.000493318692868004,-0.000959262391839294,-0.000505341023415762,0.229748675729949,-0.385132001255702,0.166875751189708,0.00119118311735733,0.478496215999685 +8.352,0.559902282885815,-0.292640476912085,-0.000106267052506326,0.000431167669123622,-0.000997214538167257,4.76066660502602e-05,-0.0715125767908171,0.0597585635558761,0.26321857368895,0.00108747817848546,0.279229568800242 +8.354,0.55990292591125,-0.292642251804826,-0.000105598721012179,0.00020726838570464,-0.00072022813761571,0.000547533271340388,-0.107112085076497,0.154475442236325,0.210655692098379,0.000928160243250436,0.282332218559961 +8.356,0.559903111959358,-0.292643357824636,-0.000104076919420965,2.71932881767997e-06,-0.000379312769222026,0.000890229434443683,-0.264513633330191,0.464232844939979,0.000314050945839146,0.000967674541152148,0.534302999398845 +8.358,0.559902936788566,-0.292643769055903,-0.000102037803274405,-0.000850786147616005,0.001136703242144,0.000548789475123745,-0.168571932787668,0.372950418527167,-0.257057782162827,0.00152220275183123,0.483308612145315 +8.36,0.559899708814767,-0.292638811011667,-0.00010188176152047,-0.000671568402332919,0.00111248890488648,-0.000138001694207511,0.121515277992713,-0.0959000775493594,-0.306810281665806,0.0013067823652436,0.343650020508468 +8.362,0.559900250514956,-0.292639319100284,-0.000102589810051235,-0.000364725035645208,0.000753102931946607,-0.000678451651539342,0.140176645492509,-0.195152919445869,-0.213649354813571,0.00107725810333895,0.321527915929602 +8.364,0.559898249914625,-0.292635798599939,-0.000104595568126628,-0.000110861820362697,0.000331877227102742,-0.000992599113462082,0.282595446259048,-0.500361819963406,0.0243897730093154,0.00105246654917353,0.57516693068264 +8.366,0.559899807067675,-0.292637991591375,-0.000106560206505082,0.000765656749390859,-0.0012483443479068,-0.000580892559502092,0.175947783578851,-0.399020972804923,0.297170557325916,0.00157544597956373,0.527717442791019 +8.368,0.559901312541622,-0.292640791977331,-0.000106919138364636,0.00059292931395263,-0.00126420666411677,0.000196083115841451,-0.294963480230937,0.378406824218856,0.222001531000346,0.00141004689612072,0.528658546750021 +8.37,0.559902178784931,-0.292643048418032,-0.000105775874041716,-0.000414197171533283,0.000265282948969133,0.00030711356449959,-0.247767978016333,0.412232116168232,-0.0567190822147849,0.000579873332219697,0.484294685928029 +8.372,0.559899655752936,-0.292639730845535,-0.000105690684106638,-0.000398142598112594,0.000384721800555974,-3.07932130176636e-05,0.220766906887431,-0.304848811222347,-0.0311002382250083,0.000554505738674387,0.377674528791622 +8.374,0.559900586214538,-0.292641509530829,-0.000105899046893787,0.000468870456016342,-0.000954112295920123,0.00018271261159957,0.184078076795365,-0.305288789151437,0.191120488082307,0.00107868145260242,0.404491068013931 +8.376,0.55990153123476,-0.292643547294719,-0.00010495983366024,0.000338169709068785,-0.000836433356049641,0.000733688739311481,-0.0974146490834463,0.130659472984206,0.244277647848153,0.00116287517706614,0.293654696837608 +8.378,0.559901938893374,-0.292644855264254,-0.000102964291936541,7.92118596825999e-05,-0.000431474403983356,0.00115982320299207,-0.118425237380344,0.208792067482542,0.162368858046233,0.00124001392823063,0.289797015780809 +8.38,0.559901848082199,-0.292645273192335,-0.00010032054084827,-0.00013553124045275,-1.26508611919554e-06,0.00138316417149663,-0.0902141318592897,0.202179589875447,0.0662411171246287,0.00138978899221914,0.231091024808945 +8.382,0.559901396768413,-0.292644860324598,-9.74316352505555e-05,-0.000281644667754519,0.000377243955518344,0.00142478767149056,-0.0573317247287429,0.168078144038121,-0.0140756730890429,0.00150055210828587,0.17814408139644 +8.384,0.559900721503528,-0.292643764216513,-9.46213901623083e-05,-0.000364858139367697,0.000671047490033214,0.00132686147914046,-0.0287300081364064,0.122019030365767,-0.0731530520152293,0.00153100868076231,0.145139333600726 +8.386,0.559899937335855,-0.292642176134638,-9.21241893339919e-05,-0.000396564700300183,0.000865320076981575,0.00113217546342954,-0.00591666765585603,0.0717608779067029,-0.112184926003236,0.0014791428859794,0.133304494209468 +8.388,0.559899135244727,-0.292640302936205,-9.00926883085906e-05,-0.000388524809991118,0.000958091001659994,0.000878121775127568,0.0112447006844787,0.0230306586232516,-0.134273145491222,0.00135646148024692,0.136697227953647 +8.39,0.559898383236615,-0.292638343770631,-8.8611702233482e-05,-0.000351585897562273,0.000957442711474571,0.000595082881464714,0.0232961671897731,-0.0198903208313605,-0.142887339075363,0.00118086105233969,0.146133938346115 +8.392,0.559897728901136,-0.292636473165359,-8.7712356782732e-05,-0.000295340141232036,0.000878529718334561,0.000306572418826179,-0.141592681399057,0.241415799947914,-0.270475863774737,0.000976230973184572,0.389213654404565 +8.394,0.55989720187605,-0.292634829651758,-8.73854125581774e-05,-0.000917956623158438,0.00192310591126612,-0.000486820573634115,-0.0677344512839255,0.138281156001449,-0.443926107983749,0.00218585795029334,0.469872347925935 +8.396,0.559894057074644,-0.292628780741714,-8.96596390772691e-05,-0.000566277946367828,0.00143165434234054,-0.00146913201310941,0.368063189107294,-0.613943101537761,-0.292686528444282,0.00212806337791617,0.773344714234476 +8.398,0.559894936764265,-0.292629103034389,-9.32619406106144e-05,0.000554296133270576,-0.000532666494884651,-0.00165756668741112,0.294469341480249,-0.605682929061292,0.0425878236696787,0.00182715766187444,0.674816809477207 +8.4,0.559896274259177,-0.292630911407693,-9.62899058269129e-05,0.000611599419553039,-0.000991077373904361,-0.00129878071843071,-0.0194214782589476,-0.134229375219034,0.189942581812304,0.00174445394482921,0.233394308788751 +8.402,0.559897383161943,-0.292633067343884,-9.8457063484339e-05,0.00047661022023476,-0.00106958399576097,-0.000897796360161645,-0.0705072606826427,-0.00318914483721203,0.181181308838638,0.00147553567572584,0.194443079399203 +8.404,0.559898180700058,-0.292635189743676,-9.98810912675591e-05,0.0003295703768225,-0.00100383395325321,-0.000574055483076243,-0.0680884515019836,0.0520002525900124,0.138762044194492,0.00120243042901982,0.163079638233586 +8.406,0.55989870144345,-0.292637082679697,-0.000100753285416644,0.000204256414226856,-0.000861582985400939,-0.000342748183383739,-0.0562936039866359,0.0807947978208501,0.0955578911702173,0.000949485250384681,0.137215450185522 +8.408,0.559898997725715,-0.292638636075618,-0.000101252084001094,0.000104395960875981,-0.000680654761969843,-0.000191823918395416,-0.0441550305069333,0.0927230004999696,0.0599705974741151,0.000714832733797225,0.118927263914495 +8.41,0.559899119027294,-0.292639805298745,-0.000101520581090225,2.76362921991421e-05,-0.000490690983401101,-0.000102865793487305,-0.0334458068185142,0.0915516734749172,0.0334522033459192,0.000502118290154252,0.103050380001706 +8.412,0.559899108270884,-0.292640598839552,-0.000101663547175043,-2.93872663981209e-05,-0.000314448068070051,-5.80151050116948e-05,-0.0243865348401063,0.0809060469869249,0.0150814312097682,0.000321102711525237,0.0858367117723716 +8.414,0.559899001478228,-0.292641063091017,-0.000101752641510272,-6.99098471612724e-05,-0.000167066795453437,-4.25400686482382e-05,-0.016852869412491,0.0645394523518732,0.00313265739911602,0.000186033218307349,0.0667770444067003 +8.416,0.559898828631495,-0.292641267106733,-0.000101833707449636,-9.67987440480776e-05,-5.62902586625869e-05,-4.54844754152321e-05,-0.181528720000172,0.34138945786958,-0.131874387071835,0.000120861191345217,0.408522082750686 +8.418,0.559898614283252,-0.292641288252052,-0.000101934579411933,-0.000796024727162202,0.00119849103602534,-0.000570037616935755,-0.106835846391852,0.244398128929116,-0.317280123662735,0.00154757197390252,0.414500929274901 +8.42,0.559895644532586,-0.292636473142589,-0.000104113857917379,-0.000524142129615437,0.00092130225705377,-0.00131460497006603,0.328311424040234,-0.50888513850056,-0.184960314133237,0.00168870040214731,0.633216229376922 +8.422,0.559896517714733,-0.292637603043024,-0.000107192999292197,0.00051722096899859,-0.000837049517976677,-0.00130987887346862,0.259712066005892,-0.507637249409888,0.128767747621863,0.00163827717113932,0.584574261360431 +8.424,0.559897713416462,-0.292639821340661,-0.000109353373411253,0.000514706134408017,-0.00110924674058556,-0.000799533979578636,-0.0456326002193835,-0.0478938785470136,0.255437917503784,0.00146102885693534,0.263864903887819 +8.426,0.559898576539271,-0.292642040029986,-0.000110391135210511,0.000334690568121076,-0.00102862503216471,-0.000288127203453601,-0.0895979514608868,0.0689778820485277,0.226336469942875,0.00111942151067194,0.253009760175551 +8.428,0.559899052178735,-0.29264393584079,-0.000110505882225068,0.00015631432856435,-0.000833335212391354,0.000105811900193165,-0.25056041548512,0.40474085323883,0.0374491909028064,0.000854445963035905,0.477491488916658 +8.43,0.559899201796585,-0.292645373370836,-0.000109967887609738,-0.000667551093819292,0.000590338380790432,-0.000138330439842392,-0.163000169466057,0.340119850457415,-0.20430047432872,0.000901808836328738,0.42893968309318 +8.432,0.559896381974359,-0.292641574487267,-0.000111059203984437,-0.000495686349299807,0.000527144189438157,-0.000711389997121626,0.284011080209304,-0.39876768224622,-0.122343791199444,0.00101472246518213,0.504624574640129 +8.434,0.559897219051188,-0.292643264794078,-0.000112813447598226,0.000468493227018303,-0.00100473234819498,-0.00062770560464033,0.227980551020796,-0.398204683269039,0.151329478555822,0.00127396519629396,0.483159096469391 +8.436,0.559898255947267,-0.29264559341666,-0.000113570026402998,0.000416235854783277,-0.00106567454363782,-0.000106072082898407,-0.0653286722912682,0.0490598224892166,0.249307379919225,0.00114898468507429,0.262352570576699 +8.438,0.559898883994607,-0.292647527492253,-0.000113237735929819,0.000207178537853259,-0.000808493058238136,0.000369523915036459,-0.100044576026326,0.146009481970276,0.200745586810764,0.000912760590489171,0.267631232559867 +8.44,0.559899084661419,-0.292648827388892,-0.000112091930742853,1.60575506780187e-05,-0.000481636615756784,0.000696910264344563,-0.0836624006669882,0.163031613272022,0.126486195448881,0.000847298997473875,0.222659969124615 +8.442,0.55989894822481,-0.292649454038716,-0.000110450094872441,-0.000127471064814657,-0.000156366605150119,0.000875468696831929,-0.0599339303602874,0.153706112868794,0.0582184269820465,0.000898412392336477,0.174948650700513 +8.444,0.55989857477716,-0.292649452855313,-0.000108590055955524,-0.000223678170763211,0.000133187835718599,0.000929783972272826,-0.0378861148981005,0.130600360147987,0.00346460081727338,0.000965540863327294,0.136028729434921 +8.446,0.559898053512127,-0.292648921287373,-0.00010673095898335,-0.000279015524407042,0.000366034835441771,0.000889327100101021,-0.0193300240397585,0.0994222675750275,-0.0369530576190767,0.00100136599432531,0.107814496179952 +8.448,0.559897458715062,-0.292647988715971,-0.00010503274755512,-0.000300998266922237,0.000530876906018665,0.000781971741796536,-0.00448095064525909,0.0647555541931498,-0.0644108144442493,0.00099192240170411,0.091444593798205 +8.45,0.559896849519059,-0.292646797779749,-0.000103603072016165,-0.000296939326988077,0.000625057052214342,0.000631683842324052,0.00685564739702906,0.030537051928726,-0.0810063631573314,0.000936959849240239,0.0868420538316981 +8.452,0.559896270957754,-0.292645488487762,-0.000102506012185824,-0.000273575677334123,0.000653025113733556,0.000457946289167246,0.0150016840616518,-0.000186191593393135,-0.0889263028075261,0.000843208310061991,0.0901829946442836 +8.454,0.55989575521635,-0.292644185679294,-0.000101771286859495,-0.000236932590741449,0.000624312285840769,0.000275978631093829,0.0203270888315695,-0.0254063753229336,-0.0901616870867645,0.000722542100937796,0.0958530347237265 +8.456,0.559895323227391,-0.292642991238619,-0.000101402097661449,-0.000192267322007854,0.000551399612441833,9.72995408202278e-05,0.0232206402509194,-0.0441285951669518,-0.0863973396098466,0.00059200967589804,0.0997548562062545 +8.458,0.559894986147062,-0.292641980080844,-0.000101382088696214,-0.000144050029737782,0.000447797905172981,-6.96107273455194e-05,0.024073760859772,-0.0562161782992217,-0.0789982521204148,0.000475519745443171,0.0999025950743222 +8.46,0.559894747027272,-0.292641200046998,-0.000101680540570831,-9.59722785687339e-05,0.000326534899244871,-0.000218693467661537,0.0232707180885974,-0.062170938286385,-0.0690537248137939,0.00040455228521955,0.0957871014199075 +8.462,0.559894602257948,-0.292640673941247,-0.00010225686256686,-5.09671573834026e-05,0.000199114152027468,-0.000345825626600665,-0.146603590378579,0.232361960884243,-0.182121487471645,0.00040229275494732,0.329625438606831 +8.464,0.559894543158643,-0.29264040359039,-0.000103063843077233,-0.000682386640082986,0.00125598274278174,-0.000947179417548037,-0.0807086009135993,0.156979778679518,-0.347877592605801,0.00171472826586487,0.39009658882501 +8.466,0.559891872711387,-0.292635650010276,-0.000106045580237052,-0.000373801561037764,0.000827033266745472,-0.00173733599702372,0.339217677336467,-0.572967851809892,-0.204443260962682,0.0019601142818449,0.696532726279423 +8.468,0.559893047952398,-0.292637095457323,-0.000110013187065328,0.000674484069262734,-0.00103588866445757,-0.00176495246139868,0.263831118382737,-0.550167099291081,0.118367220927591,0.00215477406607703,0.621531572134167 +8.47,0.559894570647664,-0.292639793564934,-0.000113105390082649,0.000681522912493535,-0.00137363513041959,-0.00126386711331319,-0.0427488966447298,-0.072998801701466,0.25680311601682,0.00198713538338261,0.270377760938544 +8.472,0.559895774044048,-0.292642589997845,-0.00011506865551858,0.000503488482683834,-0.0013278838712634,-0.000737739997331508,-0.0908404357083945,0.0578395274350448,0.239048674028405,0.00160032388328721,0.262186315905958 +8.474,0.559896584601595,-0.292645105100419,-0.000116056350071975,0.000318161169659997,-0.00114227702067943,-0.000307672417199681,-0.0858896830879615,0.109256859340937,0.186768121328763,0.00122502475001822,0.232801267433559 +8.476,0.559897046688727,-0.292647159105928,-0.000116299345187379,0.000159929750331873,-0.00089085643389951,9.33248798379408e-06,-0.238026435471512,0.426816695677618,0.00914716464982512,0.000905146289940656,0.4887870152874 +8.478,0.559897224320596,-0.292648668526154,-0.00011601902012004,-0.000633944572225945,0.00056498976203085,-0.000271083758600384,-0.153893728940847,0.3518189141822,-0.214928740765881,0.000891395286071967,0.440061577271714 +8.48,0.559894510910438,-0.29264489914688,-0.00011738368022178,-0.000455645165431446,0.000516419222829136,-0.000850382475079636,0.281548060317223,-0.394363060280626,-0.123018356112107,0.00109428135523323,0.4999250439044 +8.482,0.559895401739935,-0.292646602849263,-0.000119420550020358,0.000492247669042821,-0.00101246247909148,-0.000763157183048758,0.222662211016301,-0.399335885529313,0.157020104919286,0.0013600723970749,0.483428301855624 +8.484,0.559896479901114,-0.292648948996796,-0.000120436308953975,0.00043500367863366,-0.00108092431928794,-0.00022230205540256,-0.0676761574280719,0.0434229707572856,0.261992221712384,0.00118618876587545,0.274053901470875 +8.486,0.559897141754649,-0.29265092654654,-0.000120309758241968,0.000221543039330443,-0.000838770596062281,0.000284811703801128,-0.268768221518844,0.433255649415879,0.0950334962156495,0.00091309097997765,0.518631063524108 +8.488,0.559897366073272,-0.29265230407918,-0.000119297062138771,-0.0006400692074416,0.000652098278375384,0.000157831929459996,-0.184439356655502,0.371756070739758,-0.154048642171491,0.000927271089235571,0.442664022222543 +8.49,0.559894581477819,-0.292648318153427,-0.000119678430524128,-0.000516214387291486,0.000648253686896588,-0.000331382864884766,0.258606596345521,-0.371501838791671,-0.0941368783141797,0.000892482346806355,0.462334013195814 +8.492,0.559895301215723,-0.292649711064433,-0.00012062259359831,0.000394357177940828,-0.000833909076791798,-0.000218715583796849,0.209385060657974,-0.37701984259218,0.156886892544066,0.000948028711983344,0.458911279428942 +8.494,0.559896158906531,-0.292651653789734,-0.000120553292859316,0.000321325855340317,-0.000859825683471966,0.000296164705291429,-0.0717353980175964,0.0622772525112196,0.239643511260793,0.000964501966783157,0.257785639628143 +8.496,0.559896586519144,-0.292653150367166,-0.000119437934777145,0.000107415585870475,-0.000584800066746947,0.000739858461246216,-0.100068505710948,0.151211577030552,0.180430553107761,0.000949167935000308,0.255800374038158 +8.498,0.559896588568875,-0.292653992990001,-0.000117593859014331,-7.89481675034319e-05,-0.000254979375349823,0.00101788691772239,-0.0796844062816933,0.16132999002691,0.0990763871143438,0.00105230274744312,0.205409592692699 +8.5,0.559896270726474,-0.292654170284668,-0.000115366387106255,-0.000211322039256264,6.05198933606241e-05,0.00113616400970355,-0.218568322857222,0.44127409613144,-0.095523766724718,0.00115723304425403,0.501617114622813 +8.502,0.559895743280718,-0.292653750910427,-0.000113049202975515,-0.000953221458932612,0.00151011700917653,0.000635791850823395,-0.126636743175197,0.33477758594477,-0.327837329017319,0.00189560433866018,0.48537636023012 +8.504,0.559892457840638,-0.292648129816631,-0.000112823219702962,-0.000717869011956997,0.00139963023713956,-0.000175185306365585,0.309923531137438,-0.435205774220669,-0.240470219689033,0.00158271621291053,0.585903223770788 +8.506,0.55989287180467,-0.292648152389479,-0.000113749944200978,0.000286472665617003,-0.000230706087705957,-0.000326089027932632,0.253517133251501,-0.456741314810891,0.0405660496608901,0.000491554616689081,0.523955312877282 +8.508,0.559893603731301,-0.292649052640982,-0.000114127575814693,0.000296199521049344,-0.000427335022104616,-1.29211077219707e-05,-0.0341817442683669,-0.0242803876033014,0.153311032250432,0.000520111846059842,0.158940874142203 +8.51,0.559894056602754,-0.292649861729567,-0.000113801628631865,0.000149745688543551,-0.000327827638119152,0.000287155101069029,-0.0703435382790207,0.0661454384425088,0.12148772590359,0.00046081751661816,0.155186017248944 +8.512,0.559894202714055,-0.292650363951534,-0.000112978955410417,1.48253679332927e-05,-0.00016275326833461,0.000473029795892335,-0.22223182931385,0.379438459305409,-0.0575353836475058,0.000500465389102882,0.443475873900383 +8.514,0.559894115904226,-0.292650512742641,-0.000111909509448296,-0.000739181628711753,0.00118992619910232,5.70135664790313e-05,-0.135118685309881,0.298127221454815,-0.285132939752987,0.00140198587236024,0.434094105724115 +8.516,0.55989124598754,-0.292645604246738,-0.000112750901144501,-0.000525649373306172,0.00102975561748452,-0.000667501963119487,0.297201153590043,-0.449930198095121,-0.198773990184264,0.0013350141445567,0.574697144613527 +8.518,0.559892013306733,-0.292646393720171,-0.000114579517300775,0.000449622985648817,-0.000609794593278768,-0.000738082394258292,0.239518276400058,-0.453813536270539,0.0796450989239267,0.00105772203150442,0.519287080731485 +8.52,0.559893044479483,-0.292648043425111,-0.000115703230721534,0.000432423732293955,-0.000785498527597437,-0.000348921567423815,-0.0476258376208964,-0.00888214860335327,0.190397454448472,0.000962156162648386,0.196464509857027 +8.522,0.559893743001662,-0.292649535714281,-0.00011597520357047,0.000259119635165253,-0.000645323187692177,2.35074235355103e-05,-0.0837198986108713,0.0892340011569648,0.156785781753286,0.000695799971876001,0.19888064195865 +8.524,0.559894080958023,-0.292650624717862,-0.000115609201027392,9.7544137850358e-05,-0.000428562522969458,0.000278221559589539,-0.0709021742914408,0.11122926439617,0.0974171993004221,0.000520180671635686,0.163979200805789 +8.526,0.559894133178213,-0.292651249964373,-0.000114862317332112,-2.44890620004794e-05,-0.000200406130107544,0.000413176220737156,-0.0512525055174186,0.109256598702253,0.0430135806547575,0.00045986619850233,0.128117101912826 +8.528,0.559893983001775,-0.292651426342382,-0.000113956496144443,-0.000107465884219294,8.46387183950452e-06,0.00045027588220855,-0.0332235336533777,0.0947342673647753,0.000614001734004912,0.00046299991738254,0.100393035613469 +8.53,0.559893703314676,-0.292651216108886,-0.000113061213803278,-0.000157383196613976,0.000178530939351515,0.000415632227673175,-0.0183650688337206,0.0725035756987508,-0.0292251043669621,0.000478949804846744,0.0803003796232098 +8.532,0.559893353468989,-0.292650712218625,-0.000112293967233751,-0.000180926159554168,0.000298478174634476,0.000333375464740715,-0.00673819563340299,0.0465025205009691,-0.0480241699809984,0.000482662093431043,0.0671878604786674 +8.534,0.559892979610038,-0.292650022196187,-0.000111727711944315,-0.000184335979147597,0.000364541021355454,0.000223535547749118,0.00194889288039046,0.0202145947377318,-0.0579393555832329,0.000465658727574904,0.0613954147251265 +8.536,0.559892616125072,-0.29264925405454,-0.000111399825042754,-0.000173130588032607,0.000379336553585394,0.000101618042407808,0.00807095119905377,-0.00359791143063141,-0.0611440277003522,0.000429181369518012,0.061779263052756 +8.538,0.559892287087686,-0.292648504849973,-0.000111321239774684,-0.000152052174351385,0.00035014937563293,-2.10405630522644e-05,0.0120114207191575,-0.0230715895971294,-0.0595509960544949,0.00038231813228602,0.06498379494392 +8.54,0.559892007916375,-0.292647853457037,-0.000111483987294964,-0.000125084905155961,0.000287050195196846,-0.000136585941810251,0.0141381238383116,-0.0372464722120074,-0.0547077345239779,0.000341613476842785,0.0676766019733062 +8.542,0.559891786748065,-0.292647356649192,-0.000111867583541925,-9.54996789981449e-05,0.000201163486784917,-0.000239871501148152,0.01479279763961,-0.0459413387991871,-0.0477902839272662,0.00032729997581314,0.0679216070960991 +8.544,0.559891625917659,-0.29264704880309,-0.000112443473299556,-6.59137145975281e-05,0.000103284840000118,-0.000327747077519294,0.0142878779363396,-0.0495604857570051,-0.039657364709839,0.000349900732734775,0.0650622146881217 +8.546,0.559891523093207,-0.292646943509832,-0.000113178571852002,-3.83481672527928e-05,2.92154375691777e-06,-0.000398500959987491,0.0129083809821728,-0.0488855181682296,-0.0309300475613128,0.000400352510246312,0.0592713086434094 +8.548,0.55989147252499,-0.292647037116915,-0.000114037477139506,-1.42801906688425e-05,-9.22572326727791e-05,-0.000451467267764532,0.0109137566900428,-0.0448872641937891,-0.0220665079342672,0.000461018453739923,0.0511947980199703 +8.55,0.559891465972444,-0.292647312538763,-0.00011498444092306,5.30685950739299e-06,-0.000176627513018299,-0.000486766991724589,0.00853773546305477,-0.0385755111742735,-0.0134189043063577,0.000517848959973337,0.0417256513667167 +8.552,0.559891493752428,-0.292647743626967,-0.000115984545106404,1.98707511833729e-05,-0.000246559277369856,-0.000505142884989957,0.00598685857833099,-0.0308921114175199,-0.00527123209052185,0.000562455027771744,0.031905342988621 +8.554,0.559891545455449,-0.292648298775872,-0.00011700501246302,2.92542938207143e-05,-0.000300195958688365,-0.000507851920086674,0.00343880686426357,-0.0226458671537204,0.00213992194103516,0.000590666572657956,0.0230052158804777 +8.556,0.559891610769603,-0.292648944410802,-0.000118015952786751,3.36259786404318e-05,-0.000337142745984768,-0.000496583197225813,0.00104060395717324,-0.0144823903564327,0.0086189318971249,0.000601157890555125,0.0168851554354426 +8.558,0.559891679959364,-0.292649647346856,-0.000118991345251923,3.34167096494068e-05,-0.000358125520114089,-0.000473376192498178,-0.00109296897227187,-0.00687975390545477,0.0140137548423239,0.000594521306821591,0.0156496300197393 +8.56,0.559891744436442,-0.292650376912882,-0.000119909457556744,2.92541027513448e-05,-0.000364661761606584,-0.000440528177856524,-0.00287991780423332,-0.000160954968103675,0.0182216800025502,0.000572624727366355,0.0184485624148938 +8.562,0.559891796975775,-0.292651105993902,-0.000120753457963349,2.18970384324748e-05,-0.000358769339986504,-0.000400489472487986,-0.0042701885985564,0.0054842391288394,0.0211943183854338,0.000538132639021431,0.0223049438760261 +8.564,0.559891832024595,-0.292651811990242,-0.000121511415446696,1.21733483571211e-05,-0.000342724805091229,-0.000355750904314798,-0.00524342629731771,0.00997374452124443,0.0229396476068099,0.000494132763896345,0.0255577098237513 +8.566,0.559891845669168,-0.292652476893123,-0.000122176461580609,9.23333243196924e-07,-0.000318874361901513,-0.000308730882060716,-0.00580562603547101,0.0133078735912655,0.0235201676719591,0.000443842842411999,0.0276406056464382 +8.568,0.559891835717928,-0.29265308748769,-0.000122746338974938,-1.10491557847604e-05,-0.000289493310726173,-0.000261670233626972,-0.00598481244423619,0.015546614946825,0.0230468440131096,0.000390384133854272,0.0284371629256881 +8.57,0.559891801472545,-0.292653634866366,-0.000123223142515116,-2.30159165337452e-05,-0.00025668790211422,-0.000216543506008287,-0.00582611166255334,0.0167904663193848,0.0216696663946033,0.000336614767204365,0.0280256628464044 +8.572,0.559891743654262,-0.292654114239298,-0.000123612512998972,-3.43536024349815e-05,-0.000222331445448611,-0.00017499156804853,-0.0053865743532315,0.0171649940372306,0.0195660046480525,0.000285014895266217,0.0265797054432262 +8.574,0.559891664058135,-0.292654524192147,-0.00012392310878731,-4.45622139466688e-05,-0.000188027925965305,-0.000138279487416086,-0.00473014071661442,0.0168088128832437,0.0169281231463018,0.000237616305195368,0.0243201927418191 +8.576,0.559891565405406,-0.292654866351002,-0.000124165630948636,-5.32741653014371e-05,-0.000155096193915644,-0.00010727907546333,-0.00392299732976473,0.0158644685825695,0.0139509427586646,0.000195963685635759,0.0214872072478535 +8.578,0.559891450961474,-0.292655144576923,-0.000124352225089164,-6.0254203265726e-05,-0.000124570051635034,-8.2475716381434e-05,-0.0030295446498619,0.0144716349528979,0.0108210414864846,0.000161091621657283,0.0183221531990011 +8.58,0.559891324388593,-0.292655364631209,-0.000124495533814162,-6.53923439008834e-05,-9.72096541040588e-05,-6.39949095173961e-05,-0.00210911745013262,0.0127621182684195,0.00770757430015001,0.000133496157008439,0.0150574480144516 +8.582,0.559891189392098,-0.29265553341554,-0.000124608204727233,-6.86906730662593e-05,-7.35215785613389e-05,-5.16454191808237e-05,-0.00121353074811956,0.0108562755902957,0.00475550039624133,0.000113097658697295,0.0119141160220863 +8.584,0.559891049625901,-0.292655658717523,-0.000124702115490885,-7.02464668933611e-05,-5.37845517428807e-05,-4.49729079324329e-05,-0.000385450719945283,0.0088605611077492,0.00208122120319398,9.9246695486962e-05,0.00910986262784946 +8.586,0.559890908406231,-0.292655748553747,-0.000124788096358963,-7.02324759460403e-05,-3.8079334130346e-05,-4.33205343680487e-05,0.000342464258340425,0.00686600761315283,-0.000229483873744001,9.08807188750999e-05,0.00687837227550398 +8.588,0.559890768695997,-0.292655811034859,-0.000124875397628357,-6.88766098599989e-05,-2.63205212902602e-05,-4.58908434274092e-05,0.000947730047210675,0.00494750072854397,-0.00212145403414965,8.68488729764326e-05,0.0054659420890034 +8.59,0.559890632899791,-0.292655853835832,-0.000124971659732673,-6.6441555757198e-05,-1.82893312161723e-05,-5.18063505046464e-05,0.00141762819538847,0.00316375142750472,-0.00356844786619177,8.62141399097734e-05,0.00497521989153516 +8.592,0.559890502929774,-0.292655884192184,-0.000125082623030376,-6.32060970784457e-05,-1.36655155802427e-05,-6.01646348921747e-05,0.00174833757193887,0.00155786645389434,-0.00457012260327117,8.83263285531129e-05,0.005135139020762 +8.594,0.559890380075403,-0.292655908497894,-0.000125212318272241,-5.94482054694433e-05,-1.20578654005956e-05,-7.00868409177291e-05,0.00194374173701598,0.000158426851500176,-0.00514812021917743,9.26911350744131e-05,0.00550512241449703 +8.596,0.559890265136952,-0.292655932423646,-0.000125362970394047,-5.54311301303826e-05,-1.30318081742421e-05,-8.07571157688821e-05,0.00201402250432591,-0.00101903878391129,-0.00534161051415091,9.88137134163588e-05,0.00579892486379451 +8.598,0.559890158350882,-0.292655960625127,-0.000125535346735317,-5.1392115452137e-05,-1.61340205362421e-05,-9.14532829743398e-05,0.00197415882252066,-0.00197029348392352,-0.00520265112849733,0.000106137453879836,0.00590312952883318 +8.6,0.559890059568491,-0.292655996959728,-0.000125728783525944,-4.75344948403008e-05,-2.09129821099353e-05,-0.000101567720282869,0.00184241689960537,-0.00270046556990793,-0.00479162262644316,0.000114074023440537,0.00580057425781721 +8.602,0.559889968212903,-0.292656044277055,-0.000125941617616449,-4.40224478537163e-05,-2.69358828158727e-05,-0.00011061977348011,0.0016389191809237,-0.00322206554492704,-0.00417298244136711,0.000122066588315126,0.00552100941072951 +8.604,0.559889883478699,-0.292656104703259,-0.000126171262619865,-4.09788181166038e-05,-3.38012442896478e-05,-0.000118259650048343,0.00138434452789479,-0.003553050909048,-0.00341148339353446,0.00012964232518479,0.00511652220542045 +8.606,0.559889804297631,-0.292656179482032,-0.000126414656216642,-3.84850697421377e-05,-4.11480864520631e-05,-0.000124265707054247,0.00109880983478774,-0.00371502230714442,-0.00256898139133128,0.000136441311784282,0.00464848783849257 +8.608,0.55988972953842,-0.292656269295605,-0.000126668325448082,-3.65835787774534e-05,-4.86613335182238e-05,-0.000128535575613667,0.000800954455537804,-0.00373161624517364,-0.00170188162347578,0.000142224040915292,0.00417886215391394 +8.61,0.559889657963315,-0.292656374127366,-0.000126928798519096,-3.52812519199869e-05,-5.6074551432756e-05,-0.000131073233548149,0.00050724432987654,-0.00362713765272238,-0.000859250669733275,0.000146864953641752,0.00376187932760016 +8.612,0.559889588413413,-0.292656493593811,-0.000127192618382274,-3.45546014579474e-05,-6.31698841291117e-05,-0.0001319725782926,0.000231491006918942,-0.00342545332029854,-8.1571842162877e-05,0.000150337008630608,0.00343423535903737 +8.614,0.55988951974491,-0.292656626806903,-0.000127456688832267,-3.43552878923108e-05,-6.97763647139548e-05,-0.000131399520916801,-1.54223300835134e-05,-0.00314914980204744,0.000599897254253328,0.000152692046210741,0.00320581643885942 +8.616,0.559889450992261,-0.29265677269927,-0.000127718216465941,-3.46162907782815e-05,-7.57664833373001e-05,-0.000129572989275587,-0.000225629320778652,-0.00281894093136776,0.00116323111474432,0.000154038979269402,0.00305784943894314 +8.618,0.559889381279747,-0.292656929872836,-0.000127974980789369,-3.52578051754253e-05,-8.10521284394246e-05,-0.000126746596457824,-0.000394207992637696,-0.00245330164516611,0.00159548693614389,0.000154522684625888,0.00295290830657506 +8.62,0.55988930996104,-0.292657096907783,-0.000128225202851773,-3.61931227488328e-05,-8.55796899179678e-05,-0.000123191041531009,-0.000518975980250002,-0.00206829268643406,0.00189198509809052,0.000154304433423873,0.00285075048298333 +8.622,0.559889236507256,-0.292657272191596,-0.000128467744955493,-3.73337090964251e-05,-8.93252991851599e-05,-0.000119178656065463,-0.00060018512382256,-0.00167754079030728,0.00205531350359241,0.000153545976733305,0.00272005126496762 +8.624,0.559889160626204,-0.29265745420898,-0.000128701917476035,-3.85938632441228e-05,-9.22898530791962e-05,-0.00011496978751664,-0.00064014513134772,-0.00129233425003068,0.00209414077398431,0.000152397359895462,0.00254270312546592 +8.626,0.559889082131803,-0.292657641351008,-0.00012892762410556,-3.98942896218157e-05,-9.44946361852821e-05,-0.000110802092969526,-0.000642806384505436,-0.000921798932313573,0.00202192704247382,0.000150989716267849,0.00231324496858036 +8.628,0.559889001049045,-0.292657832187525,-0.000129145125847913,-4.11650887821442e-05,-9.59770488084501e-05,-0.000106882079346746,-0.000613327243159519,-0.000573121036739772,0.00185560252840375,0.000149432049165852,0.00203663908765734 +8.63,0.559888917471447,-0.292658025259203,-0.000129355152422947,-4.23475985944546e-05,-9.67871203322419e-05,-0.000103379682855909,-0.000557650370329984,-0.000251790036747853,0.00161428450640392,0.000147812126012426,0.00172635066708661 +8.632,0.559888831658651,-0.292658219336006,-0.000129558644579336,-4.33956902634639e-05,-9.69842089554414e-05,-0.000100424941321131,-0.000482105230732076,3.81607211215848e-05,0.0013180809256664,0.000146199492336697,0.00140400107576218 +8.634,0.559888743888686,-0.292658413196039,-0.000129756852188231,-4.42760195173827e-05,-9.66344774477556e-05,-9.81073591532438e-05,-0.000393053298242043,0.000293930400851948,0.000987026444083717,0.000144650067597385,0.00110231899971128 +8.636,0.559888654554573,-0.292658605873916,-0.000129951074015949,-4.49679034564326e-05,-9.58084873520332e-05,-9.64768355447949e-05,-0.000296584437569621,0.000513754743597869,0.000640175409200379,0.000143210189535135,0.000872771917354513 +8.638,0.559888564017073,-0.292658796429989,-0.000130142759530411,-4.5462357267661e-05,-9.45794584733643e-05,-9.55466575164426e-05,-0.000198272710749725,0.000696742361722279,0.000294873027904885,0.000141919919870368,0.00078212025228361 +8.64,0.559888472705144,-0.29265898419175,-0.000130333260646015,-4.57609942994314e-05,-9.30215179051444e-05,-9.52973434331755e-05,-0.000102991934425335,0.000842744117546445,-3.37926622448575e-05,0.000140814257296874,0.000849686371690992 +8.642,0.559888380973095,-0.29265916851606,-0.000130523948904143,-4.58743250053623e-05,-9.12084820031789e-05,-9.5681828165422e-05,-1.47922368747508e-05,0.000952252891133331,-0.000333357398098649,0.000139923025714495,0.0010090250412208 +8.644,0.559888289207844,-0.292659349025678,-0.000130715987958677,-4.58201632469304e-05,-8.92125063406115e-05,-9.66307730255699e-05,6.31673741091505e-05,0.00102632865400775,-0.000594178965577929,0.000139269037991465,0.0011875981080839 +8.646,0.559888197692442,-0.292659525366086,-0.000130910471996246,-4.56216555089256e-05,-8.71031673871466e-05,-9.80585440277345e-05,0.00012863510950361,0.00106654274300154,-0.000809481572061426,0.000138866033561442,0.001345109969316 +8.648,0.559888106721222,-0.292659697438347,-0.000131108222134788,-4.5305622808916e-05,-8.49463353686058e-05,-9.98686993138153e-05,0.000180238629581858,0.00107493459273577,-0.000975268792796634,0.000138716388553381,0.00146257292483369 +8.65,0.559888016469951,-0.292659865151427,-0.000131309946793501,-4.49007009905983e-05,-8.2803429016204e-05,-0.000101959619198921,0.000217421317061324,0.00105397383529081,-0.00109012705720005,0.000138810103211105,0.00153183219558473 +8.652,0.559887927118418,-0.292660028652063,-0.000131516060611583,-4.44359375406704e-05,-8.07304400274411e-05,-0.000104229207542617,0.000240351086250931,0.00100652216074795,-0.00115494545959346,0.000139124707356762,0.00155072709377707 +8.654,0.559887838726201,-0.292660188073187,-0.000131726863623671,-4.39392966455947e-05,-7.87773403732126e-05,-0.000106579401037294,0.000249809992136695,0.000935790028800048,-0.00117257578473332,0.000139627002658708,0.00152086882442764 +8.656,0.559887751361231,-0.292660343761425,-0.000131942378215733,-4.34366975721238e-05,-7.69872799122413e-05,-0.00010891951068155,0.000247072445835937,0.000845285036410644,-0.00114745664098912,0.000140275613601817,0.00144644679446605 +8.658,0.559887664979411,-0.292660496022307,-0.000132162541666397,-4.2951006862251e-05,-7.53962002275704e-05,-0.00011116922760125,0.000233779572094469,0.000738749922354953,-0.00108522274585592,0.000141024725366496,0.00133345893983699 +8.66,0.559887579557204,-0.292660645346226,-0.000132387055126137,-4.2501579283746e-05,-7.40322802228219e-05,-0.000113260401664973,0.000211815627537646,0.000620089882219371,-0.000992318220649271,0.000141827646606414,0.00118914791894555 +8.662,0.559887494973094,-0.292660792151428,-0.000132615583273057,-4.21037443521002e-05,-7.29158406986921e-05,-0.000115138500483848,0.000183192030984475,0.00049329029749045,-0.000875629898463016,0.000142640525121486,0.00102157836551915 +8.664,0.559887411142226,-0.292660937009589,-0.000132847609128073,-4.17688111598082e-05,-7.20591190328603e-05,-0.000116762921258825,0.000149942128162749,0.000362327438893328,-0.000742152500032385,0.000143424997829493,0.000839377238241121 +8.666,0.559887327897849,-0.292661080387904,-0.000133082634958093,-4.15039758394492e-05,-7.14665309431189e-05,-0.000118107110483978,0.000114031131759316,0.000231074374912271,-0.000598695735348629,0.000144150388838878,0.000651793716812338 +8.668,0.559887245126323,-0.292661222875712,-0.000133320037570009,-4.13126866327708e-05,-7.11348215332109e-05,-0.00011915770420022,7.72814104331331e-05,0.000103206776450454,-0.000451638296219301,0.000144794541960829,0.000469682026179096 +8.67,0.559887162647102,-0.29266136492719,-0.000133559265774894,-4.11948501977167e-05,-7.10537038373172e-05,-0.000119913663668855,4.131500697114e-05,-1.7888048681197e-05,-0.000306733169246133,0.000145344182017378,0.00031001959486849 +8.672,0.559887080346922,-0.292661507090528,-0.000133799692224684,-4.11474266048862e-05,-7.12063737279357e-05,-0.000120384636877204,7.51268491861165e-06,-0.000129194509257444,-0.000168963691128715,0.000145794098549095,0.000212829487094242 +8.674,0.559886998057396,-0.292661649752685,-0.000134040804322402,-4.11647994580423e-05,-7.15704818743469e-05,-0.000120589518433369,-2.3010399137081e-05,-0.000228141210776115,-4.24496687667118e-05,0.00014614618211277,0.000233194907537113 +8.676,0.559886915687724,-0.292661793372455,-0.000134282050298418,-4.12394682014345e-05,-7.211893857104e-05,-0.000120554435552271,-4.94151941587858e-05,-0.000312659086121255,6.96006594372136e-05,0.000146407673874962,0.000324101554056786 +8.678,0.559886833099523,-0.292661938228439,-0.000134523022064612,-4.13624602346775e-05,-7.28211182188323e-05,-0.00012031111579562,-7.11355002726428e-05,-0.000381222661085851,0.000164896526107769,0.000146589675486692,0.000421404604918868 +8.68,0.559886750237883,-0.292662084656928,-0.0001347632947616,-4.15240102025251e-05,-7.36438292153833e-05,-0.00011989484944784,-8.78645350875186e-05,-0.000432872945813212,0.000242035213065521,0.000146705255287342,0.000503666762956249 +8.682,0.559886667003482,-0.292662232803756,-0.000135002601462403,-4.17139183750275e-05,-7.4552610002085e-05,-0.000119342974943358,-9.95323823360419e-05,-0.000467221455968568,0.000300442452166802,0.0001467681447476,0.000564329913361747 +8.684,0.55988658338221,-0.292662382867368,-0.000135240666661374,-4.19221397318694e-05,-7.55127150392582e-05,-0.000118693079639173,-0.000106277361915589,-0.000484434815187287,0.000340289914289173,0.000146791290908315,0.000601472521058287 +8.686,0.559886499314923,-0.292662534854616,-0.000135477373780959,-4.21390278226898e-05,-7.64903492628339e-05,-0.000117981815286202,-0.000108412639976431,-0.00048520145887198,0.000362395749693792,0.000146786170787371,0.000615227141464258 +8.688,0.559886414826099,-0.292662688828765,-0.000135712593922518,-4.23557902917751e-05,-7.74535208747459e-05,-0.000117243496640397,-0.00010639094466527,-0.000470682132158831,0.00036811446512555,0.000146762046768238,0.000606934067321173 +8.69,0.559886329891762,-0.2926628446687,-0.000135946347767521,-4.25645916013509e-05,-7.8373077791469e-05,-0.0001165093574257,-0.000100768525463641,-0.000442446395484594,0.000359221463352048,0.000146725983208316,0.000578751387328111 +8.692,0.559886244567732,-0.292663002321076,-0.000136178631352221,-4.27588643936296e-05,-7.9223306456684e-05,-0.000115806610786989,-9.2170132637272e-05,-0.000402397934418007,0.000337797499173822,0.000146682732017548,0.000533410331191981 +8.694,0.559886158856305,-0.292663161561926,-0.000136409574210669,-4.29332721319001e-05,-7.99826695291416e-05,-0.000115158167429004,-8.12560574429035e-05,-0.00035269247592783,0.000306117132497762,0.000146635250900205,0.000474027666129225 +8.696,0.559886072834644,-0.292663322251755,-0.000136639264021937,-4.30838886234011e-05,-8.06340763603952e-05,-0.000114582142256999,-6.86925169476251e-05,-0.000295651021017187,0.000266544609313592,0.000146584934606564,0.000403948284892064 +8.698,0.55988598652075,-0.292663484098231,-0.000136867902779697,-4.32080421996906e-05,-8.11652736132102e-05,-0.00011409198899175,-5.51259038417013e-05,-0.000233672279442658,0.000221440023435942,0.000146532312148315,0.000326614885505243 +8.7,0.559885900002475,-0.292663646912849,-0.000137095631977904,-4.3304392238768e-05,-8.15687654781662e-05,-0.000113696382163254,-4.11612133314514e-05,-0.000169147432180938,0.000173077371866254,0.00014647730611195,0.000245480907502909 +8.702,0.559885813303181,-0.292663810373293,-0.00013732268830835,-4.33726870530163e-05,-8.18418633419339e-05,-0.000113399679504285,-2.73449041188265e-05,-0.00010438029954265,0.000123576227376048,0.000146419834343415,0.000164055096496201 +8.704,0.559885726511727,-0.292663974280302,-0.000137549230695921,-4.34137718552433e-05,-8.19862866763367e-05,-0.00011320207725375,-1.41524292285344e-05,-4.15155236577282e-05,7.48470504324989e-05,0.000146359888918507,8.67520081386541e-05 +8.706,0.559885639648094,-0.29266413831844,-0.000137775496617365,-4.34292967699305e-05,-8.20079254365648e-05,-0.000113100291302555,-1.97991622614418e-06,1.75230871570739e-05,2.85507633286005e-05,0.000146297913672966,3.35577820843797e-05 +8.708,0.55988555279454,-0.292664302312004,-0.000138001631861132,-4.34216915201479e-05,-8.19161943277084e-05,-0.000113087874200436,8.86002382571733e-06,7.1082514874182e-05,-1.39286178077445e-05,0.000146234652113579,7.2974175823128e-05 +8.71,0.559885465961328,-0.292664465983217,-0.000138227848114167,-4.33938566746276e-05,-8.1723595377068e-05,-0.000113156005773786,1.813912908284e-05,0.000117817394720088,-5.14981260885905e-05,0.00014617131894161,0.000129853854363855 +8.712,0.559885379219113,-0.292664629206386,-0.000138454255884227,-4.33491350038165e-05,-8.14449247488281e-05,-0.00011329386670479,2.5711113793574e-05,0.000156713798188413,-8.33590254115273e-05,0.000146109286172523,0.000179357193980907 +8.714,0.559885292564788,-0.292664791762916,-0.000138681023580986,-4.32910122194533e-05,-8.10967401843144e-05,-0.000113489441875432,3.15064641043319e-05,0.00018709946439381,-0.000108999428406775,0.000146050150375493,0.000218814401376628 +8.716,0.559885206055064,-0.292664953593346,-0.000138908213651728,-4.32231091473992e-05,-8.0696526891253e-05,-0.000113729864418417,3.55255686027825e-05,0.00020864138195805,-0.000128178586655677,0.000145995372109222,0.00024743290477817 +8.718,0.559885119672351,-0.292665114549024,-0.00013913594303866,-4.31489099450422e-05,-8.02621746564823e-05,-0.000114002156222055,3.78303083303702e-05,0.000221331637045802,-0.000140903928282058,0.000145946348818019,0.000265090065432601 +8.72,0.559885033459424,-0.292665274642045,-0.000139364222276617,-4.30717879140777e-05,-7.98112003430695e-05,-0.000114293480131546,3.85342729899337e-05,0.000225462929567286,-0.000147402825201513,0.0001459040993766,0.000272113975534726 +8.722,0.559884947385199,-0.292665433793825,-0.000139593116959186,-4.29947728530825e-05,-7.93603229382132e-05,-0.000114591767522861,3.77927966747061e-05,0.00022159502358947,-0.000148090248384736,0.000145869409176698,0.000269190214582117 +8.724,0.559884861480333,-0.292665592083337,-0.000139822589346708,-4.29206167273789e-05,-7.89248202487117e-05,-0.000114885841125085,3.57926743799129e-05,0.00021051479309748,-0.000143534390970004,0.000145842596941251,0.000257293052846888 +8.726,0.559884775702733,-0.292665749493106,-0.000140052660323686,-4.28516021555628e-05,-7.8518263765823e-05,-0.000115165905086741,3.27421839593395e-05,0.000193191077709926,-0.000134420858137769,0.000145823740339309,0.00023762114851091 +8.728,0.559884690073924,-0.292665906156392,-0.000140283252967055,-4.27896479915415e-05,-7.81520559378721e-05,-0.000115423524557636,2.88615520371898e-05,0.000170726845855098,-0.000121517394237352,0.000145812509215991,0.000211535155905258 +8.73,0.559884604544141,-0.29266606210133,-0.000140514354421917,-4.2736155947414e-05,-7.78353563824027e-05,-0.00011565197466369,2.43742942496227e-05,0.000144310216554399,-0.000105639762562637,0.000145808439302902,0.000180497380192719 +8.732,0.5598845191293,-0.292666217497817,-0.00014074586086571,-4.26921508145431e-05,-7.75748150716545e-05,-0.000115846083607886,1.94993465865932e-05,0.000115166577671924,-8.7619803760728e-05,0.000145810790965067,0.000146016420792444 +8.734,0.559884433775537,-0.29266637240059,-0.000140977738756348,-4.26581585610677e-05,-7.73746900717151e-05,-0.000116002453878733,1.44445080896251e-05,8.45131187254607e-05,-6.82765302628548e-05,0.000145818827527184,0.000109602899758125 +8.736,0.559884348496666,-0.292666526996578,-0.000141209870681225,-4.26343727821845e-05,-7.72367625967526e-05,-0.000116119189728938,9.40074406734059e-06,5.35174821039954e-05,-4.83906673541341e-05,0.000145831661384839,7.27609206013061e-05 +8.738,0.559884263238046,-0.29266668134764,-0.000141442215515264,-4.26205555847983e-05,-7.71606201432991e-05,-0.00011619601654815,4.53790477890318e-06,2.32614101677522e-05,-2.86831036223975e-05,0.000145848508120286,3.72076096543166e-05 +8.74,0.559884178014444,-0.292666835639058,-0.000141674654747417,-4.26162211630689e-05,-7.71437169560816e-05,-0.000116233922143427,1.49880108324346e-09,-5.28948065903024e-06,-9.7975143623087e-06,0.000145868502524925,1.11341769147209e-05 +8.742,0.559884092773162,-0.292666989922508,-0.000141907151203838,-4.2620549589594e-05,-7.71817780659352e-05,-0.000116235206605599,-4.08922202128868e-06,-3.13094827927529e-05,7.71278699338537e-06,0.000145890922840952,3.25037310580557e-05 +8.744,0.559884007532246,-0.29266714436617,-0.00014213959557384,-4.26325780511541e-05,-7.72689548872526e-05,-0.000116203070995454,-7.64246999018865e-06,-5.4129520310488e-05,2.33938268062787e-05,0.000145914981442724,5.94616132411208e-05 +8.746,0.559883922242849,-0.292667298998328,-0.00014237196348782,-4.26511194695547e-05,-7.73982961471772e-05,-0.000116141631298374,-1.05936995287188e-05,-7.3247147930348e-05,3.6895758150087e-05,0.000145940031379809,8.26962400542175e-05 +8.748,0.559883836927768,-0.292667453959355,-0.000142604162099033,-4.2674952849269e-05,-7.75619434789739e-05,-0.000116055487962853,-1.2905031205581e-05,-8.83296560807901e-05,4.79740847870774e-05,0.000145965348501687,0.000101341900440664 +8.75,0.559883751543038,-0.292667609246102,-0.000142836185439671,-4.2702739594377e-05,-7.77516147715003e-05,-0.000115949734959225,-1.45633782810929e-05,-9.92112537956195e-05,5.64872974784126e-05,0.000145990337370511,0.000115090310813168 +8.752,0.559883666116809,-0.292667764965814,-0.00014306796103887,-4.27332063623934e-05,-7.79587884941565e-05,-0.00011582953877294,-1.55784829528316e-05,-0.000105884422766151,6.23915060112486e-05,0.000146014320125936,0.000123882606277009 +8.754,0.559883580610212,-0.292667921081256,-0.000143299503594763,-4.27650535261884e-05,-7.81751524625648e-05,-0.000115700168935181,-1.59801824503292e-05,-0.000108486594698953,6.57324975828706e-05,0.000146036753446769,0.000127849398508569 +8.756,0.559883495056595,-0.292668077666424,-0.000143530761714611,-4.27971270921947e-05,-7.83927348729523e-05,-0.000115566608782608,-1.58153629081745e-05,-0.000107282870087633,6.66357351242054e-05,0.00014605703007291,0.000127279460690641 +8.758,0.559883409421704,-0.292668234652195,-0.000143761770029893,-4.28283149778211e-05,-7.86042839429155e-05,-0.000115433625994684,-1.51447118782268e-05,-0.000102645912611731,6.52948259568582e-05,0.000146074707010825,0.00012259265871375 +8.76,0.559883323743335,-0.29266839208356,-0.00014399249621859,-4.28577059397076e-05,-7.88033185233992e-05,-0.000115305429478781,-1.40395334247178e-05,-9.50336129235325e-05,6.19587896613785e-05,0.000146089315269806,0.000114312675151912 +8.762,0.55988323799088,-0.292668549865469,-0.000144222991747808,-4.28844731115199e-05,-7.89844183946096e-05,-0.000115185790836038,-1.2578278696386e-05,-8.4965930124989e-05,5.69188984139843e-05,0.00014610059135305,0.000103039717457056 +8.764,0.559883152205443,-0.292668708021233,-0.000144453239381934,-4.29080190544931e-05,-7.91431822438991e-05,-0.000115077753885125,-1.08433748044021e-05,-7.30015457718202e-05,5.04953301522305e-05,0.000146108284618351,8.94236144953147e-05 +8.766,0.559883066358804,-0.292668866438198,-0.000144683302763349,-4.29278466107375e-05,-7.92764245776969e-05,-0.000114983809515429,-8.91813706216254e-06,-5.97151737779946e-05,4.302409470357e-05,0.000146112381265719,7.41384372175281e-05 +8.768,0.559882980494056,-0.292669025126932,-0.000144913174619996,-4.29436916027418e-05,-7.93820429390112e-05,-0.000114905657506311,-6.88424318028791e-06,-4.56762960875779e-05,3.48447113049494e-05,0.00014611289989799,5.78607875367307e-05 +8.77,0.559882894584038,-0.29266918396637,-0.000145142925393374,-4.29553835834587e-05,-7.94591297620471e-05,-0.000114844430670209,-4.81902711702579e-06,-3.14301570792445e-05,2.62889493288081e-05,0.000146110100736768,4.12575647996007e-05 +8.772,0.559882808672522,-0.292669342963451,-0.000145372552342676,-4.29629677112099e-05,-7.95077635673281e-05,-0.000114800501708995,-2.79348072451575e-06,-1.74809472452905e-05,1.76706383900268e-05,0.000146104265011907,2.50127669853209e-05 +8.774,0.559882722732167,-0.292669501997424,-0.00014560212740021,-4.29665575063568e-05,-7.95290535510283e-05,-0.000114773748116649,-8.70720167406786e-07,-4.2781646369397e-06,9.27726557494758e-06,0.00014609588864651,1.02532191441907e-05 +8.776,0.559882636806292,-0.292669661079665,-0.000145831647335143,-4.29664505918795e-05,-7.95248762258759e-05,-0.000114763392646696,8.95422624935903e-07,7.79403624973171e-06,1.36288983571002e-06,0.000146085447964487,7.96280424496677e-06 +8.778,0.559882550866365,-0.292669820096929,-0.000146061180970797,-4.2962975815857e-05,-7.94978774060294e-05,-0.000114768296557306,2.46130199554911e-06,1.84242135437016e-05,-5.85705876160534e-06,0.000146073583161651,1.94888375629259e-05 +8.78,0.559882464954389,-0.292669979071174,-0.000146290720521372,-4.29566053838973e-05,-7.94511793717011e-05,-0.000114786820881742,3.79377085779145e-06,2.73780061210076e-05,-1.22093706545151e-05,0.000146060857514254,3.02161653467592e-05 +8.782,0.559882379039943,-0.292670137901647,-0.000146520328254324,-4.29478007324259e-05,-7.93883653815454e-05,-0.000114817134039925,4.87043738672647e-06,3.44991535339208e-05,-1.75648297989714e-05,0.000146047938755903,3.90184059228705e-05 +8.784,0.559882293163186,-0.292670296624636,-0.000146749989057532,-4.29371236343504e-05,-7.93131827575654e-05,-0.000114857080200938,5.67922097761155e-06,3.97080458703562e-05,-2.18385648234464e-05,0.000146035360161199,4.56717130322777e-05 +8.786,0.559882207291448,-0.292670455154378,-0.000146979756575127,-4.29250838485154e-05,-7.9229533198064e-05,-0.000114904488299218,6.21799834320859e-06,4.29975777293241e-05,-2.49888434469931e-05,0.000146023707614519,5.01188336935701e-05 +8.788,0.55988212146285,-0.292670613542769,-0.000147209607010729,-4.29122516409776e-05,-7.91411924466481e-05,-0.000114957035574726,6.49361120430522e-06,4.44269621091484e-05,-2.70146301162232e-05,0.000146013388807002,5.23995437865325e-05 +8.79,0.559882035642442,-0.292670771719147,-0.000147439584717426,-4.28991094036982e-05,-7.90518253496273e-05,-0.000115012546819683,6.52093656373629e-06,4.41136363461483e-05,-2.79519003557069e-05,0.000146004830758055,5.26293098837887e-05 +8.792,0.559881949866413,-0.29267092975007,-0.000147669657198007,-4.28861678947226e-05,-7.89647379012635e-05,-0.000115068843176149,6.32159602442853e-06,4.22241512587709e-05,-2.78692650554422e-05,0.000145998259915681,5.09856593617277e-05 +8.794,0.55988186409777,-0.292671087578099,-0.000147899860090131,-4.28738230196005e-05,-7.88829287445923e-05,-0.000115124023879905,5.92272064725628e-06,3.89640056330908e-05,-2.68627724231482e-05,0.00014599391090707,4.76957115168525e-05 +8.796,0.559881778371121,-0.292671245281785,-0.000148130153293527,-4.28624770121336e-05,-7.88088818787312e-05,-0.000115176294265841,5.35555628099119e-06,3.45671859279584e-05,-2.50502873524817e-05,0.000145991816754923,4.30242864263757e-05 +8.798,0.559881692647862,-0.292671402813627,-0.000148360565267194,-4.28524007944765e-05,-7.87446600008804e-05,-0.000115224225029315,4.6540687970166e-06,2.92854525352151e-05,-2.25657062480303e-05,0.000145992026378535,3.72627050149623e-05 +8.8,0.559881606961518,-0.292671560260425,-0.000148591050193644,-4.28438607369455e-05,-7.86917400685903e-05,-0.000115266557090833,3.8535702359296e-06,2.33782645932344e-05,-1.95531559821498e-05,0.000145994402431887,3.07200124970157e-05 +8.802,0.559881521272419,-0.292671717580587,-0.000148821631495558,-4.28369865135328e-05,-7.86511469425075e-05,-0.000115302437653243,2.98950448205763e-06,1.71031973393443e-05,-1.61612190515903e-05,0.000145998844028686,2.37200652931286e-05 +8.804,0.559881435613572,-0.292671874865013,-0.000149052259944257,-4.28319027190173e-05,-7.86233272792329e-05,-0.00011533120196704,2.09622597058187e-06,1.07072267718742e-05,-1.25377199941504e-05,0.000146005087685843,1.66202674802723e-05 +8.806,0.559881349944808,-0.292672032073896,-0.000149282956303426,-4.28286016096505e-05,-7.860831803542e-05,-0.00011535258853322,1.20604914468301e-06,4.41921845466443e-06,-8.82484538115738e-06,0.00014601293251459,9.94293428977442e-06 +8.808,0.559881264299165,-0.292672189298285,-0.00014951367029839,-4.28270785224386e-05,-7.86056504054142e-05,-0.000115366501348564,3.48193696098103e-07,-1.55608859131479e-06,-5.1549537208357e-06,0.000146022041363055,5.39594277378665e-06 +8.81,0.559881178636494,-0.292672346496498,-0.00014974442230882,-4.28272088348661e-05,-7.86145423897853e-05,-0.000115373208348103,-4.51673420887083e-07,-7.04310221255688e-06,-1.64706182720371e-06,0.000146032165279693,7.2472139694017e-06 +8.812,0.55988109299033,-0.292672503756455,-0.000149975163131782,-4.28288852161221e-05,-7.86338228142645e-05,-0.000115373089595873,-1.17214570906851e-06,-1.18986244381079e-05,1.59597943781715e-06,0.000146042943349339,1.20622692495384e-05 +8.814,0.559881007320953,-0.292672661031789,-0.000150205914667204,-4.28318974177023e-05,-7.86621368875377e-05,-0.000115366824430352,-1.79629922047948e-06,-1.60139089488956e-05,4.48945308012727e-06,0.000146054124882723,1.67280351407951e-05 +8.816,0.55988092166274,-0.292672818405002,-0.000150436630429504,-4.2836070413004e-05,-7.86978784500601e-05,-0.000115355131783553,-2.31193537012883e-06,-1.93151918158267e-05,6.96790280442788e-06,0.000146065366975779,2.06633334563856e-05 +8.818,0.559880835976672,-0.292672975823303,-0.000150667335194338,-4.28411451591829e-05,-7.8739397654801e-05,-0.000115338952819134,-2.711525443861e-06,-2.17631121370027e-05,8.98572537103957e-06,0.000146076454293653,2.37008160316097e-05 +8.82,0.559880750298159,-0.292673133362593,-0.000150897986240781,-4.28469165147795e-05,-7.87849308986081e-05,-0.000115319188882068,-2.99214819587845e-06,-2.33508802571736e-05,1.05169258718361e-05,0.000146087093598104,2.57841480255729e-05 +8.822,0.559880664589006,-0.292673290963026,-0.000151128611949866,-4.28531137519664e-05,-7.88328011758297e-05,-0.000115296885115647,-3.1549485294119e-06,-2.41016789946724e-05,1.1554165597581e-05,0.000146097130761824,2.69136280207964e-05 +8.824,0.559880578885704,-0.292673448693798,-0.000151359173781243,-4.28595363088971e-05,-7.88813376145867e-05,-0.000115272972219678,-3.20494325523262e-06,-2.40650485650056e-05,1.21073602532564e-05,0.000146106342780999,2.71290692064337e-05 +8.826,0.559880493150861,-0.292673606488377,-0.000151589703838745,-4.28659335249873e-05,-7.89290613700897e-05,-0.000115248455674634,-3.15048681587306e-06,-2.33129245075296e-05,1.22018862028275e-05,0.000146114651972758,2.65010196629774e-05 +8.828,0.55988040742197,-0.292673764410043,-0.000151820167603942,-4.28721382561606e-05,-7.89745893126168e-05,-0.000115224164674867,-3.0027022487473e-06,-2.19351030307282e-05,1.18762950990499e-05,0.000146121915265208,2.51239198980376e-05 +8.83,0.559880321662308,-0.292673922386734,-0.000152050600497444,-4.28779443339823e-05,-7.90168017822126e-05,-0.000115200950494238,-2.77476652765692e-06,-2.00345851020178e-05,1.11798860100117e-05,0.000146128135788333,2.31100363627982e-05 +8.832,0.559880235910193,-0.29267408047725,-0.000152280971405919,-4.28832373222712e-05,-7.90547276530249e-05,-0.000115179445130827,-2.48144560931248e-06,-1.77228370955638e-05,1.01700097867925e-05,0.000146133249427286,2.05836251931316e-05 +8.834,0.559880150129358,-0.292674238605645,-0.000152511318277967,-4.28878701164195e-05,-7.90876931305949e-05,-0.000115160270455091,-2.13829647956017e-06,-1.51153395267959e-05,8.90949468259091e-06,0.000146137334378083,1.76755451498372e-05 +8.836,0.559880064358713,-0.292674396828023,-0.000152741612487739,-4.28917905081895e-05,-7.91151890111321e-05,-0.000115143807152096,-1.76120923400743e-06,-1.23271601259981e-05,7.46404847651067e-06,0.000146140395342098,1.45180148228899e-05 +8.838,0.559879978562196,-0.292674555066401,-0.000152971893506576,-4.28949149533556e-05,-7.91370017710989e-05,-0.000115130414261185,-1.36578943076213e-06,-9.46920320811689e-06,5.89975289565093e-06,0.000146142571026127,1.12400299997613e-05 +8.84,0.559879892779053,-0.29267471337603,-0.000153202134144784,-4.28972536659125e-05,-7.91530658239646e-05,-0.000115120208140514,-9.66934865509579e-07,-6.64466051625363e-06,4.28077625431009e-06,0.000146143917162931,7.96313517088986e-06 +8.842,0.559879806973182,-0.292674871678664,-0.000153432374339138,-4.28987826928176e-05,-7.91635804131639e-05,-0.000115113291156167,-5.78231906800461e-07,-3.94630508826531e-06,2.66745132926717e-06,0.000146144612699756,4.79822598276905e-06 +8.844,0.559879721183922,-0.292675030030351,-0.000153662587309408,-4.28995665935397e-05,-7.91688510443176e-05,-0.000115109538335197,-2.11761159397445e-07,-1.45426378393308e-06,1.1144921918763e-06,0.000146144741969504,1.84440201356482e-06 +8.846,0.559879635374915,-0.292675188354068,-0.000153892812492479,-4.28996297374552e-05,-7.91693974682996e-05,-0.0001151088331874,-0.142001356069589,0.292771215631916,-0.100411700683345,0.00014614450111061,0.340531759843798 +8.848,0.559879549585403,-0.292675346707941,-0.000154123022642158,-0.000610904990872086,0.00109191601148374,-0.00051675634106871,-0.514112664357198,0.230052671437067,-0.560597423557953,0.00135370698455822,0.794673225035048 +8.85,0.559877191754952,-0.292670820690022,-0.000155959837856753,-0.00209935028716602,0.000841041288279868,-0.00235749852741897,-0.767529374605152,-0.424355297117011,-1.16597525720022,0.00326686721242203,1.45899864957996 +8.852,0.559871152184254,-0.292671982542788,-0.000163553016751833,-0.00368102248929235,-0.00060550517698412,-0.00518065736986908,-0.596449918753439,-0.342295560631846,-1.43244598869877,0.00638402489578553,1.5889683026884 +8.854,0.559862467664994,-0.29267324271073,-0.000176682467336237,-0.00448514996218057,-0.000528140954247971,-0.00808728248221596,-0.170256451659692,0.0503734391039395,-1.48932033580167,0.00926280956286804,1.49986659584488 +8.856,0.559853211584406,-0.292674095106605,-0.000195902146680693,-0.00436204829593105,-0.000404011420568384,-0.0111379387130751,0.226042740414428,0.0186366407826973,-1.48748326585962,0.0119684739770867,1.50467574948429 +8.858,0.559845019471811,-0.292674858756412,-0.000221234222188532,-0.00358097900052296,-0.00045359439111719,-0.0140372155456538,0.466131822467289,0.22396371729757,-1.35129452157075,0.014493880734606,1.44687093640364 +8.86,0.559838887668404,-0.29267590948417,-0.000252051008863302,-0.0024975210060621,0.000491843448621797,-0.0165431167993575,0.644467319302598,0.0709937082559243,-1.16218671882768,0.0167378085360915,1.33081035526496 +8.862,0.559835029387787,-0.292672891382618,-0.000287406689385955,-0.00100310972331285,-0.000169619558093524,-0.018685962420964,0.703696354797787,-0.375531984585147,-0.854912126327187,0.0187136365121579,1.16922520283452 +8.864,0.55983487522951,-0.292676587962402,-0.000326794858547183,0.000317264413129993,-0.00101028448971929,-0.0199627653046674,0.583838082435246,-0.384969126961919,-0.415716433711537,0.0199908311499857,0.813565171620151 +8.866,0.559836298445439,-0.292676932520577,-0.000367257750604616,0.00133224260642787,-0.00170949606594103,-0.02034882815581,0.441562146513563,-0.574287289719264,0.0138449998042104,0.0204639207992147,0.724551381467416 +8.868,0.559840204199936,-0.292683425946666,-0.000408190171170414,0.00208351299918405,-0.0033074336485961,-0.0199073853054506,0.227510027671301,-0.343879470929904,0.448406196613686,0.0202875364068017,0.609165019005177 +8.87,0.559844632497436,-0.292690162255171,-0.000446887291826445,0.00224228271711338,-0.0030850139496611,-0.0185552033693546,0.0436330491046154,0.230416983878034,0.766325383450046,0.0189430914829438,0.801405279963563 +8.872,0.559849173330804,-0.292695766002464,-0.000482410984647824,0.00225804519560249,-0.00238576571308406,-0.0168420837716507,-0.0110660888785776,0.398512603337013,0.911169934026394,0.0171594414802584,0.994567947409917 +8.874,0.559853664678218,-0.292699705318023,-0.00051425562691304,0.00219801836159907,-0.00149096353631323,-0.0149105236332494,-0.0476586018705143,0.466487562862764,1.00630646935924,0.0151452293479575,1.1101957930528 +8.876,0.559857965404251,-0.29270172985661,-0.000542053079180815,0.00206741078812046,-0.000519815461633212,-0.0128168578942142,-0.0822524777734958,0.482104061855978,1.07627423772512,0.0129929304531915,1.18218274025156 +8.878,0.559861934321371,-0.29270178457987,-0.000565523058489892,0.00186900845050513,0.000437452711110474,-0.0106054266823494,-0.113881661170631,0.456546584877324,1.12341024080679,0.010777737822809,1.2179714225152 +8.88,0.559865441438053,-0.292699980045765,-0.000584474785910227,0.00161188414343778,0.00130637087787669,-0.00832321693098556,-0.139623009612167,0.398196726196645,1.14608796800396,0.0085779202282765,1.22129965527316 +8.882,0.559868381857944,-0.292696559096358,-0.00059881592621383,0.00131051641205652,0.00203023961589688,-0.00602107481033409,-0.15740735850187,0.316316918678789,1.14291720326885,0.00648788625330826,1.19628307815536 +8.884,0.559870683503701,-0.292691859087302,-0.000608559085151561,0.000982254709430369,0.00257163855259171,-0.00375154811791067,-0.166409096107008,0.220403677583059,1.11377754074732,0.00465319916190713,1.14750606910484 +8.886,0.559872310876782,-0.292686272542148,-0.000613822118685478,0.000644880027628263,0.00291185432622941,-0.00156596464734333,-0.166885200686345,0.119279885496849,1.05996938314332,0.00336853249115158,1.07963579715268 +8.888,0.559873263023812,-0.292680211669997,-0.000614822943740934,0.000314713906685061,0.00304875809457905,0.000488329414662146,-0.159873369723375,0.0204937579580168,0.984028953105636,0.00310361666117879,0.997142150855194 +8.89,0.559873569732409,-0.29267407750977,-0.00061186880102683,5.38654873483206e-06,0.00299382935806147,0.00237015116507878,-0.146872302778133,-0.0699711504674615,0.889404003334033,0.00381846301349409,0.904160890753242 +8.892,0.559873284570007,-0.292668236352564,-0.00060534233908062,-0.000272775304427405,0.00276887349270924,0.00404594542799788,-0.143149838725789,0.140087397806546,0.770385759758534,0.00491026895308906,0.795996591820695 +8.894,0.559872478631191,-0.292663002015799,-0.00059568501931484,-0.00056721280616826,0.00355417894928759,0.00545169420411258,-0.0627508241618361,-0.0155225706975591,0.575228695781856,0.00653260193691572,0.578849435159909 +8.896,0.559871015718782,-0.292654019636767,-0.000583535562264162,-0.000523778601074833,0.00270678320991898,0.00634686021112608,0.019884445707993,-0.776914180835918,0.429776554749731,0.00691980158010463,0.888087226897002 +8.898,0.559870383516787,-0.292652174882959,-0.000570297578470338,-0.000487675023336296,0.000446522225944262,0.00717080042311131,-0.0759403389199246,-0.745636159767272,0.453123486763496,0.00720122126689228,0.875820251012995 +8.9,0.559869065018688,-0.292652233547864,-0.00055485236057172,-0.000827539956754498,-0.000275761429149776,0.00815935415817986,-0.15339589330695,-0.288904326801944,0.419908301091131,0.00820584712412064,0.532277175401653 +8.902,0.55986707335696,-0.292653277928676,-0.000537660161837608,-0.0011012585965643,-0.0007090950812639,0.0088504336274764,-0.106209065598,-0.193643880087236,0.25683538807361,0.00894682970247811,0.338736969457663 +8.904,0.559864659984302,-0.292655069928189,-0.000519450626061818,-0.00125237621914645,-0.00105033694949864,0.00918669571047419,-0.0492236615773464,-0.155699053774917,0.0883224283137528,0.00933097165243848,0.185650250602372 +8.906,0.559862063852083,-0.292657479276474,-0.000500913378995715,-0.00129815324287367,-0.0013318912963635,0.00920372334073137,-0.0171465425399846,0.160143546448118,-0.067612976981984,0.00938976355400048,0.17467533897612 +8.908,0.559859467371331,-0.292660397493374,-0.000482635732698897,-0.00132096238930638,-0.000409762763706235,0.00891624380254628,0.0750171130632523,0.0929654342779356,-0.263403247429813,0.00902287374969456,0.289225534798367 +8.91,0.559856780002526,-0.292659118327529,-0.000465248403785534,-0.00099808479062069,-0.000960029559251797,0.00815011035101223,0.156646637133849,-0.596863747516363,-0.379922106411112,0.00826692982536941,0.72465530355092 +8.912,0.559855475032168,-0.292664237611611,-0.000450035291294837,-0.000694375840770777,-0.00279721775377248,0.00739655537690132,0.0518599879219655,-0.511030229091933,-0.304296442365926,0.00793823761384314,0.597024018134596 +8.914,0.559854002499163,-0.292670307198544,-0.000435662182277932,-0.000790644838932851,-0.0030041504756193,0.00693292458154866,-0.0400991256865018,-0.0153454261829136,-0.26770961804475,0.007597070658809,0.271130709399034 +8.916,0.559852312452813,-0.292676254213514,-0.000422303592968645,-0.000854772343516766,-0.00285859945850413,0.00632571690472244,-0.024148543636965,0.392481200185614,-0.358716205324783,0.00699406326694951,0.532261177075257 +8.918,0.559850583409789,-0.292681741596378,-0.000410359314659034,-0.000887239013480743,-0.00143422567487632,0.00549805976024905,0.0742182690443341,0.34896140831107,-0.514234679114164,0.00575090057997759,0.625875164193331 +8.92,0.559848763496759,-0.292681991116213,-0.000400311353927651,-0.000557899267339463,-0.00146275382526,0.00426877818826601,0.162917706922375,-0.339126710501783,-0.589793714400382,0.00454679750664425,0.699575393042669 +8.922,0.55984835181272,-0.292687592611679,-0.000393284201905972,-0.000235568185791317,-0.00279073251688331,0.00313888490264778,0.0627329496405565,-0.266115358305067,-0.467523840827244,0.00420669451981209,0.541600728062931 +8.924,0.559847821224015,-0.292693154046281,-0.000387755814317062,-0.000306967468777264,-0.00252721525848015,0.00239868282495724,-0.0416618863990559,0.493023186065094,-0.387957647988211,0.00349781721711231,0.628743756556396 +8.926,0.559847123942844,-0.292697701472713,-0.000383689470606144,-0.000402215731387522,-0.000818639772623146,0.00158705431069511,0.0448737437347312,0.487786021352467,-0.489673456107829,0.00183048899395544,0.692624681281447 +8.928,0.55984621236109,-0.292696428605371,-0.000381407597074279,-0.000127472493838279,-0.000576071173069633,0.000439989000525269,0.126000438999113,0.0717162726703661,-0.544615057943647,0.000736001055509025,0.563582199623677 +8.93,0.559846614052869,-0.292700005757405,-0.000381929514604043,0.000101786024608874,-0.000531774681941713,-0.00059140592107924,0.0920542849447361,0.0242636889990241,-0.470941273272621,0.000801813987560377,0.480466857183891 +8.932,0.559846619505188,-0.292698555704099,-0.000383773220758596,0.000240744645940624,-0.000479016417073548,-0.00144377609256501,0.0656761138251158,-0.25072808189358,-0.376700080744876,0.00154009873639236,0.457253620882765 +8.934,0.559847577031453,-0.292701921823073,-0.000387704618974305,0.000364490479909425,-0.00153468700951637,-0.00209820624405925,-0.0217274378488733,-0.136258329352323,-0.227252119602529,0.00262499275612945,0.265860752532608 +8.936,0.559848077467108,-0.292704694452137,-0.000392166045734832,0.000153834894545141,-0.00102404973448278,-0.00235278457097502,-0.0851362104356733,0.31165202186649,-0.134181602956385,0.00257059103532477,0.349828328802519 +8.938,0.559848192371031,-0.292706018022011,-0.000397115757258204,2.39456381667695e-05,-0.000288078922050548,-0.00263493265588473,-0.0371210917143953,0.36134441573293,-0.154649065297676,0.00265074196404795,0.394796271042276 +8.94,0.559848173249661,-0.292705846767825,-0.00040270577635837,5.35052768757597e-06,0.00042132792844878,-0.00297138083216566,0.00957184643351558,0.330624739124749,-0.169192919859828,0.00300110811221438,0.371524672795966 +8.942,0.559848213773142,-0.292704332710297,-0.000409001280586865,6.22330239008276e-05,0.0010344200344483,-0.00331170433532397,0.0375784288408814,0.274977530131193,-0.15836671987155,0.00347005523897465,0.319538414520186 +8.944,0.559848422181756,-0.292701709087687,-0.00041595259369967,0.000155664243051152,0.00152123804897392,-0.00360484771165207,0.0483596950748464,0.208789762503625,-0.125760306120666,0.00391577879640996,0.248490401483872 +8.946,0.559848836430114,-0.292698247758102,-0.000423420671433472,0.000255671804200192,0.00186957908446271,-0.00381474555980657,0.0467326208286323,0.139663883156277,-0.0791788753161019,0.00425593441098278,0.167210144441435 +8.948,0.559849444868973,-0.292694230771349,-0.000431211575938895,0.00034259472636566,0.00207989358159896,-0.00392156321291645,0.0375069684685397,0.0730690398187242,-0.0260752757554339,0.00445218895490855,0.086172949754852 +8.95,0.559850206809019,-0.292689928183775,-0.000439106924285143,0.000405699678074401,0.0021618552437377,-0.00391904666282834,0.0246099017415115,0.0127954791001145,0.0276738229610741,0.00449412250267968,0.0391817818176916 +8.952,0.559851067667685,-0.292685583350374,-0.000446887762590206,0.000441034333331695,0.00213107549799941,-0.00381086792107216,0.0108954253813544,-0.0389062340400234,0.0779824723181644,0.00438847449271471,0.0878275089608661 +8.954,0.559851970946353,-0.292681403881783,-0.00045435039596943,0.000449281379599814,0.00200623030757763,-0.00360711677355572,-0.00178244478205064,-0.081055119893776,0.122358843307496,0.00415187972166405,0.146781456955379 +8.956,0.559852864793204,-0.292677558429144,-0.000461316229684428,0.000433904554203494,0.00180685501842435,-0.00332143254784223,-0.0123942526520287,-0.113590947113859,0.159550908456815,0.00380590493701952,0.196247326489868 +8.958,0.55985370656457,-0.292674176461709,-0.000467636126160798,0.000399704368991704,0.00155186651912224,-0.00296891313972853,-0.0337827535876114,0.150420340131568,0.18076860226319,0.00337379586030577,0.237581229749838 +8.96,0.55985446361068,-0.292671350963068,-0.000473191882243346,0.000298773539853003,0.00240853637895082,-0.00259835813878923,0.0193065607945673,0.0426493259703549,0.128498058160666,0.0035555278277997,0.136760590984763 +8.962,0.559854901658729,-0.292664542316194,-0.000478029558715953,0.000476930612169965,0.00172246382300364,-0.00245492090708593,0.0756942056048982,-0.679851319067431,0.12155459595909,0.00303660683830303,0.694768269712039 +8.964,0.559856371333128,-0.292664461107776,-0.000483011565871688,0.000601550362272562,-0.000310868897318607,-0.00211213975495293,-0.0397761051596034,-0.623118846427571,0.279463297716823,0.0022180253952836,0.684075266389347 +8.966,0.559857307860178,-0.292665785791783,-0.000486478117735764,0.000317826191531569,-0.00077001156270637,-0.00133706771621876,-0.135200321854693,-0.152470620278581,0.376980425019814,0.00157533532064745,0.428533146822819 +8.968,0.559857642637895,-0.292667541154026,-0.000488359836736563,6.07490748538516e-05,-0.000920751378432864,-0.000604218054873838,-0.106780869688048,-0.0520778431801922,0.336006890052776,0.00110297461839207,0.356391478636309 +8.97,0.559857550856477,-0.292669468797297,-0.00048889498995526,-0.000109297287220767,-0.000978322935427208,6.95984399279391e-06,-0.0661790778150396,-0.0177726141894714,0.277426280643507,0.000984433899459549,0.285763673946264 +8.972,0.559857205448746,-0.292671454445768,-0.000488331997360592,-0.000203967236406277,-0.000991841835190741,0.000505487067700067,-0.0472769541362323,0.286437936224171,0.218755995373638,0.00113175528943927,0.3635051405588 +8.974,0.559856734987532,-0.292673436164637,-0.00048687304168446,-0.000298405103765676,0.000167428809469349,0.000881983825487248,0.0323995527282056,0.202543640023072,0.1048043560157,0.000946030380386828,0.230342375976825 +8.976,0.559856011828331,-0.29267078473053,-0.000484804062058641,-7.43690254934119e-05,-0.000181667275098183,0.000924704491763008,0.103990708447122,-0.507989382326445,0.0509296904954071,0.000945310609207959,0.521019302304334 +8.978,0.55985643751143,-0.292674162833738,-0.000483174223717409,0.000117557730022768,-0.00186452871983621,0.00108570258746885,-0.00369709200753825,-0.448307670125702,0.173607393725645,0.00216079551911297,0.480762896591509 +8.98,0.559856482059251,-0.29267824284541,-0.000480461251708766,-8.91573935235633e-05,-0.00197489795560079,0.00161913406666551,-0.0971450460421567,0.0194134276397571,0.244812087599416,0.00255534070168596,0.264096572067948 +8.982,0.559856080881856,-0.29268206242556,-0.000476697687450747,-0.000271022454145816,-0.00178687500927719,0.00206495093786641,-0.0839971205576486,0.400628433317026,0.175589823686896,0.002744157037275,0.445410422000234 +8.984,0.559855397969434,-0.292685390345447,-0.000472201447957302,-0.000425145875754121,-0.000372384222332864,0.00232149336141302,0.0109075886101071,0.333401706447476,0.0267859741722175,0.00238929915494019,0.334653793888148 +8.986,0.559854380298353,-0.29268355196245,-0.000467411714005092,-0.000227392099705373,-0.000453268183486838,0.00217209483455532,0.0979131389230746,-0.375408591220385,-0.0594537686866135,0.00223050558920433,0.392496297749272 +8.988,0.559854488401035,-0.292687203418181,-0.000463513068619081,-3.34933200618651e-05,-0.00187401858721424,0.00208367828666659,0.00249870703297432,-0.322608689741366,0.0398455257380051,0.00280263851933121,0.325069648159922 +8.99,0.559854246325073,-0.292691048036798,-0.000459077000858427,-0.000217397271573477,-0.00174370294245216,0.00233147693750732,-0.082968768938522,0.131797557142264,0.0978193746099244,0.00291951130077149,0.183910420414176 +8.992,0.559853618811949,-0.292694178229951,-0.000454187160869049,-0.000365368395816064,-0.00134682835864501,0.00247495578510642,-0.0527911900305791,0.207922956015618,0.032161404545881,0.00284127556399293,0.216917544992288 +8.994,0.559852784851489,-0.292696435350233,-0.000449177177718002,-0.00042856203169577,-0.000912011118389778,0.00246012255569083,-0.0148628108362391,0.212482293024443,-0.0397909183701575,0.00265850196240224,0.216686282859852 +8.996,0.559851904563822,-0.292697826274424,-0.000444346670646287,-0.000424819639161014,-0.000496899186547327,0.00231579211162581,-0.000699970928441796,0.48348389371244,-0.10241961923964,0.00240629874115344,0.494213459796306 +8.998,0.559851085572933,-0.292698422946979,-0.0004399140092715,-0.000431361915409537,0.00102192445645977,0.00205044407873231,0.0727299702061066,0.36508587153425,-0.21304074384665,0.00233124936821113,0.428909898112457 +9,0.559850179116161,-0.292693738576598,-0.000436144894331358,-0.000133899758336619,0.000963444299589511,0.0014636291362393,0.138157457196777,-0.380194609281207,-0.258421986479065,0.0017573742663823,0.480018069452969 +9.002,0.559850549973899,-0.292694569169781,-0.000434059492726541,0.000121267913377756,-0.00049885398066557,0.00101675613281571,0.0266316318372949,-0.355755826797448,-0.12137572826917,0.00113901458922142,0.376833543527543 +9.004,0.559850664187814,-0.292695733992521,-0.000432077869800096,-2.73732309874516e-05,-0.000459579007600126,0.000978126223162675,-0.0701625664095684,0.0777064382319717,-0.0292577833142468,0.00108106108358404,0.108706458650532 +9.006,0.559850440480975,-0.292696407485811,-0.00043014698783389,-0.000159382352260487,-0.000188028227737717,0.000899724999558737,-0.0478542399040442,0.139760491402154,-0.0642775911116814,0.000932878568447813,0.161104413201147 +9.008,0.559850026658405,-0.292696486105432,-0.00042847896980186,-0.000218790190603692,9.9462958008678e-05,0.000721015858715864,-0.0146395939260234,0.135724786590195,-0.108417292381529,0.000760017036677475,0.17432683296789 +9.01,0.559849565320213,-0.292696009633979,-0.000427262924399027,-0.000217940727964574,0.000354870918623002,0.00046605583003267,0.0100652150503167,0.11511103037781,-0.137538826224868,0.000625011653089367,0.179635148531585 +9.012,0.559849154895493,-0.292695066621757,-0.000426614746481729,-0.00017852933040243,0.000559907079519867,0.000170860553816451,0.0245615308577861,0.0877677971550444,-0.149748599539664,0.000612014696196808,0.175302875274816 +9.014,0.559848851202891,-0.292693770005661,-0.000426579482183762,-0.00011969460453344,0.00070594210724314,-0.000132938568125921,0.0307256661710849,0.0577743996115569,-0.148113858570289,0.000728253884321033,0.161924868110839 +9.016,0.559848676117075,-0.292692242853328,-0.000427146500754233,-5.5626665718104e-05,0.00079100467796607,-0.000421594880464641,0.0181262815104847,0.315252667713802,-0.143866324075137,0.000898067352561663,0.347001910347707 +9.018,0.559848628696228,-0.292690605986949,-0.000428265861705621,-4.71894784914769e-05,0.00196695277809877,-0.00070840386442666,0.0721113764187806,0.1962185030882,-0.199666902530025,0.00209116381789792,0.289082381907164 +9.02,0.559848487359161,-0.292684375042216,-0.000429980116211939,0.000232818839956986,0.00157587869031878,-0.00122026249058465,0.125222997728024,-0.540277415819843,-0.202744826680605,0.00200664865005502,0.590496358964819 +9.022,0.559849559971588,-0.292684302472188,-0.000433146911667959,0.000453702512420566,-0.000194156885180365,-0.00151938317114899,0.008298306070074,-0.501374676296794,-0.0329955389070167,0.00159751935406443,0.502527744013315 +9.024,0.559850302169211,-0.292685151669757,-0.000436057648896537,0.000266012064237294,-0.000429620014869062,-0.00135224464621276,-0.090326256356435,-0.0495973499388727,0.0850532468663303,0.00144357242932489,0.133614312522395 +9.026,0.559850624019845,-0.292686020952247,-0.000438555890252809,9.23974869948653e-05,-0.000392546284935834,-0.00117917018368371,-0.0685672641026631,0.0332553351384341,0.070104150045826,0.00124622317564253,0.103546988731404 +9.028,0.559850671759159,-0.292686721854896,-0.000440774329631272,-8.25699217332867e-06,-0.00029659867431534,-0.00107182804602949,-0.0475877279387909,0.337719711147951,0.0337534209644904,0.00111213951992579,0.342722174034652 +9.03,0.559850590991877,-0.292687207346945,-0.000442843202436927,-9.79534247602773e-05,0.000958332559655822,-0.00104415649982576,0.035274911790166,0.246161532546618,-0.0586107809836462,0.00142065441415114,0.255489810276294 +9.032,0.55985027994546,-0.292682888524658,-0.000444950955630574,0.00013284265498732,0.000688047455871025,-0.00130627116996405,0.109021791476458,-0.474810217046433,-0.0896747637110237,0.00148236326249469,0.495350438048706 +9.034,0.559851122362496,-0.292684455157121,-0.000448068287116785,0.0003381337411457,-0.000940908308530545,-0.00140285555466997,0.00576409484727639,-0.429971502163164,0.0604816344054808,0.00172268586202807,0.434242726550733 +9.036,0.559851632480424,-0.292686652157892,-0.000450562377849253,0.000155899034376423,-0.00103183855278144,-0.00106434463234215,-0.0855669277100197,0.0211540578839596,0.165444945883096,0.0014905786810233,0.187459924786473 +9.038,0.559851745958634,-0.292688582511332,-0.000452325665646153,-4.13396969434072e-06,-0.000856292076994716,-0.000741075771137664,-0.0743554951776304,0.386596317146406,0.134054491518631,0.00113245154836604,0.415879861006269 +9.04,0.559851615944545,-0.2926900773262,-0.000453526680933805,-0.000141522946334198,0.000514546715804699,-0.00052812666626745,0.0156300347525814,0.305817901637806,0.0229996726550377,0.000750802798814233,0.30707958559754 +9.042,0.559851179866849,-0.292686524324469,-0.000454438172311222,5.83861693159779e-05,0.000366979529556373,-0.000649077080517523,0.0972836466870067,-0.41412146529344,-0.0299115630623677,0.000747919765973572,0.426445069773755 +9.044,0.559851849489223,-0.292688609408082,-0.000456122989255875,0.000247611640413786,-0.00114193914536888,-0.000647772918516908,0.000632524768673509,-0.372238190146727,0.100127522446024,0.00133601882103439,0.38547009098304 +9.046,0.55985217031341,-0.292691092081051,-0.00045702926398529,6.09162683906717e-05,-0.00112197323103037,-0.000248566990733473,-0.086319961095657,0.0734955054386137,0.187928839241245,0.00115079115037685,0.21947659014527 +9.048,0.559852093154296,-0.292693097301006,-0.000457117257218809,-9.76682039688044e-05,-0.000847957123614457,0.000103942438447989,-0.060121034310676,0.145066222825808,0.148785886333569,0.000859868822591858,0.216323802998186 +9.05,0.559851779640594,-0.292694483909545,-0.000456613494231498,-0.000179567868852113,-0.000541708339726947,0.000346576554601002,-0.0258860615581945,0.14816412035109,0.0984359164553346,0.000667688440107297,0.17975629165848 +9.052,0.559851374882821,-0.292695264134365,-0.000455730951000405,-0.000201212450201571,-0.00025530064221016,0.000497686104269284,-0.00165693545687485,0.132998776200574,0.0598233976375173,0.000594437823840119,0.145843267965495 +9.054,0.559850974790794,-0.292695505112114,-0.000454622749814421,-0.000186195610679611,-9.71323492470985e-06,0.000585870145151045,0.0118136368465445,0.109967018751381,0.034240164644559,0.000614822721886856,0.115778651328711 +9.056,0.559850630100378,-0.292695302987304,-0.0004533874704198,-0.000153957902815377,0.000184567432795511,0.000634646762847566,0.0170517069977669,0.0834397203275556,0.0185143233262516,0.000678634427862991,0.0871534727254593 +9.058,0.559850358959182,-0.292694766842383,-0.000452084162763031,-0.000117988782688551,0.000324045646385476,0.000659927438456043,0.0169014227613433,0.0564927598346989,0.00905659619781565,0.000744601341530394,0.0596582931350614 +9.06,0.559850158145247,-0.292694006804719,-0.000450747760665976,-8.63522117700117e-05,0.000410538472134282,0.000670873147638825,0.0137881721942765,0.0313636844516476,0.00294125243778596,0.000791245424506674,0.0343867032549549 +9.062,0.559850013550335,-0.292693124688494,-0.000449400670172476,-6.28360939114517e-05,0.000449500384192053,0.000671692448207186,0.00953358839096054,0.00947028289117418,-0.00183989280936238,0.000810660049012787,0.0135632138963104 +9.064,0.559849906800872,-0.292692208803182,-0.000448060990873148,-4.82178582061737e-05,0.000448419603698974,0.000663513576401376,0.00535293809972184,-0.00849884961365098,-0.00642922044595395,0.000802281352706443,0.0119255719610248 +9.066,0.559849820678902,-0.292691331010079,-0.000446746615866869,-4.14243415125571e-05,0.000415504985737437,0.000645975566423361,0.0019368701850659,-0.0224133196966954,-0.0112791389508797,0.000769184504302056,0.0251659957365752 +9.068,0.559849741103506,-0.292690546783239,-0.000445477088607454,-4.0470377465911e-05,0.000358766324912203,0.000618397020597862,-0.000425440627167287,-0.0325062381942687,-0.0163699384491179,0.000716076813217377,0.0363979588177371 +9.07,0.559849658797393,-0.29268989594478,-0.000444273027784478,-4.31261040212261e-05,0.000285480032960377,0.000580495812626897,-0.00171779170748915,-0.0392021240053132,-0.0214193423319097,0.000648331781223525,0.0447050954680762 +9.072,0.55984956859909,-0.292689404863107,-0.000443155105356946,-4.73415442958699e-05,0.000201957828890897,0.000532719651270195,-0.00208777497374105,-0.0429896086680037,-0.0260503826582488,0.000571680341901032,0.0503099164619687 +9.074,0.559849469431215,-0.292689088113464,-0.000442142149179398,-5.14772039161894e-05,0.000113521598288381,0.000476294281993913,-0.00176252572953212,-0.0443417421842993,-0.0299063068103369,0.000492334539577587,0.0535133981720479 +9.076,0.559849362690274,-0.292688950776714,-0.000441249928228971,-5.43916472139976e-05,2.45908601537197e-05,0.00041309442402886,-0.000988038893756866,-0.0436776375865962,-0.0327173475690101,0.000417384912105706,0.0545814719291541 +9.078,0.559849251864627,-0.292688989750024,-0.000440489771483282,-5.54293594912164e-05,-6.11889520579845e-05,0.000345424891717887,9.88902016434166e-06,-0.0413548080641025,-0.0343293152585793,0.000355154695260917,0.0537468337107816 +9.08,0.559849140972836,-0.292689195532522,-0.000439868228662099,-5.43520911333402e-05,-0.000140828372102672,0.000275777162994558,0.00104608336576305,-0.0376799232648577,-0.034704118780953,0.000314388014766757,0.0512371619824536 +9.082,0.559849034456262,-0.292689553063512,-0.000439386662831304,-5.12450260281628e-05,-0.000211908645117466,0.000206608416594029,0.00198332213152126,-0.0329266835463977,-0.0339026487837975,0.000300363720138833,0.0473021104243725 +9.084,0.559848935992732,-0.292690043167103,-0.000439041794995723,-4.64188026072561e-05,-0.000272535106288249,0.000140166567859383,0.00273164880299445,-0.0273530118520252,-0.0320596599146813,0.000309962507636839,0.0422311609644461 +9.086,0.559848848781052,-0.292690643203937,-0.000438825996559866,-4.03184308161862e-05,-0.000321320692525554,7.8369776935318e-05,0.00324300878512467,-0.021213050239994,-0.0293572910078855,0.000333188212944986,0.0363642838756187 +9.088,0.559848774719009,-0.292691328449873,-0.000438728315887982,-3.3446767466753e-05,-0.000357387307248253,2.27374038278019e-05,0.00350338791310263,-0.0147622513519242,-0.0260010707018766,0.00035966840724334,0.0301040440720353 +9.09,0.559848714993982,-0.292692072753166,-0.000438735046944555,-2.63048791637772e-05,-0.000380369697933245,-2.56345058721769e-05,0.0035243240409385,-0.0082556734851154,-0.0222002736523973,0.000382138955963612,0.0239463808305076 +9.092,0.559848669499492,-0.292692849928665,-0.00043883085391147,-1.93494713030006e-05,-0.000390410001188711,-6.60636907817775e-05,0.00333496728843825,-0.00194113345883305,-0.0181534864978876,0.000396432569685672,0.0185590699645467 +9.094,0.559848637596096,-0.292693634393171,-0.000438999301707682,-1.29650100100257e-05,-0.000388134231768576,-9.82484518637192e-05,0.00297518816527879,0.00395062505283233,-0.0140390362555579,0.000400585860520264,0.0148846807796389 +9.096,0.559848617639452,-0.292694402465592,-0.000439223847718925,-7.44871864188674e-06,-0.000374607500977383,-0.000122219835804003,0.0024898511655208,0.00921649812024377,-0.0100095308786288,0.000394111597725674,0.0138323499390785 +9.098,0.559848607801222,-0.292695132823175,-0.000439488181050898,-3.00560534793914e-06,-0.000351268239287589,-0.000138286575378248,0.00192431765660932,0.0136905519212585,-0.00618944921705716,0.00037752031273238,0.0151473922495835 +9.1,0.559848605617031,-0.292695807538549,-0.000439776994020438,2.48551984549677e-07,-0.000319845293292355,-0.000146977632672229,0.00132114416628863,0.0172511705060293,-0.00267502424463259,0.00035199928682498,0.0175072573650354 +9.102,0.55984860879543,-0.292696412204348,-0.000440076091581587,2.27897131721479e-06,-0.000282263557263479,-0.000148986672356777,0.000717824105711368,0.0198251064557853,0.00046440647334656,0.000319178536260262,0.019843532719817 +9.104,0.559848614732916,-0.292696936592778,-0.000440372940709866,3.11984840739611e-06,-0.000240544867469188,-0.000145120006778842,0.00014541975262878,0.0213882069450844,0.0031840843390579,0.000280947295924601,0.0216244060336566 +9.106,0.559848621274823,-0.292697374383818,-0.000440656571608702,2.86065032772985e-06,-0.000196710729483151,-0.000136250335000547,-0.000372079672628171,0.021963048657541,0.00546103367041316,0.000239306180868469,0.0226348589208257 +9.108,0.559848626175517,-0.292697723435696,-0.000440917942049868,1.63152971688359e-06,-0.000152692672839033,-0.000123275872097192,-0.00081778832317099,0.0216139753699044,0.0072909844134344,0.000196251509215263,0.0228252308367143 +9.11,0.559848627800942,-0.292697985154509,-0.000441149675097091,-4.10502964953753e-07,-0.000110254828003543,-0.000107086397346812,-0.00118151195077623,0.0204401995468463,0.00868523705386879,0.000153700332164555,0.0222403028461084 +9.112,0.559848624533505,-0.292698164455008,-0.000441346287639255,-3.09451808622082e-06,-7.0931874651657e-05,-8.85349238817205e-05,-0.00145900767856111,0.0185676853128827,0.00966755417819909,0.000113487178264888,0.0209845001149123 +9.114,0.55984861542287,-0.292698268882008,-0.000441503814792618,-6.24653367920016e-06,-3.59840867519874e-05,-6.84161806340031e-05,-0.00165105343980025,0.0161404937679089,0.0102711820203487,7.7554158205247e-05,0.0192025700526809 +9.116,0.559848599547371,-0.292698308391355,-0.000441619952361791,-9.6987318454211e-06,-6.36989958002835e-06,-4.74501958003301e-05,-0.00176241150839809,0.0133122027741471,0.0105360552027766,4.88483582278738e-05,0.0170683712246043 +9.118,0.559848576627943,-0.292698294361606,-0.000441693615575819,-1.32961797127917e-05,1.72647243445954e-05,-2.62719598229012e-05,-0.00180078645051167,0.010237875290584,0.0105062291323362,3.41331946144197e-05,0.014779640485717 +9.12,0.559848546362652,-0.292698239332458,-0.000441725040201082,-1.69018776474702e-05,3.45816015823213e-05,-5.4252792709714e-06,-0.00177583783095479,0.00706695090988211,0.0102276030942976,3.88715100192479e-05,0.0125578366058418 +9.122,0.559848509020432,-0.2926981560352,-0.000441715316692903,-2.03995310366101e-05,4.55325279841207e-05,1.46384525542847e-05,-0.0016982981132511,0.00393728643785594,0.00974594209588806,5.19965024239361e-05,0.0106475268636242 +9.124,0.559848464764528,-0.292698057202346,-0.000441666486390865,-2.36950701004738e-05,5.03307473337433e-05,3.35584891125766e-05,-0.00157922772081633,0.000970487537555123,0.00910525706395083,6.49677817518683e-05,0.00929201336930652 +9.126,0.559848414240152,-0.29269795471221,-0.000441581082736453,-2.67164419198747e-05,4.94144781343407e-05,5.1059480810084e-05,-0.00142941352504183,-0.00173144469595675,0.00834651508324065,7.59119852114448e-05,0.00864323074986969 +9.128,0.55984835789876,-0.292697859544433,-0.000441462248467625,-2.94127242006405e-05,4.34049685499171e-05,6.69445494455355e-05,-0.00125892245933484,-0.00408817886487964,0.00750672129925216,8.50333601605157e-05,0.00863996278085226 +9.13,0.559848296589255,-0.292697781092336,-0.000441313304538671,-3.17521317572158e-05,3.30617626748167e-05,8.10863660071027e-05,-0.00107678688882413,-0.00604193145861338,0.00661831365927402,9.31465338836143e-05,0.00902587843077108 +9.132,0.559848230890233,-0.292697727297382,-0.000441137903003597,-3.37198717559365e-05,1.92372427154662e-05,9.34178040826286e-05,-0.000890821118256386,-0.00755728239016016,0.00570888541734037,0.000101163172044727,0.00951301487950471 +9.134,0.559848161709768,-0.292697704143365,-0.00044093963332234,-3.53154162302409e-05,2.83263311417941e-06,0.000103921907676462,-0.000707531658261492,-0.00862008849716685,0.00480115761643838,0.000109795106124953,0.0098923021185321 +9.136,0.559848089628568,-0.29269771596685,-0.000440722215372891,-3.65499983889835e-05,-1.52431112732127e-05,0.000112622434548389,-0.000532118099587239,-0.00923566041699691,0.0039131926284546,0.000119382023718516,0.0100445830952501 +9.138,0.559848015509774,-0.29269776511581,-0.000440489143584147,-3.74438886285896e-05,-3.41100085538042e-05,0.000119574678190278,-0.000368527097727248,-0.0094263751353206,0.00305876911386377,0.000129860082948839,0.00991707763937929 +9.14,0.559847939853013,-0.292697852406884,-0.00044024391666013,-3.80241067798923e-05,-5.29486118144909e-05,0.000124857511003842,-0.000219556671454727,-0.00922889409685416,0.00224789281112796,0.000140850226281554,0.00950124799556619 +9.142,0.559847863413347,-0.292697976910258,-0.000439989713540131,-3.83221153144084e-05,-7.10255849412167e-05,0.000128566249434789,-8.69811861383465e-05,-0.00869114268747024,0.00148737640605325,0.000151797558386626,0.00881792580565256 +9.144,0.559847786564552,-0.292698136509224,-0.000439729651662391,-3.83720315244456e-05,-8.7713182564368e-05,0.000130807016628055,2.83034359838058e-05,-0.00786920152304017,0.000781455443757233,0.000162100249222558,0.00790795841575334 +9.146,0.559847709925221,-0.292698327762988,-0.000439466485473619,-3.82089015704732e-05,-0.000102502391033388,0.000131692071209819,0.00012613419336359,-0.00682423402857416,0.00013239546006112,0.000171200064095536,0.00682668356299966 +9.148,0.559847633728946,-0.292698546518788,-0.000439202883377551,-3.78674947509913e-05,-0.000115010118678662,0.000131336598468299,0.000206935010797803,-0.00561956861598724,-0.000458942368498168,0.000178635317489066,0.0056420742308202 +9.15,0.559847558455242,-0.292698787803463,-0.000438941139079746,-3.73811615272821e-05,-0.000124980665497334,0.000129856301735827,0.000271579904398349,-0.00431802116285143,-0.000992597179796716,0.000184065686877787,0.00443895388223917 +9.152,0.5598474842043,-0.29269904644145,-0.000438683458170608,-3.67811751333976e-05,-0.000132282203330073,0.000127366209749111,0.000321267325238767,-0.00297953719337395,-0.00146909310756705,0.000187279437066398,0.0033375273990884 +9.154,0.559847411330542,-0.292699316932276,-0.00043843167424075,-3.60960922263271e-05,-0.000136898814270829,0.000123979929305559,0.000357406562678875,-0.00165920008982115,-0.00188911058064026,0.000188189362327901,0.0025395714549891 +9.156,0.559847339819931,-0.292699594036707,-0.000438187538453386,-3.53515488826822e-05,-0.000138919003689357,0.000119809767426551,0.000381521370052069,-0.000405644871859326,-0.00225326315505447,0.000186822380793235,0.00232105604494985 +9.158,0.559847269924346,-0.292699872608291,-0.000437952435171043,-3.4570006746119e-05,-0.000138521393758266,0.000114966876685342,0.000395165671022663,0.000740113175622103,-0.00256196058986854,0.000183304786162124,0.00269584225879849 +9.16,0.559847201539904,-0.292700148122282,-0.000437727670946644,-3.37708861985917e-05,-0.000135958550986869,0.000109561925067078,0.00039985828537139,0.00174543208358819,-0.00281536888854037,0.000177845482836903,0.00333657335980496 +9.162,0.559847134840801,-0.292700416442495,-0.000437514187470775,-3.29705736046329e-05,-0.000131539665423911,0.000103705401131177,0.000397028729333895,0.00258639968468635,-0.00301343774324991,0.000170717756918931,0.00399097759619184 +9.164,0.559847069657609,-0.292700674280944,-0.00043731284934212,-3.21827712812563e-05,-0.000125612952248125,9.75081740940794e-05,0.000387982077024971,0.00324781967987741,-0.00315599862997893,0.000162241143225116,0.00454523818050501 +9.166,0.559847006109716,-0.292700918894304,-0.000437124154774399,-3.14186452965332e-05,-0.000118548386704403,9.10814066112626e-05,0.000373872613423836,0.00372287007124799,-0.00324290100068358,0.000152763457321351,0.00495135831855229 +9.168,0.559846943983028,-0.292701148474491,-0.000436948523715674,-3.06872808275605e-05,-0.000110721471963128,8.45365700913407e-05,-0.0116067005243086,0.290255010856245,-0.00781113004398447,0.000142644261157186,0.290591982987803 +9.17,0.559846883360593,-0.292701361780192,-0.000436786008494033,-7.78454473937626e-05,0.00104247165672045,5.98368864353282e-05,0.0419429385667506,0.199974613014675,-0.0793847312876955,0.00104708525045656,0.21920536377471 +9.172,0.559846632601239,-0.292696978587864,-0.000436709176169933,0.000137084473439423,0.000689176980095483,-0.000233002355059406,0.0962783467811857,-0.510543838698586,-0.109510778645839,0.000740302073625978,0.530958700777776 +9.174,0.559847431698486,-0.292698605072271,-0.000437718017914271,0.000307267939730938,-0.000999703698073672,-0.000378206228147979,-0.00762494697938118,-0.456563225399694,0.0317310401591449,0.00111214253661057,0.457728060657626 +9.176,0.559847861672998,-0.292700977402656,-0.000438222001082525,0.000106584685521902,-0.00113707592150309,-0.000106078194422841,-0.0946838179457853,0.00395317325055289,0.128216082963406,0.00114697625510815,0.159436560706817 +9.178,0.559847858037229,-0.292703153375957,-0.000438142330691962,-7.14673320523297e-05,-0.000983891005071455,0.000134658103705818,-0.0698551267941419,0.0944444762846275,0.0950300204265614,0.000995631404840588,0.151096666483334 +9.18,0.559847575803669,-0.292704912966676,-0.000437683368667702,-0.000172835821654635,-0.000759298016364624,0.000274041887283363,-0.0343875928079783,0.116496395766247,0.0481030209180478,0.000825532952030452,0.130643857058399 +9.182,0.559847166693942,-0.292706190568023,-0.000437046163142829,-0.000209017703284228,-0.00051790542200652,0.000327070187377989,-0.00713079331693241,0.118333740976141,0.0120642353615739,0.000647216605087846,0.119160682448519 +9.184,0.559846739732856,-0.292706984588364,-0.000436375087918189,-0.000201358994922374,-0.000285963052459901,0.000322298828729675,0.00993818600328996,0.109383718173395,-0.0104319588895708,0.000475601563505476,0.110328559805457 +9.186,0.559846361257962,-0.292707334420233,-0.000435756967827911,-0.000169264959271072,-8.03705493129891e-05,0.00028534235181971,0.0184629261740273,0.0937179478570567,-0.0218039163972207,0.000341365360538987,0.0979762428535743 +9.188,0.559846062673019,-0.292707306070562,-0.000435233718510911,-0.000127507290226273,8.89087389682839e-05,0.000235083163140802,0.0208128351705851,0.0745476111119356,-0.0254508102023932,0.000281827902305755,0.0814755433875257 +9.19,0.559845851228801,-0.292706978785277,-0.000434816635175347,-8.60136185887412e-05,0.000217819895134721,0.000183539111010148,0.0192387657610525,0.0544839509133756,-0.0244991063729492,0.000297540677168057,0.0627601563749872 +9.192,0.559845718618545,-0.292706434790981,-0.00043449956206687,-5.05522271820711e-05,0.000306844542621762,0.000137086737649016,0.0155810774629637,0.0354126980343848,-0.0213627993905737,0.000339855667378192,0.0441950037310022 +9.194,0.559845649019893,-0.292705751407106,-0.000434268288224751,-2.36893087368654e-05,0.000359470687272307,9.80879134478249e-05,0.0111960873974661,0.0184879813854392,-0.0176616524157303,0.000373365232876607,0.0279122158700114 +9.196,0.55984562386131,-0.292704996908232,-0.000434107210413079,-5.76787759221161e-06,0.000380796468163511,6.64401279861022e-05,0.00697687191353431,0.00424391614901953,-0.0143116384281821,0.000386592174241192,0.0164775775063202 +9.198,0.559845625948382,-0.292704228221233,-0.000434002527712807,4.21817891726876e-06,0.000376446351868383,4.08413597351028e-05,0.00342424724686298,-0.00723387640413747,-0.0116858242830602,0.000378678842204585,0.0141637892603831 +9.2,0.559845640734026,-0.292703491122825,-0.000433943844974138,7.92911139524487e-06,0.000351860962546951,1.96968308538458e-05,0.000744227048044632,-0.0161304934547974,-0.00979426009305629,0.000352501025413644,0.0188858207066767 +9.202,0.559845657664828,-0.292702820777383,-0.000433923740389391,7.19508710944696e-06,0.000311924378049201,1.66431936288199e-06,-0.00105388386212347,-0.0227545909267707,-0.00844981041733992,0.000312011789615128,0.0242957069361751 +9.204,0.559845669514374,-0.292702243425312,-0.000433937187696687,3.71357594675144e-06,0.000260842598839879,-1.41024108155101e-05,-0.0020771695960491,-0.0274361751651025,-0.00739636716630573,0.000261249937811789,0.0284914827357185 +9.206,0.559845672519132,-0.292701777406988,-0.000433980150032653,-1.11359127474854e-06,0.000202179677388803,-2.79211493023377e-05,-0.00248892897958249,-0.0304680953349067,-0.00639297870023681,0.000204101574253927,0.0312309106089472 +9.208,0.559845665060009,-0.292701434706603,-0.000434048872293896,-6.24213997157743e-06,0.000138970217500265,-3.96743256164545e-05,-0.00246591059377355,-0.032083329583314,-0.00526020448813357,0.000144657311521458,0.032605068677508 +9.21,0.559845647550572,-0.292701221526118,-0.000434138847335119,-1.0977233649846e-05,7.38463590555042e-05,-4.8961967254879e-05,-0.00217112774286827,-0.0324577760953044,-0.003897981369112,8.92807854010346e-05,0.0327630170082474 +9.212,0.559845621151074,-0.292701139321167,-0.000434244720162916,-1.49266509430495e-05,9.13911311906202e-06,-5.52662510929008e-05,-0.00174007568076568,-0.0317273222416603,-0.00228312607187491,5.7971430953895e-05,0.0318569223978246 +9.214,0.559845587843968,-0.292701184969665,-0.000434359912339491,-1.7937536372908e-05,-5.3062929911123e-05,-5.80944715423776e-05,-0.0012760392048558,-0.0300092964956799,-0.000454584157642722,8.06994260553956e-05,0.0300398535111997 +9.216,0.559845549400929,-0.292701351572886,-0.000434477098049085,-2.00308077624744e-05,-0.000110898072863698,-5.70845877234723e-05,-0.000850624286288196,-0.0274216596686647,0.00150615749472476,0.000126326030492761,0.027476162233096 +9.218,0.559845507720737,-0.292701628561957,-0.000434588250690385,-2.13400335180604e-05,-0.00016274956858577,-5.20698415634792e-05,-0.000507255092097148,-0.0240963285227988,0.00349455925741864,0.000172203622220474,0.0243536917203679 +9.22,0.559845464040795,-0.292702002571161,-0.000434685377415339,-2.20598281308628e-05,-0.000207283386954882,-4.31063506937993e-05,-0.000266301480866873,-0.0201853526081475,0.00539988356893764,0.000212864266599135,0.0208968447128278 +9.222,0.559845419481424,-0.292702457695505,-0.00043476067609316,-2.24052394415277e-05,-0.000243490979018351,-3.04703072877311e-05,-0.000130588567734699,-0.015860246848466,0.00711829477740747,0.000246410818033535,0.0173848958583698 +9.224,0.559845374419837,-0.292702976535077,-0.00043480725864449,-2.25821824018016e-05,-0.000270724374348739,-1.46331715841725e-05,-9.05144084683917e-05,-0.0113060230656744,0.00856178951000128,0.000272058397295795,0.0141823337301472 +9.226,0.559845329152695,-0.292703540593002,-0.000434819208779497,-2.27672970754014e-05,-0.000288715071281063,3.77685075228548e-06,-0.000128499197396308,-0.00671193693683005,0.00966336599975188,0.000289635990171377,0.0117663610318941 +9.228,0.559845283350649,-0.292704131395362,-0.000434792151241481,-2.30961791913867e-05,-0.000297572122096056,2.40202924148307e-05,-0.000222746619760233,-0.00226096219524457,0.0103791609187507,0.000299432088777547,0.0106249022340096 +9.23,0.559845236767978,-0.292704730881491,-0.000434723127609837,-2.36582835544423e-05,-0.000297758920062041,4.52934944272837e-05,-0.000350266170234891,0.00188035905249227,0.0106884237710571,0.000302111882412277,0.0108582152891715 +9.232,0.559845188717514,-0.292705322431042,-0.000434610977263772,-2.44972438723261e-05,-0.000290050685886088,6.67739874990543e-05,-0.000489152482405259,0.00557044679483771,0.0105919336400579,0.000298644070336001,0.0119774039708341 +9.234,0.559845138779003,-0.292705891084234,-0.000434456031659841,-2.56148934840631e-05,-0.000275477132882692,8.76612289875108e-05,-0.000620207066259621,0.00869884226803257,0.0101094798313888,0.000290221061566988,0.0133512582204976 +9.236,0.55984508625794,-0.292706424339574,-0.000434260332347822,-2.69780721373654e-05,-0.000255255316813946,0.000107211906824623,-0.000727978538564662,0.0111896884084635,0.00927678148536294,0.000278168089656252,0.0145532729706512 +9.238,0.559845030866714,-0.292706912105501,-0.000434027184032543,-2.85268076383214e-05,-0.000230718379248843,0.000124768354928958,-0.000801313605744026,0.0130025963850343,0.00814220737966486,0.000263840655830229,0.0153624593493466 +9.24,0.55984497215071,-0.292707347213091,-0.000433761258928106,-3.01833265603412e-05,-0.000203244931273815,0.000139780736343279,-0.000833463013882688,0.0141312063647838,0.00676342454958138,0.000248511950504227,0.0156885169967558 +9.242,0.559844910133408,-0.292707725085226,-0.000433468061087169,-3.18606596938533e-05,-0.000174193553789689,0.000151822053127293,-0.000821860683678712,0.0145998960212974,0.00520414752872984,0.000233256150259313,0.015521455161062 +9.244,0.559844844708071,-0.292708043987306,-0.000433153970715597,-3.34707692950557e-05,-0.000144845347188632,0.000160597326458196,-0.00076763524703444,0.0144591600984044,0.0035310379065131,0.000218842336546013,0.0149038519625301 +9.246,0.559844776250331,-0.292708304466615,-0.000432825671781337,-3.49312006819907e-05,-0.000116356913396078,0.000165946204753344,-0.000674967089164962,0.0137801758892694,0.00181085005584348,0.000205662983903732,0.0139150280644851 +9.248,0.559844704983268,-0.292708509414959,-0.000432490185896584,-3.61706376517152e-05,-8.97246436315601e-05,0.000167840726681569,-0.000550337990453004,0.0126490276621084,0.000107853105768146,0.000193724898337667,0.0126614535102785 +9.25,0.55984463156778,-0.29270866336519,-0.00043215430887461,-3.71325526438025e-05,-6.576080274765e-05,0.000166377617176416,-0.000401768299185167,0.0111609770592189,-0.0015184162044029,0.000182715136595637,0.0112709544605785 +9.252,0.559844556453058,-0.29270877245817,-0.000431824675427878,-3.77777108484564e-05,-4.50807353946697e-05,0.000161767061863956,-0.000238077467466802,0.00941509199422518,-0.00301503076236299,0.000172127889793521,0.00988893566761528 +9.254,0.559844480456937,-0.292708843688131,-0.000431507240627155,-3.80848625136696e-05,-2.81004347707534e-05,0.000154317494126966,-6.82276804455749e-05,0.00750945030811633,-0.0043371576816279,0.00016141245361067,0.00867222207405641 +9.256,0.559844404113608,-0.292708884859909,-0.00043120740545137,-3.80506215702387e-05,-1.50429341622077e-05,0.000144418431137446,9.92340445926435e-05,0.00553706613892633,-0.00544911739688725,0.000150102707911254,0.00776928756241588 +9.258,0.55984432825445,-0.292708903859868,-0.000430929566902605,-3.76879263352989e-05,-5.95217021504068e-06,0.000132521024539409,0.000256612849021394,0.00358261024665985,-0.00632503324107033,0.00013790442366617,0.00727371925732631 +9.26,0.559844253361902,-0.29270890866859,-0.000430677321353212,-3.70241701741532e-05,-7.1249317556984e-07,0.000119118298173167,0.000397380760242071,0.00171994878062114,-0.00694905593831716,0.000124741596042705,0.00716976385318454 +9.262,0.55984418015777,-0.292708906709841,-0.000430453093709912,-3.60984032943308e-05,9.27624907443128e-07,0.000104724800786144,-0.010859272439603,0.285648582374544,-0.0102197930760434,0.000110775625062857,0.286037550998154 +9.264,0.559844108968289,-0.292708904958091,-0.000430258422150068,-8.04612599325605e-05,0.00114188183632248,7.82391258689982e-05,0.0404902096087739,0.194703325913326,-0.0805917468368131,0.00114738376460968,0.214578358307828 +9.266,0.55984385831273,-0.292704339182495,-0.000430140137206436,0.000125862435140747,0.000779740928560663,-0.000217642186561073,0.0924228594003999,-0.515027640559408,-0.113994013713698,0.000819271255216054,0.535527861686482 +9.268,0.55984461241803,-0.292705785994376,-0.000431128990896312,0.000289230177669163,-0.000918228725915838,-0.000377736928985947,-0.00699555481596814,-0.463527848302435,0.023824638786094,0.00103415824528517,0.464192435690583 +9.27,0.559845015233441,-0.292708012097399,-0.00043165108492238,9.78802158768773e-05,-0.00107437046464887,-0.000122343631416707,-0.0902863624141611,-0.00594134389592878,0.121147017434328,0.00108573495666215,0.151206900102159 +9.272,0.559845003938893,-0.292710083476235,-0.000431618365421979,-7.1915271987442e-05,-0.000941994101499551,0.00010685114075131,-0.066495441278221,0.0842479706691746,0.0905175298673641,0.000950758570765907,0.140402234618786 +9.274,0.559844727572353,-0.292711780073805,-0.000431223680359374,-0.000168101549236096,-0.000737378581972063,0.00023972648805287,-0.0324505253710013,0.107065020120342,0.0457750727487921,0.000793381429755492,0.120877261779792 +9.276,0.559844331532696,-0.292713032990563,-0.000430659459469768,-0.000201717373471433,-0.000513734021018232,0.000289951431746459,-0.00630358411996129,0.110195666896986,0.0112815039194175,0.000623445567699054,0.110950856266695 +9.278,0.559843920702859,-0.292713835009889,-0.000430063874632389,-0.000193315885715938,-0.000296595914384167,0.000284852503730535,0.0100374420719551,0.102775998357696,-0.0102122622953569,0.000454401933293722,0.103768715820127 +9.28,0.559843558269154,-0.29271421937422,-0.000429520049454846,-0.000161567605183617,-0.000102630027587492,0.000249102382565036,0.0181525115009081,0.0886707239474003,-0.0209724710749293,0.000314148071149507,0.0929077795565872 +9.282,0.559843274432438,-0.292714245529999,-0.000429067465102129,-0.000120705839712314,5.80869814053947e-05,0.000200962619430827,0.0203106362978111,0.0709536009842034,-0.0242445764454065,0.00024151598613331,0.0776835563453726 +9.284,0.559843075445795,-0.292713987026295,-0.000428716198977122,-8.03250599923455e-05,0.000181184376349417,0.000152124076783378,0.0186787382574956,0.0521653558544124,-0.0230339267347051,0.000249843207298289,0.0600056780240776 +9.286,0.559842953132198,-0.292713520792494,-0.000428458968794995,-4.59908866823395e-05,0.000266748404823021,0.000108826912492017,0.0150427644021789,0.0341701207433043,-0.019686127649908,0.000291741615159715,0.0422069370402535 +9.288,0.559842891482248,-0.292712920032675,-0.000428280891327154,-2.01540023836366e-05,0.000317864859322619,7.33795661837543e-05,0.0107202114199543,0.0181289478533257,-0.0157949614481393,0.000326846773485044,0.0263260800406237 +9.29,0.559842872516188,-0.292712249333057,-0.00042816545053026,-3.1100410025079e-06,0.000339264196236348,4.56470666994386e-05,0.00657503909651168,0.0045988935507365,-0.0122731810834069,0.000342335393877401,0.0146632852702851 +9.292,0.559842879042084,-0.292711562975891,-0.000428098303060356,6.14615400240727e-06,0.000336260433525563,2.42868418501323e-05,0.00309125878367246,-0.00630500394255412,-0.00950330448623097,0.000337192385813906,0.011816164849107 +9.294,0.559842897100804,-0.292710904291323,-0.00042806830316286,9.25499413218058e-06,0.000314044180466134,7.63384875451884e-06,0.000468793122376901,-0.0147408518759472,-0.00751221576698351,0.000314273253471942,0.016551310121858 +9.296,0.55984291606206,-0.292710306799169,-0.000428067767665338,8.02132649191467e-06,0.000277297026021781,-5.76202121779842e-06,-0.00128466071114349,-0.0209977215719383,-0.00612942922979756,0.000277472851298516,0.0219117449564953 +9.298,0.55984292918611,-0.292709795103219,-0.000428091351247731,4.11635128760719e-06,0.00023005329417839,-1.68838681646687e-05,-0.0022760194146038,-0.025393806425683,-0.00510943784070319,0.000230708750407205,0.0260025388031385 +9.3,0.559842932527466,-0.292709386585992,-0.000428135303137997,-1.08275116650359e-06,0.000175721800319015,-2.6199772580618e-05,-0.0026665785413106,-0.0282162500135437,-0.0042145938588076,0.000177667530912996,0.0286536246806312 +9.302,0.559842924855106,-0.292709092216017,-0.000428196150338053,-6.54996287763404e-06,0.000117188294124228,-3.37422435998972e-05,-0.00262971412701081,-0.0296965163952685,-0.00326260311041601,0.000122125088727091,0.0299907162545403 +9.304,0.559842906327614,-0.292708917832815,-0.000428270272112397,-1.16016076745457e-05,5.69357347379539e-05,-3.92501850222806e-05,-0.00232512217812567,-0.0300109805444137,-0.00214528889184253,7.01202696448608e-05,0.0301772664568853 +9.306,0.559842878448675,-0.292708864473078,-0.000428353151078142,-1.58504515901398e-05,-2.85562805346671e-06,-4.23233991672702e-05,-0.00188555897978785,-0.0292956476508067,-0.000827148958705935,4.52842306356551e-05,0.0293679158155012 +9.308,0.559842842925808,-0.292708929255328,-0.000428439565709066,-1.91438435936963e-05,-6.02468558652602e-05,-4.2558780857104e-05,-0.00141200926645522,-0.0276658947001634,0.000667679578292428,7.62064316001763e-05,0.0277099493999602 +9.31,0.559842801873301,-0.292709105460502,-0.000428523386201571,-2.14984886559601e-05,-0.000113519206854108,-3.96526808541008e-05,-0.00097423424882969,-0.0252348067719732,0.00227332605951725,0.000122152079139872,0.0253557215744947 +9.312,0.559842756931853,-0.292709383332155,-0.000428598176432482,-2.30407805890146e-05,-0.000161186082953142,-3.3465476619036e-05,-0.000614534617635305,-0.0221263496864679,0.00390053703659346,0.000166228063314434,0.022475924728873 +9.314,0.559842709710178,-0.292709750204834,-0.000428657248108047,-2.3956627126501e-05,-0.00020202460559997,-2.40505327077287e-05,-0.000352908639811221,-0.0184818009576995,0.00545281578396995,0.000204856753304906,0.0192726415190547 +9.316,0.559842661105345,-0.292710191430577,-0.000428694378563313,-2.44524151482599e-05,-0.000235113286783965,-1.16542134831489e-05,-0.000192427393466625,-0.0144597521422019,0.00683890179122593,0.000236668542313618,0.0159966258325218 +9.318,0.559842611900518,-0.292710690657981,-0.00042870386496198,-2.47263367003675e-05,-0.000259863614168771,3.30507445717202e-06,-0.000124223298311776,-0.010231033582802,0.00798132507306932,0.000261058256357931,0.0129765569209352 +9.32,0.559842562199998,-0.292711230885034,-0.000428681158265484,-2.4949308341507e-05,-0.000276037421115168,2.02710868091248e-05,-0.000131864089092352,-0.00597043790101369,0.00882139120691124,0.000277902937737361,0.0106527207648198 +9.322,0.559842512103284,-0.292711794807665,-0.000428622780614743,-2.5253793056737e-05,-0.000283745365772834,3.85906392848288e-05,-0.000194975910419763,-0.00184706802286768,0.00932133990741171,0.000287468996766127,0.00950458066177833 +9.324,0.559842461184826,-0.292712365866497,-0.000428526795708345,-2.5729211983186e-05,-0.000283425693206638,5.75564464387676e-05,-0.000292091323350683,0.00198505757317879,0.00946433193968685,0.000290352992830447,0.00967467570384599 +9.326,0.559842409186436,-0.292712928510438,-0.000428392554828988,-2.64221583501396e-05,-0.00027580513548012,7.6447967043572e-05,-0.000402787830866647,0.00539496432597328,0.00925299729372313,0.0002874211106968,0.0107184810972855 +9.328,0.559842355496192,-0.292713469087039,-0.000428221003840171,-2.73403633066524e-05,-0.000261845835902748,9.4568435613656e-05,-0.000509193048833517,0.00828049720114177,0.00870704450986121,0.000279739032420866,0.0120265762191823 +9.33,0.559842299824983,-0.292713975893782,-0.000428014281086533,-2.84589305454735e-05,-0.000242683146675556,0.000111276145083013,-0.000596947935527091,0.0105716222303907,0.0078604105889137,0.000268490969815891,0.0131871755143445 +9.332,0.55984224166047,-0.292714439819626,-0.000427775899259838,-2.97281550487615e-05,-0.00021955934698117,0.000126010077969321,-0.000655679288644712,0.0122312804190263,0.00675817147904875,0.000254889406996909,0.0139895324353118 +9.334,0.559842180912363,-0.29271485413117,-0.000427510240774656,-3.1081647700052e-05,-0.000193758024999457,0.000138308830999205,-0.0115702413969129,0.298412885322382,0.00375209742180848,0.000240078266004665,0.298660675093784 +9.336,0.559842117333879,-0.292715214851726,-0.000427222663935842,-7.60091206364079e-05,0.000974092194308226,0.000141018467656554,0.0379518387272264,0.210101751347372,-0.0669289506602586,0.000987177389151685,0.223746670184147 +9.338,0.55984187687588,-0.292710957762392,-0.00042694616690403,0.000120725707208904,0.000646648980390312,-0.000129406971641919,0.0879018319383083,-0.49694388535096,-0.104423533400102,0.000670429537334426,0.515348650501368 +9.34,0.559842600236708,-0.292712628255804,-0.000427740291822409,0.000275598207116787,-0.0010136833470954,-0.000276675665943807,-0.00812403537498075,-0.44631330371757,0.028707342942045,0.00108630461845192,0.447309374555081 +9.342,0.559842979268709,-0.292715012495781,-0.000428052869567805,8.82295657089846e-05,-0.00113860423447977,-1.45775998737512e-05,-0.0884390010322451,0.00904290743675354,0.12422207702932,0.0011421105749701,0.152755868954255 +9.344,0.559842953154971,-0.292717182672742,-0.000427798602221904,-7.81577970121547e-05,-0.000977511717348386,0.000220212642173419,-0.0760961780810126,0.383222602578405,0.0914295645538541,0.00100505293719295,0.40125996152122 +9.346,0.559842666637521,-0.29271892254265,-0.000427172018999111,-0.000216155146615032,0.000394286175833682,0.000351140658341625,0.00634429646317738,0.316387559370147,-0.02334837836525,0.000570512399341421,0.317311337008462 +9.348,0.559842088534384,-0.292715605528039,-0.000426394039588537,-5.27806111594367e-05,0.000288038520132626,0.000126819128712388,0.0707070244645918,-0.103305013536538,-0.0969918700736806,0.00031911608139034,0.158362975441895 +9.35,0.559842455515076,-0.29271777038857,-0.000426664742484262,6.66729512433035e-05,-1.89338783124236e-05,-3.6826821953055e-05,0.0402892527534528,-0.149643760147254,-0.054885861784303,7.84855973450137e-05,0.164404795131548 +9.352,0.559842355226189,-0.292715681263552,-0.00042654134687635,0.000108376399854357,-0.000310536520456324,-9.27243184247996e-05,0.0178476334475279,-0.415880731168595,-0.00675654675697511,0.000341725289976988,0.416318353548198 +9.354,0.559842889020676,-0.292719012534651,-0.000427035639757961,0.000138063485033439,-0.00168245680298736,-6.38530089809645e-05,-0.0524641254329156,-0.294011088777207,0.0928471212934092,0.00168931927905117,0.312754844429103 +9.356,0.55984290748013,-0.292722411090764,-0.000426796758912273,-0.000101480101877283,-0.00148658087556502,0.000278664166748796,-0.111607323570486,0.449721153504656,0.144113295957382,0.00151587421262534,0.485256584350821 +9.358,0.559842483100268,-0.292724958858154,-0.000425920983090966,-0.000308365809248457,0.000116427811031063,0.0005126001748485,-0.0178475040163479,0.435353552638669,0.0132067428286851,0.000609429115443013,0.435919335715757 +9.36,0.559841674016893,-0.29272194537952,-0.00042474635821288,-0.000172870117942666,0.000254833334989463,0.000331491138063531,0.0759583359474964,-0.272605063567723,-0.0866833271378029,0.000452449423597841,0.295968222426588 +9.362,0.559841791619796,-0.292723939524814,-0.000424595018538712,-4.53246545850509e-06,-0.00097399244323971,0.000165866866297326,0.0100528671637101,-0.247174247895665,0.00386095718417271,0.000988025121171768,0.247408722464219 +9.364,0.559841655887031,-0.292725841349293,-0.00042408289074769,-0.000132658649287813,-0.000733863656593528,0.000346934966800227,-0.0548134317796115,0.171391551392132,0.0769494706383274,0.000822507176192625,0.195705894708307 +9.366,0.559841260985199,-0.29272687497944,-0.000423207278671511,-0.000223786192576927,-0.000288426237671256,0.000473664748850602,-0.0281516337324662,0.218913512692353,0.0379445740010408,0.000598020274630365,0.223954082832245 +9.368,0.55984076074226,-0.292726995054244,-0.000422188231752288,-0.000245265184217665,0.000141790394175786,0.000498713262804373,-0.00906692504409686,0.483613822203802,-0.00764431965904167,0.000573562938976041,0.483759210536993 +9.37,0.559840279924462,-0.292726307817863,-0.000421212425620293,-0.000260053892753327,0.0016460290511446,0.000443087470214425,0.0582531327619618,0.357939059166768,-0.106360066846684,0.00172434514254228,0.377923618438177 +9.372,0.559839720526689,-0.292720410938039,-0.00042041588187143,-1.22526531698433e-05,0.0015735466308427,7.32729954176861e-05,0.115201505057641,-0.39137766628958,-0.158932210437453,0.00157529935529841,0.437843935612175 +9.374,0.55984023091385,-0.29272001363134,-0.000420919333638622,0.000200752127477188,8.05183859864478e-05,-0.000192641371535317,0.0211214454259914,-0.384757452190439,-0.0303883842733552,0.00028964689743805,0.386533137482035 +9.376,0.559840523535199,-0.292720088864495,-0.000421186447357572,7.22331285341129e-05,3.45168220811136e-05,-4.82805416757213e-05,-0.0619485250735825,0.0291040815440636,0.0686565132558608,9.34882162034659e-05,0.0969452635963613 +9.378,0.559840519846364,-0.292719875564052,-0.000421112455805325,-4.70419728171144e-05,0.000196934712162689,8.19846814880957e-05,-0.0453897879074026,0.0825561071726526,0.0451694130154566,0.000218443851046057,0.104479756651432 +9.38,0.559840335367308,-0.292719301125646,-0.000420858508631619,-0.000109326023095558,0.000364741250771834,0.000132397110386166,-0.0298658280467719,0.360212503762548,0.00763901915422745,0.000403134412050248,0.361529210666914 +9.382,0.559840082542271,-0.292718416599049,-0.000420582867363781,-0.000166505285004189,0.00163778472721272,0.000112540758105002,0.0378670271111751,0.251825609243792,-0.0877905876476035,0.00165006916365964,0.269364504886514 +9.384,0.559839669346168,-0.292712749986738,-0.000420408345599199,4.21420853491254e-05,0.00137204368774689,-0.00021876524020421,0.0976611700953315,-0.478257802475378,-0.140051265190882,0.00139001369301358,0.507821412166259 +9.386,0.559840251110613,-0.292712928424298,-0.000421457928324598,0.000224139395377268,-0.000275246482689426,-0.000447664302658712,0.00832600981909944,-0.452723952472314,-0.0120770370579385,0.000571316394537999,0.45296153744635 +9.388,0.55984056590375,-0.292713850972668,-0.000422199002809834,7.54461246255195e-05,-0.000438852122142168,-0.000267073388435958,-0.07004811544699,-0.0209246349414151,0.0869979348171024,0.00051924127112582,0.113636347563388 +9.39,0.559840552895111,-0.292714683832786,-0.000422526221878342,-5.60530664106613e-05,-0.000358945022455077,-9.96725633903405e-05,-0.0499609952853252,0.0493612217246473,0.0642170785913681,0.000376720181689427,0.0951654582443653 +9.392,0.559840341691484,-0.292715286752758,-0.000422597693063395,-0.000124397856515759,-0.0002414072352436,-1.0205074070514e-05,-0.0317110895459027,0.342243884045264,0.0279665365709357,0.0002717653831349,0.344845757599467 +9.394,0.559840055303685,-0.292715649461727,-0.000422567042174624,-0.000182897424594258,0.00101003051372583,1.21935828933898e-05,0.0375231848509432,0.247638611623691,-0.0661001687291542,0.00102652900107316,0.259040737480208 +9.396,0.559839610101786,-0.292711246630703,-0.000422548918731822,2.56948828880638e-05,0.000749147211251493,-0.000274605748987219,0.0980096204888938,-0.470187493037391,-0.117760822193464,0.000798304508636493,0.494519742336789 +9.398,0.559840158083217,-0.292712652872882,-0.000423665465170572,0.000209141057361274,-0.000870719458423526,-0.000458849705880416,0.00962989038510497,-0.434556284564083,0.0102474509772123,0.00100619849420385,0.434783750265002 +9.4,0.559840446666015,-0.292714729508537,-0.000424384317555343,6.42144444284794e-05,-0.000989077927004647,-0.000233615945078375,-0.0683118877991953,0.00550080219221969,0.109151007845833,0.00101831971912358,0.128882564193955 +9.402,0.559840414940995,-0.29271660918459,-0.000424599928950886,-6.41064938355988e-05,-0.00084871624965464,-2.2245674496937e-05,-0.0486866144691658,0.0825635239515759,0.0856054961527046,0.00085142456213898,0.128512345272049 +9.404,0.55984019024004,-0.292718124373536,-0.000424473300253331,-0.000130532013448162,-0.00065882383119838,0.000108806039532406,-0.0206169988581407,0.0957420026107203,0.0484750468619895,0.000680386802729499,0.10927681306709 +9.406,0.559839892812941,-0.292719244479915,-0.000424164704792757,-0.000146574489268153,-0.000465748239211801,0.000171654512950999,-0.000148157819346332,0.0925613729274781,0.0203093016536194,0.000517562339288281,0.0947633760617297 +9.408,0.559839603942083,-0.292719987366492,-0.000423786682201527,-0.000131124644725548,-0.000288578339488508,0.000190043246146875,0.0115333775308061,0.0818265998778545,0.00324660818366261,0.000369577550566031,0.0826991638986564 +9.41,0.559839368314362,-0.292720398793273,-0.000423404531808169,-0.000100440979144933,-0.000138441839700419,0.000184640945685648,0.0162281492063729,0.0668759910157763,-0.00499096279062027,0.000251687926001467,0.0689975413372378 +9.412,0.559839202178166,-0.292720541133851,-0.000423048118418784,-6.62120479000345e-05,-2.10743754253141e-05,0.000170079394984387,0.0161835072009988,0.0501709432436338,-0.00737810807586503,0.000183725788023725,0.0532303102570317 +9.414,0.55983910346617,-0.292720483090775,-0.000422724214228232,-3.57069503409452e-05,6.22419332740944e-05,0.000155128513382192,0.0134020464726036,0.0336569810736823,-0.0065403305983016,0.000170920742522715,0.036812812293862 +9.416,0.559839059350365,-0.292720292166118,-0.000422427604365255,-1.26038620096261e-05,0.0001135535488694,0.000143918072591183,-0.000864648699860723,0.303290346580153,-0.00481265984529525,0.00018375439427876,0.303329760559148 +9.418,0.559839053050722,-0.292720028876579,-0.000422148541937867,-3.91655451403893e-05,0.00127540331959511,0.000135877874001004,0.0426114422219594,0.202733178675309,-0.0707459876748622,0.00128321875150085,0.218909733717169 +9.42,0.559838902688184,-0.29271519055284,-0.000421884092869251,0.000157841906878193,0.000924486263570547,-0.000139065878108234,0.0866827787327131,-0.51236105471167,-0.107857205554884,0.000948118261374387,0.530717374224915 +9.422,0.55983968441835,-0.292716330931525,-0.0004227048054503,0.000307565569790425,-0.000774040899251346,-0.000295550948218486,-0.00833367341107799,-0.469894167926775,0.0243293823976085,0.000883790844276624,0.47059738419584 +9.424,0.559840132950463,-0.292718286716437,-0.000423066296662125,0.000124507213233885,-0.000955090408136344,-4.17483485178107e-05,-0.0872181550246189,-0.0207941589536669,0.121442794899339,0.000964076064667763,0.150956139475848 +9.426,0.559840182447203,-0.292720151293157,-0.000422871798844371,-4.13070503080122e-05,-0.000857217535066004,0.000190220231378816,-0.0660189684378717,0.0662272807184912,0.0926582151396378,0.000879040335397412,0.131643844283848 +9.428,0.559839967722262,-0.292721715586577,-0.00042230541573661,-0.00013956866051769,-0.000690181285262291,0.000328884512040864,-0.0344637477028964,0.0884319925099151,0.0487249205696732,0.000777170920573697,0.106686855279943 +9.43,0.559839624172561,-0.292722912018298,-0.000421556260796208,-0.000179162041119582,-0.000503489565026383,0.000385119913657487,-0.00971101054429334,0.0924122871560078,0.0137916141319409,0.000658724621495311,0.0939390396137845 +9.432,0.559839251074097,-0.292723729544837,-0.00042076493608198,-0.000178412702694859,-0.0003205321366383,0.000384050968568622,0.00619804293305743,0.0866624864023585,-0.00898811634754908,0.000531099886612015,0.0873475158268172 +9.434,0.55983891052175,-0.292724194146845,-0.000420020056921933,-0.000154369869387344,-0.000156839619416833,0.000349167448267279,0.0145449391350361,0.0746352999437902,-0.0214055900417713,0.000412730698789132,0.0789948260152386 +9.436,0.55983863359462,-0.292724356903315,-0.000419368266288911,-0.000120232946154721,-2.19909368631723e-05,0.000298428608401546,0.0173340900105939,0.0591535754199254,-0.0263390891137571,0.000322489064865225,0.0670325575880752 +9.438,0.559838429589965,-0.292724282110592,-0.000418826342488327,-8.50335093449766e-05,7.9774682262843e-05,0.000243811091812262,0.00635443616475857,0.327057852390972,-0.0265921729003238,0.000270256445126378,0.328198661376196 +9.44,0.559838293460583,-0.292724037804586,-0.000418393021921662,-9.48152014956898e-05,0.00128624047270057,0.000192059916800262,0.0505600974420854,0.223579895888778,-0.0920512355324638,0.00130395225667544,0.247017657794019 +9.442,0.559838050329159,-0.292719137148702,-0.000418058102821126,0.000117206880423343,0.000974094265817856,-0.000124393850317553,0.0939955400874671,-0.494842807202578,-0.128139828485848,0.00098897468193813,0.519734914202274 +9.444,0.559838762288104,-0.292720141427522,-0.000418890597322932,0.000281166958854304,-0.000693130756110404,-0.0003204993971433,-0.00085866207198798,-0.456658430517807,0.00572539458116577,0.000813759772529201,0.456695127636206 +9.446,0.559839174996995,-0.292721909671726,-0.000419340100409699,0.000113772232135391,-0.00085253945625317,-0.000101492271992892,-0.08013707646777,-0.0117736140315442,0.105736305291299,0.000866064851236788,0.133194351489918 +9.448,0.559839217377033,-0.292723551585347,-0.000419296566410904,-3.93813470167405e-05,-0.000740225212236575,0.000102445824021851,-0.0605555656452015,0.0720193981153089,0.0802452607079508,0.000748317714732888,0.123665161228167 +9.45,0.559839017471607,-0.292724870572575,-0.000418930317113611,-0.000128450030445496,-0.000564461863791839,0.000219488770839018,-0.040734955256152,0.375996353260689,0.0394722040782315,0.00061910574744645,0.380250771386267 +9.452,0.559838703576911,-0.292725809432803,-0.000418418611327548,-0.000202321168041331,0.000763760200806014,0.000260334640334759,0.0292878045704612,0.29029266236664,-0.0603964824099282,0.000831887987851177,0.297951909555824 +9.454,0.559838208186934,-0.292721815531772,-0.000417888978552272,-1.12988121636638e-05,0.000596708785674592,-2.20971588006682e-05,0.0906979030490729,-0.421489906317444,-0.120570223292377,0.000597224683418744,0.447679605845253 +9.456,0.559838658381662,-0.29272342259766,-0.000418506999962751,0.000160470444154921,-0.000922199424463578,-0.000221946252834695,0.00739411402939054,-0.385636782104772,-0.000812201720806901,0.000962009709449751,0.3857085172848 +9.458,0.559838850068711,-0.29272550432947,-0.000418776763563611,1.82776439538951e-05,-0.000945838342744327,-2.53459656838954e-05,-0.0662033569353978,0.0509151689281781,0.093286750139726,0.000946354405521678,0.125210449436667 +9.46,0.559838731492238,-0.292727205951031,-0.000418608383825486,-0.000104342983586759,-0.000718538748750798,0.000151200747724334,-0.0456533355286473,0.123321109123031,0.0672315726554568,0.000741651574388234,0.147690241254972 +9.462,0.559838432696777,-0.292728378484465,-0.000418171960572714,-0.000164335698160674,-0.000452553906252256,0.000243580324937902,-0.017387172840373,0.130462716747876,0.0285393747922098,0.000539576347193783,0.134674905435823 +9.464,0.559838074149446,-0.292729016166656,-0.000417634062525735,-0.000173891674948243,-0.000196687881759351,0.000265358246893161,0.00303573520488087,0.120266428416783,-0.000513270817341261,0.000373281980065335,0.120305830861581 +9.466,0.559837737130077,-0.292729165235992,-0.000417110527585141,-0.000152192757341146,2.85118074150357e-05,0.000241527241668537,0.014569328160558,0.102015351010482,-0.0178696078619819,0.000286898879428249,0.104588336108683 +9.468,0.559837465378416,-0.292728902119426,-0.000416667953559061,-0.000115614362306017,0.000211373522282533,0.000193879815445241,0.0190714544573465,0.0794660889348772,-0.0258550810570331,0.000309248814921953,0.0857150213334291 +9.47,0.559837274672628,-0.292728319741903,-0.00041633500832336,-7.5906939511769e-05,0.00034637616315451,0.000138106917440416,0.0188053172478539,0.0554241873403205,-0.0274653202733043,0.000380541496439714,0.0646515608229419 +9.472,0.559837161750658,-0.292727516614774,-0.000416115525889299,-4.03930933146102e-05,0.000433070271643791,8.40185343520354e-05,0.00588293697784837,0.316308842836817,-0.0248451220178942,0.000442990492317627,0.317337632644374 +9.474,0.559837113100254,-0.292726587460816,-0.000415998934185952,-5.23751916003781e-05,0.00161161153450164,3.87264293688498e-05,0.0478712506302052,0.207913278583253,-0.0882132277900901,0.00161292734962414,0.230870443334099 +9.476,0.559836952249892,-0.292721070168636,-0.000415960620171824,0.000151091909206275,0.00126472338597708,-0.000268834376808443,0.0895602853129424,-0.513680524491456,-0.124224774793203,0.00130177798806821,0.536022873224245 +9.478,0.559837717467891,-0.292721528567272,-0.000417074271693185,0.000305865949651352,-0.00044311056346396,-0.000458172669803908,-0.00401397412530624,-0.478846460563143,0.00920300597447917,0.000706981715438746,0.478951709571115 +9.48,0.55983817571369,-0.292722842610889,-0.000417793310851039,0.000135036012705051,-0.00065066245627528,-0.00023202235291053,-0.0818355333290402,-0.0366577309722585,0.11000924695934,0.000703868403171785,0.141925607879071 +9.482,0.559838257611942,-0.292724131217097,-0.000418002361104827,-2.14761836647727e-05,-0.000589741487352978,-1.81356819665988e-05,-0.0623326310428284,0.0461486854703217,0.0859393206615526,0.000590411002040527,0.115761068149569 +9.484,0.559838089808956,-0.292725201576839,-0.000417865853578905,-0.000114294511466235,-0.000466067714394014,0.000111734929735642,-0.0325387733007759,0.065926431751225,0.0463433527985134,0.000492713957864798,0.0869066885801991 +9.486,0.559837800433896,-0.292725995487955,-0.000417555421385885,-0.00015163127686792,-0.000326035760347989,0.000167237729227517,-0.0189783850024385,0.352974701075424,0.0158286470640873,0.000396559981878484,0.353838755317256 +9.488,0.559837483283848,-0.29272650571988,-0.000417196902661995,-0.000190208051475981,0.000945831089907527,0.000175049517991985,0.0418200214041894,0.260068356325977,-0.0708776795015797,0.000980519192688841,0.272778499159796 +9.49,0.55983703960169,-0.292722212163595,-0.000416855223313917,1.56488087488197e-05,0.000714237664955803,-0.000116272988778771,0.0951813534516353,-0.454481007671518,-0.121469016700946,0.000723809184230431,0.479965830447646 +9.492,0.559837545879083,-0.29272364876922,-0.000417661994617111,0.000190517362330688,-0.000872092940779153,-0.000310826548811961,0.00845638341296167,-0.419565196911622,0.00456099733240681,0.000945228070971566,0.419675192948763 +9.494,0.55983780167114,-0.292725700535358,-0.000418098529509164,4.94743424006626e-05,-0.0009640231226905,-9.80289994491454e-05,-0.0668725471248003,0.0184017794092924,0.103431395444125,0.000970256654896487,0.124533596301985 +9.496,0.559837743776453,-0.292727504861711,-0.000418054110614907,-7.69728261684839e-05,-0.000798485823141991,0.000102899032964493,-0.0580577151215861,0.379116588247824,0.0812684859304204,0.000808759937628055,0.392051849345508 +9.498,0.559837493779835,-0.292728894478651,-0.000417686933377306,-0.000182756518085656,0.000552443230300631,0.0002270449442725,0.0148103470043511,0.304913167853436,-0.0231978727590197,0.000624614180376568,0.306152784748646 +9.5,0.55983701275038,-0.29272529508879,-0.000417145930837817,-1.77314381510859e-05,0.000421166848271618,1.01075419284246e-05,0.0803825213543761,-0.402100327777287,-0.0936082394002862,0.000421661096599851,0.420604952207543 +9.502,0.559837422854082,-0.292727209811258,-0.000417646503209593,0.000138773567331955,-0.00105595808080905,-0.000147388013328769,0.00357414663143422,-0.365293855057075,0.0162749954060437,0.00107518779656811,0.36567369407994 +9.504,0.55983756784465,-0.292729518921113,-0.000417735482891132,-3.43485162535056e-06,-0.00104000857195652,7.52075235525923e-05,-0.0652091334957258,0.0702441481024623,0.103918652100993,0.00104272997441699,0.14137028573357 +9.506,0.559837409114676,-0.292731369845546,-0.000417345673115382,-0.000122062966650919,-0.000774981488399237,0.000268286595075156,-0.0434866914838974,0.141357448180775,0.0738954984190647,0.000829140140317751,0.165328658069308 +9.508,0.559837079592783,-0.292732618847067,-0.000416662336510831,-0.000177381617560998,-0.000474578779233234,0.00037078951722895,-0.0152057257410579,0.146498404768271,0.032416833939434,0.000627832877471338,0.150810635625003 +9.51,0.559836699588206,-0.292733268160662,-0.000415862515046467,-0.000182885869615144,-0.000188987869326217,0.000397953930832878,0.00477061791459671,0.133720022416102,0.00122811387708754,0.000477002082933282,0.133810729965669 +9.512,0.559836348049305,-0.292733374798544,-0.0004150705207875,-0.000158299145902614,6.03013104311167e-05,0.000375701972737299,0.0156902287967754,0.112544381095811,-0.0178955841733911,0.000412124786869105,0.115033355722769 +9.514,0.559836066391622,-0.292733026955421,-0.000414359707155518,-0.000120124954428049,0.000261189655056977,0.000326371594139321,0.0195870438549205,0.0869716100457012,-0.0274292185744466,0.0004349350043928,0.0932741940330811 +9.516,0.559835867549487,-0.292732330039924,-0.000413765034410943,-7.99509704829404e-05,0.000408187750613883,0.000265985098439525,0.0188403809081541,0.0600079657665652,-0.030450557892893,0.000493718006582978,0.0698795562678673 +9.518,0.55983574658774,-0.292731394204418,-0.000413295766761759,-4.47634307954075e-05,0.000501221518123318,0.000204569362567708,0.0155136454654759,0.0340182526176709,-0.0296308928695219,0.00054320843059343,0.0477064410644227 +9.52,0.559835688495764,-0.292730325153851,-0.000412946756960672,-1.78963886210435e-05,0.000544260761084552,0.000147461526961451,0.0111692136373101,0.0106640687876888,-0.0269403455750536,0.00056416749172193,0.0310524703701291 +9.522,0.559835675002186,-0.292729217161374,-0.000412705920653914,-8.65762461721142e-08,0.000543877793274068,9.68079802675058e-05,0.00686365621976727,-0.00907577417385916,-0.0236435842779162,0.000552426326812536,0.0262392555356466 +9.524,0.559835688149459,-0.292728149642678,-0.000412559525039602,9.55823625803481e-06,0.000507957664389103,5.28871898497543e-05,0.0032118897541629,-0.024795208729917,-0.0204205208654003,0.000510792916495718,0.0322818259112971 +9.526,0.559835713235131,-0.292727185330716,-0.000412494371894515,1.27609827704781e-05,0.000444696958354411,1.51258968059137e-05,0.000481738218760625,-0.0365068610688826,-0.0175259739689692,0.000445137080240589,0.0404986757854513 +9.528,0.55983573919339,-0.292726370854845,-0.000412499021452378,1.14851891330771e-05,0.000361930220113589,-1.72167060261149e-05,-0.0013001598825338,-0.0444871264757105,-0.0149498895121064,0.000362521459733466,0.0469499098424076 +9.53,0.559835759175887,-0.292725737609836,-0.000412563238718619,7.56034324034344e-06,0.000266748452451589,-4.46736612425052e-05,-0.00225114529101089,-0.0491491969241712,-0.0125559068463477,0.000270569088559723,0.0507775738899207 +9.532,0.559835769434763,-0.292725303861035,-0.000412677716097348,2.48060796903455e-06,0.000165333432416926,-6.74403334115e-05,-0.00255790572750656,-0.0509541220432172,-0.0101823138367088,0.000178576302630871,0.0520244649177203 +9.534,0.559835769098319,-0.292725076276106,-0.000412833000052265,-2.67127966968624e-06,6.29319642786522e-05,-8.54029165893538e-05,-0.0118927314315977,0.233378726347753,-0.00625692094490869,0.000106118923972171,0.233765301172595 +9.536,0.559835758749644,-0.292725052133178,-0.000413019327763706,-4.50903177573508e-05,0.00109884833780783,-9.2468017191132e-05,0.0331975514161682,0.14916295574398,-0.0699161479761441,0.00110365354186074,0.168047411566295 +9.538,0.559835588737048,-0.292720680882755,-0.00041320287212103,0.000130118925994972,0.000659583787254505,-0.000365067508493899,0.0779499972971934,-0.549031799270421,-0.109271168274316,0.000765020256639668,0.565201120756835 +9.54,0.559836279225348,-0.292722413798029,-0.000414479597797682,0.000266709671431527,-0.00109727885927459,-0.00052955269028854,-0.00854759638067991,-0.495597849859594,0.0206200904614624,0.00124722932760494,0.496100270429254 +9.542,0.559836655575734,-0.292725069998192,-0.000415321082882184,9.5928540472256e-05,-0.00132280761218365,-0.000282587146648059,-0.0899613990315771,0.245539860197678,0.122455253861515,0.00135605227007621,0.288752775674801 +9.544,0.55983666293951,-0.292727705028478,-0.000415609946384274,-9.31359246947419e-05,-0.000115119418483979,-3.97316748425346e-05,-0.0242719220278129,0.255619848104544,0.0333001101346449,0.000153314666508547,0.25891993024658 +9.546,0.559836283032035,-0.292725530475866,-0.000415480009581554,-1.15914763898508e-06,-0.000300328219765589,-0.000149386706109494,0.040619079107186,-0.131334123815815,-0.0460052816102777,0.000335432215466942,0.144965677324064 +9.548,0.55983665830292,-0.292728906341357,-0.000416207493208712,6.93403917339843e-05,-0.000640455913747181,-0.000223752801283625,0.0216353773438378,-0.157698920082126,-0.0161285914623796,0.000681951012508838,0.159991157288268 +9.55,0.559836560393602,-0.292728092299521,-0.000416375020786688,8.53823617363952e-05,-0.000931123900094302,-0.000213901071959034,0.00789877432212205,-0.407404827689772,0.0189435869126441,0.000959184827657179,0.407921492135241 +9.552,0.559836999832366,-0.292732630836957,-0.000417063097496548,0.000100935489022469,-0.00227007522450609,-0.000147978453633057,-0.0506895382612597,-0.275952325944602,0.109179707635797,0.00227713133582589,0.30106365446997 +9.554,0.559836964135558,-0.292737172600419,-0.000416966934601221,-0.000117375791308621,-0.00203493320387259,0.000222817758584107,-0.0909283751904041,0.188014531738542,0.161245130931401,0.00205045799131534,0.263851143277255 +9.556,0.559836530329201,-0.292740770569773,-0.000416171826462211,-0.000262778011739269,-0.00151801709755167,0.000497002070092761,-0.0487195399579103,0.269161006458657,0.1023586792106,0.00161877708458865,0.292059138157473 +9.558,0.559835913023511,-0.292743244668809,-0.00041497892632085,-0.000312253951140241,-0.00095828917803808,0.000632252475426462,-0.00776613890557558,0.27335627197581,0.0410998630346209,0.00118977471457015,0.276537814924972 +9.56,0.559835281313397,-0.292744603726485,-0.000413642816560505,-0.000293842567361568,-0.000424592009648552,0.000661401522231226,0.0184832761041017,0.251609262202967,-0.00210383005027532,0.000839091057431085,0.252296013489596 +9.562,0.559834737653242,-0.292744943036848,-0.000412333320231925,-0.000238320846723842,4.81478707736791e-05,0.000623837155225362,0.0310530436087565,0.215986865510774,-0.0276438806898184,0.000669543008090504,0.219951816837528 +9.564,0.55983432803001,-0.292744411135002,-0.000411147467939604,-0.000169630392926555,0.00043935545239445,0.000550825999471965,0.0336626292604594,0.172802923775711,-0.0400895443664666,0.000724718542226869,0.180558009076508 +9.566,0.55983405913167,-0.292743185615038,-0.000410130016234037,-0.00010367032968196,0.000739359565876755,0.000463478977759442,0.0300804647995634,0.126971922337426,-0.0441710296975566,0.000878756432542469,0.137759875468735 +9.568,0.559833913348691,-0.292741453696738,-0.000409293552028567,-4.93085337283149e-05,0.000947243141744096,0.000374141880681758,0.0234084157335675,0.08227735411721,-0.0436830268312344,0.00101964849235398,0.0960506312359406 +9.57,0.559833861897535,-0.292739396642471,-0.00040863344871131,-1.00366667477003e-05,0.00106846898234556,0.000288746870434523,0.0159019283088555,0.0413278899678756,-0.0412372689042711,0.00110684301330391,0.0605093229165554 +9.572,0.559833873202024,-0.292737179820809,-0.000408138564546828,1.42991795071284e-05,0.00111255470161565,0.000209192805064618,0.00900426192634949,0.00566255926882418,-0.0383545480080641,0.00113214136056964,0.0398021690767494 +9.574,0.559833919094253,-0.292734946423665,-0.000407796677491051,2.59803809576937e-05,0.00109111921942085,0.000135328678402284,0.00348160861252188,-0.0240279307249567,-0.0357032516633003,0.00109978633487709,0.0431762114223452 +9.576,0.559833977123548,-0.292732815343931,-0.000407597249833219,2.82256139572143e-05,0.00101644297871584,6.63797984114329e-05,-0.000404476931115206,-0.0476454145512222,-0.0333791639554261,0.0010189991618746,0.0581757485186812 +9.578,0.559834031996709,-0.29273088065175,-0.000407531158297406,2.43624732332331e-05,0.000900537561215985,1.81202258059419e-06,-0.00272672340262655,-0.0654532914119304,-0.0311643466692495,0.000900868865423102,0.072545054142172 +9.58,0.559834074573441,-0.292729213193686,-0.000407590001742897,1.73187203467093e-05,0.000754629813068145,-5.82775882655512e-05,-0.00374767668287395,-0.0779000492931273,-0.0287311626408498,0.000757074877498758,0.0831140329131368 +9.582,0.55983410127159,-0.292727862132498,-0.000407764268650468,9.37176650173225e-06,0.000588937364043372,-0.000113112627982843,-0.00380927262649713,-0.0855040569943583,-0.0257810781091727,0.000599774553797428,0.0893874616985442 +9.584,0.559834112060507,-0.29272685744423,-0.000408042452254828,2.08162984072247e-06,0.00041261358509075,-0.000161401900702231,-0.00325701472042614,-0.0887922226057891,-0.0221224491485891,0.000443063062480419,0.0915645657254868 +9.586,0.55983410959811,-0.292726211678157,-0.000408409876253277,-3.65629237997089e-06,0.000233768473620255,-0.00020160242457719,-0.0023940095253411,-0.0882782138118623,-0.0176995373756638,0.000308714439779083,0.0900669081224221 +9.588,0.559834097435337,-0.292725922370336,-0.000408848861953137,-7.49440826064512e-06,5.95007298431826e-05,-0.000232200050204909,-0.00145873941398495,-0.0844644220190853,-0.0125870025349016,0.000239819445254573,0.0854095963022287 +9.59,0.559834079620476,-0.292725973675238,-0.000409338676454096,-9.49125003591005e-06,-0.000104089214456049,-0.000251950434716791,-0.000619341376795338,-0.0778536462381523,-0.00696370089543916,0.00027277036119656,0.0781669172123189 +9.592,0.559834059470337,-0.292726338727193,-0.000409856663692004,-9.9717737678262e-06,-0.000251913855109392,-0.000260054853786663,2.16531653718426e-05,-0.0689605193921069,-0.00107732197642009,0.000362199604701821,0.0689689374017724 +9.594,0.559834039733381,-0.292726981330658,-0.000410378895869243,-9.40463737442269e-06,-0.000379931292024447,-0.000256259722622471,0.00041702475500717,-0.0583166860946705,0.00479193207512944,0.000458372424238256,0.0585147195133265 +9.596,0.559834021851788,-0.292727858452362,-0.000410881702582494,-8.3036747477977e-06,-0.000485180599488049,-0.000240887125486147,0.000562298735351393,-0.0464676123378034,0.0103633793135568,0.00054175250101765,0.047612548839994 +9.598,0.559834006518682,-0.292728922053056,-0.000411342444371188,-7.15544243301637e-06,-0.000565801741375722,-0.00021480620536823,0.000483211332057715,-0.0339614192636842,0.0153811591076361,0.000605247483898042,0.0372852725226675 +9.6,0.559833993230018,-0.292730121659327,-0.000411740927403967,-6.37082941956705e-06,-0.000621026276542771,-0.00017936248905561,0.00022445000025314,-0.0213320395028184,0.0196318485825631,0.000646440349997039,0.0289916499344398 +9.602,0.559833981035365,-0.292731406158163,-0.00041205989432741,-6.2576424320039e-06,-0.000651129899386986,-0.000136278811037986,-0.0001597250387508,-0.00907956802104001,0.0229550245096859,0.000665267779395967,0.0246859720849104 +9.604,0.559833968199448,-0.292732726178925,-0.000412286042648119,-7.00972957457046e-06,-0.000657344548626943,-8.75423910168357e-05,-0.000612837412762021,0.00234917621806423,0.0252476580831192,0.000663185239690399,0.0253641171200594 +9.606,0.559833952996446,-0.292734035536357,-0.000412410063891477,-8.70899208305172e-06,-0.000641733194514731,-3.52881787055209e-05,-0.00108163746015434,0.0125774790860095,0.0264638766473621,0.000642761693819363,0.0293206358553325 +9.608,0.55983393336348,-0.292735293111703,-0.000412427195362941,-1.13362794151874e-05,-0.00060703463228291,1.83131155726011e-05,-0.00151980342200131,0.0213111818157854,0.0266111612780343,0.000607416600220806,0.0341266783820597 +9.61,0.559833907651329,-0.292736463674886,-0.000412336811429187,-1.47882057710563e-05,-0.000556488467251598,7.11564664066045e-05,-0.00189021784335717,0.0283458591009755,0.0257443003893942,0.000561214172954884,0.0383383574792539 +9.612,0.559833874210657,-0.292737519065572,-0.000412142569497315,-1.88971507886152e-05,-0.000493651195879021,0.000121290317130167,-0.00216601780955679,0.0335685033936364,0.0239578131066372,0.000508684525546287,0.0412978554175935 +9.614,0.559833832062726,-0.29273843827967,-0.000411851650160666,-2.34522770092863e-05,-0.000422214453677008,0.000166987718833185,-0.00233074275157991,0.0369541117462934,0.0213777035067324,0.000454642664552949,0.0427556422469987 +9.616,0.559833780401549,-0.292739207923386,-0.000411474618621982,-2.82201217949338e-05,-0.000345834748893863,0.000206801131157087,-0.00237772041638792,0.0385579557449605,0.0181529102331306,0.000403936575051645,0.0426836930869499 +9.618,0.559833719182238,-0.292739821618665,-0.000411024445636038,-3.2963158674837e-05,-0.000267982630697183,0.0002395993597657,-0.00230897629488417,0.038504547814058,0.0144469467803674,0.000360983536169364,0.0411903610711315 +9.62,0.559833648548914,-0.292740279853909,-0.000410516221182919,-3.74560269744736e-05,-0.00019181655763758,0.000264588918278576,-0.00213376445679505,0.0369744083614016,0.0104299237831754,0.000328943523141086,0.0384765270594373 +9.622,0.559833569358131,-0.292740588884896,-0.000409966089962924,-4.14982165020163e-05,-0.000120084997251593,0.000281319054898397,-0.00186695042758741,0.0341896835114117,0.00627122688414693,0.000308679314478133,0.0348101745060552 +9.624,0.559833482556048,-0.292740760193898,-0.000409390944963325,-4.49238286848224e-05,-5.5057823591948e-05,0.000289673825815161,-0.00152731163827225,0.0303995785974687,0.0021329855381951,0.000298262367195021,0.0305125660515504 +9.626,0.559833389662816,-0.29274080911619,-0.000408807394659663,-4.76074630551046e-05,1.5133171382688e-06,0.000289850997051176,-0.00113591854671888,0.0258663803466567,-0.00183553717541096,0.000293738593240427,0.0259562928767766 +9.628,0.559833292126196,-0.29274075414063,-0.000408231540975121,-4.94675028716975e-05,4.84076977946673e-05,0.000282331677113518,-0.000714637238274757,0.0208526996503486,-0.00550251886156111,0.000290691442852852,0.0215783109374162 +9.63,0.559833191792804,-0.292740615485399,-0.000407678067951209,-5.04660120082046e-05,8.49241157396912e-05,0.000267840921604924,-0.000284841553127584,0.015610352403087,-0.00875710095320754,0.000285477990549808,0.0179011467220293 +9.632,0.559833090262148,-0.292740414444167,-0.000407160177288701,-5.06068690842077e-05,0.000110849107407008,0.000247303273300691,0.000133646822780853,0.0103711698014202,-0.0115117792494964,0.000275694557067551,0.0154951633102806 +9.634,0.559832989365328,-0.292740172088969,-0.000406688854858006,-4.99314247170812e-05,0.000126408794945367,0.000221793804606944,0.000523370680127639,0.00533985340320111,-0.0137037486618693,0.00026012462854532,0.014716680285451 +9.636,0.559832890536449,-0.292739908808987,-0.000406273002070273,-4.85133863636964e-05,0.00013220852101982,0.000192488278653196,0.000869797928121562,0.000688902077758708,-0.0152951725616297,0.000238504463491969,0.0153353656036801 +9.638,0.559832795311783,-0.292739643254885,-0.000405918901743393,-4.64522330045953e-05,0.000129164403256402,0.000160613114360432,0.00116166236352492,-0.00344447969799564,-0.0162725437265581,0.000211276656363766,0.0166736192582619 +9.64,0.559832704727517,-0.292739392151374,-0.000405630549612832,-4.38667369095973e-05,0.000118430602227839,0.00012739810374697,0.00139108533026042,-0.00695963503494366,-0.0166451634134002,0.000179388893160832,0.0180951126902951 +9.642,0.559832619844835,-0.292739169532476,-0.000405409309328406,-4.08878916835543e-05,0.00010132586311663,9.4032460706838e-05,0.00155353931108779,-0.00979207646912824,-0.0164429515134048,0.000144155658540479,0.0192007526008886 +9.644,0.55983254117595,-0.292738986847921,-0.000405254419770004,-3.76525796652468e-05,7.92622963513303e-05,6.16262976933584e-05,0.00164765173726841,-0.0119117094035643,-0.0157136606721321,0.000107228862465869,0.019786932781035 +9.646,0.559832469234516,-0.292738852483291,-0.000405162804137632,-3.42972847344785e-05,5.36790255023571e-05,3.11778180182888e-05,0.00167491863433851,-0.0133199116389368,-0.0145197143561862,7.09210677825857e-05,0.019774921074077 +9.648,0.559832403986811,-0.292738772131819,-0.000405129708497931,-3.09529051278935e-05,2.5982649795589e-05,3.54744026862014e-06,0.0016393214494238,-0.0140457335658123,-0.012934768215713,4.05680263103349e-05,0.0191645045594857 +9.65,0.559832345422896,-0.292738748552692,-0.000405148614376558,-2.7739998936784e-05,-2.50390876088607e-06,-2.05612548445575e-05,0.00154691261189353,-0.014141473346493,-0.0110401888976281,3.46199696833845e-05,0.0180072201611942 +9.652,0.559832293026815,-0.292738782147454,-0.000405211953517309,-2.47652546803173e-05,-3.05832435904019e-05,-4.06133153219068e-05,0.00140535750397797,-0.0136778806267312,-0.00892155594973696,5.65516932489865e-05,0.0163906561405388 +9.654,0.559832246361877,-0.292738870885666,-0.000405311067637845,-2.21185689208727e-05,-5.72154312678049e-05,-5.62474786435014e-05,0.00122348717962489,-0.0127392118833031,-0.00666533145690798,8.3226291038466e-05,0.0144295212573683 +9.656,0.55983220455254,-0.292739011009179,-0.000405436943431883,-1.98713059618183e-05,-8.15400911236087e-05,-6.72746411495358e-05,0.00101084891152037,-0.0114183513720581,-0.00435579264931276,0.000107561761806292,0.0122626870294202 +9.658,0.559832166876653,-0.292739197046031,-0.000405580166202443,-1.80751732747917e-05,-0.000102888836756032,-7.36706492407505e-05,0.000777293097944199,-0.00981216896968603,-0.00207231238938993,0.000127828749416854,0.0100586939057216 +9.66,0.559832132251847,-0.292739422564527,-0.000405731626028846,-1.67621335700418e-05,-0.000120788767002348,-7.55638907070947e-05,0.000532586981460851,-0.00801727175966758,0.000112939285527834,0.000143460088298318,0.00803573584952868 +9.662,0.559832099828119,-0.292739680201099,-0.000405882421765272,-1.59448253489476e-05,-0.000134957923794713,-7.3218892098639e-05,0.000286078487286435,-0.00612625923603148,0.00213684699534768,0.0001543660740271,0.0064945367971454 +9.664,0.559832068472545,-0.292739962396222,-0.000406024501597241,-1.56178196208962e-05,-0.000145293803946472,-6.70165027257049e-05,4.64051297406172e-05,-0.00422457314962005,0.00394671022079687,0.000160765100045162,0.00578149576662471 +9.666,0.55983203735684,-0.292740261376314,-0.000406150487776175,-1.57592048299851e-05,-0.000151856216393192,-5.74320512154533e-05,-0.000178742028122918,-0.00238798949364574,0.00550113641445292,0.000163116840028685,0.00599974535999653 +9.668,0.559832005435726,-0.292740569821087,-0.000406254229802103,-1.63327877333881e-05,-0.000154845761921058,-4.50119570678858e-05,-0.00038279950043313,-0.000680779797135678,0.00677045160559842,0.0001620803696292,0.00681535116728919 +9.67,0.559831972025689,-0.292740880759362,-0.000406330535604446,-1.72904028317175e-05,-0.000154579335581734,-3.03502447930626e-05,-0.000560459290088868,0.000845467092170004,0.00773668935253634,0.000158476706105258,0.00780290275201726 +9.672,0.559831936274115,-0.29274118813843,-0.000406375630781275,-1.85746248937433e-05,-0.000151463893552378,-1.40651996577439e-05,-0.000707739464256441,0.00215239025561134,0.00839316860196994,0.000153245416183981,0.00869361594175926 +9.674,0.55983189772719,-0.292741486614936,-0.000406386796403077,-2.01213606887429e-05,-0.00014596977455929,3.22242961481347e-06,-0.000822008225374012,0.00321482095113012,0.00874374258674026,0.00014738530555479,0.00935220859976845 +9.676,0.559831855788672,-0.292741772017528,-0.000406362741062816,-2.1862657795239e-05,-0.000138604609747859,2.09097706892133e-05,-0.000901955468646041,0.00402023313250587,0.00880174912814916,0.000141867657200306,0.00971836333041695 +9.678,0.559831810276559,-0.292742041033375,-0.00040630315732032,-2.37291825633283e-05,-0.000129888842029261,3.84294261274219e-05,-0.000947528028263783,0.00456775957681459,0.00858874998899561,0.000137517294117173,0.00977388680563669 +9.68,0.559831760871942,-0.292742291572896,-0.000406209023358306,-2.56527699082937e-05,-0.000120333571440603,5.5264770645192e-05,-0.000959822207821575,0.00486686287105799,0.00813310254820039,0.000134879308621019,0.0095265402920396 +9.682,0.559831707665479,-0.292742522367661,-0.000406082098237739,-2.75684713946142e-05,-0.000110421390545031,7.09618363202199e-05,-0.000940953176486803,0.00493575045071194,0.00746844398043761,0.000134121162830001,0.00900137105562138 +9.684,0.559831650598056,-0.292742733258458,-0.000405925176013025,-2.94165826142422e-05,-0.000100590569637748,8.51385465669524e-05,-0.000893895374390811,0.00479962811160685,0.00663213587087892,0.000135027294071533,0.00823533272915448 +9.686,0.559831589999149,-0.29274292472994,-0.000405741544051472,-3.1144052892177e-05,-9.12228780986058e-05,9.74903798037326e-05,-0.000822313259152456,0.00448887624987614,0.00566373298781356,0.000137098284720925,0.00727351912351425 +9.688,0.559831526021844,-0.292743098149971,-0.00040553521449381,-3.27058356508517e-05,-8.26350646382459e-05,0.000107793478518204,-0.000730378674207605,0.0040372324823521,0.00460352159604401,0.000139705617655276,0.00616645037355688 +9.69,0.559831459175806,-0.292743255270198,-0.000405310370137399,-3.40655675890071e-05,-7.50739481691992e-05,0.000115904466187907,-0.000622590944073356,0.00348004940837483,0.00349116956783443,0.000142233631294348,0.00496856400982672 +9.692,0.559831389759574,-0.292743398445763,-0.000405071596629059,-3.51961994271448e-05,-6.87148670047481e-05,0.00012175815678954,-0.00050359821868173,0.00285269090294296,0.00236452548599916,0.000144171960333422,0.00373930973944825 +9.694,0.559831318391008,-0.292743530129666,-0.000404823337510241,-3.60799604637347e-05,-6.36631845574235e-05,0.000125362568131906,-0.000378032355423214,0.00218911192644673,0.00125858621963229,0.000145156943008883,0.00255326433424087 +9.696,0.559831245439732,-0.292743653098501,-0.000404570146356531,-3.67083288488375e-05,-5.99584192989621e-05,0.000126792501668069,-0.000250356582683179,0.00152066026438253,0.000204658594744803,0.000144978798211848,0.00155466112016982 +9.698,0.559831171557693,-0.292743769963343,-0.000404316167503568,-3.70813867944673e-05,-5.7580543499894e-05,0.000126181202510886,-0.000124733778861213,0.000875120604454185,-0.000770285789146276,0.000143569648963272,0.00117249084639922 +9.7,0.559831097114185,-0.292743883420675,-0.000404065421546487,-3.72072639642825e-05,-5.64579368811442e-05,0.000123711358511483,-4.91590102370362e-06,0.000276012865334847,-0.00164404999768881,0.000140983613775998,0.00166706558443686 +9.702,0.559831022728637,-0.292743995795091,-0.000403821322069522,-3.71010503985621e-05,-5.64764920385548e-05,0.000119605002520131,0.000105843014908148,-0.00025785689902752,-0.00239946270231465,0.000137373355209437,0.00241559810067404 +9.704,0.559830948709984,-0.292744109326644,-0.000403587001536407,-3.678389190465e-05,-5.74893644772542e-05,0.000114113507702225,0.000204848929485957,-0.000712603757252618,-0.00302444000573121,0.000132966064737426,0.00311400137235511 +9.706,0.559830875593069,-0.292744225752549,-0.000403364868038714,-3.62816546806184e-05,-5.93269070675649e-05,0.000107507242497208,-0.00785193059876203,0.281342938904193,0.000411400287088091,0.000128038461244739,0.28145278704531 +9.708,0.559830803583365,-0.292744346634272,-0.000403156972566418,-6.81916142996947e-05,0.00106788239113939,0.000115759108850577,0.0328463311965936,0.195871542662358,-0.0636521136380474,0.00107630064054997,0.20855726855854 +9.71,0.559830602826612,-0.292739954222984,-0.000402901831603311,9.51036701057999e-05,0.000724159263582127,-0.000147101212055067,0.0720932935918766,-0.502614656262826,-0.110730239402159,0.000745043699179767,0.519692333587078 +9.712,0.559831183998045,-0.292741449997218,-0.000403745377414638,0.00022018156006778,-0.000942576233911689,-0.000327161848758009,-0.00716630027542749,-0.457301465507632,0.00956888483555383,0.0010217459329069,0.457457702713662 +9.714,0.559831483552853,-0.29274372452792,-0.000404210478998343,6.64384690040931e-05,-0.0011050465984482,-0.000108825672712856,-0.0725877865106865,-0.0106724522413979,0.10682451333317,0.00111237812004145,0.129593073257156 +9.716,0.559831449751921,-0.292745870183611,-0.00040418068010549,-7.01695859750628e-05,-0.000985266042877295,0.000100136204574813,-0.0533919821826867,0.0787490351815746,0.0845482066372315,0.000992824357834579,0.127281238008582 +9.718,0.559831202874509,-0.292747665592091,-0.000403809934180044,-0.00014712945972663,-0.000790050457721934,0.000229367153836033,-0.0257361591690709,0.104008326486128,0.0465590510477265,0.000835724891890226,0.116823914939046 +9.72,0.559830861234082,-0.292749030385442,-0.000403263211490146,-0.000173114222651335,-0.00056923273693283,0.000286372408765699,-0.00443266597732847,0.110594642874242,0.0157947744510271,0.00066030568631694,0.111804733621196 +9.722,0.559830510417618,-0.292749942523039,-0.000402664444544981,-0.000164860123635942,-0.000347671886225014,0.000292546251640134,0.00884713121514561,0.106558993743411,-0.00453355194187124,0.000483361055718404,0.107021698601527 +9.724,0.559830201793588,-0.292750421072987,-0.000402093026483585,-0.000137725697790757,-0.000142996761959232,0.000268238200998216,0.0153466112595667,0.0951152555258914,-0.0158590999083072,0.000333718705255692,0.0976419037135673 +9.726,0.559829959514827,-0.292750514510087,-0.000401591491740988,-0.000103473678597655,3.27891358786783e-05,0.000229109852006884,0.00894448332065867,0.361266006426089,-0.016443182595015,0.000253521702977906,0.361750617739323 +9.728,0.559829787898873,-0.292750289916444,-0.000401176587075558,-0.000101947764508126,0.00130206726374496,0.000202465470618163,0.0475620595616449,0.257928876739506,-0.0804829347871888,0.00132165228891609,0.27434824176183 +9.73,0.559829551723769,-0.292745306241032,-0.000400781629858515,8.6774559648904e-05,0.00106450464283659,-9.28218871418354e-05,0.0829859486892364,-0.458439930559152,-0.126270531357359,0.00107206150082702,0.482698751500563 +9.732,0.559830134997112,-0.292746031897872,-0.000401547874624125,0.000229996030248783,-0.000531692458491443,-0.000302616654811216,0.000893136592451542,-0.430687771078874,-0.00422123790174824,0.000653583876878863,0.430709383110334 +9.734,0.55983047170789,-0.292747433010866,-0.00040199209647776,9.03471060187098e-05,-0.000658246441478718,-0.000109706838748826,-0.0671972046617358,0.000105184822657387,0.0954043591193868,0.000673414113123279,0.116693903513333 +9.736,0.559830496385536,-0.292748664883638,-0.000401986701979121,-3.87927883982496e-05,-0.000531271719200813,7.90007816664582e-05,-0.0589260796893284,0.358702572072356,0.0797688458906555,0.000538512435843603,0.372159759852679 +9.738,0.559830316536736,-0.292749558097743,-0.000401676093351094,-0.000145357212738578,0.000776563846810549,0.00020936854481376,0.00632297518510528,0.288620657023364,-0.019765810437178,0.000817322038749572,0.289365773611926 +9.74,0.559829914956685,-0.292745558628251,-0.000401149227799866,-1.35008876578312e-05,0.000623210908892516,-6.24600822451762e-08,0.0643682101786192,-0.410395238490449,-0.0969688477457089,0.000623357132654666,0.426579975725961 +9.742,0.559830262533186,-0.292747065254107,-0.000401676343191423,0.000112115627975985,-0.000865017107151795,-0.000178506846169205,-0.00113940872709281,-0.375285549022316,0.00279432301429688,0.000890330951854975,0.375297681578686 +9.744,0.559830363419197,-0.29274901869668,-0.000401863255184542,-1.8058522566202e-05,-0.000877931287196584,1.11148319749411e-05,-0.0590941023406863,0.0552353720054255,0.0893250835651132,0.000878187334664852,0.120507384860612 +9.746,0.559830190299095,-0.292750576979256,-0.000401631883863524,-0.000124260781386734,-0.000644075619130118,0.000178793488091209,-0.0384801229699834,0.126160630657707,0.0634457864466324,0.000679883266695473,0.146364587279735 +9.748,0.559829866376071,-0.292751594999156,-0.000401148081232178,-0.000171979014446119,-0.000373288764565812,0.000264897977761443,-0.0124119853145256,0.132364571348756,0.0260328732910618,0.000488970573534881,0.135470098618021 +9.75,0.559829502383038,-0.292752070134314,-0.000400572291952478,-0.000173908722644831,-0.000114617333735151,0.000282924981255445,0.00591133161170633,0.121007212174035,-0.00199143622078801,0.000351323102034161,0.121167879645461 +9.752,0.559829170741181,-0.292752053468491,-0.000400016381307156,-0.000148333687999286,0.000110740084130491,0.000256932232878288,0.0158299773289469,0.101308282915445,-0.0187654156987437,0.0003166708409698,0.104240573654683 +9.754,0.559828909048286,-0.292751627173978,-0.000399544563020965,-0.00011058881332905,0.000290615797926584,0.000207863318460478,0.0192154969991376,0.0771396661790029,-0.0265231212956286,0.000374024847836925,0.0838047694728319 +9.756,0.559828728385928,-0.292750891005299,-0.000399184928033314,-7.14717000027437e-05,0.000419298748846468,0.000150839747695785,0.018271896044804,0.0514630610903728,-0.0281272017968396,0.000451300647208071,0.0614283999692626 +9.758,0.559828623161486,-0.292749949978982,-0.000398941204030182,-3.75012291498097e-05,0.000496468042288144,9.53545112730819e-05,0.0149229948259675,0.0266500310882292,-0.026103487466174,0.000506931299113891,0.0401785015832614 +9.76,0.559828578381011,-0.29274890513313,-0.000398803509988221,-1.17797206988803e-05,0.000525898873199373,4.64257978311007e-05,0.00294517302906814,0.286396865882618,-0.0176931823497911,0.000528075507249075,0.286957989143394 +9.762,0.559828576042603,-0.29274784638349,-0.000398755500838857,-2.57205370335384e-05,0.00164205550581849,2.45817818739252e-05,0.0380897238055983,0.183014636716312,-0.0763523170313642,0.0016424408951966,0.201927859960057 +9.764,0.559828475498863,-0.292742336911107,-0.000398705182860726,0.000140579174523496,0.00125795742006454,-0.000258983470294322,0.0720343280163771,-0.528654334388459,-0.120540011193878,0.00129201076345781,0.546986511697589 +9.766,0.559829138359301,-0.292742814553809,-0.000399791434720034,0.000262416775031938,-0.000472561831735116,-0.000457578262901534,-0.00760540524308125,-0.494670939047454,0.00133508607901676,0.000708205560067836,0.494731202353197 +9.768,0.559829525165963,-0.292744227158434,-0.000400535495912333,0.000110157553551161,-0.000720726336125934,-0.000253643125978254,-0.0726381144191969,-0.0563226229371255,0.101438487741495,0.000771955940158446,0.136887911504907 +9.77,0.559829578989515,-0.292745697459154,-0.000400806007223947,-2.81356826448174e-05,-0.000697852323483593,-5.18243119356e-05,-0.0549608267577661,0.029283324681846,0.082620309056941,0.000700339375829275,0.103461688807906 +9.772,0.559829412623232,-0.292747018567728,-0.000400742793160075,-0.000109685753479879,-0.000603593037398563,7.68381102494741e-05,-0.0284065703945394,0.0538911035137414,0.0476224359295914,0.000618271473140385,0.0773245154099058 +9.774,0.559829140246501,-0.292748111831303,-0.000400498654782949,-0.000141761964223013,-0.000482287909428556,0.000138665431782829,-0.00755918736634883,0.0622514963292431,0.0193003197946271,0.000521465419805429,0.0656116792426791 +9.776,0.559828845575375,-0.292748947719365,-0.000400188131432944,-0.000139922502945271,-0.000354587052081618,0.000154039389427974,0.00574380123325018,0.061831309117896,0.000990637697741383,0.000411142819260831,0.0621054216867423 +9.778,0.559828580556489,-0.292749530179512,-0.000399882497225237,-0.000118786759290015,-0.000234962672956999,0.000142627982573794,0.0125501501344077,0.0553634543071346,-0.00860041262599527,0.000299433620822366,0.0574158988308268 +9.78,0.559828370428338,-0.292749887570057,-0.000399617619502649,-8.97219024076455e-05,-0.000133133234853104,0.000119637738923997,0.014572477988205,0.0451811298443787,-0.0118580748675316,0.000200219046468974,0.0489316415859443 +9.782,0.55982822166888,-0.292750062712451,-0.000399403946269541,-6.04968473372012e-05,-5.42381535795041e-05,9.51956831036731e-05,0.0135064742931537,0.0334029672845107,-0.0111686607965458,0.00012515535914626,0.0377216390846158 +9.784,0.559828128440949,-0.292750104522672,-0.000399236836770234,-3.56960052350125e-05,4.786342849839e-07,7.49630957377983e-05,0.010774618690308,0.0217148034206681,-0.00849548314334721,8.30295104352128e-05,0.0256865398479182 +9.786,0.559828078884859,-0.292750060797914,-0.00039910409388659,-1.73983725759738e-05,3.26210601031587e-05,6.1213750530288e-05,0.00744562930754763,0.0112605170222964,-0.00524875403037244,7.151195833237e-05,0.0144839931740591 +9.788,0.559828058847459,-0.292749974038431,-0.000398991981768113,-5.9134880048253e-06,4.55207023741647e-05,5.39680796163109e-05,0.00423392254589222,0.00265990517458954,-0.0023053330338441,7.08495398890703e-05,0.00550597457852427 +9.79,0.559828055230907,-0.292749878715105,-0.000398888221568125,-4.62682392399267e-07,4.32606808015204e-05,5.19924183949085e-05,0.00154485155917618,-0.00389129911973065,-9.8175590914764e-05,6.76380968756402e-05,0.00418788892232794 +9.792,0.559828056996729,-0.292749800995708,-0.000398784012094533,2.65918231878744e-07,2.99555058952438e-05,5.35753772526518e-05,-0.000453124732180499,-0.0084889465352974,0.00126379655178449,6.13817895935757e-05,0.00859445850687254 +9.794,0.55982805629458,-0.292749758893081,-0.000398673920059114,-2.27518132112106e-06,9.3048946603346e-06,5.70476046020459e-05,-0.00175152889414537,-0.0113939518757458,0.00187270149300991,5.78462332871836e-05,0.0116789127788403 +9.796,0.559828047896004,-0.292749763776129,-0.000398555821676125,-6.74019734470196e-06,-1.56203016077345e-05,6.10661832246907e-05,-0.00243695418011756,-0.012931549438903,0.00191844395837377,6.33916620400003e-05,0.0132982759705236 +9.798,0.55982802933379,-0.292749821374287,-0.000398429655326216,-1.20229980415902e-05,-4.24213030952716e-05,6.47213804355401e-05,-0.00264154101370314,-0.0134218832645275,0.00161498999416662,7.83133227726349e-05,0.0137743559549962 +9.8,0.559827999804012,-0.292749933461342,-0.000398296936154383,-1.7306361399518e-05,-6.93078346658625e-05,6.75261432013593e-05,-0.00250751595876253,-0.0131405856751497,0.00115415833314891,9.82998784669226e-05,0.0134273865523927 +9.802,0.559827960108345,-0.292750098605626,-0.00039815955075341,-2.20530618766392e-05,-9.49836457958646e-05,6.93380137681353e-05,-0.00216472484382039,-0.0123041301626387,0.000681604692818316,0.000119649449058988,0.0125116840459581 +9.804,0.559827911591764,-0.292750313395925,-0.00039801958409931,-2.59652607747986e-05,-0.000118524355316412,7.02525619726323e-05,-0.0017195368184893,-0.0110722397812765,0.000289995753105447,0.000140205706139204,0.0112087197387143 +9.806,0.559827856247302,-0.292750572703047,-0.00039787854050552,-2.89312091505987e-05,-0.000139272604920986,7.04979967805575e-05,-0.00125157081226939,-0.00955940400797356,2.37945748252428e-05,0.000158757175883373,0.00964101657853448 +9.808,0.559827795866928,-0.292750870486345,-0.000397737592112188,-3.09715440238757e-05,-0.000156761971348302,7.03477402719332e-05,-0.000814898072632088,-0.00784942801729422,-0.000110177086204447,0.000174591972214063,0.00789238354730606 +9.81,0.559827732361125,-0.292751199750933,-0.000397597149544432,-3.21908014411267e-05,-0.000170670316990159,7.00572884357397e-05,-0.000441654685046187,-0.0060089675943411,-0.000130567345997566,0.000187276876474144,0.00602659093041046 +9.812,0.559827667103722,-0.292751553167613,-0.000397457362958445,-3.27381627640602e-05,-0.000180797841725664,6.9825470887943e-05,-0.000146771830796535,-0.00409775981200745,-7.01054700480312e-05,0.000196558498311692,0.00410098673786558 +9.814,0.559827601408474,-0.2927519229423,-0.00039731784766088,-3.27778887643128e-05,-0.000187061356238187,6.97768665555476e-05,6.72553263081198e-05,-0.0021746159838127,3.37890817755881e-05,0.000202324373459616,0.00217591811840835 +9.816,0.559827535992167,-0.292752301413037,-0.000397178255492223,-3.24691414588276e-05,-0.000189496305660918,6.99606272150454e-05,0.000206225876649717,-0.000299471999302989,0.000145735614556226,0.000204591261706193,0.000391728809148057 +9.818,0.559827471531909,-0.292752680927522,-0.00039703800515202,-3.1952985257714e-05,-0.000188259244235399,7.03598090137725e-05,0.000280894932317634,0.00146758881091463,0.000236538320172958,0.000203501938642898,0.00151283484155866 +9.82,0.559827408180226,-0.292753054450014,-0.000396896816256168,-3.13455617295572e-05,-0.00018362595041726,7.09067804957371e-05,-0.00689046349144752,0.284586138678897,0.00573150561039442,0.000199320860491455,0.284727236090707 +9.822,0.559827346149662,-0.292753415431324,-0.000396754378030037,-5.95148392235133e-05,0.000950085310480569,9.32858314553578e-05,0.0310703813649649,0.201802148429322,-0.0562503189869116,0.000956507375627118,0.211786623975603 +9.824,0.559827170120869,-0.292749254108773,-0.000396523672930346,9.29359637302887e-05,0.000623582643299938,-0.000154094495451884,0.0667376068922012,-0.492624236250847,-0.105985864627181,0.00064902813491249,0.508296714347239 +9.826,0.559827717893517,-0.292750921100751,-0.000397370756011844,0.000207435588345262,-0.0010204116345226,-0.000330657627053319,-0.00762315076341559,-0.448040767521517,0.0099187937724365,0.00109252180459237,0.448215377088662 +9.828,0.559827999863222,-0.292753335755311,-0.000397846303438559,6.24433606766297e-05,-0.00116858042678593,-0.000114419320362143,-0.0684740567372188,-0.00383165218986426,0.106617301859533,0.0011758278649666,0.126769976967587 +9.83,0.559827967666959,-0.292755595422458,-0.000397828433293293,-6.64606386035827e-05,-0.00103573824328206,9.5811580384765e-05,-0.0504258225314412,0.0853900339429867,0.0860465461174716,0.00104228143225159,0.131294438471334 +9.832,0.559827734020668,-0.292757478708284,-0.00039746305711702,-0.000139259929449202,-0.000827020291013871,0.000229766864107859,-0.0243869019631154,0.11094087907703,0.0493983089841367,0.000869568112076808,0.123866026691079 +9.834,0.559827410627242,-0.292758903503622,-0.000396909365836862,-0.000164008246456034,-0.000591974726973986,0.00029340481632129,-0.0113922616062731,0.399212886054159,0.0248195663370179,0.000680748976144686,0.400145877011565 +9.836,0.559827077987682,-0.292759846607192,-0.000396289437851735,-0.00018482897587429,0.000769831253202589,0.000329045129455919,0.0387585747385535,0.311187109538965,-0.0573778338088537,0.000857363753577716,0.318797522059969 +9.838,0.559826671311338,-0.292755824178609,-0.000395593185319038,-8.97394750176793e-06,0.000652773711182291,6.38934810857987e-05,0.0801428595154057,-0.395745097310498,-0.119268620673251,0.000655954591926703,0.421025015710351 +9.84,0.559827042091892,-0.292757235512347,-0.000396033863927392,0.000135742462187298,-0.000813149136039227,-0.000148029353237033,0.00789017545743849,-0.368960117534759,-0.00939629402150545,0.000837585949560871,0.369164074012289 +9.842,0.559827214281187,-0.292759076775153,-0.000396185302731986,2.25867543279826e-05,-0.000823066758956583,2.6308304999781e-05,-0.053822476489563,0.0550589090119024,0.0858741612914779,0.000823796806307434,0.11533739209192 +9.844,0.559827132438909,-0.292760527779383,-0.000395928630707393,-7.95474437709308e-05,-0.000592913499991642,0.000195467291928841,-0.0458110316625604,0.405564602522918,0.0722105584120992,0.000629350201792946,0.414482402747991 +9.846,0.559826896091412,-0.292761448429153,-0.00039540343356427,-0.000160657372322239,0.000799191651134911,0.000315150538648146,0.00705900073116725,0.609820367442617,-0.0181686578169416,0.000873978231156502,0.610131797373355 +9.848,0.55982648980942,-0.292757331012778,-0.0003946680285528,-5.13114408462524e-05,0.00184636796977964,0.00012279266066105,0.0961161520027265,-0.178582610921247,-0.157949325875484,0.0018511579028549,0.2570565174116 +9.85,0.559826690845648,-0.292754062957274,-0.000394912262921626,0.000223807235688625,8.48612074500026e-05,-0.000316646764853719,0.0675942580033356,-0.847700387166682,-0.111620313423567,0.000396933592643382,0.857685271230851 +9.852,0.559827385038363,-0.292756991567948,-0.000395934615612215,0.00021906559116706,-0.00154443357888671,-0.00032368859303317,-0.0612482359343832,-0.383798527670618,0.0898442533035233,0.00159312244290449,0.398904306944504 +9.854,0.559827567108013,-0.29276024069159,-0.000396207017293759,-2.11857080489898e-05,-0.00145033290323298,4.27302483604944e-05,-0.109799301331592,0.404509704524021,0.168245201729625,0.00145111689348263,0.451653003457365 +9.856,0.559827300295531,-0.292762792899561,-0.000395763694618773,-0.00022013161415926,7.36052392091927e-05,0.000349292213885255,-0.0310372328254995,0.410366125650021,0.0505162254180292,0.000419381341349691,0.414627008204914 +9.858,0.559826686581556,-0.292759946270633,-0.000394809848438218,-0.000145334639350974,0.000191131599366922,0.000244795150032589,0.0461352851338738,-0.274451464894803,-0.0637118462952642,0.000342896647914955,0.285501787167153 +9.86,0.559826718956973,-0.292762028373164,-0.000394784514018642,-3.5590473623785e-05,-0.0010242006203699,9.44448287042259e-05,0.00222350837743478,-0.247267731134198,0.00427994158513874,0.00102916151222625,0.247314764520298 +9.862,0.559826544219662,-0.292764043073114,-0.000394432069123402,-0.000136440605841236,-0.000797939325169761,0.000261914916373142,-0.0417171894320685,0.164945595217088,0.0727404185270873,0.000850836429046998,0.185036595740212 +9.864,0.55982617319455,-0.292765220130465,-0.000393736854353149,-0.000202459231352115,-0.000364418239501325,0.000385406502812672,-0.0187105834229177,0.214655318180005,0.0393705141431308,0.000567739875340132,0.219036592693731 +9.866,0.559825734382736,-0.292765500746072,-0.000392890443112151,-0.000211282939532899,6.0681947550163e-05,0.000419396972945648,0.00533403723276168,0.19763802239572,-5.50289285053749e-05,0.00047351515309662,0.197709996909298 +9.868,0.559825328062792,-0.292764977402674,-0.000392059266461367,-0.00018112308242107,0.000426133850081469,0.000385186387098651,0.0129475378196602,0.44401463986783,-0.021087477820344,0.000602299080172863,0.444703632628938 +9.87,0.559825009890407,-0.292763796210672,-0.000391349697563756,-0.000159492788254241,0.00183674050702207,0.000335047061664243,0.0553054399499074,0.318594199595047,-0.0967852462089574,0.00187384902624802,0.337532723728218 +9.872,0.559824690091639,-0.292757630440646,-0.00039071907821471,4.0098677378535e-05,0.00170051064846152,-1.95459773713624e-06,0.0888195950954547,-0.419429417027837,-0.152593445948457,0.00170098447668132,0.455076604636688 +9.874,0.559825170285116,-0.292756994168078,-0.000391357515954704,0.000195785592127539,0.000159022838910911,-0.000275326722129518,0.0123327977136239,-0.418386948537833,-0.037367961301668,0.000373396659463635,0.420233388890135 +9.876,0.559825473234007,-0.292756994349291,-0.000391820385103228,8.94298682330251e-05,2.69628543103669e-05,-0.000151426442943792,-0.0522167537681074,-0.0137375050085632,0.0637123387954044,0.000177917577735725,0.083513894249519 +9.878,0.559825528004589,-0.292756886316661,-0.00039196322172648,-1.30814229448673e-05,0.000104072818876665,-2.04773669479284e-05,-0.04029337405397,0.0432208671977033,0.0501250439653252,0.000106871875684474,0.0774862528872085 +9.88,0.559825420908315,-0.292756578058015,-0.00039190229457102,-7.17436279829088e-05,0.000199846323101238,4.9073732917576e-05,-0.0197795637230161,0.0438816807960197,0.0207900533351369,0.000217931026418223,0.0524314730694691 +9.882,0.559825241030077,-0.292756086931369,-0.000391766926794809,-9.21996778369229e-05,0.000279599542060724,6.26828463926101e-05,-0.00387775368065007,0.0331457353924517,-0.00253234390488815,0.000301008012759924,0.0334677384053187 +9.884,0.559825052109604,-0.292755459659847,-0.000391651563185449,-8.72546427055074e-05,0.00033242926467103,3.89443572980245e-05,0.00587814212582451,0.0183717093656069,-0.016708776183826,0.000345889074196835,0.0255197073146796 +9.886,0.559824892011506,-0.29275475721431,-0.000391611149365617,-6.8687109333617e-05,0.000353086379523176,-4.15225834271606e-06,0.0104668639519449,0.00193548389818957,-0.0228740155766232,0.000359729275487466,0.0252293861896851 +9.888,0.559824777361167,-0.292754047314329,-0.00039166817221882,-4.53871868977324e-05,0.000340171200263788,-5.25517050084581e-05,0.0113717395916504,-0.0143185677238565,-0.0231290744898536,0.000347186007671236,0.0294837570496057 +9.89,0.559824710462759,-0.292753396529509,-0.000391821356185651,-2.32001509670202e-05,0.000295812108627757,-9.66685563021203e-05,0.0100026520746832,-0.0287963814911482,-0.0195823904713304,0.000312070281175937,0.0362319562276529 +9.892,0.559824684560563,-0.292752864065894,-0.000392054846444029,-5.37657859900402e-06,0.000224985674299208,-0.000130881266893771,0.00750103069935371,-0.0403170187304974,-0.0139948756567657,0.000260340867443087,0.0433310974418633 +9.894,0.559824688956444,-0.292752496586812,-0.000392344881253226,6.80397183039133e-06,0.000134544033705785,-0.000152648058929177,-0.00189945594669629,0.232703658970632,-0.00128798214368119,0.000203592290947712,0.232714975300723 +9.896,0.55982471177645,-0.292752325889759,-0.000392665438679746,-1.29744023857917e-05,0.00115580031018205,-0.000136033195468497,0.0317544098446609,0.145142121224564,-0.0559216559335664,0.00116385038660627,0.158750777952428 +9.898,0.559824637058835,-0.292747873385571,-0.0003928890140351,0.000133821611209021,0.000715112518603979,-0.000376334682663418,0.0631021223884571,-0.549000890640727,-0.101748856219799,0.00081909824274386,0.561904516369353 +9.9,0.559825247062895,-0.292749465439685,-0.000394170777410399,0.000239434087168009,-0.00104020325238062,-0.000543028620347648,-0.00950252992959265,-0.503581282912972,0.0160548802360208,0.00119759407600316,0.503926746417305 +9.902,0.559825594795184,-0.29275203419858,-0.000395061128516491,9.58114914906377e-05,-0.00129921261304858,-0.000312115161719313,-0.0747522603816618,0.224271747738886,0.12275543446145,0.00133960782693341,0.266373072880578 +9.904,0.559825630308861,-0.292754662290137,-0.000395419238057276,-5.95749543586054e-05,-0.000143116261425174,-5.20068825019039e-05,-0.0217223908374801,0.236689359330768,0.0457568875376308,0.00016351194237338,0.242048358476642 +9.906,0.559825356495366,-0.292752606663626,-0.000395269156046499,8.92192814072699e-06,-0.000352455175725613,-0.00012908761156881,0.0364242342398926,-0.422685053375153,-0.0391211625924096,0.000375456872567358,0.426051457630766 +9.908,0.559825665996573,-0.29275607211084,-0.000395935588503551,8.61219826009491e-05,-0.0018338564749256,-0.000208491532871525,-0.0149149960298999,-0.363623441520263,0.045679380931457,0.00184767835019865,0.366784773636929 +9.91,0.559825700983297,-0.292759942089526,-0.000396103122177985,-5.07380559788659e-05,-0.0018069489418065,5.36299121569982e-05,-0.0601275967695857,0.0838580243647614,0.122811295095282,0.00180845652314291,0.160406079518911 +9.912,0.55982546304435,-0.292763299906607,-0.000395721068854923,-0.000154388404477474,-0.00149842437746644,0.000282753647509768,-0.0366299742343838,0.170507804611423,0.0921435755153659,0.00153266467943999,0.197243770382171 +9.914,0.559825083429679,-0.292765935787036,-0.000394972107587946,-0.000197257952916385,-0.00112491772336089,0.000422204214218421,-0.0164067470303855,0.46935649235253,0.0574110405109673,0.00121762349797628,0.473139224577863 +9.916,0.559824674012538,-0.292767799577501,-0.00039403225199805,-0.000220015392599009,0.000379001591943469,0.000512397809553612,0.0374160170971055,0.382364881888667,-0.0350228218830564,0.000674240680255589,0.385784213375557 +9.918,0.559824203368108,-0.292764419780668,-0.000392922516349731,-4.7593884527913e-05,0.000404541804194292,0.000282112926686149,0.0794773236945032,-0.3268100966167,-0.107672160095837,0.000495486581643392,0.353149795826022 +9.92,0.559824483637,-0.292766181410284,-0.000392903800291305,9.7893902178969e-05,-0.000928238794523186,8.1709169170311e-05,0.0118684544414575,-0.308264865227988,-0.00738634046461458,0.000936956169768995,0.308581667262197 +9.922,0.559824594943717,-0.292768132735846,-0.00039259567967305,-1.20066762088213e-07,-0.000828517656717523,0.000252567564827694,-0.0467068834581022,0.104700701671091,0.0828149198245547,0.000866159279065758,0.14142871292045 +9.924,0.559824483156733,-0.292769495480911,-0.000391893530031995,-8.89336316534193e-05,-0.000509435987838869,0.000412968848468493,-0.03328302845134,0.163652377916573,0.0613041345109213,0.000661798675089203,0.177899009802682 +9.926,0.55982423920919,-0.292770170479797,-0.000390943804279176,-0.000133252180567434,-0.000173908145051302,0.000497784102871352,-0.0130181324053928,0.16067504029004,0.02524947772565,0.000543865056436426,0.163167020163231 +9.928,0.55982395014801,-0.292770191113491,-0.000389902393620509,-0.000141006161275008,0.000133264173321505,0.000513966759371127,-0.00445318746463054,0.422486359789244,0.00255142037277503,0.000549366823849999,0.422517531982379 +9.93,0.559823675184545,-0.292769637423104,-0.000388887937241691,-0.000151064930425954,0.00151603729410549,0.000507989784362451,0.0394424842370468,0.313114931777601,-0.0778553024099023,0.00160600227625614,0.32505094705018 +9.932,0.559823345888289,-0.292764126964315,-0.000387870434483059,1.6763775673162e-05,0.00138572390043177,0.000202545549731552,0.0751017945471553,-0.409914289466787,-0.141887065572384,0.00140054862540317,0.44022942158607 +9.934,0.559823742239648,-0.292764094527502,-0.000388077755042765,0.000149342247762768,-0.000123619863762206,-5.9558477927275e-05,0.00534218479869868,-0.399110584765123,-0.0357674334637771,0.000202810724510406,0.400745688818442 +9.936,0.55982394325728,-0.29276462144377,-0.000388108668394768,3.81325148679543e-05,-0.000210718438628544,5.94758158764596e-05,-0.0530883257007903,0.0113885479137457,0.0590830693432539,0.00022224698365192,0.0802426222921249 +9.938,0.559823894769707,-0.292764937401257,-0.000387839851779259,-6.30110550403698e-05,-7.80656721072279e-05,0.000176773799445715,-0.0388077297103303,0.072486246626579,0.041801162204399,0.000203257517423901,0.0922368310216573 +9.94,0.55982369121306,-0.292764933706458,-0.000387401573196985,-0.00011709840397335,7.92265478777397e-05,0.000226680464694037,-0.0170447214814409,0.0750378385087821,0.00990915762029318,0.00026715709830666,0.0775847352460119 +9.942,0.559823426376092,-0.292764620495065,-0.000386933129920483,-0.000131189940966126,0.000222085681927867,0.000216410429926883,-0.000493267468537507,0.064191041513464,-0.0151931877209362,0.000336699160838277,0.0659664011183146 +9.944,0.559823166453296,-0.29276404536373,-0.000386535931477278,-0.000119071473847501,0.000335990713931681,0.000165907713810272,0.00948892285578125,0.0477087619653667,-0.0305441352097848,0.000393183348114195,0.0574378779286335 +9.946,0.559822950090196,-0.29276327653221,-0.000386269499065242,-9.32342495430052e-05,0.000412920729789313,9.42338890877574e-05,0.0140046871738398,0.0283739620236375,-0.0373997365290843,0.00043367750717577,0.0489893179805645 +9.948,0.559822793516298,-0.292762393680811,-0.000386158995920927,-6.30527251521474e-05,0.000449486562026219,1.63087676939512e-05,0.0146428360964202,0.00839551122372251,-0.0379491049678269,0.000454180351286752,0.0415335024469816 +9.95,0.559822697879296,-0.292761478585961,-0.000386204263994466,-3.46629051573049e-05,0.000446502774684215,-5.75625307836011e-05,0.0128998072640399,-0.0103228219235997,-0.0343594527708243,0.000451530386291842,0.0381252891743293 +9.952,0.559822654864677,-0.292760607669713,-0.000386389246044061,-1.14534960959935e-05,0.000408195274331825,-0.000121129043389331,0.00998252215611781,-0.0263441169642889,-0.028426881937798,0.000425942261007368,0.0400218798150589 +9.954,0.559822652065311,-0.292759845804864,-0.000386688780168024,5.26718346716195e-06,0.000341126306827071,-0.00017127005853478,0.000687890806816567,0.241624585398862,-0.0143572349165681,0.000381743805950615,0.24205173756324 +9.956,0.559822675933411,-0.292759243164485,-0.0003870743262782,-8.70193286872752e-06,0.00137469361592717,-0.000178557983055597,0.0325703316886227,0.150157662900869,-0.0671470807913847,0.00138626881037533,0.167680889468546 +9.958,0.55982261725758,-0.2927543470304,-0.000387403012100246,0.000135548510221638,0.00094175695843048,-0.00043985838170029,0.061687982201561,-0.546669768522345,-0.113103738932719,0.00104821513217828,0.561645527646162 +9.96,0.559823218127452,-0.292755476136651,-0.000388833759805002,0.000238049995937599,-0.000811985458162946,-0.000630972938786625,-0.0146259972188971,-0.225526705151192,0.010991575260163,0.00105551647751942,0.22626760540939 +9.962,0.559823569457563,-0.292757594972233,-0.000389926903855392,7.70445213460565e-05,3.96501378258129e-05,-0.000395892080659642,-0.0424170013210881,0.413992381431691,0.0599405099635392,0.000405263533059748,0.420454228923013 +9.964,0.559823526305537,-0.2927553175361,-0.00039041732812764,6.8381990653265e-05,0.000843984067563637,-0.000391210898932495,0.0398114560137741,-0.26818493911029,-0.0660377851820414,0.000932754614242425,0.27905035865821 +9.966,0.559823842985526,-0.292754219035963,-0.000391491747451123,0.000236290345401206,-0.0010330896186157,-0.000660043221387896,0.0268208390497151,-0.886306167336666,-0.0386489958787392,0.0012485048424101,0.88755378684831 +9.968,0.559824471466919,-0.292759449894575,-0.000393057501013191,0.000175665346852113,-0.00270124060178264,-0.000545806882447435,-0.0778057594047648,-0.389288267694468,0.142677250240146,0.00276142431649515,0.421848182759154 +9.97,0.559824545646913,-0.29276502399837,-0.000393674974980912,-7.49326922178189e-05,-0.0025902426893934,-8.93342204273771e-05,-0.104272572465392,0.144534382972465,0.203886119610728,0.00259286573143662,0.270799754430652 +9.972,0.55982417173615,-0.292769810865332,-0.000393414837894901,-0.000241424943009409,-0.00212310306989284,0.000269737595995386,-0.0633335079103012,0.537290430279059,0.149401960472331,0.00215374348964515,0.561260265373077 +9.974,0.559823579947141,-0.29277351641065,-0.000392596024596931,-0.000328266723858996,-0.000441080968277405,0.000508273621461882,0.0154137215282978,0.481211120287903,0.0226384877189836,0.000748768012700615,0.481989861123959 +9.976,0.559822858669254,-0.292771575189205,-0.000391381743409053,-0.000179770056896198,-0.000198258588740585,0.000360291546871351,0.0752303473683181,-0.215664056411976,-0.0796012635016732,0.000448813703125051,0.24188210257125 +9.978,0.559822860866914,-0.292774309445004,-0.000391154858409445,-2.73453343857563e-05,-0.00130373719392521,0.000189868567455225,0.0218152662393041,-0.19875668606083,-6.5566213089138e-05,0.00131777407435575,0.199950319814457 +9.98,0.559822749287917,-0.292776790137981,-0.000390622269139232,-9.25089919389912e-05,-0.000993285332983819,0.000360029282018994,-0.0291683924236109,0.203421631490795,0.0796155698407938,0.00106056341169279,0.220385558138525 +9.982,0.559822490830946,-0.292778282586336,-0.000389714741281369,-0.000144018904080239,-0.00049005066796176,0.000508330846818506,-0.0156726470968009,0.247301025681851,0.0548158022558622,0.000720618728405985,0.253787709212385 +9.984,0.559822173212301,-0.292778750340653,-0.000388588945751958,-0.000155199580326188,-4.08123025652563e-06,0.000579292491042418,0.00159013406608767,0.226741709338835,0.0189910195486129,0.000599736072245085,0.227541183313572 +9.986,0.559821870032625,-0.292778298911257,-0.0003873975713172,-0.000137658367815889,0.000416916169393479,0.000584294925012949,0.0122697232166096,0.189744909198,-0.00888411682328284,0.000730868988210168,0.190348638571699 +9.988,0.559821622578829,-0.292777082675975,-0.000386251766051907,-0.000106120687459755,0.000754898406535392,0.000543756023749291,0.0164683748998922,0.146262816531827,-0.0272510225167338,0.000936378031491686,0.149688466823178 +9.99,0.559821445549875,-0.292775279317631,-0.000385222547222203,-7.17848682163274e-05,0.00100196743552072,0.000475290834946026,0.0161372491619369,0.100582614542799,-0.0379838236783723,0.00111130247319643,0.10872002584625 +9.992,0.559821335439356,-0.292773074806233,-0.000384350602712122,-4.15716908119858e-05,0.00115722886470672,0.000391820729035751,0.0132494074114813,0.055863635585586,-0.0433161191194712,0.00122246895031714,0.0719206420519644 +9.994,0.559821279263112,-0.292770650402172,-0.00038365526430606,-1.87872385704078e-05,0.00122542197786304,0.00030202635846816,0.00935872458696292,0.0145699293775701,-0.0451010351591482,0.0012622329045673,0.0483111989127648 +9.996,0.559821260290402,-0.292768173118322,-0.000383142497278249,-4.13679246413824e-06,0.001215508582217,0.000211416588399178,0.00552303593137748,-0.0215462405521496,-0.044650004211315,0.00123376464544313,0.0498835372031779 +9.998,0.559821262715942,-0.292765788367844,-0.000382809597952463,3.30490515509966e-06,0.00113923701565445,0.00012342634162292,0.00235578295759702,-0.0514179098188973,-0.0427789906580281,0.0011459083567379,0.0669282691036248 +10,0.559821273510023,-0.292763616170259,-0.000382648791911758,5.28633936624879e-06,0.00100983694294143,4.03006257670845e-05,0.000117073579997103,-0.0745714371641448,-0.0399288156887037,0.00101065460823686,0.0845885528263228 +10.002,0.559821283861299,-0.292761749020072,-0.000382648395449395,3.77319947508822e-06,0.000840951266997773,-3.62889211319479e-05,-0.00118511112034948,-0.0909998975720995,-0.0362956830398214,0.00084174233367246,0.0979783774810919 +10.004,0.559821288602821,-0.292760252365191,-0.000382793947596285,5.4589488485141e-07,0.000645837352653071,-0.000104882106392185,-0.00731476638288087,0.178954603316383,-0.0242336541424098,0.000654298433686353,0.180736066816931 +10.006,0.559821286044879,-0.292759165670661,-0.000383067923874963,-2.5485866056432e-05,0.00155676968026323,-0.000133223537701577,0.0264631397420219,0.0922129945110444,-0.0782899344875692,0.00156266755189747,0.123825877601443 +10.008,0.559821186659356,-0.29275402528647,-0.000383326841747092,0.000106398453852974,0.00101468933069737,-0.000418041844342566,0.056809428064529,-0.597833221621616,-0.126301287046168,0.00110257609825115,0.613664311412207 +10.01,0.559821711638694,-0.292755106913338,-0.000384740091252334,0.000201751846201659,-0.000834563206222974,-0.000638428685886192,-0.00904073374497138,-0.551365828431582,-0.0111541016848221,0.00106994894251516,0.551552740554416 +10.012,0.559821993666741,-0.292757363539295,-0.000385880556490636,7.0235518873093e-05,-0.00119077398302871,-0.00046265825108185,-0.0617699078900438,-0.103593072280107,0.0912685044814961,0.0012794250130678,0.151251400176874 +10.014,0.55982199258077,-0.292759870009271,-0.000386590724256661,-4.53277853584894e-05,-0.00124893549534335,-0.000273354667960248,-0.0448849114473271,-0.00358744811621591,0.0806606013110583,0.00127930342536465,0.0923777985420872 +10.016,0.5598218123556,-0.292762359281276,-0.000386973975162477,-0.000109304126916196,-0.00120512377549357,-0.000140015845837652,-0.0265282640993177,0.316184492463108,0.0613925600573482,0.00121814413905187,0.323180179622252 +10.018,0.559821555364262,-0.292764690504373,-0.000387150787640012,-0.000151440841755796,1.58024745094982e-05,-2.77844277307734e-05,0.0251535587081287,0.256870912287216,-0.0195922514349541,0.000154777327721646,0.258842081994487 +10.02,0.559821206592233,-0.292762296071378,-0.0003870851128734,-8.68989208369182e-06,-0.000177640126344822,-0.00021838485157746,0.0603526956327627,-0.140923939434515,-0.079509618457707,0.00028164422967769,0.172695639792017 +10.022,0.559821520604694,-0.292765401064878,-0.000388024327046321,8.99699407752285e-05,-0.000547893283228501,-0.000345822901561567,0.0329097121359793,-0.177209419641821,-0.0367153945284638,0.000654121639524688,0.183940881149474 +10.024,0.559821566471996,-0.292764487644511,-0.000388468404479647,0.000122948956460269,-0.000886477804912342,-0.000365246429691364,0.0103213521757251,-0.430048053390464,0.00312083891017672,0.000966625211185371,0.430183214655298 +10.026,0.55982201240052,-0.292768946976098,-0.000389485312765087,0.000131255349478124,-0.00226808549679017,-0.000333339545920861,-0.0409993660202647,-0.305655329171995,0.0951473957174835,0.00229620448575279,0.322736975224599 +10.028,0.559822091493394,-0.292773559986498,-0.00038980176266333,-4.10485076207712e-05,-0.00210909912160019,1.53431531785281e-05,-0.0788389781653139,0.431685849903397,0.167201474882523,0.00210955433612458,0.469600458568622 +10.03,0.559821848206489,-0.292777383372584,-0.000389423940152372,-0.000184100563183096,-0.000541342097176771,0.000335466353609158,-0.0149025439904947,0.437649058288856,0.0649637251657666,0.000662934354173852,0.44269523334448 +10.032,0.559821355091141,-0.292775725354887,-0.000388459897248894,-0.000100658683582744,-0.000358502888444958,0.000275198053841566,0.0455104628566026,-0.23731210786396,-0.0411885087165433,0.000463023174843522,0.245121871766986 +10.034,0.559821445571755,-0.292778817384138,-0.000388323147937006,-2.05871175662531e-06,-0.00149059052863293,0.000170712318742929,0.000836823915706498,-0.206512543118267,0.0268785955333615,0.00150033564848499,0.208256067468119 +10.036,0.559821346856294,-0.292781687717002,-0.000387777047973922,-9.7311387919918e-05,-0.00118455306091793,0.000382712435975,-0.0409670298101478,0.206374010661961,0.0960767201959046,0.00124864096881324,0.231299083378579 +10.038,0.559821056326203,-0.292783555596381,-0.000386792298193106,-0.000165926830997199,-0.000665094485985174,0.000555019199526505,-0.0219029545611655,0.259165916831281,0.0634034344956649,0.000882002664608049,0.267706382761698 +10.04,0.55982068314897,-0.292784348094946,-0.000385556971175816,-0.000184923206164609,-0.000147889393592465,0.000636326173957744,-0.000676601524825764,0.244526262047747,0.0217418365031056,0.000678954243361839,0.245491869672286 +10.042,0.559820316633378,-0.292784147153956,-0.000384246993497275,-0.000168633237096501,0.000313010562205708,0.000641986545538918,0.0126831913235842,0.210441508975747,-0.0100835282710482,0.000733866135857877,0.211064373082084 +10.044,0.559820008616022,-0.292783096052697,-0.00038298902499366,-0.000134190440870278,0.00069387664231043,0.000595992060873556,0.0184638517114518,0.167343883281832,-0.0307874547262539,0.000924488185857053,0.171151267773239 +10.046,0.559819779871615,-0.292781371647387,-0.000381863025253781,-9.47778302507023e-05,0.000982386095332963,0.000518836726633916,0.0188524127281538,0.120187815435997,-0.0426235945367528,0.00111501427179869,0.128908088404815 +10.048,0.559819629504701,-0.292779166508315,-0.000380913678087125,-5.87807899576712e-05,0.00117462790405437,0.000425497682726563,0.0160785205427469,0.0728056599209718,-0.0482261016294841,0.00125070147207752,0.0887971836138347 +10.05,0.559819544748455,-0.29277667313577,-0.000380161034522875,-3.04637480796932e-05,0.00127360873501695,0.000325932320115915,0.0119278986271359,0.0282397093800935,-0.049798198180488,0.00131500537153073,0.0584774870660029 +10.052,0.559819507649708,-0.292774072073375,-0.000379609948806661,-1.10691954491328e-05,0.00128758674157473,0.000226304890004633,0.00245802365961562,0.268264811208667,-0.0406473065822567,0.00130736989693312,0.271337896994734 +10.054,0.559819500471673,-0.292771522788804,-0.000379255814962856,-2.06316534412318e-05,0.0023466679798515,0.000163343093786906,0.0313980493271622,0.152953746626571,-0.0966117990946472,0.00235243644740339,0.183615156871541 +10.056,0.559819425123095,-0.292764685401456,-0.000378956576431513,0.000114523001859558,0.00189940172808122,-0.000160142306374085,0.0570665950189278,-0.562989075771627,-0.147911632764772,0.00190957796407574,0.584885584377309 +10.058,0.559819958563681,-0.292763925181892,-0.000379896384188352,0.000207634726634454,9.4711676765235e-05,-0.000428303437272118,-0.00900668204601084,-0.541525803466594,-0.0367415993688611,0.000485310535430005,0.542845522470067 +10.06,0.559820255662001,-0.292764306554749,-0.000380669790180602,7.84962736755188e-05,-0.000266701485784922,-0.000307108703849513,-0.0611110595877397,-0.116090584107607,0.0635317743066939,0.000414254877437737,0.145766497073018 +10.062,0.559820272548775,-0.292764991987835,-0.00038112481900375,-3.68095117164776e-05,-0.00036965065966514,-0.00017417634004537,-0.0451999234984943,-0.0338590622344831,0.0524136408580846,0.000410285202968958,0.0770497172458706 +10.064,0.559820108423954,-0.292765785157388,-0.000381366495540783,-0.000102303420318438,-0.000402137734722839,-9.74541404171977e-05,-0.0219276071952663,-0.00786170341673766,0.0254824839823002,0.00042623709010517,0.0345251115542126 +10.066,0.559819863335094,-0.292766600538774,-0.000381514635565419,-0.000124519940497572,-0.000401097473332101,-7.22464041161354e-05,-0.00374856933689324,0.0050189019259581,0.00425240624049289,0.000426150139742587,0.00757126854959359 +10.068,0.559819610344192,-0.292767389547281,-0.000381655481157248,-0.00011729769766601,-0.000382062127019009,-8.0444515455228e-05,0.00769547413294147,0.0112303612763852,-0.00803119407348219,0.000407678229547351,0.0158063726001521 +10.07,0.559819394144303,-0.292768128787282,-0.00038183641362724,-9.37380439658095e-05,-0.000356176028226566,-0.000104371180410061,0.0133019793235848,0.0126880880801899,-0.0124815498405539,0.000382807428441477,0.0222197956668815 +10.072,0.559819235392016,-0.292768814251394,-0.000382072965878888,-6.40897803716526e-05,-0.000331309774698233,-0.00013037071481746,0.0145896321621025,0.0110620791415512,-0.0112838032979986,0.000361759851338835,0.0215070030089579 +10.074,0.559819137785182,-0.292769454026381,-0.00038235789648651,-3.53795153174058e-05,-0.000311927711660366,-0.00014950639360205,0.00808332348278996,0.287344766990918,0.00183386617697053,0.000347710754987041,0.287464290479265 +10.076,0.559819093873955,-0.29277006196224,-0.000382670991453296,-3.17564864404964e-05,0.000818069293265312,-0.000123035250109579,0.037180633821751,0.202127246752604,-0.0500023951376215,0.000827878925800252,0.211513741706476 +10.078,0.559819010759236,-0.292766181749208,-0.000382850037486948,0.000113343019969582,0.00049658127534996,-0.000349515974152514,0.0613645632224666,-0.489674130299526,-0.0987755033572669,0.000617738633559371,0.503292125477403 +10.08,0.559819547246035,-0.292768075637139,-0.000384069055349906,0.000213701766449343,-0.00114062722793257,-0.000518137263538603,-0.00541863376390828,-0.450919422585637,0.0129591795012025,0.00127089147528496,0.451138146902006 +10.082,0.559819865566302,-0.292770744258119,-0.000384922586541103,9.16684849139416e-05,-0.00130709641499319,-0.000297679256147687,-0.0586067224542133,-0.0140576320238527,0.112563036234819,0.00134369531098204,0.127682426595614 +10.084,0.559819913919975,-0.292773304022799,-0.000385259772374497,-2.07251233674844e-05,-0.00119685775602798,-6.78851185993776e-05,-0.0448046049636443,0.0748983652322406,0.0992103073209805,0.00119896055324192,0.132135925543108 +10.086,0.559819782665809,-0.292775531689143,-0.000385194127015501,-8.75499349406158e-05,-0.00100750295406426,9.91619731361916e-05,-0.0234546332286648,0.102968055245405,0.0680039045986209,0.0010161497382141,0.12560681216228 +10.088,0.559819563720235,-0.292777334034615,-0.000384863124481952,-0.000114543656282175,-0.000784985535046221,0.000204130499795197,-0.00673125172963039,0.113634111509244,0.0406700353542391,0.00081914089164986,0.120880407114048 +10.09,0.559819324491183,-0.292778671631284,-0.00038437760501632,-0.000114474941859134,-0.000552966508027336,0.00026184211455313,0.00380830241647562,0.11382516899516,0.0208607302690626,0.000622444988948624,0.11578360130619 +10.092,0.559819105820467,-0.292779545900647,-0.000383815756023739,-9.9310446616274e-05,-0.00032968485906563,0.000287573420871438,0.00904908683402516,0.106009815044351,0.00792969400819667,0.000448612464713085,0.106690425556049 +10.094,0.559818927249397,-0.29277999037072,-0.000383227311332834,-7.82785945230377e-05,-0.000128927247849978,0.000293560890585913,0.0104312083970635,0.0924845536230837,0.000189684211881991,0.00033004207319714,0.0930711488463759 +10.096,0.559818792706089,-0.292780061609639,-0.000382641512461396,-5.75856130280246e-05,4.02533554266647e-05,0.000288332157718966,0.00938383895587659,0.0755437066790429,-0.00411989811623705,0.000296769049305674,0.0762356977592996 +10.098,0.559818696906945,-0.292779829357298,-0.000382073982701958,-4.07432386995188e-05,0.000173247578866295,0.00027708129812096,0.00710744853249029,0.0572139529156528,-0.00647066795194241,0.000329315624972693,0.0580157028451852 +10.1,0.559818629733135,-0.292779368619323,-0.000381533187268912,-2.91558188980666e-05,0.000269109167089251,0.000262449485911199,0.004491788774267,0.039083050948324,-0.00792033259813931,0.000377027238063962,0.0401296985571418 +10.102,0.559818580283669,-0.29277875292063,-0.000381024184758313,-2.27760836024528e-05,0.000329579782659574,0.000245399967728406,0.00211174813052836,0.0222596354577892,-0.00910989775021954,0.000411537030269817,0.0241441729595344 +10.104,0.5598185386288,-0.292778050300193,-0.000380551587397998,-2.07088263759503e-05,0.000358147708920437,0.000226009894910309,0.00027212814640329,0.00742158613735103,-0.0103309456787631,0.000424003666838149,0.0127233027606727 +10.106,0.559818497448364,-0.292777320329794,-0.000380120145178672,-2.16875710168398e-05,0.000359266127208974,0.000204076185013358,-0.000925774533422557,-0.00509394746869953,-0.0116257998575312,0.000413750637686459,0.0127265306202428 +10.108,0.559818451878516,-0.292776613235684,-0.000379735282657945,-2.44119245096402e-05,0.000337771919045641,0.000179506695480189,-0.00151698266448486,-0.0151921248220422,-0.0128893042029524,0.000383286400849622,0.0199808922685926 +10.11,0.559818399800666,-0.292775969242118,-0.000379402118396752,-2.77555016747785e-05,0.000298497627920812,0.000152518968201554,-0.00161434008521781,-0.022932820888837,-0.0139540162142309,0.000336352846589466,0.0268930276528553 +10.112,0.559818340856509,-0.292775419245172,-0.000379125206785139,-3.08692848505107e-05,0.000246040635490303,0.000123690630623272,-0.00136243269444028,-0.028463316672355,-0.0146525775636017,0.000277106981441531,0.0320423883019822 +10.114,0.559818276323526,-0.292774985079576,-0.000378907355874258,-3.32052324525415e-05,0.000184644361231355,9.39086579471275e-05,-0.000905198152549043,-0.0319735188013057,-0.0148573164283453,0.000209797434765521,0.0352684723185568 +10.116,0.55981820803558,-0.292774680667727,-0.00037874957215335,-3.44900774607065e-05,0.000118146560285095,6.42613649098971e-05,-0.000366782104684443,-0.0336706623901969,-0.0144992788261927,0.00013884415065291,0.0366616573737006 +10.118,0.559818138363216,-0.292774512493335,-0.000378650310414619,-3.46723608712791e-05,4.99617116705819e-05,3.59115426423631e-05,0.000157349147600316,-0.0337679408393612,-0.0135712777864544,7.06256620244853e-05,0.0363933808273147 +10.12,0.559818069346136,-0.292774480820881,-0.000378605925982781,-3.3860680870305e-05,-1.69252030723951e-05,9.97625376406129e-06,0.000602222313679959,-0.0324815141797291,-0.0121205421645455,3.91475905670757e-05,0.0346744715530829 +10.122,0.559818002920493,-0.292774580194147,-0.000378610405399563,-3.22634716165595e-05,-7.996434504832e-05,-1.25706260158134e-05,0.000930785747088807,-0.0300312245210609,-0.0102358951176185,8.71392490109294e-05,0.0317413666561514 +10.124,0.55981794029225,-0.292774800678261,-0.000378656208486844,-3.01375378819502e-05,-0.000137050101156626,-3.09673267064082e-05,0.00112888681735892,-0.0266416820896068,-0.00803301083637975,0.000143700997699977,0.0278492885565768 +10.126,0.559817882370341,-0.292775128394552,-0.000378734274706388,-2.77479243471243e-05,-0.000186531073406735,-4.47026693613289e-05,0.0011994661722223,-0.0225416581893309,-0.00564015609476555,0.000193809487125556,0.0232674973685666 +10.128,0.559817829300552,-0.292775546802554,-0.000378835019164289,-2.53396731930615e-05,-0.000227216733913939,-5.35279510854679e-05,0.00115701308256418,-0.0179611185126231,-0.00318604514125338,0.000234807974216076,0.0182781656940685 +10.13,0.559817781011649,-0.292776037261487,-0.00037894838651073,-2.3119872016866e-05,-0.000258375547457252,-5.74468499263466e-05,0.00102282607383505,-0.013126068249714,-0.000790445207558009,0.000265692665635262,0.0131895657434056 +10.132,0.559817736821064,-0.292776580304744,-0.000379064806563995,-2.12483688977218e-05,-0.000279721006912789,-5.66897319156996e-05,0.00082123571832032,-0.00825197779202591,0.001442335366599,0.00028619759012576,0.00841723807996876 +10.134,0.559817696018173,-0.292777156145515,-0.000379175145438393,-1.98349291435851e-05,-0.000291383458625352,-5.16775084599513e-05,0.000576806519214527,-0.00353668849761767,0.00342745505674875,0.000296594519934593,0.00495866105474271 +10.136,0.559817657481348,-0.292777745838579,-0.000379271516597834,-1.89411428208629e-05,-0.000293867760903265,-4.29799116887e-05,0.000312425071922283,0.000846245615216991,0.00510136919685638,0.000297597548038332,0.00518051240221223 +10.138,0.559817620253602,-0.292778331616559,-0.000379347065085148,-1.85852288558961e-05,-0.000287998476164484,-3.1272031672528e-05,4.80970541172466e-05,0.0047530445482235,0.00642204911818908,0.000290286880464169,0.00798977225460433 +10.14,0.559817583140432,-0.292778897832483,-0.000379396604724525,-1.87487546043939e-05,-0.000274855582710373,-1.72917152159465e-05,-0.000199702053504991,0.0080734944459,0.00736795240704492,0.000276036429772202,0.0109319676248437 +10.142,0.559817545258583,-0.292779431038889,-0.000379416231946011,-1.9384037069916e-05,-0.000255704498380888,-1.80022204435157e-06,-0.000418288077783703,0.0107328202436922,0.00793621438791734,0.000256444481681237,0.0133548453420626 +10.144,0.559817505604284,-0.292779920650477,-0.000379403805612702,-2.04219069155285e-05,-0.000231924301735609,1.44531423357193e-05,-0.000598726068723331,0.0126916215870104,0.00814027228176152,0.00023326986376511,0.0150897237958304 +10.146,0.559817463570956,-0.292780358736096,-0.000379358419376669,-2.17789413448101e-05,-0.00020493801203283,3.07608670827054e-05,-0.000735606450754864,0.0139440498244987,0.008007214758434,0.000208375003313134,0.0160963701046595 +10.148,0.559817418488519,-0.292780740402525,-0.000379280762144371,-2.33643327185477e-05,-0.00017614810243762,4.64820013694518e-05,-0.000826676921359021,0.0145145219385329,0.00757496350193609,0.000183669873651253,0.0163931331322638 +10.15,0.559817370113625,-0.292781063328506,-0.000379172491371191,-2.50856490302459e-05,-0.000146879924278704,6.10607210904464e-05,-0.000872409040841654,0.0144533342273624,0.00688945842996209,0.000161032337135967,0.0160351054028517 +10.152,0.559817318145922,-0.292781327922222,-0.000379036519260009,-2.68539688819155e-05,-0.000118334765528152,7.40398350893094e-05,-0.000875508346379264,0.0138315628429731,0.00600190471021616,0.000142148336456554,0.0151030296859342 +10.154,0.559817262697749,-0.292781536667568,-0.000378876332030834,-2.85876824157625e-05,-9.15536729068179e-05,8.50683399313084e-05,-0.000840422009762605,0.0127356107673699,0.00496617774421141,0.000128202781043555,0.0136954376403071 +10.156,0.559817203795193,-0.292781694136914,-0.000378696245900284,-3.02156569209655e-05,-6.73923224586778e-05,9.39045460661529e-05,-0.000772846432684109,0.0112617338753087,0.00383643867108653,0.000119468719008074,0.0119223405069557 +10.158,0.559817141835122,-0.292781806236858,-0.000378500713846569,-3.16790681464986e-05,-4.65067374055879e-05,0.000100414094615653,-0.000679269952782271,0.00951080850187227,0.00266500985688097,0.000115106170035425,0.00990046279551171 +10.16,0.55981707707892,-0.292781880163863,-0.000378294589521821,-3.29327367320943e-05,-2.93490884511929e-05,0.000104564585493676,-0.000566552880998257,0.00758356060240159,0.00150056262034037,0.00011348870728423,0.0077513264513132 +10.162,0.559817010104175,-0.292781923633212,-0.000378082455504594,-3.39452796704924e-05,-1.61724949959714e-05,0.000106416345097016,-0.000441562224288573,0.00557639966841458,0.000386626437474151,0.000112863945129124,0.00560719987711931 +10.164,0.559816941297801,-0.292781944853843,-0.000377868924141433,-3.46989856292484e-05,-7.04348977753699e-06,0.000106111091243572,-0.000310865319593282,0.0035779633596199,-0.00063953560243886,0.000111862388839354,0.00364793980713707 +10.166,0.559816871308232,-0.292781951807171,-0.00037765801113962,-3.51887409488654e-05,-1.86064155749337e-06,0.000103858202687261,-0.000180483475387088,0.00166641560619925,-0.00154771185624479,0.000109673313718516,0.00228143096486238 +10.168,0.559816800542838,-0.29278195229641,-0.000377453491330684,-3.5420919530797e-05,-3.77827352737767e-07,9.99202438185908e-05,-5.57110191351854e-05,-9.2486518443962e-05,-0.00231516091886716,0.0001060133926383,0.00231767718934212 +10.17,0.559816729624554,-0.29278195331848,-0.000377258330164346,-3.54115850254061e-05,-2.23058763126918e-06,9.45975590117935e-05,5.90118579002618e-05,-0.0016465859231655,-0.002926719650486,0.000101032935452664,0.003358632982968 +10.172,0.559816658896498,-0.29278196121876,-0.000377075101094637,-3.5184872099196e-05,-6.96417104539903e-06,8.82133652166481e-05,0.000160166394036524,-0.00295782410716992,-0.00337459534448322,9.52264286100875e-05,0.00449024169302077 +10.174,0.559816588885066,-0.292781981175165,-0.000376905476703479,-3.47709194492601e-05,-1.40618840599476e-05,8.10991776338621e-05,0.000245181458473042,-0.00400211779341519,-0.00365791398734337,8.93522805279813e-05,0.0054274667680928 +10.176,0.55981651981282,-0.292782017466296,-0.000376750704384102,-3.42041462653039e-05,-2.2972642219058e-05,7.35817092672762e-05,0.000312412283542881,-0.00476869577506371,-0.0037820391393306,8.43322823772552e-05,0.00609441390795272 +10.178,0.559816452068481,-0.292782073065734,-0.00037661114986641,-3.35212703150881e-05,-3.31366671602088e-05,6.59710210765347e-05,0.000361092822305954,-0.00525898830386711,-0.00375773655160409,8.10795282170799e-05,0.0064736334463571 +10.18,0.559816385727739,-0.292782150012965,-0.000376486820299796,-3.27597749760802e-05,-4.40085954345241e-05,5.85507630608615e-05,0.000391255021440522,-0.00548516801423602,-0.00360021226026394,8.02380906029809e-05,0.00657279825912488 +10.182,0.559816321029381,-0.292782249100115,-0.000376376946814166,-3.19562502293262e-05,-5.50773392171505e-05,5.15701720354805e-05,0.000403635423695723,-0.00546843825083176,-0.00332809057222642,8.19402091023048e-05,0.00641427512002442 +10.184,0.559816257902738,-0.292782370322322,-0.000376280539611654,-3.11452332812968e-05,-6.58823484378585e-05,4.52384007719514e-05,0.000399562619098774,-0.00523716687032166,-0.0029623659124641,8.57730860832084e-05,0.00603018896167484 +10.186,0.559816196448448,-0.292782512629509,-0.000376195993211079,-3.03579997529313e-05,-7.60260066984348e-05,3.97207083856254e-05,0.000380842107850027,-0.0048249529337196,-0.00252537808026532,9.09906397283002e-05,0.00545918913136426 +10.188,0.559816136470739,-0.292782674426349,-0.000376121656778111,-2.96218648498969e-05,-8.51821601727348e-05,3.51368884508912e-05,0.000349634557417289,-0.00426871132192069,-0.00203984474624098,9.67887194816078e-05,0.00474395481243247 +10.19,0.559816077960988,-0.29278285335815,-0.000376055445657275,-2.89594615232623e-05,-9.31008519861157e-05,3.15613294006624e-05,0.000308338687918686,-0.00360684377155946,-0.00152798014345724,0.000102481884085896,0.00392926431507277 +10.192,0.559816020632892,-0.292783046829757,-0.000375995411460509,-2.83885100982223e-05,-9.9609535258971e-05,2.9024967877063e-05,0.000259477349329126,-0.00287756080768966,-0.00101072872293861,0.00010756586717156,0.00306092424737032 +10.194,0.559815964406948,-0.292783251796291,-0.000375939345785767,-2.79215521259455e-05,-0.000104611095216878,2.75184145089066e-05,0.000205592973198334,-0.00211739914838847,-0.00050712259391483,0.000111715520196079,0.00218696615188339 +10.196,0.559815908946684,-0.292783465274137,-0.000375885337802473,-2.7566138205429e-05,-0.000108079131852524,2.69964775014039e-05,0.000149153613074618,-0.00135997305082876,-3.37831767799283e-05,0.000114759751285195,0.00136854477541184 +10.198,0.559815854142395,-0.292783684112818,-0.000375831359875761,-2.73249376736471e-05,-0.000110050987420193,2.73832818017869e-05,9.24711557326111e-05,-0.000634979468311229,0.000395441126892126,0.00011665211602566,0.000753739692902696 +10.2,0.559815799646933,-0.292783905478087,-0.000375775804675266,-2.71962535824984e-05,-0.00011061904972577,2.85782420089729e-05,3.76345968247932e-05,3.25302493153786e-05,0.000769690017453796,0.000117443289665605,0.000771295859555015 +10.202,0.559815745357381,-0.292784126589017,-0.000375717046907725,-2.71743992863479e-05,-0.000109920866422931,3.04620418716018e-05,-1.35433053660737e-05,0.000622615337758784,0.00108117976984508,0.000117256048230908,0.00124771109422614 +10.204,0.559815690949336,-0.292784345161553,-0.000375653956507779,-2.72504268039627e-05,-0.000108128588374735,3.29029610883527e-05,-5.95622717814015e-05,0.00112065693877475,0.00132516290996006,0.000116262557314436,0.0017365127055618 +10.206,0.559815636355673,-0.292784559103371,-0.000375585435063372,-2.74126483734735e-05,-0.000105438238667833,3.57626935114414e-05,-9.92583515349642e-05,0.00151733647869635,0.00149978634285692,0.000114663183766263,0.00213577182399062 +10.208,0.559815581298743,-0.292784766914507,-0.000375510905733734,-2.76474602101025e-05,-0.00010205924245995,3.89021064597798e-05,-0.000131810666548186,0.00180840750707527,0.00160585331577359,0.000112666964610644,0.0024220810546394 +10.21,0.559815525765833,-0.29278496734034,-0.000375429826637533,-2.79398910396664e-05,-9.82046086395291e-05,4.21861067745379e-05,-0.000156737733906005,0.00199429286972273,0.00164651787950883,0.000110473753779548,0.00259090561290819 +10.212,0.559815469539178,-0.292785159732942,-0.000375342161306635,-2.82744111457265e-05,-9.40820709810601e-05,4.54881779778144e-05,-0.000173879834139047,0.00207954292328827,0.00162692270245563,0.000108259192410918,0.00264605563930241 +10.214,0.559815412668188,-0.292785343668624,-0.000375247873925622,-2.86354103762225e-05,-8.98864369463769e-05,4.86937975843597e-05,-0.000183373205508944,0.00207219062395246,0.00155380563276984,0.000106163290253817,0.00259651914279914 +10.216,0.559815354997537,-0.29278551927869,-0.000375147386116298,-2.90079039677625e-05,-8.57933084852475e-05,5.17034005088958e-05,-0.000185614641715515,0.00198304174469244,0.00143508888974259,0.00010428418814773,0.00245487015499286 +10.218,0.559815296636572,-0.292785686841858,-0.000375041060323586,-2.93778689430845e-05,-8.19542699676081e-05,5.44341531433294e-05,-0.000181221773698543,0.00182493409620106,0.00127947025457154,0.000102677351825961,0.00223612833242482 +10.22,0.559815237486061,-0.29278584709577,-0.000374929649503725,-2.97327910625566e-05,-7.8493572100444e-05,5.68212815271814e-05,-0.000170987751735334,0.00161199966569638,0.00109603035501639,0.000101360434883876,0.00195679898624415 +10.222,0.559815177705408,-0.292786000816147,-0.000374813775197477,-3.00618199500257e-05,-7.55062713048232e-05,5.88182745633945e-05,-0.000155835337686256,0.00135895742576506,0.000893867951004974,0.000100321978886385,0.00163402871803026 +10.224,0.559815117238781,-0.292786149120855,-0.000374694376405471,-3.03561324133016e-05,-7.30577423973844e-05,6.03967533312009e-05,-0.000136770338110517,0.00108046268459925,0.000681775646354923,9.95323882575235e-05,0.00128488278459981 +10.226,0.559815056280878,-0.292786293047116,-0.000374572188184152,-3.0608901302468e-05,-7.11844205664248e-05,6.15453771488151e-05,-0.000114836959389584,0.000790531123193552,0.000467960320674069,9.8954332996144e-05,0.000925804431672738 +10.228,0.559814994803176,-0.292786433858537,-0.000374448194896876,-3.08154802508598e-05,-6.98956179046106e-05,6.2268594613897e-05,-9.10764241767416e-05,0.000502053253145248,0.000259817520789678,9.85513526063863e-05,0.000572588445695373 +10.23,0.559814933018957,-0.292786572629588,-0.000374323113805697,-3.09732069991749e-05,-6.9176207553844e-05,6.25846472319737e-05,-6.64898344715349e-05,0.000226407274872501,6.37574984127386e-05,9.82930583128679e-05,0.000244430298463785 +10.232,0.559814870910348,-0.292786710563367,-0.000374197856307948,-3.10814395887461e-05,-6.89899888051202e-05,6.2523624607548e-05,-4.20064469354217e-05,-2.6823931972202e-05,-0.000114911470089368,9.81574147800617e-05,0.000125254584222245 +10.234,0.559814808693199,-0.292786848589543,-0.000374073019307267,-3.11412327869166e-05,-6.92835032817328e-05,6.21250013516163e-05,-1.84576659512141e-05,-0.000250033330845333,-0.000272049850529093,9.81299954112765e-05,0.000369957393680516 +10.236,0.559814746345417,-0.292786987697381,-0.000373949356302541,-3.11552702525509e-05,-6.99901221285015e-05,6.14354252054318e-05,3.44191342094329e-06,-0.00043767117013936,-0.000404701757349225,9.82017287538475e-05,0.00059611359013254 +10.238,0.559814684072118,-0.292787128550032,-0.000373827277606445,-3.11274651332328e-05,-7.103418796229e-05,6.05061943222196e-05,2.31084665326514e-05,-0.000586235438657527,-0.000511068233746459,9.83655147724078e-05,0.000778072445411222 +10.24,0.559814621835557,-0.292787271834132,-0.000373707331525253,-3.10628363864203e-05,-7.23350638831313e-05,5.93911522704462e-05,4.00954824897243e-05,-0.000694182031302072,-0.000590440124743774,9.86132356195533e-05,0.000912203859455878 +10.242,0.559814559820772,-0.292787417890287,-0.000373589712997363,-3.09670832032739e-05,-7.38109160874993e-05,5.81444338232437e-05,5.40955544213792e-05,-0.00076176675732052,-0.000643101421068037,9.89332439598536e-05,0.000998395893093768 +10.244,0.559814497967224,-0.292787567077797,-0.00037347475378996,-3.08464541687348e-05,-7.53821309124131e-05,5.68187465861743e-05,6.49361120430709e-05,-0.000790833482034079,-0.000670206870903726,9.9309311543802e-05,0.00103865853135666 +10.246,0.559814436434956,-0.292787719418811,-0.000373362438011018,-3.07073387551016e-05,-7.69742500156352e-05,5.54636063396291e-05,7.25715598726288e-05,-0.000784562578099062,-0.000673643790055781,9.97205467648841e-05,0.0010366296475292 +10.248,0.559814375137869,-0.292787874974797,-0.000373252899364601,-3.05561679292444e-05,-7.8520381224809e-05,5.41241714259515e-05,7.70711411391454e-05,-0.000747194209274218,-0.000655883038858566,0.00010014267621127,0.000997206953361117 +10.25,0.559814314210284,-0.292788033500336,-0.000373145941325315,-3.03990541905451e-05,-7.99630268527318e-05,5.28400741841951e-05,7.86043244382748e-05,-0.000683740113138611,-0.000619826960590459,0.00010054979661303,0.000926209826772532 +10.252,0.559814253541652,-0.292788194826904,-0.000373041539067864,-3.02417506314911e-05,-8.12553416773643e-05,5.16448635835888e-05,7.74238936817892e-05,-0.000599697163464877,-0.000568659783318857,0.000100916727884578,0.000830063308636708 +10.254,0.559814193243281,-0.292788358521702,-0.00037293936187098,-3.00893586158179e-05,-8.2361815506591e-05,5.05654350509199e-05,7.38483510487437e-05,-0.000500772995978031,-0.00050570537515067,0.000101221052046211,0.000715517364506069 +10.256,0.559814133184217,-0.292788524274166,-0.000372839277327661,-2.99463572272962e-05,-8.32584336612762e-05,4.96220420829863e-05,6.82435150056574e-05,-0.000392634171703012,-0.000434297258745844,0.00010144504989106,0.000589434372159778 +10.258,0.559814073457853,-0.292788691555437,-0.000372740873702648,-2.98163845557952e-05,-8.39323521934036e-05,4.8828246015936e-05,6.10047221039274e-05,-0.000280683951784803,-0.000357663303482534,0.000101576838608461,0.00045872442224777 +10.26,0.559814013918679,-0.292788860003575,-0.000372643964343597,-2.97023383388805e-05,-8.43811694684153e-05,4.81913888690564e-05,5.25399029838287e-05,-0.000169875273570192,-0.000278828513229697,0.000101611124512936,0.000330701360393302 +10.262,0.559813954648499,-0.292789029080115,-0.000372548108147172,-2.96062249438599e-05,-8.46118532876843e-05,4.77129319630173e-05,4.32540669948002e-05,-6.45624664841332e-05,-0.000200535884772912,0.000101549092308649,0.0002150671231773 +10.264,0.559813895493779,-0.292789198450988,-0.000372453112615745,-2.95293220709013e-05,-8.46394193343518e-05,4.73892453299648e-05,3.35357783242714e-05,3.16064709221037e-05,-0.000125187703091107,0.000101397991795532,0.000133400069104898 +10.266,0.559813836531211,-0.292789367637792,-0.000372358551165852,-2.94720818305629e-05,-8.44854274039959e-05,4.7212181150653e-05,2.37455402562982e-05,0.00011575764999325,-5.48050303056248e-05,0.000101170060294859,0.000130258495157989 +10.268,0.559813777605452,-0.292789536392698,-0.000372264263891142,-2.94343399098761e-05,-8.41763887343787e-05,4.71700252087422e-05,1.42068023978933e-05,0.000185820445826697,8.99363743725289e-06,0.000100881396027636,0.000186579625993724 +10.27,0.559813718793851,-0.292789704343347,-0.000372169871065017,-2.94152546209713e-05,-8.37421456206892e-05,4.7248155700402e-05,5.19895238298141e-06,0.000240521429171603,6.49976825781386e-05,0.000100550446914286,0.000249203302018973 +10.272,0.559813659944434,-0.29278987136128,-0.000372075271268341,-2.94135441003442e-05,-8.32143030176924e-05,4.74300159390548e-05,-3.04709035781042e-06,0.000279347170395401,0.000112394146073421,0.000100196722577349,0.00030112550612517 +10.274,0.559813601139675,-0.292790037200559,-0.000371980151001261,-2.94274429824025e-05,-8.26247569391072e-05,4.76977322846958e-05,-1.03512753956624e-05,0.000302480589177965,0.000150745489013474,9.98393636038993e-05,0.000338121070313101 +10.276,0.559813542234662,-0.292790201860308,-0.000371884480339202,-2.94549492019268e-05,-8.20043806609806e-05,4.80329978951086e-05,-1.65845254196419e-05,0.000310716792573175,0.000179956655480025,9.94961374469914e-05,0.00035945009322841 +10.278,0.559813483319878,-0.292790365218082,-0.000371788019009681,-2.94937810840811e-05,-8.13818897688146e-05,4.84175589066158e-05,-2.16672652042554e-05,0.000305363609398658,0.00020023473070595,9.91824335023839e-05,0.000365800972808017 +10.28,0.559813424259537,-0.292790527387867,-0.000371690810103575,-2.95416182627439e-05,-8.07829262233861e-05,4.88339368179323e-05,-2.55663129523025e-05,0.000288132625406811,0.000212043217180785,9.89107767835868e-05,0.000358659130838982 +10.282,0.559813365153405,-0.292790688349787,-0.000371592683262409,-2.95960463358903e-05,-8.02293592671875e-05,4.92657317753389e-05,-2.82905782134019e-05,0.000261026023712303,0.000216053347087915,9.86903661686349e-05,0.000340020573875457 +10.284,0.559813305875352,-0.292790848305304,-0.000371493747176474,-2.96547805755975e-05,-7.97388221285366e-05,4.96981502062842e-05,-2.98857258418e-05,0.000226224507867712,0.000213094818705927,9.85271125089923e-05,0.00031221801089686 +10.286,0.559813246534283,-0.292791007305075,-0.000371393890661584,-2.97155892392575e-05,-7.93244612357168e-05,5.01181110501625e-05,-3.04284306052208e-05,0.000185980165304731,0.000204107428869435,9.84236325757662e-05,0.000277802724600684 +10.288,0.559813187012995,-0.292791165603149,-0.000371293274732273,-2.97764942980184e-05,-7.89949014673177e-05,5.05145799217619e-05,-3.00200836411624e-05,0.000142518389450977,0.000190095605923048,9.83796567140953e-05,0.000239476587884439 +10.29,0.559813127428305,-0.292791323284681,-0.000371191832341897,-2.98356695738222e-05,-7.87543876779127e-05,5.08784934738549e-05,-2.8780269837307e-05,9.79515531097851e-05,0.000172086647888632,9.83922855492765e-05,0.000200091541725464 +10.292,0.559813067670317,-0.2927914806207,-0.000371089760758378,-2.98916153773676e-05,-7.86030952548786e-05,5.12029265133163e-05,-2.68408975601153e-05,5.42067640774263e-05,0.00015109445292153,9.84565637072718e-05,0.000162752390941684 +10.294,0.559813007861844,-0.292791637697062,-0.000370987020635843,-2.99430331640626e-05,-7.8537560621603e-05,5.1482871285541e-05,-2.4340252036131e-05,1.29687996453013e-05,0.000128088208442597,9.85658140495968e-05,0.000131023764163057 +10.296,0.559812947898184,-0.292791794770942,-0.000370883829273236,-2.99889763855121e-05,-7.85512200562974e-05,5.17152793470867e-05,-2.14176176760466e-05,-2.43609715645977e-05,0.000103967603617783,9.87122231282979e-05,0.000108910210194053 +10.298,0.559812887905938,-0.292791951901942,-0.000370780159518455,-3.00287036347668e-05,-7.86350045078614e-05,5.18987417000121e-05,-1.82087261935094e-05,-5.66900137943683e-05,7.95435462288926e-05,9.88871395378621e-05,9.93604102259236e-05 +10.3,0.55981282778337,-0.29279210931096,-0.000370676234306436,-3.00618112902862e-05,-7.8777980111475e-05,5.20334535320024e-05,-1.48417667078581e-05,-8.3244723623068e-05,5.55251955582937e-05,9.90815973577524e-05,0.000101158338222206 +10.302,0.559812767658693,-0.292792267013863,-0.000370572025704327,-3.00880707015982e-05,-7.89679834023536e-05,5.21208424822452e-05,-1.14341105994413e-05,-0.000103566842593165,3.25120364600299e-05,9.92865379708537e-05,0.000109150640331131 +10.304,0.559812707431087,-0.292792425182894,-0.000370467750936507,-3.01075477326839e-05,-7.91922474818476e-05,5.21635016778425e-05,-8.09005640256358e-06,-0.000117497792745366,1.09912729959174e-05,9.94932530325364e-05,0.0001182877356056 +10.306,0.559812647228502,-0.292792583782853,-0.000370363371697616,-3.01204309272085e-05,-7.94379745733352e-05,5.21648075742289e-05,-4.89904644963769e-06,-0.000125152613975548,-8.66087583016362e-06,9.96935269353578e-05,0.000125547553584981 +10.308,0.559812586949363,-0.292792742934792,-0.00037025909170621,-3.01271439184825e-05,-7.96928579377497e-05,5.21288581745218e-05,-1.93481342059009e-06,-0.000126885859458331,-2.61738738321978e-05,9.98799993069219e-05,0.000129571742694291 +10.31,0.559812526719927,-0.292792902554285,-0.000370154856264918,-3.01281701808909e-05,-7.99455180111685e-05,5.20601120789001e-05,7.44987405099178e-07,-0.000123251752554037,-4.13750552916227e-05,0.000100046228105763,0.000130013248225941 +10.312,0.559812466436682,-0.292793062716864,-0.000370050851257894,-3.01241639688621e-05,-8.01858649479658e-05,5.19633579533553e-05,3.09835490931624e-06,-0.000114960582711079,-5.41795827010359e-05,0.000100186969023246,0.000127125774578066 +10.314,0.559812406223271,-0.292793223297744,-0.000369947002833104,-3.01157767612536e-05,-8.04053603420128e-05,5.1843393748096e-05,5.09828290695509e-06,-0.00010283366866368,-6.45790608488774e-05,0.000100298152809425,0.000121536870946861 +10.316,0.559812345973575,-0.292793384338306,-0.000369843477682902,-3.01037708372342e-05,-8.05971996226207e-05,5.17050417099597e-05,6.7315111784595e-06,-8.77587967663198e-05,-7.26294449871822e-05,0.000100377073796051,0.000114113785020759 +10.318,0.559812285808187,-0.292793545686543,-0.000369740182666264,-3.00888507165398e-05,-8.0756395529078e-05,5.15528759681473e-05,7.99713073874504e-06,-7.06477237732161e-05,-7.84388708556844e-05,0.000100422275302237,0.000105866479281706 +10.32,0.559812225618172,-0.292793707363888,-0.000369637266179029,-3.00717823142793e-05,-8.08797905177135e-05,5.1391286226537e-05,-0.00264344134082103,0.27718937421755,0.0109736596719232,0.000100433644291963,0.277419102024058 +10.322,0.559812165521058,-0.292793869205705,-0.000369534617521358,-4.06626160798274e-05,0.00102800110134149,9.54475146558547e-05,0.023890884930102,0.197356831606356,-0.0429791360678121,0.0010332230837335,0.203390509861149 +10.324,0.559812062967708,-0.292789595359482,-0.000369255476120406,6.54917574061181e-05,0.000708547535907622,-0.000120525258044692,0.0433567970900646,-0.485592759228683,-0.101986639179848,0.000721702929712527,0.498077719076486 +10.326,0.559812427488088,-0.292791035015561,-0.000370016718553537,0.000132764572280412,-0.000914369935573024,-0.000312499042063492,-0.00988731674312011,-0.448658705496612,-0.00500457106918899,0.000975374011353192,0.448795542292769 +10.328,0.559812594025997,-0.292793252839225,-0.00037050547228866,2.5942490433642e-05,-0.00108608728607863,-0.000140543542321446,-0.050040073903971,-0.0178704939872764,0.0882819939877221,0.00109545017827366,0.103039186788874 +10.33,0.55981253125805,-0.292795379364706,-0.000370578892722823,-6.73957233354502e-05,-0.000985851911522121,4.06289338873575e-05,-0.0360660881160077,0.0694550328673838,0.0760180711677046,0.000988987808440808,0.109103214648603 +10.332,0.559812324443104,-0.292797196246871,-0.00037034295655311,-0.000118321862030437,-0.000808267154608999,0.000163528742349474,-0.0164171573974303,0.0968282554586982,0.0471493293444588,0.000833089134383878,0.10894169711281 +10.334,0.559812057970601,-0.292798612433324,-0.000369924777753425,-0.000133064352925164,-0.000598538889687372,0.000229226251265172,-0.00137219813288502,0.107029606046038,0.0221451251190598,0.000654598807481856,0.109305196878395 +10.336,0.559811792185692,-0.29279959040243,-0.00036942605154805,-0.000123810654561976,-0.000380148730424896,0.000252109242825703,0.00779746935075479,0.10680075158279,0.00445760316072114,0.000472653367432069,0.107177755587917 +10.338,0.559811562727983,-0.292800133028246,-0.000368916340782122,-0.000101874475522135,-0.000171335883356069,0.000247056663908062,0.0119763301845044,0.0985551786985911,-0.0064982595571623,0.000317445095835005,0.0994926284217668 +10.34,0.55981138468779,-0.292800275745963,-0.000368437824892417,-7.59053338239641e-05,1.40719843694252e-05,0.000226116204597057,0.0125624828109544,0.0845854598794013,-0.0123158880880144,0.00023893132575784,0.0863955849380154 +10.342,0.559811259106648,-0.292800076740308,-0.000368011875963734,-5.16245442783227e-05,0.0001670059561615,0.00019779311155601,0.0109310887286298,0.0672095321306724,-0.0146863812083874,0.0002639662818323,0.0696584503345799 +10.344,0.559811178189613,-0.292799607722138,-0.000367646652446194,-3.21809789094498e-05,0.000282910112892085,0.000167370679763514,0.00581069493910568,0.325527146419111,-0.00375773561141243,0.000330282745272416,0.325600687665689 +10.346,0.559811130382732,-0.292798945099857,-0.00036734239324468,-2.83817645219025e-05,0.0014691145418378,0.000182762169110362,0.0288657744651412,0.227474377997116,-0.0566897964439245,0.00148071100220623,0.23620236789986 +10.348,0.559811064662555,-0.292793731263971,-0.000366915603769752,8.32821189511537e-05,0.00119280762488085,-5.938850601226e-05,0.0448715738177242,-0.471808538363091,-0.115090999558772,0.00119718542254626,0.487711690641749 +10.35,0.559811463511208,-0.292794173869357,-0.000367579947268729,0.000151104530748974,-0.000418119611614355,-0.000277601829124677,-0.00944651182278203,-0.449945002926226,-0.0181043831792395,0.00052413678020415,0.450408160377008 +10.352,0.559811669080678,-0.292795403742417,-0.00036802601108625,4.54960716600298e-05,-0.000606972386823853,-0.00013180603872921,-0.0499753763996579,-0.0319756075818562,0.0757164980461949,0.000622782628810909,0.0961923375477267 +10.354,0.559811645495495,-0.292796601758904,-0.000368107171423646,-4.87969748497239e-05,-0.000546022041941823,2.52641630602041e-05,-0.0392624312090009,0.322647224923482,0.0758843245280923,0.000548780004169189,0.333768184469925 +10.356,0.559811473892779,-0.292797587830585,-0.00036792495443401,-0.000111553653175957,0.000683616512869931,0.000171731259383126,0.00329330732129557,0.540462196503674,0.00612924220318996,0.000713629721672704,0.540506983611381 +10.358,0.559811199280882,-0.292793867292853,-0.000367420246386113,-3.56237455645431e-05,0.00161582674407264,4.97811318729612e-05,0.0622576436654225,-0.215445583061405,-0.130544654295747,0.00161698586239923,0.259489345100402 +10.36,0.559811331397796,-0.292791124523609,-0.000367725829906518,0.000137476921485706,-0.000178165819375595,-0.000350447357799804,0.037995162911748,-0.863545124289697,-0.110772794689547,0.000416480868376722,0.871449611929761 +10.362,0.559811749188568,-0.29279457995613,-0.000368822035817312,0.000116356906082432,-0.00183835375308577,-0.000393310046885178,-0.0480318039161491,-0.405851356278984,0.0682939632840246,0.00188355415214388,0.414350628094093 +10.364,0.559811796825421,-0.292798477938621,-0.000369299070094059,-5.46502941789544e-05,-0.00180157124449207,-7.72715046636148e-05,-0.0720024230030399,0.098414870776898,0.145312207090904,0.00180405556706758,0.18969837436829 +10.366,0.559811530587391,-0.292801786241108,-0.000369131121835967,-0.000171652785929696,-0.00144469426997822,0.000187938781478374,-0.0403274503374256,0.198190789786768,0.104698110133825,0.00146694485179536,0.227744564529244 +10.368,0.559811110214277,-0.292804256715701,-0.000368547314968146,-0.000215960095528639,-0.00100880808534509,0.000341520935871639,-0.0110097613942292,0.497702122809779,0.064842535749627,0.00108672400615658,0.502029055272461 +10.37,0.559810666747009,-0.29280582147345,-0.00036776503809248,-0.000215691831506627,0.000546114221261556,0.000447308924476968,0.0353276795386608,0.414563169213296,-0.0277713761145272,0.000738138864143828,0.416991505358386 +10.372,0.559810247446951,-0.292802072258816,-0.000366758079270238,-7.46493773740113e-05,0.000649444591507913,0.000230435431413542,0.0635628428363872,-0.28729371991116,-0.112847496337051,0.000693145940644503,0.315138816903561 +10.374,0.5598103681495,-0.292803223695084,-0.000366843296366826,3.85595398388936e-05,-0.000603060658382959,-4.08106087118654e-06,0.0147615631940245,-0.282414617535566,-0.0316196869095953,0.000604305924892111,0.284562338593764 +10.376,0.55981040168511,-0.29280448450145,-0.000366774403513723,-1.560312459792e-05,-0.000480213878634225,0.000103956683775175,-0.0259693658799505,0.109131577778102,0.0552935750675629,0.00049158500671977,0.12506593731427 +10.378,0.559810305737001,-0.292805144550598,-0.000366427469631725,-6.53179236808969e-05,-0.000166534347270597,0.000217093239399041,-0.0196426601303768,0.432668142213197,0.0544682021456442,0.000281299830372499,0.436525303308062 +10.38,0.559810140413415,-0.292805150638839,-0.000365906030556126,-9.41737651194533e-05,0.00125045869021914,0.000321829492357825,0.0186606082808151,0.341609433778729,-0.0248863460169066,0.00129463889024416,0.343022672379111 +10.382,0.559809929041941,-0.292800142715837,-0.000365140151662294,9.32450944235544e-06,0.00119990338784417,0.000117547855331425,0.0451779590543436,-0.364990689064789,-0.106322346778339,0.00120568345137904,0.382836378251543 +10.384,0.559810177711453,-0.292800351025287,-0.000365435839134801,8.65380710979013e-05,-0.000209504066039853,-0.000103459894755485,-0.00128889793282709,-0.359186761479588,-0.0259457786479522,0.000249168098398235,0.360124942637585 +10.386,0.559810275194225,-0.292800980732102,-0.000365553991241316,4.16891771104534e-06,-0.000236843658074663,1.37647407395817e-05,-0.038091167081643,0.0376372864992053,0.0586621484287995,0.000237279932427286,0.0794276400439255 +10.388,0.559810194387124,-0.29280129839992,-0.000365380780171842,-6.58265972286537e-05,-5.89549200430482e-05,0.000131188698959687,-0.0277316595034888,0.36922557686289,0.055651916194324,0.000158174897612487,0.374424501501506 +10.39,0.559810011887836,-0.292801216551782,-0.000365029236445477,-0.000106757720302898,0.00124005864937673,0.000236372405516853,0.0139540658264412,0.28765826375072,-0.0252033429360962,0.00126689169972344,0.289097217475924 +10.392,0.559809767356243,-0.292796338165322,-0.000364435290549775,-1.00103339228952e-05,0.0010916781349597,3.03753272153129e-05,0.0410782416276927,-0.132360317848493,-0.0957226060083242,0.00109214651839292,0.168432458205662 +10.394,0.5598099718465,-0.292796849839242,-0.000364907735136616,5.75552462078551e-05,0.000710617377982821,-0.000146518018516402,0.022026769033729,-0.196412089620246,-0.0680768598559076,0.000727844209983976,0.209039102444729 +10.396,0.559809997577228,-0.29279349569581,-0.000365021362623841,7.80967422120502e-05,0.000306029776478456,-0.000241932112208408,0.00395157914030057,-0.471922643179049,-0.0422902119192026,0.000397849811050868,0.473830199699188 +10.398,0.559810284233469,-0.292795625720136,-0.000365875463585449,7.33615627690557e-05,-0.00117707319473317,-0.000315678866193193,-0.033524064656233,-0.372599149665815,0.0392027792589692,0.0012208752480136,0.376152691262991 +10.4,0.559810291023479,-0.292798203988589,-0.000366284078088613,-5.5999516412867e-05,-0.00118436682218464,-8.51209951725489e-05,-0.0559115750919811,0.338405344010786,0.117615591680902,0.00118874147700389,0.362598550039535 +10.402,0.559810060235404,-0.292800363187425,-0.00036621594756614,-0.000150284737598943,0.000176548181310429,0.00015478350053057,-0.00612052634963646,0.338043150221955,0.0334943662918023,0.000278769967384761,0.339753594282782 +10.404,0.559809689884528,-0.292797497795864,-0.000365664944086491,-8.04816218114101e-05,0.00016780577870303,4.88564699946457e-05,0.0335277981558598,-0.0532406778663958,-0.0548749076847068,0.000192413683182519,0.083486157668553 +10.406,0.559809738308916,-0.29279969196431,-0.000366020521686161,-1.61735449755192e-05,-3.64145301551306e-05,-6.47161302082327e-05,0.0241420688995628,-0.103791607909016,-0.0433188995802814,7.59985465165156e-05,0.115030710786018 +10.408,0.559809625190348,-0.292797643453985,-0.000365923808607324,1.60866537868305e-05,-0.000247360652932987,-0.000124419128326461,0.0114188847960543,-0.374746622667283,-0.0290824694170468,0.000277355714819449,0.376046821762815 +10.41,0.559809802655532,-0.292800681406922,-0.000366518198199467,2.95019942086928e-05,-0.0015354010208241,-0.000181046007876407,-0.0238209293124072,-0.278113107456755,0.0449551975471762,0.00154631960453781,0.28272832719603 +10.412,0.559809743198325,-0.292803785058068,-0.00036664799263883,-7.91970634628301e-05,-0.00135981308276038,5.54016618623038e-05,-0.0462387576769044,0.424703290664081,0.119286377006997,0.00136324360957407,0.443553996207742 +10.414,0.559809485867278,-0.292806120659253,-0.000366296591552018,-0.000155453036498904,0.000163412141832038,0.00029609950015153,0.00123800138197313,0.413051649265975,0.0332392578261886,0.000372215110715363,0.414388761755914 +10.416,0.559809121386179,-0.2928031314095,-0.000365463594638224,-7.42450579349381e-05,0.000292393514303337,0.000188358693167044,0.0379962103308399,0.00862182252328399,-0.0564553848964601,0.000355647709293923,0.0685948854284041 +10.418,0.559809188887046,-0.292804951085195,-0.000365543156779349,-3.46819517549373e-06,0.000197899431925185,7.02779605656145e-05,0.0263447351295218,-0.0560746675481803,-0.0462481386962855,0.000210036199916463,0.0773130244043943 +10.42,0.559809107513399,-0.292802339811773,-0.000365182482795962,3.11338825831376e-05,6.80948441106408e-05,3.36613838192205e-06,0.0116845188663532,-0.340935542030788,-0.0335237401987644,7.49503657546734e-05,0.342778956410512 +10.422,0.559809313422576,-0.292804678705819,-0.000365529692225822,4.32698802899137e-05,-0.00116584273619781,-6.38170002294284e-05,-0.0245732650755502,-0.257581103054656,0.038796819375195,0.00116838956585712,0.261643007169995 +10.424,0.55980928059292,-0.292807003182718,-0.000365437750796879,-6.71591777190524e-05,-0.00096222956810787,0.000158553415882685,-0.045720086078166,0.156694063717472,0.0997075050397145,0.000977514850312273,0.191271907076117 +10.426,0.559809044785865,-0.292808527624091,-0.000364895478562291,-0.00013961046402273,-0.000539066481327996,0.000335013019929386,-0.0248263131996607,0.490094632682349,0.0768537294966976,0.000649859582123859,0.496704731755885 +10.428,0.559808722151064,-0.292809159448643,-0.000364097698717161,-0.000166464430517728,0.00099814896262218,0.000465968333869578,0.0214047347762872,0.402301573589088,-0.0178450763323887,0.00111406384304514,0.403265626519802 +10.43,0.559808378928143,-0.292804535028241,-0.000363031605226813,-5.39915249175908e-05,0.00107013981302818,0.000263632714599839,0.0509463024128758,-0.306260046691085,-0.110009268769153,0.00110345662007991,0.329382423853935 +10.432,0.559808506184964,-0.292804878889391,-0.000363043167858762,3.73207791337524e-05,-0.000226891224142025,2.59312587930129e-05,0.00787092430814919,-0.308823412401641,-0.0367945532028708,0.000231397705974815,0.311107201206043 +10.434,0.55980852821126,-0.292805442593138,-0.000362927880191641,-2.25078276849835e-05,-0.000165153836578798,0.000116454501788306,-0.0275797089818749,0.0762161882564199,0.0452631407363766,0.000203332346247605,0.0928347974047662 +10.436,0.559808416153653,-0.292805539504737,-0.000362577349851609,-7.29980567937352e-05,7.79735288836211e-05,0.0002069838217385,-0.0173946768447547,0.119263972198107,0.0313172383798326,0.000232918204448904,0.124528066180855 +10.438,0.559808236219033,-0.292805130699022,-0.000362099944904687,-9.20865350639945e-05,0.000311902052213576,0.000241723455307623,-0.00352120091418129,0.105554006053106,0.00508593727896579,0.000405207414740882,0.105735111518089 +10.44,0.559808047807513,-0.292804291896528,-0.000361610456030378,-8.70828604504588e-05,0.000500189553095997,0.00022732757085436,0.00582940744981778,0.0799676908094268,-0.0152945807867814,0.000556283055719974,0.0816255950425567 +10.442,0.559807887887591,-0.29280312994081,-0.00036119063462127,-6.87689052647259e-05,0.000631772815451248,0.000180545132160504,0.010291218578704,0.0506529793421637,-0.0276279495245037,0.000660653159699823,0.0586083363609722 +10.444,0.559807772731892,-0.292801764805266,-0.000360888275501736,-4.59179861356291e-05,0.00070280147046472,0.000116815772756309,0.0110953462181766,0.0206397860678301,-0.0331535706656974,0.000713921769595785,0.0405988512708475 +10.446,0.559807704215646,-0.292800318734928,-0.000360723371530244,-2.43875203920245e-05,0.000714331959722559,4.7930849497729e-05,0.00963069396453814,-0.0078021288180893,-0.0337120541274492,0.000716353450585336,0.0359183250420272 +10.448,0.55980767518181,-0.292798907477428,-0.000360696552103745,-7.39521027748077e-06,0.000671592955192366,-1.80324437534735e-05,0.00570010665751225,0.243270222809817,-0.0187968544765632,0.000671875699535848,0.244061906613994 +10.45,0.559807674634805,-0.292797632363107,-0.000360795501305258,-1.58709376196793e-06,0.00168741285096215,-2.72565684085487e-05,0.0265761048307051,0.144195105779394,-0.066002548784072,0.0016876337188443,0.160794447431176 +10.452,0.559807668833435,-0.292792157826024,-0.000360805578377379,9.89092090453279e-05,0.00124837337830988,-0.000282042638889732,0.0391197154392484,-0.550309854328284,-0.12110388621439,0.0012836538370833,0.564833992570465 +10.454,0.559808070271641,-0.292792638869594,-0.000361923671860817,0.000154891767995008,-0.00051382656635074,-0.000511672113266055,-0.0108880343630015,-0.524254927102124,-0.0231351475693929,0.000741496831803455,0.524878093404745 +10.456,0.559808288400507,-0.292794213132289,-0.000362852266830443,5.53570715933266e-05,-0.000848646330098384,-0.000374583229167294,-0.0469792914223399,-0.100552734805169,0.0744359569373381,0.00092928875735061,0.133636140263482 +10.458,0.559808291699928,-0.292796033454914,-0.000363422004777486,-3.30253976943307e-05,-0.00091603750557137,-0.000213928285516735,-0.0346231959977217,-0.0126514034422236,0.0694246785719177,0.000941265477880931,0.0786041328746056 +10.46,0.559808156298917,-0.292797877282311,-0.000363707979972511,-8.31357123976065e-05,-0.000899251943867295,-9.68845148795301e-05,-0.0180027610735621,0.296173315823786,0.0597242425983446,0.000908268800767927,0.302670972454039 +10.462,0.559807959157078,-0.29279963046269,-0.000363809542837004,-0.000105036441988571,0.000268655757723642,2.49686848766167e-05,0.0192818364955265,0.236654366315333,-0.0110563155054789,0.000289537571876519,0.237695856983896 +10.464,0.559807736153149,-0.29279680265928,-0.000363608105233004,-6.00836641550883e-06,4.73655213939336e-05,-0.000141109776901441,0.0424706289026038,-0.43159427678606,-0.0847386315517581,0.000148968326234393,0.441880085261974 +10.466,0.559807935123613,-0.292799441000604,-0.00036437398194461,6.48460736219008e-05,-0.00145772134942118,-0.000313985841330529,-0.00115405080630774,-0.392008339976461,-0.000205401915977683,0.00149256278071594,0.392010092515883 +10.468,0.559807995537443,-0.292802633544678,-0.000364864048598326,-1.06245696407393e-05,-0.00152066783851174,-0.000141931384565351,-0.034831547139632,0.0345060033914233,0.0885779436327256,0.0015273140065123,0.101242051759097 +10.47,0.559807892625334,-0.292805523671958,-0.000364941707482871,-7.44801149366119e-05,-0.0013196973358555,4.03259332003347e-05,-0.0233306910943416,0.117092949936835,0.0780190517330087,0.00132241238903511,0.142625567501649 +10.472,0.559807697616983,-0.292807912334022,-0.000364702744865525,-0.000103947334018096,-0.00105229603876445,0.000170144822366649,-0.00899312836698611,0.414461818674298,0.064515198026723,0.00107101879629958,0.419549384784508 +10.474,0.559807476835998,-0.292809732856113,-0.000364261128193405,-0.000110452628404552,0.000338149938841512,0.000298386725307198,0.0250876893564899,0.339688724593147,-0.00934729473423475,0.000464305720511331,0.340742121980561 +10.476,0.55980725580647,-0.292806559734266,-0.000363509197964296,-3.59657659210239e-06,0.000306458859608594,0.000132755643429697,0.0450501570978233,-0.345898624385565,-0.0864247719552789,0.000333997049175911,0.359366965946909 +10.478,0.559807462449692,-0.292808507020675,-0.000363730105619686,6.97479999867211e-05,-0.0010454445587006,-4.7312362513879e-05,-0.000361293391037484,-0.325063707808759,-0.00582865559898377,0.00104883629250016,0.325116160615532 +10.48,0.55980753479847,-0.292810741512501,-0.000363698447414351,-5.04175015625217e-06,-0.0009937959716263,0.000109441021033765,-0.0351037446888391,0.08259735946937,0.0791110278813668,0.000999816577953283,0.119637583622112 +10.482,0.559807442282691,-0.292812482204561,-0.000363292341535551,-7.0666978768682e-05,-0.000715055120823006,0.000269131749011694,-0.0245643769769603,0.147363647069665,0.0649941930249477,0.000767287134018022,0.162922368694121 +10.484,0.559807252130555,-0.292813601732984,-0.000362621920418305,-0.000103299258064083,-0.000404341383347706,0.000369417793133527,-0.0105252891124975,0.428168441490251,0.0482754301438691,0.000557343876693529,0.43100987593635 +10.486,0.559807029085659,-0.292814099570095,-0.000361814670363017,-0.000112768135218667,0.000997618645137809,0.000462233469587149,0.0233465495200254,0.338725331099845,-0.0282414112260924,0.00110526892377098,0.340701465525513 +10.488,0.559806801058014,-0.292809611258404,-0.000360772986539956,-9.91305998399137e-06,0.000950559941051526,0.00025645214822917,0.0432761709454083,-0.359394351039824,-0.107619009469636,0.000984596452675654,0.377649278736578 +10.49,0.559806989433419,-0.29281029733033,-0.0003607888617701,6.03365485629468e-05,-0.000439958759021328,3.17574317086516e-05,-0.00108059904774225,-0.34946410319348,-0.0287778561371415,0.000445210897441657,0.350648673345523 +10.492,0.559807042404208,-0.29281137109344,-0.000360645956813122,-1.42354561749618e-05,-0.000447296471722863,0.000141340723680565,-0.0346869552109173,0.0493351986832378,0.0556697879062503,0.000469312243606298,0.0820747950131197 +10.494,0.559806932491594,-0.292812086516217,-0.000360223498875378,-7.84112722807071e-05,-0.000242617964288399,0.000254436583333628,-0.0236392410368821,0.107737481547267,0.042348307111038,0.000360207966534079,0.118150572415534 +10.496,0.559806728759119,-0.292812341565297,-0.000359628210479787,-0.00010879242032248,-1.63465455338425e-05,0.000310733952124699,-0.00826409293081158,0.108687659806258,0.0148343170742018,0.000329634023234173,0.110006179777264 +10.498,0.559806497321913,-0.292812151902399,-0.00035898056306688,-0.00011146764400395,0.000192132674936584,0.000313773851630429,0.002959260739244,0.095800540486615,-0.00799917660411981,0.000384439891797239,0.096179455228205 +10.5,0.559806282888543,-0.292811573034597,-0.000358373115073266,-9.6955377365505e-05,0.000366855616412575,0.000278737245708223,0.00923759371773485,0.0764795453217333,-0.0232637195245484,0.000470826762874143,0.0804714523071992 +10.502,0.559806109500403,-0.292810684479934,-0.000357865614084046,-7.45172691329981e-05,0.000498050856223619,0.000220718973532204,0.0115230552460905,0.0534362825308469,-0.0317028769269391,0.000549840289594378,0.0631924797611677 +10.504,0.559805984819466,-0.292809580831172,-0.000357490239179137,-5.0863156381148e-05,0.000580600746535939,0.00015192573800048,0.0110974651274023,0.0289535868717376,-0.0348818871218238,0.000602300354824845,0.0466712971126025 +10.506,0.559805906047778,-0.292808362076948,-0.000357257911132045,-3.01274086233937e-05,0.000613865203710557,8.11914250449248e-05,0.00913689151421444,0.00512177501452046,-0.0343976752237913,0.000619943704361767,0.0359571331816556 +10.508,0.559805864309832,-0.292807125370358,-0.000357165473478957,-1.4315590324278e-05,0.000601087846594028,1.43350371052691e-05,0.00581601664051206,0.259200298689935,-0.0188788336127156,0.000601429155211308,0.259951978736633 +10.51,0.559805848785417,-0.292805957725561,-0.000357200570983623,-6.86334206134807e-06,0.00165066639847018,5.67609059407066e-06,0.0256125415529274,0.162992311640611,-0.065566022018814,0.0016506904260058,0.177542668623974 +10.512,0.559805836856464,-0.292800522704764,-0.000357142769116581,8.81345758874205e-05,0.0012530570931564,-0.000247929050969958,0.0363877632331225,-0.528824484341667,-0.122128653200069,0.00128038611226899,0.543962142510673 +10.514,0.55980620132372,-0.292800945497189,-0.000358192287187503,0.000138687710871126,-0.00046463153889625,-0.00048283852220615,-0.010891950535948,-0.503618472168259,-0.0273049349267678,0.000684287795163694,0.504475727430888 +10.516,0.559806391607307,-0.292802381230919,-0.000359074123205405,4.45667737436335e-05,-0.000761416795516413,-0.000357148790677017,-0.0442069718886618,-0.0826225199229517,0.0687065480264369,0.000842197715799832,0.116195210330257 +10.518,0.559806379590815,-0.292803991164371,-0.000359620882350212,-3.81401766835807e-05,-0.000795121618588167,-0.000208012330100311,-0.0321120127225204,0.00295840961442247,0.0638650614640753,0.00082276496698479,0.0715449482797223 +10.52,0.5598062390466,-0.292805561717394,-0.000359906172525806,-8.3881277146434e-05,-0.000749583157058724,-0.000101688544820744,-0.0149074807775853,0.0331163922396547,0.0422500430518264,0.000761085762676981,0.055713504251536 +10.522,0.559806044065706,-0.292806989496999,-0.000360027636529495,-9.77700997939153e-05,-0.000662656049629563,-3.90121578930239e-05,-0.00164495569943098,0.0492327552198303,0.0234469437893018,0.000670964962563501,0.0545557443249333 +10.524,0.559805847966201,-0.292808212341592,-0.000360062221157378,-9.04610999441602e-05,-0.000552652136179338,-7.9007696635056e-06,0.0064361639975824,0.0570473623651924,0.0108577153145101,0.000560062511143148,0.0584270120892751 +10.526,0.559805682221307,-0.292809200105544,-0.000360059239608149,-7.20254438035885e-05,-0.000434466600168818,4.41870336501164e-06,0.0100529804203409,0.0581299380887762,0.00402076395962603,0.000440418455740428,0.0591296766468052 +10.528,0.559805559864426,-0.292809950207993,-0.000360044546343918,-5.02491782628012e-05,-0.000320132383824258,8.18228617499674e-06,0.0104263707736996,0.054070626070308,0.0014775810080681,0.000324155322177716,0.0550865233680719 +10.53,0.559805481224594,-0.292810480635079,-0.000360026510463449,-3.03199607087945e-05,-0.00021818409588761,1.03290273972834e-05,0.00825695274653633,0.321980351321962,0.0145301832354214,0.000220522761915069,0.322413787129099 +10.532,0.559805438584583,-0.292810822944376,-0.000360003230234329,-1.72213672766595e-05,0.000967789021463449,6.63030191166759e-05,0.02749064802881,0.234699103526751,-0.034391549642846,0.000970210418362967,0.238793181670124 +10.534,0.559805412339125,-0.292806609478993,-0.000359761298386982,7.96426314064823e-05,0.000720612318219706,-0.000127237171174147,0.0368403740569407,-0.452432775358689,-0.0940994367530779,0.00073608040296949,0.463580989015585 +10.536,0.559805757155109,-0.292807940495103,-0.000360512178919026,0.000130140128951087,-0.000841942079971107,-0.000310094727895594,-0.0104649106325082,-0.427314143527908,-0.00358537922440123,0.000906621012032107,0.427457303783336 +10.538,0.55980593289964,-0.292809977247313,-0.000361001677298564,3.77829888764543e-05,-0.000988644255891738,-0.00014157868807175,-0.0437521088525363,-0.00986786644063598,0.0880458359744038,0.000999444617711399,0.0988113912945569 +10.54,0.559805908287064,-0.292811895072127,-0.000361078493671313,-4.48683064591165e-05,-0.000881413545733664,4.20886160021385e-05,-0.0325065249717789,0.0701314047355406,0.0788151236184881,0.000883557839150485,0.110394346806884 +10.542,0.559805753426414,-0.292813502901496,-0.000360833322834556,-9.22431110106471e-05,-0.000708118636949606,0.000173681806402168,-0.0164047343764776,0.368158763194235,0.0653251039104343,0.00073491915568953,0.374269100284248 +10.544,0.55980553931462,-0.292814727546675,-0.000360383766445704,-0.000110487243965019,0.000591221507043114,0.000303389031643847,0.018047871329367,0.297565121470316,-0.00888997550227618,0.000673643233463462,0.298244461540522 +10.546,0.559805311477439,-0.292811138015468,-0.00035961976670798,-2.00516256931871e-05,0.000482141848931525,0.000138121904393067,0.0377790834033036,-0.381431865276846,-0.0883999441278274,0.000501936739696565,0.393359984127988 +10.548,0.559805459108117,-0.292812798979279,-0.000359831278828132,4.06290896481784e-05,-0.000934505954064101,-5.02107448674237e-05,-0.00274670614031019,-0.356339058246644,-0.0117741659356298,0.000936735405547926,0.356544106402288 +10.55,0.559805473993797,-0.292814876039284,-0.00035982060968745,-3.10384502544315e-05,-0.000943214384055528,9.10252406505319e-05,-0.032844886449504,0.0546453934393203,0.0716137966150323,0.000948104611379426,0.0958824355950459 +10.552,0.559805334954316,-0.292816571836815,-0.00035946717786553,-9.07504561498229e-05,-0.000715924380306844,0.000236244441592674,-0.0218291103248808,0.399172263371871,0.0715800711368566,0.000759338396100562,0.406126473511584 +10.554,0.559805110991973,-0.292817739736805,-0.00035887563192108,-0.000118354891553945,0.000653474669431779,0.000377345525197927,0.0145000701376431,0.330957560176685,-0.00604869329102895,0.000763823716135221,0.331330266294266 +10.556,0.55980486153475,-0.292813957938138,-0.000357957795764738,-3.27501755992313e-05,0.000607905860400338,0.00021204966842855,0.0364821111237206,-0.352499812249224,-0.0912509645588148,0.00064466050832319,0.365942346006438 +10.558,0.55980497999127,-0.292815308113364,-0.000358027433247365,2.75735529409213e-05,-0.00075652457956496,1.23416669627077e-05,-0.00178155112190476,-0.333743979997404,-0.0195297417890415,0.000757127503826894,0.334319650818277 +10.56,0.559804971828962,-0.292816984036456,-0.000357908429096887,-3.98763800868495e-05,-0.000727070059589132,0.000133930701272393,-0.0304299467290892,0.0701650784314266,0.0607186356437051,0.000740377221410201,0.0976517926289962 +10.562,0.55980482048575,-0.292818216393602,-0.000357491710442276,-9.41462339754221e-05,-0.000475864265839284,0.000255216209537501,-0.0188808665160714,0.132425976864854,0.0461836332753011,0.000548129206013697,0.141513442653043 +10.564,0.559804595244026,-0.292818887493519,-0.000356887564258737,-0.000115399846151127,-0.000197366152129775,0.000318665234373576,-0.00435313821100972,0.410290538710353,0.0315516513740426,0.000392196448347743,0.411524947812335 +10.566,0.559804358886365,-0.292819005858211,-0.000356217049504781,-0.000111558786819467,0.00116529788900268,0.000381422815033714,0.0268935495956122,0.319649660681563,-0.0411294271817228,0.00123119774888479,0.323405006708286 +10.568,0.559804149008879,-0.292814226301963,-0.000355361872998602,-7.82564776868974e-06,0.00108123249059634,0.000154147525646703,0.0429395274961802,-0.377692638404332,-0.118271191744764,0.00109219338907867,0.398099996135578 +10.57,0.559804327583774,-0.292814680928248,-0.000355600459402194,6.01993231652352e-05,-0.000345472664614484,-9.16619519452904e-05,0.000706952524298485,-0.369356416410255,-0.0391477077993969,0.000362459975638421,0.371425908023719 +10.572,0.559804389806171,-0.292815608192622,-0.000355728520806384,-4.99783767149486e-06,-0.000396193175045178,-2.44330555093679e-06,-0.0304748295140711,0.0276652067677751,0.0475613301433728,0.000396232229981087,0.0628980049319718 +10.574,0.559804307592424,-0.292816265700948,-0.000355610232624398,-6.16999948910359e-05,-0.000234811837543395,9.85833686281798e-05,-0.0207406693417168,0.0868684281209367,0.0384622758321533,0.000262034671351215,0.0972401451620339 +10.576,0.559804143006192,-0.292816547439972,-0.000355334187331871,-8.7960515038353e-05,-4.87194625614693e-05,0.00015140579777766,-0.00690246903384414,0.0898499267696005,0.0149478457892765,0.00018175355247912,0.0913459988888716 +10.578,0.559803955750363,-0.292816460578799,-0.000355004609433288,-8.93098710264094e-05,0.000124587869534967,0.000158374751785279,0.00312430366301371,0.0797717279281282,-0.00454321325353749,0.000220410871558244,0.0799620574815653 +10.58,0.559803785766708,-0.292816049088494,-0.00035470068832473,-7.54633003862996e-05,0.000270367449151008,0.000133232944763512,0.00858468011260912,0.0637286577086084,-0.017168085039532,0.000310715762129913,0.066556605156073 +10.582,0.559803653897162,-0.292815379109002,-0.000354471677654233,-5.49711505759614e-05,0.000379502500369486,8.97024116271282e-05,0.0103682764596097,0.0441681502379563,-0.0236161699614352,0.000393815309293658,0.0511473375243812 +10.584,0.559803565882105,-0.292814531078492,-0.000354341878678222,-3.39901945478653e-05,0.000447040050102814,3.8768264917781e-05,0.00967816225772416,0.023151446336364,-0.0253744650248162,0.000450003464526734,0.0356864087216408 +10.586,0.559803517936384,-0.292813590948802,-0.000354316604594562,-1.6258501545069e-05,0.000472108285714932,-1.17954484721255e-05,0.00761812120331047,0.00259573022451329,-0.0239637277495446,0.000472535400703314,0.0252791185313308 +10.588,0.559803500848099,-0.292812642645349,-0.00035438906047211,-3.51770973461324e-06,0.000457422971000871,-5.70866460804294e-05,0.00505059559452389,-0.0159201519917895,-0.0206617752551419,0.000460984852074071,0.0265681898516835 +10.59,0.559803503865545,-0.292811761256918,-0.000354544951178884,3.94388083302432e-06,0.000408427677747781,-9.44425494926841e-05,0.00256867119241612,-0.0312826042917005,-0.0164233088482993,0.00041922323087008,0.0354249132178541 +10.592,0.559803516623623,-0.292811008934638,-0.000354766830670081,6.7569750350501e-06,0.000332292553834083,-0.000122779881473619,0.000516589451771246,-0.0428657972589935,-0.01189284653397,0.000354314686881418,0.0444880122953519 +10.594,0.559803530893445,-0.292810432086702,-0.000355036070704778,6.01023864010907e-06,0.000236964488711826,-0.000142013935628559,-0.000964271648640748,-0.050477182704537,-0.00745632343713967,0.000276326346539161,0.0510340332797519 +10.596,0.559803540664577,-0.292810061076684,-0.000355334886412595,2.89988844048753e-06,0.000130383823015957,-0.000152605175222175,-0.00187594528799864,-0.0542632949441946,-0.00330951759920576,0.000200740355090386,0.0543964820155098 +10.598,0.559803542492999,-0.29280991055141,-0.000355646491405667,-1.49354251188799e-06,1.99113089349745e-05,-0.000155252006025386,-0.00230523160282844,-0.054606921220943,0.000470942938275528,0.000156530751827382,0.0546575861635333 +10.6,0.559803534690407,-0.292809981431448,-0.000355955894436696,-6.3210379708252e-06,-8.80438618677911e-05,-0.000150721403469073,-0.00237699267213661,-0.0520336153955653,0.00386851976756197,0.000174667165195152,0.0522313380116671 +10.602,0.559803517208847,-0.292810262726858,-0.000356249377019544,-1.10015132004334e-05,-0.000188223152647264,-0.00013977792695514,-0.00222100765556682,-0.0471352346563431,0.00688643461265444,0.000234705895428834,0.0476873799111356 +10.604,0.559803490684354,-0.292810734324058,-0.000356515006144517,-1.52050685930955e-05,-0.000276584800493226,-0.000123175665018446,-0.001950760025739,-0.0405131973940952,0.0095242893285515,0.000303154400310362,0.0416633737830351 +10.606,0.559803456388572,-0.29281136906606,-0.000356742079679617,-1.88045533033886e-05,-0.000350275942223627,-0.000101680769640938,-0.00165247916045256,-0.0327405076244808,0.0117678621612922,0.00036522024292249,0.0348303618518612 +10.608,0.559803415466141,-0.292812135427827,-0.000356921729223081,-2.1814985234905e-05,-0.000407546830991135,-7.61042163732823e-05,-0.00138261695148442,-0.0243390478049719,0.0135887392475569,0.000415165225881826,0.0279097601570729 +10.61,0.559803369128631,-0.292812999253384,-0.00035704649654511,-2.43350211093256e-05,-0.000447632133443503,-4.73258126507167e-05,-0.00117072414956574,-0.0157676100300886,0.0149504371330845,0.000450784264018415,0.0217601399711868 +10.612,0.559803318126057,-0.292813925956361,-0.000357111032473684,-2.64978818331674e-05,-0.000470617271111482,-1.63024678409508e-05,-0.00102496854059696,-0.00741698311795659,0.0158170048213425,0.000471644489067527,0.0174997097290109 +10.614,0.559803263137104,-0.292814881722468,-0.000357111706416474,-2.84348952717149e-05,-0.00047730006591534,1.59422066346744e-05,-0.000938543485987471,0.000390775269729657,0.0161615116237735,0.00047841200877934,0.0161934563065421 +10.616,0.559803204386476,-0.292815835156625,-0.000357047263647145,-3.02520557771169e-05,-0.000469054170032564,4.83435786541362e-05,-0.000895853759227379,0.00740078593552545,0.0159727360175085,0.00047250830987483,0.0176267547298533 +10.618,0.559803142128881,-0.292816757939148,-0.000356918332101858,-3.2018310308624e-05,-0.000447696922173241,7.98331507047012e-05,-0.000877757914963055,0.0134227530410006,0.015259555857617,0.000455884895856237,0.0203419468863898 +10.62,0.559803076313234,-0.292817625944313,-0.000356727931044326,-3.37630874369703e-05,-0.000415363157868544,0.000109381802084625,-0.000865430511979708,0.0183277511500256,0.0140525954805038,0.000430849019512735,0.0231112715341888 +10.622,0.559803007076531,-0.29281841939178,-0.000356480804893519,-3.54800323565424e-05,-0.000374385917573147,0.00013604353262671,-0.000842912045717811,0.0220444754152387,0.0124034999996636,0.000399914354259338,0.0253084217068456 +10.624,0.559802934393105,-0.292819123487984,-0.000356183756913819,-3.71347356198411e-05,-0.000327185256207599,0.000158995802083274,-0.000798483522357517,0.0245548134290895,0.01038221737835,0.000365662201422694,0.0266714618302819 +10.626,0.559802858537589,-0.292819728132804,-0.000355844821685186,-3.86739664459721e-05,-0.0002761666638568,0.000177572402140106,-0.000725161715393763,0.0258886315857326,0.00807302273640173,0.00033059894117838,0.0271278602362539 +10.628,0.559802779697239,-0.292820228154639,-0.000355473467305259,-4.00353824814159e-05,-0.00022363072986468,0.000191287893028877,-0.000620501969250536,0.0261176963389728,0.00556974662398055,0.000296992581068399,0.0267121912654874 +10.63,0.559802698396059,-0.292820622655724,-0.00035507967011307,-4.11559743229751e-05,-0.000171695878500874,0.000199851388636035,-0.000486004118898208,0.0253487777434976,0.00297077392809427,0.000266671832889062,0.0255268923064417 +10.632,0.559802615073342,-0.292820914938153,-0.000354674061750715,-4.19793989570085e-05,-0.0001222356188907,0.000203170988741253,-0.000326278622171181,0.0237161047224459,0.000374176400778845,0.000240795072890793,0.0237213003211082 +10.634,0.559802530478463,-0.292821111598199,-0.000354266986158105,-4.24610888116597e-05,-7.68314596111007e-05,0.00020134809423915,-0.000148154905010823,0.0213734335473233,-0.00212669704849991,0.000219652162071721,0.0214794890957356 +10.636,0.559802445228987,-0.292821222263992,-0.000353868669373758,-4.2572018577052e-05,-3.67418847013786e-05,0.00019466420054725,4.0200461010898e-05,0.0184860567374556,-0.00444698267097004,0.000202624020865825,0.0190134574618453 +10.638,0.559802360190389,-0.292821258565738,-0.000353488329355917,-4.23002869676161e-05,-2.88723266128642e-06,0.000183560163555272,0.000230072148832467,0.0152230766048456,-0.00651332346217481,0.000188393163449265,0.0165595403629926 +10.64,0.559802276027839,-0.292821233812922,-0.000353134428719537,-4.16517299817222e-05,2.41504217179971e-05,0.000168610906698554,0.000412867719179568,0.0117502682375784,-0.00826607053639088,0.000175350355965809,0.0143724453563468 +10.642,0.559802193583469,-0.292821161964051,-0.000352813885729122,-4.0648816090898e-05,4.41138402890222e-05,0.000150495881409712,0.000580656051023584,0.00822378731432197,-0.00966071169677525,0.000162010393110822,0.0127002830570426 +10.644,0.559802113432574,-0.292821057357561,-0.000352532445193898,-3.93291057776281e-05,5.70455709752813e-05,0.000129968059911457,0.000726569103492841,0.00478493377906068,-0.0106685125542797,0.000147284324781396,0.0117149756317703 +10.646,0.559802036267046,-0.292820933781767,-0.000352294013489476,-3.77425396769257e-05,6.32535754052713e-05,0.000107821831192579,0.000845086493835007,0.00155608709252021,-0.0112764957588501,0.000130579712760197,0.0114146806710015 +10.648,0.559801962462416,-0.292820804343259,-0.000352101157869128,-3.59487598022885e-05,6.32699193453615e-05,8.48620768760615e-05,0.000932195619311555,-0.00136212427796051,-0.0114867744743185,0.000111789839059772,0.0116047558804625 +10.65,0.559801892472006,-0.29282068070209,-0.000351954565181972,-3.40137571996799e-05,5.78050782934299e-05,6.187473329531e-05,0.000985465743730042,-0.0038924401930809,-0.0113153954392114,9.12515499907485e-05,0.0120066817786807 +10.652,0.559801826407387,-0.292820573122946,-0.000351853658935947,-3.2006896827367e-05,4.77001585730327e-05,3.96004951192008e-05,0.00100402350322248,-0.00598143770624327,-0.0107907276889915,6.97706656561052e-05,0.0123784273753437 +10.654,0.559801764444419,-0.292820489901456,-0.000351796163201495,-2.99976631867904e-05,3.38793274684594e-05,1.87118225393488e-05,0.000988473386476447,-0.00759897031410607,-0.00995155501494008,4.89673455389131e-05,0.0125600508233771 +10.656,0.559801706416734,-0.292820437605636,-0.000351778811645789,-2.80530032814616e-05,1.73042773166118e-05,-2.05724940555175e-07,0.000940747764410983,-0.00873672226578607,-0.0088449219146794,3.29613611568313e-05,0.0124678773647523 +10.658,0.559801652232406,-0.292820420684347,-0.000351796986101258,-2.62346721291469e-05,-1.06756159468103e-06,-1.66678651193649e-05,0.000863929927599906,-0.00940604600457843,-0.00752387376533155,3.11000874133758e-05,0.0120759576347672 +10.66,0.559801601478046,-0.292820441875883,-0.000351845483106267,-2.45972835710624e-05,-2.03199067016978e-05,-3.03012200018781e-05,0.000762034345347214,-0.00963525922589643,-0.0060451498954173,4.40010102275297e-05,0.0114001207867187 +10.662,0.559801553843272,-0.292820501963973,-0.000351918190981265,-2.3186534747757e-05,-3.96085984982796e-05,-4.08484647010421e-05,0.000639782789244223,-0.00946657591552759,-0.00446693997156485,6.14414643139236e-05,0.0104870841653638 +10.664,0.559801508731907,-0.292820600310277,-0.000352008876965071,-2.20381524140858e-05,-5.8186210363804e-05,-4.81689798881355e-05,0.000502363588230878,-0.00895284283166568,-0.00284676296684504,7.86865036825943e-05,0.00940796595086782 +10.666,0.559801465690662,-0.292820734708815,-0.000352110866900818,-2.11770803948337e-05,-7.54199698249384e-05,-5.22355165684211e-05,0.0003552039495868,-0.00815423281327705,-0.00123954084583322,9.4155136735144e-05,0.00825555232116029 +10.668,0.559801424023585,-0.292820901990156,-0.000352217819031345,-2.06173366157381e-05,-9.08031416169231e-05,-5.312714327147e-05,0.000203746949864939,-0.00713503551728496,0.000304080846434504,0.000107204377004006,0.00714441808782671 +10.67,0.559801383221316,-0.292821097921381,-0.000352323375473904,-2.0362092595374e-05,-0.000103960111894075,-5.10191931826832e-05,5.32531657659992e-05,-0.00596065790822851,0.00173913406072184,0.000117580941282604,0.0062094175153354 +10.672,0.559801342575215,-0.292821317830604,-0.000352421895804075,-2.04043239526741e-05,-0.000114645773249834,-4.61706070285834e-05,-9.1377107269717e-05,-0.00469493187035922,0.00302741280655616,0.000125266574605543,0.00558712478331637 +10.674,0.55980130160402,-0.292821556504474,-0.000352508057902018,-2.07276010244529e-05,-0.00012273983937551,-3.89095419564599e-05,-0.000225751403679546,-0.00339779526388512,0.00413824690747858,0.000130417230722847,0.00535920365528308 +10.676,0.559801259664811,-0.292821808789961,-0.000352577533971901,-2.13073295673922e-05,-0.000128236954305373,-2.96176193986709e-05,-0.000346102181636365,-0.00212339697561133,0.0050489440657833,0.00013332637444128,0.00548820896245553 +10.678,0.559801216374701,-0.292822069452292,-0.000352626528379613,-2.21120097509988e-05,-0.000131233427277958,-1.87137656933199e-05,-0.000449373135926989,-0.000918647873063845,0.00574493585255512,0.00013439255350194,0.00583524961590769 +10.68,0.559801171216772,-0.29282233372367,-0.000352652389034674,-2.31048221111e-05,-0.000131911545797628,-6.63787598845296e-06,-0.000533271225786259,0.00017777478102175,0.00621962418807172,0.000134084115827131,0.0062449745486964 +10.682,0.559801123955413,-0.292822597098475,-0.000352653079883566,-2.42450946541436e-05,-0.000130522328153871,6.16473105896425e-06,-0.000596291585552722,0.00113598501438857,0.00647398307011681,0.000132898106346646,0.00659988502930737 +10.684,0.559801074236393,-0.292822855812983,-0.000352627730110439,-2.54899884533117e-05,-0.000127367605740073,1.92580562920229e-05,-0.000637709135500931,0.0019350354547724,0.00651592782508138,0.00013131305813001,0.00682703087545364 +10.686,0.559801021995459,-0.292823106568898,-0.000352576047658398,-2.6795931196147e-05,-0.000122782186334782,3.22284423592869e-05,-0.000657549001359537,0.00256269631210339,0.00635951432140376,0.000129738813416509,0.00688790283623374 +10.688,0.559800967052668,-0.292823346941728,-0.000352498816341001,-2.81201844587495e-05,-0.00011711682049166,4.46961135776352e-05,-0.000656529296205888,0.00301491710069723,0.00602399195023245,0.000128471152345633,0.00676825197944924 +10.69,0.559800909514721,-0.29282357503618,-0.000352397263204088,-2.94220483809703e-05,-0.000110722517931995,5.6324410160214e-05,-0.000635990024530142,0.00329502826067035,0.00553277071466203,0.000127661944556822,0.00647095405106078 +10.692,0.559800849364475,-0.2928237898318,-0.000352273518700361,-3.06641445568698e-05,-0.00010393670744898,6.68271964362809e-05,-0.000597802175816708,0.00341274485407474,0.00491233241410484,0.000127314583219177,0.00601125649320421 +10.694,0.559800786858143,-0.292823990783009,-0.000352129954418343,-3.18132570842379e-05,-9.70715385156913e-05,7.59737398166399e-05,-0.000544270337136304,0.00338303329099374,0.00419113661832284,0.000127306622207321,0.00541357281296788 +10.696,0.559800722111446,-0.292824178117954,-0.000351969623741094,-3.28412259054148e-05,-9.04045742850068e-05,8.35917429095704e-05,-0.000478025036217658,0.0032249023833409,0.00339855250364642,0.000127432776997457,0.00470942272867599 +10.698,0.55980065549324,-0.292824352401307,-0.000351795587446704,-3.37253572291084e-05,-8.41719289823292e-05,8.95679498312241e-05,-0.000401916007419699,0.00296017434522833,0.00256385281147768,0.000127454819390268,0.00393668767748855 +10.7,0.559800587210017,-0.29282451480567,-0.000351611351941769,-3.44488899350941e-05,-7.85638769040895e-05,9.38471541554845e-05,-0.000318903445321523,0.00261228779232192,0.00171529753422916,0.000127146754245024,0.00314133610877358 +10.702,0.55980051769768,-0.292824666656814,-0.000351420198830082,-3.50009710103943e-05,-7.37227778130426e-05,9.642913996814e-05,-0.000231956412410967,0.00220517504256938,0.000879327262913646,0.000126327728449208,0.0023853337671975 +10.704,0.559800447206133,-0.292824809696781,-0.000351225635381897,-3.53767155847379e-05,-6.97431767338129e-05,9.73644632071387e-05,-0.000143957103182522,0.00176225128240043,7.98873953100787e-05,0.000124881789713719,0.00176992520345016 +10.706,0.559800376190817,-0.292824945629521,-0.000351030740977254,-3.55767994231243e-05,-6.66737726834417e-05,9.67486895493803e-05,-5.76164740878076e-05,0.00130554158456943,-0.000662112776942783,0.000122765669266937,0.0014649750224892 +10.708,0.559800304898936,-0.292825076391872,-0.000350838640623699,-3.56071814810891e-05,-6.45210103955358e-05,9.47160120993679e-05,2.45987397118276e-05,0.000854965542806761,-0.00132919303862081,0.000120008145988077,0.00158060915829952 +10.71,0.559800233762092,-0.292825203713563,-0.000350651876928856,-3.5478404464277e-05,-6.32539105122135e-05,9.14319173948953e-05,0.000100525317233101,0.000427789508670877,-0.00190755635678625,0.000116702912975319,0.00195751895455684 +10.712,0.559800162985318,-0.292825329407514,-0.00035047291295412,-3.52050802121567e-05,-6.28098523608525e-05,8.70857866722237e-05,0.000168348258948197,3.82490601761519e-05,-0.00238719992645954,0.000112997386990393,0.00239343427229237 +10.714,0.559800092941771,-0.292825454952972,-0.000350303533782167,-3.48050114284843e-05,-6.31009142715089e-05,8.18831176890582e-05,0.000226631470534538,-0.000302662839235456,-0.00276190135692294,0.000109077766593002,0.00278766312940848 +10.716,0.559800023765272,-0.292825581811171,-0.000350145380483363,-3.42985543300183e-05,-6.40205037177947e-05,7.60381812445283e-05,0.00027433295912324,-0.000587252666641088,-0.00302908354821708,0.000105151418118754,0.00309765579253373 +10.718,0.559799955747553,-0.292825711034987,-0.000349999381057189,-3.37076795919914e-05,-6.5449924938073e-05,6.97667834961912e-05,0.00031080753942765,-0.000811043586457408,-0.00318958161792186,0.000101426349718799,0.00330572592981992 +10.72,0.559799888934554,-0.292825843610871,-0.000349866313349378,-3.30553241723078e-05,-6.7264678063624e-05,6.32798547728422e-05,0.000335795481698561,-0.000972572945790108,-0.00324732145687361,9.80894050915354e-05,0.00340642824446425 +10.722,0.559799823526257,-0.292825980093699,-0.000349746261638098,-3.23644976651973e-05,-6.9340216721233e-05,5.67774976686981e-05,0.000349401362013373,-0.00107309147331153,-0.00320893439685547,9.52848918013089e-05,0.00340159765186785 +10.724,0.559799759476563,-0.292826120971738,-0.000349639203358704,-3.16577187242545e-05,-7.15570439568697e-05,5.04441171854218e-05,0.00035206158821569,-0.00111618835008073,-0.00308332114180785,9.30979626698992e-05,0.00329798318041074 +10.726,0.559799696895382,-0.292826266321875,-0.000349544485169356,-3.09562513123341e-05,-7.38049701215574e-05,4.44442131014626e-05,0.000344505680923594,-0.00110736507464557,-0.00288118721588685,9.15464427936148e-05,0.00310583021843165 +10.728,0.559799635651558,-0.292826416191618,-0.000349461426506298,-3.02796960005602e-05,-7.59865042554514e-05,3.89193683218757e-05,0.000327710310280593,-0.0010535820583939,-0.00261456480684948,9.05843587459993e-05,0.00283784748188651 +10.73,0.559799575776598,-0.292826570267892,-0.000349388807696069,-2.96454100712119e-05,-7.80192983551326e-05,3.39859538740659e-05,0.00030285070284901,-0.000962798590853137,-0.00229633840415026,9.0116071346057e-05,0.00250835997040702 +10.732,0.559799517069917,-0.292826728268812,-0.000349325482690802,-2.90682931891638e-05,-7.98376986188653e-05,2.97340147052715e-05,0.000271248662416889,-0.000843526661723459,-0.00193978834643975,9.00174173156576e-05,0.002132578696059 +10.734,0.559799459503425,-0.292826889618687,-0.000349269871637248,-2.85604154215445e-05,-8.1393405002026e-05,2.62268004883077e-05,0.000234321402559131,-0.000704414086089167,-0.00155816409080945,9.01577992784237e-05,0.00172597249638173 +10.736,0.559799402828256,-0.292827053842432,-0.000349220575488848,-2.81310075789274e-05,-8.26553549632216e-05,2.35013583420344e-05,0.000193531142500578,-0.000553871233599634,-0.00116429877457967,9.04188870503422e-05,0.00130377117739827 +10.738,0.559799346979395,-0.292827220240106,-0.00034917586620388,-2.77862908515422e-05,-8.36088899364243e-05,2.15696053899896e-05,0.000150338005936204,-0.000399751128023655,-0.00077027104746879,9.0707068701218e-05,0.000880749661909515 +10.74,0.559799291683092,-0.292827388277991,-0.000349134297067288,-2.75296555551826e-05,-8.42543594753161e-05,2.04202741521596e-05,0.000106156652912558,-0.000249090029852353,-0.000387122220564442,9.09596977899121e-05,0.000472417920473163 +10.742,0.559799236860772,-0.292827557257544,-0.000349094185107271,-2.73616642398919e-05,-8.46052500558341e-05,2.00211165077313e-05,6.23181090034337e-05,-0.000107912144507389,-2.462920145381e-05,9.11457849447957e-05,0.000127024309508849 +10.744,0.559799182236435,-0.292827726698992,-0.000349054212601257,-2.72803831191689e-05,-8.46860080533456e-05,2.03217573463444e-05,2.00373259681494e-05,1.89013318979229e-05,0.000308862486799383,9.12628790077524e-05,0.000310088359232282 +10.746,0.55979912773924,-0.292827896001577,-0.000349012898077886,-2.72815149360193e-05,-8.45296447282424e-05,2.12565664549287e-05,-1.96127419860255e-05,0.000127680175460136,0.000606549294297628,9.13311749214906e-05,0.000620152346820273 +10.748,0.559799073110376,-0.29282806481757,-0.000348969186335438,-2.73588340871131e-05,-8.41752873515049e-05,2.27479545235357e-05,-5.57208029747115e-05,0.000215975307073612,0.000863223542128585,9.13862913041089e-05,0.000891574463987562 +10.75,0.559799018303904,-0.292828232702726,-0.000348921906259791,-2.75043981479181e-05,-8.3665743499948e-05,2.47094606234426e-05,-8.75503905484385e-05,0.000282516912641979,0.00107527694040456,9.14713397583077e-05,0.00111521360078674 +10.752,0.559798963092783,-0.292828399480544,-0.000348870348492944,-2.77090356493068e-05,-8.30452197009371e-05,2.70490622851534e-05,-0.000114546497287396,0.000327128265448302,0.00124065657226862,9.16294218157987e-05,0.00128816246351513 +10.754,0.559798907467761,-0.292828564883605,-0.000348813710010651,-2.79625841370676e-05,-8.2357230438155e-05,2.96720869125166e-05,-0.000136336421316054,0.000350603868863025,0.00135878105901962,9.18969654494091e-05,0.00140989242816233 +10.756,0.559798851242447,-0.292828728909466,-0.000348751660145294,-2.82543813345709e-05,-8.16428042254851e-05,3.24841865212313e-05,-0.000152725040947176,0.000354561456583554,0.00143042211755952,9.22988619666916e-05,0.00148160257796429 +10.758,0.559798794450236,-0.292828891454822,-0.000348683773264566,-2.85734843008565e-05,-8.09389846118203e-05,3.53937753827566e-05,-0.000163685412449664,0.000341276024792174,0.00145755939176238,9.2845476846903e-05,0.00150590226105863 +10.76,0.559798736948509,-0.292829052665405,-0.000348610085043763,-2.89091229843695e-05,-8.02777001263166e-05,3.83144240882802e-05,-0.000169345273914915,0.000313505877508404,0.0014432147031274,9.35320352740856e-05,0.00148655051591015 +10.762,0.559798678813744,-0.292829212565622,-0.000348530515568213,-2.92508653965161e-05,-7.96849611017868e-05,4.11666341952655e-05,-0.000169970218455477,0.000274317849685629,0.00139127289116472,9.43398003135749e-05,0.0014282088136921 +10.764,0.559798619945048,-0.292829371405249,-0.000348445418506982,-2.95890038581913e-05,-7.91804287275742e-05,4.38795156529385e-05,-0.000165944320781365,0.000226919826687903,0.0013062961181455,9.52389696329134e-05,0.00133620345517652 +10.766,0.559798560457728,-0.292829529287337,-0.000348354997505601,-2.99146426796415e-05,-7.87772817950353e-05,4.6391818667847e-05,-0.000157749251161707,0.000174506117889231,0.00119333654589855,9.6192238839604e-05,0.00121630149354505 +10.768,0.559798500286477,-0.292829686514376,-0.00034825985123231,-3.02200008628384e-05,-7.8482404256017e-05,4.86528618365343e-05,-0.000145942244403919,0.00012012109361875,0.00105775425571758,9.71588245855194e-05,0.00107451025184615 +10.77,0.559798439577725,-0.292829843216954,-0.000348160386058255,-3.04984116572571e-05,-7.82967974205604e-05,5.06228356907168e-05,-0.000131133985611323,6.65443637779921e-05,0.000905043639852445,9.80979770092182e-05,0.000916912353810489 +10.772,0.55979837829283,-0.292829999701566,-0.000348057359889548,-3.07445368052836e-05,-7.82162268009051e-05,5.22730363959437e-05,-0.000113967134340839,1.6200145391826e-05,0.000740673388073377,9.8972092088597e-05,0.00074956522079181 +10.774,0.559798316599578,-0.292830156081861,-0.000347951293912671,-3.09542801946206e-05,-7.8231996838993e-05,5.35855292430113e-05,-9.50955356161445e-05,-2.89081224323113e-05,0.000569942123883716,9.97487931557917e-05,0.000578543745116793 +10.776,0.55979825447571,-0.292830312629553,-0.000347843017772576,-3.11249189477481e-05,-7.83318592906343e-05,5.45528048914783e-05,-7.5165124124882e-05,-6.7238044992882e-05,0.000397853126311941,0.000100402436628596,0.000410436183462617 +10.778,0.559798192099902,-0.292830469409298,-0.000347733082693105,-3.12549406911201e-05,-7.85009490189645e-05,5.51769417482589e-05,-5.479705578183e-05,-9.77246790434748e-05,0.000229008444152574,0.000100914643214819,0.000254946460476881 +10.78,0.559798129455947,-0.292830626633349,-0.000347622310005583,-3.13441071708754e-05,-7.87227580068082e-05,5.54688386680885e-05,-3.4572553150167e-05,-0.000119774638115551,6.75245961514667e-05,0.000101274467392943,0.000141777277630976 +10.782,0.559798066723473,-0.29283078430033,-0.000347511207338433,-3.13932309037208e-05,-7.89800475714267e-05,5.54470401328647e-05,-1.50204640392249e-05,-0.000133240633803902,-8.30313378816052e-05,0.000101477865174897,0.000157711394346852 +10.784,0.559798003883023,-0.29283094255354,-0.000347400521845051,-3.14041890270324e-05,-7.9255720542024e-05,5.5136713316562e-05,3.39235583719688e-06,-0.000138380043543855,-0.000219684611641733,0.000101527087432043,0.000259657222355752 +10.786,0.559797941106717,-0.292831101323213,-0.000347290660485167,-3.1379661480372e-05,-7.9533567745602e-05,5.45683016862979e-05,2.02684952190071e-05,-0.000135800540942475,-0.000340076333419309,0.00010142963621099,0.000366748566964661 +10.788,0.559797878364377,-0.292831260687811,-0.000347182248638306,-3.13231150461563e-05,-7.97989227057938e-05,5.37764079828849e-05,3.52847612239331e-05,-0.000126396674376943,-0.00044246849326819,0.000101197369811382,0.000461518689982544 +10.79,0.559797815814257,-0.292831420518903,-0.000347075554853235,-3.12385224354762e-05,-8.003915444311e-05,5.27984277132246e-05,4.81942749562555e-05,-0.000111280713819273,-0.00052573272904641,0.000100845354364534,0.00053953775382013 +10.792,0.559797753410288,-0.292831580844428,-0.000346971054927453,-3.11303379463313e-05,-8.02440455610709e-05,5.16734770666995e-05,5.8826554738558e-05,-9.17117840004902e-05,-0.00058932431157301,0.000100391000696391,0.000599311904668982 +10.794,0.559797691292905,-0.292831741495086,-0.000346868860944968,-3.1003216216522e-05,-8.04060015791119e-05,5.04411304669328e-05,6.70855454521088e-05,-6.90258648850117e-05,-0.000633243774257747,9.98530527750188e-05,0.000640517539235209 +10.796,0.559797629397423,-0.292831902468435,-0.000346769290405585,-3.08619957645229e-05,-8.05201490206109e-05,4.91405019696688e-05,7.29456078908247e-05,-4.4569944948004e-05,-0.000657988386004628,9.92509250067818e-05,0.00066351809155456 +10.798,0.559797567844922,-0.292832063575682,-0.00034667229893709,-3.07114337849587e-05,-8.05842813589039e-05,4.78091769229146e-05,7.64460994506606e-05,-1.96423398379743e-05,-0.000664495646875004,9.86039348368281e-05,0.000669166864355492 +10.8,0.559797506551688,-0.29283222480556,-0.000346578053697894,-3.05562113667202e-05,-8.05987183799628e-05,4.64825193821679e-05,7.76848862981613e-05,4.55880818310912e-06,-0.000654081133867999,9.79308943372511e-05,0.000658694051873293 +10.802,0.559797445620077,-0.292832385970555,-0.000346486368859561,-3.04006942397661e-05,-8.05660461261715e-05,4.51928523874428e-05,7.68107522064921e-05,2.69777360262826e-05,-0.000628372511147525,9.72495959147252e-05,0.000633624259842911 +10.804,0.559797384948911,-0.292832547069745,-0.000346397282288344,-3.02489683578943e-05,-8.04908074358577e-05,4.3969029337578e-05,7.4014967765806e-05,4.67328120645672e-05,-0.000589242168946716,9.6576631279425e-05,0.000595708405884847 +10.806,0.559797324624203,-0.292832707933785,-0.000346310492742211,-3.01046343687028e-05,-8.03791148779131e-05,4.28358837116552e-05,6.95228041769233e-05,6.31379358428551e-05,-0.000538739898174,9.59270767426407e-05,0.000546864240125144 +10.808,0.559797264530373,-0.292832868586204,-0.000346225938753497,-2.99708771411866e-05,-8.02382556924863e-05,4.18140697448823e-05,6.35848595998003e-05,7.57137755269684e-05,-0.000479027394140291,9.53144668023422e-05,0.000489124579746011 +10.81,0.559797204740695,-0.292833028886808,-0.000346143236463231,-2.98502949303036e-05,-8.00762597758053e-05,4.09197741350942e-05,5.64683230730567e-05,8.4188937071758e-05,-0.000412315920989095,9.47505957890265e-05,0.000424594945020594 +10.812,0.559797145129193,-0.292833188891243,-0.000346062259656957,-2.97450038488944e-05,-7.99014999441993e-05,4.01648060609261e-05,4.84488421636785e-05,8.84924182631298e-05,-0.000340808394530848,9.42455653769206e-05,0.000355427292395719 +10.814,0.559797085760679,-0.292833348492808,-0.000345982577238987,-2.96564995616489e-05,-7.97222901027528e-05,3.9556540556971e-05,3.98026542280848e-05,8.87386032710574e-05,-0.000266646768033671,9.38076297873092e-05,0.000283829684664766 +10.816,0.559797026503195,-0.292833507780404,-0.000345904033494729,-2.9585793231982e-05,-7.95465455311149e-05,3.9098218988791e-05,3.07994324455946e-05,8.52058111478442e-05,-0.000191865517393068,9.34432597633173e-05,0.000212181554468909 +10.818,0.559796967417506,-0.29283366667899,-0.000345826184363032,-2.95333018318666e-05,-7.93814668581615e-05,3.87890784873988e-05,2.16962767229431e-05,7.83100390177441e-05,-0.000118351663543221,9.31569954836839e-05,0.000143562902234689 +10.82,0.559796908369988,-0.292833825306271,-0.000345748877180779,-2.94990081250902e-05,-7.9233305375044e-05,3.86248123346182e-05,1.27319890741414e-05,6.85756208762383e-05,-4.78116608804038e-05,9.29515157966969e-05,8.45616594000399e-05 +10.822,0.559796849421474,-0.292833983612211,-0.000345671685113694,-2.948237387557e-05,-7.91071643746564e-05,3.85978318438771e-05,4.12263278742984e-06,5.66039957873181e-05,1.82544595801658e-05,9.2827509111179e-05,5.96173945652996e-05 +10.824,0.559796790440492,-0.292834141734929,-0.000345594485853404,-2.94825175939405e-05,-7.90068893918947e-05,3.86978301729389e-05,-3.94190236008413e-06,4.30423544029006e-05,7.85722814936223e-05,9.27837780819132e-05,8.96760073033716e-05 +10.826,0.559796731491403,-0.292834299639769,-0.000345516893793002,-2.94981414850103e-05,-7.89349949570448e-05,3.89121209698516e-05,-1.13004883228769e-05,2.85530835086932e-05,0.000132105062132545,9.28171694155276e-05,0.000135627161937546 +10.828,0.559796672447926,-0.292834457474908,-0.000345438837369524,-2.9527719547232e-05,-7.889267705786e-05,3.9226250421469e-05,-1.78226461334209e-05,1.3785597672167e-05,0.000178059485554464,9.29227605979481e-05,0.000179479441202318 +10.83,0.559796613380525,-0.292834615210477,-0.000345359988791316,-2.9569432069544e-05,-7.88798525663562e-05,3.96243589120694e-05,-2.34090247186405e-05,-6.48994746832226e-07,0.000215885202943474,9.30938895577897e-05,0.000217151616347667 +10.832,0.559796554170198,-0.292834772994319,-0.000345280339933876,-2.96213556461066e-05,-7.88952730368473e-05,4.00897912332432e-05,-2.79913869893489e-05,-1.41992459544607e-05,0.000245268984813986,9.33224527056423e-05,0.000247269106931994 +10.834,0.559796494895103,-0.292834930791569,-0.000345199629626383,-2.96813976175014e-05,-7.8936649550174e-05,4.06054348513252e-05,-3.15318882082932e-05,-2.63905112952763e-05,0.000266123741094956,9.35990456479147e-05,0.000269281571286974 +10.836,0.559796435444608,-0.292835088740917,-0.000345117918194471,-2.97474831989398e-05,-7.90008350820284e-05,4.11542861976229e-05,-3.40215633443029e-05,-3.68374705739194e-05,0.000278573357957661,9.39133641861738e-05,0.000283050493330221 +10.838,0.55979637590517,-0.29283524679491,-0.000345035012481593,-2.98174838708786e-05,-7.90839994324697e-05,4.17197282831562e-05,-3.54780510558395e-05,-4.52520937476259e-05,0.000282933701645694,9.42544271567409e-05,0.000288717723082944 +10.84,0.559796316174672,-0.292835405076915,-0.000344951039281338,-2.98893954031631e-05,-7.91818434570189e-05,4.22860210042055e-05,-3.59433177665817e-05,-5.14469161716581e-05,0.000279690992588461,9.46110345741266e-05,0.000286645702236684 +10.842,0.559796256347588,-0.292835563522283,-0.000344865868397576,-2.99612571419449e-05,-7.92897870971564e-05,4.28384922535099e-05,-3.54805490543415e-05,-5.53341747422515e-05,0.000269477609497808,9.49720152781448e-05,0.000277378662258395 +10.844,0.559796196329644,-0.292835722236063,-0.000344779685312324,-3.00313175993805e-05,-7.94031801559879e-05,4.33639314421966e-05,-3.41708952766824e-05,-5.69211552804004e-05,0.000253046575875899,9.53266783527185e-05,0.000261610851389965 +10.846,0.559796136222318,-0.292835881135004,-0.000344692412671807,-3.00979407230517e-05,-7.95174717182779e-05,4.38506785570134e-05,-3.21102866518357e-05,-5.63021643196095e-05,0.000231245068232859,9.56650215812759e-05,0.000240156794194865 +10.848,0.559796075937881,-0.29283604030595,-0.000344604282598096,-3.01597587459879e-05,-7.96283888132664e-05,4.42889117151284e-05,-2.94058250005677e-05,-5.36478500600804e-05,0.000204987810584951,9.59781175764734e-05,0.000213922408476636 +10.85,0.559796015583283,-0.292836199648559,-0.000344515257024947,-3.02155640230539e-05,-7.97320631185182e-05,4.46706297993531e-05,-2.61723143124327e-05,-4.91925423918045e-05,0.000175230668512145,9.62582327130386e-05,0.000183876815968331 +10.852,0.559795955075625,-0.292836359234202,-0.000344425600078899,-3.02644480032376e-05,-7.98251589828336e-05,4.49898343891769e-05,-2.25289578659144e-05,-4.32202190703169e-05,0.000142945434135312,9.64991088971338e-05,0.000151026283868547 +10.854,0.559795894525491,-0.292836518949195,-0.00034433529768739,-3.03056798545176e-05,-7.99049439947996e-05,4.52424115358946e-05,-1.85960344379121e-05,-3.60498297968692e-05,0.000109095775820989,9.66959673814778e-05,0.000116392830651989 +10.856,0.559795833852905,-0.292836678853978,-0.000344244630432755,-3.03388321409892e-05,-7.9969358302021e-05,4.54262174924608e-05,-1.44921297184941e-05,-2.80204817682049e-05,7.46151690781016e-05,9.68456722759902e-05,8.10098307543822e-05 +10.858,0.559795773170162,-0.292836838826628,-0.00034415359281742,-3.03636483733916e-05,-8.00170259218724e-05,4.55408722122069e-05,-1.0331124844501e-05,-1.94772149797517e-05,4.03870235865617e-05,9.69466173818e-05,4.60131037651409e-05 +10.86,0.559795712398312,-0.292836998922082,-0.000344062466943906,-3.03801566403672e-05,-8.004726716194e-05,4.5587765586807e-05,0.00310775492840244,0.272347501700052,0.0151831576668869,9.69987797283343e-05,0.27278810109624 +10.862,0.559795651649536,-0.292837159015697,-0.000343971241755073,-1.79326286597832e-05,0.00100937298087822,0.000106273502879748,0.0177857678168541,0.196996406531075,-0.0295844999600589,0.00101511056102868,0.19999790089118 +10.864,0.559795640667797,-0.292832961430159,-0.000343637372932387,4.07629146270728e-05,0.000707938358962623,-7.27502342534683e-05,0.0178510896828318,-0.471960105542088,-0.09351207553872,0.000712833032261778,0.48146600180877 +10.866,0.559795814701194,-0.292834327262261,-0.000344262242692087,5.34717300715363e-05,-0.000878467441289929,-0.000267774799275091,-0.0141649971474602,-0.441966015375641,-0.0168886772483493,0.000919928048517998,0.442515348107167 +10.868,0.559795854554717,-0.292836475299924,-0.000344708472129487,-1.5897073962762e-05,-0.00105992570253974,-0.000140304943246858,-0.0283099300946102,0.247489968272591,0.0841106339941561,0.0010692898058826,0.262920777589807 +10.87,0.559795751112898,-0.292838566965071,-0.000344823462465074,-5.97679903069425e-05,0.000111492431800765,6.86677367016462e-05,-0.000102287990579442,0.530099799486704,0.0495159633850892,0.000143937601334417,0.532407398998766 +10.872,0.559795615482756,-0.292836029330196,-0.000344433801182681,-1.63062259250797e-05,0.00106047349540684,5.77589102934769e-05,0.0275327995749646,-0.184932921691624,-0.0803848439505203,0.00106217042850129,0.203518951733702 +10.874,0.559795685887995,-0.29283432507109,-0.0003445924268239,5.03632079929039e-05,-0.000628239254965648,-0.000252871639100399,0.00549415644923844,-0.810723884047028,-0.0876312502484501,0.000679091363559022,0.815464676083209 +10.876,0.559795816935588,-0.292838542287216,-0.000345445287739082,5.67039987187164e-06,-0.00218242204078091,-0.000292766090700285,-0.0375059898138879,-0.361098816743637,0.0597331103998283,0.00220197867868537,0.367922681012754 +10.878,0.559795708569594,-0.292843054759253,-0.000345763491186701,-9.96607512626313e-05,-0.00207263452194004,-1.39391975011125e-05,-0.0419589256811421,0.135809652510002,0.130657006970596,0.00207507600538072,0.19307010806885 +10.88,0.559795418292583,-0.292846832825304,-0.000345501044529087,-0.000162165302852753,-0.00163918343074072,0.000229861937182272,-0.0186220759229734,0.238368843077058,0.0986040451260294,0.00166314654051573,0.258629551244231 +10.882,0.559795059908383,-0.292849611492976,-0.000344844043437972,-0.000174149054954517,-0.00111915914963191,0.000380476983002962,0.00605310512132306,0.53624503566086,0.0700816005071441,0.00119482543919244,0.540838986281657 +10.884,0.559794721696363,-0.292851309461903,-0.000343979136597075,-0.000137952882367463,0.000505796711902482,0.000510188339210817,0.0332293791233044,0.458407874576081,-0.0096155662650927,0.000731541832701005,0.459711246572105 +10.886,0.559794508096853,-0.292847588306128,-0.000342803290081128,-4.1231538461255e-05,0.000714472348673024,0.000342014717942578,0.0376070851126827,-0.231655660893471,-0.0980052557979571,0.000793186512789754,0.254329841423861 +10.888,0.559794556770209,-0.292848451572508,-0.000342611077725305,1.24754580832512e-05,-0.0004208259316713,0.000118167316019032,0.00586745652064864,-0.237501338363391,-0.0373413442745093,0.000437279791891355,0.240490516991109 +10.89,0.559794557998686,-0.292849271609855,-0.000342330620817052,-1.7761712378663e-05,-0.000235533004780434,0.000192649340844557,-0.0144835632584527,0.134742402433554,0.0396860274590964,0.000304803286227962,0.141210018744109 +10.892,0.55979448572336,-0.292849393704527,-0.000341840480361927,-4.54587949505531e-05,0.000118143678062856,0.0002769114258554,-0.00944583625206032,0.171981927307012,0.0307861651527361,0.000304473920843554,0.174970840735097 +10.894,0.559794376163506,-0.292848799035143,-0.000341222975113631,-5.55450573869002e-05,0.000452394704447538,0.000315794001455488,0.0019054591932073,0.424968491830645,0.0237221071987206,0.000554501644152259,0.425634336248261 +10.896,0.55979426354313,-0.292847584125709,-0.000340577304356104,-3.78369581777213e-05,0.00181801764538601,0.000371799854650314,0.0211328598925793,0.318295860314686,-0.0397125141122099,0.00185603203804703,0.321459073970262 +10.898,0.559794224815673,-0.292841526964561,-0.00033973577569503,2.89863821834078e-05,0.00172557814570614,0.000156943945006666,0.0222619663398086,-0.385971224210861,-0.117227206278111,0.00173294303113662,0.403994553126545 +10.9,0.559794379488659,-0.292840681813126,-0.000339949528576078,5.12109071815032e-05,0.00027413274854273,-9.71089704620795e-05,-0.00834292649548409,-0.394127111669108,-0.0499490214736039,0.000295298955267622,0.397367197087672 +10.902,0.559794429659302,-0.292840430433567,-0.000340124211576878,-4.38532379853966e-06,0.000149069699029186,-4.2852140887816e-05,-0.0254467764776444,-0.0145761216429901,0.0315237502646715,0.00015516865731242,0.043055180710384 +10.904,0.559794361947364,-0.29284008553433,-0.000340120937139629,-5.05761987290632e-05,0.000215828261970776,2.89860305965926e-05,-0.0132472854214057,0.30926074027708,0.0416529754784881,0.000223562028334317,0.312334222290762 +10.906,0.559794227354507,-0.292839567120519,-0.000340008267454492,-5.73744654841565e-05,0.00138611266013737,0.000123759761026118,0.0118191623710321,0.234488060892098,-0.0214418471580469,0.0013928088936864,0.235762796279731 +10.908,0.559794132449502,-0.29283454108369,-0.000339625898095525,-3.29954924493983e-06,0.00115378050553906,-5.67813580355854e-05,0.0184460740501624,-0.443135773787378,-0.101390938800167,0.00115518157213815,0.454961200685049 +10.91,0.55979421415631,-0.292834951998497,-0.000340235392886634,1.64098307164851e-05,-0.000386430435011946,-0.000281803994174507,-0.0074551656653582,-0.427235073558506,-0.0361930309706731,0.000478551203927407,0.428830179750078 +10.912,0.559794198088825,-0.29283608680543,-0.000340753114072223,-3.31202119063826e-05,-0.000555159788695531,-0.000201553481918326,-0.0215469354858418,-0.0265937520477699,0.044611609792563,0.000591543020831614,0.0562289409921011 +10.914,0.559794081675462,-0.292837172637652,-0.000341041606814307,-6.97779112268725e-05,-0.000492805443203014,-0.000103357555004275,-0.0119847703566814,0.0431576908586049,0.0399684822833877,0.000508339400324395,0.0600308302190364 +10.916,0.55979391897718,-0.292838058027203,-0.00034116654429224,-8.10592933331029e-05,-0.00038252902526113,-4.16795527847929e-05,0.00288340748499862,0.329591084518364,0.0376060509694242,0.000393238158528941,0.331742086721343 +10.918,0.559793757438289,-0.292838702753753,-0.000341208325025447,-5.82442812868742e-05,0.000825558894870884,4.70666488734724e-05,0.0274157687246672,0.527675668493617,-0.00518985114433012,0.000828948221928992,0.528412878391368 +10.92,0.559793686000055,-0.292834755791623,-0.000340978277696746,2.86037815655536e-05,0.00172817364871311,-6.24389573621111e-05,0.0420007595508624,-0.220430146601107,-0.121842881148213,0.00172953778791407,0.255341342167563 +10.922,0.559793871853415,-0.292831790059158,-0.000341458080854895,0.000109758756916557,-5.61616915334468e-05,-0.000440304875719326,0.0100960770368941,-0.869000896519725,-0.115304330249579,0.000457241187884443,0.876675297643275 +10.924,0.559794125035082,-0.292834980438389,-0.000342739497199623,6.89880897131255e-05,-0.00174782993736541,-0.000523656278360376,-0.0365765358417742,-0.43713144762942,0.043581787690897,0.00182589286222913,0.440818690278794 +10.926,0.559794147805774,-0.292838781378907,-0.000343552705968336,-3.65473864505239e-05,-0.00180468748205093,-0.000265977724955757,-0.0440717294533556,0.0500319746812749,0.125496238866936,0.00182454837411902,0.142108486014258 +10.928,0.559793978845537,-0.292842199188317,-0.000343803408099447,-0.000107298828100356,-0.00154770203864025,-2.1671322892466e-05,-0.0200212029663556,0.42309477717498,0.118476346888486,0.00155156833080557,0.439825742553806 +10.93,0.559793718610462,-0.292844972187062,-0.000343639391259906,-0.000116632198315937,-0.000112308373351201,0.000207927662598135,0.0130233422310312,0.379269922527129,0.0379413029787398,0.000263533969883058,0.381385400937589 +10.932,0.559793512316743,-0.292842648421811,-0.000342971697449054,-5.52054591762368e-05,-3.06223485318955e-05,0.000130093889022477,0.023450590261315,-0.280534607446862,-0.0570722040746593,0.000144602181565357,0.287240026174816 +10.934,0.559793497788625,-0.292845094676456,-0.000343119015703816,-2.28298372706462e-05,-0.00123444680313902,-2.03611537005788e-05,-2.99226616320528e-06,-0.259844290723182,-0.00468767394865057,0.00123482577225695,0.259886570867823 +10.936,0.559793420997394,-0.292847586209023,-0.000343053142063857,-5.52174282408896e-05,-0.00106999951142451,0.000111343193227876,-0.0137094465294004,0.134979456584169,0.0661842832032501,0.00107719321642331,0.150956159089412 +10.938,0.559793276918912,-0.292849374674502,-0.000342673642930905,-7.7667623388242e-05,-0.00069452897680241,0.000244375979112393,-0.00613865754062328,0.191357564599579,0.05391491088824,0.000740352874316106,0.198902534579049 +10.94,0.559793110326901,-0.292850364324931,-0.000342075638147407,-7.977205840338e-05,-0.000304569253026277,0.000327002836780812,0.00242365888470628,0.186980053537602,0.0294112445101146,0.000453934870277219,0.18929457426706 +10.942,0.559792957830678,-0.292850592951514,-0.000341365631583782,-6.79729878494179e-05,5.3391237347915e-05,0.000362020957152838,0.0114207130350016,0.437308600574517,0.0242430841582099,0.000372196352374087,0.438128944435508 +10.944,0.559792838434949,-0.292850150759981,-0.000340627554318795,-3.40892062633584e-05,0.00144466514927238,0.000423975173413684,0.025740086909141,0.332854351775626,-0.033942062307448,0.00150597955337282,0.335569121290599 +10.946,0.559792821473853,-0.292844814290917,-0.000339669730890127,3.49873597871347e-05,0.00138480864445027,0.000226252707923061,0.0216852383827504,-0.368575326002785,-0.107876815922901,0.00140360585098937,0.384649747062752 +10.948,0.559792978384388,-0.292844611525403,-0.000339722543487103,5.26517472676337e-05,-2.96361547386005e-05,-7.53209027787053e-06,-0.009534899370054,-0.375977046478736,-0.0401866398925304,6.0887113102684e-05,0.378238839638029 +10.95,0.559793032080842,-0.292844932835536,-0.000339699859251238,-3.15223769309404e-06,-0.000119099541465175,6.55061483528857e-05,-0.0260277474295466,0.00376876834254112,0.0409941433438059,0.000135962100791798,0.0487048974905862 +10.952,0.559792965775438,-0.292845087923569,-0.000339460518893692,-5.14592424505412e-05,-1.45610813684376e-05,0.000156444483097335,-0.0141234963585455,0.328448055350667,0.0510422102301582,0.000165332861270209,0.332690404788302 +10.954,0.559792826243873,-0.292844991079861,-0.000339074081318849,-5.96462231272698e-05,0.00119469267993735,0.000269674989273496,0.00943757574867407,0.25548414983942,-0.0125633216651141,0.00122620262243599,0.255966903537243 +10.956,0.559792727190545,-0.29284030915285,-0.000338381818936598,-1.37089394558491e-05,0.00100737551798913,0.000106191196436884,0.0142502444983074,-0.419767767136131,-0.094903720746645,0.00101304982082105,0.430598146775241 +10.958,0.559792771408115,-0.292840961577789,-0.000338649316533102,-2.64524513404663e-06,-0.000484378388606992,-0.000109939893713042,-0.00949329425486765,-0.403919553019959,-0.0342942116596863,0.000496705346157016,0.405483934208264 +10.96,0.559792716609565,-0.292842246666404,-0.00033882157851145,-5.16821164753324e-05,-0.000608302694091245,-3.09856502019069e-05,-0.0210003058970281,-0.00465729391516052,0.0426314447510956,0.000611280066189363,0.0477508462327806 +10.962,0.559792564679649,-0.292843394788566,-0.000338773259133909,-8.66464687221498e-05,-0.000503007564267632,6.0585885291321e-05,-0.0111186175752371,0.0639449285640669,0.0355574960612556,0.000513998900532878,0.0740061691482149 +10.964,0.55979237002369,-0.292844258696661,-0.000338579234970285,-9.6156586776276e-05,-0.000352522979835006,0.0001112443340431,1.08872216797415e-05,0.0768468191476684,0.0156139819988306,0.000381960524595027,0.0784170272677169 +10.966,0.559792180053302,-0.292844804880485,-0.000338328281797737,-8.66029198354308e-05,-0.000195620287676856,0.000123041813286664,0.0116599570901185,0.34710722640958,0.0149541384336458,0.000246792727793321,0.347624808495291 +10.968,0.55979202361201,-0.292845041177812,-0.000338087067717138,-4.95167584158073e-05,0.00103590592580316,0.000171060887777676,0.0273051514870841,0.264115167535109,-0.0383276346754226,0.00105110171905739,0.268274860170766 +10.97,0.559791981986268,-0.292840661256782,-0.000337644038246626,2.26176861128938e-05,0.000860840382463463,-3.02687254150091e-05,0.0234896594883457,-0.415666720033578,-0.1077067009357,0.000861669263431853,0.430036416682127 +10.972,0.559792114082755,-0.292841597816282,-0.000338208142618798,4.4441879537565e-05,-0.000626760954330965,-0.000259765915965078,-0.00636442289148162,-0.403568522915765,-0.0362772187272621,0.000679913748668071,0.40524572195859 +10.974,0.559792159753786,-0.292843168300599,-0.000338683101910486,-2.84000545302992e-06,-0.000753433709199417,-0.000175377600324042,-0.0219404562087861,-0.00648666640193217,0.0489010548582082,0.000773581102719285,0.053988643490137 +10.976,0.559792102722733,-0.292844611551119,-0.000338909653020095,-4.33199452976088e-05,-0.000652707619938702,-6.41616965321794e-05,-0.0148722804349557,0.0622432335186518,0.0475229502919832,0.000657282723102107,0.0797109506193954 +10.978,0.559791986474005,-0.292845779131079,-0.000338939748696615,-6.23291271928463e-05,-0.000504460775124838,1.47142008438699e-05,-0.000580813203083288,0.348345793328703,0.0464687364316841,0.000508509686675335,0.351432031180053 +10.98,0.559791853406224,-0.292846629394219,-0.000338850796216719,-4.56431981099417e-05,0.000740675553375955,0.000121713249194537,0.0187080397562281,0.275912399479793,-0.0116141901746929,0.000751995805794136,0.276789689749513 +10.982,0.559791803901213,-0.292842816428865,-0.000338452895699837,1.25030318320909e-05,0.000599188822794705,-3.17425598549172e-05,0.0181109361535581,-0.394959344809242,-0.0868372910401622,0.00060015927991929,0.404798227732901 +10.984,0.559791903418352,-0.292844232638928,-0.000338977766456139,2.68005465042827e-05,-0.000839161825860838,-0.000225635914966074,-0.00840179292111073,-0.376664617819044,-0.0212607063005249,0.000869380472174066,0.377357711029539 +10.986,0.559791911103399,-0.292846173076169,-0.000339355439359701,-2.11041398523483e-05,-0.000907469648481307,-0.000116785385057007,-0.021499071550806,0.0238072722196,0.0591317819310369,0.000915196904385394,0.0672723117071542 +10.988,0.559791819001792,-0.292847862517522,-0.000339444907996367,-5.91957396989316e-05,-0.000743932736982449,1.08912127580475e-05,-0.00877794598813222,0.364734919156026,0.0701000568504071,0.000746363632064185,0.371513972224402 +10.99,0.55979167432044,-0.292849148807117,-0.000339311874508669,-5.62159238048733e-05,0.000551470028142636,0.00016361484234459,0.0132810860364844,0.304005375390619,0.00807310774827804,0.000577969928858171,0.304402415531505 +10.992,0.559791594138097,-0.292845656637409,-0.000338790448626988,-6.07139555297631e-06,0.000472088764580433,4.31836437511704e-05,0.0154665856164054,-0.362740711908773,-0.0737437671196795,0.000474098608492651,0.370483714265168 +10.994,0.559791650034858,-0.292847260452058,-0.000339139139933664,5.65041866074152e-06,-0.000899492819492297,-0.000131360226134095,-0.00833207951244942,-0.343624542393343,-0.014504969401802,0.000909051576402156,0.344031457604364 +10.996,0.559791616739772,-0.292849254608687,-0.000339315889531525,-3.93997136027703e-05,-0.000902409404992786,-1.4836233856031e-05,-0.0196041055125452,0.0552160422315083,0.0609374258969538,0.000903390937239491,0.0845369868614056 +10.998,0.559791492436003,-0.292850870089678,-0.000339198484869088,-7.27660033894653e-05,-0.00067862865056619,0.000112389477453802,-0.0109783337767856,0.121511168880216,0.0526153711051624,0.000691710294314681,0.132867848826136 +11,0.559791325675758,-0.29285196912329,-0.000338866331621709,-8.33130487099079e-05,-0.000416364729471976,0.000195625250564595,-0.000996865902325394,0.1302533270513,0.030800819448777,0.00046751458874785,0.133849219005104 +11.002,0.559791159183808,-0.292852535548596,-0.00033841598386683,-7.67534669987664e-05,-0.000157615342361046,0.000235592755248896,0.0055580208005458,0.123715580262917,0.0118941450855141,0.000293662454477392,0.124410237047941 +11.004,0.55979101866189,-0.292852599584659,-0.000337923960600714,-6.10809655077272e-05,7.8497591579638e-05,0.000243201830906647,0.00848756410987801,0.109113101633827,-0.00161113225974838,0.000262754422964686,0.109454572493942 +11.006,0.559790914859946,-0.29285222155823,-0.000337443176543203,-4.28032105592581e-05,0.000278837064174216,0.000229148226209903,0.00870980954720074,0.0889996573313701,-0.0103331278264775,0.000363443438194474,0.0900198495784576 +11.008,0.559790847449048,-0.292851484236402,-0.000337007367695874,-2.62417273189126e-05,0.000434496220905237,0.000201869319600723,0.00728666612464753,0.0655366290715674,-0.0154650102472108,0.00047981956653483,0.0677296965534517 +11.01,0.559790809893037,-0.292850483573346,-0.000336635699264801,-1.36565460606712e-05,0.000540983580460456,0.000167288185221067,0.00513465083645916,0.0408470260844597,-0.0181706515702025,0.00056642305081333,0.0450001861956435 +11.012,0.559790792822864,-0.292849320302081,-0.00033633821495499,-5.70312397307822e-06,0.000597884325243058,0.000129186713319921,0.00292570645488219,0.0167774268956848,-0.0193744551192339,0.000611708589847161,0.0257955678880577 +11.014,0.559790787080541,-0.292848092036045,-0.000336118952411521,-1.9537202411437e-06,0.000608093288043188,8.97903647441399e-05,0.00596206831820975,0.26037890127674,-0.00445791217396715,0.000614689819003733,0.260485299910885 +11.016,0.559790785007983,-0.292846887928928,-0.000335979053496013,1.81451492997581e-05,0.0016393999303499,0.000111355064624054,0.015707920582305,0.168752541988799,-0.0453087789240271,0.00164327761759594,0.175433875418312 +11.018,0.559790859661138,-0.292841534436324,-0.000335673532153025,6.08779620880973e-05,0.00128310345599861,-9.14447509520289e-05,0.009098284368962,-0.498715603466854,-0.106900922476107,0.00128779763454522,0.510125317099641 +11.02,0.559791028519831,-0.292841755515104,-0.000336344832499821,5.45382867756021e-05,-0.000355462483517294,-0.000316248625280326,-0.0166030853232554,-0.483334265062619,-0.0369165628708544,0.000478895807983737,0.485026294998602 +11.022,0.559791077814285,-0.292842956286258,-0.000336938526654146,-5.5343792049171e-06,-0.000650233604251654,-0.00023911100243543,-0.0267373409454315,-0.086652716658317,0.0447987672236205,0.0006928264147223,0.101145974956273 +11.024,0.559791006382314,-0.292844356449521,-0.000337301276509563,-5.24110770061594e-05,-0.000702073350150678,-0.000137053556385784,-0.0168548213511132,-0.00832331792384918,0.0427310009589769,0.000717243046186391,0.0466829847695656 +11.026,0.559790868169977,-0.292845764579658,-0.000337486740879689,-7.29536646093623e-05,-0.000683526875947047,-6.81869985995418e-05,-0.00482357900150161,0.0181855595547715,0.0254697286221753,0.000690782667776109,0.0316652580408107 +11.028,0.559790714567656,-0.292847090557025,-0.000337574024503962,-7.17053930121637e-05,-0.0006293311119316,-3.51746418970938e-05,0.00405129382818981,0.0316843687155136,0.00977498545128235,0.000634378883053874,0.0334045287821236 +11.03,0.559790581348405,-0.292848281904106,-0.000337627439447277,-5.67484892966048e-05,-0.000556789401085006,-2.90870567944167e-05,0.00902746678799787,0.037137344088895,-0.00116731503889688,0.00056042919719712,0.0382366330498047 +11.032,0.559790487573699,-0.29284931771463,-0.000337690372731139,-3.55955258601762e-05,-0.000480781735576036,-3.98439020526809e-05,0.0106996391052692,0.0357278998677688,-0.00748104097159612,0.000483741310263607,0.0380385472903872 +11.034,0.559790438966302,-0.292850205031049,-0.000337786815055488,-1.39499328755137e-05,-0.000413877801613883,-5.90112206808112e-05,0.0100297273680754,0.0288607920929469,-0.0101720991040122,0.000418296258006466,0.0322026761541968 +11.036,0.559790431773967,-0.292850973225836,-0.000337926417613862,4.52338361212107e-06,-0.000365338567204261,-8.05322984687251e-05,0.00798820766478834,0.0182761391958194,-0.0104098887738957,0.000374136580385854,0.022498766852555 +11.038,0.559790457059836,-0.292851666385317,-0.000338108944249363,1.80028977836362e-05,-0.000340773244830614,-0.000100650775776389,0.0101100466332027,0.243689298028788,0.00398671437962844,0.000355782359575883,0.243931508641737 +11.04,0.559790503785558,-0.292852336318815,-0.000338329020716968,4.49635701449452e-05,0.000609418624911218,-6.4585440950206e-05,0.0168518308474365,0.165865321283264,-0.0304130537854592,0.000614478691421917,0.169470477806219 +11.042,0.559790636914117,-0.292849228710818,-0.000338367286013164,8.54102211733748e-05,0.000322688040302368,-0.000222302990918213,0.00831813814356114,-0.430306084285665,-0.0829307279922977,0.000401049993150792,0.438303574296137 +11.044,0.559790845426443,-0.292851045566654,-0.000339218232680641,7.82361227191861e-05,-0.00111180571223125,-0.00039630835291936,-0.0150669855480989,-0.417031075717564,-0.02033301316554,0.00118291721740865,0.417798233112642 +11.046,0.559790949858608,-0.292853675933667,-0.000339952519424841,2.51422789809857e-05,-0.0013454362625677,-0.000303635043580364,-0.0240533633497108,-0.0633719081792617,0.0518995581849623,0.00137950176169317,0.0853705287233731 +11.048,0.559790945995559,-0.292856427311704,-0.000340432772854962,-1.79773306796467e-05,-0.00136529334494827,-0.000188710120179534,-0.0161071481152816,0.00463032704886462,0.049850984439384,0.00137839058747388,0.052592782761162 +11.05,0.559790877949285,-0.292859137107046,-0.000340707359905559,-3.92863134801623e-05,-0.00132691495437224,-0.000104231105822761,-0.00605055996278136,0.0258187290677543,0.0337433502710583,0.00133158207932691,0.0429165438269747 +11.052,0.559790788850305,-0.292861734971522,-0.000340849697278253,-4.21795705307695e-05,-0.00126201842867726,-5.37367190953157e-05,0.00151456797798224,0.0351295134372327,0.0185018023315322,0.00126386599980786,0.0397327738776408 +11.054,0.559790709231003,-0.292864185180761,-0.000340922306781941,-3.3228041568234e-05,-0.00118639690062332,-3.02238964966405e-05,0.00588545679552778,0.0371444166327645,0.00709364937276199,0.00118724689617389,0.0382709570053337 +11.056,0.559790655938139,-0.292866480559124,-0.00034097059286424,-1.86377433486505e-05,-0.00111344076214616,-2.53621216042582e-05,0.00751771989798496,0.03303058608907,-0.000436321712270881,0.00111388551184492,0.0338781065953902 +11.058,0.55979063468003,-0.29286863894381,-0.000341023755268358,-3.15716197629747e-06,-0.00105427455626706,-3.19691833457238e-05,0.00719614012823103,0.0241382448820713,-0.00483579629638571,0.00105476387705858,0.025648084227718 +11.06,0.559790643309491,-0.292870697657349,-0.000341098469597623,1.01468171642705e-05,-0.00101688778261788,-4.47053067897989e-05,0.00572479190441692,0.0121073799458386,-0.00702246525773902,0.001017920568999,0.0151220669816637 +11.062,0.559790675267298,-0.29287270649494,-0.000341202576495517,1.97420056413677e-05,-0.00100584503648371,-6.00590443766768e-05,0.00378479716317351,-0.00142229801189169,-0.00783535742623931,0.00100782988297485,0.00881705433792492 +11.064,0.559790722277513,-0.292874721037495,-0.000341338705775129,2.52860058169628e-05,-0.00102257697466545,-7.60467364947527e-05,0.00187403589868531,-0.0150347510240145,-0.00792752212572762,0.00102571251203133,0.0170997472483533 +11.066,0.559790776411322,-0.292876796802839,-0.000341506763441496,2.72381492361115e-05,-0.00106598404057979,-9.17691328795979e-05,0.000299703387110592,-0.0276482959861244,-0.00773678157998574,0.0010702735469468,0.0287119466820519 +11.068,0.55979083123011,-0.292878984973658,-0.000341705782306648,2.64848193654051e-05,-0.00113317015860993,-0.000106993862814692,-0.000797061611160291,-0.0385382509514428,-0.0075053996342423,0.00113851822150587,0.0392703847355491 +11.07,0.559790882350599,-0.292881329483473,-0.000341934738892755,2.40499027914706e-05,-0.00122013704438554,-0.000121790731416564,-0.0014003203110954,-0.0473032435409254,-0.00732458710437342,0.00122643621406298,0.0478874443117955 +11.072,0.559790927429721,-0.292883865521835,-0.000342192945232314,2.08835381210216e-05,-0.0013223831327737,-0.000136292211232196,-0.00157570070879787,-0.053803727837762,-0.00718720445139332,0.00132955211964458,0.0543045105842028 +11.074,0.559790965884752,-0.292886619016004,-0.000342479907737683,1.77470999562798e-05,-0.00143535195573657,-0.000150539549222134,-0.00143054924850481,-0.0580920568767202,-0.00703549939487668,0.0014433337632972,0.0585340225429263 +11.076,0.559790998418121,-0.292889606929658,-0.000342795103429203,1.5161341127003e-05,-0.00155475136028055,-0.000164434208811699,-0.00108345089844277,-0.0603482690625512,-0.00679957051254326,0.00156349616807542,0.0607397860043189 +11.078,0.559791026530116,-0.292892838021446,-0.00034313764457293,1.34132963625092e-05,-0.00167674503198674,-0.000177737831272304,-0.000642678389674452,-0.0608267020187983,-0.0064220943354701,0.00168619232458131,0.0611681617318186 +11.08,0.559791052071307,-0.292896313909786,-0.000343506054754292,1.25906275683054e-05,-0.00179805816835572,-0.000190122586153577,-0.000194933590102987,-0.059821964624993,-0.00587287760870366,0.00180812563127096,0.0601098672607525 +11.082,0.559791076892626,-0.292900030254119,-0.000343898134917545,1.2633562002097e-05,-0.0019160328904868,-0.000201229341707126,0.00019489222735791,-0.0578486021379124,-0.00516215440968391,0.00192661228384954,0.0580787963928333 +11.084,0.559791102605555,-0.292903978041348,-0.00034431097212112,1.3370196477737e-05,-0.00202945257690734,-0.00021077120379231,0.00047298794741817,-0.0556665658462376,-0.00431223997913761,0.00204041197418996,0.055835344400743 +11.086,0.559791130373412,-0.292908148064427,-0.000344741219732714,1.45255137917695e-05,-0.00213869915387172,-0.000218478301623675,0.000596075834524567,-0.0537308516221238,-0.00328903475028185,0.00214987856159433,0.0538347236644505 +11.088,0.55979116070761,-0.292912532837964,-0.000345184885327615,1.57544998158361e-05,-0.00224437598339591,-0.000223927342793442,0.000547785497519505,-0.0519438348031411,-0.00202303359310125,0.00225557425370111,0.0519861011033346 +11.09,0.559791193391411,-0.29291712556836,-0.000345636929103887,1.67166557818473e-05,-0.00234647449308426,-0.000226570435996079,0.000347868456263077,-0.0499823405546273,-0.000489134316383863,0.00235744695714305,0.0499859443459966 +11.092,0.559791227574233,-0.292921918735936,-0.000346091167071599,1.71459736408882e-05,-0.0024443053456144,-0.000225883880058977,4.26477325676897e-05,-0.0475303443131618,0.00127120335265158,0.00245478026191383,0.0475473596251211 +11.094,0.559791261975306,-0.292926902789743,-0.000346540464624123,1.6887246712118e-05,-0.00253659587033689,-0.000221485622585473,-0.000311430867207697,-0.0443358729136607,0.00317120181505754,0.00254630313779089,0.0444502321383494 +11.096,0.55979129512322,-0.292932065119417,-0.000346977109561941,1.59002501720576e-05,-0.00262164883726902,-0.000213199072798749,-0.000661260747547428,-0.0402333430668443,0.00510339768534815,0.00263035155227429,0.0405611122634162 +11.098,0.559791325576307,-0.292937389385092,-0.000347393260915319,1.42422037219274e-05,-0.00269752924260432,-0.000201072031844074,-0.000965238187987218,-0.0351518137552344,0.0069586022031138,0.00270505024298297,0.0358469502142569 +11.1,0.559791352092035,-0.292942855236388,-0.000347781397689317,1.20392974201091e-05,-0.00276225609228994,-0.000185364663986296,-0.00119658720432312,-0.0291127783613447,0.00863822496434365,0.00276849484787854,0.0303908640118859 +11.102,0.559791373733496,-0.292948438409461,-0.000348134719571264,9.45585490463547e-06,-0.00281398035604969,-0.000166519131986703,-0.00134310386423723,-0.0222197648475037,0.0100610294262426,0.00281891884926528,0.0244283890378431 +11.104,0.559791389915454,-0.292954111157812,-0.000348447474217264,6.66688196315841e-06,-0.00285113515167999,-0.000145120546281313,-0.0014046922028325,-0.0146423106489982,0.0111658478712923,0.00285483380837018,0.0184674464940692 +11.106,0.559791400401024,-0.292959842950068,-0.000348715201756389,3.83708609330611e-06,-0.00287254959864567,-0.000121855740501539,-0.0013898903000745,-0.00659691481649942,0.011911710370678,0.00287513560400241,0.0136872175440192 +11.108,0.559791405263799,-0.292965601356206,-0.000348934897179271,1.10732076286103e-06,-0.00287752281094598,-9.74737047986059e-05,-0.00131228886091102,0.00167274255905044,0.0122765539947402,0.00287917347111995,0.0124592916214808 +11.11,0.559791404830307,-0.292971353041311,-0.000349105096575583,-1.41206935033737e-06,-0.00286585862840947,-7.27495245225831e-05,-0.00118742475574404,0.00991452912161933,0.0122553253717195,0.00286678219704378,0.0158082530730218 +11.112,0.559791399615521,-0.29297706479072,-0.000349225895277361,-3.6423782601146e-06,-0.00283786469445951,-4.84524033117333e-05,-0.00103044488913827,0.0178843094639185,0.011857959355749,0.0028382806285436,0.0214830524310059 +11.114,0.559791390260794,-0.292982704500089,-0.00034929890618883,-5.53384890689185e-06,-0.00279432139055377,-2.53176870995714e-05,-0.000854612387802305,0.0253594010475269,0.0111074538542531,0.00279444156182773,0.0276984677364481 +11.116,0.559791377480126,-0.292988242076282,-0.000349327166025759,-7.06082781132345e-06,-0.00273642709026941,-4.02258789472576e-06,-0.000670577232630211,0.0321487434315737,0.0100380823505822,0.00273643915643361,0.0336861169524056 +11.118,0.559791362017483,-0.29299365020845,-0.000349314996540409,-8.21615783741239e-06,-0.00266572641682749,1.48346423027529e-05,-0.000486248846742645,0.0380997990240188,0.0086936875988064,0.00266578035502436,0.0390821100719654 +11.12,0.559791344615494,-0.29299890498195,-0.000349267827456548,-9.00582319829467e-06,-0.00258402789417329,3.07521625005114e-05,-0.000307078966422661,0.04310241310714,0.0071259656422189,0.00258422656866916,0.0436885763041582 +11.122,0.55979132599419,-0.293003986320027,-0.000349191987890407,-9.4444737031029e-06,-0.00249331676439895,4.33385048716254e-05,-0.000136571871867139,0.0470899857545163,0.00539266029921222,0.00249371127272604,0.0473979556029523 +11.124,0.559791306837599,-0.293008878249007,-0.000349094473437062,-9.55211068576317e-06,-0.00239566795115524,5.2322803697358e-05,2.31302962894248e-05,0.0500383699614359,0.0035556243695869,0.00239625830218649,0.0501645439335965 +11.126,0.559791287785747,-0.293013568991832,-0.000348982696675618,-9.35195251794521e-06,-0.00229316328455323,5.75610023499714e-05,0.000170697345148652,0.0519629282660684,0.00167874789242731,0.00229390465748479,0.0519903187723882 +11.128,0.559791269429789,-0.293018050902145,-0.000348864229427662,-8.86932130516863e-06,-0.00218781623809099,5.90377952670665e-05,0.000305164421510116,0.0529141719711349,-0.000174203798955459,0.00218863062616446,0.0529153386805618 +11.13,0.559791252308462,-0.293022320256784,-0.000348746545494549,-8.13129483190434e-06,-0.00208150659666862,5.68641871541494e-05,0.00042562094820697,0.0529723836459791,-0.00194176791225379,0.00208229905770313,0.053009669353368 +11.132,0.55979123690461,-0.293026376928532,-0.000348636772679045,-7.16683751234094e-06,-0.0019759267035071,5.12707236180522e-05,0.000531038192586826,0.0522415913655735,-0.00356688557596876,0.00197660476279217,0.0523659101198633 +11.134,0.559791223641112,-0.293030223963598,-0.000348541462600077,-6.00714206155727e-06,-0.00187254023120635,4.25966448502759e-05,0.000620219556268647,0.0508432282490698,-0.00499882862273786,0.00187303429690825,0.0510921404785951 +11.136,0.559791212876042,-0.293033867089457,-0.000348466386099644,-4.68595928726552e-06,-0.00177255379051075,3.1275409127094e-05,0.000691846295530248,0.0489097728218728,-0.00619486070166733,0.00177283587781964,0.04930538335615 +11.138,0.559791204897275,-0.29303731417876,-0.000348416360963569,-3.23975687943659e-06,-0.00167690113991888,1.78172020436093e-05,0.000744587030921004,0.0465786264038195,-0.00712155704980251,0.00167699892122045,0.0471257829890051 +11.14,0.559791199917014,-0.293040574694017,-0.00034839511729147,-1.70761116358183e-06,-0.00158623928489549,2.78918092788713e-06,0.000777241063176952,0.0439864431163548,-0.00775572799472689,0.00158624265622001,0.044671720343264 +11.142,0.55979119806683,-0.2930436591359,-0.000348405204239857,-1.30792626729118e-07,-0.00150095536745348,-1.32057099352948e-05,0.000788888510072651,0.0412640851767402,-0.00808491565015684,0.00150101346528571,0.0420560689036047 +11.144,0.559791199393844,-0.293046578515486,-0.000348447940131211,1.44794287670842e-06,-0.00142118294418855,-2.95504816727367e-05,0.000779026239350159,0.0385323337542734,-0.00810745711798079,0.00142149086819371,0.0393837337914044 +11.146,0.559791203858602,-0.293049343867676,-0.000348523406166548,2.98531233067256e-06,-0.00134682603243634,-4.56355384072288e-05,0.000747675255042039,0.0358984423887043,-0.00783212959939107,0.00134760226925589,0.0367505025582479 +11.148,0.559791211335093,-0.293051965819616,-0.00034863048228484,4.43864389687625e-06,-0.00127758917463375,-6.08790000702975e-05,0.000695450697029766,0.0334535775783939,-0.00727741256925676,0.00127904654072889,0.0342430465666943 +11.15,0.559791221613178,-0.293054454224375,-0.000348766922166829,5.76711511879132e-06,-0.00121301172212278,-7.47451886842526e-05,0.000623590838688542,0.0312711520219985,-0.00647041770076289,0.00121532610473712,0.0319396324264914 +11.152,0.559791234403554,-0.293056817866505,-0.000348929463039577,6.93300725163125e-06,-0.00115250456654571,-8.67606708733577e-05,0.000533945575254749,0.0294060202228714,-0.00544554852773943,0.00115578642339693,0.029910752614958 +11.154,0.559791249345207,-0.293059064242641,-0.000349113964850323,7.90289741981008e-06,-0.0010953876412313,-9.6527382795208e-05,0.000428928288720526,0.0278944752366067,-0.00424295898762788,0.0010996608913566,0.0282185830468722 +11.156,0.559791266015143,-0.29306119941707,-0.000349315572570758,8.64872040651316e-06,-0.0010409266655993,-0.000103732506823867,0.000311436640365661,0.0267549597789188,-0.00290688350213711,0.00104611832815046,0.0269142125511322 +11.158,0.559791283940088,-0.293063227949303,-0.000349528894877618,9.14864398127258e-06,-0.00098836780211564,-0.000108154916803755,0.000184749320008113,0.0259893859108338,-0.00148391103657117,0.000994309859135684,0.0260323703165492 +11.16,0.559791302609719,-0.293065152888278,-0.000349748192237972,9.38771768654553e-06,-0.000936969121955975,-0.000109668150970151,5.24062251927462e-05,0.0255849451902211,-2.12721064721218e-05,0.00094341208815635,0.0255850077057164 +11.162,0.559791321490959,-0.293066975825791,-0.000349967567481499,9.35826888204364e-06,-0.000886028021354721,-0.000108240005229644,-8.16972670059949e-05,0.0255260268164763,0.00143529902718799,0.000892664063662442,0.0255664781066214 +11.164,0.559791340042795,-0.293068697000363,-0.000350181152258891,9.06092861852159e-06,-0.000834865014690081,-0.0001039269548614,-0.000210429090819912,0.025911433405255,0.00284768506779887,0.000841357537036225,0.0260682943777032 +11.166,0.559791357734673,-0.29307031528585,-0.000350383275300944,8.51655251876408e-06,-0.000782382287733712,-9.68492649584494e-05,-0.000319269749526824,0.0269356677864924,0.00416921124100124,0.000788399870591843,0.0272582914844152 +11.168,0.559791374109005,-0.293071826529514,-0.000350568549318725,7.78384962041387e-06,-0.000727122343544076,-8.72501098973895e-05,-0.000390488412437524,0.0285950906494275,0.00531775929800151,0.000732379732429188,0.0290879743949403 +11.17,0.559791388870072,-0.293073223775224,-0.000350732275740534,6.95459886901416e-06,-0.000668001925136015,-7.55782277664457e-05,-0.000414251487279673,0.0306322309462438,0.00620092750931859,0.000672299789486184,0.0312563062279367 +11.172,0.5597914019274,-0.293074498537215,-0.000350870862229791,6.12684367129535e-06,-0.000604593419759114,-6.24463998601179e-05,-0.000393703195045256,0.0327230684285601,0.00675862656032155,0.000607840681663281,0.0334160626431047 +11.174,0.559791413377447,-0.293075642148903,-0.000350982061339974,5.37978608883331e-06,-0.000537109651421789,-4.85437215251625e-05,-0.000341428621487054,0.0345694461008944,0.00697139856433419,0.000539325701824334,0.0352670324122829 +11.176,0.559791423446545,-0.293076646975821,-0.000351065037115891,4.76112918534729e-06,-0.000466315635355552,-3.45608056027842e-05,-0.000273448895471367,0.0359251152055792,0.00685166375632137,0.000467618850573931,0.0365736786919536 +11.178,0.559791432421963,-0.293077507411445,-0.000351120304562386,4.28599050694747e-06,-0.000393409190599424,-2.11370664998679e-05,-0.000204458283636427,0.0366073103739546,0.00643336707951033,0.000393999919470727,0.0371688739133232 +11.18,0.559791440590507,-0.293078220612583,-0.000351149585381891,3.94329605080167e-06,-0.000319886393859749,-8.82733728474569e-06,-0.000145110187755203,0.0365012802067488,0.00576350990804631,0.000320032461547071,0.0369537895236514 +11.182,0.559791448195147,-0.29307878695702,-0.000351155613911525,3.70554975592672e-06,-0.000247404069772445,1.91697313231478e-06,-0.000101120209428074,0.0355591930241348,0.00489597485556799,0.000247439244310503,0.0358948046882942 +11.184,0.559791455412706,-0.293079210228862,-0.000351141917489362,3.53881521308924e-06,-0.000177649621763162,1.07565621375328e-05,-7.36628327775924e-05,0.0337944834130432,0.00388727775056076,0.000178010154077585,0.0340173994255497 +11.186,0.559791462350408,-0.293079497555507,-0.000351112587662974,3.41089842481639e-06,-0.000112226136120287,1.74660841345561e-05,-6.0508917321136e-05,0.03127289670974,0.00279371018506508,0.000113628358923066,0.0313974926792774 +11.188,0.559791469056299,-0.293079659133407,-0.000351072053152823,3.29677954380473e-06,-5.25580349242163e-05,2.19314028777919e-05,-5.74347791548873e-05,0.0281015311957906,0.00166937158367667,5.70456152797356e-05,0.0281511306306911 +11.19,0.559791475537527,-0.293079707787647,-0.000351024862051463,3.18115930819686e-06,1.7998866286286e-07,2.41435704692621e-05,-5.95622162705896e-05,0.0244170557488214,0.000564706869804691,2.4352908768094e-05,0.0244236576488343 +11.192,0.559791481780937,-0.293079658413452,-0.000350975478870946,3.05853067872239e-06,4.51101880710585e-05,2.41902303570104e-05,-6.24220189426732e-05,0.0203740639255444,-0.000474693887496274,5.12781719881295e-05,0.0203796887031536 +11.194,0.559791487771649,-0.293079527346895,-0.000350928101130035,2.93147123242609e-06,8.16762443650677e-05,2.22447949192763e-05,-6.26513840803551e-05,0.0161342765432701,-0.00140915097819368,8.47020266473563e-05,0.0161958177085933 +11.196,0.559791493506822,-0.293079331708474,-0.000350886499691269,2.807925142401e-06,0.000109647294244132,1.85536264442363e-05,-5.83241649424264e-05,0.0118570675534829,-0.00220582737926248,0.000111241407006999,0.0120606437267327 +11.198,0.55979149900335,-0.293079088757718,-0.000350853886624258,2.69817457265641e-06,0.000129104514578994,1.34214854022274e-05,-4.89693008365212e-05,0.00769158499738626,-0.00283950005175385,0.000129828317793555,0.00819912424032908 +11.2,0.55979150429952,-0.293078815290416,-0.00035083281374966,2.61204793905485e-06,0.000140413634233687,7.19562623721716e-06,-3.53626433688272e-05,0.00377057848487257,-0.00329310725737032,0.000140622148006967,0.00500630283099964 +11.202,0.559791509451542,-0.293078527103181,-0.000350825104119309,2.55672399918111e-06,0.000144186828518483,2.49056372747552e-07,-1.91836338481231e-05,0.00020592688318448,-0.00355800995177009,0.000144209709745575,0.00356401581224336 +11.204,0.559791514526416,-0.293078238543102,-0.000350831817524169,2.53531340366237e-06,0.000141237341766425,-7.03641356986162e-06,-2.61882876495594e-06,-0.00291422124973415,-0.00363392437842471,0.000141435234786904,0.00465812180377195 +11.206,0.559791519592795,-0.293077962153814,-0.000350853249773589,2.54624868412129e-06,0.000132529943519547,-1.42866411409497e-05,1.20216128715534e-05,-0.00552683552744516,-0.00352851105191713,0.000133322081542204,0.00655716750663787 +11.208,0.559791524711411,-0.293077708423328,-0.000350888964088733,2.58339985514857e-06,0.000119129999656647,-2.11504577775286e-05,2.26294677441124e-05,-0.00759409340966684,-0.00325663467980807,0.000121020546343186,0.00826295566037265 +11.21,0.559791529926395,-0.293077485633815,-0.000350937851604699,2.63676655509777e-06,0.00010215356988087,-2.73131798601863e-05,2.75412193054422e-05,-0.00910236275934994,-0.00283933639013848,0.000105774827682898,0.0095349670926504 +11.212,0.559791535258477,-0.293077299809048,-0.000350998216808174,2.69356473237033e-06,8.27205486192508e-05,-3.25078033380813e-05,2.56893464830944e-05,-0.0100602771877047,-0.00230257983686511,8.89196363729895e-05,0.0103204511016289 +11.214,0.559791540700654,-0.29307715475162,-0.000351067882818051,2.73952394103014e-06,6.19124611300552e-05,-3.65234992076458e-05,1.66660227285361e-05,-0.0104961053112838,-0.00167584542076733,7.19348582328135e-05,0.0106290621569441 +11.216,0.559791546216573,-0.293077052159204,-0.000351144310805004,2.7602288232845e-06,4.07361273741014e-05,-3.92111850211528e-05,7.11548875680436e-07,-0.0104546105557334,-0.000990651886048742,5.66089036049894e-05,0.0105014414980842 +11.218,0.559791551741569,-0.293076991807111,-0.000351224727558136,2.74237013653286e-06,2.00940189071264e-05,-4.04861067518403e-05,-2.13552231453964e-05,-0.00999359040660062,-0.000279082959867066,4.52815086953505e-05,0.00999750931777229 +11.22,0.559791557186053,-0.293076971783128,-0.000351306255232012,2.67480793070292e-06,7.61765747703342e-07,-4.0327516860621e-05,-4.82467121809655e-05,-0.0091802712966236,0.00042760997173717,4.04233039305818e-05,0.00919035141399808 +11.222,0.559791562440801,-0.293076988760048,-0.000351386037625578,2.54938328780902e-06,-1.6627066279364e-05,-3.87756668648918e-05,-7.83398484974237e-05,-0.00808771921656342,0.00110026898183103,4.22671388790818e-05,0.00816259340468526 +11.224,0.559791567383586,-0.293077038291393,-0.000351461357899471,2.36144853671326e-06,-3.15891111185468e-05,-3.59264409332973e-05,-0.000109816988835807,-0.00679140702702766,0.00171290717200473,4.78973646308974e-05,0.00700494968987665 +11.226,0.559791571886595,-0.293077115116492,-0.000351529743389312,2.11011533246564e-06,-4.37926943874837e-05,-3.19240381768706e-05,-0.000140802647319074,-0.00536605689744254,0.00224356921148594,5.42346465089443e-05,0.00581790295714963 +11.228,0.559791575824048,-0.293077213462171,-0.000351589054052179,1.79823794743703e-06,-5.30533387083146e-05,-2.69521640873545e-05,-0.000169487687773558,-0.00388285304602758,0.00267495536225171,5.95341041488527e-05,0.0047181203930582 +11.23,0.559791579079546,-0.293077327329847,-0.000351637552045661,1.43216458137149e-06,-5.93241065715923e-05,-2.12242167278649e-05,-0.000194234364703184,-0.00240709435717025,0.00299480231759286,6.30227585211657e-05,0.00384716404046046 +11.232,0.559791581552706,-0.293077450758597,-0.00035167395091909,1.02130048862403e-06,-6.26817161369988e-05,-1.49729548169791e-05,-0.000213659083481032,-0.000996331399334559,0.00319602590399649,6.44533161948915e-05,0.00335453544328727 +11.234,0.559791583164748,-0.293077578056712,-0.000351697443864929,5.77528247447453e-07,-6.33094321689301e-05,-8.44011311188035e-06,-0.000226691609928104,0.000300991093160682,0.00327664083192641,6.38721633403026e-05,0.0032982358717383 +11.236,0.559791583862819,-0.293077703996326,-0.000351707711371538,1.1453404891172e-07,-6.14777517643562e-05,-1.8663914892749e-06,-0.000232610826433939,0.00144638838753295,0.00323948034369819,6.15061825936174e-05,0.00355533121683078 +11.238,0.559791583622885,-0.293077823967719,-0.000351704909430886,-3.529150582882e-07,-5.75238786187989e-05,4.51780826291098e-06,-0.000231059046895648,0.00241170804508102,0.00309174493905808,5.77020948656902e-05,0.00392792702911498 +11.24,0.559791582451159,-0.29307793409184,-0.000351689640138486,-8.09702138670772e-07,-5.18309195840332e-05,1.0500588266956e-05,-0.000222036666830356,0.0031790586690887,0.00284441342875078,5.2890095447371e-05,0.00427158074447655 +11.242,0.559791580384076,-0.293078031291397,-0.000351662907077818,-1.24106172560992e-06,-4.48076439424399e-05,1.58954619779179e-05,-0.00020588006993685,0.00374034700780852,0.00251155184236884,4.75597613678904e-05,0.00451004157396865 +11.244,0.559791577486912,-0.293078113322416,-0.000351626058290574,-1.63322241841808e-06,-3.68695315528008e-05,2.05467956364303e-05,-0.000183226323002649,0.00409648488395159,0.0021095564548662,4.22397985709713e-05,0.00461139769767829 +11.246,0.559791573851186,-0.293078178769523,-0.000351580719895273,-1.97396701762043e-06,-2.84217044066353e-05,2.43336877973817e-05,-0.000154967406962268,0.00425633378542305,0.00165636624381534,3.74675618233326e-05,0.00456989511081001 +11.248,0.559791569591044,-0.293078227009234,-0.000351528723539385,-2.25309204626736e-06,-1.98441964111029e-05,2.71722606116939e-05,-0.000122196995578052,0.00423545772759493,0.00117067794087479,3.37224005925022e-05,0.0043959664590648 +11.25,0.559791564838818,-0.293078258146309,-0.000351472030852826,-2.46275499993259e-06,-1.14798734962575e-05,2.90163995608804e-05,-8.61530916052201e-05,0.00405475473336337,0.000671193746415592,3.13018226491115e-05,0.00411083438588241 +11.252,0.559791559740024,-0.293078272928728,-0.000351412657941141,-2.5977044126882e-06,-3.62517747765119e-06,2.98570355973559e-05,-4.8159233545519e-05,0.00373903397826807,0.000175927820922389,3.0188285055994e-05,0.00374348033260405 +11.254,0.559791554448001,-0.293078272647019,-0.000351352602710436,-2.65539193411464e-06,3.47626241681314e-06,2.97201108445699e-05,-9.56651424714817e-06,0.00331560059962898,-0.000298407278924912,3.00403145011471e-05,0.00332901573420287 +11.256,0.559791549118456,-0.293078259023678,-0.000351293777497763,-2.63597046967679e-06,9.63722492086328e-06,2.86634064816564e-05,2.83012016599686e-05,0.0028129026816142,-0.000736917747309719,3.03548235973293e-05,0.0029079666814714 +11.258,0.559791543904119,-0.293078234098119,-0.00035123794908451,-2.54218712747473e-06,1.47278731432737e-05,2.677243985533e-05,6.41971059642244e-05,0.0022592862858344,-0.00112693792491942,3.06616453981635e-05,0.00252556624866489 +11.26,0.559791538949707,-0.293078200112186,-0.000351186687738342,-2.37918204581992e-06,1.86743700641999e-05,2.41556547819792e-05,9.69949121021543e-05,0.00168189536603506,-0.00145832569978276,3.0624961427698e-05,0.00222820418317325 +11.262,0.55979153438739,-0.293078159400639,-0.000351141326465382,-2.15420747906615e-06,2.14554546074132e-05,2.09391370561996e-05,0.000125724673727429,0.00110574317063763,-0.00172364265135127,3.00570225227308e-05,0.00205168677983577 +11.264,0.559791530332878,-0.293078114290367,-0.000351102931190117,-1.87628335091026e-06,2.30973427467499e-05,1.72610841765749e-05,0.000149600290489033,0.000552972240911157,-0.00191822197189074,2.88955482405949e-05,0.00200193258617195 +11.266,0.559791526882257,-0.293078067011268,-0.000351072282128675,-1.55580631711009e-06,2.36673435710576e-05,1.32662491686375e-05,0.000168038374881403,4.23109568214909e-05,-0.00204013084637671,2.71764061643775e-05,0.00204747673560353 +11.268,0.559791524109652,-0.293078019620993,-0.000351049866193442,-1.20412985138443e-06,2.32665865740359e-05,9.10056079106536e-06,0.000180668452420685,-0.000411274455461535,-0.00209003777045562,2.50120808054424e-05,0.00213776650954831 +11.27,0.559791522065738,-0.293077973944922,-0.000351035879885511,-8.33132507427428e-07,2.20222457492116e-05,4.90609808681595e-06,0.000187334592283242,-0.000796740746297393,-0.00207099756961759,2.25774935732703e-05,0.00222686348922389 +11.272,0.559791520777122,-0.29307793153201,-0.000351030241801095,-4.54791482251541e-07,2.00796235888467e-05,8.16570512595931e-07,0.000188089085972856,-0.0011069560199026,-0.00198816861064721,2.01013657785768e-05,0.0022833185407699 +11.274,0.559791520246572,-0.293077893626427,-0.000351032613603461,-8.0776163535754e-08,1.75944216695997e-05,-3.04657635577555e-06,0.000183179062196438,-0.00133853568159787,-0.00184847831052219,1.78564225467434e-05,0.00228956423893474 +11.276,0.559791520454018,-0.293077861154323,-0.000351042428106518,2.7792476653413e-07,1.47254808624558e-05,-6.57734272949201e-06,0.000173027057959223,-0.00149154959910891,-0.00166025324911704,1.61300485488298e-05,0.002238548507536 +11.278,0.559791521358271,-0.293077834724504,-0.000351058922974379,6.11332068301063e-07,1.16282232731648e-05,-9.68758935224297e-06,0.000158206517331151,-0.00156912665499921,-0.00143282991114272,1.51472337687776e-05,0.00213077199996159 +11.28,0.559791522899346,-0.29307781464143,-0.000351081178463927,9.10750835858665e-07,8.44897424245965e-06,-1.23086623740623e-05,0.000139413355859553,-0.00157698355068941,-0.001176161593465,1.49571990116271e-05,0.00197222445398061 +11.282,0.559791525001274,-0.293077800928607,-0.000351108157623875,1.16898549173921e-06,5.32028907040782e-06,-1.43922357261025e-05,0.000117435276780738,-0.00152290522900632,-0.000900435829197042,1.53885818732038e-05,0.00177308095226054 +11.284,0.559791527575288,-0.293077793360274,-0.000351138747406832,1.38049194298177e-06,2.35735332643231e-06,-1.59104056908516e-05,9.31198104738134e-05,-0.00141620302984674,-0.000615714688437587,1.61432302206765e-05,0.00154706396067117 +11.286,0.559791530523242,-0.293077791499194,-0.000351171799246638,1.54146473363443e-06,-3.44523048978511e-07,-1.68550944798525e-05,6.73422845263709e-05,-0.00126717408094332,-0.000331608556584475,1.69289402970496e-05,0.00131157514824726 +11.288,0.559791533741147,-0.293077794738366,-0.000351206167784751,1.64986108108723e-06,-2.71134299734042e-06,-1.72368399171894e-05,4.09749179031046e-05,-0.00108658338923682,-5.69921540516252e-05,1.75266104186442e-05,0.00108884824988884 +11.29,0.559791537122686,-0.293077802344566,-0.000351240746606307,1.7053644052469e-06,-4.69085660592724e-06,-1.70830630960591e-05,1.48581424943205e-05,-0.000885186531713263,0.000200231215286913,1.77972876640232e-05,0.000907672022208579 +11.292,0.559791540562604,-0.293077813501792,-0.000351274500037135,1.7092936510645e-06,-6.25208912419308e-06,-1.64359150560418e-05,-1.02251540567999e-05,-0.000673307055942966,0.000433313188282031,1.76677561374343e-05,0.000800754184814047 +11.294,0.559791543959861,-0.293077827352922,-0.000351306490266531,1.6644637890197e-06,-7.3840848296988e-06,-1.53498103429312e-05,-3.35717356692096e-05,-0.000460479248482017,0.000636789690422608,1.71146669859832e-05,0.000786555344236454 +11.296,0.55979154722046,-0.293077843038132,-0.000351335899278507,1.57500670838768e-06,-8.09400611812095e-06,-1.38887562943517e-05,-5.45757328220325e-05,-0.000255162897754524,0.000806556598420685,1.61521247077757e-05,0.000847714669838557 +11.298,0.559791550259888,-0.293077859728947,-0.000351362045291709,1.4461608577316e-06,-8.40473642071679e-06,-1.21235839492488e-05,-7.27422080903765e-05,-6.45332259851939e-05,0.00093989369412385,1.48226941985133e-05,0.000944910642520073 +11.3,0.559791553005103,-0.293077876657077,-0.000351384393614304,1.28403787602608e-06,-8.35213902206181e-06,-1.0129181517855e-05,-8.76959130312302e-05,0.000105654179848514,0.001035440652489,1.31911825752119e-05,0.00104450501373076 +11.302,0.559791555396039,-0.293077893137503,-0.00035140256201778,1.09537720560672e-06,-7.98211970132278e-06,-7.98182133929325e-06,-9.91853335575814e-05,0.000251126775625315,0.00109313022349321,1.1341232650872e-05,0.00112598227043911 +11.304,0.559791557386612,-0.293077908585556,-0.000351416320899661,8.87296541795793e-07,-7.34763191956066e-06,-5.75666062388266e-06,-0.000107082565037307,0.000369092353902285,0.00111408446790809,9.37625359709252e-06,0.00117850754901195 +11.306,0.559791558945225,-0.29307792252803,-0.000351425588660276,6.67046945457346e-07,-6.50575028571315e-06,-3.52548346765941e-06,-0.000111379079570299,0.00045817777002894,0.00110048088783997,7.42958761225954e-06,0.00119724281280602 +11.308,0.5597915600548,-0.293077934608557,-0.000351430422833532,4.41780223514647e-07,-5.5149208394451e-06,-1.35473707252324e-06,-0.000112177732380949,0.000518318346576344,0.00105539568664321,5.69603670694838e-06,0.00118114258556064 +11.31,0.559791560712346,-0.293077944587714,-0.000351431007608566,2.18336015933597e-07,-4.432476899408e-06,6.96099278912975e-07,-0.000109681874693759,0.000550607968941141,0.00098263143368687,4.49211267509426e-06,0.00113170834739669 +11.312,0.559791560928144,-0.293077952338465,-0.000351427638436416,3.0527247396609e-09,-3.31248896368078e-06,2.57578866222381e-06,-0.000104181996363196,0.00055712031862868,0.000886536080657309,4.19610291652576e-06,0.00105222771304617 +11.314,0.559791560724557,-0.29307795783767,-0.000351420704453917,-1.98391969519141e-07,-2.20399562489353e-06,4.24224360154182e-06,-9.60403423455388e-05,0.000540711642127313,0.000771820237929593,4.78472432465466e-06,0.000947258838421451 +11.316,0.559791560134576,-0.293077961154447,-0.00035141066946201,-3.81108644642622e-07,-1.14964239517081e-06,5.66306961394321e-06,-8.56745646649469e-05,0.000504814936380526,0.00064337899331113,5.79113796141676e-06,0.00082226198991407 +11.318,0.559791559200123,-0.293077962436239,-0.000351398052175461,-5.41090228178891e-07,-1.84735879371643e-07,6.81575957478606e-06,-7.35407013063261e-05,0.000453235036307368,0.000506123323806098,6.83969915723241e-06,0.000683367435415019 +11.32,0.559791557970215,-0.293077961893391,-0.000351383406423711,-6.75271449867895e-07,6.63297750058467e-07,7.68756290916738e-06,-6.01161967428297e-05,0.000389952490437075,0.000364826103355005,7.74561675521358e-06,0.000537377881567614 +11.322,0.559791556499037,-0.293077959783048,-0.000351367301923824,-7.8155501515029e-07,1.37507408237718e-06,8.27506398820657e-06,-4.58836302287009e-05,0.000318942993543658,0.000223986337291108,8.42486444891817e-06,0.000392428107997681 +11.324,0.559791554843995,-0.293077956393095,-0.000351350306167758,-8.58805970782678e-07,1.93906972423296e-06,8.58350825833171e-06,-3.13154224773695e-05,0.000244018073108974,8.77139133895394e-05,8.8416148475116e-06,0.000261188066899811 +11.326,0.559791553063813,-0.293077952026769,-0.000351332967890791,-9.06816705059754e-07,2.35114637481297e-06,8.62591964176469e-06,-1.68600272632028e-05,0.000168690710705725,-4.03628293982414e-05,8.98647291647582e-06,0.000174269832141854 +11.328,0.559791551216728,-0.293077946988509,-0.000351315802489191,-9.26246079835482e-07,2.61383256705578e-06,8.42205694073876e-06,-2.93006591201987e-06,9.60686738490874e-05,-0.000157166005037658,8.86685376004691e-06,0.00018422521141491 +11.33,0.559791549358829,-0.293077941571439,-0.000351299279663028,-9.18536968707832e-07,2.73542107020927e-06,7.99725562161412e-06,1.01076091940632e-05,2.877652283128e-05,-0.000260213816639873,8.50190190908284e-06,0.000261995195376115 +11.332,0.55979154754258,-0.293077936046825,-0.000351283813466705,-8.85815643059215e-07,2.72893865838094e-06,7.38120167417892e-06,2.19396098509878e-05,-3.10938878808427e-05,-0.000347643448749567,7.91921168485829e-06,0.000349720093506869 +11.334,0.559791545815566,-0.293077930655684,-0.000351269754856331,-8.30778529303891e-07,2.61104551868592e-06,6.60668182661601e-06,3.2311396613951e-05,-8.2005454510599e-05,-0.000418212621652207,7.15234202366892e-06,0.00042739995066664 +11.336,0.559791544219466,-0.293077925602643,-0.000351257386739398,-7.56570056603426e-07,2.40091684033858e-06,5.70835118757027e-06,4.10304984432749e-05,-0.000122972968613605,-0.000471281843411503,6.23875574176496e-06,0.000488786690429977 +11.338,0.559791542789286,-0.293077921052017,-0.000351246921451581,-6.66656535530736e-07,2.11915364423133e-06,4.72155445296937e-06,4.79674286401431e-05,-0.000153538244618046,-0.000506779883682229,5.21807623138831e-06,0.000531696076039415 +11.34,0.55979154155284,-0.293077917126028,-0.000351238500521586,-5.64700342042874e-07,1.78676386186647e-06,3.68123165284158e-06,5.30546787058778e-05,-0.000173726571323123,-0.000525155062665432,4.13072367222235e-06,0.000555682967490822 +11.342,0.559791540530484,-0.293077913904962,-0.00035123219652497,-4.54437820707249e-07,1.42424735893891e-06,2.62093420230787e-06,5.62839566620301e-05,-0.00018398861947881,-0.000527315222737084,3.01733166310248e-06,0.000561320799548273 +11.344,0.559791539735089,-0.293077911429039,-0.000351228016784777,-3.39564515394779e-07,1.05080938395131e-06,1.57197076189348e-06,5.77017322811833e-05,-0.000185131816127343,-0.000514559347388098,1.92109252712184e-06,0.000549885989306259 +11.346,0.559791539172226,-0.293077909701724,-0.000351225908641922,-2.23630891582541e-07,6.83720094429623e-07,5.62696812755704e-07,5.74034569877795e-05,-0.000178244918824748,-0.000488503858891877,9.13297129242331e-07,0.000523165774982695 +11.348,0.559791538840565,-0.293077908694158,-0.000351225765997526,-1.09950687443584e-07,3.37829708652075e-07,-3.82044673674684e-07,5.55269233370888e-05,-0.000164619949616323,-0.000451006358127874,5.21705087573869e-07,0.000483311185571709 +11.35,0.559791538732424,-0.293077908350405,-0.000351227436820617,-1.52319823421027e-09,2.52402959644044e-08,-1.24132861975559e-06,5.22447779482965e-05,-0.000145674944329604,-0.00040408927419453,1.24158613672091e-06,0.000432711044170775 +11.352,0.559791538834472,-0.293077908593197,-0.000351230731312005,9.90284243495789e-08,-2.44870068666277e-07,-1.99840177045263e-06,4.7756631982299e-05,-0.000122880261521602,-0.000349865942640614,2.01578213493075e-06,0.000373880238030463 +11.354,0.559791539128537,-0.293077909329886,-0.000351235430427699,1.8950332969505e-07,-4.66280750122168e-07,-2.64079239031852e-06,4.22810397804544e-05,-9.7691282147143e-05,-0.000290471007490253,2.68832916486508e-06,0.000309361728604027 +11.356,0.559791539592486,-0.29307791045832,-0.000351241294481566,2.68152583471378e-07,-6.35635197254806e-07,-3.16028580041351e-06,3.60476024030633e-05,-7.14896232490038e-05,-0.000227996862708963,3.23470929950541e-06,0.000241645950258686 +11.358,0.559791540201148,-0.293077911872426,-0.0003512480715709,3.33693739307287e-07,-7.52239243118152e-07,-3.55277984115427e-06,2.92893764797306e-05,-4.55340383454062e-05,-0.000164437474921322,3.64684246852698e-06,0.000173121054124312 +11.36,0.55979154092726,-0.293077913467277,-0.000351255505600931,3.85310089390287e-07,-8.17771350636411e-07,-3.81803570009873e-06,2.22357965373312e-05,-2.0922145960079e-05,-0.000101640412232123,3.92359662225057e-06,0.000106127000513254 +11.362,0.559791541742388,-0.293077915143512,-0.000351263343713701,4.22636925456602e-07,-8.35927826958459e-07,-3.95934149008271e-06,1.51064369346942e-05,1.43682635234089e-06,-4.12678207578529e-05,4.06863396457992e-06,4.39693295028586e-05 +11.364,0.559791542617808,-0.293077916810988,-0.000351271342966891,4.45735837129084e-07,-8.12024045227045e-07,-3.9831069831302e-06,8.10537748035398e-06,2.08384247356813e-05,1.52334421114698e-05,4.08940151190716e-06,2.70554033074206e-05 +11.366,0.559791543525331,-0.293077918391608,-0.000351279276141633,4.55058435378014e-07,-7.52574128015742e-07,-3.89840772163684e-06,1.41671396831093e-06,3.6788790763824e-05,6.66525645444504e-05,3.99637695442823e-06,7.61445110607754e-05 +11.368,0.559791544438042,-0.293077919821285,-0.000351286936597778,4.51402693002328e-07,-6.64868882171765e-07,-3.71649672495242e-06,-4.79903616845582e-06,4.90012752596304e-05,0.000112026812305852,3.80238910795728e-06,0.000122368960119087 +11.37,0.559791545330942,-0.293077921051083,-0.000351294142128533,4.35862290704185e-07,-5.56569026977155e-07,-3.45030047241328e-06,-1.04076053330592e-05,5.73846803408272e-05,0.000150645272297865,3.52197648603501e-06,0.0001615404526807 +11.372,0.559791546181491,-0.293077922047561,-0.000351300737799667,4.09772271670095e-07,-4.35330160808482e-07,-3.11391563576103e-06,-1.53025231375315e-05,6.20246215499302e-05,0.00018204510728735,3.17078795414897e-06,0.000192929111281967 +11.374,0.559791546970031,-0.293077922792404,-0.000351306597791076,3.74652198154065e-07,-3.08470540777462e-07,-2.72212004326396e-06,-1.94058033531384e-05,6.31597378564358e-05,0.000206001210881258,2.76504174906069e-06,0.000216338245750535 +11.376,0.5597915476801,-0.293077923281443,-0.00035131162627984,3.3214905825755e-07,-1.82691209382766e-07,-2.28991079223609e-06,-2.26678398274426e-05,6.11540887374346e-05,0.000222510113633253,2.32107529203308e-06,0.000231871525204868 +11.378,0.559791548298627,-0.293077923523169,-0.000351315757434245,2.83980838844305e-07,-6.38541858277506e-08,-1.83207958873105e-06,-2.50663309553311e-05,5.64674279557183e-05,0.000231769447384071,1.85505743666426e-06,0.000239862394110069 +11.38,0.559791548816023,-0.29307792353686,-0.000351318954598195,2.31883734436192e-07,4.31785024401824e-08,-1.3628330026995e-06,-2.66045172003536e-05,4.9624755693593e-05,0.000234153767555826,1.38309372155902e-06,0.000240828577153337 +11.382,0.559791549226162,-0.293077923350455,-0.000351321208766256,1.77562770042902e-07,1.346448369466e-07,-8.95464518507848e-07,-2.73091063651894e-05,4.11865402893812e-05,0.000230187819326533,9.22775418684404e-07,0.000235432687955132 +11.384,0.559791549526274,-0.293077922998281,-0.000351322536456269,1.22647308975447e-07,2.07924663597689e-07,-4.42081725393469e-07,-2.72274078283391e-05,3.1720702453601e-05,0.000220518473273374,5.03697607754889e-07,0.0002244458325655 +11.386,0.559791549716752,-0.293077922518756,-0.000351322977093158,6.86531387295095e-08,2.61527646761046e-07,-1.33906254140574e-08,-2.64243002478992e-05,2.17774617783663e-05,0.000205886028711851,2.70719914906095e-07,0.000208714058711521 +11.388,0.559791549800887,-0.29307792195217,-0.000351322590018771,1.69501079838615e-08,2.95034510711144e-07,3.81462389453844e-07,-2.49789841588798e-05,1.18676179994308e-05,0.000187095739075146,4.82541421267713e-07,0.00018912854249601 +11.39,0.559791549784552,-0.293077921338618,-0.0003513214512436,-3.12627979059988e-08,3.08998118758764e-07,7.34992330886445e-07,-2.29815610985946e-05,2.44478742805807e-06,0.000164990487418229,7.97916616189471e-07,0.000166601290735101 +11.392,0.559791549675836,-0.293077920716178,-0.000351319650049448,-7.49761364105066e-08,3.04813660423376e-07,1.04142433912669e-06,-2.05296751820602e-05,-6.10776706991797e-06,0.000140425174092904,1.08770282832086e-06,0.000142049293911247 +11.394,0.559791549484647,-0.293077920119364,-0.000351317285546243,-1.13381498634231e-07,2.84567050479095e-07,1.296693027258e-06,-1.77250714106197e-05,-1.348621908592e-05,0.000114243179152847,1.33238379507949e-06,0.000116393987150087 +11.396,0.55979154922231,-0.293077919577909,-0.000351314463277339,-1.45876422053009e-07,2.50868784079677e-07,1.49839705573823e-06,-1.46706327641846e-05,-1.94708728306907e-05,8.7255424240259e-05,1.52624009054329e-06,9.05971931896241e-05 +11.398,0.559791548901142,-0.293077919115888,-0.00035131129195802,-1.72064029690963e-07,2.0668355915634e-07,1.645714724219e-06,-1.14675005602284e-05,-2.39265274260217e-05,6.02225023319947e-05,1.66754342595635e-06,6.58082978878357e-05 +11.4,0.559791548534054,-0.293077918751175,-0.000351307880418442,-1.91746424293917e-07,1.55162674375601e-07,1.73928706506618e-06,-8.21234052983216e-06,-2.67995729774591e-05,3.38397105475931e-05,1.75669053662147e-06,4.39407061697575e-05 +11.402,0.559791548134156,-0.293077918495238,-0.00035130433480976,-2.04913391810302e-07,9.94852672464684e-08,1.78107356640942e-06,-4.99528196586959e-06,-2.81119294509469e-05,8.72513693259211e-06,1.79558064856599e-06,2.98556767443989e-05 +11.404,0.5597915477144,-0.293077918353234,-0.000351300756124176,-2.11727552157394e-07,4.27149565718257e-08,1.77418761279655e-06,-1.89808585515691e-06,-2.79522342772127e-05,-1.45888960634309e-05,1.78728699689172e-06,3.15874345167714e-05 +11.406,0.559791547287246,-0.293077918324378,-0.000351297238059309,-2.12505735230929e-07,-1.23236698623699e-08,1.7227179821557e-06,1.00752045595365e-06,-2.64652709469684e-05,-3.56615579080811e-05,1.7358190592304e-06,4.4420404953096e-05 +11.408,0.559791546864377,-0.293077918402529,-0.000351293865252247,-2.07697470333579e-07,-6.31461272160364e-08,1.63154138116424e-06,3.6607453180132e-06,-2.38401555441236e-05,-5.41463983027139e-05,1.6459200925369e-06,5.92755136781412e-05 +11.41,0.559791546456456,-0.293077918576962,-0.000351290711893784,-1.97862753958878e-07,-1.07684292038854e-07,1.50613238894487e-06,6.01230176755373e-06,-2.02977842866891e-05,-6.97914512639963e-05,1.52288553384188e-06,7.29314369049991e-05 +11.412,0.559791546072926,-0.293077918833266,-0.000351287840722692,-1.83648263263356e-07,-1.4433726436282e-07,1.35237557610816e-06,8.02494182215097e-06,-1.60782810676596e-05,-8.24370710582231e-05,1.37239922374551e-06,8.43728718131491e-05 +11.414,0.559791545721863,-0.293077919154311,-0.00035128530239148,-1.65762986670278e-07,-1.71997416309485e-07,1.17638410471201e-06,9.6733454580016e-06,-1.14288786767594e-05,-9.20117333021072e-05,1.20039161975835e-06,9.32220571829222e-05 +11.416,0.559791545409874,-0.293077919521256,-0.000351283135186273,-1.44954881431354e-07,-1.90052779069852e-07,9.84328642899772e-07,1.094373897059e-05,-6.59276799819105e-06,-9.85260276142654e-05,1.01293378545483e-06,9.93509342179597e-05 +11.418,0.559791545142043,-0.293077919914523,-0.000351281365076908,-1.21988030787903e-07,-1.98368488302258e-07,7.82279994254817e-07,1.18332080245452e-05,-1.7991719225778e-06,-0.000102065180959589,8.16206546297045e-07,0.000102764599916863 +11.42,0.559791544921922,-0.29307792031473,-0.000351280006066296,-9.76220493331788e-08,-1.97249466760163e-07,5.76067919061459e-07,1.23489343750754e-05,2.74507153119668e-06,-0.000102780461225272,6.16677925683236e-07,0.000103556046697385 +11.422,0.559791544751555,-0.29307792070352,-0.000351279060805232,-7.25922932876069e-08,-1.87388202177473e-07,3.71158149353775e-07,1.25072868728565e-05,6.86202483724125e-06,-0.000100879844408563,4.22069130820744e-07,0.000101883573836428 +11.424,0.559791544631553,-0.293077921064282,-0.000351278521433698,-4.75929018417584e-08,-1.69801367411201e-07,1.7254854142725e-07,1.23323573575415e-05,1.04074387996718e-05,-9.66181665923634e-05,2.46719654322683e-07,9.79564798062522e-05 +11.426,0.559791544561184,-0.293077921382726,-0.000351278370611066,-2.32628638574461e-08,-1.4575844697879e-07,-1.53145170156359e-08,1.18548434957484e-05,1.32736911739843e-05,-9.02869515262215e-05,1.48395485551081e-07,9.20242457594153e-05 +11.428,0.559791544538501,-0.293077921647316,-0.000351278582691766,-1.73527858748931e-10,-1.16706602715246e-07,-1.88599264677756e-07,1.11107928413289e-05,1.53908795430407e-05,-8.22043631082601e-05,2.21788511574072e-07,8.43675660707715e-05 +11.43,0.55979154456049,-0.293077921849552,-0.000351279125008125,2.11803075078644e-08,-8.41949288066339e-08,-3.4413196944864e-07,1.01400554619579e-05,1.6726321716574e-05,-7.27054120033449e-05,3.54914361303515e-07,7.52905538398679e-05 +11.432,0.559791544623223,-0.293077921984096,-0.000351279959219644,4.03866939890783e-08,-4.98013158489574e-08,-4.79420912691104e-07,8.98509044944061e-06,1.72825330435572e-05,-6.21325872696004e-05,4.83689639786947e-07,6.51143317527009e-05 +11.434,0.559791544722036,-0.293077922048758,-0.000351281042691776,5.71206693056388e-08,-1.50647966323819e-08,-5.92662318527125e-07,7.68960589648322e-06,1.70939928878493e-05,-5.08271142188965e-05,5.95599146038211e-07,5.41731499131611e-05 +11.436,0.559791544851705,-0.293077922044355,-0.000351282329868918,7.11451175750078e-08,1.85746557024323e-08,-6.82729369566668e-07,6.29735846802287e-06,1.62229119027337e-05,-3.91210197917078e-05,6.86677535425563e-07,4.28169800875988e-05 +11.438,0.559791545006617,-0.293077921974459,-0.000351283773609254,8.23101031777275e-08,4.98268509785459e-08,-7.49146397693939e-07,4.85116113946412e-06,1.47542603135019e-05,-2.73300418754457e-05,7.55299936013086e-07,3.14349033832337e-05 +11.44,0.559791545180946,-0.293077921845048,-0.000351285326454509,9.05497621328621e-08,7.75916969564335e-08,-7.92049537068438e-07,3.39170358464434e-06,1.27903278246327e-05,-1.57474909847321e-05,8.00975779926724e-07,2.05688991290706e-05 +11.442,0.559791545368816,-0.293077921664092,-0.000351286941807402,9.58769175163034e-08,1.00988162277071e-07,-8.1213636163286e-07,1.95680277537092e-06,1.0445061482398e-05,-4.63917359388894e-06,8.23988144404267e-07,1.15952713684075e-05 +11.444,0.559791545564453,-0.293077921441095,-0.000351288574999956,9.83769732343484e-08,1.19371942886039e-07,-8.10606231444e-07,5.80722969722671e-07,7.83861170418249e-06,5.76074431204433e-06,8.25233392481778e-07,9.74511403962321e-06 +11.446,0.559791545762324,-0.293077921186604,-0.000351290184232328,9.81998093951938e-08,1.32342609093798e-07,-7.89093384384685e-07,-7.0644878836756e-07,5.0919789218307e-06,1.52526836647881e-05,8.06117943000081e-07,1.60957037189757e-05 +11.448,0.559791545957253,-0.293077920911725,-0.000351291731373493,9.55511780808785e-08,1.3973985857336e-07,-7.49595496784855e-07,-1.87916349148012e-06,2.32204880323775e-06,2.36737140307755e-05,7.68472943249715e-07,2.38614312664447e-05 +11.45,0.559791546144528,-0.293077920627645,-0.000351293182614315,9.06831554292709e-08,1.41630804306752e-07,-6.94398528261552e-07,-2.91677793028525e-06,-3.62574553698481e-07,3.08986369475863e-05,7.14473257343475e-07,3.103811880608e-05 +11.452,0.559791546319985,-0.293077920345201,-0.000351294508967606,8.38840663597388e-08,1.38289560358566e-07,-6.26000948994523e-07,-3.80354775453368e-06,-2.86508317071173e-06,3.68399859229732e-05,6.46558371096728e-07,3.71464700866849e-05 +11.454,0.559791546480065,-0.293077920074487,-0.000351295686618111,7.54689644111378e-08,1.30170471623906e-07,-5.47038584569675e-07,-4.52866910638605e-06,-5.1033170744852e-06,4.14472813709079e-05,5.67354500537427e-07,4.2005116617825e-05 +11.456,0.559791546621861,-0.293077919824519,-0.000351296697121944,6.57693899341966e-08,1.17876292060628e-07,-4.60211823510909e-07,-5.08623698714685e-06,-7.01171759544162e-06,4.47055413522143e-05,4.79599161155975e-07,4.55370115172503e-05 +11.458,0.559791546743142,-0.293077919602982,-0.000351297527465405,5.51240164625526e-08,1.02123601242143e-07,-3.68216419160838e-07,-5.47489831248404e-06,-8.54233003777325e-06,4.66330593931648e-05,3.86071519878451e-07,4.77240834628882e-05 +11.46,0.559791546842357,-0.293077919416025,-0.000351298169987621,4.38697966842531e-08,8.37069719095233e-08,-2.73679585938188e-07,-5.69763680679582e-06,-9.66528940215173e-06,4.72784875485106e-05,2.89537444843802e-07,4.8591524665153e-05 +11.462,0.559791546918621,-0.293077919268154,-0.000351298622183749,3.23334692353718e-08,6.34624436335399e-08,-1.79102468966816e-07,-5.76128034169091e-06,-1.03684387464734e-05,4.67175985397116e-05,1.92744985342665e-07,4.81999054618636e-05 +11.464,0.559791546971691,-0.293077919162175,-0.000351298886397497,2.0824675317492e-08,4.22332169236342e-08,-8.68091917793622e-08,-5.67601521339484e-06,-1.06562120238938e-05,4.50496341619543e-05,9.8758024945742e-08,4.66394847905376e-05 +11.466,0.55979154700192,-0.293077919099221,-0.000351298969420516,9.62940838178489e-09,2.08375955379504e-08,1.09606768106131e-09,-5.45501144255556e-06,-1.05481665069161e-05,4.23932607768182e-05,2.2981128300148e-08,4.40251010877585e-05 +11.468,0.559791547010209,-0.293077919078825,-0.000351298882013226,-9.95370452727794e-10,4.05508959744383e-11,8.27638513278919e-08,-5.11376357925754e-06,-1.00769080579899e-05,3.88824814359731e-05,8.27698465223823e-08,4.04912585204821e-05 +11.47,0.559791546997939,-0.293077919099059,-0.000351298638365111,-1.0825645935243e-08,-1.94700366940047e-08,1.56625993424936e-07,-4.66957028599882e-06,-9.2858082334522e-06,3.4662447391539e-05,1.58202334859917e-07,3.61872405742071e-05 +11.472,0.559791546966906,-0.293077919156705,-0.000351298255509253,-1.9673651596721e-08,-3.71026820378303e-08,2.21413640894033e-07,-4.14102779844115e-06,-8.22656179288605e-06,2.98852470548042e-05,2.25361181119334e-07,3.12722308396174e-05 +11.474,0.559791546919244,-0.293077919247469,-0.000351297752710547,-2.73897571290058e-08,-5.23762838655453e-08,2.7616698164414e-07,-3.54739154717541e-06,-6.9564388971417e-06,2.47058710295345e-05,2.82421096339464e-07,2.59105401766661e-05 +11.476,0.559791546857347,-0.29307791936621,-0.000351297150841326,-3.38632177854274e-08,-6.49284376264064e-08,3.20237125012204e-07,-2.9080904351312e-06,-5.53578363705213e-06,1.92783670971768e-05,3.2850302246322e-07,2.02671489950774e-05 +11.478,0.559791546783791,-0.293077919507183,-0.000351296471762047,-3.90221188695293e-08,-7.45194184137514e-08,3.53280450032839e-07,-2.24227580946774e-06,-4.02562358447233e-06,1.37522545434368e-05,3.63156916300925e-07,1.45037219732406e-05 +11.48,0.559791546701259,-0.293077919664288,-0.000351295737719526,-4.28323210232974e-08,-8.10309319642939e-08,3.75246143185945e-07,-1.5684051279937e-06,-2.48526199619847e-06,8.26929844044237e-06,3.86277474925954e-07,8.77597393639976e-06 +11.482,0.559791546612462,-0.293077919831307,-0.000351294970777474,-4.52957393815062e-08,-8.44604663985486e-08,3.8635764379462e-07,-9.03756236519352e-07,-9.70314106849888e-07,2.96062566827805e-06,3.98067209537419e-07,3.24400819183096e-06 +11.484,0.559791546520076,-0.29307792000213,-0.000351294192288951,-4.64473459693744e-08,-8.4912188391693e-08,3.87088645859055e-07,-2.64087363088862e-07,4.68937388920059e-07,-2.05571063643984e-06,3.9900508197022e-07,2.12499191312397e-06 +11.486,0.559791546426673,-0.293077920170956,-0.000351293422422891,-4.63520888338615e-08,-8.25847168428686e-08,3.78134801248861e-07,3.36501659870055e-07,1.78889889013196e-06,-6.67660891851143e-06,3.89813647158222e-07,6.92029618274803e-06 +11.488,0.559791546334667,-0.293077920332469,-0.000351292679749746,-4.51013393298943e-08,-7.7756592831166e-08,3.60382210185013e-07,8.85916340292398e-07,2.95371019310727e-06,-1.08154414244339e-05,3.71423687930504e-07,1.12464672174076e-05 +11.49,0.559791546246267,-0.293077920481982,-0.00035129198089405,-4.28084234726923e-08,-7.07698760704408e-08,3.3487303555113e-07,1.3742063043051e-06,3.93585511404471e-06,-1.44031505472343e-05,3.4493606134829e-07,1.49943370687683e-05 +11.492,0.559791546163434,-0.293077920615548,-0.000351291340257603,-3.96045141126721e-08,-6.20131723749819e-08,3.02769607996056e-07,1.7935930518532e-06,4.71630720588074e-06,-1.73886720994054e-05,3.11582391370558e-07,1.81059782137431e-05 +11.494,0.559791546087849,-0.293077920730035,-0.000351290769815618,-3.56340512652803e-08,-5.190464724692e-08,2.65318347153516e-07,2.13854628450641e-06,5.28456792215374e-06,-1.97389821502151e-05,2.72686089398923e-07,2.05457405478932e-05 +11.496,0.559791546020897,-0.293077920823167,-0.000351290278984215,-3.10503289746474e-08,-4.08749006863692e-08,2.23813679395205e-07,2.40572839427191e-06,5.6383682445192e-06,-2.14388272759499e-05,2.29624570810647e-07,2.2298027727488e-05 +11.498,0.559791545963648,-0.293077920893534,-0.000351289874560901,-2.60111376881895e-08,-2.93511742688356e-08,1.79563038049688e-07,2.59406385260942e-06,5.78285683227826e-06,-2.24898745459857e-05,1.83795961186385e-07,2.33658951788331e-05 +11.5,0.559791545916853,-0.293077920940571,-0.000351289560732063,-2.06740735642109e-08,-1.77434733572587e-08,1.33854181211272e-07,2.70440614347282e-06,5.72984368285694e-06,-2.29095874215763e-05,1.36598645645768e-07,2.3769604898813e-05 +11.502,0.559791545880951,-0.293077920964508,-0.000351289339144176,-1.51935131142994e-08,-6.4317995374104e-09,8.7924688363393e-08,2.73939204653633e-06,5.49688766726796e-06,-2.27298778757207e-05,8.94592740292676e-08,2.35450077735465e-05 +11.504,0.559791545856079,-0.293077920966299,-0.000351289209033309,-9.71650537806675e-09,4.24407731181067e-09,4.29346697083991e-08,2.7035040872658e-06,5.10612038762083e-06,-2.19953100871799e-05,4.42245241010002e-08,2.27414833639747e-05 +11.506,0.559791545842085,-0.293077920947532,-0.000351289167405497,-4.37949676523739e-09,1.39926820130707e-08,-5.6551985316825e-11,2.60255011985619e-06,4.58312207629494e-06,-2.07611497438041e-05,1.46621396788695e-08,2.1419701533337e-05 +11.508,0.559791545838561,-0.293077920910328,-0.000351289209259517,6.9369510136149e-10,2.25765656169965e-08,-4.0109929266845e-08,2.44353148826098e-06,3.95567953393148e-06,-1.90914671224827e-05,4.60324771627979e-08,1.96494876166816e-05 +11.51,0.55979154584486,-0.293077920857226,-0.000351289327845214,5.39462918780546e-09,2.98154001487949e-08,-7.6422420475239e-08,2.23450424829905e-06,3.2526481508167e-06,-1.70569339902255e-05,8.22097710822802e-08,1.75074762994438e-05 +11.512,0.559791545860139,-0.293077920791066,-0.000351289514949199,9.63171209455671e-09,3.55871582202619e-08,-1.08337665227739e-07,1.98410732288279e-06,2.50295617565343e-06,-1.47325901478335e-05,1.14438915649634e-07,1.50748361168538e-05 +11.514,0.559791545883387,-0.293077920714877,-0.000351289761195875,1.33310584793393e-08,3.98272248514119e-08,-1.35352781066593e-07,1.70140984634559e-06,1.73460551478477e-06,-1.21958224769272e-05,1.41719089405787e-07,1.24355031118925e-05 +11.516,0.559791545913463,-0.293077920631757,-0.000351290056360323,1.64373514799383e-08,4.25255802794003e-08,-1.57120955135443e-07,1.39574463098344e-06,9.73752328770276e-07,-9.52421821964965e-06,1.63601974451559e-07,9.67507257689631e-06 +11.518,0.559791545949136,-0.293077920544775,-0.000351290389679695,1.89140370032724e-08,4.37222341664926e-08,-1.73449653945187e-07,1.07629183343529e-06,2.44009673577903e-07,-6.7936550482443e-06,1.79872613285002e-07,6.8827097676754e-06 +11.52,0.55979154598912,-0.293077920456868,-0.000351290750158939,2.0742518813679e-08,4.35016189737118e-08,-1.84295575328417e-07,7.51967932364157e-07,-4.34059038716723e-07,-4.07651169762805e-06,1.90492787332492e-07,4.16795041252821e-06 +11.522,0.559791546032107,-0.293077920370768,-0.000351291126861997,2.19219087327287e-08,4.19859980116259e-08,-1.89755700735697e-07,4.3123837833993e-07,-1.04336678186078e-06,-1.4400893671992e-06,1.95577657397807e-07,1.82987381148646e-06 +11.524,0.559791546076807,-0.293077920288924,-0.000351291509181742,2.24674723270393e-08,3.93281518462673e-08,-1.90055932797216e-07,1.21819221379456e-07,-1.57058394067557e-06,1.05470666920264e-06,1.95378474842622e-07,1.89577952185005e-06 +11.526,0.559791546121976,-0.293077920213456,-0.000351291887085728,2.24091856182465e-08,3.57036622489243e-08,-1.85536874058887e-07,-1.69295133467566e-07,-2.00619729162676e-06,3.35458136963081e-06,1.90265222081183e-07,3.91237837901966e-06 +11.528,0.559791546166444,-0.29307792014611,-0.000351292251329238,2.17902917931691e-08,3.13033626797611e-08,-1.76637607318694e-07,-4.36026215133818e-07,-2.34444408331365e-06,5.41461320224931e-06,1.80708499110488e-07,5.91646626374569e-06 +11.53,0.559791546209138,-0.293077920088242,-0.000351292593636157,2.06650807577114e-08,2.63258859156708e-08,-1.63878421249893e-07,-6.73405775588657e-07,-2.58320795310253e-06,7.19882747165081e-06,1.67260978065193e-07,7.67786139717061e-06 +11.532,0.559791546249104,-0.293077920040806,-0.000351292906842923,1.90966686908148e-08,2.09705308673521e-08,-1.47842297432094e-07,-8.77554973133047e-07,-2.7237379018879e-06,8.68060484604333e-06,1.5053833674498e-07,9.14011768973476e-06 +11.534,0.559791546285524,-0.29307792000436,-0.000351293185005347,1.7154860865178e-08,1.54309343081155e-08,-1.29156001865708e-07,-1.04554559454495e-06,-2.77027359385335e-06,9.84272472552524e-06,1.31200898635869e-07,1.02784634745442e-05 +11.536,0.559791546317724,-0.293077919979083,-0.000351293423466931,1.49144863126355e-08,9.88943649193994e-09,-1.08471398529998e-07,-1.17560128298941e-06,-2.72962902281403e-06,1.06771449320928e-05,1.09937651217185e-07,1.10830653196518e-05 +11.538,0.559791546345182,-0.293077919964802,-0.000351293618890941,1.24524557332209e-08,4.51241821686059e-09,-8.64474221373412e-08,-1.26713917136783e-06,-2.61071025908718e-06,1.11846400196988e-05,8.74561739738445e-08,1.15549825662684e-05 +11.54,0.559791546367534,-0.293077919961033,-0.000351293769256619,9.84592962716244e-09,-5.53404544412278e-10,-6.37328384511874e-08,-1.32043681544293e-06,-2.42409911588307e-06,1.13742452956185e-05,6.44912651748899e-08,1.17044122429151e-05 +11.542,0.559791546384566,-0.293077919967016,-0.000351293873822295,7.17070847144975e-09,-5.18397824667062e-09,-4.09504409548723e-08,-1.33676403280021e-06,-2.18150150721511e-06,1.12624597148361e-05,4.18954807209913e-08,1.1549410622784e-05 +11.544,0.559791546396216,-0.293077919981769,-0.000351293933058383,4.49887349596217e-09,-9.27941057327177e-09,-1.86829995918479e-08,-1.31826494165239e-06,-1.89520274473984e-06,1.08723212724506e-05,2.13401451979364e-08,1.11147193285049e-05 +11.546,0.559791546402561,-0.293077920004133,-0.000351293948554293,1.89764870484076e-09,-1.27647892256291e-08,2.53884413492528e-09,-1.26770122177455e-06,-1.57780385978551e-06,1.02324147419062e-05,1.31524387139103e-08,1.04306683802152e-05 +11.548,0.559791546403807,-0.293077920032828,-0.000351293922903007,-5.71931391135458e-10,-1.55906260124131e-08,2.22466593757723e-08,-1.18857701458781e-06,-1.24164914461183e-06,9.37580482001999e-06,2.71718342839923e-08,9.53205769710989e-06 +11.55,0.559791546400274,-0.293077920066496,-0.000351293859567656,-2.85665935351207e-09,-1.77313858040781e-08,4.00420634150178e-08,-1.08487524519449e-06,-8.98420227104222e-07,8.33884784140912e-06,4.38854120150122e-08,8.45697916068612e-06 +11.552,0.55979154639238,-0.293077920103753,-0.000351293762734753,-4.91143237191292e-09,-1.91843069208296e-08,5.56020507414051e-08,-9.60842516661309e-07,-5.59031987366193e-07,7.16008068806734e-06,5.90232822420632e-08,7.24586023632512e-06 +11.554,0.559791546380628,-0.293077920143233,-0.000351293637159453,-6.70002942015689e-09,-1.99675137535427e-08,6.8682386167284e-08,-8.21016865604024e-07,-2.33202346322462e-07,5.87911924004738e-06,7.18391409286108e-08,5.94074869579852e-06 +11.556,0.55979154636558,-0.293077920183623,-0.000351293488005208,-8.19549983433012e-09,-2.01171163061198e-08,7.91185277016025e-08,-6.70005717574365e-07,7.07073288786139e-08,4.53551432522988e-06,8.20463650119717e-08,4.58528051293538e-06 +11.558,0.559791546347846,-0.293077920223702,-0.000351293320685342,-9.38005229045405e-09,-1.96846844380282e-08,8.68244434682015e-08,-5.1238180365243e-07,3.45768552678725e-07,3.16776986586457e-06,8.95207024433976e-08,3.22751559683532e-06 +11.56,0.55979154632806,-0.293077920262362,-0.000351293140707434,-1.02450270489396e-08,-1.8734042095405e-08,9.17896071650594e-08,-3.52599893727124e-07,5.86589804507783e-07,1.81243908770097e-06,9.42404207120375e-08,1.93735637672452e-06 +11.562,0.559791546306866,-0.293077920298638,-0.000351292953526913,-1.07904518653624e-08,-1.73383252199974e-08,9.40741998190046e-08,-1.94830263032726e-07,7.89285303783543e-07,5.03293587351371e-07,9.62652920032921e-08,9.56156136429136e-07 +11.564,0.559791546284898,-0.293077920331716,-0.000351292764410635,-1.10243481010704e-08,-1.55769008802712e-08,9.38027815144646e-08,-4.29517532651764e-08,9.51530521042585e-07,-7.29345403516049e-07,9.5724280681224e-08,1.19966658001885e-06 +11.566,0.559791546262769,-0.293077920360945,-0.000351292578315787,-1.09622588784232e-08,-1.35322031358258e-08,9.11568182049394e-08,9.95731275198671e-08,1.07240258340042e-06,-1.85913090476995e-06,9.28054801543271e-08,2.14856459751126e-06 +11.568,0.559791546241049,-0.293077920385844,-0.000351292399783362,-1.0626055590991e-08,-1.128729054667e-08,8.63662578953856e-08,2.29795349416861e-07,1.15224149666151e-06,-2.86416376727832e-06,8.77464898908215e-08,3.09578753389704e-06 +11.57,0.559791546220264,-0.293077920406095,-0.000351292232850756,-1.00430774807558e-08,-8.92323714918021e-09,7.97001631358274e-08,3.45237727294923e-07,1.19260504249903e-06,-3.72722252367424e-06,8.08245233229524e-08,3.92857272005069e-06 +11.572,0.559791546200877,-0.293077920421537,-0.00035129208098271,-9.24510468181085e-09,-6.51687037667231e-09,7.14573678006837e-08,4.43992065334391e-07,1.19605020332186e-06,-4.43584925734809e-06,7.23470591875452e-08,4.6156715304343e-06 +11.574,0.559791546183284,-0.293077920432162,-0.000351291947021284,-8.26710921941844e-09,-4.13903633589331e-09,6.1956766106437e-08,5.24656706968445e-07,1.16592499543903e-06,-4.98245455310519e-06,6.26427775805271e-08,5.14387977395614e-06 +11.576,0.559791546167808,-0.293077920438093,-0.000351291833155645,-7.1464778539373e-09,-1.85317039491671e-09,5.15275495882651e-08,5.86419801607137e-07,1.10620887450199e-06,-5.36409371782017e-06,5.20537679020504e-08,5.50827447312693e-06 +11.578,0.559791546154698,-0.293077920439575,-0.000351291740911086,-5.92143001299016e-09,2.85799162114162e-10,4.05003912351587e-08,6.29052365753266e-07,1.0213704881856e-06,-5.58222131713973e-06,4.09319765557532e-08,5.70964967283681e-06 +11.58,0.559791546144123,-0.29307792043695,-0.00035129167115408,-4.63026839092452e-09,2.23231155782525e-09,2.91986643197087e-08,6.52727871752599e-07,9.16142162132666e-07,-5.64247606971031e-06,2.96476744166928e-08,5.75351252132585e-06 +11.582,0.559791546136177,-0.293077920430646,-0.000351291624116429,-3.31051852597889e-09,3.95036781064605e-09,1.79304869563099e-08,6.5813327010352e-07,7.95360305394933e-07,-5.55413614405718e-06,1.86565618815643e-08,5.64926240524703e-06 +11.584,0.559791546130881,-0.293077920421149,-0.000351291599432133,-1.99773531051073e-09,5.41375277940463e-09,6.98211974348239e-09,6.46455111663836e-07,6.63833571445361e-07,-5.32962562971386e-06,9.05812682841764e-09,5.40957378865259e-06 +11.586,0.559791546128186,-0.29307792040899,-0.00035129159618795,-7.24698079323829e-10,6.6057020964272e-09,-3.38801556254318e-09,6.19129747469888e-07,5.26169385839264e-07,-4.98407478482953e-06,7.45916462782215e-09,5.04986904063562e-06 +11.588,0.559791546127982,-0.293077920394726,-0.000351291612984195,4.78783679369651e-10,7.51843032276239e-09,-1.29541793958424e-08,5.77850267635729e-07,3.86728843394232e-07,-4.53469553574197e-06,1.49855527809131e-08,4.58769372691747e-06 +11.59,0.559791546130101,-0.293077920378917,-0.000351291648004667,1.58670299121883e-09,8.15261747000396e-09,-2.15267977055091e-08,5.24698340331868e-07,2.49463644186376e-07,-4.0001352924488e-06,2.30734873274169e-08,4.042106235122e-06 +11.592,0.559791546134329,-0.293077920362115,-0.000351291699091386,2.57757704069689e-09,8.51628489950778e-09,-2.89547205656358e-08,4.61866656031975e-07,1.17870990745698e-07,-3.39998428716756e-06,3.02910358839767e-08,3.43323572324998e-06 +11.594,0.559791546140411,-0.293077920344852,-0.00035129176382355,3.43416961534653e-09,8.6241014329867e-09,-3.51267348541778e-08,3.91568721891015e-07,-5.0237591873732e-09,-2.75420918710195e-06,3.63325769522219e-08,2.78190933504968e-06 +11.596,0.559791546148065,-0.293077920327619,-0.000351291839598325,4.14385192826078e-09,8.49618986275829e-09,-3.99715573140424e-08,3.16156822943654e-07,-1.16802401084444e-07,-2.08254333916533e-06,4.10741055300924e-08,2.10964089292344e-06 +11.598,0.559791546156987,-0.293077920310867,-0.000351291923709779,4.69879690712157e-09,8.15689182864877e-09,-4.34569082108419e-08,2.37886099708164e-07,-2.15525514101415e-07,-1.40401319043612e-06,4.44647776101961e-08,1.44024098073262e-06 +11.6,0.559791546166861,-0.293077920294992,-0.000351292013425958,5.09539632709333e-09,7.63408780635273e-09,-4.55876100757863e-08,1.58914548186726e-07,-2.99760216649631e-07,-7.36514148275697e-07,4.65023929791488e-08,8.10902652432153e-07 +11.602,0.559791546177368,-0.293077920280331,-0.000351292106060219,5.3344550998684e-09,6.95785096205038e-09,-4.64029648039444e-08,8.13793477050059e-08,-3.68705066477932e-07,-9.64523599877642e-08,4.72239689545332e-08,3.89703838865616e-07 +11.604,0.559791546188198,-0.29307792026716,-0.000351292199037817,5.42091371791346e-09,6.15926754044051e-09,-4.59734195157375e-08,7.14706072161832e-09,-4.21995771659342e-07,5.0162218128753e-07,4.66998734917106e-08,6.55558025299806e-07 +11.606,0.559791546199052,-0.293077920255693,-0.000351292289953897,5.36304334275487e-09,5.2698678754132e-09,-4.43964760787945e-08,-6.21655504851185e-08,-4.59670496111388e-07,1.04527411032308e-06,4.50286667528093e-08,1.14357312244303e-06 +11.608,0.559791546209651,-0.293077920246081,-0.000351292376623721,5.17225151597302e-09,4.32058555599516e-09,-4.17923230744456e-08,-1.25108257087475e-07,-4.82218431852139e-07,1.52431539612896e-06,4.23322325568827e-08,1.60365960193715e-06 +11.61,0.559791546219741,-0.293077920238411,-0.00035129245712319,4.86261031440503e-09,3.34099414800485e-09,-3.82992144942793e-08,-1.80473691547257e-07,-4.90458368363293e-07,1.93092503792268e-06,3.87509619473578e-08,2.00039787705221e-06 +11.612,0.559791546229101,-0.293077920232717,-0.000351292529820579,4.45035674978407e-09,2.3587520825422e-09,-3.40686229227558e-08,-2.27359797655373e-07,-4.85507467562376e-07,2.25970717831985e-06,3.44389380562201e-08,2.322431163759e-06 +11.614,0.559791546237542,-0.293077920228976,-0.000351292593397681,3.95317112378323e-09,1.3989642777547e-09,-2.92603857809969e-08,-2.65204525006899e-07,-4.68718813761823e-07,2.5076147755455e-06,2.95593443607451e-08,2.56479290177443e-06 +11.616,0.559791546244914,-0.293077920227121,-0.000351292646862122,3.38953864975659e-09,4.8387682749512e-10,-2.40381638205749e-08,-2.93667867801535e-07,-4.41566921916049e-07,2.67390536795851e-06,2.42807831197261e-08,2.72598460742295e-06 +11.618,0.559791546251101,-0.293077920227041,-0.000351292689550337,2.77849965257722e-09,-3.67303409909303e-10,-1.8564764309164e-08,-3.1263186484047e-07,-4.05675493197941e-07,2.76002831700533e-06,1.87751283875534e-08,2.80714581013639e-06 +11.62,0.559791546256028,-0.29307792022859,-0.00035129272112118,2.13901119039429e-09,-1.13882514529719e-09,-1.29980505525499e-08,-3.22283866260638e-07,-3.62744556614679e-07,2.76936026194351e-06,1.32220123185102e-08,2.81154881946541e-06 +11.622,0.559791546259657,-0.293077920231596,-0.000351292741542539,1.48936418753481e-09,-1.81828163636786e-09,-7.48732326139117e-09,-3.23040205696472e-07,-3.14453324490385e-07,2.70700996341026e-06,7.84757054207435e-09,2.74429204163513e-06 +11.624,0.559791546261985,-0.293077920235863,-0.000351292751070473,8.46850367608547e-10,-2.39663844325859e-09,-2.17001069891e-09,-3.15476811341212e-07,-2.62487948044012e-07,2.57960059563191e-06,3.34215167313028e-09,2.61204226120996e-06 +11.626,0.559791546263044,-0.293077920241182,-0.000351292750222582,2.27456942170104e-10,-2.86823342854379e-09,2.83107912113532e-09,-3.00350022630651e-07,-2.08451311766964e-07,2.39495662884807e-06,4.03652185071328e-09,2.42270083574818e-06 +11.628,0.559791546262895,-0.293077920247336,-0.000351292739746156,-3.54549722913925e-10,-3.23044369032635e-09,7.40981581648123e-09,-2.78603529135717e-07,-1.53800583380069e-07,2.16182453882615e-06,8.09115828398895e-09,2.18512239532842e-06 +11.63,0.559791546261626,-0.293077920254104,-0.000351292720583318,-8.86957174373135e-10,-3.48343576206427e-09,1.14783772764428e-08,-2.51278164942287e-07,-9.99374194514045e-08,1.88959004693414e-06,1.20280573093895e-08,1.90884225368571e-06 +11.632,0.559791546259347,-0.29307792026127,-0.000351292693832647,-1.35966238268296e-09,-3.63019336813193e-09,1.49681760042169e-08,-2.19414764135303e-07,-4.8124698670151e-08,1.58796673726928e-06,1.54619946506952e-08,1.6037759145268e-06 +11.634,0.559791546256187,-0.293077920268625,-0.000351292660710614,-1.76461623091425e-09,-3.67593455674486e-09,1.78302442255192e-08,-1.84130488634041e-07,6.1756155744764e-10,1.26678181833178e-06,1.82905433065707e-08,1.28009397837927e-06 +11.636,0.559791546252289,-0.293077920275974,-0.00035129262251167,-2.09618433721937e-09,-3.62772312190214e-09,2.00353032775458e-08,-1.46611889295884e-07,4.53630188963954e-08,9.35656933878058e-07,2.0468701503711e-08,9.4815966349576e-07 +11.638,0.559791546247802,-0.293077920283136,-0.000351292580569401,-2.35106378809772e-09,-3.4944824811593e-09,2.1572871961031e-08,-1.07983066932628e-07,8.53622728058855e-08,6.03764434281694e-07,2.19801663641082e-08,6.19256451291593e-07 +11.64,0.559791546242884,-0.293077920289951,-0.000351292536220182,-2.52811660494984e-09,-3.28627403067863e-09,2.24503610146723e-08,-6.92779167366251e-08,1.20101845135805e-07,2.79688598670064e-07,2.28300170885186e-08,3.12169177175479e-07 +11.642,0.55979154623769,-0.293077920296281,-0.000351292490767957,-2.62817545504419e-09,-3.01407510061613e-09,2.26916263557111e-08,-3.14609449600277e-08,1.49189688381289e-07,-2.88128895767223e-08,2.30413077233445e-08,1.55169380944967e-07 +11.644,0.559791546232372,-0.293077920302008,-0.000351292445453677,-2.65396038478993e-09,-2.68951527715354e-09,2.23351094563654e-08,4.4964032497309e-09,1.72379471807777e-07,-3.14897413700095e-07,2.2652463719823e-08,3.59019889557558e-07 +11.646,0.559791546227074,-0.293077920307039,-0.000351292401427519,-2.61018984204526e-09,-2.32455721338479e-09,2.14320367009103e-08,3.77961550942964e-08,1.8960874537096e-07,-5.72815232744307e-07,2.17151756704611e-08,6.04563740663444e-07 +11.648,0.559791546221931,-0.293077920311306,-0.00035129235972553,-2.50277576441277e-09,-1.93108029566979e-09,2.00438485253884e-08,6.78485045926794e-08,2.0097465358603e-07,-7.97964125334152e-07,2.0291594844762e-08,8.25676072246123e-07 +11.65,0.559791546217063,-0.293077920314763,-0.000351292321252125,-2.33879582367457e-09,-1.52065859904076e-09,1.82401801995741e-08,9.40497679735375e-08,2.06671485480879e-07,-9.86826939608277e-07,1.84522774256353e-08,1.01261338649229e-06 +11.652,0.559791546212576,-0.293077920317389,-0.000351292286764809,-2.12657669251849e-09,-1.104394353746e-09,1.6096540766954e-08,1.15983611603575e-07,2.07008021835141e-07,-1.13712858573578e-06,1.62739251559039e-08,1.16162211573393e-06 +11.654,0.559791546208557,-0.293077920319181,-0.000351292256865962,-1.87486137726032e-09,-6.92626511700288e-10,1.36916658566315e-08,1.33448807559973e-07,2.02390187942259e-07,-1.24775970805651e-06,1.38367825233434e-08,1.2710919170004e-06 +11.656,0.559791546205076,-0.293077920320159,-0.000351292231998146,-1.59278146227866e-09,-2.94833601977051e-10,1.11055019347285e-08,1.46271883494397e-07,1.93300236928138e-07,-1.31865525443449e-06,1.1223014428472e-08,1.34075058289943e-06 +11.658,0.559791546202186,-0.29307792032036,-0.000351292212443954,-1.2897738432828e-09,8.05744360121796e-11,8.41704483889409e-09,1.54452839407213e-07,1.8030368864607e-07,-1.35080661933888e-06,8.51567100271663e-09,1.37151143728008e-06 +11.66,0.559791546199917,-0.293077920319837,-0.000351292198329967,-9.74970104649871e-10,4.26381152607149e-10,5.70227545737355e-09,1.58130453176106e-07,1.63990349077955e-07,-1.34613327429337e-06,5.80071659228619e-09,1.36527391646225e-06 +11.662,0.559791546198286,-0.293077920318655,-0.000351292189634853,-6.57252030578165e-10,7.36535832324218e-10,3.03251174171881e-09,1.57471258255197e-07,1.44981249228317e-07,-1.30732404068877e-06,3.18913667434607e-09,1.32473125846984e-06 +11.664,0.559791546197288,-0.293077920316891,-0.00035129218619992,-3.45085071629152e-10,1.00630614952035e-09,4.72979294619032e-10,1.52829138233595e-07,1.23918236782818e-07,-1.23778678279291e-06,1.16423588089446e-09,1.25332701022415e-06 +11.666,0.559791546196905,-0.29307792031463,-0.000351292187742935,-4.59354776438505e-11,1.23220877945543e-09,-1.91863538945228e-09,1.4463430453301e-07,1.01439689981197e-07,-1.14149228264112e-06,2.28070390492324e-09,1.15508169584686e-06 +11.668,0.559791546197104,-0.293077920311962,-0.000351292193874461,2.3345214650308e-10,1.41206490944528e-09,-4.09298983594698e-09,1.33303090787986e-07,7.81770481685248e-08,-1.02277734892508e-06,4.33601118660444e-09,1.03438622880827e-06 +11.67,0.559791546197839,-0.293077920308981,-0.000351292204114895,4.87276885508035e-10,1.5449169721295e-09,-6.00974478515214e-09,1.19355914041135e-07,5.47201173262245e-08,-8.8625981553589e-07,6.22424610668534e-09,8.95933360295564e-07 +11.672,0.559791546199054,-0.293077920305782,-0.00035129221791344,7.10875802667566e-10,1.63094537875015e-09,-7.63802909809015e-09,1.03340946910913e-07,3.16240089670641e-08,-7.36698896331041e-07,7.84250060494461e-09,7.4458357026392e-07 +11.674,0.559791546200683,-0.293077920302457,-0.000351292234667011,9.00640673151642e-10,1.67141300799774e-09,-8.95654037047598e-09,8.5785545333907e-08,9.39526234570717e-09,-5.78839060016012e-07,9.1555660924601e-09,5.85236779554225e-07 +11.676,0.559791546202656,-0.293077920299097,-0.000351292253739602,1.05401798400316e-09,1.66852642813297e-09,-9.95338533815394e-09,6.72725763983655e-08,-1.14942777518197e-08,-4.17299875210459e-07,1.01471579292804e-08,4.22843829098847e-07 +11.678,0.559791546204899,-0.293077920295783,-0.000351292274480552,1.16973097874519e-09,1.62543589699045e-09,-1.06257398713184e-08,4.83710294042649e-08,-3.06421554794758e-08,-2.56473661753904e-07,1.08128007579344e-08,2.62787818118559e-07 +11.68,0.559791546207335,-0.293077920292595,-0.000351292296242561,1.24750210162019e-09,1.54595780621509e-09,-1.09792799851694e-08,2.95458102427005e-08,-4.77430595060035e-08,-1.00427478831785e-07,1.11575461471099e-08,1.15056651865071e-07 +11.682,0.559791546209889,-0.2930779202896,-0.000351292318397672,1.28791421971598e-09,1.43446365896645e-09,-1.10274497866455e-08,1.12687636999428e-08,-6.2526372968094e-08,4.71862132700347e-08,1.11946888220812e-08,7.91395670612087e-08 +11.684,0.559791546212487,-0.293077920286857,-0.00035129234035236,1.29257715641998e-09,1.29585231434263e-09,-1.07905351320892e-08,-6.02295990844981e-09,-7.47908679431212e-08,1.83188533785443e-07,1.09446625056572e-08,1.97959563760392e-07 +11.686,0.559791546215059,-0.293077920284416,-0.000351292361559813,1.26382238008219e-09,1.135300187194e-09,-1.02946956515038e-08,-2.19269047363516e-08,-8.44324610227618e-08,3.04920151628152e-07,1.04339308067732e-08,3.17152847211897e-07 +11.688,0.559791546217542,-0.293077920282316,-0.000351292381531143,1.20486953747458e-09,9.58122470251616e-10,-9.57085452557677e-09,-3.6123881663749e-08,-9.13991105022862e-08,4.10287255559007e-07,9.6938622653764e-09,4.21893783198102e-07 +11.69,0.559791546219879,-0.293077920280584,-0.000351292399843231,1.11932685342721e-09,7.69703745184898e-10,-8.65354662926794e-09,-4.84404183432993e-08,-9.56942858288695e-08,4.97747676409928e-07,8.75952086161506e-09,5.09172485353494e-07 +11.692,0.559791546222019,-0.293077920279237,-0.00035129241614533,1.01110786410141e-09,5.7534532693618e-10,-7.57986381993727e-09,-5.86614090636186e-08,-9.73943148352201e-08,5.66317825967262e-07,7.66861766466872e-09,5.77618120806331e-07 +11.694,0.559791546223923,-0.293077920278282,-0.000351292430162686,8.84681217172653e-10,3.80126485843888e-10,-6.38827532539813e-09,-6.66272592652196e-08,-9.66136892710097e-08,6.1559871783397e-07,6.46043486418281e-09,6.26685868701838e-07 +11.696,0.559791546225558,-0.293077920277716,-0.000351292441698431,7.44598827040559e-10,1.88890569852183e-10,-5.11746894860166e-09,-7.23449078422188e-08,-9.35362898246907e-08,6.45701374313866e-07,5.17480390937777e-09,6.56439706291205e-07 +11.698,0.559791546226901,-0.293077920277527,-0.000351292450632562,5.9530158580381e-10,5.98132654516603e-12,-3.80546982814296e-09,-7.58490492635929e-08,-8.84153861235661e-08,6.5718958053281e-07,3.85175549162121e-09,6.67434269077084e-07 +11.7,0.559791546227939,-0.293077920277693,-0.00035129245692031,4.41202629986086e-10,-1.64770974642199e-10,-2.48871062646954e-09,-7.71327446357836e-08,-8.14903700075038e-08,6.51084221258978e-07,2.53288172189181e-09,6.60682074731424e-07 +11.702,0.559791546228666,-0.293077920278186,-0.000351292460587405,2.8677060726071e-10,-3.19980153484813e-10,-1.20113294310733e-09,-7.63278329429963e-08,-7.30318583386397e-08,6.28793024593094e-07,1.27567434199741e-09,6.37605095800763e-07 +11.704,0.559791546229086,-0.293077920278972,-0.000351292461724842,1.35891298214134e-10,-4.56898407996726e-10,2.64614719025531e-11,-7.36841143656071e-08,-6.33555707896389e-08,5.92033366775399e-07,4.77412619916477e-10,5.99955652057166e-07 +11.706,0.55979154622921,-0.293077920280013,-0.000351292460481559,-7.96585020168638e-12,-5.73402436643341e-10,1.16700052399401e-09,-6.93334278878406e-08,-5.27598797982961e-08,5.42759413801761e-07,1.30028613471045e-09,5.49707659042004e-07 +11.708,0.559791546229054,-0.293077920281266,-0.00035129245705684,-1.41442413337198e-10,-6.67937927189887e-10,2.19749912710936e-09,-6.34978181146408e-08,-4.15500966965872e-08,4.83102273462935e-07,2.30111917216727e-09,4.89025756035275e-07 +11.71,0.559791546228644,-0.293077920282685,-0.000351292451691562,-2.61957122660335e-10,-7.39602823429745e-10,3.09940961784639e-09,-5.64964741656408e-08,-3.00696967326628e-08,4.15317086277847e-07,3.19718217337337e-09,4.20219371767966e-07 +11.712,0.559791546228007,-0.293077920284224,-0.000351292444659201,-3.67428309999736e-10,-7.88216714120525e-10,3.85876747222056e-09,-4.84959294943677e-08,-1.8606644003241e-08,3.41709299744443e-07,3.95554996885082e-09,3.45634645124622e-07 +11.714,0.559791546227174,-0.293077920285838,-0.000351292436256492,-4.55940840637784e-10,-8.14029399442701e-10,4.46624681682401e-09,-3.97876176449951e-08,-7.42461647717906e-09,2.64572218300282e-07,4.56266222090888e-09,2.67650216035835e-07 +11.716,0.559791546226183,-0.293077920287481,-0.000351292426794214,-5.2657878057977e-10,-8.17915180029251e-10,4.91705634542204e-09,-3.07462388882703e-08,3.20229953656353e-09,1.86127155355468e-07,5.01235608850113e-09,1.88676717929943e-07 +11.718,0.559791546225068,-0.29307792028911,-0.000351292416588267,-5.78925796190852e-10,-8.01220201296448e-10,5.2107554382458e-09,-2.15522044655406e-08,1.30555288802043e-08,1.08471391591115e-07,5.30368561715991e-09,1.1135971958199e-07 +11.72,0.559791546223867,-0.293077920290685,-0.000351292405951192,-6.12787598441923e-10,-7.65693064508439e-10,5.35094191178646e-09,-1.24344978758045e-08,2.19373130772075e-08,3.34975103211196e-08,5.44007112574399e-09,4.19278623374042e-08 +11.722,0.559791546222617,-0.293077920292172,-0.000351292395184499,-6.28663787694064e-10,-7.13470948987628e-10,5.34474547953027e-09,-3.63598040557854e-09,2.97158131435611e-08,-3.70641017883061e-08,5.4286796915978e-09,4.76444912415559e-08 +11.724,0.559791546221353,-0.293077920293539,-0.00035129238457221,-6.27331520064235e-10,-6.46829811934208e-10,5.20268550463325e-09,4.64905891561681e-09,3.62453123070513e-08,-1.01676479735668e-07,5.28013921234979e-09,1.08043708490936e-07 +11.726,0.559791546220108,-0.29307792029476,-0.000351292374373757,-6.10067552031591e-10,-5.68489699759374e-10,4.93803956058746e-09,1.22124532708098e-08,4.14217271593115e-08,-1.5915220530295e-07,5.00795344014909e-09,1.64907028196328e-07 +11.728,0.559791546218912,-0.293077920295813,-0.000351292364820052,-5.78481706981002e-10,-4.8114290329698e-10,4.56607668342152e-09,1.89223636760185e-08,4.5248527147432e-08,-2.08552793091123e-07,4.62765554655814e-09,2.14242275385154e-07 +11.73,0.559791546217794,-0.293077920296684,-0.000351292356109451,-5.34378097327525e-10,-3.87495591169666e-10,4.10382838822306e-09,2.46885845100964e-08,4.76979566954476e-08,-2.49146189790161e-07,4.15657554052188e-09,2.54869466913924e-07 +11.732,0.559791546216775,-0.293077920297363,-0.000351292348404739,-4.79727368940583e-10,-2.90351076515126e-10,3.56949192426054e-09,2.94209101525138e-08,4.87838935913875e-08,-2.80521265938078e-07,3.61326925283812e-09,2.86247513302107e-07 +11.734,0.559791546215875,-0.293077920297846,-0.000351292341831483,-4.16694456717483e-10,-1.92360016804137e-10,2.98174332447087e-09,3.3077707239933e-08,4.85583795395535e-08,-3.02547049913016e-07,3.01685761999975e-09,3.0819923483167e-07 +11.736,0.559791546215108,-0.293077920298133,-0.000351292336477765,-3.47416539980865e-10,-9.61175583569335e-11,2.35930372460861e-09,3.56450979843793e-08,4.71393757362041e-08,-3.15319818866636e-07,2.38668198598574e-09,3.20810351960785e-07 +11.738,0.559791546214485,-0.29307792029823,-0.000351292332394268,-2.74114064779981e-10,-3.80251385934158e-12,1.72046404900447e-09,3.70883879164144e-08,4.46517822716437e-08,-3.19155292472141e-07,1.74216805261108e-09,3.24390861294289e-07 +11.74,0.559791546214012,-0.293077920298148,-0.000351292329595909,-1.99062988315224e-10,8.24895707296216e-11,1.08268255472019e-09,3.74769659749946e-08,4.11858047666321e-08,-3.14583428750944e-07,1.10391671646532e-09,3.1947382856451e-07 +11.742,0.559791546213689,-0.2930779202979,-0.000351292328063538,-1.24206200879953e-10,1.60940705207242e-10,4.62130334000272e-10,3.69218544626764e-08,3.69045072279479e-08,-3.02324137946232e-07,5.04869821372637e-10,3.06798061231868e-07 +11.744,0.559791546213515,-0.293077920297504,-0.000351292327747388,-5.13755704645348e-11,2.30107599641397e-10,-1.26613997064609e-10,3.54577478489718e-08,3.19640147683236e-08,-2.83217893581865e-07,2.67619246142647e-10,2.87213031333155e-07 +11.746,0.559791546213483,-0.29307792029698,-0.000351292328569994,1.76247905159185e-11,2.88796764280522e-10,-6.70741240327064e-10,3.31817906484769e-08,2.65482080763431e-08,-2.58231803995588e-07,7.3048478134395e-10,2.61704992649204e-07 +11.748,0.559791546213585,-0.293077920296349,-0.000351292330430353,8.13515921294173e-11,3.36300431946805e-10,-1.1595412130473e-09,3.02327607393324e-08,2.08340289465181e-08,-2.28424917869799e-07,1.21006276152306e-09,2.31356909747451e-07 +11.75,0.559791546213809,-0.293077920295635,-0.000351292333208159,1.38555833473235e-10,3.72132880066586e-10,-1.58444091180616e-09,2.66869859544331e-08,1.49429080220675e-08,-1.94898784611251e-07,1.63344225561274e-09,1.97284114825373e-07 +11.752,0.559791546214139,-0.29307792029486,-0.000351292336768116,1.88099535947138e-10,3.96072064035068e-10,-1.93913635149222e-09,2.27040608535895e-08,9.05872599155288e-09,-1.58765361968384e-07,1.98809061790732e-09,1.60636157376805e-07 +11.754,0.559791546214561,-0.29307792029405,-0.000351292340964704,2.29372076887583e-10,4.08367784032793e-10,-2.21950235967963e-09,1.84643966782721e-08,3.35495520249442e-09,-1.21114056283768e-07,2.2683841212006e-09,1.22559390903395e-07 +11.756,0.559791546215057,-0.293077920293227,-0.000351292345646126,2.61957122660218e-10,4.09491884845044e-10,-2.42359257662724e-09,1.40581990493129e-08,-2.0677903833639e-09,-8.30308044541353e-08,2.47186288360602e-09,8.42378964948703e-08 +11.758,0.559791546215609,-0.293077920292412,-0.000351292350659074,2.85604873084853e-10,4.00096622499335e-10,-2.55162557749628e-09,9.58261248132708e-09,-7.08461067584538e-09,-4.55217460951245e-08,2.59854585077855e-09,4.70557917577058e-08 +11.76,0.559791546216199,-0.293077920291627,-0.000351292355852628,3.00287572585522e-10,3.81153442141666e-10,-2.60567956100772e-09,5.14865927666631e-09,-1.15706055848071e-08,-9.47072281681001e-09,2.65047477772552e-09,1.58139873725515e-08 +11.762,0.55979154621681,-0.293077920290888,-0.000351292361081793,3.06199510191516e-10,3.53814200160111e-10,-2.58950846876351e-09,9.29811783123361e-10,-1.54702639587577e-08,2.42982717280017e-08,2.63144385045063e-09,2.88201253618627e-08 +11.764,0.559791546217424,-0.293077920290211,-0.000351292366210662,3.04006819718017e-10,3.19272386306615e-10,-2.50848647409568e-09,-2.99760216645458e-09,-1.87280746466104e-08,5.50557863185385e-08,2.54693136810044e-09,5.82311429208625e-08 +11.766,0.559791546218026,-0.293077920289611,-0.000351292371115738,2.94209101525699e-10,2.78901901573678e-10,-2.36928532348938e-09,-6.61276589042505e-09,-2.1291995944144e-08,8.22510462517205e-08,2.40371758121127e-09,8.52192019060826e-08 +11.768,0.559791546218601,-0.293077920289096,-0.000351292375687803,2.7755575615632e-10,2.34104402530048e-10,-2.17948228908884e-09,-9.81159598012699e-09,-2.31308028286798e-08,1.05465115807247e-07,2.20952146799061e-09,1.08416751968561e-07 +11.77,0.559791546219136,-0.293077920288674,-0.000351292379833668,2.54962717605195e-10,1.86378690258969e-10,-1.94742486026044e-09,-1.25316423904845e-08,-2.42375564063685e-08,1.24357989184301e-07,1.97286760577381e-09,1.27316183871171e-07 +11.772,0.559791546219621,-0.29307792028835,-0.000351292383477503,2.27429186594387e-10,1.37154176904584e-10,-1.68205033235169e-09,-1.46965772884722e-08,-2.46677678283847e-08,1.38743183608594e-07,1.70288831804137e-09,1.41683305831983e-07 +11.774,0.559791546220046,-0.293077920288126,-0.000351292386561869,1.96176408451287e-10,8.7707618945397e-11,-1.39245212582588e-09,-1.63480340375838e-08,-2.44387843295514e-08,1.48588606696377e-07,1.40893602848778e-09,1.51469754196576e-07 +11.776,0.559791546220406,-0.293077920287999,-0.000351292389047311,1.62037050444059e-10,3.93990395863896e-11,-1.08769590556624e-09,-1.75276460012735e-08,-2.3578361485482e-08,1.53952371684286e-07,1.10040477689917e-09,1.56730629590717e-07 +11.778,0.559791546220694,-0.293077920287968,-0.000351292390912653,1.260658244462e-10,-6.60582699652041e-12,-7.76642639088806e-10,-1.81174519831058e-08,-2.21871132577482e-08,1.55031369686343e-07,7.86835445245341e-10,1.57655433296465e-07 +11.78,0.55979154622091,-0.293077920288026,-0.000351292392153882,8.95672425116444e-11,-4.93494134445936e-11,-4.67570426820936e-10,-1.81799020282469e-08,-2.03344285853948e-08,1.52088411309367e-07,4.78622773774898e-10,1.54514991758917e-07 +11.782,0.559791546221052,-0.293077920288165,-0.000351292392782934,5.3346216333221e-11,-8.79435413380908e-11,-1.68288993851406e-10,-1.78468351208454e-08,-1.80758186196743e-08,1.45453961375409e-07,1.97233543576324e-10,1.47655340649774e-07 +11.784,0.559791546221123,-0.293077920288378,-0.000351292392827038,1.81799020282389e-11,-1.21652687923315e-10,1.14245418680893e-10,-1.70696790036096e-08,-1.55014889813419e-08,1.35592058414524e-07,1.67874658618555e-10,1.37538636051884e-07 +11.786,0.559791546221125,-0.293077920288652,-0.000351292392325953,-1.493249968121e-11,-1.49949497263452e-10,3.74079239806632e-10,-1.58692503582343e-08,-1.26981758441339e-08,1.22984088191073e-07,4.03290353133569e-10,1.24652166948235e-07 +11.788,0.559791546221063,-0.293077920288977,-0.000351292391330721,-4.52970994046913e-11,-1.72445391299845e-10,6.06181771445133e-10,-1.43704492749887e-08,-9.74567648803552e-09,1.08127916342824e-07,6.31858829349875e-10,1.09513169597155e-07 +11.79,0.559791546220944,-0.293077920289342,-0.000351292389901225,-7.24142967811838e-11,-1.88932203215607e-10,8.06590905178073e-10,-1.26149091173111e-08,-6.76195210937823e-09,9.15456946360735e-08,8.31581683363817e-10,9.26578336395189e-08 +11.792,0.559791546220774,-0.293077920289733,-0.000351292388104357,-9.57567358739303e-11,-1.99493199737355e-10,9.72364549989387e-10,-1.06581410364039e-08,-3.81986109410177e-09,7.37890651359037e-08,9.97226006120348e-10,7.46526184588374e-08 +11.794,0.559791546220561,-0.29307792029014,-0.000351292386011767,-1.15046860926795e-10,-2.04211647592012e-10,1.10174716572166e-09,-8.57647286523122e-09,-9.64506252643314e-10,5.54070678227114e-08,1.1264035663993e-09,5.60752113132887e-08 +11.796,0.559791546220314,-0.29307792029055,-0.000351292383697369,-1.30062627334851e-10,-2.03351224747928e-10,1.19399282128021e-09,-6.41153796719607e-09,1.71390679428738e-09,3.68958336104201e-08,1.21814895021274e-09,3.74879691822871e-08 +11.798,0.559791546220041,-0.293077920290953,-0.000351292381235796,-1.40693012795576e-10,-1.97356020414863e-10,1.24933050016332e-09,-4.23272528138246e-09,4.16333634234341e-09,1.87436871579252e-08,1.27262351906674e-09,1.96615142113038e-08 +11.8,0.559791546219751,-0.293077920291339,-0.000351292378700047,-1.46993528460387e-10,-1.86697879378548e-10,1.26896756991193e-09,-2.10248485289997e-09,6.35602681595851e-09,1.38864614265845e-09,1.29102358191548e-09,6.83724049243389e-09 +11.802,0.559791546219453,-0.2930779202917,-0.000351292376159926,-1.49102952207175e-10,-1.71931913151032e-10,1.25488508473395e-09,-6.24500451188351e-11,8.22952817005286e-09,-1.47841808241499e-08,1.27535440133494e-09,1.69204325166643e-08 +11.804,0.559791546219154,-0.293077920292027,-0.000351292373680506,-1.47243328640862e-10,-1.53779766698341e-10,1.20983084661534e-09,1.838806884535e-09,9.74220704108357e-09,-2.94356553021058e-08,1.22842154486847e-09,3.10604187327593e-08 +11.806,0.559791546218864,-0.293077920292315,-0.000351292371320602,-1.41747724669032e-10,-1.32963084986685e-10,1.13714246352549e-09,3.53883589097712e-09,1.09079412169275e-08,-4.23168444728532e-08,1.15363104230549e-09,4.38431507443849e-08 +11.808,0.559791546218587,-0.293077920292559,-0.000351292369131936,-1.33087985076955e-10,-1.10148001830635e-10,1.04056346872395e-09,5.02375918642994e-09,1.17163223567499e-08,-5.32299898603601e-08,1.05480677212556e-09,5.47352006159159e-08 +11.81,0.559791546218331,-0.293077920292756,-0.000351292367158348,-1.21652687923315e-10,-8.60977955596904e-11,9.24222504084073e-10,6.30051566474915e-09,1.21638810135521e-08,-6.20215684366124e-08,9.3616208208549e-10,6.35163872578644e-08 +11.812,0.559791546218101,-0.293077920292903,-0.000351292365435046,-1.07885922417961e-10,-6.14924777764326e-11,7.92477194977524e-10,7.34134975034571e-09,1.22749033160187e-08,-6.86161197306119e-08,8.02147618358681e-10,7.00909448820614e-08 +11.814,0.5597915462179,-0.293077920293002,-0.00035129236398844,-9.22872889219353e-11,-3.6998182295621e-11,6.49758025161656e-10,8.09768918585792e-09,1.206326705194e-08,-7.29936944221358e-08,6.57321306859679e-10,7.4425630044423e-08 +11.816,0.559791546217732,-0.293077920293051,-0.000351292362836014,-7.5495165674519e-11,-1.32394095686565e-11,5.00502417288883e-10,8.58341175912488e-09,1.15428500091481e-08,-7.5199395321801e-08,5.06337310217177e-10,7.65627938395986e-08 +11.818,0.559791546217598,-0.293077920293055,-0.00035129236198643,-5.79536418854396e-11,9.17321774096637e-12,3.48960443874485e-10,8.84015083358421e-09,1.07587549980072e-08,-7.53425100086634e-08,3.53858960492152e-10,7.66184892194646e-08 +11.82,0.5597915462175,-0.293077920293015,-0.000351292361440173,-4.0134562340186e-11,2.97956104233677e-11,1.99132377254263e-10,8.85402862138364e-09,9.76996261669919e-09,-7.35566121900901e-08,2.05310168198444e-10,7.47289849338481e-08 +11.822,0.559791546217437,-0.293077920292935,-0.0003512923611899,-2.25375273998932e-11,4.82530682077762e-11,5.47339951140262e-11,8.62504512255413e-09,8.59035065304235e-09,-7.00160415756312e-08,7.63682457171008e-11,7.10663887194843e-08 +11.824,0.55979154621741,-0.293077920292822,-0.000351292361221237,-5.63438184997329e-12,6.41570130355333e-11,-8.09317890482309e-11,8.19483370051624e-09,7.2476746826327e-09,-6.49367712379921e-08,1.03430281151219e-10,6.5851866689561e-08 +11.826,0.559791546217415,-0.293077920292679,-0.000351292361513628,1.02418074021682e-11,7.72437669383038e-11,-2.05013089837914e-10,7.605027718684e-09,5.84601811404313e-09,-5.85755402515838e-08,2.19321365020762e-10,5.93557603788932e-08 +11.828,0.559791546217451,-0.293077920292513,-0.000351292362041289,2.47857290247594e-11,8.75410854917032e-11,-3.1523395005454e-10,6.84174938924986e-09,4.40619762897153e-09,-5.11700057325917e-08,3.28100925447251e-10,5.18130639793124e-08 +11.83,0.559791546217514,-0.293077920292329,-0.000351292362774563,3.76088049591646e-11,9.48685574541879e-11,-4.09693112768258e-10,5.95357096955107e-09,2.90392709878453e-09,-4.29543553503901e-08,4.22211927891242e-10,4.34621035322972e-08 +11.832,0.559791546217601,-0.293077920292133,-0.000351292363680061,4.86000129029716e-11,9.91567938868452e-11,-4.87051371456158e-10,4.98906471691457e-09,1.4398204850716e-09,-3.42339004367173e-08,4.99412724572984e-10,3.46254788976249e-08 +11.834,0.559791546217708,-0.293077920291932,-0.000351292364722769,5.75650638268207e-11,1.00627839394474e-10,-5.46628714515112e-10,3.96210841912475e-09,7.28583859799995e-11,-2.52575738101626e-08,5.58786766277647e-10,2.55665532726865e-08 +11.836,0.559791546217831,-0.293077920291731,-0.000351292365866576,6.44484465794688e-11,9.94482274307652e-11,-5.88081666696797e-10,2.92821322744819e-09,-1.21777588013544e-09,-1.62474200759951e-08,5.99902991249844e-10,1.65540348533369e-08 +11.838,0.559791546217966,-0.293077920291534,-0.000351292367075096,6.92779167366174e-11,9.57567358739303e-11,-6.11618394819114e-10,1.88044024796643e-09,-2.39738784378943e-09,-7.4662498406711e-09,6.22933257334769e-10,8.06401951157378e-09 +11.84,0.559791546218108,-0.293077920291348,-0.00035129236831305,7.19702075713337e-11,8.98586760556085e-11,-6.17946666059478e-10,8.18789480661234e-10,-3.41393580072311e-09,8.86443696224324e-10,6.28579648520656e-10,3.62093306920692e-09 +11.842,0.559791546218254,-0.293077920291175,-0.000351292369546882,7.2553074659262e-11,8.21009926710394e-11,-6.08072620034217e-10,-1.66533453693808e-10,-4.26741975090389e-09,8.63718818689043e-09,6.17864736714566e-10,9.63533209066316e-09 +11.844,0.559791546218399,-0.293077920291019,-0.00035129237074534,7.13040737565585e-11,7.27889970519948e-11,-5.8339791331192e-10,-1.05471187340172e-09,-4.96477858825363e-09,1.56211849012352e-08,5.92229376409866e-10,1.64250680755014e-08 +11.846,0.559791546218539,-0.293077920290884,-0.000351292371880474,6.83342271656556e-11,6.22418783180271e-11,-5.45587880429283e-10,-1.87350135405453e-09,-5.49907341884525e-09,2.17282788983426e-08,5.53362226114325e-10,2.24915077234421e-08 +11.848,0.559791546218672,-0.29307792029077,-0.000351292372927692,6.38100683403379e-11,5.07927033766065e-11,-4.96484797718521e-10,-2.58126853224647e-09,-5.84254866708426e-09,2.68465805141624e-08,5.03138925053015e-10,2.75959636082203e-08 +11.85,0.559791546218794,-0.29307792029068,-0.000351292373866413,5.80091530366708e-11,3.88716836496926e-11,-4.38201558372646e-10,-3.17107451409198e-09,-5.99520433298014e-09,3.09119049802169e-08,4.43730408453161e-10,3.16471808866772e-08 +11.852,0.559791546218904,-0.293077920290615,-0.000351292374680498,5.11257702839714e-11,2.68118860446886e-11,-3.72837177797667e-10,-3.6637359812622e-09,-5.99173488602255e-09,3.3916446040553e-08,3.77280111811545e-10,3.46359518464054e-08 +11.854,0.559791546218999,-0.293077920290573,-0.000351292375357762,4.33542091116171e-11,1.49047441055944e-11,-3.02535774210388e-10,-4.0176195703575e-09,-5.83907922013624e-09,3.58437238223373e-08,3.05989597080728e-10,3.65377701919963e-08 +11.856,0.559791546219077,-0.293077920290555,-0.000351292375890641,3.50552920025432e-11,3.45556916414618e-12,-2.29462282508333e-10,-4.20496970576871e-09,-5.54070678227114e-09,3.6730167518603e-08,2.32150282251747e-10,3.73829694890357e-08 +11.858,0.559791546219139,-0.293077920290559,-0.000351292376275611,2.65343302885442e-11,-7.25808302348776e-12,-1.55615104135993e-10,-4.29517532651952e-09,-5.12784259498857e-09,3.66191452161405e-08,1.5802788073088e-10,3.72250600687938e-08 +11.86,0.559791546219184,-0.293077920290584,-0.000351292376513102,1.7874590696467e-11,-1.70558012158058e-11,-8.29857016437876e-11,-4.29517532652056e-09,-4.61783389304842e-09,3.55661680662238e-08,8.65853799725511e-11,3.61209804942255e-08 +11.862,0.559791546219211,-0.293077920290628,-0.000351292376607554,9.35362898246382e-12,-2.57294185956794e-11,-1.3350431871113e-11,-4.17027523624731e-09,-4.01761957036139e-09,3.369353407389e-08,3.04586176238928e-11,3.41875225915332e-08 +11.864,0.559791546219221,-0.293077920290687,-0.000351292376566503,1.19348975147217e-12,-3.31262794972568e-11,5.17884346518173e-11,-3.94823063132304e-09,-3.35842464949469e-09,3.10905814981997e-08,6.14883466585563e-11,3.15197049342256e-08 +11.866,0.559791546219215,-0.29307792029076,-0.0003512923764004,-6.43929354282662e-12,-3.91631171936567e-11,1.11011894121672e-10,-3.63598040564671e-09,-2.65065747128829e-09,2.78639958328655e-08,1.17893404760979e-10,2.82249641685209e-08 +11.868,0.559791546219195,-0.293077920290844,-0.000351292376122456,-1.3350431871113e-11,-4.37289093824087e-11,1.63244417983267e-10,-3.24046345312395e-09,-1.93248195223773e-09,2.41638306586135e-08,1.69526374200641e-10,2.4456610598873e-08 +11.87,0.559791546219162,-0.293077920290935,-0.000351292375747422,-1.94011473553267e-11,-4.68930450026102e-11,2.07667216756158e-10,-2.82412981889235e-09,-1.23165366794866e-09,2.01184555126636e-08,2.13778004255745e-10,2.03530079400258e-08 +11.872,0.559791546219118,-0.293077920291031,-0.000351292375291787,-2.46469511466812e-11,-4.86555240542028e-11,2.43718240033912e-10,-2.35228503342507e-09,-5.27355936697066e-10,1.58284843565539e-08,2.4974669716944e-10,1.60110045340108e-08 +11.874,0.559791546219063,-0.29307792029113,-0.000351292374772549,-2.8810287489026e-11,-4.90024687493982e-11,2.70981154182367e-10,-1.81799020282409e-09,1.38777878078174e-10,1.14240214510478e-08,2.76879144268296e-10,1.15686046605028e-08 +11.876,0.559791546219002,-0.293077920291227,-0.000351292374207862,-3.19189119579768e-11,-4.81004125418902e-11,2.89414325838098e-10,-1.31838984173888e-09,7.49400541627252e-10,7.06205927066992e-09,2.95115432716763e-10,7.22304880843584e-09 +11.878,0.559791546218936,-0.293077920291322,-0.000351292373614892,-3.40838468559809e-11,-4.60048665828896e-11,2.99229391265043e-10,-8.04911692853059e-10,1.30798150088622e-09,2.82933398931754e-09,3.04657816185077e-10,3.21929018000236e-09 +11.88,0.559791546218866,-0.293077920291411,-0.000351292373010945,-3.51385587293901e-11,-4.28684865383436e-11,3.00731661795372e-10,-3.05311331775769e-10,1.77635683939553e-09,-1.19695919839104e-09,3.057972495852e-10,2.16364737256118e-09 +11.882,0.559791546218795,-0.293077920291494,-0.000351292372411965,-3.53050921830839e-11,-3.88994392253082e-11,2.9444155447148e-10,1.52655665889826e-10,2.16840434497528e-09,-4.91967577790251e-09,2.99091031135474e-10,5.37852125730824e-09 +11.884,0.559791546218725,-0.293077920291567,-0.000351292371833178,-3.45279360658308e-11,-3.41948691584434e-11,2.81052958683765e-10,6.03683769639794e-10,2.48412401759823e-09,-8.23733442567402e-09,2.85223128498772e-10,8.62490490781952e-09 +11.886,0.559791546218657,-0.29307792029163,-0.000351292371287754,-3.28903571045239e-11,-2.8962943154912e-11,2.61492216768773e-10,9.85322934351211e-10,2.71657696337648e-09,-1.11065670549128e-08,2.6513922210285e-10,1.14763445150527e-08 +11.888,0.559791546218593,-0.293077920291683,-0.00035129237078721,-3.05866443284264e-11,-2.33285613049387e-11,2.36626690464118e-10,1.30451205393485e-09,2.87270207621822e-09,-1.35091590691724e-08,2.39733091632827e-10,1.38726907149901e-08 +11.89,0.559791546218535,-0.293077920291724,-0.000351292370341247,-2.76723088887851e-11,-1.74721348500403e-11,2.07455580492089e-10,1.60982338570683e-09,2.9282132274495e-09,-1.54043444666774e-08,2.10021070497139e-10,1.57626074139602e-08 +11.892,0.559791546218483,-0.293077920291753,-0.000351292369957387,-2.41473507855998e-11,-1.1615708395142e-11,1.75009312597415e-10,1.83880688453808e-09,2.90045765183451e-09,-1.67661023953351e-08,1.77048803236011e-10,1.71142062299007e-08 +11.894,0.559791546218438,-0.29307792029177,-0.00035129236964121,-2.03170813506336e-11,-5.87030424270355e-12,1.40391170910756e-10,1.9567680809014e-09,2.80331313717789e-09,-1.75892286846629e-08,1.41975086322225e-10,1.79183836209876e-08 +11.896,0.559791546218401,-0.293077920291776,-0.000351292369395823,-1.63202784619916e-11,-4.02455846426664e-13,1.0465239785874e-10,2.05391259555474e-09,2.64718802434054e-09,-1.79214282303048e-08,1.05918071344645e-10,1.82319431548136e-08 +11.898,0.559791546218373,-0.293077920291772,-0.0003512923692226,-1.21014309684155e-11,4.71844785465743e-12,6.8705457989545e-11,2.11636264069304e-09,2.42861286636703e-09,-1.77817829905079e-08,6.99224451745902e-11,1.80712190403171e-08 +11.9,0.559791546218353,-0.293077920291757,-0.000351292369121001,-7.85482789922036e-12,9.31199561904039e-12,3.35252658967166e-11,2.08860706507561e-09,2.15105711021076e-09,-1.71807013060704e-08,3.56700860271032e-11,1.74403504417796e-08 +11.902,0.559791546218341,-0.293077920291734,-0.000351292369088499,-3.74700270811032e-12,1.33226762955033e-11,-1.734723475977e-14,1.99840144432485e-09,1.8735013540564e-09,-1.61841026691255e-08,1.38395821431106e-11,1.64142863037393e-08 +11.904,0.559791546218338,-0.293077920291704,-0.00035129236912107,1.3877787807816e-13,1.68060010352652e-11,-3.12111447797782e-11,1.901256929671e-09,1.56472057533142e-09,-1.48535697630547e-08,3.54485047436567e-11,1.50562831767146e-08 +11.906,0.559791546218342,-0.293077920291667,-0.000351292369213344,3.85802501057284e-12,1.95815585968284e-11,-5.9431626286972e-11,1.75554015768892e-09,1.20736753928012e-09,-1.32368074834439e-08,6.26932213016489e-11,1.34071894882531e-08 +11.908,0.559791546218353,-0.293077920291626,-0.000351292369358797,7.16093850883305e-12,2.16354711923851e-11,-8.41583747135481e-11,1.53349555276273e-09,8.53483950178224e-10,-1.13936637902065e-08,8.7189475789626e-11,1.15280361739465e-08 +11.91,0.559791546218371,-0.293077920291581,-0.000351292369549977,9.99200722162307e-12,2.29954943975409e-11,-1.05006281447793e-10,1.31838984174208e-09,5.06539254985115e-10,-9.39005817546036e-09,1.07958103514268e-10,9.49567935064045e-09 +11.912,0.559791546218393,-0.293077920291534,-0.000351292369778822,1.24344978758031e-11,2.36616282123263e-11,-1.21718607415402e-10,1.09634523681869e-09,1.83880688456135e-10,-7.29364485475775e-09,1.24619054635423e-10,7.37787504998671e-09 +11.914,0.55979154621842,-0.293077920291486,-0.000351292370036851,1.43773881688974e-11,2.37310171513653e-11,-1.34180860866821e-10,8.46545056275112e-10,-1.28369537224882e-10,-5.14518982973254e-09,1.37019611328301e-10,5.21594628561054e-09 +11.916,0.559791546218451,-0.293077920291439,-0.000351292370315545,1.58206781009032e-11,2.31481500634268e-11,-1.4229936673433e-10,5.82867087928077e-10,-4.30211422042152e-10,-3.01147995429506e-09,1.45035307700996e-10,3.09739042178513e-09 +11.918,0.559791546218484,-0.293077920291393,-0.000351292370606049,1.67088565206104e-11,2.20101714631962e-11,-1.46226780684005e-10,3.33066907389377e-10,-6.76542155628534e-10,-9.71445146563023e-10,1.48815002346113e-10,1.22977580311262e-09 +11.92,0.559791546218518,-0.293077920291351,-0.000351292370900452,1.71529457304606e-11,2.04419814409129e-11,-1.46185147320582e-10,1.17961196366449e-10,-9.02056207508138e-10,9.55832635263429e-10,1.48600792224008e-10,1.31955912030754e-09 +11.922,0.559791546218552,-0.293077920291312,-0.000351292371190789,1.71807013060762e-11,1.8401946633164e-11,-1.42403450142952e-10,-1.1102230246254e-10,-1.09981468376954e-09,2.72785266597413e-09,1.44611724109336e-10,2.94331419619812e-09 +11.924,0.559791546218586,-0.293077920291277,-0.000351292371470066,1.67088565206104e-11,1.60427227058353e-11,-1.35273736656686e-10,-3.46944695197191e-10,-1.22124532708944e-09,4.30731839086526e-09,1.37242627004532e-10,4.49052363213349e-09 +11.926,0.559791546218619,-0.293077920291248,-0.000351292371731884,1.57929225252876e-11,1.35169653248068e-11,-1.25174176579493e-10,-5.27355936696831e-10,-1.31838984174208e-09,5.67774993687082e-09,1.26888530749772e-10,5.85261483479091e-09 +11.928,0.55979154621865,-0.293077920291223,-0.000351292371970763,1.45994327738224e-11,1.07691633388652e-11,-1.12562736909195e-10,-6.5225602696567e-10,-1.40512601554002e-09,6.79491185538875e-09,1.14015297468477e-10,6.96926424859634e-09 +11.93,0.559791546218678,-0.293077920291204,-0.000351292372182135,1.31838984174252e-11,7.8964612626473e-12,-9.79945291579406e-11,-7.91033905046868e-10,-1.42247325030186e-09,7.64926316733052e-09,9.91922225924994e-11,7.82051096731136e-09 +11.932,0.559791546218702,-0.293077920291192,-0.000351292372362741,1.14352971536353e-11,5.07927033765839e-12,-8.19656842398768e-11,-9.15933995315549e-10,-1.39818712163699e-09,8.26422263955166e-09,8.29152483025055e-11,8.43156202295663e-09 +11.934,0.559791546218723,-0.293077920291184,-0.000351292372509998,9.52016243616177e-12,2.30371277609745e-12,-6.49376385997229e-11,-9.71445146545956e-10,-1.3565537582136e-09,8.62677984602546e-09,6.5672197254804e-11,8.78665319012092e-09 +11.936,0.55979154621874,-0.293077920291182,-0.000351292372622491,7.5495165674519e-12,-3.469446951954e-13,-4.74585648557787e-11,-1.02001740387459e-09,-1.26634813746335e-09,8.72912853111721e-09,4.80565390888057e-11,8.87928814839503e-09 +11.938,0.559791546218753,-0.293077920291186,-0.000351292372699832,5.44009282066387e-12,-2.76167977375538e-12,-3.00211244752579e-11,-1.04083408558631e-09,-1.1483869410969e-09,8.61029997301278e-09,3.06347743557732e-11,8.74867954524933e-09 +11.94,0.559791546218762,-0.293077920291193,-0.000351292372742576,3.3861802251071e-12,-4.94049245958249e-12,-1.30173649637314e-11,-9.8532293435521e-10,-1.01654795692187e-09,8.29197821517062e-09,1.43292174545255e-11,8.41196372760561e-09 +11.942,0.559791546218767,-0.293077920291205,-0.000351292372751902,1.49880108324346e-12,-6.82787160144243e-12,3.14678838542088e-12,-9.57567358738983e-10,-8.81239525796021e-10,7.77503061932631e-09,7.66606238140126e-12,7.88318587119504e-09 +11.944,0.559791546218768,-0.293077920291221,-0.000351292372729989,-4.44089209850112e-13,-8.46545056276775e-12,1.80827575135842e-11,-9.22872889219698e-10,-7.32053306863132e-10,7.09068220805711e-09,1.99711588985731e-11,7.18786272750138e-09 +11.946,0.559791546218765,-0.293077920291239,-0.000351292372679571,-2.19269047363493e-12,-9.75608482889464e-12,3.15095172176462e-11,-8.32667268468632e-10,-5.44703171455656e-10,6.26842328043878e-09,3.30581118334199e-11,6.34690213787165e-09 +11.948,0.559791546218759,-0.29307792029126,-0.000351292372603951,-3.77475828372427e-12,-1.06442632485901e-11,4.31564506353366e-11,-7.35522753814002e-10,-3.74700270810906e-10,5.34988719991128e-09,4.46097340459016e-11,5.41319564269558e-09 +11.95,0.55979154621875,-0.293077920291282,-0.000351292372506945,-5.13478148889191e-12,-1.12548859121388e-11,5.29090660172984e-11,-6.1062266354439e-10,-2.22044604926262e-10,4.38104413858518e-09,5.43360626532395e-11,4.4289628117701e-09 +11.952,0.559791546218739,-0.293077920291305,-0.000351292372392314,-6.21724893790156e-12,-1.15324416682951e-11,6.06806271896754e-11,-5.06539254985339e-10,-5.20417042793156e-11,3.35668992601586e-09,6.20789006935596e-11,3.39509316738757e-09 +11.954,0.559791546218725,-0.293077920291328,-0.000351292372264222,-7.16093850883305e-12,-1.1463052729256e-11,6.63358257213604e-11,-3.95516952522799e-10,9.3675067702768e-11,2.29503915871782e-09,6.76987621181931e-11,2.3307538304356e-09 +11.956,0.55979154621871,-0.293077920291351,-0.000351292372126971,-7.79931674799258e-12,-1.11577413974841e-11,6.98607838245457e-11,-2.63677968347621e-10,2.25514051878207e-10,1.25854188181353e-09,7.11748105119258e-11,1.30549236951627e-09 +11.958,0.559791546218694,-0.293077920291372,-0.000351292371984779,-8.21565038222342e-12,-1.05609965217433e-11,7.1369993248614e-11,-1.52655665885925e-10,3.60822483003095e-10,2.81892564846169e-10,7.26134112615735e-11,4.82659336057168e-10 +11.96,0.559791546218677,-0.293077920291393,-0.000351292371841491,-8.40993941153649e-12,-9.71445146547119e-12,7.09883540839307e-11,-3.4694469520456e-11,4.54497550704851e-10,-6.34908792199726e-10,7.21418329662217e-11,7.81588705282088e-10 +11.962,0.55979154621866,-0.293077920291411,-0.000351292371700826,-8.35442826030522e-12,-8.74300631892407e-12,6.88303580798153e-11,8.32667268478018e-11,5.37764277553768e-10,-1.48839274239565e-09,6.98845821654886e-11,1.58475131223448e-09 +11.964,0.559791546218644,-0.293077920291428,-0.00035129237156617,-8.07687250414532e-12,-7.56339435525635e-12,6.50347831143488e-11,1.94289029309359e-10,6.21031004399558e-10,-2.24993634834142e-09,6.59694157799789e-11,2.34214459564806e-09 +11.966,0.559791546218628,-0.293077920291442,-0.000351292371440687,-7.57727214306753e-12,-6.25888230132501e-12,5.98306126864467e-11,2.77555756155453e-10,6.52256026966584e-10,-2.8883145874948e-09,6.06324242895461e-11,2.9740269465532e-09 +11.968,0.559791546218614,-0.293077920291453,-0.000351292371326847,-6.96664947952362e-12,-4.95437024739031e-12,5.34815247643708e-11,3.33066907387621e-10,6.66133814775241e-10,-3.40092537465328e-09,5.41604420277455e-11,3.48151708712514e-09 +11.97,0.5597915462186,-0.293077920291461,-0.000351292371226761,-6.24500451351719e-12,-3.59434704222434e-12,4.6226911187835e-11,3.95516952522799e-10,6.90419943438921e-10,-3.79297288022412e-09,4.6785112268774e-11,3.87553307664208e-09 +11.972,0.559791546218589,-0.293077920291467,-0.00035129237114194,-5.3845816694326e-12,-2.19269047363493e-12,3.8309633243476e-11,4.44089209850656e-10,6.83481049535108e-10,-4.0705286363838e-09,3.87482852590615e-11,4.15133291257157e-09 +11.974,0.559791546218579,-0.29307792029147,-0.000351292371073522,-4.46864767411476e-12,-8.60422844084209e-13,2.99447966423016e-11,4.71844785465586e-10,6.45317133063228e-10,-4.2223169405266e-09,3.02886114811292e-11,4.29732847825878e-09 +11.976,0.559791546218571,-0.293077920291471,-0.00035129237102216,-3.49720252756963e-12,3.88578058618848e-13,2.1420365481364e-11,4.92661467177026e-10,6.03683769639966e-10,-4.24833779266481e-09,2.17074520794516e-11,4.31920402569176e-09 +11.978,0.559791546218565,-0.293077920291469,-0.000351292370987841,-2.49800180540688e-12,1.55431223447539e-12,1.29514454716443e-11,5.13478148889408e-10,5.55111512312411e-10,-4.17634676841561e-09,1.32814095391653e-11,4.24425269400211e-09 +11.98,0.559791546218561,-0.293077920291464,-0.000351292370970355,-1.44328993201222e-12,2.60902410786825e-12,4.71497840770339e-12,4.99600361081209e-10,4.85722573273397e-10,-3.99680288864967e-09,5.57863011933886e-12,4.05708765861648e-09 +11.982,0.559791546218559,-0.293077920291458,-0.000351292370968981,-4.99600361081375e-13,3.49720252756963e-12,-3.03576608295975e-12,4.57966997657818e-10,4.02455846426997e-10,-3.72011449423256e-09,4.65788597435369e-12,3.76974220994833e-09 +11.984,0.559791546218559,-0.29307792029145,-0.000351292370982498,3.88578058618848e-13,4.21884749357606e-12,-1.01654795692252e-11,4.37150315946252e-10,3.3306690738762e-10,-3.37490452251362e-09,1.10130214725128e-11,3.4193587848618e-09 +11.986,0.559791546218561,-0.293077920291441,-0.000351292371009643,1.24900090270344e-12,4.82947015711996e-12,-1.65353841730127e-11,3.95516952522799e-10,2.60208521396578e-10,-2.9733160378249e-09,1.72714421807383e-11,3.01077239178373e-09 +11.988,0.559791546218564,-0.293077920291431,-0.000351292371048639,1.97064586870987e-12,5.25968157916226e-12,-2.20587437205235e-11,3.46944695195145e-10,1.665334536932e-10,-2.52402265754385e-09,2.27625980499102e-11,2.55319297909848e-09 +11.99,0.559791546218568,-0.29307792029142,-0.000351292371097878,2.63677968348387e-12,5.49560397189269e-12,-2.66314748031871e-11,2.91433543964038e-10,8.32667268468682e-11,-2.03309591384436e-09,2.73201339730958e-11,2.05556460692382e-09 +11.992,0.559791546218574,-0.293077920291409,-0.000351292371155165,3.13638004456641e-12,5.59274848654984e-12,-3.01911273759037e-11,2.3592239273319e-10,1.38777878084277e-11,-1.52395457364892e-09,3.08645409433836e-11,1.54217038972121e-09 +11.994,0.559791546218581,-0.293077920291398,-0.000351292371218642,3.58046925441652e-12,5.55111512312639e-12,-3.2727293097782e-11,1.87350135405105e-10,-5.55111512318664e-11,-1.01307850996688e-09,3.33872783062674e-11,1.03175075890648e-09 +11.996,0.559791546218589,-0.293077920291387,-0.000351292371286074,3.88578058618675e-12,5.3707038816224e-12,-3.42434414157707e-11,9.71445146546795e-11,-1.24900090270302e-10,-5.1781495757896e-10,3.48791776127732e-11,5.41451216241614e-10 +11.998,0.559791546218597,-0.293077920291376,-0.000351292371355616,3.96904731303537e-12,5.05151476204502e-12,-3.47985529280986e-11,5.55111512317014e-11,-1.83880688452986e-10,-4.59701721171984e-11,3.5386585365841e-11,1.97501524605502e-10 +12,0.559791546218604,-0.293077920291367,-0.000351292371425269,4.10782519111353e-12,4.63518112781054e-12,-3.44273221042395e-11,2.08166817117262e-11,-2.28983498828989e-10,3.92914867308834e-10,3.4979989124604e-11,4.5524594443638e-10 +12.002,0.559791546218613,-0.293077920291358,-0.000351292371493325,4.05231403988227e-12,4.13558076672916e-12,-3.32268934588634e-11,-5.551115123127e-11,-2.67147415300487e-10,8.00574884163473e-10,3.3727595916143e-11,8.45795113822556e-10 +12.004,0.559791546218621,-0.29307792029135,-0.000351292371558176,3.88578058618848e-12,3.56659146660871e-12,-3.1225022567586e-11,-9.71445146547224e-11,-2.98372437868077e-10,1.16486681411868e-09,3.16673633225114e-11,1.20639042728374e-09 +12.006,0.559791546218628,-0.293077920291344,-0.000351292371618225,3.66373598126342e-12,2.94209101525699e-12,-2.85674262023892e-11,-1.52655665885993e-10,-3.26128013483712e-10,1.46150452851078e-09,2.89512815037852e-11,1.50521052360241e-09 +12.008,0.559791546218635,-0.293077920291338,-0.000351292371672446,3.27515792264457e-12,2.26207941267401e-12,-2.53790044535435e-11,-1.80411241501954e-10,-3.40005801291705e-10,1.70002900646006e-09,2.5689249302782e-11,1.74305788308303e-09 +12.01,0.559791546218642,-0.293077920291335,-0.000351292371719741,2.94209101525568e-12,1.58206781009032e-12,-2.17673101765497e-11,-1.80411241501548e-10,-3.33066907387472e-10,1.8761034392685e-09,2.20221395513673e-11,1.91396078739661e-09 +12.012,0.559791546218647,-0.293077920291332,-0.000351292371759515,2.55351295663814e-12,9.29811783123671e-13,-1.7874590696467e-11,-2.08166817116936e-10,-3.19189119579627e-10,1.99579935910934e-09,1.80799881343429e-11,2.03185388245018e-09 +12.014,0.559791546218652,-0.293077920291331,-0.00035129237179124,2.10942374678803e-12,3.05311331771952e-13,-1.37841127401132e-11,-2.42861286636982e-10,-3.05311331771953e-10,2.06779038336588e-09,1.39479262826046e-11,2.1042703446553e-09 +12.016,0.559791546218656,-0.293077920291331,-0.000351292371814652,1.58206781009032e-12,-2.91433543964006e-13,-9.6034291630044e-12,-2.49800180540604e-10,-2.91433543964038e-10,2.0747292772678e-09,9.73723388622841e-12,2.10993725373474e-09 +12.018,0.559791546218658,-0.293077920291332,-0.000351292371829653,1.11022302462528e-12,-8.60422844084591e-13,-5.48519563103927e-12,-2.35922392732722e-10,-2.60208521396611e-10,2.02008548777437e-09,5.66218100609677e-12,2.05039343247016e-09 +12.02,0.55979154621866,-0.293077920291334,-0.000351292371836592,6.38378239159535e-13,-1.33226762955033e-12,-1.5230872119078e-12,-2.42861286636806e-10,-2.18575157973126e-10,1.92901250528663e-09,2.12185260281132e-12,1.95648816755484e-09 +12.022,0.559791546218661,-0.293077920291337,-0.000351292371835746,1.3877787807816e-13,-1.734723475977e-12,2.23085439010642e-12,-2.28983498828989e-10,-1.94289029309445e-10,1.78763254199449e-09,2.82935260217009e-12,1.81268082541954e-09 +12.024,0.559791546218661,-0.293077920291341,-0.000351292371827669,-2.7755575615632e-13,-2.10942374678803e-12,5.62744295606938e-12,-2.08166817117186e-10,-1.63064006741591e-10,1.59507823616007e-09,6.01621309173002e-12,1.6168481293909e-09 +12.026,0.55979154621866,-0.293077920291346,-0.000351292371813236,-6.93889390390491e-13,-2.38697950294329e-12,8.61116733474599e-12,-1.87350135405453e-10,-1.17961196366397e-10,1.39558503642303e-09,8.96277616035145e-12,1.41303662761179e-09 +12.028,0.559791546218658,-0.293077920291351,-0.000351292371793224,-1.02695629777838e-12,-2.58126853225377e-12,1.12097831017634e-11,-1.45716771982161e-10,-7.97972798952158e-11,1.1908876662593e-09,1.15488884167148e-11,1.20242023318143e-09 +12.03,0.559791546218655,-0.293077920291356,-0.000351292371768397,-1.27675647831907e-12,-2.70616862252412e-12,1.33747179997827e-11,-1.38777878078e-10,-3.81639164711947e-11,9.48026379619868e-10,1.37053470328983e-11,9.58889879193334e-10 +12.032,0.559791546218653,-0.293077920291362,-0.000351292371739725,-1.58206781009032e-12,-2.73392419813854e-12,1.50018886202424e-11,-1.38777878078114e-10,1.04083408558585e-11,6.89552581700626e-10,1.53308167509448e-11,7.03456036958412e-10 +12.034,0.559791546218649,-0.293077920291367,-0.000351292371708389,-1.83186799063171e-12,-2.66453525910067e-12,1.61329283265861e-11,-6.93889390392632e-11,3.46944695192403e-11,4.4755865680378e-10,1.64537796531027e-11,4.54232630219605e-10 +12.036,0.559791546218645,-0.293077920291372,-0.000351292371675194,-1.85962356624734e-12,-2.59514632006159e-12,1.67921232474573e-11,-2.7755575615635e-11,5.20417042793157e-11,2.05564731903297e-10,1.70929338437984e-11,2.13858761720266e-10 +12.038,0.559791546218642,-0.293077920291377,-0.000351292371641221,-1.94289029309424e-12,-2.45636844198343e-12,1.69551872541992e-11,-4.16333634234525e-11,9.71445146547226e-11,-3.55618312575317e-11,1.72420110033235e-11,1.11512499388365e-10 +12.04,0.559791546218638,-0.293077920291382,-0.000351292371607373,-2.02615701994113e-12,-2.20656826144274e-12,1.66498759224272e-11,-1.38777878075957e-11,1.21430643318622e-10,-2.48065457066511e-10,1.69172286144653e-11,2.765401690909e-10 +12.042,0.559791546218634,-0.293077920291386,-0.000351292371574621,-1.99840144432461e-12,-1.97064586870899e-12,1.59629254259332e-11,4.85722573273396e-11,1.31838984174208e-10,-4.20670442924282e-10,1.62077771957306e-11,4.43513701569717e-10 +12.044,0.55979154621863,-0.29307792029139,-0.000351292371543521,-1.83186799063171e-12,-1.67921232474573e-12,1.49671941507295e-11,7.63278329427745e-11,1.52655665885774e-10,-5.80265002712597e-10,1.51720926411722e-11,6.04844743534917e-10 +12.046,0.559791546218626,-0.293077920291393,-0.000351292371514753,-1.69309011255355e-12,-1.36002320516597e-12,1.36418654150831e-11,5.55111512314488e-11,1.56125112838064e-10,-7.36390115553651e-10,1.38136421428622e-11,7.54802584160162e-10 +12.048,0.559791546218623,-0.293077920291395,-0.000351292371488954,-1.60982338570594e-12,-1.05471187339355e-12,1.20216336885153e-11,7.63278329429624e-11,1.56125112837878e-10,-8.56953397132351e-10,1.21747125226795e-11,8.74397000107552e-10 +12.05,0.55979154621862,-0.293077920291397,-0.000351292371466666,-1.3877787807816e-12,-7.35522753814247e-13,1.02140518265526e-11,1.04083408558453e-10,1.59594559789784e-10,-9.2894442138445e-10,1.03341075270808e-11,9.48283458398876e-10 +12.052,0.559791546218617,-0.293077920291398,-0.000351292371448098,-1.19348975147217e-12,-4.1633363423448e-13,8.30585600297787e-12,1.04083408558631e-10,1.59594559789901e-10,-9.7491459349918e-10,8.40148769112158e-12,9.93359071066141e-10 +12.054,0.559791546218615,-0.293077920291399,-0.000351292371433443,-9.71445146547119e-13,-9.71445146547119e-14,6.31439345255627e-12,1.17961196366449e-10,1.49186218934038e-10,-1.00960906301872e-09,6.38942152335898e-12,1.02736645453197e-09 +12.056,0.559791546218613,-0.293077920291399,-0.00035129237142284,-7.21644966006431e-13,1.80411241501608e-13,4.26741975090342e-12,1.17961196366504e-10,1.38777878078124e-10,-1.007874339543e-09,4.33176534491691e-12,1.02419960339834e-09 +12.058,0.559791546218612,-0.293077920291398,-0.000351292371416373,-4.99600361081154e-13,4.57966997657724e-13,2.28289609438472e-12,1.11022302462491e-10,1.31838984174208e-10,-9.65373614380877e-10,2.3813754154885e-12,9.80639426463651e-10 +12.06,0.559791546218611,-0.293077920291397,-0.000351292371413708,-2.7755575615632e-13,7.07767178198615e-13,4.05925293378618e-13,1.17961196366393e-10,1.07552855510637e-10,-9.15066633577714e-10,8.61827662653766e-13,9.28886109522547e-10 +12.062,0.559791546218611,-0.293077920291395,-0.000351292371414749,-2.7755575615632e-14,8.88178419700223e-13,-1.37737043992574e-12,1.17961196366427e-10,9.02056207506952e-11,-8.57820758870384e-10,1.63914020327126e-12,8.70579319885431e-10 +12.064,0.559791546218611,-0.293077920291393,-0.000351292371419218,1.94289029309338e-13,1.06858966120136e-12,-3.02535774210254e-12,8.32667268468681e-11,8.32667268468681e-11,-7.65880414643589e-10,3.21440843058815e-12,7.74880316651686e-10 +12.066,0.559791546218612,-0.293077920291391,-0.000351292371426851,3.05311331771952e-13,1.22124532708781e-12,-4.44089209850111e-12,7.63278329430179e-11,5.8980598183343e-11,-6.56592835657702e-10,4.61586154350104e-12,6.63640566030185e-10 +12.068,0.559791546218612,-0.293077920291388,-0.000351292371436981,4.99600361081375e-13,1.3045120539347e-12,-5.65172908473306e-12,1.04083408558631e-10,3.12250225675894e-11,-5.60315682740632e-10,5.82180331743277e-12,5.70755659014109e-10 +12.07,0.559791546218614,-0.293077920291386,-0.000351292371449458,7.21644966006431e-13,1.34614541735815e-12,-6.6821548294634e-12,6.93889390390876e-11,1.04083408558631e-11,-4.44956571588149e-10,6.85449284094438e-12,4.50454780216418e-10 +12.072,0.559791546218615,-0.293077920291383,-0.00035129237146371,7.77156117237695e-13,1.34614541735815e-12,-7.43155537108546e-12,4.1633363423354e-11,-1.04083408560079e-11,-3.1398494915099e-10,7.59237079894966e-12,3.16904116102435e-10 +12.074,0.559791546218617,-0.29307792029138,-0.000351292371479184,8.88178419699829e-13,1.30451205393412e-12,-7.93809462606722e-12,4.16333634234341e-11,-2.42861286636699e-11,-1.94289029309359e-10,8.0934516058649e-12,2.00178370223631e-10 +12.076,0.559791546218619,-0.293077920291378,-0.000351292371495462,9.43689570931487e-13,1.24900090270344e-12,-8.20871148832316e-12,1.38777878079161e-11,-3.12250225674446e-11,-7.37257477299118e-11,8.35664391725335e-12,8.12593435065382e-11 +12.078,0.559791546218621,-0.293077920291375,-0.000351292371512019,9.43689570931487e-13,1.17961196366436e-12,-8.23299761698683e-12,-1.04811215311296e-22,-4.16333634235727e-11,2.68882138785462e-11,8.37044109664573e-12,4.95612045408273e-11 +12.08,0.559791546218623,-0.293077920291373,-0.000351292371528394,9.43689570931068e-13,1.08246744900917e-12,-8.10115863280898e-12,-6.93889390390567e-12,-5.89805981831982e-11,1.21430643318349e-10,8.22745750389414e-12,1.35174924994859e-10 +12.082,0.559791546218624,-0.293077920291371,-0.000351292371544423,9.15933995315855e-13,9.43689570931487e-13,-7.74727504371327e-12,-1.38777878077127e-11,-7.63278329428761e-11,2.33320307518032e-10,7.85810127785349e-12,2.45879842558313e-10 +12.084,0.559791546218626,-0.293077920291369,-0.000351292371559384,8.88178419700223e-13,7.77156117237695e-13,-7.16787740273696e-12,-2.08166817117263e-11,-7.97972798949507e-11,3.13117587413883e-10,7.26438565857074e-12,3.23795558437745e-10 +12.086,0.559791546218628,-0.293077920291368,-0.000351292371573095,8.32667268468959e-13,6.24500451351719e-13,-6.49480469405788e-12,-2.7755575615635e-11,-7.97972798949507e-11,3.66894015169176e-10,6.57767615557914e-12,3.76495944497876e-10 +12.088,0.55979154621863,-0.293077920291367,-0.000351292371585363,7.77156117237695e-13,4.57966997657928e-13,-5.70030134206042e-12,-4.16333634235265e-11,-8.32667268469374e-11,4.19803081187014e-10,5.77123390548326e-12,4.30001525257608e-10 +12.09,0.559791546218631,-0.293077920291366,-0.000351292371595896,6.66133814774871e-13,2.91433543964006e-13,-4.81559236931001e-12,-5.55111512312454e-11,-7.28583859910096e-11,4.54497550705822e-10,4.87017429227032e-12,4.63635477414988e-10 +12.092,0.559791546218632,-0.293077920291366,-0.000351292371604625,5.55111512312639e-13,1.66533453693792e-13,-3.88231113923652e-12,-4.85722573272873e-11,-6.59194920871008e-11,4.77916317631181e-10,3.92533080951672e-12,4.84880036995789e-10 +12.094,0.559791546218633,-0.293077920291365,-0.000351292371611425,4.71844785465744e-13,2.7755575615632e-14,-2.90392709878549e-12,-5.5511151231307e-11,-6.93889390390752e-11,4.96998275867675e-10,2.94214215642442e-12,5.04879786669495e-10 +12.096,0.559791546218634,-0.293077920291366,-0.000351292371616241,3.33066907387436e-13,-1.11022302462479e-13,-1.89431803576604e-12,-6.93889390390568e-11,-6.59194920871039e-11,4.95263552391268e-10,1.92657736337506e-12,5.04426595874172e-10 +12.098,0.559791546218635,-0.293077920291366,-0.000351292371619003,1.94289029309424e-13,-2.35922392732872e-13,-9.22872889219763e-13,-5.55111512312331e-11,-6.59194920871455e-11,4.66640615037654e-10,9.72163552062941e-13,4.74531696465856e-10 +12.1,0.559791546218635,-0.293077920291367,-0.000351292371619932,1.11022302462528e-13,-3.74700270811032e-13,-2.7755575615632e-14,-4.85722573273613e-11,-5.89805981832244e-11,4.37150315946252e-10,3.91786442552185e-13,4.43777392254083e-10 +12.102,0.559791546218635,-0.293077920291367,-0.000351292371619114,0,-4.71844785465744e-13,8.25728374565051e-13,-4.85722573273613e-11,-4.51028103754069e-11,4.11996825544582e-10,9.51033569403864e-13,4.17294754273821e-10 +12.104,0.559791546218635,-0.293077920291368,-0.000351292371616629,-8.32667268468959e-14,-5.55111512312639e-13,1.62023172656252e-12,-4.85722573273397e-11,-3.4694469519476e-11,3.66026653430933e-10,1.71471075889247e-12,3.708618090596e-10 +12.106,0.559791546218635,-0.29307792029137,-0.000351292371612633,-1.94289029309338e-13,-6.10622663543632e-13,2.28983498828862e-12,-4.85722573273397e-11,-1.38777878078114e-11,3.08780778723803e-10,2.37780414200452e-12,3.12885644422351e-10 +12.108,0.559791546218634,-0.293077920291371,-0.00035129237160747,-2.7755575615632e-13,-6.10622663543903e-13,2.85535484145814e-12,-3.46944695195654e-11,-1.04083408559309e-11,2.59341159658844e-10,2.93307833268179e-12,2.61858505433395e-10 +12.11,0.559791546218634,-0.293077920291372,-0.000351292371601211,-3.33066907387584e-13,-6.52256026967351e-13,3.32719962692388e-12,-3.46944695194976e-11,-1.04083408557907e-11,2.046973701649e-10,3.40685028243308e-12,2.07877495479996e-10 +12.112,0.559791546218633,-0.293077920291373,-0.000351292371594161,-4.16333634234295e-13,-6.52256026967062e-13,3.67414432211765e-12,-2.0816681711717e-11,1.04083408558585e-11,1.43982048506043e-10,3.75474474757725e-12,1.45850944765041e-10 +12.114,0.559791546218632,-0.293077920291375,-0.000351292371586515,-4.1633363423448e-13,-6.10622663543903e-13,3.90312782094825e-12,-6.93889390395498e-12,1.38777878077451e-11,8.06646416333472e-11,3.97248039880482e-12,8.21433238485239e-11 +12.116,0.559791546218631,-0.293077920291376,-0.000351292371578549,-4.44089209850112e-13,-5.96744875736087e-13,3.996802888651e-12,-1.38777878078175e-11,1.73472347597719e-11,2.42861286636806e-11,4.06543392564085e-12,3.29140637679138e-11 +12.118,0.55979154621863,-0.293077920291377,-0.000351292371570527,-4.71844785465744e-13,-5.41233724504823e-13,4.00027233560296e-12,-1.38777878078175e-11,3.12250225675894e-11,-2.16840434497149e-11,4.06420351423288e-12,4.04696524461775e-11 +12.12,0.559791546218629,-0.293077920291378,-0.000351292371562548,-4.99600361081375e-13,-4.71844785465744e-13,3.91006671485215e-12,5.2405607655648e-23,2.77555756156828e-11,-7.11236625154772e-11,3.96999492908474e-12,7.6347543165274e-11 +12.122,0.559791546218628,-0.293077920291379,-0.000351292371554887,-4.71844785465534e-13,-4.30211422042104e-13,3.71577768554108e-12,2.77555756156227e-11,1.73472347597642e-11,-1.15359111152432e-10,3.77024179298776e-12,1.19912564218451e-10 +12.124,0.559791546218627,-0.29307792029138,-0.000351292371547685,-3.88578058618848e-13,-4.02455846426664e-13,3.44863027024227e-12,2.08166817116739e-11,2.77555756155873e-11,-1.50920942409603e-10,3.49371068590321e-12,1.54857473416818e-10 +12.126,0.559791546218627,-0.293077920291381,-0.000351292371541093,-3.88578058618848e-13,-3.19189119579768e-13,3.11209391590273e-12,4.31412251847314e-23,4.85722573273844e-11,-1.84748050191871e-10,3.15245985590569e-12,1.9102645427159e-10 +12.128,0.559791546218626,-0.293077920291381,-0.000351292371535236,-3.88578058618675e-13,-2.08166817117147e-13,2.70963806947487e-12,1.38777878078113e-11,4.51028103753869e-11,-2.06432093641194e-10,2.74526224593135e-12,2.11757091459255e-10 +12.13,0.559791546218625,-0.293077920291381,-0.000351292371530254,-3.33066907387584e-13,-1.3877787807816e-13,2.28636554133768e-12,4.16333634234094e-11,3.12250225675663e-11,-2.21177243186791e-10,2.31466201698152e-12,2.27217323036778e-10 +12.132,0.559791546218625,-0.293077920291382,-0.000351292371526091,-2.22044604925056e-13,-8.32667268468959e-14,1.8249290967278e-12,3.46944695195438e-11,3.12250225675894e-11,-2.41993924898818e-10,1.84027263264438e-12,2.46454393220173e-10 +12.134,0.559791546218624,-0.293077920291382,-0.000351292371522954,-1.94289029309424e-13,-1.3877787807816e-14,1.31838984174252e-12,1.38777878078175e-11,3.12250225675894e-11,-2.44596010112784e-10,1.33270123985622e-12,2.46971259849964e-10 +12.136,0.559791546218624,-0.293077920291382,-0.000351292371520817,-1.66533453693792e-13,4.1633363423448e-14,8.46545056276775e-13,2.08166817117386e-11,2.77555756156242e-11,-2.36789754470928e-10,8.63773847980928e-13,2.39317976837605e-10 +12.138,0.559791546218624,-0.293077920291382,-0.000351292371519568,-1.11022302462479e-13,9.71445146546688e-14,3.71230823858913e-13,2.77555756156227e-11,3.12250225675755e-11,-2.35055030994805e-10,3.99468813494281e-13,2.38738856510767e-10 +12.14,0.559791546218623,-0.293077920291381,-0.000351292371519332,-5.55111512312639e-14,1.66533453693792e-13,-9.36750677027579e-14,4.16333634234402e-11,3.12250225676002e-11,-2.1510571102113e-10,1.98972102113133e-13,2.21311558437876e-10 +12.142,0.559791546218623,-0.293077920291381,-0.000351292371519943,5.55111512312639e-14,2.22044604925056e-13,-4.89192020225514e-13,2.77555756156289e-11,2.77555756156042e-11,-1.91686944095384e-10,5.40087147726794e-13,1.95664581598549e-10 +12.144,0.559791546218624,-0.29307792029138,-0.000351292371521289,5.55111512312393e-14,2.77555756156196e-13,-8.60422844084209e-13,6.93889390390568e-12,2.0816681711717e-11,-1.77809156287583e-10,9.05784828923743e-13,1.79157970924541e-10 +12.146,0.559791546218624,-0.29307792029138,-0.000351292371523385,8.32667268468959e-14,3.05311331771952e-13,-1.20042864537608e-12,2.08166817117324e-11,6.93889390393957e-12,-1.43114686768214e-10,1.24144161753488e-12,1.44787071435476e-10 +12.148,0.559791546218624,-0.293077920291379,-0.000351292371526091,1.3877787807816e-13,3.05311331771952e-13,-1.432881591157e-12,1.38777878078175e-11,3.46944695195438e-12,-1.1102230246254e-10,1.47160591294981e-12,1.11940080849868e-10 +12.15,0.559791546218624,-0.293077920291379,-0.000351292371529116,1.3877787807816e-13,3.19189119579768e-13,-1.64451785522619e-12,1.38777878078175e-11,3.46944695195438e-12,-9.88792381306998e-11,1.68094615311132e-12,9.99086272045557e-11 +12.152,0.559791546218624,-0.293077920291378,-0.000351292371532669,1.94289029309424e-13,3.19189119579768e-13,-1.82839854367976e-12,2.77555756156073e-11,-3.542932097529e-23,-6.59194920869213e-11,1.86619161810848e-12,7.15244812267197e-11 +12.154,0.559791546218625,-0.293077920291377,-0.00035129237153643,2.49800180540577e-13,3.19189119579626e-13,-1.90819582357385e-12,6.93889390390567e-12,0,-3.03576608295873e-11,1.95076731707316e-12,3.1140581556129e-11 +12.156,0.559791546218625,-0.293077920291377,-0.000351292371540302,2.22044604925056e-13,3.19189119579768e-13,-1.94982918699815e-12,-6.93889390388103e-12,-1.38777878077821e-11,-5.20417042814344e-12,1.98822014855103e-12,1.636534854173e-11 +12.158,0.559791546218626,-0.293077920291376,-0.000351292371544229,2.22044604925056e-13,2.63677968348504e-13,-1.92901250528642e-12,6.93889390388103e-12,-2.42861286637053e-11,2.08166817119335e-11,1.95957115796291e-12,3.27306970835531e-11 +12.16,0.559791546218626,-0.293077920291376,-0.000351292371548018,2.49800180540577e-13,2.22044604924957e-13,-1.86656246015042e-12,0,-1.04083408558585e-11,3.81639164714812e-11,1.89624875858026e-12,3.95577815330173e-11 +12.162,0.559791546218627,-0.293077920291375,-0.000351292371551695,2.22044604925056e-13,2.22044604925056e-13,-1.77635683940045e-12,-1.38777878077898e-11,-1.04083408558385e-11,5.29090660170971e-11,1.80389889795337e-12,5.56803001124355e-11 +12.164,0.559791546218627,-0.293077920291375,-0.000351292371555123,1.94289029309424e-13,1.80411241501608e-13,-1.65492619608206e-12,-6.93889390390876e-12,-1.73472347597719e-11,6.59194920871332e-11,1.67603017796482e-12,6.85160874499264e-11 +12.166,0.559791546218628,-0.293077920291374,-0.000351292371558315,1.94289029309424e-13,1.52655665885976e-13,-1.51267887105194e-12,-6.93889390390876e-12,-1.04083408558631e-11,9.45424294407568e-11,1.53272611583546e-12,9.53664132309799e-11 +12.168,0.559791546218628,-0.293077920291374,-0.000351292371561174,1.66533453693792e-13,1.3877787807816e-13,-1.27675647831907e-12,-6.93889390392725e-12,-1.73472347597811e-11,1.16226472890588e-10,1.29502887827754e-12,1.17718595824991e-10 +12.17,0.559791546218628,-0.293077920291374,-0.000351292371563422,1.66533453693718e-13,8.32667268468589e-14,-1.04777297948964e-12,0,-2.42861286636699e-11,1.0668549377255e-10,1.06418746259649e-12,1.09414855604534e-10 +12.172,0.559791546218629,-0.293077920291374,-0.000351292371565365,1.66533453693792e-13,4.1633363423448e-14,-8.50014503228729e-13,-2.77555756156165e-11,-2.0816681711717e-11,1.1362438767639e-10,8.67174367614907e-13,1.18803230974901e-10 +12.174,0.559791546218629,-0.293077920291374,-0.000351292371566822,5.55111512312639e-14,0,-5.93275428784133e-13,-2.77555756156412e-11,-2.08166817117216e-11,1.20563281580455e-10,5.95866782351574e-13,1.25456012533042e-10 +12.176,0.559791546218629,-0.293077920291374,-0.000351292371567738,5.55111512312393e-14,-4.16333634234295e-14,-3.6776137690696e-13,-6.93889390390568e-12,-1.73472347597642e-11,1.14491749414444e-10,3.74250257455447e-13,1.16006187276368e-10 +12.178,0.559791546218629,-0.293077920291374,-0.000351292371568293,2.7755575615632e-14,-6.93889390390799e-14,-1.35308431126206e-13,-1.38777878078114e-11,-2.08166817117309e-11,1.17093834628419e-10,1.54575445568044e-13,1.19736766867633e-10 +12.18,0.559791546218629,-0.293077920291374,-0.000351292371568279,0,-1.24900090270344e-13,1.00613961606666e-13,0,-1.38777878078175e-11,1.02348685082654e-10,1.60384543581131e-13,1.03285266774052e-10 +12.182,0.559791546218629,-0.293077920291374,-0.000351292371567891,2.7755575615632e-14,-1.24900090270344e-13,2.74086309204366e-13,-1.38777878078175e-11,0,8.23993651089165e-11,3.02479271059301e-13,8.3559848999333e-11 +12.184,0.559791546218629,-0.293077920291375,-0.000351292371567183,-5.55111512312639e-14,-1.24900090270344e-13,4.30211422042296e-13,-2.77555756156258e-11,-6.93889390389181e-12,7.89299181568966e-11,4.51401581871635e-13,8.39550606373349e-11 +12.186,0.559791546218629,-0.293077920291375,-0.00035129237156617,-8.32667268468589e-14,-1.52655665885908e-13,5.89805981831917e-13,6.93889390390568e-12,-1.04083408558585e-11,7.0256300777045e-11,6.14905030335231e-13,7.13612612476546e-11 +12.188,0.559791546218629,-0.293077920291375,-0.000351292371564824,-2.7755575615632e-14,-1.66533453693792e-13,7.11236625150569e-13,-9.24544980919128e-24,-1.04083408558801e-11,5.11743425413926e-11,7.31000205288965e-13,5.22220920101442e-11 +12.19,0.559791546218629,-0.293077920291376,-0.000351292371563325,-8.32667268468959e-14,-1.94289029309424e-13,7.94503351997465e-13,-2.08166817117139e-11,-3.46944695193434e-12,4.68375338512843e-11,8.22141807138526e-13,5.13724233116299e-11 +12.192,0.559791546218628,-0.293077920291376,-0.000351292371561646,-1.11022302462479e-13,-1.80411241501528e-13,8.98586760555686e-13,-6.93889390390567e-12,1.38777878078114e-11,4.25007251614222e-11,9.23218464909663e-13,4.52443685147118e-11 +12.194,0.559791546218628,-0.293077920291376,-0.00035129237155973,-1.11022302462528e-13,-1.3877787807816e-13,9.64506252643211e-13,-1.23251627831744e-23,1.38777878077975e-11,1.30104260699287e-11,9.80743372384339e-13,1.9022728010444e-11 +12.196,0.559791546218628,-0.293077920291376,-0.000351292371557788,-1.11022302462528e-13,-1.24900090270344e-13,9.50628464835395e-13,0,3.46944695195438e-12,-1.12757025938518e-11,9.65204881022118e-13,1.17973950996574e-11 +12.198,0.559791546218628,-0.293077920291377,-0.000351292371555928,-1.11022302462528e-13,-1.24900090270344e-13,9.19403442267809e-13,-6.93889390390875e-12,1.04083408558631e-11,-8.6736173798859e-12,9.34467053377227e-13,1.52221367236729e-11 +12.2,0.559791546218628,-0.293077920291377,-0.00035129237155411,-1.3877787807816e-13,-8.32667268468959e-14,9.15933995315855e-13,1.23251627831744e-23,1.38777878078252e-11,-1.04083408559606e-11,9.30122427973295e-13,1.73472347598365e-11 +12.202,0.559791546218627,-0.293077920291377,-0.000351292371552264,-1.11022302462479e-13,-6.93889390390491e-14,8.77770078843971e-13,1.38777878078113e-11,-3.46944695195284e-12,-2.86229373536109e-11,8.87480190099355e-13,3.19984780784929e-11 +12.204,0.559791546218627,-0.293077920291377,-0.000351292371550599,-8.32667268468959e-14,-9.71445146547119e-14,8.01442245901373e-13,-1.23251627831744e-23,-3.46944695196208e-12,-4.25007251613437e-11,8.11591078094586e-13,4.26421001053249e-11 +12.206,0.559791546218627,-0.293077920291377,-0.000351292371549058,-1.11022302462528e-13,-8.32667268468959e-14,7.07767178198615e-13,9.24544980919128e-24,1.38777878078221e-11,-5.11743425413933e-11,7.21244534106919e-13,5.30226963571525e-11 +12.208,0.559791546218627,-0.293077920291378,-0.000351292371547768,-8.32667268468589e-14,-4.16333634234295e-14,5.96744875735822e-13,2.77555756156227e-11,1.73472347597642e-11,-5.20417042792926e-11,6.03962856032305e-13,6.14787566225786e-11 +12.21,0.559791546218627,-0.293077920291378,-0.000351292371546671,0,-1.3877787807816e-14,4.99600361081375e-13,1.38777878078083e-11,6.93889390390414e-12,-5.2909066017238e-11,4.99793070967455e-13,5.5137197152781e-11 +12.212,0.559791546218627,-0.293077920291378,-0.000351292371545769,-2.7755575615632e-14,-1.3877787807816e-14,3.85108611666894e-13,-1.38777878078175e-11,3.46944695195438e-12,-5.9847959921213e-11,3.86356839919e-13,6.15337985445589e-11 +12.214,0.559791546218627,-0.293077920291378,-0.000351292371545131,-5.55111512312639e-14,0,2.6020852139655e-13,0,1.04083408558631e-11,-5.81132364452358e-11,2.660638316615e-13,5.90379692190688e-11 +12.216,0.559791546218626,-0.293077920291378,-0.000351292371544729,-2.7755575615632e-14,2.7755575615632e-14,1.52655665885976e-13,1.38777878078175e-11,3.46944695195284e-12,-5.11743425413332e-11,1.57621370006103e-13,5.31360837014635e-11 +12.218,0.559791546218626,-0.293077920291378,-0.00035129237154452,0,1.38777878078098e-14,5.55111512312393e-14,6.93889390390568e-12,6.93889390390568e-12,-5.11743425413044e-11,5.72195849815089e-14,5.21067158028029e-11 +12.22,0.559791546218626,-0.293077920291378,-0.000351292371544507,0,5.55111512312639e-14,-5.20417042793099e-14,0,1.73472347597734e-11,-5.20417042793095e-11,7.60909120415533e-14,5.48567729465177e-11 +12.222,0.559791546218626,-0.293077920291377,-0.000351292371544729,0,8.32667268468959e-14,-1.52655665885976e-13,6.93889390390568e-12,-6.93889390391184e-12,-4.42354486373929e-11,1.73888182827029e-13,4.53108310823232e-11 +12.224,0.559791546218626,-0.293077920291377,-0.000351292371545117,2.77555756156196e-14,2.77555756156196e-14,-2.28983498828862e-13,0,-3.46944695195284e-12,-3.38271077815402e-11,2.32323452736516e-13,3.40045626793869e-11 +12.226,0.559791546218627,-0.293077920291377,-0.000351292371545645,0,6.93889390390799e-14,-2.87964097012182e-13,-6.93889390390568e-12,2.08166817117294e-11,-3.55618312575578e-11,2.96206255891077e-13,4.17866764470222e-11 +12.228,0.559791546218626,-0.293077920291377,-0.000351292371546269,0,1.11022302462528e-13,-3.71230823859078e-13,1.38777878078175e-11,0,-3.2092384305578e-11,3.87476807340995e-13,3.49644694633812e-11 +12.23,0.559791546218627,-0.293077920291377,-0.000351292371547129,5.55111512312639e-14,6.93889390390799e-14,-4.1633363423448e-13,6.93889390390876e-12,-6.93889390390876e-12,-1.38777878078175e-11,4.25711178813616e-13,1.69967494438852e-11 +12.232,0.559791546218627,-0.293077920291377,-0.000351292371547934,2.7755575615632e-14,8.32667268468959e-14,-4.26741975090342e-13,-6.93889390391184e-12,1.04083408558508e-11,-1.04083408558123e-11,4.35674687216915e-13,1.62731486612791e-11 +12.234,0.559791546218627,-0.293077920291376,-0.000351292371548836,2.77555756156196e-14,1.11022302462479e-13,-4.57966997657724e-13,1.38777878078114e-11,0,-1.12757025938467e-11,4.7204882646338e-13,1.78811203067235e-11 +12.236,0.559791546218627,-0.293077920291376,-0.000351292371549766,8.32667268468959e-14,8.32667268468959e-14,-4.71844785465744e-13,6.93889390391184e-12,-6.93889390389643e-12,2.60208521391493e-12,4.8631697191318e-13,1.01522088571774e-11 +12.238,0.559791546218627,-0.293077920291376,-0.000351292371550724,5.55111512312639e-14,8.32667268468959e-14,-4.47558656802066e-13,-1.38777878078206e-11,-1.04083408558678e-11,1.73472347598166e-11,4.58610495943219e-13,2.45326946669747e-11 +12.24,0.559791546218627,-0.293077920291376,-0.000351292371551556,2.77555756156196e-14,4.16333634234295e-14,-4.02455846426485e-13,-6.93889390390568e-12,-2.0816681711717e-11,1.30104260698231e-11,4.05554456578349e-13,2.55098740219337e-11 +12.242,0.559791546218627,-0.293077920291376,-0.000351292371552334,2.7755575615632e-14,0,-3.95516952522756e-13,-6.93889390390568e-12,-6.93889390390414e-12,1.04083408558185e-11,3.96489636321862e-13,1.43048962453489e-11 +12.244,0.559791546218627,-0.293077920291376,-0.000351292371553139,0,1.3877787807816e-14,-3.60822483003216e-13,6.93889390390876e-12,3.46944695195438e-12,1.99493199737377e-11,3.61089264912493e-13,2.14046882289067e-11 +12.246,0.559791546218627,-0.293077920291376,-0.000351292371553777,5.55111512312639e-14,1.3877787807816e-14,-3.15719672627814e-13,2.08166817117263e-11,0,1.47451495458061e-11,3.20862887523118e-13,2.5509874021945e-11 +12.248,0.559791546218627,-0.293077920291376,-0.000351292371554401,8.32667268468959e-14,1.3877787807816e-14,-3.01841884819998e-13,-6.16258139158722e-24,-1.54064534789681e-24,1.214306433187e-11,3.13423777378046e-13,1.214306433187e-11 +12.25,0.559791546218627,-0.293077920291376,-0.000351292371554984,5.55111512312393e-14,1.38777878078098e-14,-2.67147415300339e-13,-6.93889390390568e-12,-3.46944695195284e-12,2.16840434497052e-11,2.732065563033e-13,2.30300467018801e-11 +12.252,0.559791546218628,-0.293077920291376,-0.00035129237155547,5.55111512312639e-14,0,-2.15105711021148e-13,-6.93889390390259e-12,-1.04083408558616e-11,3.20923843055483e-11,2.22152998685442e-13,3.44442003593699e-11 +12.254,0.559791546218628,-0.293077920291376,-0.000351292371555845,2.7755575615632e-14,-2.7755575615632e-14,-1.3877787807816e-13,-6.93889390390876e-12,-1.04083408558631e-11,3.29597460435666e-11,1.44222201478783e-13,3.52537468538868e-11 +12.256,0.559791546218628,-0.293077920291376,-0.000351292371556025,2.7755575615632e-14,-4.1633363423448e-14,-8.32667268468959e-14,0,0,2.68882138776464e-11,9.71445146547119e-14,2.68882138776464e-11 +12.258,0.559791546218628,-0.293077920291376,-0.000351292371556178,2.7755575615632e-14,-2.7755575615632e-14,-3.1225022567586e-14,-6.93889390390876e-12,1.04083408558631e-11,2.68882138776437e-11,5.01572127401073e-14,2.96556546633428e-11 +12.26,0.559791546218628,-0.293077920291376,-0.00035129237155615,0,0,2.42861286636672e-14,-6.93889390390568e-12,0,2.25514051876934e-11,2.42861286636672e-14,2.35947901993043e-11 +12.262,0.559791546218628,-0.293077920291376,-0.000351292371556081,0,-2.7755575615632e-14,5.89805981832179e-14,0,-1.38777878078175e-11,1.90819582357518e-11,6.51849901419435e-14,2.3594790199317e-11 +12.264,0.559791546218628,-0.293077920291376,-0.000351292371555914,0,-5.55111512312639e-14,1.00613961606666e-13,0,-6.93889390390259e-12,2.77555756156162e-11,1.14911518923074e-13,2.86097924907505e-11 +12.266,0.559791546218628,-0.293077920291376,-0.000351292371555678,0,-5.55111512312393e-14,1.7000290064567e-13,-1.38777878078114e-11,3.46944695195284e-12,2.60208521396463e-11,1.78836445220093e-13,2.96936828747191e-11 +12.268,0.559791546218628,-0.293077920291376,-0.000351292371555234,-5.55111512312639e-14,-4.1633363423448e-14,2.04697370165286e-13,-1.38777878078175e-11,6.93889390390259e-12,1.0408340855882e-11,2.16138469999103e-13,1.8683543625893e-11 +12.27,0.559791546218628,-0.293077920291376,-0.000351292371554859,-5.55111512312639e-14,-2.7755575615632e-14,2.11636264069194e-13,1.38777878078175e-11,6.9388939039103e-12,1.1275702593824e-11,2.20548788611366e-13,1.91802688206631e-11 +12.272,0.559791546218628,-0.293077920291376,-0.000351292371554388,0,-1.38777878078098e-14,2.49800180540577e-13,0,3.46944695195284e-12,1.38777878078114e-11,2.50185377655337e-13,1.43048962453788e-11 +12.274,0.559791546218628,-0.293077920291376,-0.00035129237155386,-5.55111512312639e-14,-1.3877787807816e-14,2.67147415300458e-13,-1.38777878078175e-11,-1.04083408558647e-11,-1.73472347594946e-12,2.73206556303421e-13,1.74337551706074e-11 +12.276,0.559791546218627,-0.293077920291377,-0.000351292371553319,-5.55111512312639e-14,-5.55111512312639e-14,2.4286128663678e-13,1.38777878078175e-11,-6.93889390390876e-12,-1.21430643318403e-11,2.5523436361296e-13,1.9702671250765e-11 +12.278,0.559791546218627,-0.293077920291377,-0.000351292371552889,0,-4.1633363423448e-14,2.18575157973102e-13,1.38777878078175e-11,6.93889390390876e-12,-1.04083408558631e-11,2.22504913727574e-13,1.86835436258848e-11 +12.28,0.559791546218627,-0.293077920291377,-0.000351292371552445,0,-2.7755575615632e-14,2.01227923213332e-13,-1.38777878078114e-11,-3.46944695194822e-12,-2.6020852139889e-12,2.0313308213707e-13,1.45396321842019e-11 +12.282,0.559791546218627,-0.293077920291377,-0.000351292371552084,-5.55111512312393e-14,-5.55111512312393e-14,2.08166817117147e-13,-6.93889390390568e-12,3.46944695195284e-12,-4.33680868994105e-12,2.22477863102644e-13,8.88781302544233e-12 +12.284,0.559791546218627,-0.293077920291377,-0.000351292371551612,-2.7755575615632e-14,-1.3877787807816e-14,1.83880688453562e-13,1.38777878078114e-11,2.42861286636745e-11,-2.16840434496918e-11,1.86480756536297e-13,3.53921852989514e-11 +12.286,0.559791546218627,-0.293077920291377,-0.000351292371551348,0,4.1633363423448e-14,1.2143064331839e-13,0,1.04083408558631e-11,-1.99493199737377e-11,1.28369537222298e-13,2.25013094460389e-11 +12.288,0.559791546218627,-0.293077920291377,-0.000351292371551126,-2.7755575615632e-14,2.7755575615632e-14,1.0408340855862e-13,0,-3.46944695195438e-12,-5.20417042793157e-12,1.11238931551372e-13,6.25463444138688e-12 +12.29,0.559791546218627,-0.293077920291377,-0.000351292371550932,0,2.7755575615632e-14,1.00613961606666e-13,6.93889390390876e-12,-3.08129069579361e-24,-3.46944695196439e-12,1.04372128693166e-13,7.75791922890392e-12 +12.292,0.559791546218627,-0.293077920291377,-0.000351292371550724,0,2.77555756156196e-14,9.02056207507638e-14,-6.93889390390568e-12,-3.46944695195284e-12,-8.6736173798821e-12,9.43791607972068e-14,1.1636878843344e-11 +12.294,0.559791546218627,-0.293077920291377,-0.000351292371550571,-2.7755575615632e-14,1.3877787807816e-14,6.59194920871259e-14,0,-3.4694469519513e-12,-2.16840434497049e-11,7.28583859910339e-14,2.19598452289877e-11 +12.296,0.559791546218627,-0.293077920291377,-0.00035129237155046,0,1.3877787807816e-14,3.469446951954e-15,6.93889390390876e-12,-3.46944695195438e-12,-2.3418766925689e-11,1.43048962453836e-14,2.46703051274578e-11 +12.298,0.559791546218627,-0.293077920291377,-0.000351292371550557,0,0,-2.77555756156196e-14,-6.93889390390568e-12,-3.46944695195284e-12,-7.80625564189389e-12,2.77555756156196e-14,1.10055866680825e-11 +12.3,0.559791546218627,-0.293077920291377,-0.000351292371550571,-2.7755575615632e-14,0,-2.7755575615632e-14,-6.93889390390876e-12,0,-5.20417042793465e-12,3.92523114670987e-14,8.67361737988779e-12 +12.302,0.559791546218627,-0.293077920291377,-0.000351292371550668,-2.7755575615632e-14,0,-4.8572257327356e-14,6.93889390390876e-12,1.04083408558631e-11,-1.38777878078175e-11,5.59431511414038e-14,1.86835436258848e-11 +12.304,0.559791546218627,-0.293077920291377,-0.000351292371550765,0,4.1633363423448e-14,-8.32667268468959e-14,6.93889390390876e-12,3.46944695195438e-12,-1.64798730217833e-11,9.3095030746783e-14,1.82145964977605e-11 +12.306,0.559791546218627,-0.293077920291376,-0.000351292371551001,0,1.3877787807816e-14,-1.14491749414482e-13,0,-2.08166817117216e-11,-8.67361737987285e-12,1.15329760592951e-13,2.25514051876942e-11 +12.308,0.559791546218627,-0.293077920291377,-0.000351292371551223,0,-4.16333634234295e-14,-1.17961196366383e-13,1.38777878078114e-11,-3.46944695195284e-12,-4.33680868994104e-12,1.25092688827668e-13,1.49478415232501e-11 +12.31,0.559791546218627,-0.293077920291377,-0.000351292371551473,5.55111512312639e-14,0,-1.31838984174252e-13,6.93889390390876e-12,1.38777878078129e-11,-8.67361738001695e-13,1.43048962453836e-13,1.55400630446897e-11 +12.312,0.559791546218627,-0.293077920291377,-0.000351292371551751,2.7755575615632e-14,1.3877787807816e-14,-1.2143064331839e-13,-6.93889390391184e-12,6.93889390390568e-12,-8.67361737973574e-13,1.2533302082417e-13,9.8513356253812e-12 +12.314,0.559791546218627,-0.293077920291377,-0.000351292371551959,2.77555756156196e-14,2.77555756156196e-14,-1.35308431126146e-13,0,3.46944695195284e-12,-3.46944695195283e-12,1.40886888990167e-13,4.9065389333857e-12 +12.316,0.559791546218627,-0.293077920291376,-0.000351292371552292,2.7755575615632e-14,2.7755575615632e-14,-1.35308431126206e-13,-6.93889390390568e-12,-6.93889390390568e-12,1.04083408558481e-11,1.4088688899023e-13,1.43048962453712e-11 +12.318,0.559791546218627,-0.293077920291376,-0.0003512923715525,0,0,-9.36750677027579e-14,0,-1.38777878078175e-11,1.30104260698289e-11,9.36750677027579e-14,1.90227280103904e-11 +12.32,0.559791546218627,-0.293077920291376,-0.000351292371552667,2.7755575615632e-14,-2.7755575615632e-14,-8.32667268468959e-14,6.93889390390876e-12,-6.93889390390876e-12,6.93889390390876e-12,9.20548301573888e-14,1.20185167898999e-11 +12.322,0.559791546218627,-0.293077920291377,-0.000351292371552833,2.7755575615632e-14,-2.7755575615632e-14,-6.59194920871259e-14,-6.93889390390876e-12,6.93889390390876e-12,1.30104260698324e-11,7.67210752827069e-14,1.62962475354904e-11 +12.324,0.559791546218627,-0.293077920291377,-0.00035129237155293,0,0,-3.12250225675721e-14,-6.93889390390568e-12,6.93889390390568e-12,1.21430643318349e-11,3.12250225675721e-14,1.56125112837878e-11 +12.326,0.559791546218627,-0.293077920291377,-0.000351292371552958,0,0,-1.734723475977e-14,0,0,3.46944695195091e-12,1.734723475977e-14,3.46944695195091e-12 +12.328,0.559791546218627,-0.293077920291377,-0.000351292371553,0,0,-1.734723475977e-14,0,0,-2.6020852139627e-12,1.734723475977e-14,2.6020852139627e-12 +12.33,0.559791546218627,-0.293077920291377,-0.000351292371553028,0,0,-2.77555756156196e-14,0,0,-8.6736173798821e-13,2.77555756156196e-14,8.6736173798821e-13 +12.332,0.559791546218627,-0.293077920291377,-0.000351292371553111,0,0,-2.0816681711724e-14,0,0,6.93889390390568e-12,2.0816681711724e-14,6.93889390390568e-12 +12.334,0.559791546218627,-0.293077920291377,-0.000351292371553111,0,0,0,0,0,5.20417042793157e-12,0,5.20417042793157e-12 +12.336,0.559791546218627,-0.293077920291377,-0.000351292371553111,0,0,0,0,0,5.20417042793157e-12,0,5.20417042793157e-12 +12.338,0.559791546218627,-0.293077920291377,-0.000351292371553111,0,0,2.0816681711724e-14,0,6.93889390390568e-12,1.04083408558585e-11,2.0816681711724e-14,1.25092688827682e-11 +12.34,0.559791546218627,-0.293077920291377,-0.000351292371553028,0,2.77555756156196e-14,4.16333634234295e-14,0,6.93889390390568e-12,7.80625564189388e-12,5.00370755310673e-14,1.04444184020107e-11 +12.342,0.559791546218627,-0.293077920291376,-0.000351292371552944,0,2.7755575615632e-14,5.20417042793099e-14,-6.93889390390876e-12,3.08129069579361e-24,5.20417042793619e-12,5.89805981832179e-14,8.67361737988872e-12 +12.344,0.559791546218627,-0.293077920291376,-0.000351292371552819,-2.7755575615632e-14,2.7755575615632e-14,6.24500451351719e-14,-6.93889390390568e-12,-3.08129069579361e-24,-3.46944695195862e-12,7.37614539776375e-14,7.75791922889858e-12 +12.346,0.559791546218627,-0.293077920291376,-0.000351292371552694,-2.77555756156196e-14,2.77555756156196e-14,3.8163916471477e-14,6.93889390390568e-12,-6.93889390390568e-12,-1.21430643318349e-11,5.47469494670766e-14,1.56125112837878e-11 +12.348,0.559791546218627,-0.293077920291376,-0.000351292371552667,0,0,1.3877787807816e-14,1.38777878078144e-11,-6.93889390390568e-12,-2.60208521396155e-12,1.3877787807816e-14,1.57325169794633e-11 +12.35,0.559791546218627,-0.293077920291376,-0.000351292371552639,2.7755575615632e-14,0,2.7755575615632e-14,0,0,6.93889390390876e-12,3.92523114670987e-14,6.93889390390876e-12 +12.352,0.559791546218627,-0.293077920291376,-0.000351292371552556,0,0,4.1633363423448e-14,-2.08166817117263e-11,0,-8.67361737988594e-13,4.1633363423448e-14,2.08347439118374e-11 +12.354,0.559791546218627,-0.293077920291376,-0.000351292371552472,-5.55111512312639e-14,0,2.4286128663678e-14,6.93889390390568e-12,0,-5.20417042793388e-12,6.05912861432152e-14,8.67361737988487e-12 +12.356,0.559791546218627,-0.293077920291376,-0.000351292371552459,2.77555756156196e-14,0,2.08166817117147e-14,2.77555756156227e-11,0,4.33680868994105e-12,3.46944695195246e-14,2.80923457078204e-11 +12.358,0.559791546218627,-0.293077920291376,-0.000351292371552389,5.55111512312639e-14,0,4.1633363423448e-14,-6.93889390390568e-12,0,6.93889390391107e-12,6.93889390390799e-14,9.81307786677521e-12 +12.36,0.559791546218627,-0.293077920291376,-0.000351292371552292,0,0,4.8572257327356e-14,-1.38777878078175e-11,0,-2.60208521396925e-12,4.8572257327356e-14,1.41196261246382e-11 +12.362,0.559791546218627,-0.293077920291376,-0.000351292371552195,0,0,3.12250225675721e-14,0,0,-7.80625564189389e-12,3.12250225675721e-14,7.80625564189389e-12 +12.364,0.559791546218627,-0.293077920291376,-0.000351292371552167,0,0,1.734723475977e-14,0,0,-4.33680868993951e-12,1.734723475977e-14,4.33680868993951e-12 +12.366,0.559791546218627,-0.293077920291376,-0.000351292371552125,0,0,1.3877787807816e-14,0,0,-1.73472347597719e-12,1.3877787807816e-14,1.73472347597719e-12 +12.368,0.559791546218627,-0.293077920291376,-0.000351292371552112,0,0,1.0408340855862e-14,0,0,-1.73472347597719e-12,1.0408340855862e-14,1.73472347597719e-12 +12.37,0.559791546218627,-0.293077920291376,-0.000351292371552084,0,0,6.93889390390799e-15,-6.93889390390568e-12,0,-2.60208521396578e-12,6.93889390390799e-15,7.41074193791679e-12 +12.372,0.559791546218627,-0.293077920291376,-0.000351292371552084,-2.77555756156196e-14,0,0,-6.93889390390568e-12,0,-3.46944695195284e-12,2.77555756156196e-14,7.75791922889599e-12 +12.374,0.559791546218627,-0.293077920291376,-0.000351292371552084,-2.7755575615632e-14,0,-6.93889390390799e-15,6.93889390390568e-12,0,-1.73472347597719e-12,2.86097924907671e-14,7.15244812268958e-12 +12.376,0.559791546218627,-0.293077920291376,-0.000351292371552112,0,0,-6.93889390390799e-15,6.93889390390876e-12,0,8.6736173798898e-13,6.93889390390799e-15,6.99289389267629e-12 +12.378,0.559791546218627,-0.293077920291376,-0.000351292371552112,0,0,-3.46944695195246e-15,0,0,-1.73472347597642e-12,3.46944695195246e-15,1.73472347597642e-12 +12.38,0.559791546218627,-0.293077920291376,-0.000351292371552125,0,0,-1.3877787807816e-14,0,0,-1.73472347597757e-12,1.3877787807816e-14,1.73472347597757e-12 +12.382,0.559791546218627,-0.293077920291376,-0.000351292371552167,0,0,-1.0408340855862e-14,0,0,3.46944695195438e-12,1.0408340855862e-14,3.46944695195438e-12 +12.384,0.559791546218627,-0.293077920291376,-0.000351292371552167,0,0,0,0,0,2.60208521396578e-12,0,2.60208521396578e-12 +12.386,0.559791546218627,-0.293077920291376,-0.000351292371552167,0,0,0,0,0,0,0,0 +12.388,0.559791546218627,-0.293077920291376,-0.000351292371552167,0,0,0,0,0,0,0,0 +12.39,0.559791546218627,-0.293077920291376,-0.000351292371552167,0,0,0,0,0,0,0,0 +12.392,0.559791546218627,-0.293077920291376,-0.000351292371552167,0,0,0,0,0,0,0,0 +12.394,0.559791546218627,-0.293077920291376,-0.000351292371552167,0,0,0,0,0,0,0,0 +12.396,0.559791546218627,-0.293077920291376,-0.000351292371552167,0,0,0,0,0,0,0,0 +12.398,0.559791546218627,-0.293077920291376,-0.000351292371552167,0,0,0,0,0,0,0,0 +12.4,0.559791546218627,-0.293077920291376,-0.000351292371552167,0,0,0,0,0,0,0,0 +12.402,0.559791546218627,-0.293077920291376,-0.000351292371552167,0,0,0,0,0,0,0,0 +12.404,0.559791546218627,-0.293077920291376,-0.000351292371552167,0,0,0,0,0,0,0,0 +12.406,0.559791546218627,-0.293077920291376,-0.000351292371552167,0,0,0,0,0,0,0,0 +12.408,0.559791546218627,-0.293077920291376,-0.000351292371552167,0,0,0,0,0,0,0,0 +12.41,0.559791546218627,-0.293077920291376,-0.000351292371552167,0,0,0,0,0,0,0,0 +12.412,0.559791546218627,-0.293077920291376,-0.000351292371552167,0,0,0,0,0,0,0,0 +12.414,0.559791546218627,-0.293077920291376,-0.000351292371552167,0,0,0,0,0,0,0,0 +12.416,0.559791546218627,-0.293077920291376,-0.000351292371552167,0,0,0,0,0,0,0,0 +12.418,0.559791546218627,-0.293077920291376,-0.000351292371552167,0,0,0,0,0,0,0,0 +12.42,0.559791546218627,-0.293077920291376,-0.000351292371552167,0,0,0,0,0,0,0,0 +12.422,0.559791546218627,-0.293077920291376,-0.000351292371552167,0,0,0,0,0,0,0,0 +12.424,0.559791546218627,-0.293077920291376,-0.000351292371552167,0,0,0,0,0,0,0,0 +12.426,0.559791546218627,-0.293077920291376,-0.000351292371552167,0,0,0,0,0,0,0,0 +12.428,0.559791546218627,-0.293077920291376,-0.000351292371552167,0,0,0,0,0,2.60208521396578e-12,0,2.60208521396578e-12 +12.43,0.559791546218627,-0.293077920291376,-0.000351292371552167,0,0,1.0408340855862e-14,0,0,2.60208521396578e-12,1.0408340855862e-14,2.60208521396578e-12 +12.432,0.559791546218627,-0.293077920291376,-0.000351292371552125,0,0,1.0408340855862e-14,0,0,-5.20417042793157e-12,1.0408340855862e-14,5.20417042793157e-12 +12.434,0.559791546218627,-0.293077920291376,-0.000351292371552125,0,0,-1.0408340855862e-14,0,0,-5.20417042793041e-12,1.0408340855862e-14,5.20417042793041e-12 +12.436,0.559791546218627,-0.293077920291376,-0.000351292371552167,0,0,-1.04083408558574e-14,0,0,2.60208521396463e-12,1.04083408558574e-14,2.60208521396463e-12 +12.438,0.559791546218627,-0.293077920291376,-0.000351292371552167,0,0,0,0,0,2.60208521396463e-12,0,2.60208521396463e-12 +12.44,0.559791546218627,-0.293077920291376,-0.000351292371552167,0,0,0,0,0,0,0,0 +12.442,0.559791546218627,-0.293077920291376,-0.000351292371552167,0,0,0,0,0,0,0,0 +12.444,0.559791546218627,-0.293077920291376,-0.000351292371552167,0,0,0,0,0,0,0,0 +12.446,0.559791546218627,-0.293077920291376,-0.000351292371552167,0,0,0,0,0,0,0,0 +12.448,0.559791546218627,-0.293077920291376,-0.000351292371552167,0,0,0,0,0,0,0,0 +12.45,0.559791546218627,-0.293077920291376,-0.000351292371552167,0,0,0,0,0,0,0,0 +12.452,0.559791546218627,-0.293077920291376,-0.000351292371552167,0,0,0,0,0,0,0,0 +12.454,0.559791546218627,-0.293077920291376,-0.000351292371552167,0,0,0,0,0,0,0,0 +12.456,0.559791546218627,-0.293077920291376,-0.000351292371552167,0,0,0,0,0,0,0,0 +12.458,0.559791546218627,-0.293077920291376,-0.000351292371552167,0,0,0,0,0,0,0,0 +12.46,0.559791546218627,-0.293077920291376,-0.000351292371552167,0,0,0,0,0,0,0,0 +12.462,0.559791546218627,-0.293077920291376,-0.000351292371552167,0,0,0,0,0,0,0,0 +12.464,0.559791546218627,-0.293077920291376,-0.000351292371552167,0,0,0,0,0,0,0,0 +12.466,0.559791546218627,-0.293077920291376,-0.000351292371552167,0,0,0,0,0,0,0,0 +12.468,0.559791546218627,-0.293077920291376,-0.000351292371552167,0,0,0,0,0,0,0,0 +12.47,0.559791546218627,-0.293077920291376,-0.000351292371552167,0,0,0,0,0,0,0,0 +12.472,0.559791546218627,-0.293077920291376,-0.000351292371552167,0,0,0,0,0,0,0,0 +12.474,0.559791546218627,-0.293077920291376,-0.000351292371552167,0,0,0,0,0,0,0,0 +12.476,0.559791546218627,-0.293077920291376,-0.000351292371552167,0,0,0,0,0,0,0,0 +12.478,0.559791546218627,-0.293077920291376,-0.000351292371552167,0,0,0,0,0,0,0,0 +12.48,0.559791546218627,-0.293077920291376,-0.000351292371552167,0,0,0,0,0,2.60208521396578e-12,0,2.60208521396578e-12 +12.482,0.559791546218627,-0.293077920291376,-0.000351292371552167,0,0,1.0408340855862e-14,0,0,2.60208521396463e-12,1.0408340855862e-14,2.60208521396463e-12 +12.484,0.559791546218627,-0.293077920291376,-0.000351292371552125,0,0,1.04083408558574e-14,0,0,-5.20417042792926e-12,1.04083408558574e-14,5.20417042792926e-12 +12.486,0.559791546218627,-0.293077920291376,-0.000351292371552125,0,0,-1.0408340855862e-14,0,0,-5.20417042793041e-12,1.0408340855862e-14,5.20417042793041e-12 +12.488,0.559791546218627,-0.293077920291376,-0.000351292371552167,0,0,-1.0408340855862e-14,0,0,2.60208521396578e-12,1.0408340855862e-14,2.60208521396578e-12 +12.49,0.559791546218627,-0.293077920291376,-0.000351292371552167,0,0,0,0,0,2.60208521396463e-12,0,2.60208521396463e-12 +12.492,0.559791546218627,-0.293077920291376,-0.000351292371552167,0,0,0,0,0,0,0,0 +12.494,0.559791546218627,-0.293077920291376,-0.000351292371552167,0,0,0,0,0,0,0,0 +12.496,0.559791546218627,-0.293077920291376,-0.000351292371552167,0,0,0,0,0,0,0,0 +12.498,0.559791546218627,-0.293077920291376,-0.000351292371552167,0,0,0,0,0,0,0,0 +12.5,0.559791546218627,-0.293077920291376,-0.000351292371552167,0,0,0,0,0,0,0,0 +12.502,0.559791546218627,-0.293077920291376,-0.000351292371552167,0,0,0,0,0,0,0,0 +12.504,0.559791546218627,-0.293077920291376,-0.000351292371552167,0,0,0,0,0,0,0,0 +12.506,0.559791546218627,-0.293077920291376,-0.000351292371552167,0,0,0,0,0,0,0,0 +12.508,0.559791546218627,-0.293077920291376,-0.000351292371552167,0,0,0,0,0,0,0,0 +12.51,0.559791546218627,-0.293077920291376,-0.000351292371552167,0,0,0,0,0,0,0,0 +12.512,0.559791546218627,-0.293077920291376,-0.000351292371552167,0,0,0,0,0,0,0,0 +12.514,0.559791546218627,-0.293077920291376,-0.000351292371552167,0,0,0,0,0,0,0,0 +12.516,0.559791546218627,-0.293077920291376,-0.000351292371552167,0,0,0,0,0,0,0,0 +12.518,0.559791546218627,-0.293077920291376,-0.000351292371552167,0,0,0,0,0,0,0,0 +12.52,0.559791546218627,-0.293077920291376,-0.000351292371552167,0,0,0,0,0,0,0,0 +12.522,0.559791546218627,-0.293077920291376,-0.000351292371552167,0,0,0,0,0,0,0,0 +12.524,0.559791546218627,-0.293077920291376,-0.000351292371552167,0,0,0,0,0,0,0,0 +12.526,0.559791546218627,-0.293077920291376,-0.000351292371552167,0,0,0,0,0,0,0,0 +12.528,0.559791546218627,-0.293077920291376,-0.000351292371552167,0,0,0,0,0,0,0,0 +12.53,0.559791546218627,-0.293077920291376,-0.000351292371552167,0,0,0,0,0,0,0,0 +12.532,0.559791546218627,-0.293077920291376,-0.000351292371552167,0,0,0,0,0,2.60208521396463e-12,0,2.60208521396463e-12 +12.534,0.559791546218627,-0.293077920291376,-0.000351292371552167,0,0,1.0408340855862e-14,0,0,2.60208521396578e-12,1.0408340855862e-14,2.60208521396578e-12 +12.536,0.559791546218627,-0.293077920291376,-0.000351292371552125,0,0,1.0408340855862e-14,0,0,-5.20417042793157e-12,1.0408340855862e-14,5.20417042793157e-12 +12.538,0.559791546218627,-0.293077920291376,-0.000351292371552125,0,0,-1.0408340855862e-14,0,0,-5.20417042793157e-12,1.0408340855862e-14,5.20417042793157e-12 +12.54,0.559791546218627,-0.293077920291376,-0.000351292371552167,0,0,-1.0408340855862e-14,0,0,2.60208521396578e-12,1.0408340855862e-14,2.60208521396578e-12 +12.542,0.559791546218627,-0.293077920291376,-0.000351292371552167,0,0,0,0,0,2.60208521396463e-12,0,2.60208521396463e-12 +12.544,0.559791546218627,-0.293077920291376,-0.000351292371552167,0,0,0,0,0,0,0,0 +12.546,0.559791546218627,-0.293077920291376,-0.000351292371552167,0,0,0,0,0,0,0,0 +12.548,0.559791546218627,-0.293077920291376,-0.000351292371552167,0,0,0,0,0,0,0,0 +12.55,0.559791546218627,-0.293077920291376,-0.000351292371552167,0,0,0,0,0,0,0,0 +12.552,0.559791546218627,-0.293077920291376,-0.000351292371552167,0,0,0,0,0,0,0,0 +12.554,0.559791546218627,-0.293077920291376,-0.000351292371552167,0,0,0,0,0,0,0,0 +12.556,0.559791546218627,-0.293077920291376,-0.000351292371552167,0,0,0,0,0,0,0,0 +12.558,0.559791546218627,-0.293077920291376,-0.000351292371552167,0,0,0,0,0,0,0,0 +12.56,0.559791546218627,-0.293077920291376,-0.000351292371552167,0,0,0,0,0,0,0,0 +12.562,0.559791546218627,-0.293077920291376,-0.000351292371552167,0,0,0,0,0,0,0,0 +12.564,0.559791546218627,-0.293077920291376,-0.000351292371552167,0,0,0,0,0,0,0,0 +12.566,0.559791546218627,-0.293077920291376,-0.000351292371552167,0,0,0,0,0,0,0,0 +12.568,0.559791546218627,-0.293077920291376,-0.000351292371552167,0,0,0,0,0,0,0,0 +12.57,0.559791546218627,-0.293077920291376,-0.000351292371552167,0,0,0,0,0,0,0,0 +12.572,0.559791546218627,-0.293077920291376,-0.000351292371552167,0,0,0,0,0,0,0,0 +12.574,0.559791546218627,-0.293077920291376,-0.000351292371552167,0,0,0,0,0,0,0,0 +12.576,0.559791546218627,-0.293077920291376,-0.000351292371552167,0,0,0,0,0,0,0,0 +12.578,0.559791546218627,-0.293077920291376,-0.000351292371552167,0,0,0,0,0,0,0,0 +12.58,0.559791546218627,-0.293077920291376,-0.000351292371552167,0,0,0,0,0,0,0,0 +12.582,0.559791546218627,-0.293077920291376,-0.000351292371552167,0,0,0,0,0,0,0,0 +12.584,0.559791546218627,-0.293077920291376,-0.000351292371552167,0,0,0,0,0,2.60208521396578e-12,0,2.60208521396578e-12 +12.586,0.559791546218627,-0.293077920291376,-0.000351292371552167,0,0,1.0408340855862e-14,0,0,2.60208521396578e-12,1.0408340855862e-14,2.60208521396578e-12 +12.588,0.559791546218627,-0.293077920291376,-0.000351292371552125,0,0,1.0408340855862e-14,0,0,-5.20417042793041e-12,1.0408340855862e-14,5.20417042793041e-12 +12.59,0.559791546218627,-0.293077920291376,-0.000351292371552125,0,0,-1.04083408558574e-14,0,0,-5.20417042792926e-12,1.04083408558574e-14,5.20417042792926e-12 +12.592,0.559791546218627,-0.293077920291376,-0.000351292371552167,0,0,-1.0408340855862e-14,0,0,2.60208521396463e-12,1.0408340855862e-14,2.60208521396463e-12 +12.594,0.559791546218627,-0.293077920291376,-0.000351292371552167,0,0,0,0,0,2.60208521396578e-12,0,2.60208521396578e-12 +12.596,0.559791546218627,-0.293077920291376,-0.000351292371552167,0,0,0,0,0,0,0,0 +12.598,0.559791546218627,-0.293077920291376,-0.000351292371552167,0,0,0,0,0,0,0,0 +12.6,0.559791546218627,-0.293077920291376,-0.000351292371552167,0,0,0,0,0,0,0,0 +12.602,0.559791546218627,-0.293077920291376,-0.000351292371552167,0,0,0,0,0,0,0,0 +12.604,0.559791546218627,-0.293077920291376,-0.000351292371552167,0,0,0,0,0,0,0,0 +12.606,0.559791546218627,-0.293077920291376,-0.000351292371552167,0,0,0,0,0,0,0,0 +12.608,0.559791546218627,-0.293077920291376,-0.000351292371552167,0,0,0,0,0,0,0,0 +12.61,0.559791546218627,-0.293077920291376,-0.000351292371552167,0,0,0,0,0,0,0,0 +12.612,0.559791546218627,-0.293077920291376,-0.000351292371552167,0,0,0,0,0,0,0,0 +12.614,0.559791546218627,-0.293077920291376,-0.000351292371552167,0,0,0,0,0,0,0,0 +12.616,0.559791546218627,-0.293077920291376,-0.000351292371552167,0,0,0,0,0,0,0,0 +12.618,0.559791546218627,-0.293077920291376,-0.000351292371552167,0,0,0,0,0,0,0,0 +12.62,0.559791546218627,-0.293077920291376,-0.000351292371552167,0,0,0,0,0,0,0,0 +12.622,0.559791546218627,-0.293077920291376,-0.000351292371552167,0,0,0,0,0,0,0,0 +12.624,0.559791546218627,-0.293077920291376,-0.000351292371552167,0,0,0,0,0,0,0,0 +12.626,0.559791546218627,-0.293077920291376,-0.000351292371552167,0,0,0,0,0,0,0,0 +12.628,0.559791546218627,-0.293077920291376,-0.000351292371552167,0,0,0,0,0,0,0,0 +12.63,0.559791546218627,-0.293077920291376,-0.000351292371552167,0,0,0,0,0,0,0,0 +12.632,0.559791546218627,-0.293077920291376,-0.000351292371552167,0,0,0,0,0,0,0,0 +12.634,0.559791546218627,-0.293077920291376,-0.000351292371552167,0,0,0,0,0,0,0,0 +12.636,0.559791546218627,-0.293077920291376,-0.000351292371552167,0,0,0,0,0,2.60208521396463e-12,0,2.60208521396463e-12 +12.638,0.559791546218627,-0.293077920291376,-0.000351292371552167,0,0,1.04083408558574e-14,0,0,2.60208521396463e-12,1.04083408558574e-14,2.60208521396463e-12 +12.64,0.559791546218627,-0.293077920291376,-0.000351292371552125,0,0,1.0408340855862e-14,0,0,-5.20417042793041e-12,1.0408340855862e-14,5.20417042793041e-12 +12.642,0.559791546218627,-0.293077920291376,-0.000351292371552125,0,0,-1.0408340855862e-14,0,0,-5.20417042793041e-12,1.0408340855862e-14,5.20417042793041e-12 +12.644,0.559791546218627,-0.293077920291376,-0.000351292371552167,0,0,-1.04083408558574e-14,0,0,2.60208521396463e-12,1.04083408558574e-14,2.60208521396463e-12 +12.646,0.559791546218627,-0.293077920291376,-0.000351292371552167,0,0,0,0,0,2.60208521396463e-12,0,2.60208521396463e-12 +12.648,0.559791546218627,-0.293077920291376,-0.000351292371552167,0,0,0,0,0,0,0,0 +12.65,0.559791546218627,-0.293077920291376,-0.000351292371552167,0,0,0,0,0,0,0,0 +12.652,0.559791546218627,-0.293077920291376,-0.000351292371552167,0,0,0,0,0,0,0,0 +12.654,0.559791546218627,-0.293077920291376,-0.000351292371552167,0,0,0,0,0,0,0,0 +12.656,0.559791546218627,-0.293077920291376,-0.000351292371552167,0,0,0,0,0,0,0,0 +12.658,0.559791546218627,-0.293077920291376,-0.000351292371552167,0,0,0,0,0,0,0,0 +12.66,0.559791546218627,-0.293077920291376,-0.000351292371552167,0,0,0,0,0,0,0,0 +12.662,0.559791546218627,-0.293077920291376,-0.000351292371552167,0,0,0,0,0,0,0,0 +12.664,0.559791546218627,-0.293077920291376,-0.000351292371552167,0,0,0,0,0,0,0,0 +12.666,0.559791546218627,-0.293077920291376,-0.000351292371552167,0,0,0,0,0,0,0,0 +12.668,0.559791546218627,-0.293077920291376,-0.000351292371552167,0,0,0,0,0,0,0,0 +12.67,0.559791546218627,-0.293077920291376,-0.000351292371552167,0,0,0,0,0,0,0,0 +12.672,0.559791546218627,-0.293077920291376,-0.000351292371552167,0,0,0,0,0,0,0,0 +12.674,0.559791546218627,-0.293077920291376,-0.000351292371552167,0,0,0,0,0,0,0,0 +12.676,0.559791546218627,-0.293077920291376,-0.000351292371552167,0,0,0,0,0,0,0,0 +12.678,0.559791546218627,-0.293077920291376,-0.000351292371552167,0,0,0,0,0,0,0,0 +12.68,0.559791546218627,-0.293077920291376,-0.000351292371552167,0,0,0,0,0,0,0,0 +12.682,0.559791546218627,-0.293077920291376,-0.000351292371552167,0,0,0,0,0,0,0,0 +12.684,0.559791546218627,-0.293077920291376,-0.000351292371552167,0,0,0,0,0,0,0,0 +12.686,0.559791546218627,-0.293077920291376,-0.000351292371552167,0,0,0,0,0,0,0,0 +12.688,0.559791546218627,-0.293077920291376,-0.000351292371552167,0,0,0,0,0,2.60208521396578e-12,0,2.60208521396578e-12 +12.69,0.559791546218627,-0.293077920291376,-0.000351292371552167,0,0,1.0408340855862e-14,0,0,2.60208521396463e-12,1.0408340855862e-14,2.60208521396463e-12 +12.692,0.559791546218627,-0.293077920291376,-0.000351292371552125,0,0,1.04083408558574e-14,0,0,-5.20417042792926e-12,1.04083408558574e-14,5.20417042792926e-12 +12.694,0.559791546218627,-0.293077920291376,-0.000351292371552125,0,0,-1.0408340855862e-14,0,0,-5.20417042793041e-12,1.0408340855862e-14,5.20417042793041e-12 +12.696,0.559791546218627,-0.293077920291376,-0.000351292371552167,0,0,-1.0408340855862e-14,0,0,2.60208521396578e-12,1.0408340855862e-14,2.60208521396578e-12 +12.698,0.559791546218627,-0.293077920291376,-0.000351292371552167,0,0,0,0,0,2.60208521396578e-12,0,2.60208521396578e-12 +12.7,0.559791546218627,-0.293077920291376,-0.000351292371552167,0,0,0,0,0,0,0,0 +12.702,0.559791546218627,-0.293077920291376,-0.000351292371552167,0,0,0,0,0,0,0,0 +12.704,0.559791546218627,-0.293077920291376,-0.000351292371552167,0,0,0,0,0,0,0,0 +12.706,0.559791546218627,-0.293077920291376,-0.000351292371552167,0,0,0,0,0,0,0,0 +12.708,0.559791546218627,-0.293077920291376,-0.000351292371552167,0,0,0,0,0,0,0,0 +12.71,0.559791546218627,-0.293077920291376,-0.000351292371552167,0,0,0,0,0,0,0,0 +12.712,0.559791546218627,-0.293077920291376,-0.000351292371552167,0,0,0,0,0,0,0,0 +12.714,0.559791546218627,-0.293077920291376,-0.000351292371552167,0,0,0,0,0,0,0,0 +12.716,0.559791546218627,-0.293077920291376,-0.000351292371552167,0,0,0,0,0,0,0,0 +12.718,0.559791546218627,-0.293077920291376,-0.000351292371552167,0,0,0,0,0,0,0,0 +12.72,0.559791546218627,-0.293077920291376,-0.000351292371552167,0,0,0,0,0,0,0,0 +12.722,0.559791546218627,-0.293077920291376,-0.000351292371552167,0,0,0,0,0,0,0,0 +12.724,0.559791546218627,-0.293077920291376,-0.000351292371552167,0,0,0,0,0,0,0,0 +12.726,0.559791546218627,-0.293077920291376,-0.000351292371552167,0,0,0,0,0,0,0,0 +12.728,0.559791546218627,-0.293077920291376,-0.000351292371552167,0,0,0,0,0,0,0,0 +12.73,0.559791546218627,-0.293077920291376,-0.000351292371552167,0,0,0,0,0,0,0,0 +12.732,0.559791546218627,-0.293077920291376,-0.000351292371552167,0,0,0,0,0,0,0,0 +12.734,0.559791546218627,-0.293077920291376,-0.000351292371552167,0,0,0,0,0,0,0,0 +12.736,0.559791546218627,-0.293077920291376,-0.000351292371552167,0,0,0,0,0,0,0,0 +12.738,0.559791546218627,-0.293077920291376,-0.000351292371552167,0,0,0,0,0,0,0,0 +12.74,0.559791546218627,-0.293077920291376,-0.000351292371552167,0,0,0,0,0,2.60208521396463e-12,0,2.60208521396463e-12 +12.742,0.559791546218627,-0.293077920291376,-0.000351292371552167,0,0,1.0408340855862e-14,0,0,2.60208521396578e-12,1.0408340855862e-14,2.60208521396578e-12 +12.744,0.559791546218627,-0.293077920291376,-0.000351292371552125,0,0,1.0408340855862e-14,0,0,-5.20417042793157e-12,1.0408340855862e-14,5.20417042793157e-12 +12.746,0.559791546218627,-0.293077920291376,-0.000351292371552125,0,0,-1.0408340855862e-14,0,0,-5.20417042793157e-12,1.0408340855862e-14,5.20417042793157e-12 +12.748,0.559791546218627,-0.293077920291376,-0.000351292371552167,0,0,-1.0408340855862e-14,0,0,2.60208521396578e-12,1.0408340855862e-14,2.60208521396578e-12 +12.75,0.559791546218627,-0.293077920291376,-0.000351292371552167,0,0,0,0,0,2.60208521396463e-12,0,2.60208521396463e-12 +12.752,0.559791546218627,-0.293077920291376,-0.000351292371552167,0,0,0,0,0,0,0,0 +12.754,0.559791546218627,-0.293077920291376,-0.000351292371552167,0,0,0,0,0,0,0,0 +12.756,0.559791546218627,-0.293077920291376,-0.000351292371552167,0,0,0,0,0,0,0,0 +12.758,0.559791546218627,-0.293077920291376,-0.000351292371552167,0,0,0,0,0,0,0,0 +12.76,0.559791546218627,-0.293077920291376,-0.000351292371552167,0,0,0,0,0,0,0,0 +12.762,0.559791546218627,-0.293077920291376,-0.000351292371552167,0,0,0,0,0,0,0,0 +12.764,0.559791546218627,-0.293077920291376,-0.000351292371552167,0,0,0,0,0,0,0,0 +12.766,0.559791546218627,-0.293077920291376,-0.000351292371552167,0,0,0,0,0,0,0,0 +12.768,0.559791546218627,-0.293077920291376,-0.000351292371552167,0,0,0,0,0,0,0,0 +12.77,0.559791546218627,-0.293077920291376,-0.000351292371552167,0,0,0,0,0,0,0,0 +12.772,0.559791546218627,-0.293077920291376,-0.000351292371552167,0,0,0,0,0,0,0,0 +12.774,0.559791546218627,-0.293077920291376,-0.000351292371552167,0,0,0,0,0,0,0,0 +12.776,0.559791546218627,-0.293077920291376,-0.000351292371552167,0,0,0,0,0,0,0,0 +12.778,0.559791546218627,-0.293077920291376,-0.000351292371552167,0,0,0,0,0,0,0,0 +12.78,0.559791546218627,-0.293077920291376,-0.000351292371552167,0,0,0,0,0,0,0,0 +12.782,0.559791546218627,-0.293077920291376,-0.000351292371552167,0,0,0,0,0,0,0,0 +12.784,0.559791546218627,-0.293077920291376,-0.000351292371552167,0,0,0,0,0,0,0,0 +12.786,0.559791546218627,-0.293077920291376,-0.000351292371552167,0,0,0,0,0,0,0,0 +12.788,0.559791546218627,-0.293077920291376,-0.000351292371552167,0,0,0,0,0,0,0,0 +12.79,0.559791546218627,-0.293077920291376,-0.000351292371552167,0,0,0,0,0,0,0,0 +12.792,0.559791546218627,-0.293077920291376,-0.000351292371552167,0,0,0,0,0,2.60208521396463e-12,0,2.60208521396463e-12 +12.794,0.559791546218627,-0.293077920291376,-0.000351292371552167,0,0,1.0408340855862e-14,0,0,2.60208521396578e-12,1.0408340855862e-14,2.60208521396578e-12 +12.796,0.559791546218627,-0.293077920291376,-0.000351292371552125,0,0,1.0408340855862e-14,0,0,-5.20417042793041e-12,1.0408340855862e-14,5.20417042793041e-12 +12.798,0.559791546218627,-0.293077920291376,-0.000351292371552125,0,0,-1.04083408558574e-14,0,0,-5.20417042792926e-12,1.04083408558574e-14,5.20417042792926e-12 +12.8,0.559791546218627,-0.293077920291376,-0.000351292371552167,0,0,-1.0408340855862e-14,0,0,2.60208521396463e-12,1.0408340855862e-14,2.60208521396463e-12 +12.802,0.559791546218627,-0.293077920291376,-0.000351292371552167,0,0,0,0,0,2.60208521396578e-12,0,2.60208521396578e-12 +12.804,0.559791546218627,-0.293077920291376,-0.000351292371552167,0,0,0,0,0,0,0,0 +12.806,0.559791546218627,-0.293077920291376,-0.000351292371552167,0,0,0,0,0,0,0,0 +12.808,0.559791546218627,-0.293077920291376,-0.000351292371552167,0,0,0,0,0,0,0,0 +12.81,0.559791546218627,-0.293077920291376,-0.000351292371552167,0,0,0,0,0,0,0,0 +12.812,0.559791546218627,-0.293077920291376,-0.000351292371552167,0,0,0,0,0,0,0,0 +12.814,0.559791546218627,-0.293077920291376,-0.000351292371552167,0,0,0,0,0,0,0,0 +12.816,0.559791546218627,-0.293077920291376,-0.000351292371552167,0,0,0,0,0,0,0,0 +12.818,0.559791546218627,-0.293077920291376,-0.000351292371552167,0,0,0,0,0,0,0,0 +12.82,0.559791546218627,-0.293077920291376,-0.000351292371552167,0,0,0,0,0,0,0,0 +12.822,0.559791546218627,-0.293077920291376,-0.000351292371552167,0,0,0,0,0,0,0,0 +12.824,0.559791546218627,-0.293077920291376,-0.000351292371552167,0,0,0,0,0,0,0,0 +12.826,0.559791546218627,-0.293077920291376,-0.000351292371552167,0,0,0,0,0,0,0,0 +12.828,0.559791546218627,-0.293077920291376,-0.000351292371552167,0,0,0,0,0,0,0,0 +12.83,0.559791546218627,-0.293077920291376,-0.000351292371552167,0,0,0,0,0,0,0,0 +12.832,0.559791546218627,-0.293077920291376,-0.000351292371552167,0,0,0,0,0,0,0,0 +12.834,0.559791546218627,-0.293077920291376,-0.000351292371552167,0,0,0,0,0,0,0,0 +12.836,0.559791546218627,-0.293077920291376,-0.000351292371552167,0,0,0,0,0,0,0,0 +12.838,0.559791546218627,-0.293077920291376,-0.000351292371552167,0,0,0,0,0,0,0,0 +12.84,0.559791546218627,-0.293077920291376,-0.000351292371552167,0,0,0,0,0,0,0,0 +12.842,0.559791546218627,-0.293077920291376,-0.000351292371552167,0,0,0,0,0,0,0,0 +12.844,0.559791546218627,-0.293077920291376,-0.000351292371552167,0,0,0,0,0,2.60208521396463e-12,0,2.60208521396463e-12 +12.846,0.559791546218627,-0.293077920291376,-0.000351292371552167,0,0,1.04083408558574e-14,0,0,2.60208521396463e-12,1.04083408558574e-14,2.60208521396463e-12 +12.848,0.559791546218627,-0.293077920291376,-0.000351292371552125,0,0,1.0408340855862e-14,0,0,-5.20417042793041e-12,1.0408340855862e-14,5.20417042793041e-12 +12.85,0.559791546218627,-0.293077920291376,-0.000351292371552125,0,0,-1.0408340855862e-14,0,0,-5.20417042793157e-12,1.0408340855862e-14,5.20417042793157e-12 +12.852,0.559791546218627,-0.293077920291376,-0.000351292371552167,0,0,-1.0408340855862e-14,0,0,2.60208521396578e-12,1.0408340855862e-14,2.60208521396578e-12 +12.854,0.559791546218627,-0.293077920291376,-0.000351292371552167,0,0,0,0,0,2.60208521396578e-12,0,2.60208521396578e-12 +12.856,0.559791546218627,-0.293077920291376,-0.000351292371552167,0,0,0,0,0,0,0,0 +12.858,0.559791546218627,-0.293077920291376,-0.000351292371552167,0,0,0,0,0,0,0,0 +12.86,0.559791546218627,-0.293077920291376,-0.000351292371552167,0,0,0,0,0,0,0,0 +12.862,0.559791546218627,-0.293077920291376,-0.000351292371552167,0,0,0,0,0,0,0,0 +12.864,0.559791546218627,-0.293077920291376,-0.000351292371552167,0,0,0,0,0,0,0,0 +12.866,0.559791546218627,-0.293077920291376,-0.000351292371552167,0,0,0,0,0,0,0,0 +12.868,0.559791546218627,-0.293077920291376,-0.000351292371552167,0,0,0,0,0,0,0,0 +12.87,0.559791546218627,-0.293077920291376,-0.000351292371552167,0,0,0,0,0,0,0,0 +12.872,0.559791546218627,-0.293077920291376,-0.000351292371552167,0,0,0,0,0,0,0,0 +12.874,0.559791546218627,-0.293077920291376,-0.000351292371552167,0,0,0,0,0,0,0,0 +12.876,0.559791546218627,-0.293077920291376,-0.000351292371552167,0,0,0,0,0,0,0,0 +12.878,0.559791546218627,-0.293077920291376,-0.000351292371552167,0,0,0,0,0,0,0,0 +12.88,0.559791546218627,-0.293077920291376,-0.000351292371552167,0,0,0,0,0,0,0,0 +12.882,0.559791546218627,-0.293077920291376,-0.000351292371552167,0,0,0,0,0,0,0,0 +12.884,0.559791546218627,-0.293077920291376,-0.000351292371552167,0,0,0,0,0,0,0,0 +12.886,0.559791546218627,-0.293077920291376,-0.000351292371552167,0,0,0,0,0,0,0,0 +12.888,0.559791546218627,-0.293077920291376,-0.000351292371552167,0,0,0,0,0,0,0,0 +12.89,0.559791546218627,-0.293077920291376,-0.000351292371552167,0,0,0,0,0,0,0,0 +12.892,0.559791546218627,-0.293077920291376,-0.000351292371552167,0,0,0,0,0,0,0,0 +12.894,0.559791546218627,-0.293077920291376,-0.000351292371552167,0,0,0,0,0,0,0,0 +12.896,0.559791546218627,-0.293077920291376,-0.000351292371552167,0,0,0,0,0,2.60208521396578e-12,0,2.60208521396578e-12 +12.898,0.559791546218627,-0.293077920291376,-0.000351292371552167,0,0,1.0408340855862e-14,0,0,2.60208521396578e-12,1.0408340855862e-14,2.60208521396578e-12 +12.9,0.559791546218627,-0.293077920291376,-0.000351292371552125,0,0,1.0408340855862e-14,0,0,-5.20417042793157e-12,1.0408340855862e-14,5.20417042793157e-12 +12.902,0.559791546218627,-0.293077920291376,-0.000351292371552125,0,0,-1.0408340855862e-14,0,0,-5.20417042793041e-12,1.0408340855862e-14,5.20417042793041e-12 +12.904,0.559791546218627,-0.293077920291376,-0.000351292371552167,0,0,-1.04083408558574e-14,0,0,2.60208521396463e-12,1.04083408558574e-14,2.60208521396463e-12 +12.906,0.559791546218627,-0.293077920291376,-0.000351292371552167,0,0,0,0,0,2.60208521396463e-12,0,2.60208521396463e-12 +12.908,0.559791546218627,-0.293077920291376,-0.000351292371552167,0,0,0,0,0,0,0,0 +12.91,0.559791546218627,-0.293077920291376,-0.000351292371552167,0,0,0,0,0,0,0,0 +12.912,0.559791546218627,-0.293077920291376,-0.000351292371552167,0,0,0,0,0,0,0,0 +12.914,0.559791546218627,-0.293077920291376,-0.000351292371552167,0,0,0,0,0,0,0,0 +12.916,0.559791546218627,-0.293077920291376,-0.000351292371552167,0,0,0,0,0,0,0,0 +12.918,0.559791546218627,-0.293077920291376,-0.000351292371552167,0,0,0,0,0,0,0,0 +12.92,0.559791546218627,-0.293077920291376,-0.000351292371552167,0,0,0,0,0,0,0,0 +12.922,0.559791546218627,-0.293077920291376,-0.000351292371552167,0,0,0,0,0,0,0,0 +12.924,0.559791546218627,-0.293077920291376,-0.000351292371552167,0,0,0,0,0,0,0,0 +12.926,0.559791546218627,-0.293077920291376,-0.000351292371552167,0,0,0,0,0,0,0,0 +12.928,0.559791546218627,-0.293077920291376,-0.000351292371552167,0,0,0,0,0,0,0,0 +12.93,0.559791546218627,-0.293077920291376,-0.000351292371552167,0,0,0,0,0,0,0,0 +12.932,0.559791546218627,-0.293077920291376,-0.000351292371552167,0,0,0,0,0,0,0,0 +12.934,0.559791546218627,-0.293077920291376,-0.000351292371552167,0,0,0,0,0,0,0,0 +12.936,0.559791546218627,-0.293077920291376,-0.000351292371552167,0,0,0,0,0,0,0,0 +12.938,0.559791546218627,-0.293077920291376,-0.000351292371552167,0,0,0,0,0,0,0,0 +12.94,0.559791546218627,-0.293077920291376,-0.000351292371552167,0,0,0,0,0,0,0,0 +12.942,0.559791546218627,-0.293077920291376,-0.000351292371552167,0,0,0,0,0,0,0,0 +12.944,0.559791546218627,-0.293077920291376,-0.000351292371552167,0,0,0,0,0,0,0,0 +12.946,0.559791546218627,-0.293077920291376,-0.000351292371552167,0,0,0,0,0,0,0,0 +12.948,0.559791546218627,-0.293077920291376,-0.000351292371552167,0,0,0,0,0,2.60208521396578e-12,0,2.60208521396578e-12 +12.95,0.559791546218627,-0.293077920291376,-0.000351292371552167,0,0,1.0408340855862e-14,0,0,2.60208521396463e-12,1.0408340855862e-14,2.60208521396463e-12 +12.952,0.559791546218627,-0.293077920291376,-0.000351292371552125,0,0,1.04083408558574e-14,0,0,-5.20417042792926e-12,1.04083408558574e-14,5.20417042792926e-12 +12.954,0.559791546218627,-0.293077920291376,-0.000351292371552125,0,0,-1.0408340855862e-14,0,0,-5.20417042793041e-12,1.0408340855862e-14,5.20417042793041e-12 +12.956,0.559791546218627,-0.293077920291376,-0.000351292371552167,0,0,-1.0408340855862e-14,0,0,2.60208521396578e-12,1.0408340855862e-14,2.60208521396578e-12 +12.958,0.559791546218627,-0.293077920291376,-0.000351292371552167,0,0,0,0,0,2.60208521396463e-12,0,2.60208521396463e-12 +12.96,0.559791546218627,-0.293077920291376,-0.000351292371552167,0,0,0,0,0,0,0,0 +12.962,0.559791546218627,-0.293077920291376,-0.000351292371552167,0,0,0,0,0,0,0,0 +12.964,0.559791546218627,-0.293077920291376,-0.000351292371552167,0,0,0,0,0,0,0,0 +12.966,0.559791546218627,-0.293077920291376,-0.000351292371552167,0,0,0,0,0,0,0,0 +12.968,0.559791546218627,-0.293077920291376,-0.000351292371552167,0,0,0,0,0,0,0,0 +12.97,0.559791546218627,-0.293077920291376,-0.000351292371552167,0,0,0,0,0,0,0,0 +12.972,0.559791546218627,-0.293077920291376,-0.000351292371552167,0,0,0,0,0,0,0,0 +12.974,0.559791546218627,-0.293077920291376,-0.000351292371552167,0,0,0,0,0,0,0,0 +12.976,0.559791546218627,-0.293077920291376,-0.000351292371552167,0,0,0,0,0,0,0,0 +12.978,0.559791546218627,-0.293077920291376,-0.000351292371552167,0,0,0,0,0,0,0,0 +12.98,0.559791546218627,-0.293077920291376,-0.000351292371552167,0,0,0,0,0,0,0,0 +12.982,0.559791546218627,-0.293077920291376,-0.000351292371552167,0,0,0,0,0,0,0,0 +12.984,0.559791546218627,-0.293077920291376,-0.000351292371552167,0,0,0,0,0,0,0,0 +12.986,0.559791546218627,-0.293077920291376,-0.000351292371552167,0,0,0,0,0,0,0,0 +12.988,0.559791546218627,-0.293077920291376,-0.000351292371552167,0,0,0,0,0,0,0,0 +12.99,0.559791546218627,-0.293077920291376,-0.000351292371552167,0,0,0,0,0,0,0,0 +12.992,0.559791546218627,-0.293077920291376,-0.000351292371552167,0,0,0,0,0,0,0,0 +12.994,0.559791546218627,-0.293077920291376,-0.000351292371552167,0,0,0,0,0,0,0,0 +12.996,0.559791546218627,-0.293077920291376,-0.000351292371552167,0,0,0,0,0,0,0,0 +12.998,0.559791546218627,-0.293077920291376,-0.000351292371552167,0,0,0,0,0,0,0,0 diff --git a/data/ik_speedl_twist.csv b/data/ik_speedl_twist.csv new file mode 100644 index 00000000..15cbd817 --- /dev/null +++ b/data/ik_speedl_twist.csv @@ -0,0 +1,6501 @@ +t,vx,vy,vz,wx,wy,wz,ax,ay,az,alphax,alphay,alphaz,jx,jy,jz,jalphax,jalphay,jalphaz +0,-6.68805922296985e-13,2.04862021088232e-12,5.46732747101633e-13,1.02745102431177e-13,2.9396931835676e-13,2.39999990355882e-05,-1.00320888386899e-09,3.07293032140567e-09,8.20099117264318e-10,1.54117662117095e-10,4.40953994475799e-10,0.0359999985533823,-1.67201479965441e-07,5.12155035038767e-07,1.36683188892991e-07,2.56862782547723e-08,7.34923276833659e-08,5.99999975889701 +0.002,-2.67522369003497e-12,8.19448085369366e-12,2.18693098163027e-12,4.10980426665368e-13,1.17587730730836e-12,9.59999961423527e-05,-1.33761184379988e-09,4.09724039148321e-09,1.0934654950503e-09,2.0549021862664e-10,5.87938649842531e-10,0.0479999980711763,-2.50802220702551e-07,7.68232577175045e-07,2.05024781433662e-07,3.85294102353179e-08,1.10238488031038e-07,8.99999963834556 +0.004,-6.01925329749649e-12,1.84375817768151e-11,4.92059472730283e-12,9.24705976937737e-13,2.64572391772688e-12,0.000215999991320293,-2.0064177666792e-09,6.14586063010585e-09,1.64019824299897e-09,3.08235303058367e-10,8.81907946599951e-10,0.0719999971067645,-3.34283081303386e-07,1.02415187158686e-06,2.73464257736993e-07,5.1253845424322e-08,1.46986155144444e-07,11.9999995178474 +0.006,-1.07008947567518e-11,3.27779233741171e-11,8.74772395362614e-12,1.64392163889884e-12,4.70350909370816e-12,0.000383999984569411,-2.67474416901342e-09,8.19384787783064e-09,2.18732252599827e-09,4.10505600323928e-10,1.17588327042031e-09,0.095999996142566,-3.33958633604747e-07,1.02366930214667e-06,2.73812062382388e-07,5.0852120196752e-08,1.47004210392869e-07,11.9999995179987 +0.008,-1.67182299735502e-11,5.12129732881377e-11,1.36698848312959e-11,2.56672837823345e-12,7.34925699940811e-12,0.000599999975890557,-3.34225230109818e-09,1.02405378386925e-08,2.73544649252852e-09,5.11643783845375e-10,1.46992478817142e-09,0.11999999517876,-3.33696517459274e-07,1.02301979474162e-06,2.74429325784238e-07,5.01926533783047e-08,1.47074037247941e-07,11.9999995181681 +0.01,-2.40699039611445e-11,7.37400747288872e-11,1.96895099237402e-11,3.69049677428034e-12,1.05832082463939e-11,0.000863999965284449,-4.00953023885052e-09,1.22859270567971e-08,3.28503982913522e-09,6.11276213837147e-10,1.76417941941207e-09,0.143999994215238,-3.33803405711558e-07,1.02239843297085e-06,2.75275021689985e-07,4.93604443546603e-08,1.47222716941173e-07,11.9999995182686 +0.012,-3.27563509289522e-11,1.00356681515326e-10,2.68100441478368e-11,5.01183323358204e-12,1.44059746770564e-11,0.00117599995275151,-4.67746592394441e-09,1.43301315705759e-08,3.83654657928846e-09,7.09085561264016e-10,2.05881565593612e-09,0.167999993251834,-3.34313947197219e-07,1.02185502999497e-06,2.76301117402289e-07,4.84059119149711e-08,1.47444715806319e-07,11.9999995182866 +0.014,-4.27797676569221e-11,1.31060601011191e-10,3.5035696240894e-11,6.5268390193364e-12,1.88184708701383e-11,0.00153599993829179,-5.34678602763939e-09,1.6373347176777e-08,4.39024429874438e-09,8.04899861497031e-10,2.35395828263735e-09,0.191999992288385,-3.35139837566835e-07,1.02142215211321e-06,2.77418338613124e-07,4.74064740235831e-08,1.47716725190736e-07,11.999999518231 +0.016,-5.41434950395098e-11,1.65850070222434e-10,4.43710213428143e-11,8.23143267957016e-12,2.38218078076058e-11,0.00194399992190505,-6.01802527421175e-09,1.84158201790288e-08,4.94621993374095e-09,8.98711457358349e-10,2.64968255669906e-09,0.215999991324758,-3.36138246736709e-07,1.02110581410653e-06,2.78525835885725e-07,4.6443944745839e-08,1.48005820923766e-07,11.9999995181232 +0.018,-6.68518687537692e-11,2.04723881727306e-10,5.48205759758578e-11,1.01216848487698e-11,2.94172010969346e-11,0.00239999990359082,-6.69133901458623e-09,2.04577704332031e-08,5.50434764228728e-09,9.90675640480387e-10,2.94598156633241e-09,0.239999990360878,-3.37118201599763e-07,1.02088756759735e-06,2.79519713852849e-07,4.55956243085052e-08,1.48274553984745e-07,11.999999517998 +0.02,-8.09088510978547e-11,2.47681151955247e-10,6.63884119119634e-11,1.21941352414917e-11,3.56057340729354e-11,0.00290399988334856,-7.3664980806108e-09,2.24993704494182e-08,6.06429878915235e-09,1.08109395459237e-09,3.24278077263804e-09,0.26399998939675,-3.37949561896392e-07,1.02075624699733e-06,2.80315331900203e-07,4.49273729113617e-08,1.48496585037142e-07,11.9999995178802 +0.022,-9.63178610762123e-11,2.94721363524979e-10,7.90777711324672e-11,1.44460606671393e-11,4.23883241874867e-11,0.00345599986117782,-8.04313726217179e-09,2.45407954211924e-08,6.62560896988809e-09,1.17038513212583e-09,3.53996790648098e-09,0.287999988432398,-3.38502898027643e-07,1.02069273985507e-06,2.80843087636448e-07,4.44909476556179e-08,1.48645757703547e-07,11.9999995177938 +0.024,-1.13081400146542e-10,3.45844333640016e-10,9.28908477915158e-11,1.6875675769995e-11,4.97656056988593e-11,0.00405599983707815,-8.72050967272138e-09,2.65821414088384e-08,7.18767113969814e-09,1.25905774521484e-09,3.83736380345223e-09,0.311999987467925,-3.38853390943858e-07,1.02072614005825e-06,2.81080192487178e-07,4.43195014108305e-08,1.48725948006731e-07,11.9999995177318 +0.026,-1.31199899767098e-10,4.01049929160333e-10,1.0782845569126e-10,1.94822916479986e-11,5.77377794012957e-11,0.00470399981104952,-9.39855082594723e-09,2.86236999814254e-08,7.74992973983681e-09,1.34766313776916e-09,4.1348716985079e-09,0.335999986503325,-3.3909713483883e-07,1.02088923117006e-06,2.81027730654561e-07,4.44275692623736e-08,1.4874912282817e-07,11.9999995176745 +0.028,-1.50675603450331e-10,4.60339133565718e-10,1.23890566750863e-10,2.22663283210717e-11,6.6305092492891e-11,0.00539999978309145,-1.00768982120767e-08,3.06656983335187e-08,8.31178206231638e-09,1.43676802226434e-09,4.43236029476491e-09,0.359999985538623,-3.39033620920309e-07,1.0211342676373e-06,2.80657780544515e-07,4.48192508497106e-08,1.48690575910854e-07,11.9999995176515 +0.03,-1.71507492615405e-10,5.23712722494407e-10,1.41075583940525e-10,2.5229363737056e-11,7.54672205803553e-11,0.00614399975320401,-1.07546853096285e-08,3.27082370519746e-08,8.87256086201486e-09,1.526940141168e-09,4.72963400215132e-09,0.383999984573931,-3.38715588847731e-07,1.02147499172251e-06,2.79986910121495e-07,4.54839209915521e-08,1.48558384560971e-07,11.9999995176535 +0.032,-1.93694344688845e-10,5.91172081773617e-10,1.59380810198922e-10,2.83740888857437e-11,8.52236285014962e-11,0.00693599972138718,-1.14317605674676e-08,3.47515983004087e-08,9.43172970280236e-09,1.61870370623054e-09,5.02659383300879e-09,0.407999983609237,-3.38081444079243e-07,1.02188973971107e-06,2.7902518213692e-07,4.63974697420887e-08,1.48346070670545e-07,11.999999517688 +0.034,-2.17234534885275e-10,6.62719115696042e-10,1.78802502751735e-10,3.17041785619782e-11,9.55735959123905e-11,0.00777599968764096,-1.21070110859454e-08,3.67957960108189e-08,9.98866159056254e-09,1.71253002013635e-09,5.3230182848335e-09,0.431999982644683,-3.37568823127705e-07,1.02248415355216e-06,2.77871530039029e-07,4.75218280525387e-08,1.48116734806014e-07,11.9999995176822 +0.036,-2.42122389032626e-10,7.38355265816892e-10,1.99335456561173e-10,3.52242089662891e-11,1.0651570164083e-10,0.00866399965196591,-1.27820358599784e-08,3.88415349146174e-08,1.05432158229585e-08,1.8087910184407e-09,5.61906077223285e-09,0.455999981679966,-3.37533932146542e-07,1.02333435779077e-06,2.76635038118892e-07,4.88072988058191e-08,1.47929682826206e-07,11.999999517571 +0.038,-2.68362678325189e-10,8.18085255354511e-10,2.20975366043569e-10,3.89393426357409e-11,1.18049839001322e-10,0.00959999961436082,-1.34571468145316e-08,4.0889133441982e-08,1.10952017430381e-08,1.90775921535963e-09,5.91473701613832e-09,0.479999980714967,-3.37125093059813e-07,1.02419361511749e-06,2.75245944742967e-07,5.02070851256593e-08,1.47679232124357e-07,11.999999517494 +0.04,-2.95950976290753e-10,9.0191179958482e-10,2.43716263533325e-10,4.28552458277276e-11,1.30174649705384e-10,0.0105839995748258,-1.41305362322177e-08,4.29383093750873e-08,1.16441996019304e-08,2.00961935894334e-09,6.20977770073027e-09,0.503999979749941,-3.35892429728603e-07,1.02490710146216e-06,2.73669704519558e-07,5.1673590536691e-08,1.47307676039848e-07,11.9999995175406 +0.042,-3.2488482325406e-10,9.89838492854861e-10,2.6755216445129e-10,4.69778200715143e-11,1.42888949804243e-10,0.0116159995333606,-1.4800716533446e-08,4.49887618478307e-08,1.21898805611163e-08,2.11445357750639e-09,6.50396772029772e-09,0.52799997878513,-3.35306462500094e-07,1.02581948469539e-06,2.72174074727674e-07,5.31413563327486e-08,1.47015320924041e-07,11.9999995174666 +0.044,-3.55153842424537e-10,1.08186684697614e-09,2.9247578577779e-10,5.13130601377532e-11,1.56190520586574e-10,0.0126959994899663,-1.54717620822181e-08,4.70415873138689e-08,1.2732895900841e-08,2.22218478427433e-09,6.79783898442644e-09,0.551999977819808,-3.35971430797521e-07,1.02705317124236e-06,2.70939805421979e-07,5.4534501914282e-08,1.46901859166684e-07,11.999999517171 +0.046,-3.86771871582932e-10,1.17800484211034e-09,3.18483748054654e-10,5.58665592086116e-11,1.70080305741949e-10,0.0138239994446398,-1.61446022566361e-08,4.90969745328001e-08,1.32736397828043e-08,2.33259158516352e-09,7.09157515696445e-09,0.575999976853814,-3.35894703165025e-07,1.02803667813807e-06,2.69737465870273e-07,5.58025847752208e-08,1.46715918494103e-07,11.9999995170072 +0.048,-4.19732251451081e-10,1.27825474510734e-09,3.45570344909008e-10,6.06434264784073e-11,1.84556821214432e-10,0.0149999993973816,-1.68153408948782e-08,5.11537340264212e-08,1.38118457643221e-08,2.44539512337521e-09,7.38470265840285e-09,0.599999975887836,-3.35235589559324e-07,1.02876756592762e-06,2.68609976926056e-07,5.69049202290422e-08,1.46474629300619e-07,11.9999995169569 +0.05,-4.54033235162445e-10,1.38261977821602e-09,3.73731131111943e-10,6.56481397021125e-11,1.9961911637556e-10,0.0162239993481912,-1.74855446148734e-08,5.32120447965106e-08,1.43480796905085e-08,2.56021126607969e-09,7.67747367416693e-09,0.623999974921641,-3.35107443638808e-07,1.02949343928213e-06,2.67763838445601e-07,5.77871897469033e-08,1.46331514613854e-07,11.999999516833 +0.052,-4.89674429910575e-10,1.49110292429339e-09,4.02962663671041e-10,7.0884271542726e-11,2.152667159111e-10,0.0174959992970681,-1.81557706694334e-08,5.52717077835497e-08,1.48829011181045e-08,2.67654388236283e-09,7.97002871685826e-09,0.647999973955169,-3.35228176326979e-07,1.03009538832829e-06,2.67208618513072e-07,5.84030707909839e-08,1.46254427839391e-07,11.9999995166882 +0.054,-5.26656317840178e-10,1.60370660935022e-09,4.33262735584361e-10,7.63543152315638e-11,2.31499231242993e-10,0.0188159992440118,-1.88264573201813e-08,5.73324263498238e-08,1.54169141645608e-08,2.79382354924363e-09,8.26249138552449e-09,0.671999972988394,-3.35573413403736e-07,1.03054544065004e-06,2.66971096922121e-07,5.87216907044208e-08,1.46255295201122e-07,11.9999995165484 +0.056,-5.649802591913e-10,1.72043262969268e-09,4.64630320329285e-10,8.20595657397005e-11,2.48316681453198e-10,0.0201839991890217,-1.94980643230483e-08,5.93938895461498e-08,1.5950785505793e-08,2.91143064518051e-09,8.55504989766275e-09,0.695999972021362,-3.36159160403693e-07,1.03082646585317e-06,2.67076969264271e-07,5.87221785953995e-08,1.46339754550362e-07,11.9999995164194 +0.058,-6.04648575132372e-10,1.84128216753482e-09,4.97065877607533e-10,8.80000378122858e-11,2.65719430833644e-10,0.0215999991320973,-2.01710939617961e-08,6.14557322132365e-08,1.64852220416179e-08,3.02871226362522e-09,8.84785040372594e-09,0.719999971054072,-3.37002473182251e-07,1.03092604982274e-06,2.67536264409597e-07,5.83934484967032e-08,1.46498915429287e-07,11.9999995162823 +0.06,-6.45664635038484e-10,1.96625555854563e-09,5.30571208495756e-10,9.41744147942014e-11,2.83708083068102e-10,0.023063999073238,-2.08460742157773e-08,6.35175937454408e-08,1.70209305634314e-08,3.14500443916732e-09,9.1410455593799e-09,0.743999970086491,-3.38111307072826e-07,1.03085053514138e-06,2.68349470249056e-07,5.77431982437524e-08,1.46740584093526e-07,11.9999995161251 +0.062,-6.88032871995481e-10,2.09535254251658e-09,5.65149599861259e-10,1.00580055568955e-10,3.02283613071164e-10,0.0245759990124432,-2.15235391900874e-08,6.5579134353802e-08,1.75586199226141e-08,3.25968505660023e-09,9.43481274010004e-09,0.767999969118572,-3.39485031882946e-07,1.03061667273277e-06,2.6950363056672e-07,5.67885582308789e-08,1.47071265756134e-07,11.9999995159601 +0.064,-7.31758791798834e-10,2.22857209596083e-09,6.00805688186212e-10,1.07213155020602e-10,3.21447334028502e-10,0.0261359989497123,-2.22040143433091e-08,6.76400604363719e-08,1.80989450856983e-08,3.37215867209084e-09,9.72933062240443e-09,0.791999968150332,-3.411156855029e-07,1.03025070028947e-06,2.70966680083334e-07,5.55515919722915e-08,1.47481527858206e-07,11.9999995158051 +0.066,-7.76848929368718e-10,2.36591278426207e-09,6.37545380204052e-10,1.14068690257318e-10,3.41200935560781e-10,0.0277439988850446,-2.2888001932099e-08,6.97001371549599e-08,1.86424866429474e-08,3.4818914244894e-09,1.00247388515329e-08,0.815999967181793,-3.42987790946658e-07,1.0297718624e-06,2.72702325131158e-07,5.40740412516281e-08,1.47962696782355e-07,11.9999995156336 +0.068,-8.2331079952723e-10,2.50737264458067e-09,6.75375634758002e-10,1.2114072071856e-10,3.61546289434633e-10,0.0293999988184394,-2.35759655070958e-08,7.17591478859719e-08,1.91897543862229e-08,3.58845483709735e-09,1.03211814095339e-08,0.839999966212866,-3.45079881011212e-07,1.02920840253096e-06,2.74672320478564e-07,5.24062130496937e-08,1.48507291533594e-07,11.9999995154272 +0.07,-8.71152791397101e-10,2.65294937580596e-09,7.14304397748944e-10,1.28422509605708e-10,3.82485661198917e-10,0.031103998749896,-2.42683214561438e-08,7.38169707650837e-08,1.97411759248617e-08,3.69151627668817e-09,1.06187680176672e-08,0.863999965243501,-3.47364091700754e-07,1.0286004361628e-06,2.76820883923796e-07,5.0598089086643e-08,1.49099916441085e-07,11.99999951522 +0.072,-9.20384085351805e-10,2.80264052764101e-09,7.54340338457449e-10,1.35906785825313e-10,4.04021361505302e-10,0.0328559986794135,-2.49654218738988e-08,7.58735496306231e-08,2.02970379219181e-08,3.79084719344392e-09,1.09175810752982e-08,0.887999964273746,-3.49805891176047e-07,1.02799236137437e-06,2.79081553873646e-07,4.87064815563077e-08,1.49740246244156e-07,11.9999995149906 +0.074,-9.71014478892696e-10,2.95644357432845e-09,7.95492549436616e-10,1.43585898379484e-10,4.2615598550011e-10,0.034655998606991,-2.5667545020848e-08,7.79289402105811e-08,2.08575021403563e-08,3.88634220291341e-09,1.12177290026439e-08,0.911999963303464,-3.52371520091918e-07,1.02742044472825e-06,2.813946449985e-07,4.67989904641387e-08,1.50408982144125e-07,11.9999995147156 +0.076,-1.0230542654352e-09,3.11435628848333e-09,8.37770347018874e-10,1.51452154636966e-10,4.48892277515878e-10,0.0365039985326273,-2.63749079542665e-08,7.9983231409536e-08,2.14226165019121e-08,3.97804315530048e-09,1.15192170038747e-08,0.935999962332609,-3.52443714404077e-07,1.01905680074947e-06,2.81588771397482e-07,4.45558303793747e-08,1.49955568795591e-07,11.9079449291513 +0.078,-1.07651411070976e-09,3.27637649996659e-09,8.81183015444265e-10,1.59498071000685e-10,4.72232853515608e-10,0.0383999984563215,-2.70773198784643e-08,8.2005167413579e-08,2.19838572259462e-08,4.0645655244309e-09,1.18175512778262e-08,0.959631743020069,-2.4149424322252e-07,6.72966782126745e-07,1.9086365517576e-07,2.59517884612648e-08,1.0080369698684e-07,7.85691937003546 +0.08,-1.13136354494905e-09,3.44237695813765e-09,9.25705775922658e-10,1.6771041673469e-10,4.96162482627183e-10,0.0403425255047076,-2.73408849271565e-08,8.2675098538043e-08,2.21860711226151e-08,4.08185030914554e-09,1.19224317918221e-08,0.96742763981275,3.27850539685176e-08,-1.69350644618756e-07,-3.34700800061482e-08,-1.67009418447494e-08,-1.99276359302836e-08,-2.00999677730162 +0.082,-1.18587765041839e-09,3.60707689411877e-09,9.69927299934725e-10,1.75825472237268e-10,5.19922580682897e-10,0.0422697090155725,-2.69461796625903e-08,8.1327764835104e-08,2.18499769059216e-08,3.99776175705191e-09,1.17378407341051e-08,0.951591755910862,2.53725846214268e-07,-8.48002440836933e-07,-2.14062545900867e-07,-5.11701141528431e-08,-1.17154116269225e-07,-9.95897073629081 +0.084,-1.23914826359942e-09,3.76768801747807e-09,1.01310568354634e-09,1.83701463762898e-10,5.43113845563603e-10,0.044148892528351,-2.63259815422995e-08,7.92830887746953e-08,2.13298209390117e-08,3.87716985253416e-09,1.14538153267452e-08,0.927591756867587,3.09416094091871e-07,-1.02241023806897e-06,-2.59490887978534e-07,-6.07259468404752e-08,-1.41835978725848e-07,-11.9999995217011 +0.086,-1.29118157658759e-09,3.92420924921755e-09,1.05524658369077e-09,1.91334151647404e-10,5.65737841989877e-10,0.0459800760430428,-2.57085152862228e-08,7.72381238828281e-08,2.08120133540074e-08,3.75485796969001e-09,1.11704968192017e-08,0.903591757824058,3.08235316610873e-07,-1.02244395675654e-06,-2.58556197285636e-07,-6.13689871489767e-08,-1.41522427457565e-07,-11.9999995218443 +0.088,-1.34198232474431e-09,4.07664051300938e-09,1.09635373696237e-09,1.98720895641658e-10,5.8779583284041e-10,0.0477632595596473,-2.5093040275856e-08,7.51933129476692e-08,2.02955961498691e-08,3.63169390393826e-09,1.08877256169149e-08,0.87959175878021,-2.0945801354217e-05,-1.34541190037822e-05,1.77001498852768e-05,-6.15735760989312e-08,-1.41322934257847e-07,-11.999999522005 +0.09,-1.39155373769101e-09,4.22498250100822e-09,1.13642896829025e-09,2.05860927263157e-10,6.09288744457537e-10,0.0494984430781636,-1.09491720703091e-07,2.34216478676996e-08,9.16126128951144e-08,3.50856366529428e-09,1.06052050821703e-08,0.855591759736038,3.06991872244346e-07,-1.02185274131201e-06,-2.58093080327693e-07,-6.13420989351052e-08,-1.4124357065882e-07,-11.9999995221572 +0.092,-1.77994920755667e-09,4.17032710448018e-09,1.46280418854283e-09,2.12755150302835e-10,6.30216653169091e-10,0.0511856265985914,-2.38650727868786e-08,7.11059019824211e-08,1.92632238285584e-08,3.38632550819784e-09,1.03227513342796e-08,0.831591760691581,-0.00301573047911392,-0.00190687873206484,0.00249430269049898,-6.07651949591224e-08,-1.41727775349043e-07,-11.9999995222917 +0.094,-1.48701402883852e-09,4.50940610893791e-09,1.21348186360448e-09,2.19406229295949e-10,6.50579749794655e-10,0.05282481012093,-1.21724136371588e-05,-7.60409328039168e-06,1.00688233748911e-05,3.26550288545779e-09,1.00382939807742e-08,0.807591761646871,3.07198765123889e-07,-1.02050995692132e-06,-2.59454241945123e-07,-5.9699749484221e-08,-1.4142723450683e-07,-11.9999995223498 +0.096,-5.04696037561918e-08,-2.62460460170866e-08,4.17380976881071e-08,2.25817161844666e-10,6.70369829092188e-10,0.0544159936451789,-2.2636277726383e-08,6.70238621547358e-08,1.82254068607779e-08,3.14752651026095e-09,9.75704239625229e-09,0.783591762602182,-0.0033403407024722,-0.00225758982265889,0.00277429917775774,-5.84424002247896e-08,-1.42142157419367e-07,-11.999999522466 +0.098,-1.57755913974406e-09,4.77750155755685e-09,1.28638349104759e-09,2.31996335336992e-10,6.89607919379664e-10,0.0559591771713387,-2.55337764470476e-05,-1.66344525710273e-05,2.1166020085922e-05,3.03173328455863e-09,9.46972535109668e-09,0.759591763557007,3.08635116161998e-07,-1.01864328604095e-06,-2.62283684354658e-07,-5.67962560663047e-08,-1.41963697741776e-07,-11.9999995225094 +0.1,-1.52604709544382e-07,-9.27838563011957e-08,1.26402178031795e-07,2.379440949829e-10,7.08248730496575e-10,0.0574543606994069,-2.1401737261735e-08,6.2949289010572e-08,1.71762721233592e-08,2.92034148599573e-09,9.18918760528519e-09,0.735591764512145,-0.00105286561023418,-0.000521336835897569,0.00110396968238009,-5.50610989094589e-08,-1.42569549915761e-07,-11.9999995225211 +0.102,-1.663166088791e-09,5.02929871359914e-09,1.35508857954103e-09,2.43677701280975e-10,7.26364669800805e-10,0.0589015442293873,-2.97452388879843e-05,-1.87197999146175e-05,2.55818988154424e-05,2.8114888889208e-09,8.89944715143364e-09,0.711591765466923,3.10979513624599e-07,-1.01657137568928e-06,-2.6611276116721e-07,-5.31404347608986e-08,-1.42834962607578e-07,-11.9999995225096 +0.104,-2.7158566509632e-07,-1.67663055959666e-07,2.28729773293565e-07,2.49190050538584e-10,7.43846519102309e-10,0.0603007277612746,-2.01578192072366e-08,5.88830035078149e-08,1.61118210786904e-08,2.70777974695214e-09,8.61784775485488e-09,0.687591766422106,-0.000140175199030693,0.000407677846667682,0.000528258317297772,-5.11915813558562e-08,-1.43365354310358e-07,-11.9999995224403 +0.106,-1.74379736561994e-09,5.2648307276304e-09,1.41953586385579e-09,2.54508820268784e-10,7.60836060820225e-10,0.0616519112950757,-3.03059396841071e-05,-1.70890885279468e-05,2.76949320846335e-05,2.60672256349737e-09,8.32598573419221e-09,0.663591767377162,3.13873357643217e-07,-1.01459357408634e-06,-2.70385168248137e-07,-4.92328617110484e-08,-1.43792963647201e-07,-11.9999995224571 +0.108,-3.92809423832748e-07,-2.36019410071453e-07,3.39509501632099e-07,2.59616940792573e-10,7.77150462039078e-10,0.0629550948307833,-1.89023257766638e-08,5.48246292114695e-08,1.50302804056979e-08,2.51084830010795e-09,8.04267590026608e-09,0.639591768332278,0.000262629269948246,0.000857851068175957,0.000242361590865856,-4.73683592350248e-08,-1.44362820309059e-07,-11.9999995223287 +0.11,-1.8194066687266e-09,5.48412924447628e-09,1.47965698547858e-09,2.64552213469216e-10,7.93006764421289e-10,0.0642102783684048,-2.92554226043141e-05,-1.3657684255243e-05,2.86643784480969e-05,2.41724912655727e-09,7.74853445295597e-09,0.615591769287847,3.16970245623632e-07,-1.01297681180668e-06,-2.74545360404165e-07,-4.56105422527719e-08,-1.44828593562352e-07,-11.9999995222978 +0.112,-5.09831114250004e-07,-2.90650147092425e-07,4.54167015424486e-07,2.69285937298802e-10,8.08144599850902e-10,0.0654174619079347,-1.76344447941692e-08,5.07727219642428e-08,1.39320989640812e-08,2.32840613109686e-09,7.46336152601667e-09,0.591591770243087,0.000391755647941113,0.000968615168324761,7.19279326854768e-05,-4.40401838261439e-08,-1.45309111965197e-07,-11.9999995220749 +0.114,-1.88994444790327e-09,5.68722013233325e-09,1.53538538133491e-09,2.73865837993603e-10,8.22860210525356e-10,0.0665766454493772,-2.76884000125496e-05,-9.78322358194394e-06,2.89520901788388e-05,2.2410883912527e-09,7.16729800509518e-09,0.567591771199547,3.38000948844202e-07,-1.01687712070197e-06,-2.81031057799974e-07,-4.25037609275147e-08,-1.48254238746537e-07,-11.9999995188422 +0.116,-6.20584714300203e-07,-3.29783041420201e-07,5.69975376139842e-07,2.78250290863813e-10,8.36813791871283e-10,0.0676878289927328,-1.62824409987924e-08,4.67052134814349e-08,1.28079747328813e-08,2.1583910873868e-09,6.87034457103052e-09,0.543591772167718,-0.0174423291793031,-0.00724774173272923,0.0169112817804312,-4.17040534050875e-08,-1.52011216114628e-07,-11.9999995180507 +0.118,-1.95507421189844e-09,5.87404098625899e-09,1.58661728026643e-09,2.8249940234315e-10,8.50341588809478e-10,0.068751012538048,-9.74577167297622e-05,-3.87741905128609e-05,9.65972173005636e-05,2.07427217763235e-09,6.55925314063667e-09,0.519591773127345,3.04442262415496e-07,-1.00732963637103e-06,-2.7881473171897e-07,-4.07919141173757e-08,-1.44375830735117e-07,-11.9999995246514 +0.12,-1.01041558121925e-06,-4.84879803471644e-07,9.56364245342095e-07,2.86547379574342e-10,8.63050804433829e-10,0.0697661960852422,-1.50646719491305e-08,4.26758949359508e-08,1.16927158060054e-08,1.9952234309173e-09,6.29284124809006e-09,0.495591774069112,0.0392973828155479,0.0185120473737526,-0.0379182498262602,-3.96605491503906e-08,-1.37097364710798e-07,-11.9999995258943 +0.122,-2.01533289969497e-09,6.04474456600279e-09,1.63338814349046e-09,2.9048029606682e-10,8.75512953801838e-10,0.0707333796343245,5.97318145324288e-05,3.52739989821493e-05,-5.50757820044767e-05,1.91562998103078e-09,6.01086368179348e-09,0.471591775023767,3.19806626927084e-07,-1.01094501693547e-06,-2.80861597000424e-07,-4.03492343703532e-08,-1.46274919260453e-07,-11.9999995221195 +0.124,-7.71488323089535e-07,-3.43783807543047e-07,7.36061117324188e-07,2.94209899498465e-10,8.87094259161003e-10,0.0716525631853373,-1.37854454414221e-08,3.86321148682089e-08,1.05692694180037e-08,1.83382649343588e-09,5.70774157104825e-09,0.447591775980634,0.011824841895453,0.00380686038703621,-0.0106063647067585,-3.974836952636e-08,-1.47914666626114e-07,-11.9999995178768 +0.126,-2.07047468146065e-09,6.19927302547563e-09,1.67566522116247e-09,2.97815602040563e-10,8.98343920086031e-10,0.072523746738247,0.000107031182114241,5.05014405302942e-05,-9.75012408315107e-05,1.75663650292534e-09,5.41920501528903e-09,0.42359177695226,3.4959451240997e-07,-1.01940569700865e-06,-2.8647299376433e-07,-4.00311294529442e-08,-1.50646856100778e-07,-11.9999995167492 +0.128,-3.43363594632572e-07,-1.4177804542187e-07,3.46056153998145e-07,3.01236445510167e-10,9.08771079222159e-10,0.0733469302931463,-1.23870673917822e-08,3.45544920801743e-08,9.4233774429464e-09,1.67370197562411e-09,5.10515414664514e-09,0.399591777913637,-0.0950437079537651,-0.0380853285657754,0.0905252879748003,-4.31792188809731e-08,-1.61086421979206e-07,-11.9999995223758 +0.13,-2.12002295102778e-09,6.33749099379632e-09,1.71335873093426e-09,3.0451040994306e-10,9.18764536672612e-10,0.0741221138499016,-0.00027314364970082,-0.000101839873732808,0.000264599911067691,1.58391962740145e-09,4.7748593273722e-09,0.375591778862757,3.02500700270075e-07,-1.00804932977316e-06,-2.77774222894044e-07,-4.19462641704226e-08,-1.4407051940335e-07,-11.9999995247723 +0.132,-1.43593819343585e-06,-5.49137540353101e-07,1.40445579826891e-06,3.07572124019773e-10,9.27870516531648e-10,0.0748492974085974,-1.11770645907019e-08,3.05222947610817e-08,8.31228055137023e-09,1.50591691894242e-09,4.52887206903174e-09,0.351591779814548,0.135914803351869,0.0519308628117893,-0.131332499309013,-3.92450828778922e-08,-1.26739330835734e-07,-11.9999995192741 +0.134,-2.16473120939059e-09,6.45958017284065e-09,1.74660785313974e-09,3.10534077618829e-10,9.36880024948739e-10,0.0755284809691598,0.000270515563706658,0.00010588357751435,-0.000260730086168361,1.42693929588988e-09,4.26790200402926e-09,0.32759178078566,3.54344239497303e-07,-1.02360524570355e-06,-2.84354679559728e-07,-4.33804468041865e-08,-1.50973851475999e-07,-11.9999995154031 +0.136,-3.53875938609218e-07,-1.25603230295701e-07,3.61535453595463e-07,3.13279881203332e-10,9.44942124547765e-10,0.07615966453174,-9.75968763271272e-09,2.64278737782675e-08,7.17486183313131e-09,1.33239513172567e-09,3.92497666312774e-09,0.303591781752935,-0.156497379206848,-0.0579432301367129,0.151365832339999,-4.87576558988455e-08,-1.71604917775791e-07,-11.9999995200964 +0.138,-2.20376995992144e-09,6.56529166795372e-09,1.77530730047226e-09,3.15863658145732e-10,9.5257993160125e-10,0.0767428480961715,-0.000355473953120733,-0.000125889343032502,0.000344733243191636,1.2319086722945e-09,3.5814823329261e-09,0.279591782705275,3.03536601235776e-07,-1.01195592704106e-06,-2.73909042149134e-07,-4.643811377103e-08,-1.43679772940386e-07,-11.9999995239423 +0.14,-1.77577175109215e-06,-6.2916060242571e-07,1.74046842636201e-06,3.1820751589251e-10,9.5926805387947e-10,0.0772780316625611,-8.54554122776962e-09,2.23800500701032e-08,6.07922566453478e-09,1.14664267664155e-09,3.3502575713662e-09,0.255591783657166,0.12897035803612,0.0455048524776978,-0.125683086990525,-4.44121735915237e-08,-1.24409597207497e-07,-11.9999995222978 +0.142,-2.23795212483252e-09,6.65481186823413e-09,1.7996242031304e-09,3.20450228852298e-10,9.65980961886714e-10,0.0777652152308002,0.000160407479023747,5.6130066878289e-05,-0.000157999104770465,1.05425997792841e-09,3.08384394409611e-09,0.231591784616083,3.33495329875991e-07,-1.02150861554237e-06,-2.75702854643502e-07,-4.87578727392784e-08,-1.47253736981762e-07,-11.9999995185174 +0.144,-1.13414183499716e-06,-4.04640334912554e-07,1.10847200728015e-06,3.22424555804224e-10,9.71603429655854e-10,0.0782043988010254,-7.21155990826565e-09,1.82940156079338e-08,4.97641424596077e-09,9.51611185684437e-10,2.76124262343915e-09,0.207591785583096,-0.0631163777990159,-0.0228979761102666,0.0618926209670352,-5.13994229123226e-08,-1.58343390482814e-07,-11.9999995167082 +0.146,-2.26679836446558e-09,6.72798793066587e-09,1.81952986011424e-09,3.24256673595036e-10,9.77025932380471e-10,0.0785955823731325,-9.20580321723147e-05,-3.54618375627768e-05,8.9571379097674e-05,8.48662286279117e-10,2.45047038216485e-09,0.183591786549251,3.37061677397138e-07,-1.0242401544958e-06,-2.74549588792649e-07,-5.08323851761158e-08,-1.47542134759654e-07,-11.9999995175893 +0.148,-1.50237396368642e-06,-5.4648768516366e-07,1.46675752367084e-06,3.2581920494934e-10,9.81405311184513e-10,0.0789387659472224,-5.86331319867711e-09,1.41970549899506e-08,3.87821589079018e-09,7.48281644979975e-10,2.17107408440054e-09,0.15959178751274,0.0285742889921823,0.0101175799691392,-0.0282262536544909,-5.10912926549048e-08,-1.42630265237424e-07,-11.9999995178528 +0.15,-2.29025161726029e-09,6.78477615062567e-09,1.8350427236774e-09,3.27249800174956e-10,9.85710228718073e-10,0.0792339495231835,2.22391237964144e-05,5.00848231377998e-06,-2.33336355202895e-05,6.44297115659497e-10,1.87994932121516e-09,0.135591788477839,3.3867841257168e-07,-1.02656511763443e-06,-2.73260363989336e-07,-5.27301726588324e-08,-1.47608487932604e-07,-11.9999995169192 +0.152,-1.41341746850076e-06,-5.2645375590854e-07,1.37342298158968e-06,3.28396393411978e-10,9.88925108469374e-10,0.0794811331011338,-4.50859954839039e-09,1.00907945194129e-08,2.78517443483284e-09,5.37360954344645e-10,1.58064013267012e-09,0.111591789445062,-0.0130385955186688,-0.00532855759234444,0.0122507262460521,-5.38334567895536e-08,-1.49799877363632e-07,-11.9999995164032 +0.154,-2.30828601545385e-09,6.82513932870332e-09,1.84618342141674e-09,3.29399243992334e-10,9.92032789248753e-10,0.0796803166809638,-2.99152582782609e-05,-1.63057480555978e-05,2.56692694639189e-05,4.28963288501282e-10,1.28074981176063e-09,0.0875917904122266,3.39909063352614e-07,-1.02850453848058e-06,-2.72337491100116e-07,-5.41511280260919e-08,-1.47677443190774e-07,-11.9999995163529 +0.156,-1.53307850161381e-06,-5.91676748130932e-07,1.47610005944536e-06,3.30112246565983e-10,9.94048107716416e-10,0.0798315002627827,-3.14896329497993e-09,5.97677636549054e-09,1.69582447043237e-09,3.20756442240277e-10,9.8993035990702e-10,0.063591791379651,0.00675593273590846,0.00230754691418234,-0.00687190316727304,-5.44596919643813e-08,-1.46557245506162e-07,-11.9999995162748 +0.158,-2.32088186863377e-09,6.84904643416528e-09,1.85296671929847e-09,3.30682269761295e-10,9.95992510688382e-10,0.0799346838464824,-2.89152733462701e-06,-7.07556039886841e-06,-1.81834320517327e-06,2.11124520643757e-10,6.94520829735978e-10,0.0395917923471274,3.36210443166451e-07,-1.01428219122235e-06,-2.67751099070068e-07,-5.41849551338735e-08,-1.45560646869214e-07,-11.8158903453114 +0.16,-1.54464461095231e-06,-6.19978989726405e-07,1.46882668662467e-06,3.30956744648558e-10,9.9682619103536e-10,0.0799898674321712,-1.80412152231413e-09,1.91964760060115e-09,6.24820074152099e-10,1.04016621704783e-10,4.07687772430165e-10,0.0163282299984052,-0.00228006595215054,-0.00100165202521207,0.00203166692996047,-4.37982983214623e-08,-1.14271873213889e-07,-9.26486472640173 +0.162,-2.32809835472303e-09,6.85672502456769e-09,1.85546599959507e-09,3.31098336248115e-10,9.97623261778102e-10,0.079999996766476,-1.20117911432292e-05,-1.10821684997167e-05,6.30832451466861e-06,3.59313273579076e-11,2.37433336880421e-10,0.00253233344152045,1.38404018064017e-07,-3.59336041824698e-07,-9.27859135010921e-08,-2.20045336118968e-08,-5.28843462077599e-08,-4.08205756543579 +0.164,-1.59269177552523e-06,-6.64307663725272e-07,1.49405998468334e-06,3.3110046995799e-10,9.97775924382882e-10,0.0799999967659373,-1.25050545005806e-09,4.82303433302355e-10,2.5367642014773e-10,1.59984872571961e-11,1.96150387599125e-10,-2.63337962547183e-10,-0.0322301149741023,-0.0123561200876011,0.0301269142723159,-8.15038141144252e-09,-1.58315201226333e-08,-0.633083425445254 +0.166,-2.33310037652326e-09,6.8586542383009e-09,1.85648070527566e-09,3.31162330197143e-10,9.98407863328499e-10,0.0799999967654226,-0.000140932251039638,-6.05066488501212e-05,0.000126815981603932,3.32980171213748e-12,1.74107256389888e-10,-2.602605631008e-10,-3.13129242587167e-08,3.93240127960492e-09,8.26964365041592e-09,-4.91512212874578e-09,4.50074005842182e-09,-4.64212002171393e-09 +0.168,-2.15642077968379e-06,-9.06334259125757e-07,2.00132391109907e-06,3.31113789164839e-10,9.98472353408442e-10,0.0799999967648962,-1.37575714709293e-09,4.98033038420775e-10,2.86754994749394e-10,-3.66200125778704e-12,2.14153347832813e-10,-2.81906442634039e-10,0.0771802137093451,0.0309834195307435,-0.0727285542557109,-3.11491284155085e-09,1.86543488989166e-08,-7.24854204436907e-09 +0.17,-2.33860340511163e-09,6.86064637045458e-09,1.85762772525466e-09,3.31147682192112e-10,9.9926447671983e-10,0.079999996764295,0.000167788603797742,6.34270292728528e-05,-0.000164098235418911,-9.12984965406593e-12,2.48724651985554e-10,-2.89254731278276e-10,1.45264930726668e-08,-7.46494879799719e-09,2.25741734333207e-09,-4.22231694052754e-09,-1.26504709485609e-09,3.19015647232135e-09 +0.172,-1.48526636449282e-06,-6.52626142034346e-07,1.34493096942342e-06,3.31077269766222e-10,9.99467252016384e-10,0.0799999967637392,-1.31765117480226e-09,4.68173243228786e-10,2.95784664122722e-10,-2.05512690198972e-11,2.09093159453388e-10,-2.69145816744753e-10,-0.0982521474491315,-0.0409924057211652,0.0914350103718233,-5.61421568956448e-09,-1.89275678463826e-08,5.96484667214578e-09 +0.174,-2.34387400981084e-09,6.8625190634275e-09,1.85881086391115e-09,3.31065477116033e-10,1.00010084935764e-09,0.0799999967632184,-0.000225219985998784,-0.000100542593611808,0.000201641806068382,-3.15867124123239e-11,1.73014380600024e-10,-2.65395344589693e-10,-2.86911878803779e-08,5.32733579472566e-09,6.55172530811325e-09,-2.91737120572407e-09,4.08657482853278e-09,-4.64472210692843e-09 +0.176,-2.38614630848795e-06,-1.05479651648158e-06,2.15149819369695e-06,3.30950922916573e-10,1.00015930953878e-09,0.0799999967626776,-1.43241592632377e-09,4.89482586407689e-10,3.21991565355175e-10,-3.22207538427934e-11,2.25439458767519e-10,-2.87724705172467e-10,0.112742629414265,0.0490177913196458,-0.102321743836632,3.03576608296492e-11,2.34530277143373e-08,-7.31446153645579e-09 +0.178,-2.34960367351614e-09,6.86447699377313e-09,1.86009883017257e-09,3.30936594100661e-10,1.00100260719271e-09,0.0799999967620675,0.000225750531658271,9.55285716667738e-05,-0.000207645169278143,-3.14652817690053e-11,2.66826491457372e-10,-2.94653190735516e-10,-6.64133461766609e-09,1.11672823765922e-09,3.65885707148626e-09,-1.85637095972962e-09,1.44502465548828e-09,-1.17093834628384e-09 +0.18,-1.48314418185486e-06,-6.72682229814481e-07,1.32091751658438e-06,3.30825061789497e-10,1.00122661550461e-09,0.079999996761499,-1.45898126479443e-09,4.93949499358326e-10,3.3662699364112e-10,-3.96462376817119e-11,2.31219557389472e-10,-2.92408458557602e-10,-0.0806981120860015,-0.0355790467001376,0.0741065966437022,-2.86793158665865e-09,-1.27263651006348e-08,7.34655392076177e-10 +0.182,-2.35543959857532e-09,6.86645279177056e-09,1.86144533814714e-09,3.30778009149935e-10,1.00192748542227e-09,0.0799999967608979,-9.7041916685735e-05,-4.67876151337767e-05,8.87812172966663e-05,-4.29370081156399e-11,2.15921031054833e-10,-2.91714569167212e-10,1.93782164793765e-09,5.0935818063369e-10,6.73072708679001e-10,-1.30537941567253e-10,5.50774703622636e-11,-4.42354486374085e-11 +0.184,-1.8713118485978e-06,-8.59832690349588e-07,1.67604238577104e-06,3.30653313757034e-10,1.00209029962883e-09,0.0799999967603322,-1.45122997820268e-09,4.9598693208086e-10,3.39319284475836e-10,-4.01683894479809e-11,2.31439867270921e-10,-2.92585400352152e-10,0.0379876246311516,0.0182739774662148,-0.0334862847734939,1.458251921993e-09,5.79527745236951e-09,-2.55871712706579e-10 +0.186,-2.36124451848813e-09,6.86843673949888e-09,1.86280261528504e-09,3.30617335592143e-10,1.00285324489136e-09,0.0799999967597275,5.49085818388715e-05,2.63082947310825e-05,-4.51639217973094e-05,-3.71040004276679e-11,2.39102140864311e-10,-2.92738056018038e-10,3.58494158837763e-09,9.30245463992562e-10,-1.08550321509249e-09,1.20129600711394e-09,-4.47124975933022e-10,1.33573707650214e-10 +0.188,-1.65167752124232e-06,-7.54599511425258e-07,1.4953866985818e-06,3.30504897755324e-10,1.00304670819229e-09,0.0799999967591612,-1.43689021184917e-09,4.99707913936831e-10,3.34977271615466e-10,-3.53632054195252e-11,2.29651367367189e-10,-2.92051105521551e-10,-0.0184163517723257,-0.00821451407633302,0.016599236899611,1.25377139226223e-09,-3.55358104053849e-09,3.66026653431106e-10 +0.19,-2.36699207933552e-09,6.87043557115463e-09,1.8641425243715e-09,3.30475882770465e-10,1.00377185036082e-09,0.0799999967585593,-1.87568252504313e-05,-6.54976157424963e-06,2.12330258011345e-05,-3.2088914858619e-11,2.24887816702157e-10,-2.91273949404313e-10,3.46364647033081e-09,1.25507243486922e-09,-2.16450121715006e-09,2.05846624468097e-09,-6.39679281766447e-10,1.17961196366423e-10 +0.192,-1.72670482224404e-06,-7.80798557722256e-07,1.58031880178634e-06,3.30376542095889e-10,1.0039462594591e-09,0.0799999967579961,-1.42303562596785e-09,5.04728203676307e-10,3.26319266746866e-10,-2.71293404408013e-11,2.27092650240124e-10,-2.91579260736085e-10,0.00862921119122402,0.00404957671736039,-0.00810324699181129,2.54852562664442e-09,7.4940054162198e-10,-2.60208521396521e-12 +0.194,-2.37268422183939e-09,6.87245448396934e-09,1.86544780143849e-09,3.30367365408701e-10,1.00468022096178e-09,0.079999996757393,1.57600195144648e-05,9.64854529519193e-06,-1.11799621661107e-05,-2.18948123520413e-11,2.27885418868645e-10,-2.91284357745169e-10,2.73766469563452e-09,1.39710291946482e-09,-2.79268795588815e-09,2.54809194577543e-09,-6.9779251821167e-10,6.59194920871186e-11 +0.196,-1.66366474418618e-06,-7.42204376541489e-07,1.5355989531219e-06,3.30288962846481e-10,1.00485780113457e-09,0.079999996756831,-1.41208496718531e-09,5.10316615354167e-10,3.15148514923313e-10,-1.69369726576995e-11,2.24301480167277e-10,-2.91315582767737e-10,-0.00431479665947867,-0.0019273668013138,0.00369915816435337,2.58126853225348e-09,-1.40078920685127e-09,1.11022302462516e-10 +0.198,-2.37833256170814e-09,6.87449575043075e-09,1.86670839549818e-09,3.30299617518071e-10,1.00557742688245e-09,0.0799999967562278,-1.49916712344992e-06,1.93907808993671e-06,3.61667049130279e-06,-1.15697382230273e-11,2.2228226204124e-10,-2.90840268535319e-10,2.03361090987675e-09,1.39254927034038e-09,-3.09550562266336e-09,2.74129677291234e-09,-7.14706072102444e-10,3.38271077815477e-11 +0.2,-1.66966141267998e-06,-7.34448064181742e-07,1.55006563508711e-06,3.30242683893589e-10,1.00574693018274e-09,0.0799999967556676,-1.4039505235458e-09,5.15886812435528e-10,3.0276649243266e-10,-5.97178556605015e-12,2.21442655878867e-10,-2.91180274336611e-10,0.0018568055626042,0.000826356865530826,-0.0019506190750097,2.77967752981833e-09,-3.664603343001e-10,-2.86229373536173e-11 +0.202,-2.38394836380232e-09,6.8765592976805e-09,1.86791946146792e-09,3.30275730375806e-10,1.00646319750597e-09,0.079999996755063,5.92805512696688e-06,5.24450555206001e-06,-4.18580580873601e-06,-4.51028103753969e-13,2.2081642070404e-10,-2.90954760284734e-10,1.52013276098761e-09,1.23208734881253e-09,-3.10981709134017e-09,2.66345105692789e-09,-6.93455709521728e-10,3.20923843055709e-11 +0.204,-1.64594919217212e-06,-7.13470041973502e-07,1.53332241185217e-06,3.30240879781174e-10,1.00663019586555e-09,0.0799999967545038,-1.39786999250185e-09,5.20815161830778e-10,2.90327224067299e-10,4.6820186616614e-12,2.1866883304078e-10,-2.91051904799388e-10,-0.00110085946838944,-0.00052673123805344,0.000844792109096908,2.51448167842838e-09,-8.22692608481994e-10,3.29597460435593e-11 +0.206,-2.38953984377233e-09,6.87864255832782e-09,1.86908077036418e-09,3.30294458450453e-10,1.00733787283813e-09,0.0799999967538988,1.52461725340912e-06,3.13758059984625e-06,-8.06637372348373e-07,9.60689860995955e-12,2.17525650270112e-10,-2.90822921300559e-10,1.14104147137563e-09,1.02955838299314e-09,-2.86467898014071e-09,2.36442809775641e-09,-6.21464685268309e-10,7.80625564139156e-12 +0.208,-1.63985072315848e-06,-7.00919719574117e-07,1.53009586236277e-06,3.30279307375614e-10,1.00750029846663e-09,0.0799999967533405,-1.39330582661635e-09,5.24933395362751e-10,2.78868508146736e-10,1.4139731052687e-11,2.16182974299707e-10,-2.91020679776823e-10,0.000281314020553686,3.03076422465746e-05,-0.000401663938871469,2.15279183368726e-09,-5.33427468862503e-10,-1.73472347648088e-12 +0.21,-2.39511306707879e-09,6.88074229190927e-09,1.87019624439677e-09,3.30351017374664e-10,1.00820260473533e-09,0.0799999967527348,2.64987333562385e-06,3.25881116883255e-06,-2.41329312783424e-06,1.82180659447085e-11,2.15391940394662e-10,-2.90829860194465e-10,7.98948580907003e-10,7.46147935103598e-10,-2.37190909274704e-09,1.88607809925577e-09,-5.28223298435316e-10,1.4745149546307e-11 +0.212,-1.62925122981598e-06,-6.87884474898787e-07,1.52044268985144e-06,3.30352179639393e-10,1.00836186622821e-09,0.0799999967521772,-1.39011003229272e-09,5.27917987103165e-10,2.69380871775748e-10,2.16840434497101e-11,2.14070081105966e-10,-2.90961699178638e-10,0.0576866737424198,0.0239706457088109,-0.0527098314054112,3.22615198444783e-09,5.51295120665391e-09,3.73139019682661e-09 +0.214,-2.40067350720796e-09,6.88285396385768e-09,1.87127376788387e-09,3.30437753548463e-10,1.00905888505975e-09,0.0799999967515709,0.000233396568305303,9.91413940040763e-05,-0.000213252618749479,3.11226738824999e-11,2.37443745221277e-10,-2.75904299407159e-10,2.78752715354712e-08,-7.4692856066871e-09,-6.86961338508539e-09,1.72236357121047e-09,-4.3602274568677e-09,5.0411064211886e-09 +0.216,-6.95664956594771e-07,-2.91318898882481e-07,6.67432214853519e-07,3.30476670334923e-10,1.0093116412091e-09,0.0799999967510736,-1.27860894615084e-09,4.98040844676417e-10,2.41902418235407e-10,2.8573497734552e-11,1.96629171278495e-10,-2.70797273493883e-10,-0.158476788963475,-0.0655601420736141,0.144083612781402,-2.85470432015433e-09,-2.30379951227099e-08,-2.04350425470068e-09 +0.218,-2.40578794299257e-09,6.88484612723639e-09,1.87224137755682e-09,3.30552047539401e-10,1.00984540174487e-09,0.0799999967504877,-0.000400510587548596,-0.00016309917429038,0.000363081832376131,1.97038566018825e-11,1.45291764730437e-10,-2.84078316425962e-10,-3.4053434985054e-08,8.77921867148409e-09,4.38624830900735e-09,8.3917248150378e-11,4.34938543514285e-09,-5.89025356267924e-09 +0.22,-2.29770730678916e-06,-9.43715596044004e-07,2.11975954435804e-06,3.3055548576133e-10,1.00989280826802e-09,0.0799999967499373,-1.41482268609105e-09,5.33157719362353e-10,2.59447411471436e-10,2.89091667271535e-11,2.14026713019066e-10,-2.943582877446e-10,0.155862101372062,0.0631368810637914,-0.142671440374288,3.50067197452119e-09,2.67065015935319e-08,-3.78690134805737e-09 +0.222,-2.41144723373693e-09,6.88697875811384e-09,1.8732791672027e-09,3.30667684206309e-10,1.01070150859695e-09,0.0799999967493103,0.000222937817939651,8.94483499647852e-05,-0.00020760392912102,3.37065444999673e-11,2.52117771104565e-10,-2.99225921818191e-10,-1.51086283241286e-09,4.27175655959288e-10,8.5164080648735e-10,-3.22875406966183e-10,3.43908929112402e-10,-3.33934269125535e-10 +0.224,-1.40595603503055e-06,-5.85922196184863e-07,1.28934382787396e-06,3.3069031193933e-10,1.01090127935244e-09,0.0799999967487404,-1.42086613742071e-09,5.3486642198619e-10,2.62853974697385e-10,2.76176650992887e-11,2.15402348735516e-10,-2.95694024821102e-10,-0.0800953379610085,-0.0330095947171423,0.0744305569093253,-2.30935062739412e-09,-1.3165683820926e-08,1.24986826444129e-09 +0.226,-2.41713069828661e-09,6.88911822380178e-09,1.87433058310149e-09,3.30778154866707e-10,1.01156311799189e-09,0.0799999967481275,-9.74435339043833e-05,-4.25900289037842e-05,9.01182985162812e-05,2.44691419903908e-11,1.99455035820861e-10,-2.94226448760426e-10,1.31061069115479e-09,-2.55871712706579e-11,6.02491147250194e-10,-4.6815849807924e-10,2.16840434497101e-12,2.77555756156289e-11 +0.228,-1.79573017064808e-06,-7.56282311799999e-07,1.64981702193909e-06,3.30788188507292e-10,1.01169909949572e-09,0.0799999967475635,-1.41562369465609e-09,5.34764073301108e-10,2.65263939286386e-10,2.57450311069718e-11,2.15411022352896e-10,-2.9558300251864e-10,0.0369132170691826,0.0157937791727281,-0.0337122698077819,2.79941000935757e-10,5.99910746079678e-09,-4.87457296749482e-10 +0.23,-2.42279319306524e-09,6.89125728009499e-09,1.87539163885864e-09,3.30881134991134e-10,1.0124247620813e-09,0.0799999967469452,5.02093343723473e-05,2.05850877871283e-05,-4.47307807148467e-05,2.55889059941339e-11,2.23451465664048e-10,-2.96176277947424e-10,1.70913630470615e-09,-2.87096735274161e-10,7.91033905045423e-10,-7.41811126414581e-10,-3.03576608295941e-11,1.36175792864179e-10 +0.232,-1.5948928331587e-06,-6.73941960651486e-07,1.4708938990797e-06,3.30890544131268e-10,1.01259290535838e-09,0.0799999967463788,-1.40878714943726e-09,5.33615686360011e-10,2.68428074906568e-10,2.27777866013134e-11,2.15289591709577e-10,-2.95038299347183e-10,-0.0180636017041023,-0.00780539678442263,0.0165415836056882,-1.3160045969629e-09,-2.93688684482873e-09,4.10262102068515e-10 +0.234,-2.42842834166299e-09,6.89339174284043e-09,1.87646535115826e-09,3.3097224613754e-10,1.01328592044814e-09,0.079999996745765,-2.20450724440621e-05,-1.06364993505623e-05,2.14355537079061e-05,2.03248876062822e-11,2.11703918284733e-10,-2.9453522953915e-10,1.07140858685017e-09,-4.52762827229946e-10,1.11087354592865e-09,-1.03042574473022e-09,8.41340885848751e-11,9.45424294407359e-11 +0.236,-1.68307312293494e-06,-7.16487958053735e-07,1.55663611391132e-06,3.30971843681693e-10,1.01343972103152e-09,0.0799999967452006,-1.40450151508986e-09,5.31804635051091e-10,2.72871569090283e-10,1.86560836223926e-11,2.15626128063917e-10,-2.9466012962942e-10,0.00827025950262024,0.00342856538776068,-0.00783465736438425,-9.35883315289457e-10,1.51528095626611e-09,-7.63278329434964e-11 +0.238,-2.43404634772335e-09,6.89551896138063e-09,1.87755683743462e-09,3.31046870472029e-10,1.01414842496039e-09,0.0799999967445864,1.10359655664189e-05,3.07776220048047e-06,-9.90307574963093e-06,1.65813543451244e-11,2.17765042109798e-10,-2.94840540870924e-10,2.17789111395597e-10,-5.92408067045153e-10,1.34679593866199e-09,-1.20888542232132e-09,1.84314369322912e-10,2.60208521391482e-11 +0.24,-1.63892926066927e-06,-7.04176909251814e-07,1.5170238109128e-06,3.31038169099074e-10,1.01431078119996e-09,0.0799999967440213,-1.40363035864428e-09,5.29435002782911e-10,2.7825875284493e-10,1.38205419331073e-11,2.16363385541209e-10,-2.94556046220864e-10,0.0547429820595398,0.0236116441236241,-0.0496267006163279,2.92517746136562e-10,5.63481553084132e-09,3.88578058618859e-09 +0.242,-2.43966086915792e-09,6.89763670139176e-09,1.878669872446e-09,3.31102152639762e-10,1.01501387850256e-09,0.0799999967434082,0.000230007893804577,9.75243386949764e-05,-0.000208409878214941,1.77514253296707e-11,2.40304304233163e-10,-2.7929741852617e-10,2.71842281757858e-08,-8.65605330469067e-09,-3.78494978414738e-09,-8.01008565032313e-10,-3.74440062289631e-09,5.10702591327622e-09 +0.244,-7.18897685450959e-07,-3.14079554471908e-07,6.83384298053036e-07,3.31109174800392e-10,1.01527199841689e-09,0.0799999967429041,-1.29489344594114e-09,4.94810789564148e-10,2.63118953708341e-10,1.0616507672978e-11,2.01385783049623e-10,-2.74127942567759e-10,-0.158896527237615,-0.0680891712764689,0.143289759638458,-4.9953530895097e-09,-2.23428046897122e-08,-2.24039536922404e-09 +0.246,-2.44484044294169e-09,6.89961594455002e-09,1.87972234826084e-09,3.31144618670454e-10,1.01581942163476e-09,0.0799999967423116,-0.000405578215145882,-0.0001748323464109,0.000364749160338892,-2.22998702836818e-12,1.50933085474314e-10,-2.88259000003066e-10,-3.50291356251281e-08,8.0306854916001e-09,6.65060454624333e-09,-1.70848578340265e-09,4.84985315796215e-09,-5.96571403388423e-09 +0.248,-2.34121054603449e-06,-1.01340894011551e-06,2.14238093940861e-06,3.31100254852279e-10,1.01587573075879e-09,0.079999996741751,-1.43500998844165e-09,5.26933531530548e-10,2.89721371893314e-10,3.78256453936742e-12,2.20785195681472e-10,-2.97990798703296e-10,0.157907207835498,0.0672793741887926,-0.143385499725866,2.13436039675496e-09,2.72173776572071e-08,-3.6047553830798e-09 +0.25,-2.45058048289545e-09,6.90172367867614e-09,1.88088123374841e-09,3.31159748928611e-10,1.01670256241748e-09,0.0799999967411197,0.000226050616196111,9.42851503442712e-05,-0.000208792838564571,6.30745455865166e-12,2.59802596103142e-10,-3.02678021535385e-10,2.37802670350479e-08,-7.31793098340813e-09,-2.12297627394386e-09,-9.94863913472697e-10,-2.92951427005582e-09,4.37930941510345e-09 +0.252,-1.43700808125004e-06,-6.36268338738422e-07,1.30720958515032e-06,3.31125484670514e-10,1.0169149411432e-09,0.0799999967405403,-1.33988892030146e-09,4.97661807596916e-10,2.81229466797539e-10,-1.96891114523367e-13,2.09067138601249e-10,-2.80473561042882e-10,-0.118169407526189,-0.0500428583155576,0.108853304894266,-3.26323169874687e-09,-2.32053959381417e-08,6.94323071259716e-09 +0.254,-2.45594003857666e-09,6.90371432590653e-09,1.8820061516156e-09,3.31158961364153e-10,1.01753883097189e-09,0.0799999967399978,-0.000246627013908646,-0.000105886282917959,0.000226620381012492,-6.74547223633581e-12,1.66981012350575e-10,-2.74905098684996e-10,-2.56095058354111e-08,6.39939490287844e-09,3.82333054105288e-09,-6.37727717855973e-10,3.33327115908943e-09,-4.51375048449165e-09 +0.256,-2.42351613688463e-06,-1.05981347041026e-06,2.21369110920029e-06,3.31098502781568e-10,1.0175828651926e-09,0.0799999967394407,-1.4423269436431e-09,5.2325938720843e-10,2.9652278896175e-10,-2.74780198594726e-12,2.22400223237606e-10,-2.98528562980848e-10,0.121920724359067,0.0520586922255101,-0.112480257073396,2.01011082778812e-09,2.4607919868469e-08,-7.70564168028897e-09 +0.258,-2.46170934635123e-09,6.90580736345536e-09,1.88319224277145e-09,3.31147970156209e-10,1.01842843186484e-09,0.0799999967388037,0.000241055883527623,0.000102348485984081,-0.000223300647281092,1.29497107481669e-12,2.65412691824451e-10,-3.05727665406152e-10,-5.17446328840431e-09,1.47212970980079e-09,2.11896472590567e-09,-6.77843198237936e-10,1.00657329693554e-09,-9.94863913472698e-10 +0.26,-1.45929260277414e-06,-6.50419526473933e-07,1.32048852007592e-06,3.31103682665868e-10,1.0186445159599e-09,0.0799999967382178,-1.46302479679672e-09,5.29147906047633e-10,3.04998647865373e-10,-5.45917477889901e-12,2.26426516425349e-10,-3.02508018634739e-10,-0.0856830906867269,-0.037562225446144,0.079359453859307,-2.33862408605123e-09,-1.39176864477619e-08,1.12583553590895e-09 +0.262,-2.46756144553842e-09,6.90792395507955e-09,1.88441223736291e-09,3.31126133457094e-10,1.01933413793054e-09,0.0799999967375936,-0.000101676479219285,-4.79004158004947e-05,9.41371681561358e-05,-8.05952526938824e-12,2.09741946033404e-10,-3.01224323262516e-10,2.36545808982025e-09,2.62593766175989e-10,2.2735719557021e-10,4.68375338513738e-11,-1.28803218091278e-10,8.32667268468867e-11 +0.264,-1.86599851965128e-06,-8.42021189675912e-07,1.69703719270047e-06,3.3107144456479e-10,1.01948348374403e-09,0.0799999967370129,-1.45356296443744e-09,5.30198281112337e-10,3.05908076647654e-10,-5.27182464349351e-12,2.25911303552983e-10,-3.02174951727352e-10,0.0397601850458972,0.0185556297924594,-0.0358638814063061,1.23664099793696e-09,6.13571693452996e-09,-2.46330733588706e-10 +0.266,-2.47337569739617e-09,6.910044748204e-09,1.8856358696695e-09,3.3110504615852e-10,1.02023778314475e-09,0.0799999967363849,5.73642609643038e-05,2.63221033693431e-05,-4.93183574690886e-05,-3.11296127764038e-12,2.34284813771523e-10,-3.02209646196871e-10,3.29014701767882e-09,2.5804011705155e-10,-6.0953846137135e-10,5.08273978461204e-10,-3.72098185597025e-10,2.70616862252382e-10 +0.268,-1.63654147579406e-06,-7.3673277619854e-07,1.49976376282411e-06,3.31058992719679e-10,1.02042062299912e-09,0.079999996735804,-1.44040237636672e-09,5.31230441580543e-10,3.03469922802168e-10,-3.2387287296487e-12,2.24422910810595e-10,-3.01092484278342e-10,-0.0195759383690187,-0.0087786285883802,0.0177475731526297,1.73906028466675e-10,-3.61082691524572e-09,4.9960036108132e-10 +0.27,-2.47913730690164e-09,6.91216966997033e-09,1.88684974936071e-09,3.31092091243601e-10,1.02113547478799e-09,0.0799999967351806,-2.09394925117711e-05,-8.79241098417776e-06,2.16719351414304e-05,-2.41733716377368e-12,2.19841506110541e-10,-3.00211244752546e-10,2.71004464529045e-09,2.34187669256869e-10,-9.41738007020908e-10,6.99093560818652e-10,-4.31078783780236e-10,2.22044604925031e-10 +0.272,-1.72029944584115e-06,-7.71902420135251e-07,1.58645150338983e-06,3.31049323371024e-10,1.02129998902356e-09,0.0799999967346032,-1.42956219778556e-09,5.32167192257571e-10,2.99702970774085e-10,-4.42354486374085e-13,2.22698595675474e-10,-3.00204305858642e-10,0.00895916142478174,0.00404706743659978,-0.00852780872870674,9.45207453972861e-10,1.10024836463829e-09,5.46437894932694e-11 +0.274,-2.48485555569278e-09,6.91429833873936e-09,1.8880485612438e-09,3.31090321825656e-10,1.02202626917069e-09,0.0799999967339798,1.48971531873558e-05,7.39585876222137e-06,-1.24392997733966e-05,1.36349265211777e-12,2.24242499569094e-10,-2.99992669594573e-10,1.69973085085984e-09,1.83663848019044e-10,-1.01557217496717e-09,7.38341679462627e-10,-3.42174205636425e-10,1.39645239816133e-10 +0.276,-1.66071083309172e-06,-7.42318985086365e-07,1.53669430429625e-06,3.31054777341633e-10,1.02219695902184e-09,0.0799999967334032,-1.42276327438212e-09,5.32901847649647e-10,2.95640682074216e-10,2.51101223147643e-12,2.21329898852929e-10,-2.99645724899378e-10,-0.00461767556551623,-0.00212638632244612,0.00400892436152981,6.2298256831017e-10,-1.03389519168218e-09,1.80411241501588e-10 +0.278,-2.49054660879031e-09,6.91642994612995e-09,1.8892311239721e-09,3.31100365874581e-10,1.02291158876611e-09,0.0799999967327812,-3.57354907470908e-06,-1.1096865275631e-06,3.59639767272268e-06,3.85542292535845e-12,2.20106918802365e-10,-2.99271024628567e-10,8.49607927413953e-10,1.05384451165591e-10,-1.02001740387436e-09,7.07116656895045e-10,-2.94035629178069e-10,1.09287578986539e-10 +0.28,-1.67500502939056e-06,-7.46757731196618e-07,1.55107989498714e-06,3.31070199033334e-10,1.02307738669705e-09,0.0799999967322061,-1.41936484267246e-09,5.33323385454309e-10,2.91560612458719e-10,5.33947885905661e-12,2.20153756336216e-10,-2.99208574583431e-10,0.00195185706917326,0.000863805903975749,-0.00197922946781892,7.22946008613333e-10,5.8113236445223e-11,3.64291929955129e-11 +0.282,-2.496224068161e-09,6.91856323967177e-09,1.89039736642194e-09,3.31121723790018e-10,1.02379220379145e-09,0.0799999967315843,4.23387920198397e-06,2.3455370883399e-06,-4.320520198553e-06,6.74720695981179e-12,2.20339371748146e-10,-2.99125307856584e-10,3.19080699362484e-10,5.52943107967607e-11,-9.58976821563428e-10,6.3490879220751e-10,-2.29417179697933e-10,4.16333634234433e-11 +0.284,-1.65806951258262e-06,-7.37375582843258e-07,1.53379781419292e-06,3.31097187861173e-10,1.02395874418404e-09,0.0799999967310096,-1.41808851987501e-09,5.33544562697496e-10,2.87724705172465e-10,7.87911402788665e-12,2.19236087617425e-10,-2.99042041129738e-10,-0.00113041116427798,-0.000514422318761628,0.000957969541149834,5.63568289257964e-10,-3.72531866466019e-10,5.11743425413158e-11 +0.286,-2.5018964222405e-09,6.92069741792256e-09,1.89154826524263e-09,3.31153240246129e-10,1.02466914814192e-09,0.0799999967303882,-2.87765455127958e-07,2.87847813293385e-07,-4.88642033953656e-07,9.00148011684364e-12,2.18849244282282e-10,-2.98920610486419e-10,2.89481980004516e-11,1.38777878096756e-11,-8.4123246563052e-10,5.29307500607457e-10,-2.07299455378466e-10,2.42861286626413e-11 +0.288,-1.65922057440314e-06,-7.36224191590085e-07,1.53184324605711e-06,3.31133193781641e-10,1.02483414116117e-09,0.079999996729814,-1.41797272708301e-09,5.33600073848735e-10,2.84359775309943e-10,9.99634403031648e-12,2.18406889795911e-10,-2.98944896615087e-10,0.059134543411577,0.0260656807611535,-0.0533588719531733,2.10964058722238e-09,5.85469173142264e-09,3.92654658787257e-09 +0.29,-2.50756831314883e-09,6.92283181821796e-09,1.89268570434387e-09,3.31193225622251e-10,1.0255427757011e-09,0.0799999967291924,0.000236250408191177,0.000104550570857906,-0.000213924129846644,1.74400424657331e-11,2.42268011207972e-10,-2.83214424134929e-10,2.7747308574069e-08,-8.14951404970648e-09,-5.90326398875012e-09,8.45894534973166e-10,-4.16810683190408e-09,5.2206503009533e-09 +0.292,-7.1421894163844e-07,-3.18021908158467e-07,6.76146726670546e-07,3.31202953951504e-10,1.025803213206e-09,0.0799999967286811,-1.30698349278674e-09,5.01002017649909e-10,2.60746719354943e-10,1.33799221702091e-11,2.01734462468295e-10,-2.78062295411274e-10,-0.160800782504542,-0.0701329299357403,0.144605752387044,-3.50002145321776e-09,-2.29109266280955e-08,-2.30631486131018e-09 +0.294,-2.51279624711997e-09,6.92483582628856e-09,1.89372869122129e-09,3.31246745310931e-10,1.02634971355098e-09,0.0799999967280801,-0.00040695272182699,-0.000175981148885056,0.000364498879701531,3.43995665286201e-12,1.5062430469559e-10,-2.9243968358017e-10,-3.48673726609932e-08,8.81933415186605e-09,5.01020665927275e-09,-3.33934269125535e-10,4.54454182619023e-09,-6.1175023380322e-09 +0.296,-2.3420298289464e-06,-1.02194650369869e-06,2.13414224547667e-06,3.31216713778115e-10,1.02640571042478e-09,0.0799999967275113,-1.44645298343071e-09,5.36279354257374e-10,2.80787545992034e-10,1.2044185093707e-11,2.19912629773056e-10,-3.02532304763403e-10,0.158630296079591,0.0682481964221683,-0.143410273237125,3.32112809475759e-09,2.69567354549416e-08,-3.69149155687864e-09 +0.298,-2.5185820590537e-09,6.92698094370559e-09,1.89485184140525e-09,3.31294922051306e-10,1.02722936407007e-09,0.07999999672687,0.000227568462491377,9.70116368036177e-05,-0.000209142213246967,1.67244690318924e-11,2.58451246515356e-10,-3.07205649807684e-10,-1.59215089029496e-09,4.72061625900188e-10,8.59121801477513e-10,-2.66496893996936e-10,3.49980461278321e-10,-3.43475248243407e-10 +0.3,-1.43175597898089e-06,-6.33899956484218e-07,1.2975733924888e-06,3.31283611654243e-10,1.02743951541084e-09,0.0799999967262825,-1.45282158699189e-09,5.38167600760974e-10,2.84224033197944e-10,1.09781975177192e-11,2.21312551618169e-10,-3.03906205756377e-10,-0.0817496097831558,-0.0356565337989063,0.0751247157268832,-2.03461379688629e-09,-1.33456613815586e-08,1.16399945238044e-09 +0.302,-2.52439334540167e-09,6.92913361410863e-09,1.89598873753805e-09,3.31338834841377e-10,1.02811461427654e-09,0.0799999967256544,-9.94299766412468e-05,-4.56144983920076e-05,9.13566496605656e-05,8.5860138443472e-12,2.05068600989122e-10,-3.02549651998163e-10,1.5553964366477e-09,2.53052787058117e-10,1.44957830461312e-10,-2.81892564846231e-12,-5.94142790522056e-11,4.25007251614317e-11 +0.304,-1.82947588554588e-06,-8.16357950052249e-07,1.66299999113106e-06,3.3131795570962e-10,1.0282597898148e-09,0.0799999967250723,-1.4466000012453e-09,5.39179811909207e-10,2.84803864519789e-10,1.09669218151254e-11,2.2107489450196e-10,-3.03736202855731e-10,0.0379859213299146,0.0173156349462903,-0.0342797956147302,9.16801357053741e-10,5.97959182169204e-09,-4.19803081186387e-10 +0.306,-2.53017974540665e-09,6.93129033335627e-09,1.89712795299612e-09,3.31382702528638e-10,1.02899891385455e-09,0.0799999967244394,5.25137086784116e-05,2.36480413931539e-05,-4.57625327983553e-05,1.22532192725622e-11,2.2898696827589e-10,-3.04228864322908e-10,2.13327619458248e-09,1.75423911508154e-10,-4.66206934168767e-12,3.12250225675825e-11,-2.05564731903251e-10,8.93382590128055e-11 +0.308,-1.61942105083223e-06,-7.21765784479633e-07,1.47994985993764e-06,3.3136696858671e-10,1.0291757376879e-09,0.0799999967238554,-1.43806689646697e-09,5.39881507555239e-10,2.84785216242422e-10,1.10918219053957e-11,2.20252635574347e-10,-3.0337884981968e-10,-0.0186129539650221,-0.00841979888393204,0.0169006170663106,-4.45607092891542e-10,-3.19536064274927e-09,3.52148865623292e-10 +0.31,-2.53593201299251e-09,6.93344985938649e-09,1.89826709386109e-09,3.31427069816259e-10,1.02987992439685e-09,0.0799999967232259,-2.19381071816767e-05,-1.00311541425743e-05,2.18399354668872e-05,1.0470790900996e-11,2.16205525704893e-10,-3.02820268860415e-10,1.59526797154086e-09,1.22514845490862e-10,8.63024929298461e-11,-7.61109925084823e-11,-1.196959198424e-10,8.76035355368287e-11 +0.312,-1.70717347955894e-06,-7.61890401049931e-07,1.56730960180519e-06,3.31408851750314e-10,1.03004055979072e-09,0.0799999967226441,-1.43168582458081e-09,5.40371566937203e-10,2.85130426214142e-10,1.07873779353618e-11,2.19773851894977e-10,-3.03028435677532e-10,0.00858721619772247,0.00377531171472447,-0.0080628977738124,6.52689707836273e-11,1.34874750257196e-09,-7.02563007770606e-11 +0.314,-2.54165875629084e-09,6.93561134565424e-09,1.89940761556595e-09,3.31470219328001e-10,1.03075901980443e-09,0.0799999967220138,1.24107576092132e-05,5.07009271632358e-06,-1.04116556283625e-05,1.07318667841305e-11,2.21600515715181e-10,-3.03101294063523e-10,7.84501586956198e-10,1.01915004213637e-11,2.39500259902048e-10,-1.93638508005911e-10,-3.29597460435593e-11,1.64798730217797e-11 +0.316,-1.65753044912209e-06,-7.41610030184636e-07,1.52566297929174e-06,3.31451779217451e-10,1.03092696185358e-09,0.0799999967214317,-1.42854781823298e-09,5.40412332938888e-10,2.8608842725375e-10,1.00128239033381e-11,2.19642012910803e-10,-3.02962516185445e-10,-0.00433006713335603,-0.00201988563462013,0.00380430591933114,-3.35668992601511e-10,-6.88251539093798e-10,2.42861286636753e-11 +0.318,-2.54737294756377e-09,6.93777299498599e-09,1.90055196927497e-09,3.31510270623614e-10,1.03163758785607e-09,0.079999996720802,-4.90951092421091e-06,-3.00944982215695e-06,4.80556804896212e-06,9.38919081372446e-12,2.18847509558806e-10,-3.03004149548869e-10,1.55772747131855e-10,-7.48099499014997e-11,3.15719672627779e-10,-2.62810606610486e-10,1.73472347597681e-11,-2.34187669256869e-11 +0.32,-1.67716849281893e-06,-7.53647829473264e-07,1.54488525148759e-06,3.31489335980706e-10,1.03180235189182e-09,0.0799999967202197,-1.42792472724445e-09,5.40113093139282e-10,2.87351305944261e-10,8.96158147689618e-12,2.19711401849842e-10,-3.03056191253148e-10,0.00193705865160921,0.00087068541135618,-0.00190637310896069,-2.29200339263435e-10,3.76434994286967e-10,-1.3010426069826e-11 +0.322,-2.55308464647275e-09,6.93993344735855e-09,1.90170137449874e-09,3.31546116949522e-10,1.03251643346347e-09,0.0799999967195897,2.83872368222592e-06,4.73291823267774e-07,-2.81992438688067e-06,8.47238945667072e-12,2.20353249535954e-10,-3.03056191253148e-10,-1.96023752785379e-10,-1.53739868058444e-10,3.02058725254461e-10,-2.85362011798184e-10,5.5944832100252e-11,-2.60208521396521e-11 +0.324,-1.66581359809003e-06,-7.51754662180193e-07,1.53360555394007e-06,3.31523225538533e-10,1.03268376488996e-09,0.0799999967190075,-1.4287088222556e-09,5.39498133667049e-10,2.88559540845279e-10,7.82013342970344e-12,2.19935181178243e-10,-3.03160274661707e-10,-0.00100222341729394,-0.000426340825924325,0.000853178558726275,-2.99022959171501e-10,-1.20129600711394e-10,-5.72458747072346e-11 +0.326,-2.55879948176177e-09,6.94209143989322e-09,1.90285561266212e-09,3.3157739748324e-10,1.03339617418818e-09,0.0799999967183771,-1.17016998694985e-06,-1.23207148042953e-06,5.92789848024438e-07,7.27629761998471e-12,2.19872731133108e-10,-3.03285174751977e-10,-3.49492570300702e-10,-1.84314369322536e-10,2.31910844694649e-10,-2.57606436182555e-10,3.98986399474665e-11,-1.47451495458028e-11 +0.328,-1.67049427803783e-06,-7.56682948101911e-07,1.53597671333217e-06,3.31552330729012e-10,1.0335632558145e-09,0.0799999967177943,-1.4301067925368e-09,5.38760876189758e-10,2.89487184224057e-10,6.78970768497322e-12,2.20094775738033e-10,-3.0321925525989e-10,0.000441957800136624,0.000245943209374599,-0.000439382295954956,-2.24213009270002e-10,1.26634813746307e-10,-1.56125112837913e-11 +0.33,-2.56451990893192e-09,6.94424648339798e-09,1.90401356139902e-09,3.3160455631398e-10,1.03427655329114e-09,0.0799999967171642,5.97661213596646e-07,-2.48298642931133e-07,-1.16473933579539e-06,6.3794455829047e-12,2.20379270388093e-10,-3.03347624797112e-10,-3.91613824701764e-10,-1.60895602396849e-10,1.58076676748386e-10,-2.05564731903251e-10,4.38017677684143e-11,-5.89805981832114e-11 +0.332,-1.66810363318344e-06,-7.57676142673636e-07,1.53131775598898e-06,3.31577848511344e-10,1.03444477289605e-09,0.079999996716581,-1.43167324783561e-09,5.38117293780171e-10,2.90119490931051e-10,5.96744875736021e-12,2.20269982809107e-10,-3.03455177652623e-10,-0.000235414573658511,-6.73164351951832e-05,0.000209090604422548,-1.8323016715005e-10,-2.03830008427275e-11,-5.20417042793042e-11 +0.334,-2.57024660192326e-09,6.9463989525731e-09,1.90517403936274e-09,3.3162842610901e-10,1.03515763322237e-09,0.0799999967159504,-3.43997081037397e-07,-5.17564383711866e-07,-3.28376918105194e-07,5.6465249143045e-12,2.20297738384722e-10,-3.03555791614229e-10,2.58284333590902e-08,-7.551684971796e-09,-4.17103417776898e-09,1.25550611573821e-10,-3.58090293528511e-09,4.81559236931161e-09 +0.336,-1.66947962150759e-06,-7.59746400208483e-07,1.53000424831656e-06,3.31600434611001e-10,1.03532596384959e-09,0.0799999967153667,-1.32835951439925e-09,5.07910553892987e-10,2.73435354219975e-10,6.4696512036555e-12,2.05946371067966e-10,-2.84192808175376e-10,-0.033874204949212,-0.0138135637741711,0.0312531923457245,-4.5471439114042e-10,-9.64419516469304e-09,5.88244730703735e-09 +0.338,-2.57556003998086e-09,6.94843059478867e-09,1.90626778077962e-09,3.31654304713824e-10,1.03598141870664e-09,0.0799999967148136,-0.000135840816877885,-5.57718194803963e-05,0.000124684392464793,3.82766734974282e-12,1.8172095772595e-10,-2.8002600238608e-10,-2.75385996558602e-08,6.81486117537485e-09,3.12575486327571e-09,-1.25333771139324e-10,3.34584790429026e-09,-4.84595003014121e-09 +0.34,-2.21284288901913e-06,-9.82833678130068e-07,2.02874181817574e-06,3.316157452804e-10,1.03605284768049e-09,0.0799999967142466,-1.43851391302269e-09,5.35169998594486e-10,2.85938373673078e-10,5.9683161190982e-12,2.19329762685127e-10,-3.03576608295941e-10,0.0774419577104927,0.0323680933770296,-0.0723452286921455,1.23945992358543e-09,1.75844581951079e-08,-7.68395763683926e-09 +0.342,-2.58131409563295e-09,6.95057127478305e-09,1.90741153427432e-09,3.31678177978301e-10,1.03685873775738e-09,0.0799999967135993,0.000173927013964086,7.37005540277224e-05,-0.000164696522303789,8.78550704408453e-12,2.52058790506382e-10,-3.10761832933437e-10,-7.65888546160053e-09,1.64603573826749e-09,2.07603031987524e-09,-5.88288098790634e-10,1.20086232624494e-09,-1.28976690438875e-09 +0.344,-1.51713483316279e-06,-6.88031462019179e-07,1.36995572896058e-06,3.31650887308577e-10,1.03706108284252e-09,0.0799999967130036,-1.46914945486909e-09,5.41754141547556e-10,2.94242494952579e-10,3.61516372393566e-12,2.24133211990107e-10,-3.08735675913496e-10,-0.0624254261507694,-0.0277109069137318,0.0583477032790836,-1.81777336238919e-09,-9.93866447474011e-09,6.27969898303604e-10 +0.346,-2.58719069345242e-09,6.95273829134924e-09,1.90858850425413e-09,3.31692638633196e-10,1.03775527060535e-09,0.0799999967123644,-7.57746906389919e-05,-3.71430736272049e-05,6.86942908125452e-05,1.51441359452775e-12,2.12304132607421e-10,-3.08249953340223e-10,2.6777110260015e-08,-7.09133272935866e-09,-3.83569044581921e-09,2.05564731903251e-10,-3.50630982581811e-09,4.75227496243846e-09 +0.348,-1.82023359571876e-06,-8.36603756527998e-07,1.64473289221076e-06,3.31656944962955e-10,1.03791029937295e-09,0.0799999967117706,-1.36204101382903e-09,5.13388810630122e-10,2.78899733169302e-10,4.43742265154867e-12,2.10107972686835e-10,-2.89726576063742e-10,-0.00376846822806418,0.000420173344034423,0.00424768378858136,4.81168924149078e-10,-4.93225252307038e-09,5.60055474219012e-09 +0.35,-2.59263885750774e-09,6.95479184659176e-09,1.9097041031868e-09,3.31710388323803e-10,1.03859570249609e-09,0.0799999967112055,-9.08485635512487e-05,-3.54623802510672e-05,8.56850259668707e-05,3.43908929112406e-12,1.9257512251514e-10,-2.85847734371462e-10,-2.50466964876793e-08,7.22273803266589e-09,2.90609550313119e-09,2.10335221462209e-10,3.13074219326995e-09,-4.69676381120834e-09 +0.352,-2.18362784992375e-06,-9.78453277532265e-07,1.98747299607824e-06,3.31670701320119e-10,1.03868059986301e-09,0.0799999967106272,-1.46222779977974e-09,5.42279762760785e-10,2.90524115181827e-10,5.27876353739749e-12,2.22630941459914e-10,-3.08513631308575e-10,0.061233114514521,0.025320887367094,-0.0571965580925331,1.21669167796324e-09,1.46545102441826e-08,-7.25374621479612e-09 +0.354,-2.59848776870686e-09,6.9569609656428e-09,1.91086619964753e-09,3.31731503377952e-10,1.03948622626193e-09,0.0799999967099714,0.000154083894506832,6.58211692173074e-05,-0.000143101206403259,8.30585600297694e-12,2.51193163491869e-10,-3.14862719230646e-10,-5.21430771823809e-09,1.91101474922106e-09,1.69796902232854e-09,-2.30067701001442e-10,9.3371491094374e-10,-1.09634523681627e-09 +0.356,-1.56729227189642e-06,-7.15168600663035e-07,1.4150681704652e-06,3.31703924744131e-10,1.03968537251697e-09,0.0799999967093677,-1.4830850306527e-09,5.49923821757669e-10,2.97315991271141e-10,4.35849273339172e-12,2.26365801103689e-10,-3.1289901225584e-10,-0.0544166146140465,-0.0243035045289618,0.0506890002131398,-1.30299417089308e-09,-8.82540568403199e-09,6.71337985203024e-10 +0.358,-2.60442010882947e-09,6.95916066092983e-09,1.91205546361262e-09,3.31748937348886e-10,1.04039168946635e-09,0.0799999967087198,-6.35825639493537e-05,-3.13928488985399e-05,5.96547944493007e-05,3.09387931940463e-12,2.15891540755741e-10,-3.12177367289834e-10,2.85465011004571e-08,-7.02497955640255e-09,-4.15683112930942e-09,4.62303806347818e-10,-3.71751240901829e-09,4.96304386476964e-09 +0.36,-1.82162252769383e-06,-8.40739996257195e-07,1.65368734826241e-06,3.31716300261409e-10,1.04054893868e-09,0.079999996708119,-1.36889902625087e-09,5.21823903532059e-10,2.80688666753903e-10,6.207707958783e-12,2.11495751467616e-10,-2.93046836796762e-10,-0.00778102472991786,-0.00148640070217476,0.00777017788837225,5.85035492273177e-10,-5.73456213071033e-09,5.83821185839994e-09 +0.362,-2.60989570493447e-09,6.96124795654396e-09,1.91317821827963e-09,3.31773768180721e-10,1.04123767247222e-09,0.0799999967075476,-9.47066628690252e-05,-3.73384517072389e-05,9.07355060027897e-05,5.43402128849734e-12,1.929532922329e-10,-2.88824519856234e-10,-2.41659719579096e-08,7.19216353139981e-09,2.6813403927739e-09,3.52365706057788e-10,3.02232197602058e-09,-4.61783389305026e-09 +0.364,-2.20044917916993e-06,-9.90093803086151e-07,2.01662937227357e-06,3.31738036346563e-10,1.04132075184893e-09,0.0799999967069637,-1.46556291408251e-09,5.50592557657658e-10,2.91414028324999e-10,7.61717078301415e-12,2.23585039371699e-10,-3.11518172368963e-10,0.0630982415782186,0.0262421361392397,-0.0595189903428421,1.35612007734487e-09,1.49329333620773e-08,-7.22078646875345e-09 +0.366,-2.6157579565908e-09,6.96345032677459e-09,1.91434387439293e-09,3.31804236863853e-10,1.0421320126297e-09,0.0799999967063016,0.00015768630344385,6.763009284972e-05,-0.000147340455368579,1.08585015978768e-11,2.52685025681209e-10,-3.17707665731248e-10,-4.84936526698454e-09,1.6902711869049e-09,1.52991768559429e-09,-1.91036422791946e-10,8.64759652774438e-10,-1.00440489259057e-09 +0.368,-1.56970396539453e-06,-7.1957343168727e-07,1.42726755079925e-06,3.31781470352954e-10,1.04233149195165e-09,0.0799999967056929,-1.48496037515044e-09,5.57353642405278e-10,2.97533699067376e-10,6.85302509184637e-12,2.27044077982796e-10,-3.15535791939325e-10,-0.0554793129061499,-0.0248871732941909,0.0518888604446017,-1.32858134216373e-09,-9.09992567410532e-09,7.89299181569447e-10 +0.37,-2.6216977980914e-09,6.96567974134421e-09,1.9155340091892e-09,3.3183164896422e-10,1.04304018894164e-09,0.0799999967050394,-6.42309481807502e-05,-3.19186003270438e-05,6.02149864098282e-05,5.54417622922187e-12,2.16285322984788e-10,-3.1455046900497e-10,2.28755816372716e-09,1.7130394325271e-10,-1.35525271560688e-11,1.66533453693773e-10,-1.81278603239576e-10,1.83880688453541e-10 +0.372,-1.82662775811753e-06,-8.47247832995446e-07,1.66812749643856e-06,3.31803647057871e-10,1.04319663324359e-09,0.0799999967044347,-1.47581014249554e-09,5.58038858178289e-10,2.97479488958752e-10,7.51915890662146e-12,2.26318963569838e-10,-3.14800269185511e-10,0.0258322250907487,0.012531220075062,-0.023432808170091,8.73433270154321e-10,3.86322918100034e-09,-3.72965547335013e-11 +0.374,-2.62760103866139e-09,6.96791189677692e-09,1.91672392714504e-09,3.31861725599847e-10,1.04394546479591e-09,0.0799999967037802,3.90979521822446e-05,1.82062799732041e-05,-3.3516246270536e-05,9.03790930983916e-12,2.31738239708789e-10,-3.14699655223904e-10,3.03733817610951e-09,-9.23740250957649e-11,-5.61833565781988e-10,3.20273321752217e-10,-3.60388802134181e-10,3.0964814046186e-10 +0.376,-1.67023594938856e-06,-7.74422713102629e-07,1.53406251135642e-06,3.3183979869511e-10,1.04412358620243e-09,0.0799999967031759,-1.4636607897911e-09,5.57669362077906e-10,2.95232154695624e-10,8.80025219363033e-12,2.24877408361301e-10,-3.13561676623663e-10,-0.0129261953271654,-0.00594030958949407,0.0116489068285094,1.23599047663347e-11,-2.47631776195689e-09,5.23886489744995e-10 +0.378,-2.63345568182055e-09,6.97014257422524e-09,1.91790485576382e-09,3.31896926608621e-10,1.04484497442936e-09,0.079999996702526,-1.26068291264169e-05,-5.55495838477221e-06,1.30793810435015e-05,9.0873489289045e-12,2.21832968660962e-10,-3.12604109264924e-10,2.36833122557733e-09,-2.43294967505747e-10,-6.27536217434609e-10,2.80374681804751e-10,-4.0158848468863e-10,3.20056481317721e-10 +0.38,-1.72066326589422e-06,-7.96642546641718e-07,1.58638003553042e-06,3.31876148090826e-10,1.04501091807707e-09,0.0799999967019255,-1.45418746488879e-09,5.56696182207883e-10,2.92722009825885e-10,9.92175092084934e-12,2.23271054422547e-10,-3.12281450698393e-10,0.00574658482198385,0.00265269365414683,-0.0055932343861727,3.50847823016309e-10,6.47919218277337e-10,1.70002900645727e-10 +0.382,-2.63927243168011e-09,6.97236935895407e-09,1.91907574380312e-09,3.31936613612305e-10,1.04573805864705e-09,0.0799999967012768,1.03795101615185e-05,5.05581623181511e-06,-9.29355650118937e-06,1.04907402209697e-11,2.24424645534071e-10,-3.11924097662341e-10,2.77714049673472e-08,-7.94741876475324e-09,-4.82502492821224e-09,3.99203239909162e-10,-3.86799967055928e-09,5.16687387319691e-09 +0.384,-1.67914522524815e-06,-7.76419281714458e-07,1.54920580952567e-06,3.3191811105171e-10,1.04590861665921e-09,0.0799999967006778,-1.3431018450194e-09,5.2490650714887e-10,2.73421910113036e-10,1.1518563880486e-11,2.0779905574031e-10,-2.91613955205605e-10,-0.0371189562056847,-0.0156027091633044,0.0341802215992476,-3.47378376064355e-10,-1.04373974740834e-08,6.26668855696621e-09 +0.386,-2.64464483906018e-09,6.97446898498266e-09,1.92016943144357e-09,3.31982687867827e-10,1.04656925487001e-09,0.0799999967001104,-0.00013809631466122,-5.73550204214026e-05,0.000127427329895801,9.10122671671231e-12,1.82675055637738e-10,-2.86857343434477e-10,-2.69559765134208e-08,6.54099170660504e-09,2.81079413216867e-09,-4.05491612509578e-11,3.19579432361826e-09,-4.7566117711284e-09 +0.388,-2.23153048389303e-06,-1.00583936340007e-06,2.05891512910887e-06,3.31954515958577e-10,1.04663931688176e-09,0.0799999966995304,-1.45092575107308e-09,5.5107047397529e-10,2.84665086641711e-10,1.13563672354822e-11,2.20582233034783e-10,-3.10640402290119e-10,0.0786928359522463,0.0333438997185755,-0.0741118642139364,1.25247034965525e-09,1.77600989470505e-08,-7.70043750986104e-09 +0.39,-2.65044854206448e-09,6.97667326687856e-09,1.92130809179014e-09,3.32028113336769e-10,1.04745158380215e-09,0.0799999966988678,0.000176675029147765,7.60205784528997e-05,-0.000169020126959945,1.41111081153333e-11,2.5371545142594e-10,-3.17659093473921e-10,-7.55932859711205e-09,1.14643537718617e-09,1.90201587119132e-09,-6.82180006927878e-10,1.11629455679107e-09,-1.13971332371676e-09 +0.392,-1.52483036730197e-06,-7.0175704958847e-07,1.38283462126909e-06,3.32010960391038e-10,1.04765417868746e-09,0.0799999966982597,-1.48116306546153e-09,5.55656215484034e-10,2.92273150126476e-10,8.62764720777064e-12,2.25047411261947e-10,-3.15199255584986e-10,-0.0632287502877166,-0.0284902333222598,0.0593245886489892,-1.98647522042794e-09,-1.01494333770713e-08,8.07513778067203e-10 +0.394,-2.65637319432632e-09,6.9788958917405e-09,1.92247718439065e-09,3.320626239256e-10,1.0483517734472e-09,0.079999996697607,-7.62399720031017e-05,-3.79403548361398e-05,6.82782276360122e-05,6.16520723362157e-12,2.13117717917654e-10,-3.14429038361652e-10,2.69434268732743e-08,-7.75703286326478e-09,-3.93738860959835e-09,5.42101086242752e-12,-3.60128593612784e-09,5.02202446295285e-09 +0.396,-1.82979025531438e-06,-8.53518468933029e-07,1.65594753181314e-06,3.32035621219973e-10,1.04850664955913e-09,0.079999996697002,-1.37338935796843e-09,5.24628084030975e-10,2.76523595688083e-10,8.64933125122035e-12,2.10642267517436e-10,-2.95111157733174e-10,-0.00343148275018436,0.000589818159590915,0.00382034579633153,2.64328489651966e-10,-4.93702301262999e-09,5.85035492273178e-09 +0.398,-2.6618667517582e-09,6.98099440407662e-09,1.9235832787734e-09,3.32097221250605e-10,1.04919434251727e-09,0.0799999966964266,-8.99659030038392e-05,-3.55810821977761e-05,8.35596108213383e-05,7.22252119222943e-12,1.93369625867135e-10,-2.91027618670725e-10,-2.54316695740691e-08,6.84760408098394e-09,3.02980297101074e-09,-4.7488055154865e-11,3.14765574715991e-09,-4.72451938682283e-09 +0.4,-2.18965386732974e-06,-9.95842797724134e-07,1.99018597509849e-06,3.32064511304742e-10,1.0492801280626e-09,0.0799999966958379,-1.47511603626471e-09,5.52018500354911e-10,2.88642807572126e-10,8.45937903060089e-12,2.23232890506075e-10,-3.14009235280466e-10,0.0608697823931591,0.0255049853849567,-0.0567157630994123,9.03574090549418e-10,1.46102747955456e-08,-7.33267613295394e-09 +0.402,-2.66776721590326e-09,6.98320247807804e-09,1.92473785000369e-09,3.32131058766727e-10,1.05008727407929e-09,0.0799999966951705,0.000153513226568798,6.64388593420509e-05,-0.000143303441576311,1.08368175544271e-11,2.51810725049317e-10,-3.20358323202541e-10,-5.55222643035258e-09,1.5033547323684e-09,1.90288323292931e-09,-5.51642065360624e-10,9.70144103940029e-10,-1.046905617752e-09 +0.404,-1.57560096105454e-06,-7.3008736035593e-07,1.41697220879325e-06,3.32107858574959e-10,1.0502873709628e-09,0.0799999966945565,-1.49732494198612e-09,5.58031919284385e-10,2.96254340503843e-10,6.2528107691584e-12,2.27113466921835e-10,-3.18196857751474e-10,0.00856438371989782,0.00464623703508477,-0.00506364366257595,9.73613550891982e-11,-2.34274405430668e-09,4.87197088228085e-09 +0.406,-2.6737565156712e-09,6.98543460575518e-09,1.9259228673657e-09,3.32156070009804e-10,1.05099572794698e-09,0.0799999966938978,0.000187770761448389,8.50238074823899e-05,-0.000163558016226615,1.12262629747839e-11,2.4243974883209e-10,-3.00870439673417e-10,3.0524031652962e-08,-8.28265407648576e-09,-5.01400136687646e-09,3.63641408651638e-10,-4.18198461971108e-09,5.54851303791181e-09 +0.408,-8.24517915260989e-07,-3.8999213042637e-07,7.62740143886789e-07,3.32152763626858e-10,1.05125712995813e-09,0.079999996693353,-1.37522881537427e-09,5.24901302978442e-10,2.76198335036337e-10,7.70737640376495e-12,2.10385528442991e-10,-2.96002805599826e-10,-0.145254799023385,-0.0662562177301469,0.128169325401203,-3.35126891515269e-09,-2.00794242344315e-08,-2.57953380877751e-09 +0.41,-2.6792574309327e-09,6.98753421096709e-09,1.92702766070585e-09,3.32186899515419e-10,1.05183727006075e-09,0.0799999966927138,-0.000393248434645151,-0.000180001063438198,0.000349119285378198,-2.17881268582687e-12,1.62122051894364e-10,-3.11188574908527e-10,-3.25524383924108e-08,9.30505672513958e-09,5.50080814232245e-09,-4.73145828072673e-10,4.46647926977127e-09,-6.15913570145564e-09 +0.412,-2.39751165384159e-06,-1.10999638417916e-06,2.15921728539958e-06,3.32144048376115e-10,1.0519056181657e-09,0.0799999966921082,-1.50543856894392e-09,5.62121529879e-10,2.98201567605627e-10,5.81479309147425e-12,2.28251445522076e-10,-3.20639348405649e-10,0.154891652993314,0.0705756646938829,-0.138075274169064,3.1485231088979e-09,2.58560534094343e-08,-3.38271077815476e-09 +0.414,-2.68527918520847e-09,6.98978269708661e-09,1.92822046697627e-09,3.32210158687785e-10,1.05275027584284e-09,0.0799999966914312,0.000226318177328107,0.000102301595337334,-0.000203181811298057,1.04152797497647e-11,2.65546265532101e-10,-3.24719418021146e-10,9.88711066138673e-10,4.69893221557182e-10,8.03068549161059e-10,-2.0361316799276e-10,1.45716771982847e-10,-6.67868538262315e-11 +0.416,-1.49223894452917e-06,-7.00790002829826e-07,1.34649004020736e-06,3.32185709495114e-10,1.05296780322783e-09,0.0799999966908093,-1.50148372467936e-09,5.64001102765229e-10,3.01413841802271e-10,5.00034041950321e-12,2.28834312610008e-10,-3.20906495820954e-10,-0.080454459259464,-0.0371750041245142,0.0731248386546711,-1.85073310843277e-09,-1.32402769303924e-08,1.43201422941776e-09 +0.418,-2.69128512010719e-09,6.99203870149767e-09,1.92942612234348e-09,3.32230160049463e-10,1.05366561309328e-09,0.0799999966901476,-9.54996597097453e-05,-4.63984211607211e-05,8.93175433206242e-05,3.01234731603376e-12,2.12585157810533e-10,-3.18991361103475e-10,3.35506362276161e-09,1.38777878076182e-10,-1.44740990027864e-10,1.81495443674058e-10,-3.10949183069642e-10,2.73218947467462e-10 +0.42,-1.87423758336814e-06,-8.86383687472708e-07,1.70376021348985e-06,3.32197758884378e-10,1.05381814385908e-09,0.0799999966895334,-1.48806347018832e-09,5.64556214277533e-10,3.0083487784216e-10,5.72632219419944e-12,2.27590515877729e-10,-3.19813620031084e-10,0.0374202070025625,0.0180872642861417,-0.0340010503622646,1.12518501460544e-09,5.6881582777272e-09,-2.22044604923933e-10 +0.422,-2.69723737398794e-09,6.99429692635478e-09,1.93062946185485e-09,3.32253065338239e-10,1.05457597515679e-09,0.0799999966888683,5.41811683005049e-05,2.59506359838457e-05,-4.66866581284343e-05,7.51308737445555e-12,2.35337790921441e-10,-3.19879539523171e-10,3.15185703057829e-09,-1.9298798670242e-11,-4.75314232417645e-10,2.85795692667178e-10,-3.664603343001e-10,3.26128013483639e-10 +0.424,-1.65751291016612e-06,-7.82581143537325e-07,1.51701358097611e-06,3.32227811233876e-10,1.05475949502276e-09,0.0799999966882539,-1.475456042066e-09,5.64479019082853e-10,2.98933620912489e-10,6.86950496486815e-12,2.26124674540529e-10,-3.18509107977149e-10,-0.0186463391847952,-0.00888841535594784,0.0167291399318439,-1.56125112837913e-10,-3.3428121382073e-09,5.80265002714241e-10 +0.426,-2.70313919815621e-09,6.99655484243111e-09,1.9318251963385e-09,3.32280543358099e-10,1.05548047385495e-09,0.0799999966875943,-2.0404188438676e-05,-9.60302543994567e-06,2.02299015989414e-05,6.88858692310389e-12,2.21966542368612e-10,-3.17558479512314e-10,2.0882275943157e-09,-1.60245081093357e-10,-4.99708781298569e-10,2.30718222304915e-10,-3.17454396103755e-10,2.37657116208822e-10 +0.428,-1.73912966392083e-06,-8.20993245297108e-07,1.59793318737188e-06,3.32255365581569e-10,1.05564736119224e-09,0.0799999966869836,-1.46710313168874e-09,5.63838038758479e-10,2.96934785787295e-10,7.79237785408781e-12,2.24854856956114e-10,-3.17558479512314e-10,0.0676956991620406,0.0317936345560227,-0.0613370672512651,2.03027698819635e-09,7.05598773853566e-09,4.24920515440518e-09 +0.43,-2.70900761068296e-09,6.99881019458615e-09,1.93301293548165e-09,3.32311712869515e-10,1.05637989328278e-09,0.079999996686324,0.000250378608209487,0.000117571512784145,-0.000225118367406119,1.50096948758893e-11,2.50190493322755e-10,-3.00561658894693e-10,2.97042663903457e-08,-8.82020151360407e-09,-5.86271482749811e-09,6.34258270904019e-10,-4.32900243430011e-09,5.67601521339611e-09 +0.432,-7.37615231082879e-07,-3.50707194160527e-07,6.97459717747401e-07,3.32315404361072e-10,1.05664812316553e-09,0.0799999966857814,-1.34828606612736e-09,5.28557232704063e-10,2.73483926477302e-10,1.03294109377039e-11,2.07538847218913e-10,-2.9485441865873e-10,-0.166575110337972,-0.0774317608148374,0.149246945936425,-3.78104665632594e-09,-2.36221632532451e-08,-2.38090797077817e-09 +0.434,-2.71440075494747e-09,7.00092442351696e-09,1.93410687118756e-09,3.32353030513266e-10,1.05721004867165e-09,0.0799999966851446,-0.000415921833142401,-0.000192155530475205,0.000371869416339581,-1.14491749414469e-13,1.55701840309774e-10,-3.10085290777806e-10,-3.53818536968919e-08,8.9301396138941e-09,5.31074750148574e-09,-5.29958021910914e-10,4.62997695738209e-09,-6.35429209250303e-09 +0.436,-2.40130256365248e-06,-1.11932931606135e-06,2.18493738310573e-06,3.32314946394074e-10,1.05727093052677e-09,0.079999996684541,-1.48981348091492e-09,5.64277791159639e-10,2.94726916483245e-10,8.20957885006023e-12,2.26058755048441e-10,-3.20271587028742e-10,0.162824174885026,0.0748196641990084,-0.147035519599344,3.23721084660721e-09,2.74793209020796e-08,-3.68542002471271e-09 +0.438,-2.72036000887113e-09,7.0031815346816e-09,1.93528577885349e-09,3.32385868828666e-10,1.05811428369185e-09,0.0799999966838635,0.000235374866397702,0.000107123126320829,-0.000216272662057794,1.28343516370144e-11,2.65619123918092e-10,-3.24826970876657e-10,-1.54666860915919e-09,5.11743425413158e-11,7.44630052063044e-10,-3.22008045228194e-10,2.97938756999016e-10,-1.97758476261356e-10 +0.44,-1.45980309806167e-06,-6.90836810778028e-07,1.31984673487455e-06,3.32366283800622e-10,1.05833340702244e-09,0.0799999966832417,-1.49600015535156e-09,5.64482488529804e-10,2.97705436691497e-10,6.92154666914745e-12,2.27250510076437e-10,-3.21062620933787e-10,-0.0844166834837726,-0.0392601261754461,0.0773163908974419,-2.06692302162636e-09,-1.38001589322645e-08,1.36089056690379e-09 +0.442,-2.72634400949254e-09,7.00543946463572e-09,1.93647660060026e-09,3.32413555015343e-10,1.05902328573215e-09,0.0799999966825793,-0.000102291867537388,-4.9917378380955e-05,9.29929015319741e-05,4.56665955050894e-12,2.10418488189035e-10,-3.19383408609042e-10,1.63934078985239e-09,-1.65015570652294e-10,-1.81929124543067e-10,6.61363325216157e-11,-1.94289029309402e-10,2.03830008427275e-10 +0.444,-1.86897056821123e-06,-8.90506324301849e-07,1.69181834100245e-06,3.32384550438825e-10,1.05917508097519e-09,0.0799999966819642,-1.48944279219215e-09,5.63822426247195e-10,2.96977720193325e-10,7.18609199923392e-12,2.264733539592e-10,-3.20247300900078e-10,0.0394497373094231,0.01925331671827,-0.0355237548349757,1.06858966120171e-09,6.07673633634674e-09,-2.5934115965852e-10 +0.446,-2.73230178066131e-09,7.00769475434071e-09,1.93766451148103e-09,3.3244229938334e-10,1.05992917914799e-09,0.0799999966812983,5.55070817003042e-05,2.70958884921249e-05,-4.91021178079288e-05,8.84101819531579e-12,2.34725433534422e-10,-3.20420773247676e-10,2.19418125162185e-09,-1.24249568966839e-10,-4.68592178948235e-10,1.9971004017183e-10,-3.02709246557953e-10,2.11636264069157e-10 +0.448,-1.64694224141001e-06,-7.82122770333349e-07,1.49540986977073e-06,3.32419914511606e-10,1.06011398270933e-09,0.0799999966806825,-1.48066606718566e-09,5.63325427971328e-10,2.95103351477532e-10,7.98493215992124e-12,2.25262516972968e-10,-3.19400755843801e-10,-0.019531160150261,-0.00937214245707444,0.0176401576198895,-2.59124319224035e-10,-3.44993131284887e-09,4.68375338513725e-10 +0.45,-2.73822444493005e-09,7.0099480560526e-09,1.93884492488694e-09,3.32474239111979e-10,1.06083022921588e-09,0.0799999966800207,-2.26175589007399e-05,-1.03926813361729e-05,2.14585126716293e-05,7.80452091841965e-12,2.20925708283026e-10,-3.18547271893621e-10,1.61283204673512e-09,-5.20417042793042e-11,-3.89879101225787e-10,1.60895602396848e-10,-2.49366499671666e-10,1.72604985859692e-10 +0.452,-1.73741247701297e-06,-8.23693495678041e-07,1.58124392045725e-06,3.32451132595279e-10,1.06099768554246e-09,0.0799999966794083,-1.47421473899872e-09,5.63117261154211e-10,2.93543835072629e-10,8.62851456950863e-12,2.24265050974281e-10,-3.18710335900363e-10,0.0683713046614015,0.0322142174676194,-0.0612760989414373,1.96327329393675e-09,7.14879544450042e-09,4.1806835771041e-09 +0.454,-2.74412130388604e-09,7.01220052509721e-09,1.94001910022723e-09,3.32508753170258e-10,1.06172728941978e-09,0.0799999966787459,0.000250867659744866,0.000118464188534305,-0.00022364588309412,1.56576140941666e-11,2.49520890061028e-10,-3.01824537585204e-10,2.96292124949554e-08,-8.66364271989716e-09,-5.67796677730658e-09,5.44920011891214e-10,-4.27522600654483e-09,5.6170346152129e-09 +0.456,-7.33941838033502e-07,-3.49836741540821e-07,6.86660388080768e-07,3.32513763051656e-10,1.06199576910271e-09,0.079999996678201,-1.3556978890189e-09,5.28462690274622e-10,2.70831967963403e-10,1.08081946170735e-11,2.07164146948102e-10,-2.96242197439511e-10,-0.167331585621617,-0.0781857250340202,0.14880824802672,-3.86496390447632e-09,-2.35215492916385e-08,-2.51881848711832e-09 +0.458,-2.74954409544212e-09,7.01431437585831e-09,1.94110242809908e-09,3.32551985948726e-10,1.06255594600757e-09,0.0799999966775609,-0.000418458682741604,-0.000194278711601776,0.00037158710901276,1.97758476261356e-13,1.55434692894474e-10,-3.11899811533678e-10,-3.56430922103523e-08,9.34712376943202e-09,5.66289636710903e-09,-6.08671099633361e-10,4.73926453636863e-09,-6.57546933569007e-09 +0.46,-2.40777656899992e-06,-1.12695158794793e-06,2.17300882413181e-06,3.32514554085561e-10,1.06261750787429e-09,0.0799999966769534,-1.49827025786031e-09,5.6585118535235e-10,2.93483553431839e-10,8.37351021854004e-12,2.26121205093577e-10,-3.22544074782271e-10,0.163626213586266,0.0754763188448147,-0.146518621742795,3.14635470455293e-09,2.75812359062932e-08,-3.86496390447631e-09 +0.462,-2.75553717647356e-09,7.01657778059972e-09,1.94227636231281e-09,3.325854799896e-10,1.06346043082794e-09,0.0799999966762707,0.000236046171603462,0.000107626563777482,-0.000214487377958421,1.27831772944731e-11,2.65759636519647e-10,-3.27359667151583e-10,-1.56073613234719e-09,4.06792655116561e-10,1.08160008727154e-09,-4.10262102068514e-10,3.97251675998688e-10,-2.81025203108242e-10 +0.464,-1.46359188258607e-06,-6.96445332837997e-07,1.31505931229813e-06,3.32565686794739e-10,1.06368054642036e-09,0.079999996675644,-1.5045132023897e-09,5.67478355972816e-10,2.97809953780925e-10,6.73246181026598e-12,2.27710211797571e-10,-3.23668175594704e-10,-0.0848153333323917,-0.0396665994727412,0.0771741465261038,-2.13197515197549e-09,-1.37129890775966e-08,1.29670579829266e-09 +0.466,-2.76155522928312e-09,7.01884769402361e-09,1.94346760212794e-09,3.32612409836841e-10,1.06437127167514e-09,0.079999996674976,-0.000103215161726105,-5.10398341134823e-05,9.42092081459948e-05,4.2552766865711e-12,2.1090768020926e-10,-3.22172843958412e-10,1.71767439681447e-09,1.43982048506075e-10,1.23165366794353e-10,1.3010426069826e-11,-1.16226472890446e-10,1.04950770296597e-10 +0.468,-1.87645252949049e-06,-9.00604669291927e-07,1.6918961448821e-06,3.32582707901485e-10,1.0645241771412e-09,0.0799999966743553,-1.49764250480244e-09,5.68054284166841e-10,2.98302615248102e-10,6.78450351454529e-12,2.2724530590601e-10,-3.23248372513518e-10,0.0397266195553138,0.0195146558834222,-0.0356145246726939,1.02066792517785e-09,6.16130410580061e-09,-3.49546780409326e-10 +0.47,-2.76754579930233e-09,7.02111991116028e-09,1.94466081258893e-09,3.32639547850899e-10,1.06528025289876e-09,0.079999996673683,5.56913164951504e-05,2.70187894202064e-05,-4.8248890544781e-05,8.33794838728252e-12,2.35552896632462e-10,-3.2357103108005e-10,2.32168342710614e-09,1.00830802041152e-10,-2.38307637512314e-10,1.61112442831346e-10,-2.39825520553793e-10,1.80411241501588e-10 +0.472,-1.65368726350989e-06,-7.92529511611101e-07,1.49890058270298e-06,3.32616059695034e-10,1.06546638872773e-09,0.079999996673061,-1.48835577109402e-09,5.68457607375005e-10,2.97349384698053e-10,7.42895328587067e-12,2.26286003823794e-10,-3.22526727547512e-10,-0.0196259200424141,-0.00948042433749836,0.0176416793535834,-2.81458883977236e-10,-3.39745592770057e-09,4.23272528138341e-10 +0.474,-2.7734992223867e-09,7.02339374158978e-09,1.94585021012772e-09,3.32669263664043e-10,1.06618539691405e-09,0.0799999966723929,-2.28123636745059e-05,-1.0902907929787e-05,2.23178268695528e-05,7.21211285137357e-12,2.2196307292166e-10,-3.21877940967496e-10,1.74613470384222e-09,8.93382590128055e-11,-2.43403387722996e-10,1.54173548927439e-10,-2.08600497986211e-10,1.28369537222284e-10 +0.476,-1.74493671820791e-06,-8.36141143330249e-07,1.58817189018119e-06,3.3264490814644e-10,1.06635424101942e-09,0.0799999966717735,-1.48137123227865e-09,5.68814960411057e-10,2.96375771147161e-10,8.04564748158042e-12,2.2545160183185e-10,-3.22013249398622e-10,0.00911040108479182,0.00434580822630122,-0.00849282171802234,3.30464822173611e-10,1.32576241651606e-09,-2.42861286647997e-11 +0.478,-2.77942470731582e-09,7.02566900143142e-09,1.94703571321231e-09,3.32701446253969e-10,1.06708720332138e-09,0.0799999966711049,1.36292406646614e-05,6.48032497541787e-06,-1.16534600025366e-05,8.53397214006801e-12,2.27266122587724e-10,-3.21975085482155e-10,9.01676736742463e-10,4.07660016874201e-11,-1.73255507162165e-10,7.84962372879802e-11,-1.35742111994405e-10,4.16333634223195e-11 +0.48,-1.69041975554927e-06,-8.10219843428578e-07,1.54155805017105e-06,3.32679044035e-10,1.06726330550977e-09,0.0799999966704856,-1.47776452533168e-09,5.68978024417806e-10,2.95682749118513e-10,8.35963243073234e-12,2.24908633383872e-10,-3.21846715944933e-10,-0.00464366173787741,-0.00229825190475879,0.00405256810249487,-5.22585447138319e-11,-8.25728374565759e-10,6.93889390401976e-11 +0.482,-2.78533576541715e-09,7.02794491352909e-09,1.94821844420878e-09,3.32734884783692e-10,1.06798683785492e-09,0.0799999966698175,-4.94540628684803e-06,-2.71268264361718e-06,4.55681240744271e-06,8.32493796121269e-12,2.23963209089461e-10,-3.21697529725995e-10,2.47875721689616e-10,-3.29597460455239e-11,-9.63855731349823e-11,2.45029690981433e-11,-5.03069808041093e-11,1.90819582368693e-11 +0.484,-1.71020138069666e-06,-8.21070574003047e-07,1.55978529980082e-06,3.32712343786845e-10,1.06815915834613e-09,0.0799999966691988,-1.47677302244492e-09,5.68846185433624e-10,2.95297206825973e-10,8.45764430712491e-12,2.24707405460656e-10,-3.21770388111986e-10,0.00207086092113913,0.000993181624832707,-0.00199967267874509,4.96564594998361e-11,3.17454396103755e-10,-4.85722573273506e-11 +0.486,-2.79124285750693e-09,7.03022029827083e-09,1.94939963303609e-09,3.3276871536092e-10,1.06888566747676e-09,0.0799999966685304,3.33803739770849e-06,1.26004385571365e-06,-3.44187830753767e-06,8.52356379921203e-12,2.25233026673876e-10,-3.21891818755304e-10,-1.1183545409188e-10,-6.31005664386563e-11,-8.71698546678345e-11,-1.12757025938492e-11,-4.51028103753969e-11,-1.73472347597681e-11 +0.488,-1.69684923110583e-06,-8.16030398580192e-07,1.54601778657067e-06,3.32746438042042e-10,1.06906009045282e-09,0.0799999966679112,-1.47722036426129e-09,5.68593783167869e-10,2.94948527407301e-10,8.41254149674952e-12,2.24526994219154e-10,-3.21839777051025e-10,-0.0011045377052224,-0.000521858223518148,0.000956311746588485,-3.664603343001e-11,-2.02962646689286e-10,-1.38777878078144e-11 +0.49,-2.79715173896397e-09,7.0324946734035e-09,1.95057942714572e-09,3.32802365526907e-10,1.06978377545364e-09,0.0799999966672431,-1.08011342318109e-06,-8.27389038358938e-07,3.83368678816276e-07,8.37697966549199e-12,2.24421176087119e-10,-3.21947329906535e-10,-2.6324428747948e-10,-9.58434720477185e-11,-8.077306185017e-11,-1.7130394325271e-11,-3.46944695195361e-12,-3.81639164714897e-11 +0.492,-1.70116968479855e-06,-8.19339954733628e-07,1.54755126128593e-06,3.32779945960704e-10,1.06995777515717e-09,0.0799999966666235,-1.47827334141121e-09,5.68210409279679e-10,2.94625435159901e-10,8.34401991944843e-12,2.24513116431346e-10,-3.21992432716911e-10,0.000463828053141054,0.000245189901802028,-0.000434470052057718,-1.38777878078144e-11,5.89805981832114e-11,-3.55618312575245e-11 +0.494,-2.80306483232962e-09,7.03476751504062e-09,1.95175792888636e-09,3.32835741606585e-10,1.07068182791936e-09,0.0799999966659551,7.75198789383125e-07,1.53370568849176e-07,-1.3545115294146e-06,8.32146851426074e-12,2.24657098479852e-10,-3.22089577231565e-10,-3.17915182027062e-10,-7.43762690325055e-11,-6.94973592563208e-11,-1.9298798670242e-11,-1.69135538907739e-11,-4.51028103753969e-11 +0.496,-1.69806888964102e-06,-8.18726472458231e-07,1.54213321516827e-06,3.32813231834761e-10,1.07085640355109e-09,0.0799999966653351,-1.47954500213931e-09,5.67912904203549e-10,2.94347445722875e-10,8.26682472476747e-12,2.24445462215783e-10,-3.22172843958412e-10,-0.000275073362959038,-0.000121554685371047,0.00026047234963529,-2.32019264911898e-11,-5.24753851482984e-11,-4.77048955893621e-11 +0.498,-2.80898301233817e-09,7.03703916665743e-09,1.95293531866925e-09,3.32868808905484e-10,1.07157960976823e-09,0.0799999966646664,-3.25094662453028e-07,-3.32848172635014e-07,-3.12622130873435e-07,8.22866080829598e-12,2.24447196939259e-10,-3.22280396813923e-10,-3.30979818205512e-10,-2.81892564846231e-11,-6.00648003556969e-11,-1.84314369322536e-11,-8.67361737988403e-12,-7.28583859910258e-11 +0.5,-1.69936926829083e-06,-8.20057865148771e-07,1.54088272664478e-06,3.32846146477994e-10,1.07175419233885e-09,0.079999996664046,-1.48086892141214e-09,5.6780014717761e-10,2.94107186521453e-10,8.19309897703845e-12,2.24410767746263e-10,-3.22464277502376e-10,9.07310488133978e-05,4.57664958448261e-05,-5.81762592743658e-05,-1.7997756063259e-11,6.93889390390722e-12,-6.41847686111418e-11 +0.502,-2.81490648802382e-09,7.03931036724614e-09,1.95411174741533e-09,3.32901581301392e-10,1.07247725283921e-09,0.0799999966633765,3.78295328005637e-08,-1.49782189255709e-07,-5.45327167970899e-07,8.15666978404294e-12,2.24474952514875e-10,-3.22537135888367e-10,-3.41198423681188e-10,5.72458747072346e-11,-1.27935856353289e-11,-2.62376925741488e-11,2.64545330086463e-11,-6.76542155630954e-11 +0.504,-1.69921795015963e-06,-8.20656993905794e-07,1.5387014179729e-06,3.3287877315713e-10,1.07265209214891e-09,0.0799999966627558,-1.48223371510686e-09,5.68029130676439e-10,2.94056012178911e-10,8.08814820674186e-12,2.24516585878298e-10,-3.22734894364629e-10,-7.75218957766147e-05,-4.51224840911784e-05,0.000103048843655244,-2.38524477946811e-11,1.47451495458028e-11,-1.11022302462516e-10 +0.506,-2.82083542288425e-09,7.04158248376885e-09,1.95528797146405e-09,3.32933933894219e-10,1.07337531918272e-09,0.0799999966620856,-2.72258050305896e-07,-3.30272125620423e-07,-1.33131793349922e-07,8.06125999286422e-12,2.24533933113058e-10,-3.22981225098217e-10,-3.37756081783546e-10,1.07119174641568e-10,1.76724954115137e-11,-1.64798730217797e-11,-3.46944695195361e-12,-1.2490009027033e-10 +0.508,-1.70030698236085e-06,-8.21978082408276e-07,1.5381688907995e-06,3.32911018197102e-10,1.07355022788136e-09,0.0799999966614639,-1.483584739434e-09,5.68457607375005e-10,2.94126702160557e-10,8.02222871465474e-12,2.2450270809049e-10,-3.2323449472571e-10,1.35392181136156e-05,-5.49607321459477e-06,2.44808387971085e-05,-2.03830008427275e-11,1.5178830414797e-11,-1.21430643318376e-10 +0.51,-2.82676976184199e-09,7.04385631419835e-09,1.95646447827269e-09,3.32966022809078e-10,1.07427333001509e-09,0.0799999966607927,-2.18101177851433e-07,-3.52256418478802e-07,-3.52084381614881e-08,7.97972798949331e-12,2.24594648434717e-10,-3.23466947671491e-10,-3.3133218391157e-10,1.8474805019153e-10,6.70036942596041e-11,-1.77809156287623e-11,5.3776427755281e-11,-1.11022302462516e-10 +0.512,-1.70117938707226e-06,-8.23387108082191e-07,1.53802805704685e-06,3.3294293710906e-10,1.0744486064751e-09,0.07999999666017,-1.48491006816964e-09,5.69196599575771e-10,2.94394716937596e-10,7.95110505213969e-12,2.24717813801511e-10,-3.2367858393556e-10,-1.93105236662161e-05,-2.23718021104962e-05,5.30330351031573e-05,-9.97465998686663e-12,3.77302356024955e-11,-1.17093834628434e-10 +0.514,-2.83270940211466e-09,7.04613310059665e-09,1.95764205714044e-09,3.32997827229287e-10,1.07517220127029e-09,0.0799999966594979,-2.95343272516297e-07,-4.41743626920787e-07,1.76923702251141e-07,7.93982934954584e-12,2.24745569377127e-10,-3.23935323010005e-10,-3.10000506167918e-10,2.37657116208822e-10,8.55435514091062e-11,-8.89045781438113e-12,3.16587034365767e-11,-1.38777878078144e-10 +0.516,-1.70236076016232e-06,-8.25154082589874e-07,1.53873575185585e-06,3.32974696426458e-10,1.07534758875261e-09,0.0799999966588743,-1.48615007019431e-09,5.70147228040607e-10,2.94736891143232e-10,7.91554322088216e-12,2.24844448615258e-10,-3.24233695447873e-10,7.04905971375852e-06,-7.36829455956487e-06,2.31283244509286e-05,-1.3010426069826e-11,3.59955121265187e-11,-1.4658413372004e-10 +0.518,-2.83865400239544e-09,7.04841368950881e-09,1.95882100470501e-09,3.3302948940217e-10,1.07607157906475e-09,0.079999996658201,-2.67147033661263e-07,-4.71216805159047e-07,2.69437000054856e-07,7.88778764526654e-12,2.24889551425633e-10,-3.24521659544885e-10,-2.8796409701215e-10,2.62810606610486e-10,9.51929507442272e-11,-2.38524477946811e-12,4.85722573273506e-11,-1.4658413372004e-10 +0.52,-1.70342934829697e-06,-8.2703894981051e-07,1.53981349985607e-06,3.33006247577039e-10,1.07624714695831e-09,0.0799999966575762,-1.48730192658236e-09,5.71198470467049e-10,2.95117662946209e-10,7.90600224176429e-12,2.25038737644567e-10,-3.24820031982753e-10,2.5759738038391e-06,-5.74970127932561e-06,1.75880806229864e-05,1.0842021724855e-12,6.20163642661708e-11,-1.47451495458028e-10 +0.522,-2.84460321010177e-09,7.05069848339068e-09,1.9600014753568e-09,3.33061113411137e-10,1.07697173401533e-09,0.0799999966569017,-2.56843138445907e-07,-4.94215610276349e-07,3.39789322546802e-07,7.89212445395648e-12,2.25137616882698e-10,-3.25111465526717e-10,-2.66117423236567e-10,2.70400021817885e-10,1.05926552251834e-10,1.73472347597681e-12,4.90059381963448e-11,-1.5178830414797e-10 +0.524,-1.70445672085075e-06,-8.29015812251616e-07,1.54117265714626e-06,3.33037816074855e-10,1.07714769742584e-09,0.0799999966562758,-1.48836639627531e-09,5.7228007055432e-10,2.95541369155216e-10,7.9129411356682e-12,2.25234761397352e-10,-3.25427185199345e-10,9.78547562533077e-06,2.14323762730284e-06,2.00746537448726e-08,1.25767452008318e-11,1.99493199737333e-11,-1.30971622436249e-10 +0.526,-2.85055667568687e-09,7.0529876036729e-09,1.96118364083342e-09,3.3309276517568e-10,1.07787267306092e-09,0.0799999966556,-2.17701235944584e-07,-4.85642659767138e-07,3.39869621161781e-07,7.9424314347598e-12,2.25217414162593e-10,-3.25635352016462e-10,-2.50152546246718e-10,2.74736830507827e-10,8.26162055433954e-11,1.19262238973405e-11,3.03576608295941e-11,-1.24032728532342e-10 +0.528,-1.70532752579453e-06,-8.30958382890684e-07,1.54253213563091e-06,3.33069585800594e-10,1.07804856708249e-09,0.0799999966549732,-1.48936700646029e-09,5.73379017876352e-10,2.9587183397739e-10,7.96064603125756e-12,2.25356192040671e-10,-3.25923316113474e-10,8.04787015024412e-06,5.28262611605712e-06,-8.81943801843419e-06,1.56125112837913e-11,5.3776427755281e-11,-1.40512601554121e-10 +0.53,-2.85651414371271e-09,7.05528111974441e-09,1.96236712816933e-09,3.33124607759805e-10,1.07877409782908e-09,0.0799999966542963,-1.85509755343607e-07,-4.64512155302909e-07,3.04591869088044e-07,8.00488147989497e-12,2.25432519873614e-10,-3.26197402422678e-10,-2.44081014080799e-10,2.5652223401007e-10,8.00141203294302e-11,2.05998412772246e-11,5.20417042793042e-11,-1.25767452008318e-10 +0.532,-1.7060695648159e-06,-8.32816431511896e-07,1.54375050310726e-06,3.33101605326513e-10,1.07895029716198e-09,0.0799999966536684,-1.49034333051662e-09,5.74405106812392e-10,2.96191890458708e-10,8.04304539636646e-12,2.25564358857788e-10,-3.26426385921507e-10,7.84347502853949e-06,8.19262062703994e-06,-1.68003911563824e-05,1.86482773667507e-11,4.68375338513738e-11,-1.36175792864179e-10 +0.534,-2.86247551703478e-09,7.05757874017165e-09,1.96355189573116e-09,3.3315677994139e-10,1.07967635526451e-09,0.0799999966529906,-1.54135855229449e-07,-4.31741672794749e-07,2.37390304462515e-07,8.07947458936197e-12,2.25619870009019e-10,-3.26742105594135e-10,-2.46412048751643e-10,2.35271871429354e-10,4.90059381963448e-11,2.16840434497101e-11,3.46944695195361e-11,-1.31838984174237e-10 +0.536,-1.70668610823682e-06,-8.34543398203075e-07,1.54470006432511e-06,3.33133923224871e-10,1.07985277664202e-09,0.0799999966523615,-1.49132897871162e-09,5.75346194298109e-10,2.96387914211493e-10,8.1297815701653e-12,2.25703136735866e-10,-3.26953741858204e-10,4.97825077602071e-06,8.49846755468508e-06,-1.92557116085456e-05,2.49366499671666e-11,1.99493199737333e-11,-1.06685493772574e-10 +0.538,-2.86844083294963e-09,7.05988012494885e-09,1.96473744738801e-09,3.33189299067671e-10,1.08057916781146e-09,0.0799999966516828,-1.34222852125366e-07,-3.97747802576009e-07,1.60367458028332e-07,8.17922118923064e-12,2.25699667288914e-10,-3.27168847569226e-10,-2.5373041341592e-10,2.32452945780892e-10,4.02239005992122e-11,2.36356073601836e-11,1.38777878078144e-11,-1.31838984174237e-10 +0.54,-1.70722299964532e-06,-8.36134389413379e-07,1.54534153415722e-06,3.33166640109628e-10,1.08075557531118e-09,0.0799999966510528,-1.49234390036529e-09,5.76276006081233e-10,2.9654880981389e-10,8.22432399960603e-12,2.25758647887097e-10,-3.27481097794901e-10,2.43683838298952e-06,7.64632801519836e-06,-1.8745930263804e-05,2.10335221462184e-11,2.81892564846231e-11,-1.22298005056365e-10 +0.542,-2.87441020855109e-09,7.06218522897317e-09,1.96592364262727e-09,3.33222196363669e-10,1.08148220240301e-09,0.0799999966503729,-1.24475498593408e-07,-3.67162490515216e-07,8.53837369731158e-08,8.26335527781551e-12,2.25812424314853e-10,-3.27658039589451e-10,-2.66117423236567e-10,1.95806912350882e-10,2.50450701844151e-11,2.29850860566927e-11,2.86229373536173e-11,-8.50014503228635e-11 +0.544,-1.7077209016397e-06,-8.3760303937544e-07,1.54568306910512e-06,3.33199693530739e-10,1.08165882500844e-09,0.0799999966497422,-1.49340837005823e-09,5.77059233730636e-10,2.96648990094628e-10,8.31626434383281e-12,2.25873139636512e-10,-3.27821103596193e-10,-3.55061412129348e-07,5.55430267751289e-06,-1.51804751494927e-05,2.5804011705155e-11,2.94902990916057e-11,-1.0321604682062e-10 +0.546,-2.88038384203132e-09,7.06449346590809e-09,1.96711023858764e-09,3.33255461421045e-10,1.08238569496155e-09,0.0799999966490616,-1.25895744241926e-07,-3.44945279805164e-07,2.46618363751449e-08,8.36657132463613e-12,2.25930385511219e-10,-3.28070903776733e-10,-2.81052308162555e-10,1.70219741080224e-10,8.89045781438113e-12,2.05998412772246e-11,2.99239799605999e-11,-1.56992474575901e-10 +0.548,-1.70822448461666e-06,-8.3898282049466e-07,1.54578171645062e-06,3.33233159816038e-10,1.08256254655048e-09,0.0799999966484299,-1.49453257929088e-09,5.77740112694957e-10,2.96684551925885e-10,8.3986637089417e-12,2.25992835556354e-10,-3.28449073494496e-10,-2.45327800500564e-06,3.03188398866061e-06,-1.01922370283197e-05,1.66967134562768e-11,2.64545330086463e-11,-1.4658413372004e-10 +0.55,-2.88636197234848e-09,7.06680442635887e-09,1.96829697679535e-09,3.33289056075881e-10,1.08328966630378e-09,0.0799999966477478,-1.35708856261948e-07,-3.32817743850522e-07,-1.61071117381339e-08,8.43335817846124e-12,2.26036203643254e-10,-3.28657240311614e-10,-2.94550625209999e-10,1.75640751942652e-10,1.94072188874905e-11,1.90819582357449e-11,2.38524477946811e-11,-8.41340885848751e-11 +0.552,-1.70876732004171e-06,-8.40314091470062e-07,1.54571728800366e-06,3.33266893248751e-10,1.08346669136505e-09,0.0799999966471152,-1.49571078179172e-09,5.78442675702728e-10,2.96762180801435e-10,8.47499154188468e-12,2.26088245347533e-10,-3.28785609848836e-10,-3.89456869531734e-06,4.55486776768099e-07,-4.65939591597074e-06,1.69135538907739e-11,2.25514051876985e-11,-9.10729824887823e-11 +0.554,-2.89234481547565e-09,7.06911819706169e-09,1.96948402551855e-09,3.33322956042048e-10,1.08419401928517e-09,0.0799999966464327,-1.51287131043218e-07,-3.30995796743449e-07,-3.47446954020169e-08,8.50101239402434e-12,2.26126409264005e-10,-3.29021532241569e-10,-3.05446857043478e-10,1.67183974997265e-10,4.55364912443911e-12,3.25260651745651e-12,1.38777878078144e-11,-1.17093834628434e-10 +0.556,-1.70937246856588e-06,-8.41638074657036e-07,1.54557830922206e-06,3.33300897298328e-10,1.08437119700211e-09,0.0799999966457992,-1.4969325692199e-09,5.79111411602717e-10,2.96780395397933e-10,8.48800196795451e-12,2.26143756498764e-10,-3.2925398518735e-10,0.0602852966834904,0.0295665262123583,-0.0533482914506603,1.64972202565394e-09,5.88244730703735e-09,4.336808689942e-09 +0.558,-2.89833254575253e-09,7.0714346427081e-09,1.97067114710014e-09,3.3335690804992e-10,1.08509859431116e-09,0.0799999966451156,0.000240989899602918,0.00011793510905269,-0.000213427910498043,1.50999004966401e-11,2.49656198492154e-10,-3.11674297481801e-10,5.65435285398984e-08,-1.68552238138941e-08,-1.00838391456359e-08,7.92118107217908e-10,-7.94373247736678e-09,1.10180961576667e-08 +0.56,-7.4541287015421e-07,-3.69897638446276e-07,6.91866667229882e-07,3.33361296900314e-10,1.08536982179608e-09,0.0799999966445525,-1.2707584550603e-09,5.1169051634714e-10,2.56445038815389e-10,1.16564743968261e-11,1.94368826589297e-10,-2.85181600556683e-10,-0.212469041789028,-0.100715454797026,0.188444134314102,-4.40337870333262e-09,-3.47317660742696e-08,-7.41975179213704e-05 +0.562,-2.90341557957277e-09,7.07348140477349e-09,1.97169692725541e-09,3.33403533947507e-10,1.08587606961752e-09,0.0799999966439749,-0.000608886267553193,-0.000284926710135413,0.000540348626758367,-2.51361431669039e-12,1.10729134195075e-10,-2.97101745982964e-07,-6.5027112384e-08,1.74318025292219e-08,9.30408094318433e-09,-6.81529485624387e-10,8.44420020018609e-09,-1.22766380394878e-08 +0.564,-3.18095794036698e-06,-1.50960447898793e-06,2.85326117426335e-06,3.33351242443047e-10,1.08581273833286e-09,0.0799999954561455,-1.5308669045963e-09,5.81417726464028e-10,2.93661362588127e-10,8.93035645432859e-12,2.28145627390042e-10,-3.34288152714634e-10,0.270566494897374,0.125992670368773,-0.242465852167404,4.9884141956058e-09,4.98481464439315e-08,0.000148389744936139 +0.566,-2.90953904719116e-09,7.07580707567934e-09,1.97287157270576e-09,3.33439255373325e-10,1.08678865212708e-09,0.0799999966426378,0.000473379712036302,0.000219043971339677,-0.00042951478191125,1.74400424657328e-11,3.10121719970801e-10,2.96457233761593e-07,-9.62945001514725e-09,2.22521653880925e-09,3.36568880404675e-09,-9.98983881728142e-10,1.65492619608187e-09,-1.65926300477181e-09 +0.568,-1.28743909222177e-06,-6.33428593629221e-07,1.13520204661835e-06,3.3342100261291e-10,1.08705322521274e-09,0.0799999966419744,-1.56938470465689e-09,5.90318592619265e-10,3.07124117804314e-10,4.93442092741602e-12,2.34765332174369e-10,-3.40925204733722e-10,-0.16789353927637,-0.0804538194110452,0.151756476031548,-4.35697485035024e-09,-2.66783123370473e-08,-7.41989230473859e-05 +0.57,-2.91581658600978e-09,7.07816835004982e-09,1.97410006917698e-09,3.33458993057034e-10,1.08772771345578e-09,0.0799999966412741,-0.000198194445069177,-0.000102771306304504,0.000177511122214941,1.21430643318376e-14,2.03408470622612e-10,-3.38458427950883e-10,2.58690638355041e-09,4.68375338513738e-10,5.63243028606219e-10,-3.27429056090622e-11,-5.94142790522056e-11,1.16226472890446e-10 +0.572,-2.08021687249848e-06,-1.04451381884724e-06,1.84524653547812e-06,3.33421051185168e-10,1.08786685909523e-09,0.0799999966406206,-1.55903707912269e-09,5.9219209397332e-10,3.09377089918738e-10,4.80344930497977e-12,2.3452767505816e-10,-3.4046029884216e-10,0.0770522261228601,0.0396619742168337,-0.0677267228810619,1.98799310346942e-09,1.18351509148517e-08,-6.20163642661708e-10 +0.574,-2.92205273432627e-09,7.08053711842571e-09,1.97533757753665e-09,3.33478206854254e-10,1.08866582415601e-09,0.0799999966399122,0.000110014459422263,5.58765905628311e-05,-9.33957693093067e-05,7.96411547820951e-12,2.50749074282019e-10,-3.40939082521529e-10,4.93740248337966e-09,3.77302356029065e-10,-4.62629066997432e-10,4.17851517275957e-10,-4.83120488057925e-10,4.25874613349953e-10 +0.576,-1.64015903480943e-06,-8.21007456595912e-07,1.47166345824089e-06,3.3345290764708e-10,1.08886985539236e-09,0.0799999966392568,-1.53928746918917e-09,5.93701303397436e-10,3.07526573650749e-10,6.47485537408361e-12,2.32595193105929e-10,-3.3875680038876e-10,-0.0385065561378595,-0.019324299762366,0.0342428233702381,-3.9985376121262e-10,-6.67868538250933e-09,9.45424294405046e-10 +0.578,-2.92820988420303e-09,7.0829119236393e-09,1.97656768383125e-09,3.3350410627575e-10,1.08959620492843e-09,0.0799999966385572,-4.40117651291705e-05,-2.14206084866309e-05,4.35755241716419e-05,6.36470043335908e-12,2.24034332751983e-10,-3.37157385343909e-10,4.18529143634798e-09,2.7430314963473e-10,-6.40763483941083e-10,4.42137645939555e-10,-4.70977423729331e-10,3.59087759529561e-10 +0.58,-1.81620609532611e-06,-9.06689890542434e-07,1.64596555492745e-06,3.33478366448814e-10,1.08976599272337e-09,0.0799999966379082,-1.52254630344378e-09,5.94798515995975e-10,3.04963519714984e-10,8.24340595784178e-12,2.30711283411011e-10,-3.37320449350642e-10,0.0178422008424557,0.00888017793912294,-0.0165589160086709,7.86046575051945e-10,2.53573204100754e-09,-3.46944694961424e-12 +0.582,-2.93430006941681e-09,7.08529111770329e-09,1.97778753791011e-09,3.33537079899582e-10,1.09051905006208e-09,0.0799999966372079,2.73570382406524e-05,1.41001032698609e-05,-2.2660139863042e-05,9.50888673356686e-12,2.34177260916013e-10,-3.37171263131708e-10,2.47837774608456e-09,8.52182907573606e-11,-4.94938291739632e-10,2.91216703529606e-10,-3.2309224740068e-10,2.04697370165263e-10 +0.584,-1.7067779423635e-06,-8.5028947746299e-07,1.55532499547528e-06,3.33516401995748e-10,1.09070270176703e-09,0.0799999966365595,-1.51263279245944e-09,5.95139389159005e-10,3.02983766548026e-10,9.40827277196021e-12,2.29418914421409e-10,-3.36501659869981e-10,-0.00918035081976094,-0.00474752210634365,0.00793516668833818,9.54097911787243e-12,-1.68615121864946e-09,2.90566182226115e-10 +0.586,-2.94035060058664e-09,7.08767167525992e-09,1.97899947297631e-09,3.3357471299067e-10,1.09143672571976e-09,0.0799999966358619,-9.36436503839142e-06,-4.88998515551369e-06,9.08052689031074e-06,9.54705065003835e-12,2.27432656041415e-10,-3.36008998402803e-10,1.02844707576544e-09,-1.18828558104411e-10,-3.56485674313234e-10,1.47668335892526e-10,-1.85181731060524e-10,1.0842021724855e-10 +0.588,-1.74423540251706e-06,-8.69849418085045e-07,1.59164710303653e-06,3.33554590198348e-10,1.0916124323912e-09,0.0799999966352155,-1.50851900415638e-09,5.94664074926587e-10,3.01557823850773e-10,9.99894611553031e-12,2.28678187497166e-10,-3.36067979000987e-10,0.00408219169117885,0.00201316303059286,-0.00399923687829234,1.90819582357448e-10,5.46871575801688e-10,7.80625564189563e-12 +0.59,-2.94638467660327e-09,7.09005033155963e-09,1.98020570427171e-09,3.33614708775132e-10,1.09235143846975e-09,0.0799999966345176,6.964401726324e-06,3.16266696685774e-06,-6.91642062285863e-06,1.03103289794681e-11,2.29620142344622e-10,-3.35977773380236e-10,1.80329926338651e-10,-2.81892564846231e-10,-2.99239799605999e-10,4.77048955893617e-11,-1.09287578986539e-10,1.26634813746307e-10 +0.592,-1.71637779561177e-06,-8.57198750217614e-07,1.56398142054509e-06,3.33595831514266e-10,1.09253091296058e-09,0.0799999966338716,-1.50779768445103e-09,5.93536504667202e-10,3.00360864652349e-10,1.01897656978878e-11,2.2824103718122e-10,-3.35561439746001e-10,-0.00220524650504459,-0.00109118140304703,0.00186745998699555,-4.05491612509578e-11,-4.37583996815149e-10,1.22298005056365e-10 +0.594,-2.95241586734107e-09,7.0924244775783e-09,1.98140714773032e-09,3.33655467837923e-10,1.09326440261848e-09,0.0799999966331754,-1.85658429385435e-06,-1.20205864533041e-06,5.53419325123594e-07,1.01481323344643e-11,2.27869806357361e-10,-3.3548858136001e-10,-2.02935541634974e-10,-4.53630188967935e-10,-2.79073639197769e-10,-9.75781955236953e-12,-1.05384451165591e-10,4.07660016854549e-11 +0.596,-1.72380413278718e-06,-8.62006984798935e-07,1.56619509784559e-06,3.33636424043604e-10,1.09344239218601e-09,0.0799999966325296,-1.50860942661757e-09,5.9172198391133e-10,2.99244570095558e-10,1.01507344196783e-11,2.27819499376558e-10,-3.35398375739259e-10,0.000920147966772688,0.000504063128476533,-0.000890572649046155,1.5178830414797e-12,7.45931094670026e-11,4.59701721133853e-11 +0.598,-2.95845030504754e-09,7.09479136551394e-09,1.9826041260107e-09,3.33696070775602e-10,1.09417568061598e-09,0.0799999966318338,1.8240075732364e-06,8.14193868575729e-07,-3.00887127106103e-06,1.01542038666302e-11,2.28168178795229e-10,-3.35304700671557e-10,-3.41876050038991e-10,-4.16767315103428e-10,-2.43186547288498e-10,-3.7513395167998e-11,-4.64038529823796e-11,5.11743425413158e-11 +0.6,-1.71650810249424e-06,-8.58750209324632e-07,1.55415961276134e-06,3.33677040859071e-10,1.09435506490119e-09,0.0799999966311884,-1.50997693081772e-09,5.90054914650917e-10,2.98271823906404e-10,1.00006808390063e-11,2.27633883964628e-10,-3.35193678369094e-10,-0.000559125497854098,-0.000254949945703575,0.000509781167040874,-7.15573433840428e-11,-1.56125112837913e-10,6.76542155630954e-11 +0.602,-2.96449021277082e-09,7.09715158517255e-09,1.98379721330633e-09,3.33736073498958e-10,1.09508621615184e-09,0.079999996630493,-4.1249441817999e-07,-2.05605914238571e-07,-9.6974660289753e-07,9.86797449309406e-12,2.27543678343878e-10,-3.35034083809304e-10,-4.0158848468863e-10,-3.80554962542412e-10,-1.9147010366094e-10,-7.15573433840432e-11,-5.33427468862868e-11,3.29597460435593e-11 +0.604,-1.71815808016696e-06,-8.59572632981587e-07,1.55028062634975e-06,3.33716512757043e-10,1.09526523961456e-09,0.0799999966298482,-1.51158328475648e-09,5.88532694800747e-10,2.9750594349176e-10,9.71445146547011e-12,2.27420512977083e-10,-3.3506183938492e-10,0.000173753766284862,9.19096959997588e-05,-0.000117154466791787,-7.329206686002e-11,-2.60208521396521e-12,-1.99493199737333e-11 +0.606,-2.97053654590984e-09,7.09950571595175e-09,1.98498723708029e-09,3.3377493130482e-10,1.09599589820375e-09,0.0799999966291528,2.82520646959459e-07,1.62032869760464e-07,-1.43836447006468e-06,9.57480622565398e-12,2.27533270003022e-10,-3.35113881089199e-10,-4.32867717364837e-10,-1.95806912350882e-10,-8.5109870540112e-11,-8.69530142333374e-11,-2.03830008427275e-11,-3.12250225675825e-11 +0.608,-1.71702799757912e-06,-8.58924501502545e-07,1.54452716846949e-06,3.33754811981946e-10,1.09617537269457e-09,0.0799999966285078,-1.51331475562594e-09,5.87749467151343e-10,2.971655040096e-10,9.36663940853676e-12,2.27338980973712e-10,-3.3518673947519e-10,-0.00016661404059811,-0.000100940578378478,0.000216276821105032,-9.95297594341692e-11,-3.55618312575245e-11,-5.89805981832114e-11 +0.61,-2.97658980493234e-09,7.10185671382035e-09,1.98617589909633e-09,3.33812397862454e-10,1.09690525412764e-09,0.079999996627812,-3.83935515432983e-07,-2.41729443753447e-07,-5.73257185644548e-07,9.1766871879173e-12,2.27391022677992e-10,-3.35349803481932e-10,-4.48669964028762e-10,-6.33174068731534e-11,2.97071395261028e-11,-1.00830802041152e-10,2.21177243187043e-11,-9.02056207507939e-11 +0.612,-1.71856373964085e-06,-8.59891419277559e-07,1.54223413972691e-06,3.33791518730697e-10,1.09708493678529e-09,0.0799999966271664,-1.51510943548205e-09,5.87496197523851e-10,2.97284332567704e-10,8.96331620037215e-12,2.27427451870987e-10,-3.35547561958193e-10,1.88543589378295e-05,-1.95220267902585e-05,6.51406162083949e-05,-1.00830802041152e-10,3.25260651745651e-11,-1.12757025938492e-10 +0.614,-2.98265024267427e-09,7.10420669861045e-09,1.9873650364266e-09,3.33848251127256e-10,1.09781496393513e-09,0.0799999966264698,-3.08518079681664e-07,-3.1981755091448e-07,-3.12694720810968e-07,8.77336397975269e-12,2.2752112693869e-10,-3.35800831585686e-10,-4.36364269371103e-10,1.1145598333151e-10,1.22298005056365e-10,-9.86623976961808e-11,3.33934269125535e-11,-1.25767452008318e-10 +0.616,-1.71979781195958e-06,-8.61170689481217e-07,1.54098336084367e-06,3.33826612186616e-10,1.09799502129304e-09,0.0799999966258232,-1.51685489255954e-09,5.87942021457177e-10,2.9777352458793e-10,8.56866660958743e-12,2.27561025578637e-10,-3.36050631766227e-10,-4.52877592469358e-05,-5.49834637455364e-05,0.000126328852977433,-1.00613961606655e-10,2.64545330086463e-11,-1.3010426069826e-10 +0.618,-2.98871766224451e-09,7.10655846669628e-09,1.98855613052495e-09,3.33882525793694e-10,1.09872520803744e-09,0.0799999966251256,-4.89669116669408e-07,-5.39751405896626e-07,1.92620691098766e-07,8.37090813332607e-12,2.27626945070724e-10,-3.36321248628479e-10,-3.98715348931544e-10,2.28549817959944e-10,1.94722710178396e-10,-8.93382590128055e-11,7.71951946809679e-11,-1.62196645003831e-10 +0.62,-1.72175648842626e-06,-8.63329695104803e-07,1.54175384360807e-06,3.3386009581915e-10,1.09890552907332e-09,0.0799999966244779,-1.51844975395526e-09,5.88856220729017e-10,2.98552415428643e-10,8.21131357353621e-12,2.27869806357361e-10,-3.36699418346242e-10,1.20660952746248e-05,-2.16542979294271e-05,6.58420089283406e-05,-7.89299181569442e-11,7.89299181569447e-11,-1.85615411929518e-10 +0.622,-2.99479146126033e-09,7.10891389157919e-09,1.98975034018667e-09,3.33915371047988e-10,1.09963668726287e-09,0.0799999966237788,-4.41404735570909e-07,-6.26368597614335e-07,4.55988726812128e-07,8.0551884606983e-12,2.27942664743352e-10,-3.37063710276197e-10,-3.43990244275338e-10,3.43692088677905e-10,2.38958158815805e-10,-7.17741838185399e-11,7.02563007770606e-11,-1.71737624121704e-10 +0.624,-1.72352210736854e-06,-8.6583516949526e-07,1.54357779851531e-06,3.33892316572992e-10,1.0998172997323e-09,0.0799999966231296,-1.51982571493236e-09,5.90230989083728e-10,2.99508248063906e-10,7.92421683826205e-12,2.28150831560469e-10,-3.37386368842729e-10,6.47594659646498e-06,-1.55595328288349e-05,5.16203482953461e-05,-5.96311194867027e-11,8.06646416329215e-11,-1.83880688453541e-10 +0.626,-3.00087076412006e-09,7.11127481553553e-09,1.99094837317892e-09,3.33947067915341e-10,1.10054929058911e-09,0.0799999966224293,-4.15500949185049e-07,-6.88606728929674e-07,6.62470119993513e-07,7.81666398275149e-12,2.28265323309884e-10,-3.37799233030011e-10,-2.84603070277445e-10,3.76434994286967e-10,2.36681334253585e-10,-3.8814437774981e-11,8.06646416329215e-11,-1.86482773667507e-10 +0.628,-1.72518411116528e-06,-8.68589596410979e-07,1.54622767899529e-06,3.33923583228923e-10,1.10073036102554e-09,0.0799999966217785,-1.52096412721347e-09,5.91736729060876e-10,3.00454973400921e-10,7.76895908716212e-12,2.28473490127001e-10,-3.38132299937399e-10,2.42573307089859e-05,4.2589525656167e-06,1.08600540669676e-05,-2.19008838842072e-11,6.85215773010838e-11,-1.57859836313889e-10 +0.63,-3.00695462062892e-09,7.11364176245177e-09,1.99215019307253e-09,3.3397814375169e-10,1.10146318454962e-09,0.0799999966210768,-3.18471626349105e-07,-6.71570918667207e-07,7.05910336261383e-07,7.72906044721466e-12,2.28539409619088e-10,-3.38430672375267e-10,-2.355971320811e-10,3.99636920778157e-10,2.02312125385795e-10,-1.12757025938492e-11,7.67615138119736e-11,-1.55257751099924e-10 +0.632,-1.72645799767068e-06,-8.71275880085648e-07,1.54905132034033e-06,3.33954499470712e-10,1.10164451866401e-09,0.0799999966204247,-1.5219065157418e-09,5.93335276743989e-10,3.01264221902464e-10,7.72385627678673e-12,2.28780536182249e-10,-3.38753330941799e-10,2.26048680370804e-05,1.37585995114292e-05,-1.29453693858278e-05,4.11996825544491e-12,7.50267903359968e-11,-1.6826817716975e-10 +0.634,-3.01304224669188e-09,7.11601510355875e-09,1.99335524996014e-09,3.34009039176797e-10,1.10237830669435e-09,0.0799999966197217,-2.28052154200783e-07,-6.16536520621491e-07,6.54128858718072e-07,7.74554032023644e-12,2.28839516780432e-10,-3.39103745083946e-10,-2.03098171960847e-10,3.65159291693118e-10,1.58401937400132e-10,1.79977560632594e-11,6.11490025281824e-11,-1.99493199737333e-10 +0.636,-1.72737020628748e-06,-8.73742026168134e-07,1.55166783577521e-06,3.33985481631993e-10,1.10255987673114e-09,0.0799999966190683,-1.52271890842964e-09,5.94795913910761e-10,3.01897829652064e-10,7.79584730103976e-12,2.29025132192362e-10,-3.39551303740748e-10,2.29937003953188e-05,2.21404765181343e-05,-3.47363514905177e-05,2.86229373536173e-11,5.89805981832114e-11,-1.61329283265843e-10 +0.638,-3.0191331223256e-09,7.11839428721439e-09,1.99456284127875e-09,3.34040222566001e-10,1.10329440722312e-09,0.0799999966183635,-1.36077352619508e-07,-5.27974614548953e-07,5.15183452756001e-07,7.86003206965091e-12,2.29075439173165e-10,-3.39749062217009e-10,-1.89247489207345e-10,3.54100429533765e-10,1.01264482910146e-10,4.25007251614317e-11,3.85975973404839e-11,-9.80118763926895e-11 +0.64,-1.72791451569796e-06,-8.7585392462633e-07,1.55372856958623e-06,3.34016921760272e-10,1.10347617848783e-09,0.0799999966177093,-1.52347589838647e-09,5.96212315628896e-10,3.02302887583705e-10,7.96585020168549e-12,2.29179522581724e-10,-3.39943351246319e-10,1.68134581507006e-05,2.40437628574313e-05,-4.4069670872629e-05,4.87890977618477e-11,3.46944695195361e-11,-1.16226472890446e-10 +0.642,-3.02522702591915e-09,7.12077913647691e-09,1.99577205282908e-09,3.34072085966808e-10,1.10421112531345e-09,0.0799999966170038,-6.88235200167058e-08,-4.31799563119228e-07,3.38904769265485e-07,8.0551884606983e-12,2.29214217051243e-10,-3.40213968108571e-10,-1.95129285993078e-10,2.84060969191202e-10,3.03576608295941e-11,5.46437894932694e-11,4.7271214720368e-11,-1.59594559789866e-10 +0.644,-1.72818980977802e-06,-8.77581122878807e-07,1.55508418866329e-06,3.34049142514115e-10,1.10439303535603e-09,0.0799999966163485,-1.52425641553044e-09,5.97348559505661e-10,3.02424318227023e-10,8.18442535965857e-12,2.29368607440605e-10,-3.40581729485478e-10,1.04894975355447e-05,2.25025729386901e-05,-4.57548968331444e-05,6.41847686111414e-11,3.94649590784723e-11,-1.6306400674182e-10 +0.646,-3.03132405158127e-09,7.12316853071493e-09,1.99698175010199e-09,3.34104823668246e-10,1.10512859974321e-09,0.0799999966156414,-2.68655298745271e-08,-3.41789271364467e-07,1.55885181932908e-07,8.31192753514286e-12,2.29372076887557e-10,-3.40866224135538e-10,-2.12503625807159e-10,2.55654872272082e-10,-3.36102673470506e-12,6.91720986045747e-11,2.60208521396521e-12,-9.02056207507939e-11 +0.648,-1.72829727189752e-06,-8.78948279964265e-07,1.55570772939102e-06,3.34082390224255e-10,1.10531052366358e-09,0.079999996614985,-1.52510643003367e-09,5.98371178994749e-10,3.02410874120085e-10,8.46111375407687e-12,2.29379015781461e-10,-3.40942551968481e-10,3.10982183472467e-06,1.74190295434279e-05,-3.94904945332993e-05,7.5460471204991e-11,1.82145964977565e-11,-8.32667268468867e-11 +0.65,-3.0374244773014e-09,7.12556201543091e-09,1.99819139359847e-09,3.34138668123263e-10,1.10604611580634e-09,0.0799999966142777,-1.44262425356284e-08,-2.72113153190756e-07,-2.07679620028989e-09,8.61376941996283e-12,2.29444935273548e-10,-3.41199291042926e-10,-2.3800948191488e-10,2.03613167992778e-10,-5.3776427755281e-11,6.52689707836273e-11,1.56125112837913e-11,-1.38777878078144e-10 +0.652,-1.72835497686766e-06,-8.80036732577028e-07,1.55569942220622e-06,3.34116845301935e-10,1.10622830340468e-09,0.0799999966136202,-1.52605846796133e-09,5.9918563166672e-10,3.02195768409063e-10,8.72218963721138e-12,2.29441465826596e-10,-3.41497663480794e-10,-3.04850928029877e-06,1.07444838616521e-05,-2.88432859410839e-05,6.07153216591882e-11,3.03576608295941e-12,-1.12757025938492e-10 +0.654,-3.04352871117325e-09,7.12795875795758e-09,1.99940017667211e-09,3.34173556881812e-10,1.10696388166964e-09,0.0799999966129117,-2.66202796568235e-08,-2.29135217744147e-07,-1.17449939964625e-07,8.85663070659958e-12,2.2945707833788e-10,-3.4165031914668e-10,-2.65494006987388e-10,1.61979804569334e-10,-5.4969050145015e-11,6.20163642661708e-11,1.3010426069826e-11,-9.28077059647591e-11 +0.656,-1.72846145798629e-06,-8.80953273448004e-07,1.55522962244636e-06,3.34152271824761e-10,1.10714613171803e-09,0.0799999966122536,-1.52712044398928e-09,5.99833550884998e-10,3.01975892208483e-10,8.97025509427606e-12,2.29493507530876e-10,-3.41868894304653e-10,-7.79718908254337e-06,3.55248252689732e-06,-1.59870059898703e-05,5.85469173142172e-11,1.90819582357449e-11,-1.02348685082632e-10 +0.658,-3.04963719294921e-09,7.13035809216112e-09,2.00060808024094e-09,3.34209437902189e-10,1.10788185569977e-09,0.0799999966115442,-5.7809035986997e-08,-2.14925287636558e-07,-1.81397963924107e-07,9.09081837585645e-12,2.29533406170823e-10,-3.4205971388701e-10,-2.94062734232381e-10,1.60895602396849e-10,-6.49437101318817e-11,5.44269490587723e-11,-8.67361737988403e-13,-1.21430643318376e-10 +0.66,-1.72869269413024e-06,-8.8181297459855e-07,1.55450403059067e-06,3.34188635098265e-10,1.10806426534271e-09,0.0799999966108854,-1.52829669492621e-09,6.00477133294585e-10,3.01716117367956e-10,9.18796289051115e-12,2.29490038083924e-10,-3.42354616877926e-10,-1.0521048306655e-05,-2.87354818759299e-06,-3.52707381530425e-06,4.46691295064027e-11,4.33680868994201e-12,-1.3010426069826e-10 +0.662,-3.05575037972891e-09,7.13276000069429e-09,2.00181494471041e-09,3.34246189753751e-10,1.1087998158521e-09,0.0799999966101748,-9.98932292136169e-08,-2.2641948038693e-07,-1.95506259185324e-07,9.26949489388206e-12,2.29550753405583e-10,-3.42580130929803e-10,-3.15448622084657e-10,1.40729441988618e-10,-4.59701721133853e-11,3.85975973404839e-11,9.54097911787243e-12,-1.10154940724527e-10 +0.664,-1.72909226704709e-06,-8.82718652520098e-07,1.55372200555393e-06,3.3422571307784e-10,1.10898246835633e-09,0.079999996609515,-1.52955848941455e-09,6.0104005106254e-10,3.01532236679502e-10,9.34235327987309e-12,2.29528202000395e-10,-3.42795236640825e-10,-1.13534220002806e-05,-7.79334192665958e-06,6.87688306907212e-06,2.86229373536173e-11,-8.67361737988403e-13,-9.80118763926895e-11 +0.666,-3.06186861368657e-09,7.13516416089854e-09,2.00302107365713e-09,3.3428355916687e-10,1.1097179286601e-09,0.0799999966088036,-1.45306917214739e-07,-2.57592848093568e-07,-1.67998726909035e-07,9.38398664329653e-12,2.29547283958631e-10,-3.42972178435374e-10,-3.32687436627177e-10,1.46150452851046e-10,-2.33103467084383e-11,1.84314369322536e-11,1.69135538907739e-11,-8.23993651088983e-11 +0.668,-1.72967349471595e-06,-8.83749023912472e-07,1.55305001064629e-06,3.34263249024414e-10,1.10990065749217e-09,0.0799999966081432,-1.53088923916106e-09,6.01624652873944e-10,3.01438995292669e-10,9.4160790276021e-12,2.29595856215958e-10,-3.4312483410126e-10,-1.05010035768901e-05,-1.07494512423256e-05,1.40945921383792e-05,1.34441069388202e-11,2.64545330086463e-11,-1.16226472890446e-10 +0.67,-3.06799217064321e-09,7.13757065951004e-09,2.0042268296383e-09,3.34321223482981e-10,1.11063631208497e-09,0.0799999966074311,-1.873109315223e-07,-3.00590653062871e-07,-1.11620358355519e-07,9.43776307105181e-12,2.29653102090665e-10,-3.43437084326936e-10,-3.39870276019893e-10,1.60895602396849e-10,7.26415455565287e-12,4.55364912443911e-12,3.51281503885303e-11,-1.40512601554121e-10 +0.672,-1.73042273844204e-06,-8.84951386524724e-07,1.55260352921287e-06,3.34301000076698e-10,1.11081926990053e-09,0.0799999966067694,-1.53224872026514e-09,6.02268235283531e-10,3.01468051910891e-10,9.43429362409986e-12,2.29736368817512e-10,-3.43686884507477e-10,-8.43616124765292e-06,-1.16949431909485e-05,1.77747496625871e-05,-1.5178830414797e-12,2.42861286636753e-11,-1.0842021724855e-10 +0.674,-3.07412116552427e-09,7.13997973245117e-09,2.00543270184594e-09,3.34358960657477e-10,1.11155525756024e-09,0.0799999966060564,-2.21055576512911e-07,-3.47370425826665e-07,-4.05213597051701e-08,9.43169153888589e-12,2.2975024660532e-10,-3.4387076519593e-10,-3.44938921176263e-10,1.71087102818212e-10,4.43438688546571e-11,-7.58941520739852e-12,2.16840434497101e-11,-1.36175792864179e-10 +0.676,-1.73130696074809e-06,-8.8634086822803e-07,1.55244144377405e-06,3.34338726842853e-10,1.11173827088695e-09,0.0799999966053939,-1.53362847594984e-09,6.02952583694804e-10,3.0164542738631e-10,9.40393596327026e-12,2.29823104991311e-10,-3.44231587678933e-10,-5.66070194191192e-06,-1.08550924325656e-05,1.81166827416604e-05,-1.5178830414797e-11,3.25260651745651e-11,-1.59594559789866e-10 +0.678,-3.08025567942807e-09,7.14239154278595e-09,2.00663928355549e-09,3.3439657640133e-10,1.1124745499802e-09,0.0799999966046794,-2.43698384280559e-07,-3.90790795556927e-07,3.19453712614714e-08,9.3709762172267e-12,2.29880350866018e-10,-3.4450914343509e-10,-3.41957365201928e-10,1.97324795392362e-10,6.94973592563208e-11,-1.45283091113057e-11,3.59955121265187e-11,-1.23165366794353e-10 +0.68,-1.73228175428522e-06,-8.87904031410258e-07,1.55256922525909e-06,3.34376210747722e-10,1.11265779229042e-09,0.0799999966040159,-1.53499630541065e-09,6.03741882876374e-10,3.01923416823335e-10,9.34582272682504e-12,2.29967087039817e-10,-3.44724249146111e-10,-2.6887214514288e-06,-8.67021667134981e-06,1.57720722333138e-05,-2.38524477946811e-11,3.59955121265187e-11,-1.196959198424e-10 +0.682,-3.08639566464972e-09,7.14480651031746e-09,2.00784697722278e-09,3.34433959692237e-10,1.11339441832836e-09,0.0799999966033005,-2.54453270086274e-07,-4.25471662242327e-07,9.50336601947265e-08,9.27556642604798e-12,2.30024332914524e-10,-3.44987927114459e-10,-3.36482144230876e-10,1.90602741922951e-10,9.06393016197881e-11,-3.0140820395097e-11,3.51281503885303e-11,-1.21430643318376e-10 +0.684,-1.73329956736556e-06,-8.89605918059228e-07,1.55294935989987e-06,3.34413313013426e-10,1.11357788962207e-09,0.0799999966026359,-1.53634223398757e-09,6.04504293844065e-10,3.02285974029814e-10,9.22525944524465e-12,2.30107599641371e-10,-3.45209971719384e-10,5.21072985107395e-08,-5.67896511066699e-06,1.16325616673907e-05,-2.32019264911898e-11,4.42354486374085e-11,-1.21430643318376e-10 +0.686,-3.09254103358567e-09,7.14722452749283e-09,2.0090561211189e-09,3.34470860730018e-10,1.11431484872693e-09,0.0799999966019197,-2.54244840892231e-07,-4.48187522684995e-07,1.41563906864289e-07,9.18275872008322e-12,2.30201274709074e-10,-3.45473649687733e-10,-3.28431943100171e-10,2.34621350125863e-10,1.05059190513845e-10,-2.49366499671666e-11,5.68121938382404e-11,-1.54390389361936e-10 +0.688,-1.73431654672913e-06,-8.91398668149967e-07,1.55351561552733e-06,3.34450044048307e-10,1.11449869472091e-09,0.079999996601254,-1.53765596175997e-09,6.05442779244569e-10,3.0270621079187e-10,9.12551284537599e-12,2.30334848416724e-10,-3.45827533276832e-10,2.24708240296328e-06,-2.43281198138156e-06,6.66523693876318e-06,-2.71050543121376e-11,5.24753851482984e-11,-1.50920942409982e-10 +0.69,-3.09869165743271e-09,7.14964629860981e-09,2.01026694596207e-09,3.345073627814e-10,1.11523618812059e-09,0.0799999966005364,-2.45256511280378e-07,-4.57918770610521e-07,1.68224854619342e-07,9.07433850283467e-12,2.30411176249667e-10,-3.46077333457373e-10,-3.21736994685073e-10,2.20093041014557e-10,1.1069704181077e-10,-2.34187669256869e-11,4.9439619065339e-11,-1.25767452008318e-10 +0.692,-1.73529757277425e-06,-8.9323034323241e-07,1.55418851494581e-06,3.34486341402318e-10,1.11542033942591e-09,0.0799999965998697,-1.53894290973871e-09,6.06323151408627e-10,3.03148998959113e-10,9.03183777767324e-12,2.30532606892986e-10,-3.46330603084865e-10,3.71998395629069e-06,5.84816917115205e-07,1.75436813514007e-06,-2.19008838842072e-11,3.46944695195361e-11,-1.45716771982052e-10 +0.694,-3.10484742907166e-09,7.15207159121545e-09,2.01147954195791e-09,3.34543490132511e-10,1.11615831854817e-09,0.0799999965991511,-2.30376575455215e-07,-4.5557950294206e-07,1.75242327159902e-07,8.98673496729784e-12,2.30549954127745e-10,-3.46660200545301e-10,-3.15096256378599e-10,2.24429849704499e-10,1.03324467037868e-10,-2.45029690981724e-11,3.29597460435593e-11,-1.37910516340156e-10 +0.696,-1.73621907907607e-06,-8.95052661244178e-07,1.55488948425445e-06,3.34522288342187e-10,1.11634253924242e-09,0.0799999965984831,-1.54020329476423e-09,6.07220870807445e-10,3.03562296827264e-10,8.93382590128055e-12,2.3066444587716e-10,-3.46882245150226e-10,4.42549081690508e-06,3.00969362279633e-06,-2.40526619888631e-06,-2.1467203015213e-11,5.29090660172926e-11,-1.14491749414469e-10 +0.698,-3.11100824225072e-09,7.15450047469868e-09,2.01269379114521e-09,3.34579225436116e-10,1.11708097633167e-09,0.0799999965977635,-2.12674612187595e-07,-4.43540728450875e-07,1.65621262364357e-07,8.90086615523699e-12,2.30761590391815e-10,-3.47118167542959e-10,-3.06775004704773e-10,2.33970828822372e-10,9.61687326994642e-11,-1.79977560632594e-11,4.51028103753969e-11,-1.43982048506075e-10 +0.7,-1.73706977752482e-06,-8.96826824157981e-07,1.5555519693039e-06,3.34557891806808e-10,1.11726558560399e-09,0.0799999965970946,-1.54143039478305e-09,6.08156754122735e-10,3.03946971758062e-10,8.86183487702751e-12,2.30844857118661e-10,-3.4745817334425e-10,4.42975923954164e-06,4.62517264071243e-06,-5.37049701584867e-06,-1.32272665042618e-11,4.33680869010228e-11,-1.56125112840329e-10 +0.702,-3.11717396382985e-09,7.15693310171517e-09,2.01390957903225e-09,3.34614672775624e-10,1.11800435576015e-09,0.0799999965963737,-1.94955575229428e-07,-4.25040037888025e-07,1.44139274300962e-07,8.84795708921994e-12,2.30935062739419e-10,-3.4774266799432e-10,-3.05121596402443e-10,2.17057274935817e-10,8.70614344526951e-11,6.50521303552712e-13,4.90059381979488e-11,-1.30971622438669e-10 +0.704,-1.73784959982574e-06,-8.98526984309533e-07,1.55612852640111e-06,3.34593283635165e-10,1.11818932585495e-09,0.0799999965957036,-1.54265088116866e-09,6.09024983222478e-10,3.04295217495873e-10,8.86443696224172e-12,2.31040880871453e-10,-3.47982059834005e-10,3.87759930501614e-06,5.36339158849518e-06,-6.96162322667261e-06,-1.30104260704403e-12,4.38017677668129e-11,-1.16226472888032e-10 +0.706,-3.12334456735452e-09,7.15936920164806e-09,2.01512675990223e-09,3.34650130523473e-10,1.11892851928364e-09,0.0799999965949818,-1.79445178009364e-07,-4.03586471534045e-07,1.16292781394273e-07,8.84275291879177e-12,2.31110269810486e-10,-3.48207573885872e-10,-3.02763456655875e-10,2.33537147949164e-10,6.34258270882952e-11,-4.33680869000341e-12,3.64291929939103e-11,-1.27502175481878e-10 +0.708,-1.73856738053778e-06,-9.0014133019567e-07,1.55659369752668e-06,3.3462865464684e-10,1.11911376693419e-09,0.0799999965943108,-1.54386193499528e-09,6.09959131814274e-10,3.04548920804226e-10,8.84708972748171e-12,2.31186597643429e-10,-3.48492068535932e-10,2.95681591732689e-06,5.28690459467017e-06,-7.23449273577757e-06,7.37257477290142e-12,2.42861286636753e-11,-1.43982048506075e-10 +0.71,-3.12952001509451e-09,7.16180903817532e-09,2.01634495558545e-09,3.34685518882383e-10,1.11985326567421e-09,0.0799999965935878,-1.67617914340057e-07,-3.82438853155364e-07,8.73548104511623e-08,8.87224321788337e-12,2.31207414325141e-10,-3.48783502079897e-10,-3.02031620200149e-10,2.11202583200176e-10,5.25838053655469e-11,6.07153216591882e-12,3.33934269125535e-11,-1.3010426069826e-10 +0.712,-1.73923785219514e-06,-9.01671085608291e-07,1.55694311676849e-06,3.34664143619712e-10,1.12003859659149e-09,0.0799999965929157,-1.54507006147608e-09,6.10803942147075e-10,3.04759256025688e-10,8.87137585614538e-12,2.31320171351079e-10,-3.49012485578725e-10,1.86357702815393e-06,4.55513578245803e-06,-6.42368591045188e-06,7.15573433840432e-12,3.07913416985883e-11,-1.12757025938492e-10 +0.714,-3.13570029534041e-09,7.1642522539439e-09,2.01756399260955e-09,3.34721004385807e-10,1.12077854635961e-09,0.0799999965921918,-1.60163606227441e-07,-3.64218310025532e-07,6.16600668093547e-08,8.90086615523699e-12,2.31330579691935e-10,-3.4923453018365e-10,-3.03901868947687e-10,2.15973072759112e-10,4.20670442924375e-11,2.25514051876985e-11,2.16840434497101e-11,-1.29236898960272e-10 +0.716,-1.73987850662005e-06,-9.03127958848393e-07,1.55718975703573e-06,3.34699747084333e-10,1.12096391891026e-09,0.0799999965915187,-1.54628566895187e-09,6.11667834438112e-10,3.04927524202858e-10,8.96158147689618e-12,2.31406907524878e-10,-3.49529433174567e-10,7.74436504508146e-07,3.38433296144524e-06,-4.87134714077102e-06,1.82145964977565e-11,3.98986399474665e-11,-1.50920942409982e-10 +0.718,-3.14188543801622e-09,7.16669892528166e-09,2.01878370270636e-09,3.34756850711715e-10,1.12170417398971e-09,0.0799999965907936,-1.57065860209408e-07,-3.50680978179751e-07,4.21746782462706e-08,8.97372454122802e-12,2.31490174251725e-10,-3.4983821395329e-10,-3.03657923458877e-10,2.10768902331182e-10,2.68882138776405e-11,6.07153216591882e-12,3.55618312575245e-11,-1.31838984174237e-10 +0.72,-1.74050677006089e-06,-9.04530682761112e-07,1.55735845574871e-06,3.34735641982498e-10,1.12188987960726e-09,0.0799999965901194,-1.54750030064571e-09,6.12510910047436e-10,3.05035077058368e-10,8.98586760555985e-12,2.31549154849908e-10,-3.50056789111264e-10,-1.73106537784684e-07,2.00743024633687e-06,-2.95510176658714e-06,1.90819582357449e-11,3.42607886505419e-11,-9.97465998686663e-11 +0.722,-3.1480754392188e-09,7.16914896892185e-09,2.0200038430146e-09,3.34792794182137e-10,1.12263037060911e-09,0.0799999965893934,-1.57758286360547e-07,-3.42651257194404e-07,3.0354271179922e-08,9.05005237417099e-12,2.31627217406327e-10,-3.50237200352765e-10,-3.07046055247895e-10,2.11853104503667e-10,2.53703308361608e-11,2.86229373536173e-11,2.64545330086463e-11,-1.20563281580388e-10 +0.724,-1.74113780320633e-06,-9.0590128778989e-07,1.55747987283343e-06,3.34771842191994e-10,1.12281638847689e-09,0.0799999965887184,-1.5487284848667e-09,6.13358322465451e-10,3.05136558381713e-10,9.10035935497432e-12,2.31654972981943e-10,-3.50539042237585e-10,-8.90296679694618e-07,6.3952077140883e-07,-1.02579544251219e-06,2.19008838842072e-11,2.16840434497101e-11,-1.50920942409982e-10 +0.726,-3.15427035315827e-09,7.17160240221171e-09,2.02122438924812e-09,3.34829195619557e-10,1.12355699050104e-09,0.0799999965879913,-1.61319473079326e-07,-3.40093174108768e-07,2.62510894098733e-08,9.13765590970782e-12,2.31713953580126e-10,-3.50840884122405e-10,-3.0737131589964e-10,2.09251019289702e-10,2.67797936603919e-11,1.58293517182884e-11,3.98986399474665e-11,-1.43982048506075e-10 +0.728,-1.74178308109865e-06,-9.07261660486325e-07,1.55758487719107e-06,3.34808392815633e-10,1.12374324429121e-09,0.0799999965873151,-1.5499579701303e-09,6.1419532654261e-10,3.05243677556355e-10,9.16367676184748e-12,2.31814567541732e-10,-3.51114970431609e-10,-1.33807252929683e-06,-5.4720681111342e-07,6.37605745111568e-07,1.62630325872826e-11,2.86229373536173e-11,-1.11889664200504e-10 +0.73,-3.16047018503879e-09,7.17405918351788e-09,2.02244536395835e-09,3.34865850326604e-10,1.12448424877121e-09,0.0799999965865868,-1.66671763196513e-07,-3.42282001353222e-07,2.88015123903196e-08,9.20270804005695e-12,2.3182844532954e-10,-3.51288442779207e-10,-3.10136031439478e-10,2.10985742765679e-10,2.35271871429354e-11,2.62376925741492e-11,1.34441069388202e-11,-1.21430643318376e-10 +0.732,-1.74244976815143e-06,-9.08630788491738e-07,1.55770008324063e-06,3.34845203647793e-10,1.12467055807253e-09,0.0799999965859099,-1.55119851425606e-09,6.15039269513673e-10,3.05337786304926e-10,9.26862753214407e-12,2.31868343969488e-10,-3.51600693004883e-10,0.0611965290770409,0.0317885782770595,-0.0535506444940529,1.68333229300099e-09,5.79441009063152e-09,4.69329436425525e-09 +0.734,-3.16667497909581e-09,7.17651934059593e-09,2.02366671510357e-09,3.34902924836733e-10,1.12541172214708e-09,0.0799999965851804,0.000244619444544967,0.000126812031106885,-0.000214173776463822,1.59360372120609e-11,2.55006085692066e-10,-3.32515265322186e-10,3.03200390142088e-08,-9.36989201505422e-09,-5.84872861947305e-09,5.31259064517896e-10,-4.33160451951408e-09,-0.00042307273916825 +0.736,-7.63971989971562e-07,-4.01382664064198e-07,7.01004977385344e-07,3.34908947796642e-10,1.1256905824153e-09,0.0799999965845799,-1.42991835819922e-09,5.77559701453456e-10,2.81942871827034e-10,1.13936637902157e-11,2.14541925891431e-10,-1.69264255736601e-06,-0.168145776693033,-0.0864637459644257,0.146764165074231,-3.79600864630624e-09,-2.28254914969028e-08,-3.28556626350007e-09 +0.738,-3.17239465252861e-09,7.17882957940175e-09,2.02479448659088e-09,3.34948499491894e-10,1.12626988985065e-09,0.0799999898146102,-0.000427963662227165,-0.000219042952750818,0.000372882883833102,7.52002626835945e-13,1.63704119704455e-10,-3.45657530376186e-10,-3.82559652359337e-08,1.07882452970998e-08,6.32837966058064e-09,-6.4987078218781e-10,5.14735823409217e-09,0.000842383858848382 +0.74,-2.47582663888022e-06,-1.27755447506747e-06,2.19253651271775e-06,3.34911955807149e-10,1.12634539889411e-09,0.0799999965831972,-1.58294221914296e-09,6.20712682641855e-10,3.07256390469357e-10,8.79418066146442e-12,2.351313588278e-10,1.67689287802752e-06,0.167643966467797,0.0852924861871085,-0.147210685579914,3.11729808633032e-09,2.78674652798294e-08,-4.25440932483312e-09 +0.742,-3.17872642140518e-09,7.18131243013231e-09,2.02602351215275e-09,3.3498367621454e-10,1.12721041528596e-09,0.0799999965221817,0.000242612203644023,0.000122126991997616,-0.000215959858486554,1.32211949721572e-11,2.75173980823773e-10,-3.62675167675519e-10,-1.89475171663567e-09,5.17381276710082e-10,1.17332359106381e-09,-3.75567632548978e-10,3.98552718605671e-10,-0.000415550992054203 +0.744,-1.50537782430413e-06,-7.89046507077007e-07,1.32869707877153e-06,3.34964840587038e-10,1.12744609481741e-09,0.0799999965817465,-1.5905212260095e-09,6.22782207748695e-10,3.11949684833612e-10,7.2919101312685e-12,2.36725569702223e-10,1.46889098107117e-08,-0.0874778388699949,-0.0450541628746556,0.0781550635614189,-2.07386191553027e-09,-1.3912915958203e-08,1.3912482277334e-09 +0.746,-3.18508850630922e-09,7.18380355896331e-09,2.02727131089209e-09,3.35012843855065e-10,1.12815731756477e-09,0.0799999965809373,-0.000107299151835957,-5.80896595010066e-05,9.66603957591217e-05,4.92574731003614e-12,2.19522316990961e-10,-3.57110174764585e-10,3.02304568097072e-08,-8.38131647418194e-09,-4.71302684379448e-09,3.90746462963775e-10,-4.00417546342346e-09,-3.75167171634549e-06 +0.748,-1.93457443164796e-06,-1.02140514508103e-06,1.71533866180802e-06,3.34984543576278e-10,1.12832418408537e-09,0.0799999965803181,-1.46959939877067e-09,5.89256941851967e-10,2.93097577458434e-10,8.8548959831236e-12,2.20708867848529e-10,-3.17777054670287e-10,0.00852478152492071,0.00681962981289966,-0.00703366408020578,8.91864707086574e-10,-3.38574654423772e-09,-0.000823129290422607 +0.75,-3.1909669039043e-09,7.18616058673072e-09,2.02844370120192e-09,3.35048263438997e-10,1.12904015303616e-09,0.0799999965796662,-7.3200025736274e-05,-3.08111402494079e-05,6.85257394382986e-05,8.49320613838244e-12,2.0597933081401e-10,-3.2928742718652e-06,-2.65569087987832e-08,8.45178961539349e-09,3.28795150827954e-09,2.10118381027691e-10,3.40829794942543e-09,-9.97465998686662e-09 +0.752,-2.22737453459305e-06,-1.14464970607867e-06,1.98944161956122e-06,3.35018516400831e-10,1.12914810140863e-09,0.079999983408821,-1.5758270339658e-09,6.23064100313541e-10,3.06249383491552e-10,9.69536950723437e-12,2.34342059646231e-10,-3.57675694617754e-10,0.0542433806498991,0.0251305109495551,-0.0500857978436843,8.64109131470945e-10,1.38031946983474e-08,0.00159451847905889 +0.754,-3.19727021204017e-09,7.18865284313197e-09,2.02966869873589e-09,3.35087044917026e-10,1.12997752127475e-09,0.0799999965782355,0.000143773496863323,6.97109035488127e-05,-0.000131817451936439,1.19496426642662e-11,2.611921096074e-10,3.08519964437037e-06,-6.52800838558953e-09,2.00512349779469e-09,2.04339583448343e-09,-4.51461784622963e-10,1.0547118733939e-09,-1.30537941567255e-09 +0.756,-1.65228054713976e-06,-8.65806091883414e-07,1.46217181181546e-06,3.35066314971488e-10,1.13019286984706e-09,0.0799999957496196,-1.60193906750816e-09,6.3108459430472e-10,3.14422966829486e-10,7.88952236874251e-12,2.38560907139806e-10,-3.62897212280444e-10,-0.0509214059820857,-0.0259936924029528,0.0466229640624622,-1.38452617426399e-09,-8.03654018333155e-09,-0.000735674971462373 +0.758,-3.2036779683102e-09,7.19117718150919e-09,2.0309263906032e-09,3.35118603006501e-10,1.13093176490331e-09,0.0799999965767839,-5.99121270650204e-05,-3.42638660629987e-05,5.46744043134102e-05,6.41153796721027e-12,2.29045948874073e-10,1.42499758520875e-07,3.02141666720656e-08,-8.46480004146332e-09,-4.53966291641405e-09,3.20490162186714e-10,-3.99203239909162e-09,5.93795845826861e-09 +0.76,-1.89192905539984e-06,-1.00286155613541e-06,1.6808694290691e-06,3.35091961123357e-10,1.13110905364255e-09,0.0799999963196186,-1.4810824008199e-09,5.97225394138867e-10,2.9626431516383e-10,9.17148301748937e-12,2.2259277754344e-10,-3.39145378447369e-10,-0.0092868876170758,-0.00245985383147753,0.0088242434054253,4.64255370258292e-10,-6.26885696131117e-09,-0.00114513559745788 +0.762,-3.20960229791348e-09,7.19356608308575e-09,2.03211144786386e-09,3.35155288938571e-10,1.13182213601348e-09,0.0799999965754273,-9.70596775333237e-05,-4.41032813889089e-05,8.99713779351114e-05,8.26855944824344e-12,2.03970521028829e-10,-4.43804263131064e-06,-2.61554287343118e-08,8.31322857774985e-09,3.22452568118914e-09,2.15756232324615e-10,3.36189409644305e-09,-5.5493803996498e-09 +0.764,-2.28016776553314e-06,-1.17927468169104e-06,2.04075494080955e-06,3.3512503536115e-10,1.13192493572667e-09,0.0799999785674481,-1.58570411575715e-09,6.30478308449866e-10,3.09162417888586e-10,1.00345079467878e-11,2.36040353929212e-10,-3.61342900045969e-10,0.063961871697623,0.0305431264865322,-0.0588594396720362,1.10870514158367e-09,1.52911537598665e-08,0.00211722169483896 +0.766,-3.21594511437651e-09,7.19608799631954e-09,2.03334809753541e-09,3.35195426970358e-10,1.1327662974292e-09,0.079999996573982,0.000158787809257169,7.806922455722e-05,-0.000145466380753033,1.27033800145781e-11,2.65135136068295e-10,4.03084414804522e-06,-5.95790777824234e-09,1.74513181683267e-09,1.86179197059211e-09,-4.07876857289046e-10,9.64506252643104e-10,-1.15359111152458e-09 +0.768,-1.64501652850447e-06,-8.66997783462164e-07,1.45888941779741e-06,3.35175848881208e-10,1.13298547627094e-09,0.0799999946908247,-1.60953574687012e-09,6.37458835717197e-10,3.16609585770955e-10,8.40300051763165e-12,2.39898378939784e-10,-3.65957264492067e-10,-0.0560719646917884,-0.0288244753215722,0.0512806548447858,-1.46193820937945e-09,-8.96158147689616e-09,-0.000937807562509384 +0.77,-3.22238325736399e-09,7.19863783166241e-09,2.0346145358785e-09,3.35229038972429e-10,1.13372589094496e-09,0.0799999965725181,-6.55000495099851e-05,-3.72286767290688e-05,5.96562386261101e-05,6.85562717706034e-12,2.2928881016071e-10,2.7961389800768e-07,3.07682752973686e-08,-8.79765010841637e-09,-4.77807897414361e-09,3.49980461278321e-10,-4.11606512762397e-09,6.12270650846013e-09 +0.772,-1.90701672654441e-06,-1.01591249037844e-06,1.69751437230185e-06,3.35203271389917e-10,1.13390263151159e-09,0.0799999958092803,-1.48646264568064e-09,6.02268235283531e-10,2.9749726987438e-10,9.80292236274493e-12,2.23434118429289e-10,-3.41466438458226e-10,-0.00680717629876827,-0.00113128454672616,0.00655893426495991,5.40366362766774e-10,-5.99477065210684e-09,-0.00131610770285478 +0.774,-3.22832910794671e-09,7.20104690460355e-09,2.035804524958e-09,3.3526825066188e-10,1.13461962741868e-09,0.0799999965711523,-9.27287547050582e-05,-4.17538149159735e-05,8.58919756859498e-05,9.01709262812744e-12,2.05309727552283e-10,-4.98481691341146e-06,-2.59202652830997e-08,8.08402823848641e-09,3.05766696684362e-09,2.23996168835505e-10,3.29770932783191e-09,-5.47305256670682e-09 +0.776,-2.27793174536464e-06,-1.18292775004233e-06,2.04108227504565e-06,3.35239339760429e-10,1.13472387042179e-09,0.0799999758700126,-1.59014370681304e-09,6.34604348237477e-10,3.09727937741755e-10,1.06989070380869e-11,2.36624955740616e-10,-3.63358648725054e-10,0.0624053059609398,0.0298247069909808,-0.0575546062274011,1.07097490598118e-09,1.5032679961946e-08,0.00237596631865594 +0.778,-3.23468968277396e-09,7.2035853219965e-09,2.03704343670896e-09,3.35311046290032e-10,1.13556612724164e-09,0.0799999965696988,0.000156892469138701,7.75450130479499e-05,-0.000144326449223655,1.33009922520522e-11,2.65440447400067e-10,4.5190483612123e-06,-5.8805499532355e-09,1.50400525367186e-09,1.74166236988071e-09,-4.29344060304259e-10,9.1766871879173e-10,-1.09721259855533e-09 +0.78,-1.65036186880983e-06,-8.72747697850534e-07,1.46377647815103e-06,3.35292543729437e-10,1.13578563221139e-09,0.0799999939462061,-1.61366590662598e-09,6.40620369252164e-10,3.16694587221278e-10,8.98153079686991e-12,2.40295630615783e-10,-3.67747499119275e-10,-0.0553054304626041,-0.0285338307114135,0.0506241906492827,-1.47408127371129e-09,-8.9216828369487e-09,-0.00104173426308807 +0.782,-3.24114434640047e-09,7.20614780347351e-09,2.03831021505785e-09,3.3534697241322e-10,1.1365273097641e-09,0.0799999965682278,-6.43292527117153e-05,-3.65903097977044e-05,5.81703133734762e-05,7.40466715720699e-12,2.29753716052272e-10,3.52111308860037e-07,3.08381521273853e-08,-9.02207995812084e-09,-4.84952789731041e-09,3.1485231088979e-10,-4.14425438410859e-09,6.23459617266064e-09 +0.784,-1.90767887965669e-06,-1.01910893704135e-06,1.69645773164494e-06,3.35322162398066e-10,1.1367046470756e-09,0.0799999953546513,-1.49031329811644e-09,6.04532049419681e-10,2.97296475632036e-10,1.02409400404291e-11,2.23718613079349e-10,-3.42809114428632e-10,-0.00723785540746381,-0.00136632515371215,0.00691742834367513,4.93745669349898e-10,-6.04854707986212e-09,-0.00143917606477972 +0.786,-3.24710559959293e-09,7.20856593167118e-09,2.03949940096038e-09,3.35387936173381e-10,1.13742218421642e-09,0.0799999965668566,-9.32806743415706e-05,-4.2055610412553e-05,8.58400267481767e-05,9.37964983460659e-12,2.05559527732824e-10,-5.40459295025885e-06,-2.60139403508024e-08,7.98102903210029e-09,3.05636592423663e-09,1.82362805412062e-10,3.28643362523806e-09,-5.50601231275038e-09 +0.788,-2.28080157702298e-06,-1.18733137869156e-06,2.03981783863764e-06,3.35359680997405e-10,1.13752688518653e-09,0.0799999737362795,-1.59436905951965e-09,6.36456165548082e-10,3.09521939328982e-10,1.09703912620773e-11,2.36864347580301e-10,-3.64833163679634e-10,0.0626160824057131,0.0299916326476547,-0.0575903309264248,1.01980056343986e-09,1.50383178132429e-08,0.00256840635912136 +0.79,-3.25348307583101e-09,7.21111175633338e-09,2.04073748871769e-09,3.3543181773843e-10,1.13836964160674e-09,0.0799999965653973,0.000157183655281282,7.79109201780661e-05,-0.000144521296957523,1.3458852088366e-11,2.65712798985795e-10,4.86903248622661e-06,-5.95411307063864e-09,1.48015280587718e-09,1.78947568568732e-09,-4.80952083714569e-10,9.30245463992562e-10,-1.10588621593521e-09 +0.792,-1.65206695589785e-06,-8.75687697979299e-07,1.46173265080755e-06,3.35413516405758e-10,1.13858973638248e-09,0.0799999932124094,-1.6181855118022e-09,6.42376776771591e-10,3.16679842071732e-10,9.04658292721904e-12,2.40585329436271e-10,-3.69256708543375e-10,-0.0554341697103007,-0.0286770011615183,0.0506643416777266,-1.51701567974172e-09,-8.91040713435485e-09,-0.001116308255035 +0.794,-3.25995581787822e-09,7.21368126344046e-09,2.04200420808598e-09,3.35468004070139e-10,1.13933198292449e-09,0.0799999965639202,-6.45530235599206e-05,-3.67970844680071e-05,5.81360697533839e-05,7.39078936939918e-12,2.30071170448376e-10,4.03799466086596e-07,3.08794331251027e-08,-9.10144355714678e-09,-4.82556702929848e-09,2.73869468769838e-10,-4.15596376757143e-09,6.24153506656455e-09 +0.796,-1.91027905013753e-06,-1.02287603585133e-06,1.69427692982109e-06,3.35443079563236e-10,1.13951002106427e-09,0.0799999948276073,-1.49466777930179e-09,6.05971002543004e-10,2.97377573954538e-10,1.01420608022984e-11,2.23961474365985e-10,-3.44290568277117e-10,-0.00721485846842108,-0.00136662753878226,0.00690861542734961,4.61219604175333e-10,-6.06199118680094e-09,-0.00156241631958653 +0.798,-3.26593448899543e-09,7.21610514745064e-09,2.0431937183818e-09,3.35508572313348e-10,1.14022782882195e-09,0.0799999965625431,-9.3412457433605e-05,-4.22635946231361e-05,8.57705314627823e-05,9.23566778610051e-12,2.05823205701172e-10,-5.84586581225954e-06,-2.60752790887108e-08,8.07795670632049e-09,3.14787258759441e-09,1.53956708492942e-10,3.32676594605452e-09,-5.50601231275038e-09 +0.8,-2.28392887987195e-06,-1.19193041434387e-06,2.03735905567222e-06,3.3548002223438e-10,1.14033331388708e-09,0.0799999714441441,-1.59896889565664e-09,6.38282829368286e-10,3.09969064304916e-10,1.07578876362702e-11,2.37268538150204e-10,-3.66314617528118e-10,0.0626619894309647,0.0300797873430038,-0.0574615763216821,9.86623976961807e-10,1.50673744314655e-08,0.00276651571096131 +0.802,-3.27233036457805e-09,7.21865827876811e-09,2.04443359463902e-09,3.35551603863893e-10,1.14117690297455e-09,0.0799999965610778,0.000157235500290254,7.80555547488792e-05,-0.000144075773823946,1.31821636939477e-11,2.66092703427034e-10,5.22019703158571e-06,-5.97295108338558e-09,1.52959242494252e-09,1.86211723124385e-09,-5.01985605860788e-10,9.31546506599545e-10,-1.13277442981285e-09 +0.804,-1.65498687871093e-06,-8.79708195348355e-07,1.46105596037643e-06,3.35532750889156e-10,1.14139768470078e-09,0.0799999923249322,-1.62286069999018e-09,6.44401199068056e-10,3.17417533229891e-10,8.74994521282701e-12,2.40994724176602e-10,-3.7084571524737e-10,0.0094395082729352,0.00584262740228532,-0.00565407731463289,2.04697370165263e-10,-2.66973942952829e-09,-0.00104042238713298 +0.806,-3.27882180737801e-09,7.22123588356438e-09,2.04570326477194e-09,3.35586603644744e-10,1.14214088187126e-09,0.0799999965595944,0.000194993533381995,0.000101426064358021,-0.000166692083082478,1.40009531746088e-11,2.55413745708921e-10,1.0585074830538e-06,3.34295037398429e-08,-1.01444460470778e-08,-5.96029302302181e-09,4.94829871522383e-10,-4.63951793649997e-09,-0.00192746248389025 +0.808,-8.75012745182955e-07,-4.74003937916273e-07,7.94287628046522e-07,3.35588754701854e-10,1.14241933968362e-09,0.0799999965589621,-1.48914268503081e-09,6.03823414879744e-10,2.93576361137804e-10,1.07292646989165e-11,2.22436652430602e-10,-7.71022078127625e-06,-0.150767306850738,-0.0788069593154853,0.130223900060913,-3.26561694352633e-09,-2.02281767724965e-08,-0.000264717473635878 +0.81,-3.28477837811814e-09,7.2236511772239e-09,2.04687757021649e-09,3.3562952070354e-10,1.14303062848098e-09,0.0799999657187113,-0.000408075694020957,-0.000213801772903921,0.000354203517161176,9.38485400503452e-13,1.74501038618935e-10,-3.6241148970717e-10,-3.53998243479008e-08,1.09242042495294e-08,6.05136600551059e-09,-4.71844785465691e-10,4.84204690232026e-09,0.00347574956056223 +0.812,-2.50731552126678e-06,-1.32921102953196e-06,2.21110169669123e-06,3.35592508643456e-10,1.1431173438381e-09,0.0799999965575125,-1.63074198242241e-09,6.47520231877862e-10,3.17781825159846e-10,8.84188555705378e-12,2.41804840039883e-10,6.19277746097268e-06,0.161626835543067,0.0843954950026543,-0.14107614582971,3.13182639544162e-09,2.63894808782971e-08,-3.66720542821497e-09 +0.814,-3.29130134604783e-09,7.22624125815141e-09,2.04814869751713e-09,3.35664888245768e-10,1.14399784784114e-09,0.0799999904898212,0.000238431648151311,0.000123780207106697,-0.000210101066157667,1.346579098227e-11,2.80058962132123e-10,-3.7708031142003e-10,9.25827340139684e-10,3.46944695195361e-11,5.98588019429234e-10,-2.06432093641239e-10,2.90566182226115e-11,-0.001389632988541 +0.816,-1.55358892866154e-06,-8.3409020110517e-07,1.37069743206056e-06,3.35646371807385e-10,1.14423757968662e-09,0.0799999965560041,-1.62703867306185e-09,6.4765900975594e-10,3.20176177237563e-10,8.01615718248882e-12,2.41921066512773e-10,6.34245506808683e-07,-0.0849499224098235,-0.0448850463147069,0.0755237490108377,-1.86049092798512e-09,-1.37754391227318e-08,1.72951930554888e-09 +0.818,-3.29780950074007e-09,7.22883189419044e-09,2.04942940222608e-09,3.35696952874498e-10,1.14496553210719e-09,0.0799999930268032,-0.000101368041487983,-5.57599781521311e-05,9.19939298856843e-05,6.02382727032946e-12,2.24957205641196e-10,-3.70162234197835e-10,3.59933437221737e-09,-1.51354623278976e-10,-3.71447664293521e-10,1.97975316695853e-10,-4.05925293378572e-10,-3.23516985770155e-05 +0.82,-1.95906109461347e-06,-1.05713011371369e-06,1.7386731516033e-06,3.35670467116467e-10,1.14513740850919e-09,0.0799999965545235,-1.61264133557298e-09,6.47053591262824e-10,3.18690386580389e-10,8.80805844927223e-12,2.40297365339259e-10,5.04838712500621e-07,0.039983127211277,0.0220077742492559,-0.035501492502807,1.15294059022108e-09,5.8859167539893e-09,-1.17093834628434e-10 +0.822,-3.30426006608237e-09,7.23142010855549e-09,2.0507041637724e-09,3.35732185108295e-10,1.14592672156855e-09,0.079999995046158,5.85644673571248e-05,3.22711188448926e-05,-5.00120401255438e-05,1.06355896312138e-11,2.48500872657153e-10,-3.70630609536348e-10,3.32446201643799e-09,-1.91036422791946e-10,-6.2677727591387e-10,2.6996634094889e-10,-4.07660016854549e-10,-6.94163233838639e-05 +0.824,-1.72480322518497e-06,-9.28045638334124e-07,1.53862499110112e-06,3.35713009474992e-10,1.14613141199982e-09,0.079999996553041,-1.59934348750723e-09,6.46289445571657e-10,3.16183277476733e-10,9.88792381306779e-12,2.38666725271841e-10,2.27173418965165e-07,-0.0203202027400178,-0.0110679483481847,0.0178287464492298,-2.13587827979644e-10,-3.56789250921529e-09,6.47051856539348e-10 +0.826,-3.31065744003239e-09,7.23400526633777e-09,2.05196889688231e-09,3.35771736803547e-10,1.14688138846963e-09,0.0799999959548517,-2.27163436029463e-05,-1.20006745478462e-05,2.13029456713753e-05,9.78123831929522e-12,2.34229302620292e-10,-3.68042402110191e-10,2.11172767640433e-09,-2.24213009270002e-10,-5.19224420403308e-10,1.83880688453541e-10,-3.22224885662692e-10,-3.72921285865523e-05 +0.828,-1.81566859959676e-06,-9.76048336525509e-07,1.62383677378662e-06,3.35752134428269e-10,1.1470683292103e-09,0.0799999965515688,-1.59089657680161e-09,6.45392593534577e-10,3.1410637979512e-10,1.0623446566882e-11,2.3737782572919e-10,7.80049046189556e-08,0.00937166632483859,0.00500576028631543,-0.00863813725150013,3.42391046070922e-10,1.26071028616614e-09,1.73472347597681e-11 +0.83,-3.3170210263396e-09,7.23658683671191e-09,2.05322532240149e-09,3.35814230589815e-10,1.14783089977255e-09,0.0799999962668713,1.47703216964081e-05,8.0223665974155e-06,-1.32496033346252e-05,1.11508025035789e-11,2.39272143764957e-10,-3.67973013171152e-10,9.53555810689988e-10,-2.80157841365782e-10,-3.64725610821965e-10,7.35089072945931e-11,-1.89518539748825e-10,-1.40244066360038e-05 +0.832,-1.75658731281112e-06,-9.43958870135847e-07,1.57083836044812e-06,3.35796737638283e-10,1.14802541778536e-09,0.0799999965500969,-1.58708235355885e-09,6.44271962169113e-10,3.12647477351832e-10,1.09174821960603e-11,2.36619751570195e-10,2.19072780749402e-08,-0.00494866750483115,-0.00273252504759585,0.00426250584243025,-7.28583859909523e-11,-8.9945412229237e-10,2.02962646686746e-10 +0.834,-3.32336935575384e-09,7.23916392456059e-09,2.05447591231089e-09,3.35857900518599e-10,1.14877737877883e-09,0.0799999963545004,-5.02434832291596e-06,-2.90773359296761e-06,3.80042003509533e-06,1.08593689596151e-11,2.35674327275787e-10,-3.67161162584405e-10,2.20065935971263e-10,-3.15285991763265e-10,-2.42752866421669e-10,1.95156391039803e-12,-8.89045781454552e-11,-4.64873625705158e-06 +0.836,-1.77668470610279e-06,-9.55589804507717e-07,1.5860400405885e-06,3.35840175114122e-10,1.14896811509446e-09,0.0799999965486283,-1.58620208981497e-09,6.4301081820206e-10,3.11676465886146e-10,1.09252884517019e-11,2.36264133257613e-10,3.31233304673439e-09,0.00218516190076326,0.00117982750002037,-0.00202017899630926,2.276824562212e-11,2.78423117892649e-10,7.80625564444179e-12 +0.838,-3.3297141641131e-09,7.2417359678334e-09,2.05572261817444e-09,3.35901601672406e-10,1.14972243531186e-09,0.0799999963677498,3.71629928013709e-06,1.81157640711388e-06,-4.28029595014173e-06,1.09504419421036e-11,2.36788019747358e-10,-3.67129937561827e-10,2.87558876450183e-08,-9.35362898246691e-09,-5.06452518811428e-09,2.59774840527526e-10,-4.0462425077159e-09,1.03435038312227e-05 +0.84,-1.76181950898224e-06,-9.48343498879262e-07,1.56891885678793e-06,3.3588397688189e-10,1.14991526717345e-09,0.0799999965471598,-1.4711785392349e-09,6.05596302272193e-10,2.91418365133689e-10,1.1964387813812e-11,2.20079163226749e-10,4.46863483716253e-08,-0.0356230456827904,-0.0172555139729864,0.0318311284313232,-3.365363543395e-10,-1.02630577647478e-08,-0.00143699723301194 +0.842,-3.33559887827004e-09,7.24415835304248e-09,2.05688829163497e-09,3.35949459223661e-10,1.15060275196477e-09,0.0799999965464952,-0.000138775883451025,-6.72104794848318e-05,0.000123044217775151,9.60429652474558e-12,1.95735788688367e-10,-5.74835606198531e-06,-2.97408040035584e-08,8.24839328783521e-09,3.61353742067693e-09,-1.07336015076064e-10,3.72271657944622e-09,-1.12633955981489e-05 +0.844,-2.31692304278634e-06,-1.21718541681859e-06,2.06109572788854e-06,3.35922394067989e-10,1.1506982103282e-09,0.0799999735537355,-1.59014175524913e-09,6.38589875423534e-10,3.05872514816396e-10,1.15350437535078e-11,2.34970029544534e-10,-3.67234020970386e-10,0.0787741471773875,0.0388337318630096,-0.071358442023492,1.0696738633742e-09,1.80059959997702e-08,0.00254937669325744 +0.846,-3.34195944529103e-09,7.24671271254418e-09,2.05811178169424e-09,3.35995599398675e-10,1.15154263208295e-09,0.0799999965450262,0.000176320705258526,8.81244479672068e-05,-0.000162389550318817,1.38829919782424e-11,2.67759772687448e-10,4.44915071104445e-06,-8.87376110092485e-09,1.6655513773722e-09,2.38795528489932e-09,-7.48533179883991e-10,1.29670579829266e-09,-1.46497397546241e-09 +0.848,-1.61164022175224e-06,-8.64687624949761e-07,1.41153752661327e-06,3.35977926035902e-10,1.15176924941895e-09,0.0799999913503383,-1.62563679965283e-09,6.45252080933022e-10,3.15424335955994e-10,8.5409110339718e-12,2.40156852737705e-10,-3.73093916872235e-10,-0.0634571153850025,-0.0332165611077826,0.0576390815769681,-1.91014738748496e-09,-9.85019357746528e-09,-0.00104399473961625 +0.85,-3.34846199248964e-09,7.24929372086791e-09,2.05937347903806e-09,3.36029763042811e-10,1.1525032594939e-09,0.0799999965435339,-7.75077562814845e-05,-4.47417964639235e-05,6.81667759890557e-05,6.24240242830253e-12,2.28358998377587e-10,2.73171752579459e-07,6.00268532796599e-10,9.19403442267707e-11,4.65556412865275e-10,-1.75207071073657e-10,4.25007251614317e-11,2.34187669256869e-11 +0.852,-1.92167124687817e-06,-1.04365481080546e-06,1.68420463056949e-06,3.36002895645615e-10,1.15268268541246e-09,0.0799999924430254,-1.62323572552164e-09,6.4561984230993e-10,3.17286561607455e-10,7.84008274967717e-12,2.40326855638351e-10,-3.73000241804533e-10,0.0304292044515594,0.0172186881931477,-0.0262639780847012,7.02346167336109e-10,4.57186372093687e-09,3.42965525770844e-05 +0.854,-3.35495493539173e-09,7.25187620023715e-09,2.06064262528449e-09,3.3606112337381e-10,1.15346456691645e-09,0.0799999965420419,4.4209061524753e-05,2.41329563086673e-05,-3.68891363497492e-05,9.05178709764697e-12,2.46646453261334e-10,4.10357962887797e-07,2.45666659758059e-09,1.82362805412062e-10,-1.92879566485171e-10,1.66967134562767e-10,-2.51968584885631e-10,2.32452945780892e-10 +0.856,-1.74483500077916e-06,-9.47122985570786e-07,1.5366480851705e-06,3.36039102794006e-10,1.15366927122551e-09,0.0799999940844572,-1.61340905913132e-09,6.46349293531578e-10,3.16515043341514e-10,8.50795128792824e-12,2.39318981298808e-10,-3.72070430021409e-10,-0.0152945141311739,-0.00825752356791754,0.0134513357522882,-1.28586377656781e-10,-2.68448457907411e-09,-4.17039024841469e-05 +0.858,-3.36140857162825e-09,7.25446159741128e-09,2.06190868545786e-09,3.36095155178961e-10,1.15442184284165e-09,0.0799999965405536,-1.69689949999427e-05,-8.89713796300289e-06,1.69162066594036e-05,8.53744158701985e-12,2.35908514945038e-10,2.43542352951209e-07,2.23410699662363e-09,2.7972416050126e-10,-2.68014777038416e-10,2.02095284951298e-10,-2.33753988387875e-10,1.39645239816133e-10 +0.86,-1.81271098077893e-06,-9.82711537422798e-07,1.60431291180811e-06,3.36073252560354e-10,1.15461290528529e-09,0.0799999950586266,-1.60447263114483e-09,6.47468190173583e-10,3.1544298423336e-10,9.31633242773343e-12,2.38383965345257e-10,-3.71511849062145e-10,0.00707783364052192,0.0037955812299574,-0.00643064390138444,3.31549024346067e-10,9.51062145704284e-10,-3.70472645616626e-05 +0.862,-3.36782646215283e-09,7.25705147017197e-09,2.06317045739479e-09,3.36132420508672e-10,1.15537537870303e-09,0.0799999965390675,1.1342339562145e-05,6.28518695682672e-06,-8.80636894613414e-06,9.86363768440412e-12,2.39712763527855e-10,9.53532947045587e-08,1.31028543050304e-09,3.11382863937837e-10,-1.64690310000548e-10,1.44415729375069e-10,-1.5178830414797e-10,1.47451495458028e-11 +0.864,-1.76734162253035e-06,-9.57570789595491e-07,1.56908743602358e-06,3.36112707111091e-10,1.1555717563394e-09,0.0799999954400398,-1.59923148942281e-09,6.48713721629334e-10,3.14784222993358e-10,9.89399534523371e-12,2.37776812128665e-10,-3.71452868463961e-10,-0.00376869770080893,-0.00215422395438529,0.00316715119408339,2.97071395261028e-11,-6.72205346941012e-10,-1.95619249965251e-05 +0.866,-3.37422338811053e-09,7.25964632505849e-09,2.06442959428677e-09,3.36171996490053e-10,1.15632648595154e-09,0.0799999965375817,-3.73245124109071e-06,-2.33170886071443e-06,3.86223583019943e-06,9.98246624250853e-12,2.37023942140091e-10,1.71055947184584e-08,4.95344867554314e-10,2.67364255734925e-10,-5.78963960107259e-11,7.06899816460544e-11,-5.03069808033274e-11,-4.07660016854549e-11 +0.868,-1.78227142749472e-06,-9.66897625038349e-07,1.58453637934437e-06,3.36152636976061e-10,1.15651985210796e-09,0.0799999955084622,-1.5972501099526e-09,6.49783178652274e-10,3.14552637409315e-10,1.01767552718179e-11,2.37575584205451e-10,-3.71615932470703e-10,0.00164995427289946,0.000862830379193267,-0.00158485106028366,8.08814820674182e-11,2.38524477946811e-10,-8.41256925232513e-06 +0.87,-3.38061238855034e-09,7.2622454577731e-09,2.0656878048364e-09,3.36212703511141e-10,1.15727678828836e-09,0.0799999965360953,2.86736585050715e-06,1.11961265605864e-06,-2.47716841093523e-06,1.03059921707782e-11,2.37978040051878e-10,-1.65446822908421e-08,2.98426647976635e-11,1.43548367637081e-10,-1.35525271560688e-11,3.12250225675825e-11,-1.21430643318376e-11,-6.07153216591882e-11 +0.872,-1.77080196409269e-06,-9.62419174414114e-07,1.57462770570063e-06,3.36193860944745e-10,1.15747176426817e-09,0.0799999954422835,-1.5971307392934e-09,6.50357372122822e-10,3.14498427300691e-10,1.03016553620883e-11,2.37527011948124e-10,-3.7185879375734e-10,-0.000909460480286605,-0.000492357722951461,0.000743824324074374,1.27935856353289e-11,-1.37910516340156e-10,-2.43679555700371e-06 +0.874,-3.38700091150751e-09,7.26484688726159e-09,2.06694579854561e-09,3.36253910132589e-10,1.15822689633616e-09,0.0799999965346078,-7.70476070639271e-07,-8.49818235747201e-07,4.9812888536227e-07,1.03571665133195e-11,2.37426397986517e-10,-2.6291864518857e-08,2.8939958068852e-08,-9.11206873843714e-09,-5.00727931340705e-09,3.29163779566599e-10,-4.00460914429246e-09,6.04811339899313e-09 +0.876,-1.77388386837524e-06,-9.65818447357103e-07,1.57662022124208e-06,3.36235289610798e-10,1.15842146986012e-09,0.079999995337116,-1.481370907018e-09,6.13909097169074e-10,2.94469310047063e-10,1.16183104803547e-11,2.21508575370954e-10,-3.47666340161367e-10,-0.033987512143243,-0.0165552767271946,0.0303250529621245,-2.32019264911897e-10,-9.99591034944734e-09,-0.00181933195765593 +0.878,-3.39292639513558e-09,7.26730252365027e-09,2.06812367578579e-09,3.3630038337451e-10,1.15911293063764e-09,0.0799999965332172,-0.000136720524643611,-6.70709251445258e-05,0.000121798340733861,9.42908945367193e-12,1.97442756588728e-10,-7.30361969514259e-06,-2.9867980918391e-08,8.63155033559156e-09,3.71848819097353e-09,-3.62123525610158e-11,3.77519196459452e-09,-6.21551421442489e-09 +0.88,-2.32076596694969e-06,-1.23410214793521e-06,2.06381358417752e-06,3.36273005968613e-10,1.15921124088647e-09,0.0799999661226372,-1.60084283069156e-09,6.4843529851144e-10,3.09343262810957e-10,1.14734610701106e-11,2.36609343229332e-10,-3.72528397019067e-10,0.0779780091705763,0.0388954861107754,-0.070692279211513,1.12670289764693e-09,1.795005116767e-08,0.0031781148927823 +0.882,-3.39932976645835e-09,7.26989626484431e-09,2.06936104883704e-09,3.36346277218791e-10,1.16005936801056e-09,0.079999996531727,0.000175191512038694,8.8511019298576e-05,-0.000160970776112192,1.39359010442597e-11,2.69242961259408e-10,5.40883987598661e-06,-8.89975484801019e-09,1.82319437325162e-09,2.37971534838843e-09,-6.86299975183323e-10,1.31014990523148e-09,-1.54390389361934e-09 +0.884,-1.61999991879491e-06,-8.80058070740902e-07,1.41993047972876e-06,3.3632874957279e-10,1.16028821273151e-09,0.0799999877579967,-1.6364418500836e-09,6.55728076004446e-10,3.18862124204511e-10,8.7282611693773e-12,2.41849942850258e-10,-3.78704012593544e-10,-0.0630258912392283,-0.0333680504590108,0.0572226343865423,-1.83642163975594e-09,-9.79728451144799e-09,-0.0012633139447743 +0.886,-3.40587553385868e-09,7.27251917714833e-09,2.07063649733386e-09,3.36381190263468e-10,1.16102676778196e-09,0.0799999965302122,-7.69120529182194e-05,-4.49611825374674e-05,6.79197614339779e-05,6.59021448523588e-12,2.30053823213616e-10,3.55584096889405e-07,2.98296272665393e-08,-9.11011717452666e-09,-4.60222138176647e-09,2.09251019289702e-10,-4.00981331472039e-09,6.23112672570867e-09 +0.888,-1.92764813046779e-06,-1.05990280089077e-06,1.69160952546467e-06,3.36355110430731e-10,1.16120842802436e-09,0.0799999891803331,-1.51712334101744e-09,6.1928760730634e-10,3.00453238677445e-10,9.56526524653611e-12,2.25810689591377e-10,-3.5377950569071e-10,-0.00314173447975014,0.000900248383652044,0.00341840782839674,5.44052650153225e-10,-5.36680075380324e-09,-0.00237097843094891 +0.89,-3.41194402722275e-09,7.27499632757755e-09,2.07183831028857e-09,3.36419451324454e-10,1.16193001054032e-09,0.0799999965287971,-8.947899083722e-05,-4.13601890028592e-05,8.15933927475649e-05,8.76642508584879e-12,2.08586620198403e-10,-9.12832962690623e-06,-2.71980517534825e-08,8.81434682187262e-09,3.48614366540989e-09,1.62847166307322e-10,3.53319803969576e-09,-5.95183624607642e-09 +0.892,-2.28556409381667e-06,-1.22534355690221e-06,2.01798309645493e-06,3.36390176131074e-10,1.16204277450516e-09,0.0799999526670146,-1.62591554803137e-09,6.5454499459383e-10,3.14397813339084e-10,1.02166539117654e-11,2.3994348175016e-10,-3.77586850675015e-10,0.0607948610688605,0.0299049734663048,-0.05514584321424,9.64289412208606e-10,1.49207902977455e-08,0.00420319825732845 +0.894,-3.41844768941488e-09,7.27761450755593e-09,2.07309590154192e-09,3.36460317940102e-10,1.16288978446732e-09,0.0799999965272868,0.000153700453438222,7.825970486236e-05,-0.000138989980109395,1.26235827346832e-11,2.68269781389385e-10,7.68446340240758e-06,-6.44853636634634e-09,2.019651806906e-09,2.05011788795283e-09,-4.55581752878408e-10,1.04473721340703e-09,-1.31665511826638e-09 +0.896,-1.67076228006378e-06,-9.12304737452768e-07,1.46202317601735e-06,3.36440670462013e-10,1.16311585363071e-09,0.0799999834048682,-1.65170969349676e-09,6.62623601821454e-10,3.22598284890896e-10,8.39432690025176e-12,2.44122430603788e-10,-3.82853471148081e-10,0.0109393666165782,0.0068330696780059,-0.00701951077526716,3.02058725254461e-10,-2.44682746286527e-09,-0.00110110121367968 +0.898,-3.42505452818886e-09,7.28026500196322e-09,2.07438629468149e-09,3.36493895247703e-10,1.16386627418974e-09,0.0799999965257553,0.000197457919904535,0.000105591983574384,-0.000167068023210464,1.38318176357011e-11,2.58482471537924e-10,3.28005854768887e-06,3.40764200711107e-08,-1.02092813369925e-08,-6.06719535722886e-09,5.86987056183651e-10,-4.711508960753e-09,-0.00333693685010405 +0.9,-8.8093060044564e-07,-4.89936803155233e-07,7.9375108317549e-07,3.36495997732555e-10,1.16414978351687e-09,0.0799999965251024,-1.51540401321232e-09,6.21786476473484e-10,2.9832950346198e-10,1.07422751249864e-11,2.25276394760776e-10,-1.33481302538874e-05,-0.152534173036703,-0.0819429769292628,0.130902368687571,-3.19210803623182e-09,-2.02537639437672e-08,-0.000820108351888558 +0.902,-3.43111614424171e-09,7.28275214786911e-09,2.07557961269533e-09,3.36536864348203e-10,1.16476737976878e-09,0.0799999431332343,-0.000412678772242279,-0.000222179924142668,0.000356541451539821,1.06338549077378e-12,1.77467415762855e-10,-3.7485986537078e-10,-3.61967942598406e-08,1.192427233343e-08,6.35114790620282e-09,-4.01371644254133e-10,5.011182441228e-09,0.00562308912974151 +0.904,-2.53164568941476e-06,-1.37865649972591e-06,2.21991688933477e-06,3.36500251274519e-10,1.16485965317992e-09,0.079999996523603,-1.66019119025168e-09,6.69483565807205e-10,3.23734095086791e-10,9.13678854796983e-12,2.45321124525688e-10,9.14422626507871e-06,0.163535099171615,0.0877341415224905,-0.141915414935854,3.215743643592e-09,2.65885403971655e-08,-3.87884169228412e-09 +0.906,-3.43775690900272e-09,7.28543008213234e-09,2.07687454907568e-09,3.36573411502394e-10,1.16574866426689e-09,0.0799999797101394,0.000241461624444182,0.000128756641947295,-0.000211120208203595,1.39263600651418e-11,2.83821577351517e-10,-3.90375232139916e-10,9.31194140893487e-10,2.30718222304915e-10,6.18645759620228e-10,-1.29020058525775e-10,3.33934269125535e-11,-0.00202566139383131 +0.908,-1.56579919163803e-06,-8.63629931936727e-07,1.37543605652039e-06,3.36555956714779e-10,1.16599493948932e-09,0.0799999965220415,-1.65646641368811e-09,6.70406438696424e-10,3.26208678125272e-10,8.62070831386673e-12,2.45454698233338e-10,1.04158068975346e-06,-0.0193947033151717,-0.0100341311728719,0.0184411367498086,-2.88397777881144e-11,-7.50528111881364e-09,6.91807722219549e-09 +0.91,-3.44438277465747e-09,7.28811170788712e-09,2.07817938378818e-09,3.3660789433565e-10,1.16673048305982e-09,0.0799999838764621,0.000163882811183495,8.86201172558067e-05,-0.000137355661204361,1.38110009539893e-11,2.53800452876263e-10,-3.62702923251134e-10,3.55971762483475e-08,-1.0466454092306e-08,-6.65786870079897e-09,8.00358043728798e-10,-4.94656399174786e-09,-0.00281924275764844 +0.912,-9.10267946904048e-07,-5.091494629135e-07,8.2601341170295e-07,3.36611200718595e-10,1.16701014130083e-09,0.0799999965205906,-1.51407770869472e-09,6.285406223272e-10,2.99577203322076e-10,1.18221404887819e-11,2.25668442266347e-10,-1.02353903408403e-05,-0.140743941627575,-0.0759116657975295,0.120801182304248,-2.80851730760645e-09,-1.85350866599432e-08,-3.52148865623292e-09 +0.914,-3.45043908549225e-09,7.29062587037643e-09,2.07937769260147e-09,3.36655182897605e-10,1.16763315682888e-09,0.0799999429349008,-0.000399092955326806,-0.000215026545934312,0.000345849068012632,2.57693172356354e-12,1.7966010623649e-10,-3.76788877876066e-10,-3.61319318648717e-08,1.16057337351538e-08,6.10470875239686e-09,-3.58654078658205e-10,4.94656399174786e-09,0.00480901944134581 +0.916,-2.50663976821127e-06,-1.36925564665075e-06,2.20940968375348e-06,3.36621508445489e-10,1.16772878172577e-09,0.0799999965190835,-1.6586054361542e-09,6.74963557267815e-10,3.23996038331664e-10,1.03875241741491e-11,2.45454698233338e-10,9.00068742454296e-06,0.158148919595047,0.0849487908787838,-0.1379407144782,3.09214459592865e-09,2.57827613425742e-08,-3.80424858281712e-09 +0.918,-3.45707350723687e-09,7.2933257246055e-09,2.0806736767548e-09,3.36696732994302e-10,1.16861497562182e-09,0.0799999789376505,0.000233502723053381,0.000124768617580824,-0.000205913789900168,1.49455101072782e-11,2.82791151606787e-10,-3.92005872207335e-10,5.16324179591909e-10,-8.47846098883664e-11,5.23778069527747e-10,-1.8323016715005e-10,2.34187669256869e-11,-0.00200701381208867 +0.92,-1.57262887599775e-06,-8.7018117632745e-07,1.38575452415281e-06,3.36681290485918e-10,1.1688599463322e-09,0.0799999965175155,-1.65654013943583e-09,6.74624418828262e-10,3.26091150609775e-10,9.65460350554891e-12,2.45548373301041e-10,9.72632176188259e-07,-0.0833322100370731,-0.0453555361447452,0.0739629067086433,-1.80736502153333e-09,-1.3458418407497e-08,1.77722420113824e-09 +0.922,-3.46369966779461e-09,7.29602422228082e-09,2.08197804135724e-09,3.36735351408324e-10,1.16959716911502e-09,0.0799999828281792,-9.98261170949117e-05,-5.66535269981571e-05,8.99378369344054e-05,7.71605002114483e-12,2.28957477976799e-10,-3.84896975402782e-10,3.2591442565566e-08,-9.60581440778704e-09,-5.49050822168382e-09,5.00901403688302e-10,-4.42137645939588e-09,0.000612285487935903 +0.924,-1.9719333443774e-06,-1.09679528432008e-06,1.74550587189043e-06,3.36712154686003e-10,1.16977577624411e-09,0.0799999965159759,-1.52617436917357e-09,6.36201161197114e-10,3.0412911772304e-10,1.16582091203021e-11,2.27862867463457e-10,3.42177412793187e-06,0.00643785190979875,0.00599683552815477,-0.0054735021706026,9.11814027060308e-10,-4.10695782937508e-09,-0.00333346864174466 +0.926,-3.46980436527131e-09,7.29856902692561e-09,2.08319455782813e-09,3.36781984244805e-10,1.17050862058488e-09,0.0799999965152757,-7.40747094557167e-05,-3.2666184885538e-05,6.8043828251995e-05,1.13633061293861e-11,2.12529646659298e-10,-1.3334259463954e-05,-2.67570254147697e-08,8.35724718595273e-09,3.10081821330854e-09,2.1315414711065e-10,3.39268543814164e-09,-0.000855539507293999 +0.928,-2.26823218220026e-06,-1.22746002386223e-06,2.01768118489841e-06,3.36757607910521e-10,1.17062589483075e-09,0.079999943178938,-1.63320247083265e-09,6.69630149940925e-10,3.16532390576274e-10,1.25108257087447e-11,2.41433609216024e-10,-3.83901244127571e-10,0.0548978137976818,0.0267799624632976,-0.0505014760785729,8.15970555012589e-10,1.40022542172158e-08,0.00554078105358817 +0.93,-3.47633717515464e-09,7.30124754752537e-09,2.08446068739043e-09,3.3683202754764e-10,1.17147435502174e-09,0.0799999965137401,0.000145516545735011,7.44536649676524e-05,-0.000133962076062297,1.46271883494364e-11,2.68538663528161e-10,8.82886475039867e-06,-6.81938771944501e-09,1.45326459199957e-09,1.88228339165207e-09,-5.37981117987306e-10,9.84455572616837e-10,-1.19522447494802e-09 +0.932,-1.68616599926022e-06,-9.29645363991621e-07,1.48183288064922e-06,3.36816116663918e-10,1.17170004948486e-09,0.079999978494397,-1.66048002171043e-09,6.75443208308923e-10,3.24061524142882e-10,1.03589012367955e-11,2.45371431506491e-10,-3.88682142027363e-10,0.0139236835977228,0.00856276368343607,-0.00943028135094723,2.57172755313561e-10,-2.05347891468753e-09,-0.00108114580656127 +0.934,-3.48297909524148e-09,7.3039493203586e-09,2.085756933487e-09,3.36873463152587e-10,1.17245584074777e-09,0.0799999965121854,0.000201211280125902,0.000108704719701397,-0.000171683201466086,1.56558793706907e-11,2.60324747869411e-10,4.5042815241536e-06,6.32117242663903e-08,-2.00841947239904e-08,-1.12270219163046e-08,7.89299181569446e-10,-8.77813446931162e-09,1.33608402119733e-08 +0.936,-8.81320878756611e-07,-4.94826485186034e-07,7.9510007478488e-07,3.36878740181401e-10,1.17274134847634e-09,0.0799999965115231,-1.40763312464487e-09,5.95106429412961e-10,2.79153436477664e-10,1.35160979630733e-11,2.10258893629245e-10,-3.3523878117947e-10,-0.201372282313802,-0.106790307519448,0.173825279625684,-3.89055107574698e-09,-3.26717819465471e-08,-0.00733536628834407 +0.938,-3.48860962774006e-09,7.30632974607626e-09,2.08687354723291e-09,3.36927527544439e-10,1.17329687632228e-09,0.0799999965108444,-0.000604277849129307,-0.000318456510376395,0.000523617917036652,9.36750677027475e-14,1.29637620083223e-10,-2.48371836292227e-05,-6.64711612575335e-08,1.9926118047242e-08,1.00453499685127e-08,-5.96311194867027e-10,8.80545636405826e-09,-1.39922795572289e-08 +0.94,-3.29843227527384e-06,-1.76865252669162e-06,2.88957174293149e-06,3.36879114881672e-10,1.17325989895667e-09,0.0799998971627886,-1.673517769675e-09,6.74810901601929e-10,3.19334836351714e-10,1.11308531836052e-11,2.45480719085478e-10,-3.91207899408385e-10,0.271091576862071,0.142478512419209,-0.237045623838411,4.85722573273505e-09,4.92180081412829e-08,0.0100499347550561 +0.942,-3.49530369881876e-09,7.30902898968266e-09,2.08815088657832e-09,3.36972050957174e-10,1.17427879919862e-09,0.0799999965092796,0.00048008845831898,0.000251457539300441,-0.000424564578316993,1.9522577998643e-11,3.26509652648354e-10,1.53625553910019e-05,-8.15854003279048e-09,1.90038956793259e-09,3.14440314064244e-09,-9.45641134841855e-10,1.35481903473789e-09,-1.4137996329211e-09 +0.944,-1.37807844199792e-06,-7.62822369489852e-07,1.19131342966351e-06,3.36957205193666e-10,1.17456593756726e-09,0.0799999586130102,-1.70615192980616e-09,6.8241245987366e-10,3.31912448914284e-10,7.34828864423775e-12,2.50899995224429e-10,-3.9686309794007e-10,-0.0983962229625052,-0.0518425677877194,0.0892028468377344,-2.32778206432637e-09,-1.98109757765241e-08,-0.00147226339019396 +0.946,-3.50212830653798e-09,7.31175863952216e-09,2.08947853637398e-09,3.37001444111751e-10,1.17528239917952e-09,0.0799999965076921,8.65035664689584e-05,4.40872681495632e-05,-6.77531909660557e-05,1.02114497413375e-11,2.47265749542258e-10,9.4735018302261e-06,3.68461500459965e-08,-1.09987973589964e-08,-6.33737853861225e-09,5.93925950087558e-10,-5.01898869686989e-09,-0.00535701900374052 +0.948,-1.03206417612208e-06,-5.86473296891599e-07,9.2030066579929e-07,3.36998050992632e-10,1.17555500056543e-09,0.0799999965070175,-1.55876732962218e-09,6.38417270437674e-10,3.06562934759835e-10,9.72399244458798e-12,2.3082404043695e-10,-2.142847287806e-05,-0.113339958617806,-0.0608173120328,0.095735288175593,-2.18423369668929e-09,-1.43158054854986e-08,-0.00236847212675694 +0.95,-3.50836337585647e-09,7.31431230860391e-09,2.09070478811302e-09,3.37040340081529e-10,1.17620569534127e-09,0.0799999107938006,-0.000366856268002265,-0.000199181979981637,0.000315187961736317,1.47451495458028e-12,1.90002527600264e-10,-3.86676801689134e-10,-3.37897299116513e-08,1.21400285657547e-08,6.08042262373319e-09,-2.09684700158696e-10,4.76875483546024e-09,0.00885410759553921 +0.952,-2.49948924813115e-06,-1.38320121681815e-06,2.18105251274456e-06,3.3700394905245e-10,1.17631501067583e-09,0.0799999965054708,-1.69392624926878e-09,6.86977384700693e-10,3.30884625254768e-10,8.8852536439532e-12,2.49899059778791e-10,1.39879575040969e-05,0.146767388267807,0.0796837076270233,-0.126409539731587,2.9913137938875e-09,2.35206819299005e-08,-3.31245447737771e-09 +0.954,-3.51513908085355e-09,7.31706021814271e-09,2.09202832661404e-09,3.37075881096105e-10,1.17720529158039e-09,0.0799999667456306,0.000220213285068963,0.000119552850526457,-0.00019045019719003,1.34397701301303e-11,2.84085255319866e-10,-3.99926619598645e-10,3.10084531836285e-09,-5.09575021068187e-11,2.02528965820292e-10,-3.90312782094781e-12,-2.42427605767759e-10,-0.00301770785790522 +0.956,-1.6186361078553e-06,-9.0498981471232e-07,1.41925172398444e-06,3.37057708132971e-10,1.17745135169711e-09,0.0799999965038711,-1.68152286799533e-09,6.86773554692265e-10,3.31694741118049e-10,8.86964113266941e-12,2.4892934935572e-10,1.91712607247596e-06,-0.0777610356121535,-0.0428350100682622,0.0683918180431668,-1.50031896628539e-09,-1.27159567597774e-08,1.86916454536228e-09 +0.958,-3.52186517232553e-09,7.31980731236148e-09,2.09335510557851e-09,3.37111359660636e-10,1.17820100897781e-09,0.0799999744141349,-9.08308573796516e-05,-5.17871897465924e-05,8.31170749826375e-05,7.43849426498875e-12,2.33221428280756e-10,-3.92449961417196e-10,3.44218197782005e-08,-9.56960205522179e-09,-5.71255282660687e-09,6.4444977132548e-10,-4.63648217041554e-09,0.000901184324213273 +0.96,-1.98195953737389e-06,-1.11213857369868e-06,1.75172002391498e-06,3.37087462110031e-10,1.17838423741023e-09,0.0799999965023013,-1.54383558888253e-09,6.48495146471379e-10,3.08844529811622e-10,1.14474402179713e-11,2.30383420674058e-10,5.52186336932895e-06,0.00344456812644636,0.00427415539701546,-0.00290918339266688,9.40436964413899e-10,-4.74923919635724e-09,-0.00419048776408037 +0.962,-3.52804051468106e-09,7.32240129294737e-09,2.09459048369776e-09,3.37157149421508e-10,1.1791225426605e-09,0.0799999965015884,-7.70525848738665e-05,-3.4690568158531e-05,7.14803414119703e-05,1.12002421226442e-11,2.14224471495328e-10,-1.67623435062825e-05,-2.60978304938878e-08,8.55175305569213e-09,3.04563232272687e-09,2.76471553983724e-10,3.34541422341967e-09,-0.00138056355930564 +0.964,-2.29016987686936e-06,-1.25090084633281e-06,2.03764138956286e-06,3.37132263078521e-10,1.17924113529622e-09,0.0799999294529272,-1.64822691085808e-09,6.82702158694148e-10,3.2102705910253e-10,1.25533264339062e-11,2.43765077567737e-10,-3.90867893607094e-10,0.0563743875771609,0.027803747962166,-0.0519584638468536,8.99237281859476e-10,1.42659321855642e-08,0.00680442140913589 +0.966,-3.53463342232449e-09,7.32513210158214e-09,2.09587459193417e-09,3.37207362727243e-10,1.18009760297078e-09,0.0799999965000249,0.000148444965434777,7.65244236901329e-05,-0.000136353513975444,1.47971912500822e-11,2.71288200237585e-10,1.04553421302611e-05,-6.56221496413145e-09,1.46193820937945e-09,1.86493615689231e-09,-5.1456235106162e-10,9.49761103097301e-10,-1.14491749414469e-09 +0.968,-1.69639001513025e-06,-9.44803151572277e-07,1.49222733366108e-06,3.37191451843522e-10,1.18032628809717e-09,0.0799999712742958,-1.67447577071461e-09,6.88549911531666e-10,3.28486803730099e-10,1.04950770296597e-11,2.47564121980126e-10,-3.95447563583673e-10,-0.0522343926911885,-0.0282863022147989,0.0475272666195609,-1.46627501806939e-09,-8.35225985595931e-09,-0.0023547570577459 +0.97,-3.54133132540735e-09,7.32788630122827e-09,2.09718853914909e-09,3.37249343035362e-10,1.1810878594587e-09,0.0799999964984431,-6.04926053299767e-05,-3.66207851690628e-05,5.37555525027995e-05,8.93209117780457e-12,2.37879160813747e-10,1.0363138992775e-06,2.00918925594151e-09,-5.30825383648902e-10,-8.57603918436033e-11,-2.60208521396521e-11,-2.15973072759112e-10,4.07660016854549e-10 +0.972,-1.93836043645016e-06,-1.09128629224853e-06,1.70724954367228e-06,3.37227180208233e-10,1.18127780474042e-09,0.0799999754195514,-1.66643901369084e-09,6.8642660999707e-10,3.28143762162724e-10,1.03909936211011e-11,2.46700229689089e-10,-3.93816923516254e-10,0.0248770181141629,0.0147051996829406,-0.0217397699667524,6.68735899989058e-10,3.49503412322427e-09,6.45247891575828e-05 +0.974,-3.54799708146211e-09,7.33063200766826e-09,2.09850111419774e-09,3.37290907009846e-10,1.18207466037745e-09,0.0799999964968679,3.90154671266749e-05,2.22000135626996e-05,-3.32035273642103e-05,1.16070347777608e-11,2.51859297306644e-10,1.29441305590783e-06,3.16809295811127e-09,-6.04984812246911e-10,-6.95407273432202e-10,2.14888870586627e-10,-4.46257614195033e-10,5.4296844798074e-10 +0.976,-1.78229856794346e-06,-1.00248623799773e-06,1.57443543421544e-06,3.37273608347344e-10,1.18228524192965e-09,0.0799999805972036,-1.6537666418584e-09,6.84006670748082e-10,3.25362133068996e-10,1.12505491034476e-11,2.44915199232309e-10,-3.91645049724331e-10,-0.0128598129539071,-0.00714980580339765,0.0112138192039437,-5.24753851482984e-11,-2.45853684632813e-09,-0.000111887804576938 +0.978,-3.55461214802955e-09,7.33336803435125e-09,2.09980256273001e-09,3.3733590920626e-10,1.18305432117438e-09,0.0799999964953013,-1.24237846889537e-05,-6.39920965089107e-06,1.16517494515647e-05,1.13971332371676e-11,2.42025149921332e-10,8.46861837600076e-07,2.52651632254297e-09,-6.00214322687975e-10,-7.34004870772686e-10,1.89735380184963e-10,-4.08093697723544e-10,4.41487124636097e-10 +0.98,-1.83199370669927e-06,-1.02808307660129e-06,1.6210424320217e-06,3.37319196880292e-10,1.18325334252933e-09,0.0799999839846509,-1.64366057656823e-09,6.8160581345733e-10,3.22426113585905e-10,1.20094906241874e-11,2.43282824441415e-10,-3.89879101225787e-10,0.00573532475046824,0.0031984840479296,-0.00529527631291936,2.68231617472913e-10,5.8937230096312e-10,-0.000104694185612541 +0.982,-3.56118679033582e-09,7.33609445760508e-09,2.10109226718436e-09,3.37383947168757e-10,1.18402745247215e-09,0.0799999964937418,1.05175143129193e-05,6.39472654082734e-06,-9.52935580011276e-06,1.24700597070593e-11,2.44382639125184e-10,4.2808509514991e-07,1.38124646269222e-09,-5.09791861502684e-10,-5.23452808876001e-10,8.54351311918577e-11,-2.48499137933677e-10,2.32452945780892e-10 +0.984,-1.7899236494476e-06,-1.00250417043798e-06,1.58292500882125e-06,3.37369077119121e-10,1.18423087308583e-09,0.0799999856969913,-1.63813559071746e-09,6.7956664601132e-10,3.20332302350401e-10,1.23512311489549e-11,2.4228882788968e-10,-3.88949289442663e-10,-0.00327172458997873,-0.00193196448769472,0.00273802014090843,-4.16333634234433e-11,-6.97358837342676e-10,-6.601746840168e-05 +0.986,-3.56773933269869e-09,7.33881272418913e-09,2.10237359639376e-09,3.37433352093353e-10,1.18499660778371e-09,0.079999996492186,-2.5693840469956e-06,-1.33313140995156e-06,1.42272476352095e-06,1.23035262533655e-11,2.41593203775814e-10,1.6401522154319e-07,4.48480228648628e-10,-4.21537804662364e-10,-2.94902990916044e-10,-2.53703308361608e-11,-1.48318857196017e-10,1.34441069388202e-10 +0.988,-1.80020118563558e-06,-1.00783669607779e-06,1.58861590787533e-06,3.37418291224134e-10,1.18519724590094e-09,0.0799999863530522,-1.63634166980286e-09,6.7788049479267e-10,3.19152690386737e-10,1.22497498256102e-11,2.41695552460896e-10,-3.88411525165111e-10,0.00129456628563166,0.000680587244330718,-0.00119827308080363,-3.57786716920216e-11,1.18394877235417e-10,-3.43258962920422e-05 +0.99,-3.5742846993779e-09,7.3415242461683e-09,2.10365020715531e-09,3.37482351092655e-10,1.18596338999355e-09,0.0799999964906323,2.60888109553103e-06,1.38921756737131e-06,-3.37036755969355e-06,1.21604115665974e-11,2.42066783284755e-10,2.67116363750208e-08,-7.63820430516037e-11,-3.25043811311154e-10,-1.17202254845683e-10,-8.71698546678345e-11,-6.0281640790194e-11,0 +0.992,-1.78976566125345e-06,-1.00227982580831e-06,1.57513443763656e-06,3.37466932870401e-10,1.18616551303408e-09,0.0799999864598988,-1.63664719797507e-09,6.76580319547426e-10,3.18683881367354e-10,1.19010704069389e-11,2.41454425897736e-10,-3.88411525165111e-10,-0.00082995008971907,-0.000491684857759077,0.000756601208659438,-1.15359111152457e-10,-1.63931368479808e-10,-1.59922387832356e-05 +0.994,-3.5808312881698e-09,7.34423056744649e-09,2.10492494268077e-09,3.37529955374283e-10,1.18692920769714e-09,0.0799999964890787,-7.10919263345252e-07,-5.77521863664998e-07,-3.43962725055796e-07,1.16989751219876e-11,2.41411057810836e-10,-3.72573187579217e-08,-2.89915660922624e-10,-1.9667427408887e-10,4.77048955893622e-12,-1.08203376814053e-10,-1.34441069388202e-11,-2.51534904016637e-11 +0.996,-1.79260933830683e-06,-1.00458991326297e-06,1.57375858673633e-06,3.37513728770888e-10,1.18713115726532e-09,0.0799999863108695,-1.63780686061876e-09,6.7579362245107e-10,3.1870296332559e-10,1.14682568996827e-11,2.4140064946998e-10,-3.88512139126717e-10,0.000292900976720357,0.00015454081352291,-0.000192638772880497,-1.07986536379556e-10,5.160802341031e-11,-8.10319346344899e-06 +0.998,-3.58738251561228e-09,7.34693374193629e-09,2.10619975453408e-09,3.37575828401881e-10,1.18789481029502e-09,0.0799999964875246,4.60684643536178e-07,4.06413904266434e-08,-1.11451781657779e-06,1.12670289764694e-11,2.41617489904477e-10,-6.96700926117177e-08,-3.35696097655824e-10,-5.65953534037433e-11,8.45677694538693e-11,-1.0993810029003e-10,3.77302356024955e-11,-7.28583859910258e-11 +1,-1.79076659973269e-06,-1.00442734770126e-06,1.56930051547002e-06,3.37558796886794e-10,1.18809762722494e-09,0.0799999860321891,-1.63914964500938e-09,6.75567241037455e-10,3.19041234403405e-10,1.10285044985225e-11,2.4155157041239e-10,-3.88803572670681e-10,-0.000211061703704607,-0.000130622110350309,0.00025950455098591,-1.08853898117545e-10,-1.25767452008318e-11,-5.75359378196526e-06 +1.002,-3.59393911419231e-09,7.34963601090044e-09,2.10747591947169e-09,3.37619942419876e-10,1.18886101657667e-09,0.0799999964859694,-3.83562171282249e-07,-4.81847050974593e-07,-7.64996126341454e-08,1.08316133839992e-11,2.41567182923674e-10,-9.26844677395788e-08,-3.30708767662391e-10,1.00830802041152e-10,1.49403059368502e-10,-9.17235037922736e-11,3.20923843055709e-11,-1.0321604682062e-10 +1.004,-1.79230084841782e-06,-1.00635473590516e-06,1.56899451701949e-06,3.3760212334033e-10,1.18906389595663e-09,0.0799999856614512,-1.64047248008003e-09,6.7597056424562e-10,3.19638846640879e-10,1.06616104833534e-11,2.41679939949613e-10,-3.89216436857964e-10,6.5835661087251e-05,2.34251680553132e-05,9.35266469305472e-06,-8.65193333643432e-11,6.07153216591882e-11,-5.15472213524769e-06 +1.006,-3.60050100411263e-09,7.35233989315742e-09,2.10875447485825e-09,3.37662588861809e-10,1.18982773633647e-09,0.0799999964844126,-1.20219526933245e-07,-3.8814637875334e-07,-3.90889538619265e-08,1.04855360505418e-11,2.41810044210311e-10,-1.1330335628057e-07,-3.14066264314738e-10,2.18141477104083e-10,1.98842678433828e-10,-7.69783542464708e-11,6.6786853825107e-11,-1.70870262383715e-10 +1.008,-1.79278172652555e-06,-1.00790732142017e-06,1.56883816120404e-06,3.37644065484533e-10,1.19003113613347e-09,0.0799999852082378,-1.64172874513729e-09,6.76843130154036e-10,3.20434217354615e-10,1.03536970663676e-11,2.41947087364913e-10,-3.89899917907499e-10,-4.97092729121166e-05,-4.2135984805458e-05,9.64383249906635e-05,-6.13658429626795e-11,4.9439619065339e-11,-4.34971936941197e-06 +1.01,-3.60706791909318e-09,7.35504726567804e-09,2.11003621172767e-09,3.37704003650074e-10,1.19079552468593e-09,0.079999996482853,-3.19056618581711e-07,-5.56690317975172e-07,3.46664346100728e-07,1.02400726786911e-11,2.42007802686572e-10,-1.30702233758217e-07,-3.02709246557953e-10,3.26344853918137e-10,2.11419423634673e-10,-4.98732999343332e-11,5.94142790522056e-11,-1.38777878078144e-10 +1.012,-1.79405795299988e-06,-1.01013408269207e-06,1.57022481858844e-06,3.37685025775247e-10,1.19099916734422e-09,0.0799999846854289,-1.64293958212352e-09,6.78148509569709e-10,3.21279895049153e-10,1.01542038666302e-11,2.42184744481122e-10,-3.90455029419811e-10,2.30167260034317e-05,2.78491986416274e-06,1.63583925051613e-05,-3.72965547335013e-11,7.28583859910258e-11,-2.91065088697805e-06 +1.014,-3.61363967742168e-09,7.35775985971632e-09,2.11132133130787e-09,3.37744620465541e-10,1.19176426366385e-09,0.0799999964812911,-2.26989714567985e-07,-5.45550638518521e-07,4.12097916121373e-07,1.00908864597571e-11,2.42299236230536e-10,-1.4234483730613e-07,-2.88506198098392e-10,4.02672686861116e-10,2.01986864734049e-10,-2.32019264911898e-11,7.15573433840432e-11,-1.96891114523367e-10 +1.016,-1.79496591185815e-06,-1.01231628524615e-06,1.57187321025293e-06,3.37725389321086e-10,1.19196836428914e-09,0.0799999841160495,-1.64409360691592e-09,6.79759200317153e-10,3.22087842508089e-10,1.00613961606655e-11,2.42470973854658e-10,-3.91242593877905e-10,-7.48060820102494e-07,-4.64033672598063e-06,2.04194447808725e-05,-1.06251812903579e-11,6.33174068731534e-11,-1.14374655579841e-06 +1.018,-3.62021605184934e-09,7.36047889651759e-09,2.1126096826779e-09,3.37784866050184e-10,1.19273414755927e-09,0.0799999964797262,-2.29981957848395e-07,-5.64111985422444e-07,4.93775695244863e-07,1.00483857345956e-11,2.42552505858029e-10,-1.46919823529323e-07,-2.71755274533491e-10,4.25440932483312e-10,1.75207071073657e-10,4.11996825544491e-12,6.63531729561128e-11,-1.83880688453541e-10 +1.02,-1.79588583968954e-06,-1.01457273318784e-06,1.57384831303391e-06,3.37765582864025e-10,1.19293857431257e-09,0.0799999835283702,-1.64518062801405e-09,6.81460964047086e-10,3.22788670792384e-10,1.00778760336873e-11,2.42736386546482e-10,-3.91978116631719e-10,1.82999687723273e-05,1.28014354758981e-05,-1.2215048525617e-05,1.73472347597681e-11,6.07153216591882e-11,4.76632622259387e-07 +1.022,-3.6267967743614e-09,7.36320474037377e-09,2.11390083736107e-09,3.37825177554318e-10,1.19370509310546e-09,0.0799999964781583,-1.56782082759085e-07,-5.12906243518851e-07,4.44915501142395e-07,1.01177746736347e-11,2.42795367144666e-10,-1.45013293040286e-07,-2.60642202265515e-10,4.30861943345739e-10,1.41163122857613e-10,3.42607886505419e-11,5.85469173142172e-11,-1.6826817716975e-10 +1.024,-1.79651296802058e-06,-1.01662435816191e-06,1.57562797503848e-06,3.37806053962719e-10,1.19390975578115e-09,0.0799999829483171,-1.64622319682311e-09,6.83184411820469e-10,3.23353323283815e-10,1.02149191882894e-11,2.42970574215739e-10,-3.92651189340398e-10,1.13183947349042e-05,1.43720124776841e-05,-1.98706731407635e-05,4.59701721133853e-11,7.28583859910258e-11,1.60729589360198e-06 +1.026,-3.63338166714869e-09,7.36593747802106e-09,2.11519425065421e-09,3.37866037231072e-10,1.19467697540232e-09,0.0799999964765876,-1.11508503819468e-07,-4.55418193608114e-07,3.65432808579341e-07,1.03016553620883e-11,2.4308680068863e-10,-1.38584109465878e-07,-2.47550461032753e-10,3.69279259948563e-10,7.07984018633034e-11,4.46691295064027e-11,4.29344060304259e-11,-1.87350135405495e-10 +1.028,-1.79695900203586e-06,-1.01844603093634e-06,1.57708970627279e-06,3.37847260584168e-10,1.19488210298391e-09,0.0799999823939806,-1.64721339866725e-09,6.84661528860264e-10,3.23636516891268e-10,1.0393595706315e-11,2.43142311839861e-10,-3.9340058988202e-10,1.26444451968317e-05,1.87109960771841e-05,-3.12662385131695e-05,5.46437894932694e-11,2.42861286636753e-11,2.10730564942362e-06 +1.03,-3.63997052074336e-09,7.3686761241365e-09,2.11648879672177e-09,3.37907611613897e-10,1.19564954464968e-09,0.079999996475014,-6.09307230321418e-08,-3.80574209299378e-07,2.40367854526663e-07,1.05202305200613e-11,2.43183945203284e-10,-1.30154886868183e-07,-2.48472032879365e-10,3.71447664293534e-10,3.74049749507499e-11,6.80878964320896e-11,5.3776427755281e-11,-1.28369537222284e-10 +1.032,-1.79720272492799e-06,-1.01996832777354e-06,1.5780511776909e-06,3.37889341506248e-10,1.19585483876472e-09,0.0799999818733611,-1.64820728679876e-09,6.86147319517438e-10,3.23786136791071e-10,1.06659472920434e-11,2.43357417550882e-10,-3.93914068030909e-10,6.61814109374422e-06,1.65661447233678e-05,-3.17152133548492e-05,7.45931094670026e-11,4.81385764583564e-11,2.00707853115212e-06 +1.034,-3.64656334989055e-09,7.37142071341457e-09,2.11778394126894e-09,3.37950275403065e-10,1.19662297431988e-09,0.0799999964734384,-3.44581586571649e-08,-3.14309630405906e-07,1.13507001107266e-07,1.08186029579293e-11,2.43376499509118e-10,-1.22126572743575e-07,-2.52266740483065e-10,2.8492833092919e-10,-3.03576608295941e-12,7.26415455565287e-11,5.20417042793042e-12,-1.64798730217797e-10 +1.036,-1.79734055756262e-06,-1.02122556629516e-06,1.57850520569533e-06,3.3793261591808e-10,1.19682834476276e-09,0.0799999813848548,-1.64921635376069e-09,6.87287032841154e-10,3.23773993726739e-10,1.09565134742695e-11,2.43378234232594e-10,-3.9457326295178e-10,2.52960434717064e-06,1.34085535643397e-05,-2.91973619760688e-05,6.74373751285983e-11,1.86482773667507e-11,1.44289614978366e-06 +1.038,-3.6531602153056e-09,7.37416986154593e-09,2.11907903724384e-09,3.37994101456962e-10,1.19759648725681e-09,0.0799999964718601,-2.43397412684823e-08,-2.60675416148548e-07,-3.28244679700939e-09,1.10883524584437e-11,2.43451092618585e-10,-1.1635498814444e-07,-2.68394247798786e-10,2.58907478789538e-10,-3.27429056090622e-11,6.72205346941012e-11,2.64545330086463e-11,-1.38777878078144e-10 +1.04,-1.79743791652769e-06,-1.02226826795976e-06,1.57849207590814e-06,3.37976969327913e-10,1.19780214913323e-09,0.0799999809194348,-1.65028993075189e-09,6.88322662756313e-10,3.23643022104303e-10,1.12253956130459e-11,2.43484052364628e-10,-3.95128374464093e-10,-2.63868899061554e-06,7.9907519403427e-06,-2.16819892118538e-05,6.70036942596041e-11,1.69135538907739e-11,5.98870779355831e-07 +1.042,-3.6597613750286e-09,7.37692315219696e-09,2.12037360933226e-09,3.38039003039414e-10,1.19857042346627e-09,0.0799999964702796,-3.48944972309445e-08,-2.28712408387177e-07,-9.00104036444248e-08,1.13563672354822e-11,2.43518746834148e-10,-1.13959505027017e-07,-2.84440439951572e-10,2.34404509691366e-10,-5.25838053655469e-11,6.41847686111418e-11,2.38524477946811e-11,-9.80118763926895e-11 +1.044,-1.79757749451661e-06,-1.02318311759331e-06,1.57813203429356e-06,3.38022394796855e-10,1.19877622412057e-09,0.0799999804635968,-1.6514276925117e-09,6.89260280795078e-10,3.2343268688284e-10,1.14821346874905e-11,2.43579462155807e-10,-3.95520421969664e-10,-6.16223798334188e-06,2.52741490930352e-06,-1.27581320074482e-05,5.91974386177085e-11,2.73218947466347e-11,-3.36852074012128e-07 +1.046,-3.66636708579865e-09,7.37968019332014e-09,2.12166734007979e-09,3.38084931578164e-10,1.1995447413149e-09,0.0799999964686975,-5.9543449164312e-08,-2.18602748749963e-07,-1.41042931674218e-07,1.1593156989953e-11,2.43628034413135e-10,-1.15306913323065e-07,-3.05094491337421e-10,1.97541635826859e-10,-3.67544536472586e-11,4.83554168928535e-11,7.80625564189563e-12,-1.57859836313889e-10 +1.048,-1.79781566831327e-06,-1.02405752858831e-06,1.57756786256687e-06,3.38068767424815e-10,1.19975073625822e-09,0.0799999800023692,-1.65264807047705e-09,6.90050447338386e-10,3.23285669068251e-10,1.16755563550619e-11,2.43610687178375e-10,-3.96151861314919e-10,-8.59572395900397e-06,-2.60873983005948e-06,-3.37958383066911e-06,3.90312782094781e-11,1.38777878078144e-11,-1.2004936975063e-06 +1.05,-3.67297767808056e-09,7.38244039510949e-09,2.12296048275606e-09,3.38131633803584e-10,1.20051918406361e-09,0.0799999964671129,-9.3926345000328e-08,-2.29037708070201e-07,-1.54561266996894e-07,1.17492821027909e-11,2.43683545564366e-10,-1.20108888113091e-07,-3.22604356423062e-10,1.8995222061946e-10,-1.95156391047391e-11,3.4477629085039e-11,2.60208521396521e-11,-1.15359111152458e-10 +1.052,-1.79819137369327e-06,-1.02497367942059e-06,1.57694961749888e-06,3.38115764553226e-10,1.20072547044048e-09,0.0799999795219336,-1.65393848790274e-09,6.90810256220863e-10,3.23207606511832e-10,1.1813466871402e-11,2.43714770586933e-10,-3.96613297759529e-10,-9.35343000426322e-06,-6.46652523195179e-06,4.56321482336652e-06,2.68882138776401e-11,2.03830008427275e-11,-1.87036150456343e-06 +1.054,-3.67959343203217e-09,7.38520363613437e-09,2.12425331318211e-09,3.3817888767107e-10,1.20149404314596e-09,0.0799999964655264,-1.31340065017381e-07,-2.54903808998008e-07,-1.36308407703428e-07,1.18568349583015e-11,2.43765077567737e-10,-1.27590334131344e-07,-3.39545015368148e-10,1.99276359302836e-10,3.68628738645071e-12,1.69135538907734e-11,3.07913416985883e-11,-1.52655665885959e-10 +1.056,-1.79871673395334e-06,-1.02599329465658e-06,1.57640438386807e-06,3.38163191893059e-10,1.20170053075075e-09,0.0799999790115723,-1.65529666796421e-09,6.91607361658075e-10,3.23222351661378e-10,1.18811210869651e-11,2.43837935953728e-10,-3.97223920423073e-10,-8.82075483618278e-06,-8.81083682575943e-06,1.0320580111009e-05,9.54097911787243e-12,3.55618312575245e-11,-2.27459197310597e-06 +1.058,-3.68621461870403e-09,7.38797006558101e-09,2.12554620258876e-09,3.38226412155418e-10,1.20246939488977e-09,0.0799999964639375,-1.66623084362112e-07,-2.90147156301046e-07,-9.50260872593921e-08,1.1894998874773e-11,2.43907324892767e-10,-1.36688702023768e-07,-3.49817830952448e-10,1.97541635826859e-10,3.71881345162528e-11,1.73472347597681e-12,3.16587034365767e-11,-1.26634813746307e-10 +1.06,-1.79938322629079e-06,-1.02715388328178e-06,1.57602427951903e-06,3.38210771888559e-10,1.20267616005032e-09,0.0799999784648175,-1.65669593928802e-09,6.92397528201382e-10,3.23371104199443e-10,1.1888059980869e-11,2.43964570767474e-10,-3.97730459678058e-10,-7.20396520757261e-06,-9.50342951035186e-06,1.33857500821469e-05,-7.15573433840432e-12,2.99239799605999e-11,-2.391174064309e-06 +1.062,-3.69284140246118e-09,7.39073965569381e-09,2.12683968700556e-09,3.38273964395341e-10,1.20344525317284e-09,0.0799999964623466,-1.95438945192402e-07,-3.28160874342453e-07,-4.14830869308047e-08,1.18663759374193e-11,2.44027020812609e-10,-1.46253398281004e-07,-3.561875187158e-10,2.21610924056037e-10,7.07984018633034e-11,-8.45677694538693e-12,4.33680868994201e-11,-1.58727198051878e-10 +1.064,-1.80016498207156e-06,-1.02846652677915e-06,1.57585834717131e-06,3.38258237392308e-10,1.20365226813357e-09,0.0799999778798039,-1.65812068936288e-09,6.93283971897606e-10,3.23654297806896e-10,1.18542328730875e-11,2.44138043115072e-10,-3.98365368470266e-10,-4.96916456550408e-06,-8.7572284493409e-06,1.38951185627012e-05,-1.1709383462843e-11,2.60208521396521e-11,-2.2419219258829e-06 +1.066,-3.69947388521863e-09,7.3935127915814e-09,2.12813430419678e-09,3.38321381326834e-10,1.2044218053453e-09,0.0799999964607532,-2.15315603454419e-07,-3.63189788139817e-07,1.40973873200001e-08,1.1819538403568e-11,2.44131104221168e-10,-1.55221085984536e-07,-3.58708288766829e-10,2.36139233167343e-10,8.26162055433954e-11,-1.7997756063259e-11,3.51281503885303e-11,-1.28369537222284e-10 +1.068,-1.80102624448538e-06,-1.02991928593171e-06,1.57591473672059e-06,3.38305515545922e-10,1.20462879255046e-09,0.0799999772589195,-1.65955552251795e-09,6.94228528830276e-10,3.2398476262907e-10,1.17822418488345e-11,2.44278555716626e-10,-3.98878846619155e-10,-2.50540110576305e-06,-6.9123276980748e-06,1.22773726948799e-05,-2.25514051876985e-11,7.5460471204991e-11,-1.88258610089864e-06 +1.07,-3.7061121073087e-09,7.39628970569672e-09,2.1294302432473e-09,3.38368510294229e-10,1.20539891956817e-09,0.0799999964591576,-2.25337207877471e-07,-3.90839098932116e-07,6.32068780995198e-08,1.17293327828172e-11,2.44432946105988e-10,-1.6275143038813e-07,-3.58789603929765e-10,2.48499137933677e-10,1.21322223101128e-10,-2.88397777881144e-11,6.41847686111418e-11,-1.79543879763599e-10 +1.072,-1.80192759331689e-06,-1.03148264232744e-06,1.57616756423298e-06,3.38352432877054e-10,1.20560652433488e-09,0.0799999766079138,-1.66099068093367e-09,6.9522252538201e-10,3.24470051521475e-10,1.1666882737682e-11,2.4453529479107e-10,-3.99597022138209e-10,-1.91305901241917e-07,-4.42362964835074e-06,9.21538745920351e-06,-2.71050543121376e-11,3.38271077815477e-11,-1.38983616282395e-06 +1.074,-3.71275607003244e-09,7.39907059579825e-09,2.13072812345338e-09,3.3841517782518e-10,1.20637706074733e-09,0.0799999964575593,-2.26102431482439e-07,-4.08533617525519e-07,1.00068427936334e-07,1.16209125655686e-11,2.44568254537114e-10,-1.68310775039426e-07,-3.55103316543315e-10,2.68448457907411e-10,1.19262238973405e-10,-2.12503625807159e-11,2.68882138776405e-11,-1.56992474575901e-10 +1.076,-1.80283200304282e-06,-1.03311677679754e-06,1.57656783794473e-06,3.38398916527316e-10,1.20658479735303e-09,0.0799999759346707,-1.66241109419984e-09,6.9629631921364e-10,3.24947100477368e-10,1.15818812873591e-11,2.44642847646581e-10,-4.00224992036513e-10,1.70727744008141e-06,-1.74342636681535e-06,5.4444705037751e-06,-2.32019264911898e-11,4.46691295064027e-11,-8.48415088183784e-07 +1.078,-3.71940571440924e-09,7.40185578107511e-09,2.13202791185529e-09,3.38461505350329e-10,1.20735563213792e-09,0.0799999964559584,-2.19273321722113e-07,-4.1550732299278e-07,1.21846309951434e-07,1.15281048596039e-11,2.4474693105514e-10,-1.71704435392161e-07,-3.48787838888586e-10,2.57606436182556e-10,1.26309553094561e-10,-2.86229373536173e-11,6.85215773010838e-11,-1.59594559789866e-10 +1.08,-1.80370909632971e-06,-1.03477880608951e-06,1.57705522318453e-06,3.38445028946754e-10,1.20756378507725e-09,0.079999975247853,-1.6638062455554e-09,6.9732674495837e-10,3.25452338689746e-10,1.14673895379447e-11,2.44916933955785e-10,-4.00863370275672e-10,3.02425188299267e-06,7.27105224987423e-07,1.65633858625197e-06,-2.47198095326695e-11,7.28583859910258e-11,-3.37816580264771e-07 +1.082,-3.72606093939146e-09,7.40464508805494e-09,2.13332972121005e-09,3.38507374908481e-10,1.20833529987374e-09,0.0799999964543549,-2.07176314190142e-07,-4.12598902092831e-07,1.28471664296442e-07,1.14292256214732e-11,2.45038364599104e-10,-1.7305570171322e-07,-3.45453917208194e-10,2.8492833092919e-10,1.22081164621868e-10,-1.7130394325271e-11,5.07406616723216e-11,-1.37910516340156e-10 +1.084,-1.80453780158647e-06,-1.03642920169789e-06,1.57756910984172e-06,3.3849074584924e-10,1.20854393853564e-09,0.0799999745556302,-1.66518806122423e-09,6.98466458282087e-10,3.25940663348234e-10,1.13988679606436e-11,2.45119896602475e-10,-4.01415012341033e-10,3.70777291248263e-06,2.69162665246514e-06,-1.6028658435252e-06,-1.17093834628434e-11,3.25260651745651e-11,7.74484643084605e-08 +1.086,-3.73272169163635e-09,7.40743895388807e-09,2.13463348386345e-09,3.38552970380324e-10,1.20931577946015e-09,0.0799999964527492,-1.92345222540212e-07,-4.0183239548297e-07,1.22060200922341e-07,1.13823880876218e-11,2.45168468859802e-10,-1.72745907855987e-07,-3.3995159118283e-10,2.7300210703185e-10,1.11130722679764e-10,-8.89045781438113e-12,5.11743425413158e-11,-1.73472347597681e-10 +1.088,-1.80530718247663e-06,-1.03803653127982e-06,1.57805735064541e-06,3.38536275401591e-10,1.20952461241108e-09,0.0799999738646465,-1.66654786758896e-09,6.99558466710214e-10,3.26385186238953e-10,1.13633061293861e-11,2.4532459397264e-10,-4.02108901731424e-10,3.79704923644634e-06,3.9760935429539e-06,-3.97480887179973e-06,-1.25767452008318e-11,5.50774703622636e-11,3.55333817925185e-07 +1.09,-3.73938788310671e-09,7.41023718775491e-09,2.1359390246084e-09,3.38598423604841e-10,1.21029707783604e-09,0.0799999964511408,-1.77157025594426e-07,-3.85928021311155e-07,1.06160965435142e-07,1.13320811068185e-11,2.45388778741251e-10,-1.71324572584286e-07,-3.32660331572865e-10,2.75604192245815e-10,9.12898229232794e-11,-5.42101086242752e-12,5.03069808033274e-11,-1.57859836313889e-10 +1.092,-1.806015810579e-06,-1.03958024336506e-06,1.57848199450715e-06,3.38581603726018e-10,1.21050616752605e-09,0.0799999731793482,-1.66787850891525e-09,7.00660883479198e-10,3.26750345530646e-10,1.13416220859364e-11,2.45525821895853e-10,-4.02740341076679e-10,3.40137068358981e-06,4.53136898663497e-06,-5.30377033524514e-06,3.68628738645071e-12,5.68121938382404e-11,4.78863476649493e-07 +1.094,-3.74605939714237e-09,7.41303983128883e-09,2.13724602599052e-09,3.38643790093185e-10,1.21127918112363e-09,0.0799999964495298,-1.63551542860067e-07,-3.67802545364615e-07,8.49458840941618e-08,1.13468262563643e-11,2.45616027516604e-10,-1.69409118677688e-07,-3.33690323636726e-10,2.75604192245815e-10,8.69530142333374e-11,2.81892564846231e-12,3.68628738645071e-11,-1.45716771982052e-10 +1.096,-1.80667001675044e-06,-1.04105145354652e-06,1.57882177804353e-06,3.38626991031044e-10,1.21148863163612e-09,0.0799999725017118,-1.6692132702098e-09,7.01763300248181e-10,3.27098157587579e-10,1.13528977885302e-11,2.45673273391311e-10,-4.03323208164607e-10,2.66942932060192e-06,4.4150750763694e-06,-5.61521868499419e-06,9.10729824887823e-12,2.38524477946811e-11,4.54815005102027e-07 +1.098,-3.75273625022321e-09,7.41584688448982e-09,2.13855441862087e-09,3.38689201684339e-10,1.21226187421719e-09,0.0799999964479166,-1.52873825577659e-07,-3.50142245059137e-07,6.24850093541851e-08,1.13832554493598e-11,2.45711437307783e-10,-1.6758985865728e-07,-3.28621678480356e-10,2.6628005356244e-10,5.60532523175005e-11,1.64798730217797e-11,4.85722573273506e-11,-1.57859836313889e-10 +1.1,-1.80728151205276e-06,-1.04245202252676e-06,1.57907171808094e-06,3.38672524052841e-10,1.21247147738535e-09,0.0799999718313523,-1.67052775692372e-09,7.02828420462431e-10,3.27322370596849e-10,1.14188172806173e-11,2.45867562420621e-10,-4.03954647509863e-10,1.76245790965007e-06,3.76397198999234e-06,-5.07516229562854e-06,1.53956708492942e-11,5.42101086242752e-11,3.090531303096e-07 +1.102,-3.7594183612509e-09,7.41865819817167e-09,2.13986370810326e-09,3.38734876953461e-10,1.21324534446687e-09,0.0799999964463007,-1.45823993939059e-07,-3.35086357099168e-07,4.21843601716709e-08,1.1444838132757e-11,2.4592827774228e-10,-1.66353646136041e-07,-3.29868510978714e-10,2.7148422399037e-10,6.17995238316737e-11,1.23599047663347e-11,3.03576608295941e-11,-1.56125112837913e-10 +1.104,-1.80786480802851e-06,-1.04379236795515e-06,1.57924045552163e-06,3.38718303405372e-10,1.21345519049632e-09,0.0799999711659377,-1.67184723096764e-09,7.03914357358392e-10,3.27569568692176e-10,1.14682568996827e-11,2.45988993063939e-10,-4.04579147961214e-10,8.29913720211405e-07,2.75999665830249e-06,-3.93646497776761e-06,1.47451495458028e-11,3.85975973404839e-11,7.97547791697716e-08 +1.106,-3.76610575017478e-09,7.4214738556011e-09,2.14117398637803e-09,3.3878074998106e-10,1.21422930043913e-09,0.0799999964446824,-1.42504339058214e-07,-3.24046370465958e-07,2.64385002606004e-08,1.15038187309402e-11,2.46082668131642e-10,-1.66034627019362e-07,-3.2778142179668e-10,2.6996634094889e-10,3.84891771232354e-11,2.42861286636753e-11,4.03323208164607e-11,-1.32706345912226e-10 +1.108,-1.80843482538474e-06,-1.04508855343702e-06,1.57934620952267e-06,3.38764318680296e-10,1.21443952116884e-09,0.0799999705017992,-1.67315835665482e-09,7.04994222722188e-10,3.27723525400669e-10,1.15654014143374e-11,2.46150322347205e-10,-4.05109973344863e-10,-6.9739136340785e-09,1.5974305211941e-06,-2.48495549224486e-06,2.73218947466347e-11,4.16333634234433e-11,-1.90044160963687e-07 +1.11,-3.77279838360139e-09,7.42429383249199e-09,2.14248488047963e-09,3.38827011586718e-10,1.21521390172852e-09,0.079999996443062,-1.4253223471275e-07,-3.17656648381181e-07,1.6498678291621e-08,1.16131063099267e-11,2.46249201585335e-10,-1.66794803663217e-07,-3.29895616033027e-10,2.47198095326695e-10,4.18502038579404e-11,2.73218947466347e-11,3.29597460435593e-11,-1.78676518025611e-10 +1.112,-1.8090049543236e-06,-1.04635918003054e-06,1.57941220423584e-06,3.38810771105535e-10,1.21542451797518e-09,0.07999996983462,-1.67447793911896e-09,7.05983015103495e-10,3.27890926216101e-10,1.16746889933239e-11,2.46282161331379e-10,-4.05824679416966e-10,-6.65228153595362e-07,4.54333836177878e-07,-9.912961293837e-07,2.47198095326695e-11,2.42861286636753e-11,-4.59057271362528e-07 +1.114,-3.77949629535787e-09,7.4271177645524e-09,2.1437964441845e-09,3.38873710342691e-10,1.21619903037384e-09,0.0799999964414387,-1.45193147327131e-07,-3.1583931303647e-07,1.25334937740862e-08,1.17119855480574e-11,2.4634634609999e-10,-1.68631032748667e-07,-3.28865623969165e-10,2.63894808782972e-10,2.90566182226115e-11,1.60461921527855e-11,4.85722573273506e-11,-1.5178830414797e-10 +1.116,-1.8095857269129e-06,-1.04762253728269e-06,1.57946233821094e-06,3.38857619047728e-10,1.21640990335958e-09,0.0799999691600959,-1.67579340161483e-09,7.07038594338626e-10,3.28007152688991e-10,1.1738873761935e-11,2.46476450360688e-10,-4.06431832633558e-10,-1.10218396367177e-06,-5.2756670559928e-07,3.24334851510566e-07,2.1467203015213e-11,4.42354486374085e-11,-6.93090550230035e-07 +1.118,-3.78619946896433e-09,7.42994591892976e-09,2.14510847279525e-09,3.38920665837739e-10,1.21718493617529e-09,0.079999996439813,-1.49601883181818e-07,-3.17949579858867e-07,1.38308331801284e-08,1.17978543601183e-11,2.4652328789454e-10,-1.71403394949587e-07,-3.35425047112703e-10,2.55221191403088e-10,4.90059381963448e-11,2.62376925741488e-11,1.56125112837913e-11,-1.18828558104411e-10 +1.12,-1.81018413444563e-06,-1.04889433560212e-06,1.57951766154366e-06,3.38904810465168e-10,1.21739599651116e-09,0.0799999684744823,-1.67713510180328e-09,7.08059479104239e-10,3.28203176441777e-10,1.18438245322316e-11,2.46538900405824e-10,-4.06907146865975e-10,-1.31242279956083e-06,-1.25475086050486e-06,1.3132457361148e-06,1.82145964977561e-11,2.90566182226115e-11,-8.68281141430671e-07 +1.122,-3.79290800937154e-09,7.43277815684618e-09,2.14642128550102e-09,3.38968041135868e-10,1.21817109177691e-09,0.0799999964381853,-1.54851574380062e-07,-3.22968583300886e-07,1.90838161245876e-08,1.18707127461093e-11,2.4663951436743e-10,-1.7487651951531e-07,-3.30600347445142e-10,2.70400021817885e-10,2.85145171363687e-11,2.25514051876985e-11,6.59194920871186e-11,-1.8474805019153e-10 +1.124,-1.81080354074315e-06,-1.05018620993533e-06,1.57959399680815e-06,3.38952293316153e-10,1.21838255456863e-09,0.0799999677749762,-1.67845750319306e-09,7.0914107919151e-10,3.28317234510322e-10,1.19340301529824e-11,2.46802578374172e-10,-4.07646139066741e-10,-1.31988116183063e-06,-1.68424497438978e-06,1.90423371515535e-06,2.25514051876985e-11,4.59701721133853e-11,-9.72271742283314e-07 +1.126,-3.79962183938432e-09,7.43561472116294e-09,2.14773455443906e-09,3.39015777256479e-10,1.21915830209041e-09,0.0799999964365547,-1.60131099027384e-07,-3.29705563198445e-07,2.67007509852091e-08,1.19609183668601e-11,2.46823395055884e-10,-1.78765606484443e-07,-3.38216867706853e-10,2.64328489651966e-10,6.36426675248991e-11,1.34441069388202e-11,1.34441069388202e-11,-1.34441069388202e-10 +1.128,-1.81144406513926e-06,-1.05150503218812e-06,1.57970079981209e-06,3.3900013698962e-10,1.21936984814885e-09,0.0799999670599138,-1.67981037066389e-09,7.10198393150118e-10,3.28571805180422e-10,1.19878065807377e-11,2.46856354801927e-10,-4.08183903344294e-10,-1.16848205915752e-06,-1.81956446437814e-06,2.09768866773346e-06,1.60461921527855e-11,3.51281503885303e-11,-1.00387059775997e-06 +1.13,-3.80634108086697e-09,7.43845551473554e-09,2.14904884165978e-09,3.39063728482802e-10,1.22014572750961e-09,0.079999996434922,-1.64805027264014e-07,-3.36983821055958e-07,3.50915056561429e-08,1.20251031354712e-11,2.46963907657438e-10,-1.82781088875483e-07,-3.35587677438575e-10,2.71701064424867e-10,4.87890977618477e-11,1.10588621593521e-11,5.72458747072346e-11,-1.5178830414797e-10 +1.132,-1.81210328524832e-06,-1.05285296747235e-06,1.57984116583472e-06,3.39048237402162e-10,1.22035770377948e-09,0.0799999663287894,-1.68115272137365e-09,7.11285197407818e-10,3.28766961571469e-10,1.20320420293751e-11,2.47085338300756e-10,-4.08791056560886e-10,-9.11565690552701e-07,-1.700468542018e-06,1.95001458556942e-06,6.93889390390722e-12,3.98986399474665e-11,-9.7094988299462e-07 +1.134,-3.81306569175247e-09,7.44130065552517e-09,2.15036390950607e-09,3.3911185665092e-10,1.22113406886282e-09,0.0799999964332868,-1.68451290026225e-07,-3.4378569522403e-07,4.28915639984206e-08,1.20528587110868e-11,2.47123502217228e-10,-1.86664888407462e-07,-3.38623443521535e-10,2.60859042700012e-10,6.96057794735693e-11,1.36609473733173e-11,3.07913416985883e-11,-1.54390389361936e-10 +1.136,-1.81277709040842e-06,-1.05422811025324e-06,1.58001273209071e-06,3.39096448837006e-10,1.22134619778835e-09,0.0799999655821299,-1.68250721514773e-09,7.12328633578618e-10,3.29045384689363e-10,1.20866858188684e-11,2.47208503667551e-10,-4.09408618118334e-10,-6.03327744751538e-07,-1.39100710117024e-06,1.55422593198229e-06,1.27935856353289e-11,5.3776427755281e-11,-8.88135051613225e-07 +1.138,-3.81979572061306e-09,7.44414997005949e-09,2.15168009104483e-09,3.39160203394195e-10,1.22212290287749e-09,0.0799999964316492,-1.70864601005231e-07,-3.49349723628711e-07,4.91084677263498e-08,1.21040330536282e-11,2.47338607928249e-10,-1.90217428613915e-07,-3.39436595150899e-10,2.65846372693445e-10,6.73289549113498e-11,4.11996825544491e-12,5.07406616723216e-11,-1.73472347597681e-10 +1.14,-1.81346054881244e-06,-1.05562550914776e-06,1.58020916596162e-06,3.39144864969221e-10,1.22233555222007e-09,0.0799999648212602,-1.68386496152833e-09,7.13392019069391e-10,3.29314700509009e-10,1.21031656918902e-11,2.4741146631424e-10,-4.10102507508725e-10,-2.9129360056869e-07,-9.65882972561726e-07,1.01840790574931e-06,-3.25260651745651e-12,2.60208521396521e-11,-7.73548759769315e-07 +1.142,-3.82653118045917e-09,7.44700353813577e-09,2.15299734984686e-09,3.39208616056963e-10,1.22311254874274e-09,0.0799999964300088,-1.72029775407506e-07,-3.53213255518958e-07,5.3182099349347e-08,1.20910226275583e-11,2.47442691336808e-10,-1.93311623652992e-07,-3.40791847866506e-10,2.71917904859364e-10,8.12067427191642e-11,8.67361737988403e-13,3.72965547335013e-11,-1.4658413372004e-10 +1.144,-1.81414866791407e-06,-1.05703836216983e-06,1.58042189435902e-06,3.39193229059731e-10,1.22332532298541e-09,0.0799999640480137,-1.6852281289198e-09,7.14479690688829e-10,3.29639527479885e-10,1.21066351388421e-11,2.47560652533174e-10,-4.10688844043605e-10,-1.22683709979227e-08,-4.9921655351226e-07,4.47648754002549e-07,8.45677694538693e-12,5.11743425413158e-11,-6.45820202871398e-07 +1.146,-3.83327209297485e-09,7.44986145689852e-09,2.15431590795678e-09,3.39257042597518e-10,1.22410279135288e-09,0.079999996428366,-1.72078848891498e-07,-3.55210121733007e-07,5.49726943653572e-08,1.21248497353399e-11,2.47647388706973e-10,-1.95894904464477e-07,-3.39816065911269e-10,2.69315819645399e-10,8.01225405466787e-11,4.33680868994201e-12,5.63785129692462e-11,-1.66533453693773e-10 +1.148,-1.81483698330964e-06,-1.05845920265676e-06,1.58064178513648e-06,3.39241728458672e-10,1.22431591254024e-09,0.0799999632644341,-1.68658739318345e-09,7.15556953967411e-10,3.29960017642072e-10,1.21239823736019e-11,2.47786166585051e-10,-4.1135497785838e-10,2.10012346055221e-07,-5.48593288851595e-08,-7.07952576770032e-08,-3.68628738645071e-12,4.29344060304259e-11,-5.22285339976669e-07 +1.15,-3.84001844254758e-09,7.45272368471439e-09,2.15563574802735e-09,3.39305538527013e-10,1.22509393601922e-09,0.0799999964267206,-1.71238799507277e-07,-3.55429559048548e-07,5.46895133346492e-08,1.21101045857941e-11,2.47819126331095e-10,-1.97984045824384e-07,-3.41469474247729e-10,2.62160085316947e-10,7.68699340338105e-11,1.68424958708307e-22,2.68882138810785e-11,-1.44849410249776e-10 +1.152,-1.81552193850767e-06,-1.05988092089296e-06,1.58086054318982e-06,3.39290168877016e-10,1.22530718904557e-09,0.0799999624724979,-1.68795327108044e-09,7.16605594308678e-10,3.30267497378207e-10,1.21239823736026e-11,2.47893719440575e-10,-4.11934375499379e-10,3.64347468209079e-07,3.19095227666703e-07,-4.75643070935853e-07,3.90312782111645e-12,5.03069808067681e-11,-4.16093375035806e-07 +1.154,-3.8467702556319e-09,7.45559010709163e-09,2.15695681801686e-09,3.39354034456507e-10,1.22608551089698e-09,0.0799999964250729,-1.69781409634441e-07,-3.54153178137881e-07,5.27869410509059e-08,1.21257170970785e-11,2.48020354254322e-10,-1.99648419324527e-07,-3.42282625830273e-10,2.78423117884341e-10,8.45677694492857e-11,-2.38524477963667e-12,5.33427468828518e-11,-1.60461921522151e-10 +1.156,-1.81620106414621e-06,-1.06129753360551e-06,1.58107169095402e-06,3.39338671745404e-10,1.22629927046258e-09,0.0799999616739042,-1.68932240158376e-09,7.17719286780216e-10,3.30605768456005e-10,1.2114441394484e-11,2.48107090428107e-10,-4.12576223185468e-10,0.0632907914440815,0.0368754947219912,-0.0539474911537534,1.69417431472568e-09,5.55154880399132e-09,0.00222171309995078 +1.158,-3.85352754523824e-09,7.45846098423875e-09,2.15827924109069e-09,3.39402492222085e-10,1.22707793925869e-09,0.0799999964234226,0.000252993384366692,0.000147147825709827,-0.000215737177673963,1.89024143559813e-11,2.70226549470287e-10,8.68720398047861e-06,3.35575751214678e-08,-1.17486315814874e-08,-6.77149308847545e-09,5.53159948402103e-10,-4.82339862495351e-09,-0.00729987601096048 +1.16,-8.04227526679437e-07,-4.72706230766201e-07,7.18122980258168e-07,3.39414281402828e-10,1.22738017666046e-09,0.0799999964227201,-1.55509210109789e-09,6.70724760454266e-10,3.03519796102103e-10,1.43270811880924e-11,2.28813495928293e-10,-2.91999166200651e-05,-0.174862989096825,-0.100933234778574,0.148617964782589,-3.84089461624714e-09,-2.28263588586408e-08,-0.00217190253021942 +1.162,-3.85974791364263e-09,7.46114388328056e-09,2.1594933202751e-09,3.39459800546837e-10,1.2279931932424e-09,0.0799998796237561,-0.000446458572020609,-0.00025658511340447,0.000378734681456393,3.53883589099268e-12,1.78921114035724e-10,-4.06140399089594e-10,-4.23170071033041e-08,1.39092296708165e-08,7.6684535457727e-09,-7.28800700344755e-10,5.83907922013793e-09,0.0108226874155279 +1.164,-2.59006181476187e-06,-1.49904668438408e-06,2.23306170608374e-06,3.39428436746392e-10,1.22809586111661e-09,0.0799999964210956,-1.7243601295111e-09,7.26361679137532e-10,3.34193610285194e-10,1.14118783867134e-11,2.52169812808844e-10,1.40908330420464e-05,0.175739618908047,0.100424922244799,-0.150186982233601,3.05940169031959e-09,2.86034217145125e-08,-4.98299318474337e-09 +1.166,-3.86664535416067e-09,7.46404932999711e-09,2.16083009471624e-09,3.39505448060384e-10,1.22900187249364e-09,0.0799999359870883,0.000256499903611581,0.000145114575574728,-0.00022201324747801,1.57764426522711e-11,2.93334800893774e-10,-4.26072371828567e-10,-2.06147490570962e-09,2.87530416143156e-10,1.21994428448069e-09,-4.26525134655797e-10,3.72098185597025e-10,-0.00335727535702434 +1.168,-1.56406220031555e-06,-9.18588382085167e-07,1.3450087161717e-06,3.39491542517001e-10,1.22926920032018e-09,0.0799999964193913,-1.73260602913394e-09,7.27511800802105e-10,3.39073387423116e-10,9.70577784809023e-12,2.53658205551232e-10,6.61731613949001e-07,-0.0926923975430397,-0.0535122896040424,0.0806221807400467,-2.1161458002572e-09,-1.44168531279742e-08,1.71911096469301e-09 +1.17,-3.87357577827721e-09,7.46695937720032e-09,2.16218638826593e-09,3.39544271171777e-10,1.23001650531585e-09,0.0799999386340147,-0.000114269686560578,-6.89345828414414e-05,0.000100475475482177,7.31185945124224e-12,2.35667388381877e-10,-4.19195927969795e-10,2.13883273071646e-09,2.82976767018716e-10,-9.32413868337533e-12,1.38561037643647e-10,-1.50920942409982e-10,0.000283297921579994 +1.172,-2.02114094655786e-06,-1.19432671345093e-06,1.74691061810041e-06,3.39520789954806e-10,1.23021186987371e-09,0.0799999964177145,-1.72405069821108e-09,7.2864370787018e-10,3.39036090868383e-10,1.02600219986648e-11,2.53054521781593e-10,1.79492330026898e-06,0.0444425647104528,0.0267936762906803,-0.0383102291651128,1.22211268882566e-09,6.5728672504761e-09,-3.99853761212654e-10 +1.174,-3.88047198107005e-09,7.4698739520318e-09,2.1635425326294e-09,3.39585311259771e-10,1.23102872340297e-09,0.0799999458137079,6.3500572281233e-05,3.824012232128e-05,-5.27654411782742e-05,1.22003102065449e-11,2.61958857383781e-10,-4.20795343014646e-10,2.74994328523792e-09,2.5955800009303e-10,-4.41595544853346e-10,3.02058725254461e-10,-3.2829641782861e-10,-0.000148463271190668 +1.176,-1.76713865743293e-06,-1.04136622416581e-06,1.53584885338731e-06,3.39569591195632e-10,1.23125970530324e-09,0.0799999964160313,-1.71305092507012e-09,7.29681939870552e-10,3.37269708688969e-10,1.14682568996827e-11,2.51741336110278e-10,1.2010702155063e-06,-0.0226058364283818,-0.0134644349862253,0.0194189660046584,-2.00143721040824e-10,-3.76608466634563e-09,5.49907341884647e-10 +1.178,-3.88732418477034e-09,7.47279267979128e-09,2.16489161146416e-09,3.3963118428737e-10,1.23203568874741e-09,0.0799999506179888,-2.69227734322943e-05,-1.56176176236214e-05,2.49104228403594e-05,1.13997353223816e-11,2.46894518718399e-10,-4.18595713647107e-10,1.87751290209315e-09,2.76254713549306e-10,-3.92155925788007e-10,2.43945488809238e-10,-2.1467203015213e-10,-0.000164268012387003 +1.18,-1.87482975116211e-06,-1.1038366946603e-06,1.63549054474875e-06,3.39615190136922e-10,1.23224728337812e-09,0.0799999964143569,-1.70554087346175e-09,7.30786958724749e-10,3.35701084985817e-10,1.24440388549196e-11,2.5088264798967e-10,5.43998165958292e-07,0.0107132388072839,0.00626849196421613,-0.00957500865248795,4.27609336828282e-10,1.52612297799059e-09,-1.50920942409982e-10 +1.182,-3.89414634826418e-09,7.47571582762618e-09,2.1662344158041e-09,3.3968096044279e-10,1.23303921933937e-09,0.0799999527939814,1.59301817968414e-05,9.45635023324314e-06,-1.33896117695924e-05,1.31101726696947e-11,2.52999010630361e-10,-4.19199397416747e-10,8.26297580705514e-10,2.01878444516801e-10,-2.43620228157493e-10,1.35958952429682e-10,-1.30971622436249e-10,-0.000106144427448884 +1.184,-1.81110902397474e-06,-1.06601129372733e-06,1.58193209767038e-06,3.396676308276e-10,1.23325927942064e-09,0.0799999964126801,-1.70223568313893e-09,7.31594472502816e-10,3.34726604073187e-10,1.29878746646383e-11,2.50358761499925e-10,1.19420456162755e-07,-0.00558024091534434,-0.00337720008490756,0.00471080136542085,-2.7972416050126e-11,-9.36750677027475e-10,7.02563007770606e-11 +1.186,-3.90095529099674e-09,7.47864220551619e-09,2.1675733222204e-09,3.39732911941448e-10,1.23404065438537e-09,0.0799999532716633,-6.390781864536e-06,-4.0524501063871e-06,5.45359369209102e-06,1.29982830054942e-11,2.49252007922251e-10,-4.18918372213639e-10,1.3820867193759e-10,8.3917248150378e-11,-1.47559915675277e-10,6.35342473076505e-11,-5.55111512312578e-11,-4.44899499185691e-05 +1.188,-1.83667215143289e-06,-1.08222109415287e-06,1.60374647243874e-06,3.39719623959622e-10,1.23425628745233e-09,0.0799999964110045,-1.70168284845118e-09,7.31930141495418e-10,3.34136364410486e-10,1.32420116538689e-11,2.50136716895e-10,-5.85393435115211e-08,0.00260212048715474,0.00153827445659865,-0.00235715700745101,1.02565525517129e-10,3.84674930797857e-10,-1.196959198424e-10 +1.19,-3.90776202239054e-09,7.48156992608218e-09,2.16890986767804e-09,3.39785879988064e-10,1.23504120125295e-09,0.0799999530375059,4.01770008408297e-06,2.10064772000751e-06,-3.97503433771304e-06,1.34085451075627e-11,2.50790707645443e-10,-4.19397155893008e-10,-1.66262403150652e-10,-2.47198095326695e-11,-1.0842021724855e-10,2.38524477946811e-11,-1.25767452008318e-11,-9.66891063741702e-06 +1.192,-1.82060135109656e-06,-1.07381850327284e-06,1.58784633508789e-06,3.39773258140053e-10,1.23525945028291e-09,0.0799999964093269,-1.70234789806378e-09,7.31831262257287e-10,3.33702683541492e-10,1.33374214450477e-11,2.50086409914196e-10,-9.72149860611892e-08,-0.00136953819788207,-0.000794487346354385,0.00116402038724018,-2.34187669256869e-11,-2.29417179697933e-10,-2.94902990916057e-11 +1.194,-3.9145714139828e-09,7.48449725113121e-09,2.1702446784122e-09,3.39839229673844e-10,1.23604154689261e-09,0.079999952648646,-1.46045270744532e-06,-1.07730166541003e-06,6.81047211247703e-07,1.331487003986e-11,2.49873038926651e-10,-4.19515117089375e-10,-2.54408039773723e-10,-9.51929507442272e-11,-1.07986536379556e-10,1.5178830414797e-12,-1.77809156287623e-11,1.4582016150122e-06 +1.196,-1.82644316192634e-06,-1.07812770993448e-06,1.59057052393288e-06,3.39826517620212e-10,1.23625894243862e-09,0.0799999964076488,-1.70336553022288e-09,7.3145049045431e-10,3.33270737395974e-10,1.33434929772136e-11,2.50015286251681e-10,-9.13821796011404e-08,0.000625408330646396,0.000395299678624186,-0.000552438723781279,7.80625564189563e-12,8.89045781438113e-11,-2.86229373536173e-11 +1.198,-3.92138487610369e-09,7.48742305309302e-09,2.17157776136179e-09,3.39892603645753e-10,1.23704160803761e-09,0.0799999522831172,1.04118061514027e-06,5.0389704908671e-07,-1.52870768387742e-06,1.33460950624276e-11,2.50228657239226e-10,-4.19629608838789e-10,-2.75089196213884e-10,-1.24249568966839e-10,-7.77372957672106e-11,-1.38777878078144e-11,-1.21430643318376e-11,-7.66187460699008e-07 +1.2,-1.82227843946578e-06,-1.07611212173814e-06,1.58445569319737e-06,3.39879902000462e-10,1.23725985706757e-09,0.0799999964059703,-1.70446588700773e-09,7.30953492178443e-10,3.32959788212905e-10,1.32879818259823e-11,2.49966713994354e-10,-9.44469294439364e-08,-0.00035521303522819,-0.000199880866198765,0.000314612625773417,-2.75387351811318e-11,-6.0281640790194e-11,-8.58688120608519e-11 +1.202,-3.92820273965172e-09,7.49034686706174e-09,2.17290960051464e-09,3.39945755573057e-10,1.23804147489359e-09,0.0799999519053295,-3.79671525772493e-07,-2.9562641570835e-07,-2.70257180783745e-07,1.3235940121703e-11,2.49987530676066e-10,-4.19973084087033e-10,-3.01543729222531e-10,-5.5944832100252e-11,-4.18502038579404e-11,-3.33934269125535e-11,2.21177243187043e-11,-6.11592981120123e-06 +1.204,-1.82379712556887e-06,-1.07729462740097e-06,1.58337466447424e-06,3.39932845760949e-10,1.23825980719028e-09,0.0799999964042904,-1.70567206192462e-09,7.30729712850042e-10,3.32792387397473e-10,1.31544081183321e-11,2.50055184891629e-10,-1.18910648688741e-07,0.000130037157935027,7.5826332626011e-05,-9.74135165978175e-05,-3.27429056090622e-11,4.07660016854549e-11,-6.2450045135165e-11 +1.206,-3.93502542789942e-09,7.49326978591314e-09,2.17424077006423e-09,3.3999837320553e-10,1.23904169563316e-09,0.0799999514296869,1.40477105967616e-07,7.6789147956946e-09,-6.59911247175015e-07,1.31049684992668e-11,2.50150594682807e-10,-4.20222884267573e-10,-3.36482144230876e-10,2.62376925741492e-11,2.51534904016637e-11,-3.68628738645071e-11,3.46944695195361e-12,-9.76047020984082e-06 +1.208,-1.823235217145e-06,-1.07726391174179e-06,1.58073501948554e-06,3.39985265634946e-10,1.23926040956901e-09,0.0799999964026095,-1.70701799050155e-09,7.30834663620338e-10,3.3289300135908e-10,1.30069566228741e-11,2.50069062679436e-10,-1.57952529528105e-07,-0.000106221510455745,-7.48931847528027e-05,0.000118144618437357,-5.24753851482984e-11,-4.33680868994201e-12,-1.12757025938492e-10 +1.21,-3.94185349986143e-09,7.49619312456762e-09,2.17557234206966e-09,3.40050401032022e-10,1.24004197188388e-09,0.0799999507978768,-2.84408935855365e-07,-2.91893824215516e-07,-1.87332773425586e-07,1.28950669586736e-11,2.50133247448048e-10,-4.20673912371327e-10,-3.74456325322181e-10,1.18611717669914e-10,8.30498864123896e-11,-5.5944832100252e-11,3.72965547335013e-11,-1.04774210141212e-05 +1.212,-1.82437285288842e-06,-1.07843148703865e-06,1.57998568839184e-06,3.4003684590278e-10,1.2402609425588e-09,0.0799999964009268,-1.70851581580283e-09,7.31309110491018e-10,3.3322520090473e-10,1.27831772944731e-11,2.5021824889837e-10,-1.99862213584589e-07,2.01535745557313e-05,-4.28955373825423e-06,1.64272131054216e-05,-5.26922255827955e-11,5.29090660172926e-11,-1.56125112837913e-10 +1.214,-3.94868756312464e-09,7.49911836100958e-09,2.17690524287328e-09,3.40101533741199e-10,1.24104284487947e-09,0.079999949998428,-2.0379463763244e-07,-3.09052039168533e-07,-1.21623921003899e-07,1.26842980563424e-11,2.50344883712117e-10,-4.21298412822679e-10,-3.92264346005255e-10,2.41777084464267e-10,1.37259995036665e-10,-5.24753851482984e-11,6.4618449480136e-11,-8.99725259573268e-06 +1.216,-1.82518803143895e-06,-1.07966769519532e-06,1.57949919270782e-06,3.40087583095006e-10,1.24126232209365e-09,0.0799999963992416,-1.71008487318686e-09,7.32276218828875e-10,3.33774240884876e-10,1.25732757538799e-11,2.50476722696291e-10,-2.3585122396752e-07,-2.91304478369086e-05,-3.39151603936244e-05,6.19336110174727e-05,-5.83300768797201e-11,4.81385764583564e-11,-1.98625837999344e-10 +1.218,-3.95552790261738e-09,7.5020474658849e-09,2.17824033983682e-09,3.40151826844215e-10,1.24204475177025e-09,0.0799999490550231,-3.20316428980074e-07,-4.44712680743031e-07,1.26110523065992e-07,1.24509777488235e-11,2.5053743801795e-10,-4.22092916174676e-10,-3.94758011001972e-10,3.13117587413813e-10,1.75532331725403e-10,-4.92227786308419e-11,5.3776427755281e-11,-6.35872084153721e-06 +1.22,-1.82646929715487e-06,-1.0814465459183e-06,1.58000363480008e-06,3.40137387006001e-10,1.24226447184572e-09,0.0799999963975532,-1.71166390523086e-09,7.3352868917853e-10,3.34476370211778e-10,1.23763846393565e-11,2.50691828407312e-10,-2.61286107333669e-07,8.96327613910188e-06,-8.18908244167025e-06,2.55346675878329e-05,-3.59955121265187e-11,7.45931094670026e-11,-1.4137996329211e-10 +1.222,-3.96237455823831e-09,7.50498158064161e-09,2.17957824531767e-09,3.40201332382772e-10,1.24304751908388e-09,0.0799999480098786,-2.84463324423667e-07,-4.77469010509712e-07,2.28249193417323e-07,1.23069957003174e-11,2.50835810455818e-10,-4.22658436027845e-10,-3.80256806944978e-10,3.56702514747731e-10,1.86699614102004e-10,-3.36102673470506e-11,7.1123662515049e-11,-3.42115051565893e-06 +1.224,-1.82760715045256e-06,-1.08335642196034e-06,1.58091663157375e-06,3.40186614988802e-10,1.24326781508755e-09,0.0799999963958626,-1.71318493245864e-09,7.34955499237521e-10,3.35223168668186e-10,1.22419435699683e-11,2.50976323057372e-10,-2.74970709396305e-07,1.58614660576879e-06,-7.78168219965624e-06,2.34040677463132e-05,-3.14418630020796e-11,6.33174068731534e-11,-2.38524477946811e-10 +1.226,-3.96922729796814e-09,7.50792140263856e-09,2.18091913799234e-09,3.40250300157052e-10,1.24405142437611e-09,0.0799999469099958,-2.78118738000592e-07,-5.08595739308337e-07,3.21865464402576e-07,1.21812282483091e-11,2.51089080083311e-10,-4.23612533939632e-10,-3.59873806102251e-10,3.88578058618804e-10,1.85181731060524e-10,-1.90819582357449e-11,6.50521303491302e-11,-7.25668657108879e-07 +1.228,-1.82871962540456e-06,-1.08539080491757e-06,1.58220409343136e-06,3.40235339901795e-10,1.24427217140788e-09,0.0799999963941682,-1.71462442768305e-09,7.36509811471996e-10,3.35963895592428e-10,1.21656157370253e-11,2.51236531578769e-10,-2.7787338402474e-07,1.29278447755926e-05,4.4184348020615e-06,2.31220890958143e-06,-5.63785129692462e-12,5.50774703622636e-11,-1.83880688453541e-10 +1.23,-3.97608579567887e-09,7.51086744188445e-09,2.18226299357471e-09,3.4029896262e-10,1.24505637050243e-09,0.0799999457985023,-2.26407358898221e-07,-4.90922000100091e-07,3.31114300040902e-07,1.21586768431214e-11,2.5130938996476e-10,-4.24348056693446e-10,-3.39761855802645e-10,4.13731549020468e-10,1.67834496300756e-10,-6.28837260041592e-12,7.28583859910258e-11,1.40373129786653e-06 +1.232,-1.82962525484016e-06,-1.08735449291797e-06,1.58352855063153e-06,3.40283974609168e-10,1.24527740896774e-09,0.0799999963924708,-1.71598347510626e-09,7.38164737668078e-10,3.36635233577631e-10,1.21404622466237e-11,2.51527965122733e-10,-2.72258458833274e-07,1.08318152895487e-05,8.16683027628217e-06,-7.29781870784788e-06,1.3010426069826e-12,7.58941520739852e-11,-1.66533453693773e-10 +1.234,-3.9829497295793e-09,7.51382010083512e-09,2.18360953450902e-09,3.40347524468987e-10,1.24606248236292e-09,0.0799999447094684,-1.83080097740026e-07,-4.58254678994962e-07,3.0192302520951e-07,1.21638810135494e-11,2.51612966573056e-10,-4.25014190508221e-10,-3.21140683490206e-10,3.80988643411406e-10,1.22514845490862e-10,1.84314369322536e-11,5.11743425413158e-11,2.8006347241316e-06 +1.236,-1.83035757523112e-06,-1.08918751163395e-06,1.58473624273237e-06,3.40332630133222e-10,1.24628386083403e-09,0.0799999963907707,-1.71726803784022e-09,7.39688692241724e-10,3.37125292959594e-10,1.22141879943527e-11,2.51732662492898e-10,-2.61055919936748e-07,1.16756574027044e-05,1.253288185038e-05,-1.7526361113275e-05,2.88397777881144e-11,5.55111512312578e-11,-1.8474805019153e-10 +1.238,-3.98981880173066e-09,7.51677885560409e-09,2.18495803568086e-09,3.40396381220964e-10,1.24706941301289e-09,0.0799999436652447,-1.36377468129209e-07,-4.08123151593442e-07,2.3181758075641e-07,1.22792401247018e-11,2.51835011177981e-10,-4.25753182708987e-10,-3.09187354538553e-10,3.56268833878736e-10,9.85539774789323e-11,3.05745012640912e-11,5.98479599211998e-11,3.41731070524487e-06 +1.24,-1.83090308510363e-06,-1.09082000424032e-06,1.58566351305539e-06,3.40381747093721e-10,1.24729120087874e-09,0.0799999963890677,-1.71850478725838e-09,7.41113767577239e-10,3.3751950886951e-10,1.23364859994091e-11,2.51972054332583e-10,-2.47386677115768e-07,8.30283677097711e-06,1.28191318237575e-05,-2.09623295284455e-05,2.73218947466347e-11,4.90059381963448e-11,-1.67400815431762e-10 +1.242,-3.99669282087969e-09,7.5197433106744e-09,2.18630811371634e-09,3.40445727164962e-10,1.24807730123022e-09,0.079999942675698,-1.031661210453e-07,-3.56846624298412e-07,1.47968262642628e-07,1.23885277036884e-11,2.52031034930766e-10,-4.26422785970714e-10,-3.0699184513927e-10,3.43041567374413e-10,4.92227786308419e-11,3.96817995129694e-11,3.29597460435593e-11,3.31484319160413e-06 +1.244,-1.83131574958782e-06,-1.09224739073752e-06,1.58625538610596e-06,3.40431301204536e-10,1.24829932501846e-09,0.079999996387362,-1.71973275463893e-09,7.42485933846736e-10,3.37716399984033e-10,1.24952131974609e-11,2.52103893316757e-10,-2.34127304349352e-07,5.38815563347338e-06,1.17556608978525e-05,-2.13165607127613e-05,4.81385764583564e-11,3.77302356024955e-11,-1.55257751099924e-10 +1.246,-4.00357175189825e-09,7.52271325440979e-09,2.18765897931628e-09,3.40495708017752e-10,1.24908571680349e-09,0.0799999417391888,-8.16134985114069e-08,-3.09823980707002e-07,6.27020197915828e-08,1.25810820095218e-11,2.52181955873176e-10,-4.27043816975114e-10,-3.06260008672843e-10,3.00757682647479e-10,3.53449908230274e-11,3.64291929955129e-11,3.81639164714897e-11,2.64249993414678e-06 +1.248,-1.83164220358186e-06,-1.09348668666034e-06,1.58650619418513e-06,3.40481625532574e-10,1.24930805284196e-09,0.0799999963856538,-1.72095779467363e-09,7.43688964577326e-10,3.37857779947326e-10,1.2640929969443e-11,2.52256548982643e-10,-2.23557304612765e-07,1.69885299946583e-06,8.80576384379438e-06,-1.78641547084537e-05,4.11996825544491e-11,5.160802341031e-11,-1.69135538907739e-10 +1.25,-4.01045558307694e-09,7.52568801026809e-09,2.18901041043607e-09,3.4054627173763e-10,1.25009474299942e-09,0.0799999408449596,-7.48180865135436e-08,-2.74600925331825e-07,-8.75459904223218e-09,1.27458807397396e-11,2.52388387966817e-10,-4.27720359130745e-10,-3.13117587413813e-10,2.77772596590786e-10,4.55364912443911e-12,4.7488055154865e-11,4.9439619065339e-11,1.60649705344128e-06 +1.252,-1.83194147592792e-06,-1.09458509036167e-06,1.58647117578896e-06,3.40532609055533e-10,1.25031760639382e-09,0.079999996383943,-1.72221026502328e-09,7.4480005496369e-10,3.37875994543823e-10,1.28308821900624e-11,2.52454307458905e-10,-2.17131316398999e-07,-1.26531752198296e-06,5.26285915888878e-06,-1.26718257198108e-05,4.48859699408998e-11,1.04083408558608e-11,-1.26634813746307e-10 +1.254,-4.01734442413704e-09,7.52866721048795e-09,2.19036191441424e-09,3.4059759526639e-10,1.25110456022925e-09,0.0799999399764343,-7.98793566014754e-08,-2.53549488696269e-07,-5.94419019214753e-08,1.29254246195032e-11,2.52430021330241e-10,-4.2822689838573e-10,3.08688350488667e-08,-1.0168949016176e-08,-5.50059130188794e-09,3.87710696880816e-10,-4.29083851782863e-09,0.00357959669110979 +1.256,-1.83226099335432e-06,-1.09559928831646e-06,1.58623340818127e-06,3.40584310754011e-10,1.25132732647915e-09,0.07999999638223,-1.59873492482781e-09,7.04124258898985e-10,3.15873629336272e-10,1.43817249775857e-11,2.3529095338759e-10,1.41012554480402e-05,-0.0348069215083375,-0.0187175525879438,0.0302138785992231,-1.88217497143483e-10,-1.04521426236292e-08,-0.00994198784062815 +1.258,-4.02373936383635e-09,7.53148370752355e-09,2.19162540893159e-09,3.406551221663e-10,1.25204572404281e-09,0.0799999963814561,-0.000139307565389952,-7.51237598404716e-05,0.000120796072494971,1.21725546309292e-11,2.10621450835724e-10,-3.9768379589411e-05,-3.18132564562645e-08,1.01888983361498e-08,4.2921395604356e-09,-3.96817995129694e-11,4.16463738495132e-09,-0.00352542131772104 +1.26,-2.38949125491413e-06,-1.39609432767834e-06,2.06941769816116e-06,3.40633000972534e-10,1.25216981228249e-09,0.0799998373087117,-1.72598795065287e-09,7.44879852243584e-10,3.33042187578014e-10,1.42229977795338e-11,2.51949502927395e-10,-4.29822843983629e-10,0.0789517586883083,0.0432457610429446,-0.0696156544916902,1.06446969294627e-09,1.85415918729781e-08,0.0144153890335036 +1.262,-4.03064331563896e-09,7.53446322693252e-09,2.1929575776819e-09,3.40712014157418e-10,1.25305352205451e-09,0.0799999963797368,0.000176499469363282,9.78592843313072e-05,-0.00015766654547179,1.64304334027143e-11,2.84787818327636e-10,1.78931765446033e-05,-1.01053063486511e-08,2.44140645200286e-09,2.83356237779086e-09,-7.58724680305355e-10,1.4432899320127e-09,-1.869164545365e-09 +1.264,-1.683493377461e-06,-1.00465719035311e-06,1.438751516274e-06,3.40698722706145e-10,1.2533089635558e-09,0.0799999088814179,-1.76640917604748e-09,7.54645478051596e-10,3.44376437089177e-10,1.11880990583124e-11,2.57722662655446e-10,-4.37299502165089e-10,-0.0636344671345268,-0.0369368972498017,0.0563666478236613,-1.82904906498304e-09,-9.69363478375838e-09,-0.00428863349433844 +1.266,-4.03770895234315e-09,7.53748180884473e-09,2.19433508343025e-09,3.40756766553652e-10,1.25408441270514e-09,0.0799999963779876,-7.80383991748258e-05,-4.98883046678999e-05,6.78000458228557e-05,9.11423714278214e-12,2.46013279192603e-10,7.38642567249536e-07,3.21936216834267e-08,-1.05651164900022e-08,-5.18888317729837e-09,2.62160085306994e-10,-4.36109481860569e-09,7.33007404773998e-09 +1.268,-1.9956469741603e-06,-1.20421040902471e-06,1.70995169956542e-06,3.40735179654716e-10,1.25429301667257e-09,0.0799999118359881,-1.63763468931377e-09,7.12385012091587e-10,3.23620904379984e-10,1.22367393995404e-11,2.40278283381023e-10,-4.07979205974129e-10,-0.00277049102623684,0.00117407664406571,0.00293643105447535,6.30138302648574e-10,-5.758848259374e-09,-0.00630602305616567 +1.27,-4.0442594911004e-09,7.54033134889309e-09,2.19562956704777e-09,3.4080571351125e-10,1.25504552583866e-09,0.0799999963763557,-8.91203632797732e-05,-4.51919980916371e-05,7.95457700407571e-05,1.16347903533764e-11,2.22977886155107e-10,-2.44854496574132e-05,-2.8905480439767e-08,1.05469018935045e-08,4.03854467229125e-09,2.18575157973077e-10,3.91006671485172e-09,-7.08461067588927e-09 +1.272,-2.3521284272794e-06,-1.38497840139126e-06,2.02813477972845e-06,3.4078171881613e-10,1.25518492821719e-09,0.0799998138941895,-1.75325661107284e-09,7.54572619665605e-10,3.39775083069149e-10,1.31110400314327e-11,2.5591855024043e-10,-4.36317648677686e-10,0.0606991731708799,0.0327304044876134,-0.0537696266192377,9.26776017040608e-10,1.53271492719931e-08,0.0112540421729964 +1.274,-4.0512725175447e-09,7.54334963937175e-09,2.19698866738005e-09,3.40858157671375e-10,1.25606920003962e-09,0.0799999963746104,0.000153676329403746,8.57296198588166e-05,-0.000135532736436194,1.53418944215389e-11,2.84286483243079e-10,2.05307190345727e-05,-7.37604421985338e-09,2.47653460239136e-09,2.37277645448452e-09,-4.98949839777828e-10,1.13190706807487e-09,-1.53002610581153e-09 +1.276,-1.73742310966441e-06,-1.042059921956e-06,1.48600383398367e-06,3.40843086393816e-10,1.25632207415016e-09,0.0799998960170656,-1.78276078795225e-09,7.6447875807517e-10,3.49266188887087e-10,1.11152406723214e-11,2.6044617851273e-10,-4.42437753100932e-10,-0.054397122919357,-0.0317125144694632,0.048104660172344,-1.40989650510015e-09,-8.49233877664444e-09,-0.00468794244742886 +1.278,-4.05840356069651e-09,7.54640755440406e-09,2.1983857321356e-09,3.40902618634065e-10,1.25711098475367e-09,0.0799999963728407,-6.39121622736816e-05,-4.11204380190363e-05,5.68859042531823e-05,9.70230840113827e-12,2.50317128136501e-10,1.77894924485722e-06,3.39276946381e-08,-1.06084845769016e-08,-5.56553501201983e-09,4.20887283358872e-10,-4.58921095569664e-09,7.55125129092702e-09 +1.28,-1.99307175875914e-06,-1.20654167403214e-06,1.7135474509964e-06,3.40881895627421e-10,1.25732334266271e-09,0.0799999031328626,-1.64705000939985e-09,7.22044819767564e-10,3.27004048839008e-10,1.27987898057569e-11,2.42089334689943e-10,-4.12232747937224e-10,-0.00767732582422716,-0.00187680516353788,0.00700485339058617,6.36209834814493e-10,-6.67348121208277e-09,-0.00668262698823306 +1.282,-4.0649917607341e-09,7.54929573368313e-09,2.19969374833096e-09,3.40953813793288e-10,1.25807934209243e-09,0.0799999963711918,-9.46214655705903e-05,-4.86276586731879e-05,8.4905317815527e-05,1.22471477403962e-11,2.2362320328817e-10,-2.49515587080751e-05,-2.82154941771972e-08,1.0508737977033e-08,3.86041025535188e-09,2.86012533101675e-10,3.80598330629311e-09,-6.97532309690272e-09 +1.284,-2.3715576210415e-06,-1.40105230872489e-06,2.05316872225851e-06,3.40930884218382e-10,1.25821783547586e-09,0.0799998033266278,-1.75991198610864e-09,7.64079771675696e-10,3.42445689860415e-10,1.39428399381636e-11,2.57313267915116e-10,-4.40134040324835e-10,0.0631464214872827,0.0342771419813408,-0.0562200899167918,1.01763215909489e-09,1.56636856263326e-08,0.0116179639199007 +1.286,-4.07203140867854e-09,7.55235205276983e-09,2.2010635310904e-09,3.4100958515304e-10,1.25910859516409e-09,0.0799999963694312,0.000157964220378541,8.84809092521754e-05,-0.000139975041851641,1.63176763767758e-11,2.862779457935e-10,2.15202969715278e-05,-7.12448221078243e-09,2.28636554133743e-09,2.22196393229179e-09,-4.89192020225459e-10,1.06295180990479e-09,-1.45369827286856e-09 +1.288,-1.73970073952734e-06,-1.04712867171619e-06,1.49326855485195e-06,3.40996154923889e-10,1.25936294725904e-09,0.0799998894078157,-1.78840991495177e-09,7.73225233841045e-10,3.51333545589582e-10,1.19860718572617e-11,2.61565075154735e-10,-4.45948833416309e-10,-0.0557712752159743,-0.0326326162060179,0.0494278904498643,-1.44133836810223e-09,-8.76165459628984e-09,-0.00488890023343096 +1.29,-4.07918504833835e-09,7.55544495370519e-09,2.20246886527276e-09,3.41057529440469e-10,1.26015485546471e-09,0.0799999963676474,-6.51208804853566e-05,-4.20495555718963e-05,5.77365199478166e-05,1.05523229043669e-11,2.51231327408341e-10,1.96469603780391e-06,3.41300609735944e-08,-1.10217824450531e-08,-5.72990006136864e-09,4.20670442924375e-10,-4.64992627735583e-09,7.702172233337e-09 +1.292,-2.00018426146876e-06,-1.21532689400378e-06,1.72421463464321e-06,3.41038364215507e-10,1.26036787256867e-09,0.0799998972665998,-1.65188967105739e-09,7.29138104060833e-10,3.28413945344108e-10,1.36687536289592e-11,2.42965370045311e-10,-4.15140144482961e-10,-0.00698270102706516,-0.00143445871912499,0.0063629201370709,6.39028760462955e-10,-6.64832772168111e-09,-0.00684360603429855 +1.294,-4.08579260702258e-09,7.55836150612144e-09,2.20378252105413e-09,3.41112204454985e-10,1.26112671694489e-09,0.0799999963659869,-9.30516845936172e-05,-4.77873904483963e-05,8.31882004961002e-05,1.31084379462187e-11,2.24638016521616e-10,-2.54097280993903e-05,-2.81776284163231e-08,1.01875972935428e-08,3.72911337226389e-09,2.63894808782972e-10,3.77302356024955e-09,-6.89899526395974e-09 +1.296,-2.37239099984323e-06,-1.40647645579736e-06,2.05696743662762e-06,3.41090797967292e-10,1.26126642463475e-09,0.0799997956276874,-1.76460018472268e-09,7.69888493235004e-10,3.43330398833163e-10,1.47243328640911e-11,2.5805746428631e-10,-4.427361255388e-10,0.0626251602982036,0.0341035768589969,-0.0558415734813656,9.82287168271865e-10,1.55730463247128e-08,0.0119295901299804 +1.298,-4.09285100776147e-09,7.56144106009438e-09,2.20515584264946e-09,3.41171101786442e-10,1.26215894680204e-09,0.0799999963642159,0.000157448956599197,8.86269169875913e-05,-0.000140178093429363,1.70375866193062e-11,2.86930201820468e-10,2.23086324205313e-05,-7.07767178198537e-09,1.9068947809675e-09,2.09055862898655e-09,-5.18031798013573e-10,1.02088476561234e-09,-1.35308431126191e-09 +1.3,-1.74259517344644e-06,-1.051968787847e-06,1.49625506291017e-06,3.41158948313769e-10,1.26241414544204e-09,0.0799998848622171,-1.79291087185063e-09,7.77516072358874e-10,3.5169263334911e-10,1.26522056720368e-11,2.62141003348759e-10,-4.48148462783848e-10,-0.0555038111523279,-0.0325651760295277,0.0492463315747252,-1.46432345415892e-09,-8.78247127800156e-09,-0.00504035683242947 +1.302,-4.10002265124887e-09,7.56455112438381e-09,2.20656261318286e-09,3.4122171060913e-10,1.26320751081543e-09,0.0799999963624233,-6.45662880101142e-05,-4.16337871305197e-05,5.68072328695386e-05,1.11802928026705e-11,2.51800316708461e-10,2.14720509081334e-06,2.58793637561427e-09,-3.87493856446319e-10,-1.46692553937289e-10,5.78963960107259e-11,-2.8622937353616e-10,4.91794105439424e-10 +1.304,-2.0008603254869e-06,-1.21850393636908e-06,1.72348399438832e-06,3.4120366948498e-10,1.26342134670887e-09,0.0799998934510375,-1.78255912634817e-09,7.75966096933089e-10,3.5110586313336e-10,1.28837912560797e-11,2.60996085854614e-10,-4.4618128636209e-10,0.0895274345166535,0.0550001012561331,-0.0760827757582569,2.47935352803985e-09,8.92471860303166e-09,0.00589500148348575 +1.306,-4.10715288775426e-09,7.56765498877154e-09,2.20796703663539e-09,3.41273245774154e-10,1.26425149515885e-09,0.0799999963606386,0.0002935434500565,0.000178366617894013,-0.000247523870163489,2.10977069148299e-11,2.87499191120588e-10,2.57272110247564e-05,3.90159638537917e-08,-1.37823780166357e-08,-8.11319327692626e-09,8.22042087178508e-10,-5.61009572130899e-09,-0.0130205919969539 +1.308,-8.26686525260897e-07,-5.05037464793023e-07,7.33388513734362e-07,3.41288060312639e-10,1.26457134347335e-09,0.0799999963598816,-1.626495270933e-09,7.20836584866546e-10,3.18653090025655e-10,1.61719596047938e-11,2.38555702969378e-10,-5.20828141691021e-05,-0.188609154379342,-0.113131398676814,0.159375110582904,-3.851736637972e-09,-2.51452504651528e-08,-0.00643191150166699 +1.31,-4.11365886883799e-09,7.57053833511101e-09,2.2092416489955e-09,3.41337933612573e-10,1.26520571797073e-09,0.0799997880293819,-0.000460893167460868,-0.000274158976813245,0.000389976572168129,5.69076036294191e-12,1.86918189259977e-10,-4.34981911601184e-10,-4.1006206676769e-08,1.48917336795229e-08,7.50495585816189e-09,-5.04587691074753e-10,5.73846525853127e-09,0.0190794667313462 +1.312,-2.67025919510437e-06,-1.601673372046e-06,2.29329480240688e-06,3.41310823354091e-10,1.26531901623039e-09,0.0799999963581416,-1.79052009764008e-09,7.80403519584637e-10,3.48672913458303e-10,1.41536088404948e-11,2.61509564003503e-10,2.42350527562829e-05,0.238238698510454,0.141950254413077,-0.202333683563889,4.81992917800155e-09,3.32286281823357e-08,1.5482407023093e-09 +1.314,-4.12082094922855e-09,7.57365994918935e-09,2.21063634064933e-09,3.41394548047935e-10,1.26625175622674e-09,0.079999884969593,0.000492061626580948,0.000293642040839065,-0.000419358162087428,2.49704770749481e-11,3.1983270198932e-10,-4.28788948791947e-10,6.58540062759004e-08,-2.3148366903869e-08,-1.19034556517183e-08,5.90890184004599e-10,-9.19707018876003e-09,0.000902865075237678 +1.316,-7.02012688780576e-07,-4.27105208689743e-07,6.15862154057165e-07,3.4141070526239e-10,1.26659834703835e-09,0.0799999963564265,-1.52710407253648e-09,6.87810051969161e-10,3.0105909085143e-10,1.65171695765132e-11,2.24721283248463e-10,2.78465130572336e-05,-0.306301235087865,-0.180509690015469,0.260018882945961,-6.22288678919779e-09,-4.82582723781987e-08,-0.019464819729989 +1.318,-4.1269293655187e-09,7.57641118939723e-09,2.21184057701274e-09,3.41460616726241e-10,1.26715064135974e-09,0.0799999963556452,-0.000733143313770513,-0.00042839671922281,0.000620717369696419,7.89299181569446e-14,1.26799612476525e-10,-7.78597077089049e-05,-7.14307085702969e-08,2.30497045061728e-08,1.16603775246471e-08,-7.81059245058556e-10,9.64029203687209e-09,-0.00696174174384666 +1.32,-3.63458594386263e-06,-2.14069208558099e-06,3.09873163284284e-06,3.41411020982063e-10,1.26710554548826e-09,0.0799996849175957,-1.81282690681766e-09,7.80008869993853e-10,3.47700600950018e-10,1.33929325962789e-11,2.63282451395952e-10,-4.53918153064947e-10,0.325202727204402,0.189158609604231,-0.276966426004878,5.77901441978223e-09,5.74765929295394e-08,0.0290540007694822 +1.322,-4.13418067314597e-09,7.5795312248772e-09,2.21323137941654e-09,3.41514188456626e-10,1.26820377116532e-09,0.0799999963538295,0.000567667595047097,0.000328237719194116,-0.000487148334323093,2.31949875972859e-11,3.56705984194683e-10,3.83562953690242e-05,-8.79485828782222e-09,2.23519119879611e-09,3.51975393275694e-09,-1.01242798866696e-09,1.39992184511328e-09,-1.48145384848419e-09 +1.324,-1.36391556367424e-06,-8.27741208804522e-07,1.15013829555047e-06,3.41503800932452e-10,1.26853236942504e-09,0.0799998383427771,-1.84800633996895e-09,7.88949634789037e-10,3.61779616681046e-10,9.34322064161107e-12,2.68882138776405e-10,-4.59843968458884e-10,-0.200367169243771,-0.118774270796255,0.172279422861582,-4.70565426902158e-09,-3.10988214347052e-08,-0.00829540744515937 +1.326,-4.14157269850585e-09,7.58268702341636e-09,2.21467849788326e-09,3.41551561339193e-10,1.26927929972043e-09,0.0799999963519901,-0.000233801081927988,-0.000146859363990906,0.000201969357123237,4.37237052119954e-12,2.32310698455862e-10,5.17466558838664e-06,5.7700155417506e-09,-3.60388802134181e-10,-2.28007716873701e-10,2.02745806254789e-10,-5.62484087085479e-10,9.71445146547011e-10 +1.328,-2.29911989138619e-06,-1.41517866476815e-06,1.95801572404342e-06,3.41521290414537e-10,1.26946161221886e-09,0.0799998590414395,-1.82492627780195e-09,7.875080795805e-10,3.60867585813551e-10,1.01542038666302e-11,2.66632202428063e-10,-4.55958187872696e-10,0.152773840614534,0.0948173432750546,-0.129301819587631,4.10218733981615e-09,1.81074773231149e-08,0.00728808070751123 +1.33,-4.14887240361705e-09,7.58583705573468e-09,2.21612196822651e-09,3.41592178154659e-10,1.27034582853014e-09,0.0799999963501663,0.000377294280530147,0.000232410009109313,-0.000315237921227288,2.07811198804641e-11,3.04740607748321e-10,3.43269884184316e-05,4.29065691396473e-08,-1.38743183608625e-08,-8.6981203489822e-09,1.14470065371019e-09,-6.02642935554341e-09,-0.0148677733388669 +1.332,-7.89942769265604e-07,-4.85538628330895e-07,6.97064039134263e-07,3.41604414894059e-10,1.27068057464985e-09,0.0799999963493932,-1.65330000124336e-09,7.32010806137051e-10,3.26075104417622e-10,1.4733006481471e-11,2.42526485005889e-10,-5.94715493136554e-05,-0.216318739355939,-0.131129599458338,0.182485763565378,-4.14078493715663e-09,-2.96338474592427e-08,-0.00858185751888978 +1.334,-4.15548560362203e-09,7.58876509895923e-09,2.21742626864418e-09,3.41651110180585e-10,1.27131593447016e-09,0.079999758463969,-0.000487980676893611,-0.000292108388724038,0.000414705133034223,4.2179801318376e-12,1.8620521791135e-10,-4.41657127536743e-10,-3.8939310760197e-08,1.55700105586298e-08,7.27564709868122e-09,-2.51101223147643e-10,5.53983942053192e-09,0.021893122955155 +1.336,-2.74186547684005e-06,-1.65397218322705e-06,2.35588457127116e-06,3.41621286814586e-10,1.2714253955215e-09,0.0799999963476265,-1.80905724428415e-09,7.9429084837157e-10,3.55177692812347e-10,1.37286015888804e-11,2.64685842688017e-10,2.81009425069645e-05,0.194363651146242,0.115994753384666,-0.16584690118069,3.7467858676754e-09,3.07909080177193e-08,-5.0333001655467e-09 +1.338,-4.16272183259916e-09,7.59194226235271e-09,2.21884697941543e-09,3.41706024586941e-10,1.27237467784092e-09,0.0799998708677391,0.000289473927691359,0.000171870624814628,-0.000248682471688539,1.92051236025392e-11,3.09368849982228e-10,-4.6179032819893e-10,1.00150465177917e-09,-4.83771009363032e-10,3.8369914884262e-10,-2.24646690138996e-10,-1.04083408558608e-10,-0.00654460306781511 +1.34,-1.58396976607461e-06,-9.66489683968536e-07,1.361154684517e-06,3.41698107308996e-10,1.27266287092143e-09,0.0799999963457794,-1.80505122567703e-09,7.92355764334118e-10,3.56712489407718e-10,1.28300148283245e-11,2.64269509053783e-10,1.92253023570399e-06,-0.0339590514663397,-0.0199957822081837,0.0307344995926963,-3.73399228204007e-10,-1.01611427605341e-08,8.72045491373539e-09 +1.342,-4.16994203750187e-09,7.59511168541005e-09,2.22027382937307e-09,3.41757344646254e-10,1.27343175587713e-09,0.07999987855786,0.000153637721826,9.18874959818932e-05,-0.000125744473317753,1.77115266897232e-11,2.68724278940091e-10,-4.26908508543988e-10,3.8922641151795e-08,-1.34317470340539e-08,-7.85027425009854e-09,7.81059245058556e-10,-5.53593629271097e-09,-0.00739095290004653 +1.344,-9.69418878770615e-07,-5.98939700040962e-07,8.58176791245988e-07,3.41768953415755e-10,1.27373776803719e-09,0.0799999963440717,-1.64936066106985e-09,7.38628776197902e-10,3.25311392407323e-10,1.59542518085587e-11,2.42125763882939e-10,-2.76412813644822e-05,-0.140586239820829,-0.0841164384617585,0.117411207630337,-2.77924384894934e-09,-1.76070096002956e-08,-4.44262682197659e-09 +1.346,-4.17653948014615e-09,7.59806620051484e-09,2.22157507494269e-09,3.41821161653488e-10,1.27440025893266e-09,0.0799997679927346,-0.000408707237457319,-0.000244578257865141,0.000343900357203594,6.59455129392583e-12,1.98296240538909e-10,-4.44679015831894e-10,-4.04105460032055e-08,1.44309477562165e-08,7.34210869185458e-09,-4.76181594155633e-10,5.63221344562768e-09,0.0130549932505011 +1.348,-2.60424782859989e-06,-1.57725273150153e-06,2.23377822006036e-06,3.41795331620931e-10,1.27453095299934e-09,0.079999996342293,-1.81100284508267e-09,7.96352567222768e-10,3.54679827174742e-10,1.40495254319361e-11,2.64654617665449e-10,2.45786916375223e-05,0.162753499182891,0.0970984020860764,-0.138043223633444,2.93840472787021e-09,2.59930965640364e-08,-4.36629898903362e-09 +1.35,-4.18378349152648e-09,7.60125161078373e-09,2.22299379425139e-09,3.41877359755216e-10,1.27545887740332e-09,0.0799998663075011,0.000242306759274248,0.000143815350479165,-0.000208272537330183,1.83481702054067e-11,3.02268626795054e-10,-4.62144211788029e-10,2.61536669057816e-09,-3.72531866466019e-10,5.11635005195909e-10,-5.10225542371678e-10,-3.08347097854877e-10,-0.00412020702104942 +1.352,-1.6350207915029e-06,-1.00199132958487e-06,1.40068807073963e-06,3.41868724301753e-10,1.27574002750652e-09,0.0799999963404444,-1.80054137832036e-09,7.94862439756904e-10,3.56726367195525e-10,1.20086232624494e-11,2.6342122927403e-10,8.09786355332464e-06,-0.0833818658817761,-0.0488861006610503,0.0719645176120797,-2.65217535433404e-09,-1.3833552359177e-08,2.07299455379228e-09 +1.354,-4.19098565703976e-09,7.60443106054276e-09,2.22442069972018e-09,3.41925394248266e-10,1.27651256232042e-09,0.0799998986989553,-9.12207042528568e-05,-5.17290521650365e-05,7.95855331181364e-05,7.73946878807052e-12,2.46934417358346e-10,-4.5385223357286e-10,7.62904279680287e-09,9.34582272682504e-10,1.12963024351265e-09,-1.30559625610704e-09,-7.58074159001851e-10,-0.00145628080948368 +1.356,-1.99990360851433e-06,-1.20890753824501e-06,1.71903020321218e-06,3.41899682176905e-10,1.27672776517596e-09,0.079999996338629,-1.77002520713315e-09,7.98600768847634e-10,3.61244888169576e-10,6.78623823802126e-12,2.60388932638022e-10,2.27274031538993e-06,0.0352624247985889,0.0206917857576826,-0.0306218695588162,-8.74951153195801e-10,5.22628815224911e-09,-1.02522157430229e-09 +1.358,-4.1980657578683e-09,7.60762546361815e-09,2.22586567927285e-09,3.41952539201218e-10,1.27755411805097e-09,0.0799999077899166,4.9828994941499e-05,3.1038090865694e-05,-4.29019451171283e-05,4.23966417528731e-12,2.67839569967343e-10,-4.57953119870069e-10,2.41335272078979e-09,7.98406479818325e-10,2.93276687657329e-09,-1.91990520703733e-09,4.64038529823796e-11,-0.00064370238653244 +1.36,-1.80058762874833e-06,-1.08475517478224e-06,1.54742242274367e-06,3.41916640833606e-10,1.27779912345583e-09,0.0799999963367972,-1.76037179624999e-09,8.01794394766907e-10,3.72975955675869e-10,-8.93382590128055e-13,2.60574548049952e-10,-3.02069230739832e-07,-0.0186258653069124,-0.0119475494215863,0.0160642416734309,-2.48911134759222e-09,-2.54787510534092e-09,-8.58688120608519e-11 +1.362,-4.2051072450533e-09,7.61083264119722e-09,2.22735758309556e-09,3.41948965670857e-10,1.27859641624317e-09,0.0799999065816397,-2.46744662861509e-05,-1.67521068206514e-05,2.13550215765953e-05,-5.71678121508156e-12,2.57648069545979e-10,-4.58296595118312e-10,2.71172244815237e-08,-1.13591861611306e-08,-2.12828886458904e-09,-1.28347853178834e-09,-3.38921599118968e-09,0.00568504805471131 +1.364,-1.89928549389293e-06,-1.15176360206484e-06,1.63284250905005e-06,3.41893773708746e-10,1.27882971573401e-09,0.079999996334964,-1.6519028983239e-09,7.56357650122385e-10,3.64462800217513e-10,-6.02729671728141e-12,2.47017684085193e-10,2.24381229881054e-05,-0.0191787312649508,-0.00953091067786708,0.0172427422214481,-1.03801515993762e-09,-7.49834222490974e-09,-0.0112944865352654 +1.366,-4.21171485664659e-09,7.61385807179771e-09,2.22881543429643e-09,3.41924856483988e-10,1.27958448697951e-09,0.0799999963341316,-0.000101389391345954,-5.48757495321197e-05,9.03259904623878e-05,-9.86884185483205e-12,2.2765470064634e-10,-4.51784044376568e-05,-2.41770308200689e-08,9.62879949384373e-09,6.21865840072509e-09,-1.81517127717523e-09,3.59564808483092e-09,-0.00560964505923188 +1.368,-2.30484305927675e-06,-1.37126660019332e-06,1.9941464708996e-06,3.41854298341326e-10,1.27974033453659e-09,0.0799998156213463,-1.74861102160417e-09,7.9487284809776e-10,3.89337433820413e-10,-1.32879818259823e-11,2.61400276424517e-10,-4.57248822138822e-10,0.0595617641431587,0.0326819810923285,-0.0536820080483104,-1.68463333560797e-09,1.53375576128489e-08,0.0146261445255549 +1.37,-4.21870930073301e-09,7.6170375631901e-09,2.23037278403171e-09,3.41871704556684e-10,1.28063008808521e-09,0.0799999963323026,0.000136857665226681,7.58521748371945e-05,-0.000124402041730854,-1.66073751972639e-11,2.89004931097736e-10,1.33261736645629e-05,-1.1639438870191e-08,2.41733716377368e-09,6.64626773755338e-09,-3.00107161343987e-09,2.03526431818977e-09,-2.33753988387875e-09 +1.372,-1.75741239837003e-06,-1.06785790084454e-06,1.49653830397618e-06,3.41787868840537e-10,1.28089635426099e-09,0.0799998689260409,-1.79516877708494e-09,8.04542196752855e-10,4.15922504770627e-10,-2.52922682797418e-11,2.69541333697276e-10,-4.66598981674337e-10,0.0124333599785438,0.00719077161855616,-0.00735894413266511,-1.3014762878516e-09,-1.12063136548102e-09,0.00463118151119989 +1.374,-4.22588997584135e-09,7.62025573197711e-09,2.23203647405079e-09,3.41770535483565e-10,1.28170825342e-09,0.0799999963304362,0.000186591105140856,0.000104615261311419,-0.000153837818261514,-2.18132803486703e-11,2.84522405635812e-10,3.18508997093625e-05,3.09531453203046e-08,-1.61337956883223e-08,-5.27312568610049e-09,-1.7130394325271e-10,-4.27132287872388e-09,-0.0143888294942135 +1.376,-1.0110479778066e-06,-6.49396855598866e-07,8.81187030930125e-07,3.41700615719143e-10,1.28203444388353e-09,0.0799999963296398,-1.67135619580372e-09,7.40007013999566e-10,3.94830002026225e-10,-2.59774840527527e-11,2.52456042182381e-10,-5.75557845758356e-05,-0.144888779417281,-0.0842771948586679,0.120874411074084,-3.95278428044765e-09,-1.87809837126629e-08,-0.00796283853438105 +1.378,-4.23257540062456e-09,7.62321576003311e-09,2.2336157940589e-09,3.41666625547354e-10,1.28271807758873e-09,0.0799997661072979,-0.00039296401252827,-0.000232493518123253,0.000329659826034823,-3.76244174704609e-11,2.0939847078516e-10,-4.54428161766884e-10,-3.60231050718084e-08,1.5631593242027e-08,8.90097457545424e-09,-1.62023172656234e-09,5.3763417329211e-09,0.0194449961358339 +1.38,-2.58290402791969e-06,-1.57937092809188e-06,2.19982633506942e-06,3.41550118049261e-10,1.28287203776667e-09,0.0799999963278221,-1.81544861609095e-09,8.02533386967674e-10,4.30433900328042e-10,-3.2458410959002e-11,2.73961409114065e-10,2.02241999675001e-05,0.155084692900114,0.0918240304404771,-0.130905433584865,1.99753408258729e-09,2.51977258503011e-08,-4.75140760070047e-09 +1.382,-4.23983719508893e-09,7.62642589358098e-09,2.23533752966021e-09,3.41536791903518e-10,1.28381392322519e-09,0.0799998470040978,0.000227374759072187,0.000134802603638656,-0.000193961908304639,-2.96342811401118e-11,3.10189374186365e-10,-4.73433792169686e-10,-1.78229284629461e-09,-7.7260246811317e-10,1.54292811166411e-09,-6.40329803069937e-10,3.74266589941996e-10,-0.00479676061371225 +1.384,-1.67340499163094e-06,-1.04016051353725e-06,1.42397870185086e-06,3.414315809247e-10,1.28411279526341e-09,0.0799999963259283,-1.82257778747613e-09,7.99442977095221e-10,4.36605612774698e-10,-3.50197301712818e-11,2.75458475473833e-10,1.0371575126511e-06,-0.0818990960368942,-0.049943002073359,0.0704695164335626,-1.64711994043998e-09,-1.26660834598446e-08,2.14758766325929e-09 +1.386,-4.24712750623883e-09,7.62962366548936e-09,2.23708395211131e-09,3.41396712982833e-10,1.28491575712708e-09,0.0799998511527278,-0.00010022162507539,-6.49694046547799e-05,8.79161574296113e-05,-3.62227609018717e-11,2.59525040346986e-10,-4.64843441516649e-10,2.3969406104038e-09,-8.95334154038529e-10,-1.0982968007278e-09,7.46147935104522e-10,-3.20923843055709e-10,0.00071730461501107 +1.388,-2.0742914919325e-06,-1.30003813215637e-06,1.77564333156931e-06,3.41286689881093e-10,1.2851508954248e-09,0.079999996324069,-1.81299002503451e-09,7.95861640479067e-10,4.32212425571787e-10,-3.20351384308637e-11,2.7417478010161e-10,3.90637597269538e-06,0.0401649920584741,0.0259211783001575,-0.0343995660294533,2.06215253206743e-09,5.57279916657547e-09,2.94902990916057e-10 +1.39,-4.25437946633897e-09,7.63280711205128e-09,2.23881280181359e-09,3.4126857242911e-10,1.28601245624749e-09,0.0799998667782317,6.04383431585062e-05,3.87153085458502e-05,-4.96821066882022e-05,-2.7974150773602e-11,2.81816237013288e-10,-4.63663829552984e-10,3.50660798141555e-09,-7.71951946809678e-10,-2.78867640784996e-09,1.55040910665427e-09,-7.02129326901612e-10,-0.000113546711096035 +1.392,-1.83253811929848e-06,-1.14517689797297e-06,1.5769149048165e-06,3.41174793277998e-10,1.28627816037286e-09,0.0799999963222143,-1.79896359310885e-09,7.92773832691828e-10,4.21057719940387e-10,-2.58335020042466e-11,2.71366262794004e-10,3.45218912831124e-06,-0.0204840221282076,-0.0126940290290974,0.0172722673515103,1.34310965127504e-09,-3.87190279838023e-09,1.14144804719274e-09 +1.394,-4.26157532071141e-09,7.63597820738204e-09,2.24049703269336e-09,3.41165238421093e-10,1.28709792129866e-09,0.0799998805869882,-2.14977453543243e-05,-1.20608075705394e-05,1.9406962717839e-05,-2.26017121685018e-11,2.66328625819767e-10,-4.59098037364214e-10,2.95672774458522e-09,-3.20056481317721e-10,-3.54241375816189e-09,1.90104008923608e-09,-7.81492925927551e-10,-0.000229497839135395 +1.396,-1.91852910071577e-06,-1.19342012825513e-06,1.65454275568785e-06,3.41084386429324e-10,1.28734347487613e-09,0.0799999963203779,-1.78713668213051e-09,7.91493606766557e-10,4.0688806490774e-10,-1.82293416473023e-11,2.68240291090293e-10,2.53419777176966e-06,0.00967533795467291,0.00609717997119597,-0.00866605964051045,2.14433505674183e-09,7.51568945966951e-10,2.4980018054066e-10 +1.398,-4.26872386743993e-09,7.63914418180911e-09,2.24212458495299e-09,3.41092321054504e-10,1.28817088246302e-09,0.0799998907237793,1.72036064643673e-05,1.23279123142445e-05,-1.52572758442028e-05,-1.40243719415345e-11,2.69334901603635e-10,-4.58098836642051e-10,1.88723006406405e-09,1.58293517182884e-10,-3.59868385091388e-09,1.91947152616833e-09,-7.11670306019484e-10,-0.000232788617375579 +1.4,-1.8497146748583e-06,-1.14410847899815e-06,1.59351365231104e-06,3.41028288941558e-10,1.28842081448255e-09,0.0799999963185455,-1.77958776187426e-09,7.92126780835289e-10,3.92493329504084e-10,-1.05514555426289e-11,2.65393609866215e-10,1.60304330226735e-06,-0.00532846821983819,-0.00340544387524357,0.00442458588647761,1.76291273246143e-09,-1.44545833635767e-09,1.92554305833425e-10 +1.402,-4.27584221848742e-09,7.64231268893245e-09,2.243694558271e-09,3.41050115232333e-10,1.28923245690249e-09,0.0799998971359525,-4.11026641498543e-06,-1.29386318672986e-06,2.44106770170768e-06,-6.97272101168877e-12,2.63553068258204e-10,-4.57328619418717e-10,9.60426941969127e-10,4.70760583293206e-10,-3.25228125680476e-09,1.77353791375179e-09,-5.88071258356137e-10,-0.000184389441215682 +1.404,-1.86615574051825e-06,-1.14928393174507e-06,1.60327792311787e-06,3.41000398057512e-10,1.28947502675558e-09,0.0799999963167162,-1.77574605410638e-09,7.94009823168462e-10,3.79484204476865e-10,-3.45730388762177e-12,2.63041324832791e-10,8.65485537404619e-07,0.0616502129949112,0.0366652117677493,-0.0517221822827721,3.84891771232365e-09,4.95523760913167e-09,6.38031294463669e-09 +1.406,-4.28294520270385e-09,7.64548872822512e-09,2.24521249508891e-09,3.41036286016783e-10,1.29028462220182e-09,0.0799999005978947,0.00024249058556466,0.000145366983884268,-0.000204447661429381,8.42294983760585e-12,2.83374018694731e-10,-4.3180736764017e-10,3.28173767457638e-08,-1.37266500249605e-08,-1.11705349831141e-08,3.12228541632405e-09,-5.27139096262144e-09,-0.00476365963515741 +1.408,-8.9619339825966e-07,-5.67815996208032e-07,7.85487277400396e-07,3.41034089856862e-10,1.29060852283036e-09,0.079999996314989,-1.64447654712333e-09,7.39103223068623e-10,3.34802064544411e-10,9.03183777767374e-12,2.41955760982306e-10,-1.8189153003224e-05,-0.163670082083669,-0.0962153895631738,0.137011670091867,-1.92836198398294e-09,-2.2226578216827e-08,-3.83720832885491e-09 +1.41,-4.28952310889234e-09,7.6484451411174e-09,2.24655170334709e-09,3.41072413367893e-10,1.29125244524575e-09,0.0799998278412827,-0.00041218974276998,-0.000239494574368407,0.000343599018938056,7.09501901674513e-13,1.94467705827428e-10,-4.47156200955589e-10,-3.68742444347682e-08,1.68691016016917e-08,5.76079982327982e-09,-6.17995238317989e-11,4.9018948622381e-09,0.00752161329747893 +1.412,-2.54495236933958e-06,-1.52579429368166e-06,2.15988335315262e-06,3.41036927864469e-10,1.29138639365367e-09,0.0799999963132003,-1.7919735248624e-09,8.06579629475389e-10,3.5784526383753e-10,8.78463968234654e-12,2.61563340431259e-10,1.18973001866918e-05,0.161021445593267,0.093616837420823,-0.135658462604277,3.09431300027362e-09,2.6101516781285e-08,-6.23806561961259e-09 +1.414,-4.29669100299179e-09,7.6516714596353e-09,2.24798308440244e-09,3.41107551926623e-10,1.29229869860747e-09,0.0799998754304834,0.000231896039603089,0.000134972775314886,-0.000199034831479053,1.3086753902769e-11,2.98873772952568e-10,-4.7210846343404e-10,-4.36091863575266e-09,1.32901502303273e-09,1.23273787011602e-09,-2.33970828822371e-10,5.46871575801675e-10,-0.00332405672431867 +1.416,-1.61736821092722e-06,-9.85903192422116e-07,1.36374402723641e-06,3.4108927488008e-10,1.29258188874548e-09,0.0799999963113119,-1.80941719940541e-09,8.1189568956752e-10,3.62776215317994e-10,7.84875636705706e-12,2.63750826734465e-10,-1.39892671058295e-06,-0.084946269894115,-0.0512080322299414,0.0730520440548947,-1.79565563807049e-09,-1.28126675935647e-08,1.51267887105177e-09 +1.418,-4.30392867178941e-09,7.65491904239357e-09,2.24943418926371e-09,3.41138946952091e-10,1.29335370191441e-09,0.0799998698347766,-0.000107889039973371,-6.98593536048799e-05,9.31733447405262e-05,5.90413135048706e-12,2.47623102578309e-10,-4.66057747949832e-10,2.22085262506499e-10,3.56268833878736e-10,2.78856798763271e-10,2.59124319224035e-10,9.28077059647591e-11,0.000620490362215896 +1.42,-2.04892437082071e-06,-1.26534060684164e-06,1.73643740619851e-06,3.41112891405482e-10,1.29357238115579e-09,0.0799999963094477,-1.80852885835539e-09,8.13320764903035e-10,3.63891642513048e-10,8.8852536439532e-12,2.64122057558324e-10,1.08303473828064e-06,0.0416246761199219,0.0262688748190863,-0.0349228500453983,1.27653963788443e-09,6.24240242830252e-09,-2.89698820488127e-10 +1.422,-4.31116278722284e-09,7.65817232545318e-09,2.25088975583376e-09,3.41174487966667e-10,1.29441019014465e-09,0.0799998741669155,5.86096645063165e-05,3.52161456714655e-05,-4.65180554410672e-05,1.10102899020248e-11,2.72592712291519e-10,-4.67216543231785e-10,1.98449655146315e-09,-2.86229373536173e-10,-3.26561694352634e-10,4.64038529823795e-10,-1.09721259855533e-10,3.91854985959394e-05 +1.424,-1.81448571279544e-06,-1.12447602415577e-06,1.55036518443424e-06,3.4115693256509e-10,1.29466275200496e-09,0.0799999963075788,-1.80059087214954e-09,8.12175847408891e-10,3.62585395735637e-10,1.07414077632484e-11,2.63683172518902e-10,1.2397767326644e-06,-0.0209143706377348,-0.0128696073674241,0.0176796170742567,1.34441069388202e-11,-3.33240379735143e-09,9.80118763926895e-10 +1.426,-4.31836515071143e-09,7.66142102884282e-09,2.25234009741671e-09,3.4121745359772e-10,1.29546492283472e-09,0.0799998791260225,-2.50478180446227e-05,-1.6262283798231e-05,2.42004128559597e-05,1.10640663297801e-11,2.59263097102113e-10,-4.63296068176077e-10,1.95522309280604e-09,-5.23886489744995e-10,-5.36137974294081e-10,4.22405166400352e-10,-1.74773390204663e-10,-8.759159370042e-05 +1.428,-1.91467698497393e-06,-1.1895251593487e-06,1.64716683585808e-06,3.41201188830409e-10,1.29569980439337e-09,0.0799999963057256,-1.79276997977831e-09,8.10080301449911e-10,3.60440843838461e-10,1.24310284288498e-11,2.62984078958084e-10,8.89410357862718e-07,0.0694050883372253,0.0421168015907625,-0.059031802322881,2.74823566681625e-09,6.48483003407028e-09,6.84001466577653e-09 +1.43,-4.32553623063055e-09,7.66466135004862e-09,2.25378186079206e-09,3.41267177711435e-10,1.29651685915055e-09,0.0799998826836639,0.000252572535304279,0.000152204922564819,-0.000211926796435564,2.20570089970451e-11,2.85202417238395e-10,-4.35936009512971e-10,3.37840242977185e-08,-1.50500271967057e-08,-9.12930755297968e-09,1.92489253703076e-09,-5.01638661165591e-09,-0.00509565339576467 +1.432,-9.0438684375682e-07,-5.80705469089421e-07,7.99459650115825e-07,3.41289416866397e-10,1.29684061406232e-09,0.0799999963039819,-1.65763388258744e-09,7.49880192663088e-10,3.23923613626542e-10,2.01305985769728e-11,2.4291853251146e-10,-1.9493203225196e-05,-0.16704153310775,-0.0993687729027719,0.140401678011851,-3.13768108717304e-09,-2.25158433564409e-08,-3.46597750500164e-09 +1.434,-4.3321667661609e-09,7.66766087081927e-09,2.25507755524657e-09,3.41347700105743e-10,1.2974885332806e-09,0.079999804710851,-0.000415593597126722,-0.000245270169046269,0.000349679915611842,9.50628464835289e-12,1.95139043812631e-10,-4.49799919532978e-10,-3.66624319878688e-08,1.5967045394194e-08,7.38081470941231e-09,-1.10870514158367e-09,5.0623567837693e-09,0.00818992828763297 +1.436,-2.56676123226371e-06,-1.5617861452745e-06,2.19817931256319e-06,3.41327442004991e-10,1.29762117023757e-09,0.0799999963021827,-1.80428361053891e-09,8.13748374239864e-10,3.53446872464191e-10,1.56957780106381e-11,2.63167959646537e-10,1.32665099253359e-05,0.162776630002688,0.0961330275512077,-0.138549796395155,2.20483353796652e-09,2.65872393545585e-08,-6.04724603725514e-09 +1.438,-4.33938390060305e-09,7.67091586431623e-09,2.25649134273642e-09,3.41410483217786e-10,1.29854120511919e-09,0.0799998577768907,0.00023551292288403,0.000139261941158562,-0.00020451926996878,1.8325618800219e-11,3.01488001230865e-10,-4.73988903681998e-10,-4.37081198057659e-09,4.32379826387219e-10,2.20548405927001e-09,-1.05514555426289e-09,6.45317133063372e-10,-0.00356400201018125 +1.44,-1.62470954072759e-06,-1.00473838064025e-06,1.38010223268807e-06,3.41400744480191e-10,1.2988271222425e-09,0.0799999963002867,-1.82176685846122e-09,8.15477893545413e-10,3.62268808701271e-10,1.14751957935866e-11,2.65749228178791e-10,-9.89498115389064e-07,-0.086035868364538,-0.0525002105209587,0.0743720605840286,-2.5125301145179e-09,-1.29700937490096e-08,1.6002824065886e-09 +1.442,-4.3466709680369e-09,7.67417777589041e-09,2.25794041797123e-09,3.4145638400096e-10,1.2996042020319e-09,0.0799998538188982,-0.000108630550574122,-7.07389009252726e-05,9.29689723673347e-05,8.27549834214735e-12,2.49607626234827e-10,-4.67587774055644e-10,1.28206906896411e-10,-2.8796409701215e-10,7.50701584228963e-10,-2.97071395261028e-10,1.01915004213637e-10,0.00070975758430236 +1.444,-2.05923174302408e-06,-1.28769398434134e-06,1.75197812215741e-06,3.4143384647356e-10,1.29982555274744e-09,0.0799999962984164,-1.82125403083363e-09,8.14326037157364e-10,3.65271615038187e-10,1.02869102125425e-11,2.66156888195645e-10,1.84953222182038e-06,0.042196370679236,0.0270384041282847,-0.0356292215248276,8.56736556698044e-10,6.32133234645947e-09,-2.53269627492614e-10 +1.446,-4.35395598416023e-09,7.67743508003904e-09,2.25940150443138e-09,3.4149753164181e-10,1.30066882958468e-09,0.0799998612170271,6.01549321428218e-05,3.74147155878662e-05,-4.95479137319759e-05,1.17024445689395e-11,2.74892955620664e-10,-4.68600852565614e-10,1.95012734259536e-09,-6.55291793050238e-10,-2.056731521205e-10,1.45283091113057e-10,-1.81278603239576e-10,2.72447559304667e-05 +1.448,-1.81861201445279e-06,-1.13803512198987e-06,1.55378646722951e-06,3.41480656251836e-10,1.30092512456992e-09,0.079999996296542,-1.81345352146325e-09,8.11704869985163e-10,3.64448922429705e-10,1.08680425769947e-11,2.65431773782687e-10,1.95851124554225e-06,-0.0213207944653242,-0.0132510183717665,0.0181063638713362,-2.10335221462188e-10,-3.4993709319142e-09,9.15933995315753e-10 +1.45,-4.36120979824609e-09,7.68068189951898e-09,2.2608593001211e-09,3.41541003812118e-10,1.30173055667981e-09,0.0799998690510721,-2.51282457184752e-05,-1.55893578991997e-05,2.28775417533688e-05,1.08611036830908e-11,2.60895471893008e-10,-4.64937116584351e-10,2.00363271980752e-09,-5.95226992694541e-10,-6.41414005242424e-10,2.9316826744008e-10,-2.61075883134509e-10,-0.000127738699826074 +1.452,-1.91912499732669e-06,-1.20039255358667e-06,1.64529663424298e-06,3.41524100666568e-10,1.30196870645749e-09,0.0799999962946822,-1.80543899058402e-09,8.09323962014385e-10,3.61883266408735e-10,1.2040715646755e-11,2.64387470250149e-10,1.44755644623795e-06,0.0695676709511416,0.0423995666735954,-0.0587818556474364,2.69402555819198e-09,6.40806852025831e-09,6.80358547278103e-09 +1.454,-4.36843155420842e-09,7.68391919536704e-09,2.26230683318673e-09,3.41589166674705e-10,1.30278810656081e-09,0.0799998748412979,0.000253142438086092,0.000154008908795182,-0.000212249880836377,2.16372059158587e-11,2.86527745974041e-10,-4.37722774693227e-10,3.40335127701346e-08,-1.50504608775747e-08,-9.37791511113061e-09,1.93421667571414e-09,-5.09054604025392e-09,-0.0052873289600741 +1.456,-9.06555244982324e-07,-5.84356918405943e-07,7.96297110897473e-07,3.41610649490232e-10,1.30311481744139e-09,0.0799999962929313,-1.66930493950348e-09,7.49122118504086e-10,3.24371605964213e-10,1.97775823496116e-11,2.44025286089133e-10,-1.97017593940585e-05,-0.16730420688848,-0.100014056309992,0.139970519495843,-3.08563938289374e-09,-2.25553083155194e-08,-3.62990887348147e-09 +1.458,-4.37510877396644e-09,7.68691568384106e-09,2.26360431961059e-09,3.41668277004104e-10,1.30376420770517e-09,0.0799997960342603,-0.000416074389467829,-0.000246047316444786,0.000347632197146997,9.29464838428372e-12,1.96306512711963e-10,-4.52242410187153e-10,-3.66429570063455e-08,1.65045928313123e-08,7.28985014714078e-09,-1.05254346904893e-09,5.03590225076065e-09,0.00837052774402962 +1.46,-2.57085280285364e-06,-1.56854618418509e-06,2.18682589948546e-06,3.41647828083769e-10,1.30390004349223e-09,0.0799999962911224,-1.81587676752887e-09,8.15140489829335e-10,3.53531006552776e-10,1.55674084734159e-11,2.64168895092176e-10,1.378035158206e-05,0.162936062520643,0.0964925072565423,-0.137719965251468,2.25730892311482e-09,2.64831559459999e-08,-6.25541285437236e-09 +1.462,-4.38237228103655e-09,7.69017624580037e-09,2.2650184436368e-09,3.41730546637997e-10,1.30482088328554e-09,0.0799998511556666,0.000235669860614745,0.000139922712581383,-0.000203247663858874,1.8323884076743e-11,3.02239136495963e-10,-4.77264061604643e-10,-4.28394028150619e-09,9.23957091392146e-10,2.1724158930092e-09,-9.69276742202039e-10,6.16694195709754e-10,-0.003707535120058 +1.464,-1.62817336039466e-06,-1.00885533385955e-06,1.37383524404996e-06,3.41721123620076e-10,1.30510900003822e-09,0.0799999962892133,-1.83301252865489e-09,8.18836318194904e-10,3.62220670124813e-10,1.16903015046077e-11,2.66635671875015e-10,-1.04978889817198e-06,-0.0218383038638042,-0.0137886589552955,0.0208528002503287,-1.38994718512642e-10,-7.20430659573167e-09,8.02309607639273e-09 +1.466,-4.38970433115117e-09,7.69345159107315e-09,2.2664673263173e-09,3.41777307844016e-10,1.30588742597304e-09,0.0799998469565111,0.000148316645159528,8.47680767602012e-05,-0.000119836462857559,1.77679052026924e-11,2.73421910113036e-10,-4.45171677299072e-10,3.30996894389728e-08,-1.45324290795612e-08,-7.9424314347598e-09,1.45152986852359e-09,-4.78219894239905e-09,-0.0048736807567104 +1.468,-1.03490677975655e-06,-6.69783026818749e-07,8.94489392619727e-07,3.41792195240886e-10,1.30620268767867e-09,0.0799999962874326,-1.700613770899e-09,7.60706601876659e-10,3.30450944385774e-10,1.74964209787021e-11,2.47506876105419e-10,-2.05445119250136e-05,-0.131158558170678,-0.0767900699275621,0.108146237428708,-2.5205532105943e-09,-1.67851843535516e-08,-4.07486544506952e-09 +1.47,-4.39650678623477e-09,7.69649441748066e-09,2.26778913009484e-09,3.4184729352793e-10,1.30687745347746e-09,0.0799997647784634,-0.000376317587523185,-0.000222392202950047,0.000312748486857271,7.68569236031524e-12,2.0628117269883e-10,-4.6147113907935e-10,-3.51552961004239e-08,1.66307939641896e-08,7.83271017490427e-09,-1.06512021424976e-09,5.08273978461203e-09,0.00931137882249909 +1.472,-2.54017712984929e-06,-1.55935183861894e-06,2.14548334004881e-06,3.41822938010328e-10,1.30702781236947e-09,0.0799999962855867,-1.8412349553007e-09,8.27229777733417e-10,3.61781785085391e-10,1.3235940121703e-11,2.67837835243867e-10,1.67010033649828e-05,0.148056312025557,0.0876867608235169,-0.123844317685088,2.04068532905221e-09,2.39712763527855e-08,-5.43835809718729e-09 +1.474,-4.40387172605597e-09,7.69980333659159e-09,2.26923625723519e-09,3.41900237288417e-10,1.30794880481844e-09,0.0799998315824768,0.000215907660579045,0.000128354840344021,-0.00018262878388308,1.58484336765241e-11,3.02166278109972e-10,-4.83224571468099e-10,-2.14429439916036e-09,6.11706865716321e-10,2.08990810768306e-09,-7.86697096355481e-10,4.76615275024627e-10,-0.00413462134234848 +1.476,-1.67654648753311e-06,-1.04593247724286e-06,1.41496820451649e-06,3.41886331745034e-10,1.30823647748191e-09,0.0799999962836538,-1.84981213289734e-09,8.29676605196283e-10,3.70141417516123e-10,1.00891517362811e-11,2.69744296343965e-10,1.62517995588862e-07,-0.0782485013917137,-0.0480837829216779,0.06692776978413,-2.0339632755828e-09,-1.18230078505199e-08,1.71650887947905e-09 +1.478,-4.41127097458756e-09,7.70312204301238e-09,2.27071682290525e-09,3.41940593895362e-10,1.30902778200381e-09,0.0799998322325488,-9.70863449878096e-05,-6.39802913426912e-05,8.50822952534399e-05,7.71258057419288e-12,2.54874246707892e-10,-4.76358535950183e-10,1.89509052981457e-09,-5.55111512312578e-11,4.89517280877205e-10,-2.38524477946811e-12,-5.68121938382404e-11,0.000658603723641126 +1.48,-2.06489186748435e-06,-1.30185364261362e-06,1.75529738553025e-06,3.41917182067331e-10,1.30925597446874e-09,0.0799999962817484,-1.84223177077808e-09,8.29454560591358e-10,3.72099486639632e-10,1.00796107571632e-11,2.69517047568612e-10,2.79693289015337e-06,0.0383896346131093,0.0248312942764152,-0.0325598131311428,1.04647193688301e-09,5.60879467870199e-09,7.80625564189563e-12 +1.482,-4.41863990167067e-09,7.70643986125474e-09,2.27220522085181e-09,3.41980912338391e-10,1.31010585019409e-09,0.0799998434202804,5.64721934646276e-05,3.53448857629695e-05,-4.51569572711314e-05,1.18984683217249e-11,2.773094254227e-10,-4.76327310927615e-10,3.04065854526275e-09,-4.66206934168766e-10,-5.39499001028786e-10,3.814223242804e-10,-2.85795692667179e-10,-7.68975551637683e-05 +1.484,-1.83900309362584e-06,-1.16047409956174e-06,1.57466955644572e-06,3.41964775940617e-10,1.31036521217043e-09,0.0799999962798431,-1.83006913659703e-09,8.27589732854683e-10,3.69941490635517e-10,1.16053000542848e-11,2.68373864797944e-10,2.48934266949829e-06,-0.0195408663943296,-0.0122313929811369,0.0163821476496057,3.10081821330854e-11,-3.31028607303274e-09,9.74047231760976e-10 +1.486,-4.42596017821706e-09,7.70975022018616e-09,2.27368498681435e-09,3.42027333538608e-10,1.31117934565328e-09,0.079999853377651,-2.16912721126908e-05,-1.35806861615781e-05,2.03716333272916e-05,1.20225010502573e-11,2.64068281130569e-10,-4.72431122000571e-10,2.56283709532123e-09,-4.80084721976581e-10,-9.38919081372446e-10,4.53847029402431e-10,-3.72098185597025e-10,-0.000178990718080474 +1.488,-1.9257681820766e-06,-1.21479684420805e-06,1.65615608975489e-06,3.42012865944819e-10,1.31142148529495e-09,0.0799999962779534,-1.81981778821574e-09,8.25669393966776e-10,3.66185814310027e-10,1.34206881718946e-11,2.66885472055556e-10,1.7733797971764e-06,0.00934625425743651,0.00599726598785911,-0.00841528231137772,6.39245600897452e-10,1.13624387676481e-09,1.98625837999344e-10 +1.49,-4.43323944936992e-09,7.71305289776203e-09,2.27514973007159e-09,3.42081016291296e-10,1.3122468875415e-09,0.0799998604711702,1.56937449170553e-05,1.04083777898584e-05,-1.32894959182193e-05,1.45794834538471e-11,2.68613256637628e-10,-4.71636618648574e-10,1.55425802436659e-09,-3.89445420356793e-10,-9.67325178291566e-10,3.85542292535845e-10,-3.12683906544819e-10,-0.000176762987059986 +1.492,-1.86299320240838e-06,-1.17316333304862e-06,1.60299810608201e-06,3.42071183878634e-10,1.3124959383215e-09,0.0799999962760668,-1.81360075611828e-09,8.24111612285349e-10,3.62316513596861e-10,1.49628573420379e-11,2.65634736429376e-10,1.06632784893645e-06,-0.00505214161068798,-0.00321381488348898,0.00407192371531042,2.08166817117217e-10,-1.03779831950312e-09,2.50667542278648e-10 +1.494,-4.44049385239439e-09,7.71634934421117e-09,2.27659899612598e-09,3.42140867720664e-10,1.31330942648722e-09,0.0799998647364816,-4.51482152569659e-06,-2.44688174409757e-06,2.99819894302236e-06,1.54121507223159e-11,2.64462063359616e-10,-4.70633948479459e-10,6.62772788040388e-10,-2.66063213127943e-10,-8.12609528277885e-10,2.39608680119296e-10,-2.20743562318048e-10,-0.000126878071417258 +1.496,-1.88105248851117e-06,-1.18295086002501e-06,1.6149909018541e-06,3.42132832481523e-10,1.31355378657494e-09,0.0799999962741843,-1.81094966496611e-09,8.23047359432837e-10,3.59066075483749e-10,1.59212920625151e-11,2.64751762180104e-10,5.58815563267422e-07,0.00218243956493803,0.00136735241770651,-0.0019977791542369,2.29200339263435e-10,1.76941794549634e-10,-3.90312782094781e-11 +1.498,-4.44773765105426e-09,7.7196415336489e-09,2.27803526042791e-09,3.42204552888914e-10,1.31436843353594e-09,0.0799998669717439,4.21493673405555e-06,3.02252792672847e-06,-4.99291767392523e-06,1.63289520793697e-11,2.65169830537814e-10,-4.70790073592297e-10,8.67632788531524e-11,-1.8995222061946e-10,-5.6389354990971e-10,1.28152696787786e-10,-1.63931368479808e-10,-8.51929004772044e-05 +1.5,-1.86419274157495e-06,-1.1708607483181e-06,1.5950192311584e-06,3.42198148289841e-10,1.31461446589709e-09,0.0799999962723011,-1.8106026118507e-09,8.22287550550359e-10,3.5681050128411e-10,1.64339028496663e-11,2.64096036706185e-10,2.18043961358605e-07,-0.00134837985445353,-0.000882799580832759,0.00116062285064784,3.94649590784715e-11,-3.23959609138668e-10,-6.50521303491302e-11 +1.502,-4.45498006150166e-09,7.7229306838511e-09,2.27946250243305e-09,3.42270288500313e-10,1.31542481768276e-09,0.0799998678439197,-1.17858268375856e-06,-5.08670396602573e-07,-3.50426271333859e-07,1.64868119156836e-11,2.6387399210126e-10,-4.71050282113694e-10,-2.07082614944731e-10,-8.52182907573606e-11,-2.8796409701215e-10,1.19262238973405e-11,-6.63531729561128e-11,-5.98706978091611e-05 +1.504,-1.86890707230998e-06,-1.17289542990451e-06,1.59361752607307e-06,3.42264095537503e-10,1.3156699618655e-09,0.0799999962704169,-1.81143094231048e-09,8.2194667738733e-10,3.55658644896062e-10,1.64816077452556e-11,2.6383062401436e-10,-2.14388298780399e-08,0.000487751357640571,0.000271742030570273,-0.000342369774891659,-1.64798730217797e-11,4.51028103753969e-11,-1.29236898960272e-10 +1.506,-4.4622257852709e-09,7.72621847056065e-09,2.28088513701263e-09,3.42336214931294e-10,1.31648014017882e-09,0.0799998677581644,7.72422746803721e-07,5.78297725678522e-07,-1.7199053709005e-06,1.64208924235964e-11,2.64054403342761e-10,-4.71567229709535e-10,-3.42025127837708e-10,-3.72965547335013e-11,-4.38017677684143e-11,-6.44016090456381e-11,3.46944695195361e-12,-4.59714193795645e-05 +1.508,-1.86581738132277e-06,-1.17058223900179e-06,1.58673790458946e-06,3.42329779107198e-10,1.31672617947887e-09,0.0799999962685307,-1.81279904282183e-09,8.21797491168396e-10,3.55483437824988e-10,1.62240013090731e-11,2.63844501802168e-10,-2.05324507396298e-07,-0.000362402291701857,-0.000271505278762879,0.000404924112903243,-1.09287578986538e-10,-4.81385764583564e-11,-1.35308431126191e-10 +1.51,-4.46947698144219e-09,7.72950566052533e-09,2.28230707076393e-09,3.4240111093653e-10,1.31753551818603e-09,0.0799998669368664,-6.77186420003708e-07,-5.07723389372993e-07,-1.00208919287525e-07,1.59837421076503e-11,2.63861849036928e-10,-4.7210846343404e-10,-4.06033713595821e-10,5.46437894932694e-11,1.76616533897889e-10,-1.2641797331181e-10,4.38017677684143e-11,-3.49970824889411e-05 +1.512,-1.86852612700278e-06,-1.17261313255929e-06,1.58633706891231e-06,3.42393714075628e-10,1.31778162687501e-09,0.0799999962666422,-1.81442317767621e-09,8.22016066326369e-10,3.5618990396058e-10,1.57183294158258e-11,2.64019708873242e-10,-3.45312837352063e-07,0.000115482208770169,3.39115742865186e-05,-1.03186057788529e-05,-1.3162214373974e-10,7.80625564189563e-11,-1.33573707650214e-10 +1.514,-4.4767346741529e-09,7.73279372479063e-09,2.28373183037978e-09,3.42463984254193e-10,1.31859159702152e-09,0.079999865555615,-2.15257584923033e-07,-3.72077092226919e-07,-1.41483342402937e-07,1.54572535326913e-11,2.64174099262604e-10,-4.7264275826464e-10,2.68710970358423e-08,-1.17180570802233e-08,-5.7179738374713e-09,8.18789480661051e-10,-3.79514128456824e-09,0.00825559586664636 +1.516,-1.86938715734247e-06,-1.17410144092819e-06,1.5857711355427e-06,3.42455543089759e-10,1.31883832327206e-09,0.0799999962647517,-1.70693878953285e-09,7.75143838005476e-10,3.33318008610694e-10,1.899348733847e-11,2.48839143734969e-10,3.26770706292334e-05,-0.0277812166206138,-0.0150548260173348,0.0242854412727758,8.75384834064795e-10,-9.37704774939261e-09,-0.0146619868589964 +1.518,-4.48356242931103e-09,7.73589430014265e-09,2.28506510241422e-09,3.42539958203547e-10,1.31958695359646e-09,0.0799999962638975,-0.000111340124067378,-6.05913811615663e-05,9.70002817487005e-05,1.89587928689505e-11,2.26665908265033e-10,-5.8648420078744e-05,-2.36615197921063e-08,1.07641760088706e-08,3.03034507209698e-09,6.09321620936853e-11,3.14288525760098e-09,-0.00816938546758376 +1.52,-2.31474765361199e-06,-1.41646696557446e-06,1.9737722625375e-06,3.42531378261235e-10,1.31974498690512e-09,0.0799997616710713,-1.80158486870127e-09,8.18200542040958e-10,3.45439388899082e-10,1.92372159868448e-11,2.61410684765373e-10,-4.71241101696051e-10,0.0629505534944915,0.0356380541542255,-0.0558254162492379,-6.50521303491302e-13,1.55275098334684e-08,0.0189974425947314 +1.522,-4.49076876878583e-09,7.73916710231082e-09,2.28644685996982e-09,3.42616907067494e-10,1.32063259633552e-09,0.0799999962620126,0.000140462089910588,8.19608354553358e-05,-0.000126301383248251,1.89561907837365e-11,2.88775947598907e-10,1.73413503001818e-05,-1.19888094677473e-08,4.25983033569554e-09,4.55364912443911e-09,-1.61697912004488e-09,1.74383077422567e-09,-2.97158131434827e-09 +1.524,-1.75289929396963e-06,-1.08862362375312e-06,1.4685667295445e-06,3.4260720302437e-10,1.32090009069552e-09,0.0799998310364725,-1.84954010657226e-09,8.3523986338374e-10,3.63653985396839e-10,1.27692995066653e-11,2.68386007862275e-10,-4.83127426953444e-10,-0.0518937523944975,-0.0322761876249237,0.0457863234555165,-2.40476041857284e-09,-7.29277749300648e-09,-0.00484440221531351 +1.526,-4.49816692921212e-09,7.74250806176435e-09,2.2879014759114e-09,3.42667984265521e-10,1.32170614036697e-09,0.0799999962600801,-6.71129196674023e-05,-4.71439150443592e-05,5.68439105738151e-05,9.33714910944516e-12,2.59604837626881e-10,-2.03625856107226e-06,-1.90586478890364e-09,8.077306185017e-10,2.20093041014557e-09,-7.92118107217908e-10,5.01335084557297e-10,-3.29597460435593e-10 +1.528,-2.02135097263924e-06,-1.27719928393055e-06,1.69594237183976e-06,3.42644551620808e-10,1.32193851004603e-09,0.0799998228914383,-1.85716356572787e-09,8.38470785857747e-10,3.72457707037421e-10,9.60082707779363e-12,2.70391348200505e-10,-4.84445816795187e-10,0.0262034403940774,0.0173313753951652,-0.0214021877520745,1.60461921527855e-10,4.15032591627449e-09,0.000929465813342965 +1.53,-4.50559558347503e-09,7.74586194490778e-09,2.28939130673955e-09,3.42706387573832e-10,1.32278770575978e-09,0.0799999962581423,3.77008419089075e-05,2.21815865363017e-05,-2.8764840434483e-05,9.97899679555657e-12,2.76206141291979e-10,1.68160469229961e-06,1.38285921342379e-09,1.32706345912226e-10,7.2847543969301e-10,-7.22078646875345e-11,7.02563007770606e-11,3.10515502199848e-10 +1.532,-1.87054760500361e-06,-1.18847293778535e-06,1.58088301010183e-06,3.4268446760799e-10,1.3230433346112e-09,0.0799998296178571,-1.85163212887418e-09,8.39001611241396e-10,3.75371608796193e-10,9.31199561904349e-12,2.70672373403613e-10,-4.83203754786387e-10,-0.0129800828398764,-0.00793558155580582,0.0109695484810457,-1.28586377656781e-10,-2.05087682947358e-09,5.55402971877393e-05 +1.534,-4.51300211199053e-09,7.74921795135275e-09,2.29089279317474e-09,3.42743635556308e-10,1.32387039525339e-09,0.0799999962562095,-1.42194894505983e-05,-9.56073968692155e-06,1.51133534896999e-05,9.46465128492945e-12,2.68002633974085e-10,1.90376588105057e-06,2.28251662362511e-09,-1.02999206386123e-10,-1.86808034319252e-10,2.89048299184635e-10,-1.56992474575901e-10,4.84855211535517e-10 +1.536,-1.92742556280601e-06,-1.22671589653303e-06,1.64133642406063e-06,3.4272232621313e-10,1.32411534514709e-09,0.0799998372329206,-1.84250206237968e-09,8.38589614415852e-10,3.74624376658916e-10,1.0468188815782e-11,2.70044403505309e-10,-4.81264333940245e-10,0.00640801373503465,0.00423858819049993,-0.0057494372347885,4.96130914129366e-10,7.91467585914418e-10,-0.000109277970353205 +1.538,-4.52037212024005e-09,7.75257230981041e-09,2.29239129068137e-09,3.42785508311572e-10,1.32495057286741e-09,0.0799999962542844,1.14125654895403e-05,7.39361307507818e-06,-7.88439544945409e-06,1.14491749414469e-11,2.71168504317742e-10,1.46665399963774e-06,1.85204770356689e-09,-6.59194920871186e-11,-6.03033248336437e-10,3.82506526452885e-10,-2.26815094483967e-10,2.9316826744008e-10 +1.54,-1.88177530084785e-06,-1.19714144423272e-06,1.60979884226281e-06,3.42768122912895e-10,1.32520001916436e-09,0.0799998430995366,-1.83509387156541e-09,8.38325936447503e-10,3.7221224366557e-10,1.19982149215936e-11,2.69137143127373e-10,-4.80091660870485e-10,-0.00341286494617636,-0.00215696316428586,0.0025612987241113,3.22441726097188e-10,-7.1123662515049e-10,-0.000140154236306922 +1.542,-4.52771249572631e-09,7.7559256135562e-09,2.29388013965603e-09,3.42833501171258e-10,1.32602712143992e-09,0.079999996252364,-2.23889429516516e-06,-1.23423958206525e-06,2.36079944699111e-06,1.27389418458357e-11,2.6832355781714e-10,9.06037054410057e-07,1.04041395724425e-09,-1.32272665043231e-11,-7.6588041464376e-10,3.75784472983476e-10,-2.13370987545147e-10,1.30971622436249e-10 +1.544,-1.89073087802851e-06,-1.20207840256098e-06,1.61924204005078e-06,3.42819078680279e-10,1.32627331339563e-09,0.0799998467236848,-1.83093221573643e-09,8.38273027381486e-10,3.69148722006995e-10,1.35013528135275e-11,2.68283659177193e-10,-4.7956777438074e-10,0.00145589239141264,0.00094310576926118,-0.0015022136998959,3.60171961699684e-10,5.24753851482984e-11,-0.000104337039008584 +1.546,-4.53503622458926e-09,7.75927870566573e-09,2.29535673454406e-09,3.42887506582512e-10,1.32710025607663e-09,0.0799999962504458,3.58467527048541e-06,2.53818349497947e-06,-3.64805535259249e-06,1.41796296926344e-11,2.68533459357734e-10,4.88688898375722e-07,3.75635395184759e-10,6.0281640790194e-11,-7.20452343616617e-10,2.9316826744008e-10,-1.75207071073657e-10,-5.3776427755281e-11 +1.548,-1.87639217694656e-06,-1.19192566858106e-06,1.60464981864041e-06,3.42875797199049e-10,1.32734744723306e-09,0.0799998486784404,-1.8294296741557e-09,8.38514153944647e-10,3.66266912632529e-10,1.46740258832878e-11,2.67582830892898e-10,-4.79782880091761e-10,-0.000955030485778688,-0.000611131990282606,0.000700438230420013,2.4307812707125e-10,-2.89698820488127e-10,-6.70721108861349e-05 +1.55,-4.54235394328588e-09,7.76263276228151e-09,2.29682180219459e-09,3.42946202686045e-10,1.3281705874002e-09,0.0799999962485266,-2.35446672629345e-07,9.36555338490463e-08,-8.46302430912437e-07,1.51519422009194e-11,2.67374664075781e-10,2.20400454831182e-07,-1.9502086577583e-11,9.56266316132214e-11,-5.91215444656345e-10,2.09251019289702e-10,-1.15359111152458e-10,-1.18828558104411e-10 +1.552,-1.87733396363708e-06,-1.19155104644567e-06,1.60126460891676e-06,3.42936404967853e-10,1.32841694588937e-09,0.0799998495600422,-1.82950768250201e-09,8.38896660471099e-10,3.63902050853903e-10,1.55110299604466e-11,2.67121394448288e-10,-4.80258194324179e-10,0.00029077179684487,0.000176148727765515,-0.000257995651318371,1.78242837156617e-10,-5.11743425413158e-11,-4.70122916290671e-05 +1.554,-4.54967197401589e-09,7.76598834892339e-09,2.29827741039801e-09,3.43008246805887e-10,1.32923907297799e-09,0.0799999962466056,9.27640514750138e-07,7.98250444911108e-07,-1.87828503618592e-06,1.58649135495459e-11,2.67169966705616e-10,3.23512883149135e-08,-2.09793120375945e-10,1.05601291600088e-10,-4.06467394464815e-10,1.35958952429682e-10,-8.28330459778925e-11,-1.40512601554121e-10 +1.556,-1.87362340157808e-06,-1.18835804466602e-06,1.59375146877201e-06,3.42999864622051e-10,1.32948562575619e-09,0.0799998496894474,-1.83034685498351e-09,8.393190656375e-10,3.62276181276044e-10,1.60548657701653e-11,2.66790062264377e-10,-4.80820244730395e-10,-0.000287307901428168,-0.000207688808859241,0.000294894079641561,7.93635990259389e-11,-1.00180280737661e-10,-3.95109743533961e-05 +1.558,-4.55699336143582e-09,7.76934562518594e-09,2.29972651512311e-09,3.43072466268968e-10,1.33030623322705e-09,0.0799999962446823,-2.21591090962536e-07,-3.25047905258557e-08,-6.98708717619678e-07,1.61823679456496e-11,2.66769245582665e-10,-1.25692609098671e-07,-2.94821675753121e-10,1.21647483752873e-10,-1.93313247354165e-10,4.46691295064027e-11,-2.12503625807159e-11,-1.56125112837913e-10 +1.56,-1.87450976594193e-06,-1.18848806382812e-06,1.59095663390153e-06,3.43064594093834e-10,1.33055270273852e-09,0.0799998491866769,-1.83152614168652e-09,8.39805655572511e-10,3.61502928286627e-10,1.62335422881909e-11,2.66705060814054e-10,-4.81444745181747e-10,4.2460948914357e-05,-6.04494232447904e-06,3.34916059729212e-05,7.58941520739852e-12,-1.3010426069826e-12,-3.52359296254545e-05 +1.562,-4.56431946600257e-09,7.77270484780823e-09,2.30117252683626e-09,3.4313740043812e-10,1.33137305347031e-09,0.0799999962427565,-5.1747295305108e-08,-5.66845598237719e-08,-5.64742293727993e-07,1.62127256064792e-11,2.66764041412237e-10,-2.66636327600489e-07,-3.55658970156713e-10,1.1817803680092e-10,1.48535697630514e-11,-1.9298798670242e-11,1.90819582357449e-11,-1.49186218934005e-10 +1.564,-1.87471675512315e-06,-1.18871480206742e-06,1.58869766472662e-06,3.4312944499626e-10,1.33161975890417e-09,0.0799998481201316,-1.83294877756715e-09,8.40278367719715e-10,3.6156234256568e-10,1.615634709351e-11,2.66781388646997e-10,-4.82041490057483e-10,-8.49031803521435e-05,-8.87403757247883e-05,0.000137196296966409,-4.5319650809894e-11,3.46944695195361e-11,-2.8422516944182e-05 +1.566,-4.57165126111284e-09,7.77606596127911e-09,2.30261877620652e-09,3.43202025826495e-10,1.3324401790249e-09,0.0799999962408284,-3.91360016713682e-07,-4.11646062722925e-07,-1.59571058623575e-08,1.60314470032396e-11,2.66902819290315e-10,-3.80326395377217e-07,-4.02523609062399e-10,1.8323016715005e-10,1.85832252364015e-10,-7.80625564189563e-11,7.19910242530374e-11,-1.56125112837913e-10 +1.568,-1.87628219519001e-06,-1.19036138631831e-06,1.58863383630317e-06,3.43193570784273e-10,1.33268737018133e-09,0.079999846598826,-1.8345588720034e-09,8.41011288388315e-10,3.62305671575136e-10,1.58440968678342e-11,2.67069352744009e-10,-4.82665990508834e-10,1.14940013886885e-05,-2.05533780099631e-05,4.03555296818458e-05,-1.04083408558608e-10,7.1123662515049e-11,-1.84360122654214e-05 +1.57,-4.57898949660085e-09,7.77943000643266e-09,2.30406799889282e-09,3.43265402213966e-10,1.33350845643587e-09,0.0799999962388977,-3.45384011158928e-07,-4.93859574762778e-07,1.45465012865026e-07,1.56151133690052e-11,2.67187313940376e-10,-4.54070444438903e-07,-4.39765953687276e-10,2.20743562318048e-10,2.91325123746855e-10,-1.06468653338076e-10,8.63024929298461e-11,-1.59594559789866e-10 +1.572,-1.87766373123464e-06,-1.19233682461736e-06,1.58921569635463e-06,3.43256031237749e-10,1.33375611943709e-09,0.0799998447825443,-1.83631793581815e-09,8.41894262637587e-10,3.63470972070123e-10,1.54182222544818e-11,2.67414562715728e-10,-4.83304368747994e-10,-1.01896032301922e-05,-2.35861172172974e-05,4.14335708754861e-05,-1.06685493772574e-10,9.36750677027475e-11,-7.50005266225706e-06 +1.574,-4.58633476834412e-09,7.78279758348321e-09,2.3055218827811e-09,3.43327075102984e-10,1.33457811468674e-09,0.0799999962369645,-3.86142424079697e-07,-5.88204043631967e-07,3.1119929636697e-07,1.51883713939149e-11,2.67562014211186e-10,-4.84070655087931e-07,-4.54443340597299e-10,2.51101223147643e-10,3.31006923259824e-10,-1.20563281580388e-10,9.75781955236953e-11,-1.70002900645727e-10 +1.576,-1.87920830093096e-06,-1.19468964079189e-06,1.5904604935401e-06,3.43316784723324e-10,1.33482636749394e-09,0.0799998428462616,-1.83813570918054e-09,8.42898667530178e-10,3.64794999763162e-10,1.49359691281603e-11,2.67804875497823e-10,-4.83984380350577e-10,1.9134239182786e-05,6.52585364219193e-06,1.12543600740839e-06,-1.11889664200504e-10,1.0321604682062e-10,1.70723938458517e-06 +1.578,-4.59368731118084e-09,7.78616917815333e-09,2.30698106278016e-09,3.43386818979496e-10,1.33564933418873e-09,0.0799999962350286,-3.09605467348553e-07,-5.621006290632e-07,3.15701040396604e-07,1.47408127371129e-11,2.67974878398469e-10,-4.7724169754959e-07,-4.53494663696374e-10,2.94252469612566e-10,3.32199545649558e-10,-8.65193333643432e-11,1.01915004213637e-10,-1.71737624121704e-10 +1.58,-1.88044672280036e-06,-1.19693804330814e-06,1.59172329770169e-06,3.43375747974273e-10,1.33589826700753e-09,0.0799998409372949,-1.83994968783532e-09,8.44075677408628e-10,3.66123797945761e-10,1.45898917947029e-11,2.68212535514678e-10,-4.84671330847064e-10,1.44607761095455e-05,1.25099958604019e-05,-6.92033160377275e-06,-7.84962372879505e-11,8.06646416329215e-11,7.54571492095345e-06 +1.582,-4.60104710993219e-09,7.78954548086297e-09,2.30844555797194e-09,3.43445178546675e-10,1.33672218433079e-09,0.0799999962330899,-2.51762362910371e-07,-5.12060645621592e-07,2.88019713981513e-07,1.44268277879611e-11,2.68297536965001e-10,-4.47058837865777e-07,-4.30184316987936e-10,3.46944695195361e-10,2.80049421153006e-10,-7.17741838185403e-11,9.41087485717417e-11,-1.95156391047391e-10 +1.584,-1.881453772252e-06,-1.19898628589063e-06,1.59287537655761e-06,3.43433455285425e-10,1.33697145715539e-09,0.0799998391490595,-1.84167042510327e-09,8.4546345618941e-10,3.67243995630373e-10,1.43027950594288e-11,2.68588970508965e-10,-4.85451956411253e-10,1.91944858309511e-05,2.09391295535183e-05,-1.91074103154248e-05,-5.83300768797201e-11,1.07119174641568e-10,9.73669755932602e-06 +1.586,-4.6084137916326e-09,7.79292733468773e-09,2.30991453395446e-09,3.43502389726913e-10,1.33779654021282e-09,0.0799999962311481,-1.74984419586566e-07,-4.28304127407519e-07,2.11590072719814e-07,1.41935074804422e-11,2.68726013663567e-10,-4.08112047628472e-07,-4.03838204196538e-10,3.59955121265187e-10,2.11202583200176e-10,-3.55618312575245e-11,6.41847686111418e-11,-2.00360561475321e-10 +1.588,-1.88215370993034e-06,-1.20069950240026e-06,1.59372173684849e-06,3.43490229315346e-10,1.33804636121004e-09,0.0799998375166113,-1.84328577792006e-09,8.4690327667447e-10,3.68088805963173e-10,1.41605477343987e-11,2.68845709583409e-10,-4.86253398657154e-10,1.36378305431442e-05,1.92317652688428e-05,-1.90081972514452e-05,-6.28837260041592e-12,7.76288755499621e-11,9.01608128434093e-06 +1.59,-4.61578693474428e-09,7.79631494779442e-09,2.31138688917831e-09,3.43559031917851e-10,1.33887192305115e-09,0.079999996229203,-1.2043309741399e-07,-3.51377066332148e-07,1.35557283714033e-07,1.41683539900406e-11,2.69036529165767e-10,-3.72047722491109e-07,-3.76123286162377e-10,4.10912623372006e-10,1.37259995036665e-10,7.37257477290142e-12,8.37004077158809e-11,-1.75207071073657e-10 +1.592,-1.88263544232e-06,-1.20210501066559e-06,1.59426396598335e-06,3.43546902731307e-10,1.33912250732671e-09,0.0799998360284204,-1.84479027106471e-09,8.48546927167958e-10,3.6863784594332e-10,1.41900380334903e-11,2.69180511214273e-10,-4.86954226941449e-10,1.00456744160128e-05,1.61168999153471e-05,-1.7646739538385e-05,1.47451495458028e-11,4.38017677684143e-11,6.5603000462544e-06 +1.594,-4.62316609582854e-09,7.7997091355031e-09,2.31286144056209e-09,3.43615792069984e-10,1.33994864509601e-09,0.0799999962272552,-8.02503997499384e-08,-2.86909466670759e-07,6.49703255604927e-08,1.42273345882238e-11,2.6921173623684e-10,-3.45806522306091e-07,-3.51417029156864e-10,3.78386558197441e-10,9.31329666165048e-11,2.94902990916057e-11,3.68628738645071e-11,-1.93421667571414e-10 +1.596,-1.882956443919e-06,-1.20325264853227e-06,1.59452384728559e-06,3.43603812069659e-10,1.34019935427165e-09,0.0799998346451943,-1.84619593918134e-09,8.50060473400748e-10,3.69010377809786e-10,1.43079992298567e-11,2.69327962709731e-10,-4.87727913611735e-10,4.50231243617499e-06,1.01992158208636e-05,-1.25603212726422e-05,3.98986399474665e-11,5.8113236445223e-11,3.51656204156114e-06 +1.598,-4.63055087958526e-09,7.8031093773967e-09,2.31433748207333e-09,3.43673024066904e-10,1.34102595694685e-09,0.0799999962253043,-6.22411500052384e-08,-2.46112603387305e-07,1.47290404699241e-08,1.43869291480136e-11,2.69444189182621e-10,-3.31740274139846e-07,-3.3678029982831e-10,4.0614213381307e-10,3.80554962542412e-11,4.44522890719056e-11,4.68375338513738e-11,-2.12503625807159e-10 +1.6,-1.88320540851902e-06,-1.20423709894582e-06,1.59458276344747e-06,3.43661359786251e-10,1.34127713102838e-09,0.0799998333182332,-1.84754306038065e-09,8.51685041936e-10,3.69162599794803e-10,1.44858083861443e-11,2.69515312845136e-10,-4.88577928114963e-10,6.08655744620094e-07,4.83258008263098e-06,-7.70557348397231e-06,4.7488055154865e-11,3.16587034365767e-11,7.38289637758349e-07 +1.602,-4.63794105182679e-09,7.80651611756444e-09,2.3158141324725e-09,3.43730967300448e-10,1.34210401819823e-09,0.07999999622335,-5.9806527026758e-08,-2.26782283056781e-07,-1.60932534659652e-08,1.45768813686331e-11,2.69570823996368e-10,-3.28787115588813e-07,-3.29651670544217e-10,3.98986399474665e-10,2.51534904016637e-11,5.8113236445223e-11,3.68628738645071e-11,-1.74339709335669e-10 +1.604,-1.88344463462713e-06,-1.20514422807805e-06,1.59451839043361e-06,3.43719667311726e-10,1.34235541432437e-09,0.0799998320030848,-1.84886166706283e-09,8.53280987533899e-10,3.6926321375641e-10,1.47182613319252e-11,2.69662764340594e-10,-4.89275286952306e-10,-2.48447269701745e-06,2.28922566666845e-07,-3.15008967261692e-06,6.54858112181244e-11,5.03069808033274e-11,-1.29072360438576e-06 +1.606,-4.64533649849504e-09,7.80992924151458e-09,2.31729118532753e-09,3.43789840345776e-10,1.34318266925559e-09,0.0799999962213929,-6.97444178148279e-08,-2.25866592790114e-07,-2.86936121564329e-08,1.48388246135056e-11,2.69772051919581e-10,-3.33950010006356e-07,-3.31128896004229e-10,3.87277016011822e-10,1.32272665043231e-11,4.85722573273506e-11,4.59701721133853e-11,-2.1163626406917e-10 +1.608,-1.88372361229839e-06,-1.20604769444921e-06,1.59440361598498e-06,3.4377902261018e-10,1.34343450253205e-09,0.0799998306672847,-1.85018618264684e-09,8.54830095597946e-10,3.69316122822427e-10,1.49125503612346e-11,2.69846645029048e-10,-4.90121832008583e-10,-4.02710286992457e-06,-2.69479729329835e-06,-8.37340179832279e-08,4.61870125478825e-11,2.12503625807159e-11,-2.41662159033984e-06 +1.61,-4.65273724322562e-09,7.81334856189697e-09,2.31876844981882e-09,3.43849490547221e-10,1.34426205583571e-09,0.0799999962194324,-8.58528292945262e-08,-2.36645781963307e-07,-2.90285482283658e-08,1.50235726636971e-11,2.69857053369904e-10,-3.43616496367715e-07,-3.37661214093454e-10,3.72748706900516e-10,3.40439482160448e-11,5.22585447138013e-11,3.42607886505419e-11,-1.95156391047391e-10 +1.612,-1.88406702361556e-06,-1.20699427757706e-06,1.59428750179207e-06,3.43839116900835e-10,1.34451393074553e-09,0.0799998292928187,-1.85153682750322e-09,8.56321090425548e-10,3.69452298615291e-10,1.51215845400898e-11,2.6998368818365e-10,-4.90902457572772e-10,-4.53097775228103e-06,-4.12817349748628e-06,1.64527267677849e-06,4.5319650809894e-11,6.33174068731534e-11,-2.72174990878504e-06 +1.614,-4.66014339053564e-09,7.81677384625867e-09,2.32024625901328e-09,3.43909976885381e-10,1.34534199058844e-09,0.0799999962174688,-1.0397674030365e-07,-2.53158475953252e-07,-2.24474575212519e-08,1.52048512669367e-11,2.70110322997396e-10,-3.54503496002856e-07,-3.46931142668205e-10,3.45860493022876e-10,4.17417836406919e-11,3.46944695195361e-11,4.7271214720368e-11,-1.83013326715553e-10 +1.616,-1.88448293057678e-06,-1.20800691148087e-06,1.59419771196198e-06,3.43899936305903e-10,1.34559437203752e-09,0.0799998278748048,-1.85292455207389e-09,8.5770453239764e-10,3.69619265749854e-10,1.5260362418168e-11,2.70172773042532e-10,-4.91634510879635e-10,-4.14675131526435e-06,-4.24354475170306e-06,2.12114429753301e-06,2.32019264911898e-11,3.29597460435593e-11,-2.42416069856643e-06 +1.618,-4.66755508874393e-09,7.82020466438826e-09,2.32172473607628e-09,3.43971018335054e-10,1.34642268168061e-09,0.0799999962155023,-1.20563745564708e-07,-2.70132654960064e-07,-1.39628803311198e-08,1.52976589729015e-11,2.70242161981571e-10,-3.64200138797121e-07,-3.56133308607176e-10,3.41090003463939e-10,5.76795555762288e-11,2.1467203015213e-11,3.72965547335013e-11,-1.70870262383715e-10 +1.62,-1.88496518555904e-06,-1.20908744210071e-06,1.59414186044066e-06,3.43961126941794e-10,1.34667534068544e-09,0.0799998264180042,-1.85434908530832e-09,8.59068892411496e-10,3.69849983972159e-10,1.53462312302288e-11,2.70321959261466e-10,-4.92317991929169e-10,-3.3047380478858e-06,-3.52046126625427e-06,1.82403050996704e-06,1.97324795392362e-11,5.160802341031e-11,-1.78823275631679e-06 +1.622,-4.67497248508517e-09,7.82364093995791e-09,2.32320413601217e-09,3.44032403259975e-10,1.34750396951766e-09,0.079999996213533,-1.33782697756251e-07,-2.84214500025081e-07,-6.66675829125162e-09,1.53765888910584e-11,2.70448594075212e-10,-3.71353069822388e-07,-3.64481665335314e-10,3.24176449573166e-10,8.20741044571526e-11,9.32413868337533e-12,6.4618449480136e-11,-1.90819582357449e-10 +1.624,-1.88550031635006e-06,-1.21022430010082e-06,1.59411519340749e-06,3.44022633297358e-10,1.34775713506174e-09,0.0799998249325919,-1.85580701196966e-09,8.60365598209788e-10,3.70178280389987e-10,1.53835277849623e-11,2.70580433059386e-10,-4.93081270258599e-10,-2.26814850538478e-06,-2.37446477410752e-06,1.15932968520332e-06,3.90312782094781e-12,4.90059381963448e-11,-1.05903393693429e-06 +1.626,-4.68239571313304e-09,7.82708240235075e-09,2.32468484913373e-09,3.44093937371115e-10,1.3485862912499e-09,0.0799999962115607,-1.4285529177779e-07,-2.93712359121512e-07,-2.02943955043833e-09,1.53922014023422e-11,2.70644617827997e-10,-3.75589205570126e-07,-3.78982869392308e-10,3.07046055247895e-10,1.09612839638284e-10,8.02309607639273e-12,3.77302356024955e-11,-1.8474805019153e-10 +1.628,-1.88607173751717e-06,-1.2113991495373e-06,1.59410707564929e-06,3.44084202102968e-10,1.34883971353306e-09,0.0799998234302351,-1.85732294344723e-09,8.6159378243078e-10,3.70616731748541e-10,1.54156201692679e-11,2.70731354001796e-10,-4.93820262459365e-10,-1.28151677637744e-06,-1.18872620080701e-06,5.05654329172044e-07,-8.67361737988403e-13,5.8113236445223e-11,-4.21202135669762e-07 +1.63,-4.68982500490683e-09,7.83052877748047e-09,2.32616731606072e-09,3.44155599851792e-10,1.34966921666591e-09,0.0799999962095854,-1.479813588833e-07,-2.9846726392474e-07,-6.82223375014778e-12,1.53887319553902e-11,2.70877070773778e-10,-3.77274014112805e-07,-3.79497865424238e-10,3.19189119579732e-10,1.07444435293313e-10,-9.10729824887823e-12,7.76288755499621e-11,-1.6826817716975e-10 +1.632,-1.88666366295271e-06,-1.212593018593e-06,1.59410704836035e-06,3.44145757030789e-10,1.34992322181615e-09,0.0799998219211391,-1.85884093490893e-09,8.62870538909099e-10,3.71046509489714e-10,1.53791909762724e-11,2.71041869503996e-10,-4.94493335168044e-10,-4.6734194476556e-07,-2.0743649853383e-07,7.83293785736049e-08,-7.37257477290142e-12,5.63785129692462e-11,1.78954073781767e-08 +1.634,-4.69726036864647e-09,7.83398025963611e-09,2.32765150209868e-09,3.44217116615697e-10,1.35075338414392e-09,0.0799999962076074,-1.49850726662362e-07,-2.99297009918875e-07,3.06495280544272e-10,1.53592416562986e-11,2.71102584825655e-10,-3.77202432483292e-07,-3.84336117618955e-10,3.01841884819964e-10,1.07769695945059e-10,-7.80625564189563e-12,4.55364912443911e-11,-1.87350135405495e-10 +1.636,-1.88726306585936e-06,-1.21379020663268e-06,1.59410827434148e-06,3.44207193997415e-10,1.35100763215545e-09,0.0799998204123293,-1.8603782793794e-09,8.64077906448379e-10,3.71477588273494e-10,1.53479659537048e-11,2.71224015468974e-10,-4.95242735709666e-10,1.16538601143377e-07,4.42922391472033e-07,-3.92908362095711e-08,-6.72205346941012e-12,4.85722573273506e-11,2.26040540451944e-07 +1.638,-4.70470188176399e-09,7.8374365712619e-09,2.32913741245178e-09,3.44278508479512e-10,1.3518382802058e-09,0.0799999962056265,-1.49384572257789e-07,-2.97525320352987e-07,1.49331935705987e-10,1.5332353442421e-11,2.71296873854965e-10,-3.76298270321484e-07,-3.88469638401556e-10,3.04010289164935e-10,1.17852776149174e-10,-3.90312782094781e-12,5.42101086242752e-11,-1.89084858881472e-10 +1.64,-1.88786060414839e-06,-1.21498030791409e-06,1.59410887166922e-06,3.44268523411184e-10,1.35209281965087e-09,0.0799998189071362,-1.86193215793301e-09,8.65293947605038e-10,3.71948999378091e-10,1.5332353442421e-11,2.71440855903471e-10,-4.95999075145192e-10,4.79017216517552e-07,7.5063154476862e-07,1.1133422742754e-07,-3.90312782094781e-12,6.20163642661708e-11,2.29805757756551e-07 +1.642,-4.71214961039572e-09,7.84089774705232e-09,2.33062520844929e-09,3.44339837893282e-10,1.35292404362941e-09,0.0799999962036425,-1.47468503391718e-07,-2.94522794173912e-07,5.94668845416146e-10,1.53167409311372e-11,2.71544939312029e-10,-3.75379047290458e-07,-3.8535255715566e-10,3.17020715234761e-10,1.13515967459232e-10,-7.37257477290142e-12,6.37510877421476e-11,-1.81278603239576e-10 +1.644,-1.88845047816195e-06,-1.21615839909078e-06,1.5941112503446e-06,3.44329790374909e-10,1.35317899940812e-09,0.0799998174056201,-1.86347356816163e-09,8.66562030465978e-10,3.72403063247928e-10,1.53028631433294e-11,2.71695860254439e-10,-4.9672418955815e-10,6.59295616147956e-07,7.77348021022139e-07,4.19656605472884e-07,2.38524477946811e-12,6.4618449480136e-11,9.18579448616618e-08 +1.646,-4.71960350466837e-09,7.84436399517419e-09,2.33211482070228e-09,3.44401049345855e-10,1.35401082707043e-09,0.0799999962016556,-1.44831320927127e-07,-2.91413402089824e-07,2.27329526730768e-09,1.53262819102551e-11,2.7180341310995e-10,-3.75011615511011e-07,-3.86382549219521e-10,3.39788960856957e-10,1.03324467037868e-10,1.5178830414797e-12,5.03069808033274e-11,-2.08166817117217e-10 +1.648,-1.88902980344566e-06,-1.21732405269914e-06,1.59412034352567e-06,3.4439109550255e-10,1.35426621306056e-09,0.0799998159055736,-1.86501909835851e-09,8.67921186309405e-10,3.72816361116079e-10,1.53089346754953e-11,2.71897088177653e-10,-4.97556856826619e-10,7.11045100836721e-07,6.24205982041603e-07,7.50171626207051e-07,-6.28837260041592e-12,4.29344060304259e-11,-1.12373652050301e-07 +1.65,-4.7270635810618e-09,7.84783567991942e-09,2.33360608614674e-09,3.44462285084557e-10,1.35509841542314e-09,0.0799999961996653,-1.4198714052378e-07,-2.88916578161657e-07,5.27398177213589e-09,1.53011284198534e-11,2.71975150734071e-10,-3.75461110119213e-07,-3.8383467411418e-10,3.32199545649558e-10,1.009392222584e-10,6.07153216591882e-12,5.85469173142172e-11,-1.50053580671994e-10 +1.652,-1.88959775200776e-06,-1.21847971901179e-06,1.59414143945276e-06,3.44452300016229e-10,1.3553541136635e-09,0.0799998144037291,-1.86655443705497e-09,8.69249984492004e-10,3.73220118005113e-10,1.5333220804159e-11,2.72131275846909e-10,-4.98157071149307e-10,6.83805849400684e-07,3.96428332868903e-07,9.85408694746668e-07,1.10588621593521e-11,5.94142790522056e-11,-3.14021378344797e-07 +1.654,-4.73452979881002e-09,7.85131267985739e-09,2.33509896661876e-09,3.44523617967774e-10,1.35618694052653e-09,0.0799999961976727,-1.39251917126177e-07,-2.87330864830182e-07,9.21561655112257e-09,1.53453638684908e-11,2.7221280785028e-10,-3.76717195632592e-07,-3.80378779689383e-10,3.36753194773997e-10,1.00830802041152e-10,1.10588621593521e-11,4.55364912443911e-11,-1.92554305833425e-10 +1.656,-1.89015475967626e-06,-1.21962904247111e-06,1.59417830191896e-06,3.44513681471703e-10,1.3564429648949e-09,0.0799998128968604,-1.86807595217372e-09,8.705969972711e-10,3.73623441213277e-10,1.53774562527964e-11,2.72313421811887e-10,-4.98927288372641e-10,6.15835385616401e-07,1.80541562602721e-07,1.05076201645932e-06,1.79977560632594e-11,6.2450045135165e-11,-4.63501632907981e-07 +1.658,-4.74200210261871e-09,7.85479506784648e-09,2.33659346038362e-09,3.44585127792785e-10,1.35727619421377e-09,0.079999996195677,-1.36788575583711e-07,-2.86608698579771e-07,1.34186646169598e-08,1.54173548927439e-11,2.72462608030821e-10,-3.78571202164224e-07,-3.77464986350828e-10,3.6125616387217e-10,8.20741044571526e-11,1.21430643318376e-11,6.98226199080664e-11,-2.16840434497101e-10 +1.66,-1.8907019139786e-06,-1.22077547726543e-06,1.59423197657743e-06,3.44575350891274e-10,1.35753281532702e-09,0.0799998113825756,-1.86958581211913e-09,8.72042021926588e-10,3.73951737631106e-10,1.54260285101237e-11,2.72592712291519e-10,-4.99794650110629e-10,5.30936378846311e-07,3.13703056586956e-08,9.24649462899494e-07,8.23993651088983e-12,4.38017677684143e-11,-5.35217703490076e-07 +1.662,-4.74948044586719e-09,7.85828323593418e-09,2.33808926733414e-09,3.44646831906825e-10,1.35836656506294e-09,0.0799999961936778,-1.34664830068326e-07,-2.86483217357136e-07,1.71172624685578e-08,1.54503146387874e-11,2.72637815101895e-10,-3.80712072978184e-07,-3.77112620670723e-10,3.44993131296985e-10,8.9880360104231e-11,1.95156391049539e-11,3.94649590822593e-11,-1.64798730224724e-10 +1.664,-1.89124057329887e-06,-1.22192141013486e-06,1.59430044562731e-06,3.44637152149829e-10,1.35862336658743e-09,0.0799998098597273,-1.87109426260181e-09,8.73421994451776e-10,3.74311259071523e-10,1.55040910665436e-11,2.72750572127848e-10,-5.00453845031528e-10,4.40768393461607e-07,-2.9871070898568e-08,6.33923469273463e-07,1.97324795394529e-11,5.33427468900767e-11,-5.27097462904365e-07 +1.666,-4.7569648229176e-09,7.86177692391199e-09,2.33958651237043e-09,3.44708848271091e-10,1.35945756735145e-09,0.079999996191676,-1.3290175649448e-07,-2.8660270164073e-07,1.96529563456515e-08,1.55292445569452e-11,2.72851186089455e-10,-3.82820462829801e-07,-3.73778698938445e-10,3.66460334287997e-10,8.97719398766219e-11,1.62630325870686e-11,5.11743425375317e-11,-1.97758476254439e-10 +1.668,-1.89177218032485e-06,-1.22306782094142e-06,1.59437905745269e-06,3.44699269128057e-10,1.35971477133179e-09,0.0799998083284454,-1.87258937739756e-09,8.74887835788928e-10,3.74670346831029e-10,1.55691431968918e-11,2.72955269497998e-10,-5.01244878936546e-10,3.49037042759772e-07,-9.91611306556871e-09,2.39568347798207e-07,2.12503625805002e-11,5.33427468824998e-11,-4.54831484969741e-07 +1.67,-4.76445518042719e-09,7.86527647525515e-09,2.34108519375775e-09,3.44771124843879e-10,1.36054938842944e-09,0.079999996189671,-1.31505608323441e-07,-2.86642366092993e-07,2.06112297368444e-08,1.56142460072672e-11,2.73064557076985e-10,-3.8463978876968e-07,-3.73765146437221e-10,3.64075089520632e-10,7.88214979396961e-11,1.75640751942652e-11,6.11490025281824e-11,-2.09901540593193e-10 +1.672,-1.89229820275814e-06,-1.22421439040579e-06,1.59446150237164e-06,3.44761726112086e-10,1.3608070295601e-09,0.0799998067898863,-1.87408443798331e-09,8.76344136147011e-10,3.74985632822788e-10,1.56393994976689e-11,2.73199865508111e-10,-5.02084485098919e-10,2.55923740858331e-07,6.58785092449987e-08,-1.81480806944744e-07,1.36609473733173e-11,5.89805981832114e-11,-3.44436285049099e-07 +1.674,-4.77195151817912e-09,7.86878185179973e-09,2.34258513628904e-09,3.4483368244187e-10,1.36164218789148e-09,0.0799999961876627,-1.30481913360007e-07,-2.86378852056013e-07,1.98853065090654e-08,1.56688897967605e-11,2.73300479469718e-10,-3.86017533909877e-07,-3.75052636517048e-10,3.57569876485719e-10,9.26992857475106e-11,2.08166817117217e-11,5.3776427755281e-11,-1.77809156287623e-10 +1.676,-1.89282013041158e-06,-1.22535990581402e-06,1.59454104359767e-06,3.44824401671273e-10,1.36190023147797e-09,0.0799998052458161,-1.87558464852938e-09,8.77774415652954e-10,3.75356429965778e-10,1.57226662245158e-11,2.73414971219132e-10,-5.02795721724069e-10,1.61944920364435e-07,1.64978490937995e-07,-5.54924921118693e-07,1.9298798670242e-11,5.33427468862868e-11,-2.24710007545869e-07 +1.678,-4.77945385677324e-09,7.87229294946235e-09,2.34408656200891e-09,3.44896573106768e-10,1.36273584777635e-09,0.0799999961856515,-1.2983413367855e-07,-2.85718938092261e-07,1.76656068245906e-08,1.57460849914415e-11,2.73513850457263e-10,-3.8691637394006e-07,-3.72938442280701e-10,3.61689844741164e-10,8.97719398817997e-11,1.43114686768086e-11,5.20417042793042e-11,-2.01227923213309e-10 +1.68,-1.8933394669463e-06,-1.22650278156639e-06,1.59461170602497e-06,3.44887386011239e-10,1.3629942868798e-09,0.0799998036981506,-1.8770764022985e-09,8.79221175031918e-10,3.75715517725305e-10,1.5779912099223e-11,2.73623138036249e-10,-5.03600633416923e-10,6.97347724270408e-08,2.56410127505435e-07,-8.23111544201448e-07,1.82145964977565e-11,4.98732999343332e-11,-1.20818285931357e-07 +1.682,-4.78696216238243e-09,7.87580983416247e-09,2.34558942407981e-09,3.44959692755165e-10,1.3638303403285e-09,0.0799999961836371,-1.29555194588841e-07,-2.84693297582239e-07,1.43731606477848e-08,1.58189433774325e-11,2.73713343657e-10,-3.87399647083786e-07,-3.74171722251903e-10,3.45426812153881e-10,7.9580439460436e-11,1.7130394325271e-11,5.42101086242752e-11,-1.98625837999344e-10 +1.684,-1.89385768772465e-06,-1.22764155475671e-06,1.59466919866756e-06,3.44950661784749e-10,1.36408914025443e-09,0.079999802148552,-1.87857308918751e-09,8.80602882280534e-10,3.76033839483147e-10,1.58484336765241e-11,2.73839978470747e-10,-5.0439513676892e-10,-1.55161528157116e-08,3.17644348324375e-07,-9.53686131802132e-07,1.12757025938492e-11,4.68375338513738e-11,-5.01387126261444e-08 +1.686,-4.79447645473918e-09,7.87933224569159e-09,2.34709355943774e-09,3.45023086489871e-10,1.36492570024238e-09,0.0799999961816195,-1.29617259200104e-07,-2.83422720188941e-07,1.05584161205763e-08,1.58640461878079e-11,2.73900693792406e-10,-3.8760020193429e-07,-3.7711262064477e-10,3.41957365201928e-10,1.0321604682062e-10,1.10588621593521e-11,5.42101086242752e-11,-1.66533453693773e-10 +1.688,-1.89437615676145e-06,-1.22877524563747e-06,1.59471143233204e-06,3.450141179695e-10,1.3651847430296e-09,0.0799998005981512,-1.88008153967009e-09,8.81970711741341e-10,3.7644670367043e-10,1.58926691251615e-11,2.74056818905244e-10,-5.05061270583695e-10,-8.70871029370195e-08,3.37400029790102e-07,-9.41561173646575e-07,1.27935856353289e-11,7.67615138119736e-11,-2.07247413674949e-08 +1.69,-4.80199678089786e-09,7.88286012853856e-09,2.34859934625242e-09,3.45086657166371e-10,1.366021927518e-09,0.0799999961795993,-1.29965607611852e-07,-2.82073120069781e-07,6.79217142598997e-09,1.59152205303492e-11,2.74207739847654e-10,-3.8768310089976e-07,-3.76800912520181e-10,3.61906685175661e-10,8.68445940160888e-11,1.27935856353289e-11,4.81385764583564e-11,-2.13370987545147e-10 +1.692,-1.8948960191919e-06,-1.22990353811775e-06,1.59473860101775e-06,3.45077778851621e-10,1.36628157398899e-09,0.0799997990474188,-1.88158874332017e-09,8.83418338482044e-10,3.76794082046494e-10,1.59438434677028e-11,2.74249373211077e-10,-5.05914754533876e-10,-1.38264359271674e-07,3.15630768049635e-07,-8.05967597349021e-07,7.58941520739852e-12,3.94649590784723e-11,-3.16231416053192e-08 +1.694,-4.80952313587114e-09,7.88639380189249e-09,2.35010652258061e-09,3.45150432540242e-10,1.36711892501085e-09,0.0799999961775756,-1.30518665048939e-07,-2.80810596997582e-07,3.56830103659389e-09,1.59455781911788e-11,2.74365599683968e-10,-3.87809593466181e-07,-3.78535635996157e-10,3.35018471298021e-10,1.02673945734377e-10,7.80625564189563e-12,6.20163642661708e-11,-1.85615411929518e-10 +1.696,-1.8954180938521e-06,-1.23102678050574e-06,1.59475287422189e-06,3.45141561164386e-10,1.36737903638773e-09,0.0799997974961805,-1.88310288586416e-09,8.84758412367236e-10,3.77204777829432e-10,1.59750684902704e-11,2.74497438668142e-10,-5.06657216181594e-10,-1.64238495850219e-07,2.61174979213074e-07,-5.83191481218214e-07,1.43114686768086e-11,4.9439619065339e-11,-7.47969394754299e-08 +1.698,-4.8170555474146e-09,7.88993283554196e-09,2.35161534169193e-09,3.45214332814203e-10,1.36821691476552e-09,0.079999996175549,-1.3117561903234e-07,-2.7976589708073e-07,1.23553511172103e-09,1.6002824065886e-11,2.74563358160229e-10,-3.88108781224083e-07,-3.81462981861868e-10,3.4629417389187e-10,9.97465998686663e-11,4.55364912443911e-12,5.76795555762288e-11,-1.54390389361936e-10 +1.7,-1.89594279632823e-06,-1.23214584409406e-06,1.59475781636234e-06,3.4520557246065e-10,1.36847728982037e-09,0.0799997959437453,-1.8846287377916e-09,8.86143589062804e-10,3.77603764228906e-10,1.59932830867682e-11,2.74728156890447e-10,-5.07274777739041e-10,-1.63079876751119e-07,1.8823614542085e-07,-3.1820130298038e-07,5.42101086242752e-12,7.329206686002e-11,-1.37916587872322e-07 +1.702,-4.82459406236577e-09,7.89347740989821e-09,2.35312575674884e-09,3.4527830594655e-10,1.36931582739308e-09,0.0799999961735199,-1.31827938539344e-07,-2.79012952499047e-07,-3.72701002004927e-11,1.60245081093357e-11,2.74856526427669e-10,-3.88660447575572e-07,-3.79416550261302e-10,3.43475248243407e-10,9.05308814025395e-11,1.34441069388202e-11,4.64038529823796e-11,-2.4980018054066e-10 +1.704,-1.89647010808238e-06,-1.23326189590406e-06,1.59475766728194e-06,3.45269670493087e-10,1.36957671592608e-09,0.0799997943891035,-1.88614640399265e-09,8.87517490055777e-10,3.77965887754516e-10,1.60470595145234e-11,2.74913772302376e-10,-5.08273978461204e-10,-1.36578316473242e-07,1.1236584579466e-07,-5.57252811603236e-08,6.72205346941012e-12,4.55364912443911e-11,-2.07562265985839e-07 +1.706,-4.83213864798174e-09,7.89702747985843e-09,2.35463762029986e-09,3.45342494184608e-10,1.37041548248229e-09,0.0799999961714868,-1.32374251805237e-07,-2.78563489115868e-07,-2.60171224841787e-10,1.60513963232134e-11,2.75038672392647e-10,-3.89490696639516e-07,-3.82858892158943e-10,3.48245737802344e-10,1.05167610731081e-10,9.97465998686663e-12,6.63531729561128e-11,-1.61329283265843e-10 +1.708,-1.8969996050896e-06,-1.23437614986052e-06,1.59475662659704e-06,3.4533387607838e-10,1.37067687061565e-09,0.0799997928311408,-1.88767783956128e-09,8.88910473006987e-10,3.78386558197441e-10,1.60869581544709e-11,2.75179184994201e-10,-5.08919295594267e-10,-8.97812775730102e-08,4.74477228340486e-08,1.66615744638665e-07,8.45677694538693e-12,4.55364912443911e-11,-2.71262179385445e-07 +1.71,-4.83968935933998e-09,7.90058312175046e-09,2.35615116653265e-09,3.45406842017226e-10,1.37151619922227e-09,0.0799999961694511,-1.32733376915529e-07,-2.78373698224532e-07,4.06291753712873e-10,1.60852234309949e-11,2.75220818357624e-10,-3.90575745357058e-07,-3.81815347567926e-10,3.41306843898436e-10,9.37834879199961e-11,2.38524477946811e-12,6.15826833971766e-11,-1.76941794549634e-10 +1.712,-1.89753053859727e-06,-1.23548964465342e-06,1.59475825176406e-06,3.45398216972104e-10,1.37177775388908e-09,0.0799997912688378,-1.88920510095156e-09,8.9027570038258e-10,3.78761692149121e-10,1.60964991335888e-11,2.75425515727789e-10,-5.09627062772466e-10,-3.02244936977586e-08,3.21357523924703e-09,3.23057119250291e-07,8.23993651088983e-12,6.93889390390722e-11,-3.19740761645093e-07 +1.714,-4.84724617974379e-09,7.90414422455199e-09,2.35766621330125e-09,3.45471228013761e-10,1.37261790128518e-09,0.0799999961674126,-1.3285427489032e-07,-2.78360843923575e-07,1.69852023071404e-09,1.61181831770385e-11,2.7549837411378e-10,-3.91854708403638e-07,-3.8262849919729e-10,3.49546780409326e-10,9.80118763926895e-11,1.25767452008318e-11,3.55618312575245e-11,-2.01227923213309e-10 +1.716,-1.89806195569683e-06,-1.23660308802911e-06,1.59476504584498e-06,3.45462689704812e-10,1.37287974738554e-09,0.0799997897014189,-1.89073561494835e-09,8.91673887504218e-10,3.79153739654691e-10,1.61468061143921e-11,2.75567763052819e-10,-5.10431974465319e-10,3.33736131178513e-08,-1.56339784868065e-08,4.01601386694483e-07,9.97465998686663e-12,5.20417042793042e-11,-3.47789505528162e-07 +1.718,-4.85480912220358e-09,7.90771092010201e-09,2.35918282825986e-09,3.45535815238218e-10,1.37372017233739e-09,0.0799999961653709,-1.32720780437849e-07,-2.78423379837522e-07,3.30492577749197e-09,1.6158081816986e-11,2.75706540930898e-10,-3.93245866425751e-07,-3.83604281152527e-10,3.45426812153881e-10,1.0321604682062e-10,1.10588621593521e-11,6.37510877421476e-11,-1.99493199737333e-10 +1.72,-1.89859283881858e-06,-1.23771678154846e-06,1.59477826554809e-06,3.4552732203208e-10,1.37398257354926e-09,0.0799997881284355,-1.89227003207296e-09,8.93055594752833e-10,3.79566603841974e-10,1.61910415630295e-11,2.75822767403788e-10,-5.11229947264269e-10,9.2513060471859e-08,-9.48286588142721e-09,4.03576260951665e-07,1.40946282423115e-11,5.24753851482984e-11,-3.54040581573844e-07 +1.722,-4.86237820233187e-09,7.91128314248102e-09,2.36070109467523e-09,3.4560057940447e-10,1.374823463407e-09,0.079999996163326,-1.32350728195962e-07,-2.78461311301048e-07,4.91923082129863e-09,1.62144603299552e-11,2.75916442471491e-10,-3.94662028752046e-07,-3.83333230609406e-10,3.62123525610158e-10,9.95297594341692e-11,8.67361737988403e-12,5.5944832100252e-11,-1.96023752785379e-10 +1.724,-1.89912224173136e-06,-1.23883062679367e-06,1.59479794247137e-06,3.455921798734e-10,1.37508623931915e-09,0.0799997865497874,-1.89380336499539e-09,8.94504088855274e-10,3.79964722879711e-10,1.62257360325491e-11,2.76046546732189e-10,-5.1201404227541e-10,1.40201787896324e-07,1.7390819687102e-08,3.40994485252543e-07,8.89045781438113e-12,5.85469173142172e-11,-3.40854081071207e-07 +1.726,-4.86995341579186e-09,7.91486115883644e-09,2.36222095356675e-09,3.45665482348601e-10,1.37592764959393e-09,0.0799999961612779,-1.31789921044376e-07,-2.78391748022299e-07,6.28320876230881e-09,1.62500221612127e-11,2.76150630140748e-10,-3.96025445076331e-07,-3.82221923382608e-10,3.57569876485719e-10,8.65193333643432e-11,1.17093834628434e-11,5.46437894932694e-11,-1.97758476261356e-10 +1.728,-1.89964940141554e-06,-1.23994419378576e-06,1.59482307530642e-06,3.45657179962044e-10,1.37619084183971e-09,0.0799997849656856,-1.89533225268892e-09,8.95934368361217e-10,3.80310800213168e-10,1.62725735664004e-11,2.76265121890162e-10,-5.12805076180455e-10,1.71677667741565e-07,5.77996851769402e-08,2.33119404856319e-07,1.0842021724855e-11,5.42101086242752e-11,-3.12934574087098e-07 +1.73,-4.87753474480261e-09,7.91844489630988e-09,2.3637421967676e-09,3.45730572642866e-10,1.37703271008149e-09,0.0799999961592267,-1.3110321037341e-07,-2.78160549281592e-07,7.21568638173408e-09,1.62933902481121e-11,2.76367470575245e-10,-3.97277183372679e-07,-3.82032188002423e-10,3.49329939974829e-10,1.04300248993105e-10,1.69135538907739e-11,5.72458747072346e-11,-1.88217497143483e-10 +1.732,-1.90017381425703e-06,-1.24105683598288e-06,1.59485193805195e-06,3.45722353523037e-10,1.37729631172201e-09,0.0799997833765768,-1.89686038144093e-09,8.97331688121116e-10,3.8072800120914e-10,1.63402277819635e-11,2.76494105388991e-10,-5.13557946169029e-10,1.85030796565587e-07,1.03850738772393e-07,1.02264984674916e-07,1.58293517182884e-11,5.20417042793042e-11,-2.76532269305463e-07 +1.734,-4.88512218632838e-09,7.92203422306237e-09,2.36526510877244e-09,3.45795933553994e-10,1.37813868650305e-09,0.0799999961571724,-1.30363087187148e-07,-2.77745146326502e-07,7.62474632043374e-09,1.63567076549853e-11,2.76575637392362e-10,-3.98383312449901e-07,-3.82858892158943e-10,3.70363462121048e-10,9.3566647485499e-11,1.19262238973397e-11,5.160802341031e-11,-1.96023752785379e-10 +1.736,-1.90069526660578e-06,-1.24216781656819e-06,1.59488243703723e-06,3.45787780353657e-10,1.37840261427158e-09,0.0799997817830436,-1.89839181700957e-09,8.988131419696e-10,3.81102267799082e-10,1.63879326775529e-11,2.76700537482632e-10,-5.14342041180171e-10,1.8099246873373e-07,1.47876719550077e-07,-2.98403879731013e-08,1.01915004213629e-11,7.329206686002e-11,-2.37901712218935e-07 +1.738,-4.89271575359641e-09,7.92562947563025e-09,2.36678951784364e-09,3.45861485284704e-10,1.37924548865298e-09,0.0799999961551151,-1.29639117312213e-07,-2.77153639448302e-07,7.50538476854134e-09,1.63974736566708e-11,2.76868805659802e-10,-3.99334919298777e-07,-3.81774689986458e-10,3.45860493022876e-10,8.98803600990482e-11,7.80625564189563e-12,5.98479599211998e-11,-1.91686944095437e-10 +1.74,-1.90121382307503e-06,-1.24327643112598e-06,1.59491245857631e-06,3.45853370248284e-10,1.37951008949422e-09,0.0799997801857039,-1.89991891576951e-09,9.00196583941692e-10,3.81461789239479e-10,1.64191577001205e-11,2.76939929322317e-10,-5.15108788956553e-10,1.62521512632289e-07,1.83854667601402e-07,-1.45030688847303e-07,1.38777878078144e-11,2.60208521396521e-11,-2.02582742248047e-07 +1.742,-4.90031542925949e-09,7.92923026196601e-09,2.3683153650006e-09,3.45927161915505e-10,1.38035324837027e-09,0.0799999961530546,-1.28989031261684e-07,-2.76418220777896e-07,6.92526201315213e-09,1.6452984807902e-11,2.76972889068361e-10,-4.00145250267769e-07,-3.82465868871417e-10,3.62774046913649e-10,1.06902334207071e-10,1.47451495458028e-11,5.85469173142172e-11,-2.16840434497101e-10 +1.744,-1.90172977920008e-06,-1.2443821040091e-06,1.59494015962436e-06,3.45919182187515e-10,1.38061798105049e-09,0.0799997785851229,-1.901448779245e-09,9.01647680129346e-10,3.81889398576307e-10,1.64781382983037e-11,2.77174116991574e-10,-5.15976150694541e-10,1.34125431030738e-07,2.07935882054477e-07,-2.30659675387601e-07,1.27935856353289e-11,7.84962372879505e-11,-1.74750838799475e-07 +1.746,-4.90792122437647e-09,7.93283685268653e-09,2.3698429225949e-09,3.45993074468698e-10,1.38146194483824e-09,0.0799999961509907,-1.28452529537561e-07,-2.75586477249678e-07,6.00262331160172e-09,1.65041591504433e-11,2.77286874017512e-10,-4.00844253622967e-07,2.80567127690367e-08,-1.33946673197549e-08,-6.6965747183567e-09,1.06078340555982e-09,-4.0900442754843e-09,8.51402282009416e-09 +1.748,-1.90224358931823e-06,-1.24548444991809e-06,1.5949641701176e-06,3.45985198824117e-10,1.38172712854656e-09,0.0799997769817459,-1.78922192816885e-09,8.48069010850327e-10,3.5510309970288e-10,2.07212719205429e-11,2.60813939889637e-10,-4.81920059414164e-10,-0.0268186678947085,-0.0151011253872717,0.0231716892468408,1.32250980999782e-09,-9.33151125814822e-09,-0.00710460480723983 +1.75,-4.91507811208915e-09,7.93622912872993e-09,2.37126333499371e-09,3.4607595955638e-10,1.38250520059779e-09,0.0799999961490631,-0.000107403124108372,-6.06800880263366e-05,9.26927596106747e-05,2.17941983904346e-11,2.3996082898492e-10,-2.88192634825823e-05,-2.37854441004215e-08,1.23924308315093e-08,3.00660104451955e-09,2.95553512219548e-10,3.26561694352632e-09,-8.11590378235749e-09 +1.752,-2.33185608575171e-06,-1.48820480202344e-06,1.9657352085603e-06,3.46072375617679e-10,1.3826869718625e-09,0.079999661704692,-1.88436370457054e-09,8.97638734176364e-10,3.67129503880958e-10,2.19034859694211e-11,2.73876407663742e-10,-5.14383674543594e-10,0.0606954958691984,0.0357477472341487,-0.0534713939728684,-9.19403442267707e-11,1.51233192635658e-08,0.0117307082190404 +1.754,-4.92261556690743e-09,7.93981968366664e-09,2.37273185300924e-09,3.46163573500258e-10,1.38360070622845e-09,0.0799999961470055,0.000135378859368422,8.23109009102582e-05,-0.000121192816280799,2.14264370135275e-11,3.00454106039183e-10,1.81035693935794e-05,-1.29214672815736e-08,4.88216238270222e-09,4.69871537511766e-09,-1.64386733392252e-09,1.74643285943965e-09,-3.35842464949107e-09 +1.756,-1.79034064827803e-06,-1.15896119838241e-06,1.48096394343711e-06,3.46158081365733e-10,1.38388878828666e-09,0.0799997341189695,-1.93604957369683e-09,9.17167383707173e-10,3.85924365381429e-10,1.53280166337311e-11,2.80862139101501e-10,-5.27817373141559e-10,-0.0500823437615577,-0.0324078111952567,0.0438314707392915,-2.35792288472147e-09,-6.955807457798e-09,-0.00506421540032858 +1.758,-4.93035976520222e-09,7.94348835320147e-09,2.37427555047076e-09,3.46224885566793e-10,1.38472415478486e-09,0.0799999961448943,-6.49505156778088e-05,-4.73203438707686e-05,5.41330666763671e-05,1.19947454746416e-11,2.72630876207991e-10,-2.15329220773497e-06,2.62790277819752e-08,-1.29065595017019e-08,-4.58975305678287e-09,2.81242043542739e-10,-3.63598040564738e-09,8.34662200466237e-09 +1.76,-2.05014271098926e-06,-1.34824257386548e-06,1.69749621014258e-06,3.46206060347631e-10,1.38497931179149e-09,0.0799997255058007,-1.83093346256893e-09,8.65541145700365e-10,3.67565353154297e-10,1.6452984807902e-11,2.66318217478911e-10,-4.94430885122909e-10,-0.00063495003143634,0.00275633065395346,0.00193491153503179,1.51137782844479e-09,-5.28526875043232e-09,-0.00647205807870198 +1.762,-4.93768349905249e-09,7.94695051778427e-09,2.37574581188338e-09,3.46290697506024e-10,1.38578942765477e-09,0.0799999961429165,-6.74903158035542e-05,-3.62950212549548e-05,6.18727128164943e-05,1.80402567884208e-11,2.51489801206261e-10,-2.80415245225429e-05,6.48268873477963e-09,-1.66316613259276e-09,-3.24740234702858e-09,1.30776466045201e-09,-8.89479462307107e-10,1.14578485588268e-09 +1.764,-2.32010397420348e-06,-1.4934226588853e-06,1.94498706140855e-06,3.46278221374785e-10,1.38598527099631e-09,0.0799996133397026,-1.80500270762981e-09,8.58888481169994e-10,3.54575743766183e-10,2.16840434497101e-11,2.62760299629683e-10,-4.89847745699378e-10,0.0215533579648425,0.01313913070922,-0.0200898588070168,1.12540185503995e-09,3.72661970726716e-09,0.00468682636190625 +1.766,-4.94490350988301e-09,7.95038607170895e-09,2.37716411485844e-09,3.46377433679823e-10,1.38684046885329e-09,0.0799999961409571,1.8723116055816e-05,1.62615015819253e-05,-1.84867224115731e-05,2.25418642085806e-11,2.6639628003533e-10,-9.29421907491789e-06,-3.36215837072259e-08,1.63924863266773e-08,7.28811542366479e-09,-1.06555389511875e-09,4.76051489894935e-09,-1.05740069478166e-08 +1.768,-2.24521150998021e-06,-1.4283766525576e-06,1.87104017176226e-06,3.46368388831619e-10,1.38705085611646e-09,0.0799995761628263,-1.93948904245872e-09,9.24458426476703e-10,3.83728205460842e-10,1.74218278692351e-11,2.8180235922548e-10,-5.32143773490645e-10,0.0136871387110444,0.00546883861568709,-0.0120037849823907,-2.05217787208056e-09,8.31756538643979e-09,0.00774289846995622 +1.77,-4.95266146605285e-09,7.95408390541485e-09,2.37869902768029e-09,3.464471209913e-10,1.38796767829019e-09,0.0799999961388286,7.34716708999938e-05,3.81368560446737e-05,-6.6501862341136e-05,1.43331527202584e-11,2.99666541581089e-10,2.1677374804907e-05,-1.25496401465197e-08,4.87717505270879e-09,6.1025403480519e-09,-2.06930826640583e-09,1.94766078265296e-09,-2.97158131434827e-09 +1.772,-1.95132482638024e-06,-1.27582922837891e-06,1.60503272239772e-06,3.464257214425e-10,1.38824952228278e-09,0.0799996628723255,-1.9896876030448e-09,9.43967126687539e-10,4.0813836685305e-10,9.14459480361173e-12,2.89593002356092e-10,-5.44030098748038e-10,-0.0251167066426822,-0.0154157825510946,0.02309819972584,-1.85333519364672e-09,-3.32893435039949e-09,-0.00481315368464074 +1.774,-4.96062021646503e-09,7.95785977392161e-09,2.3803315811477e-09,3.46483699370514e-10,1.38912605029962e-09,0.0799999961366524,-2.69951556707351e-05,-2.35262741597047e-05,2.58909365622242e-05,6.91981194567148e-12,2.86350804179491e-10,2.42476006634407e-06,9.62215875553728e-10,1.21213802883879e-10,1.91860416443035e-09,-4.97431956736349e-10,2.34187669256869e-10,5.36896915814821e-10 +1.776,-2.05930544906318e-06,-1.36993432501772e-06,1.70859646864661e-06,3.46453400690283e-10,1.3893949254995e-09,0.0799996725713658,-1.98583873954258e-09,9.44451981899074e-10,4.15812783510771e-10,7.15486697666633e-12,2.90529753033119e-10,-5.41882511084779e-10,0.0130823064683913,0.00986231007038712,-0.0104646979719918,3.67978217341579e-10,1.77158634984131e-09,0.00119396822810536 +1.778,-4.9685635714232e-09,7.9616375818492e-09,2.38199483228174e-09,3.46512318838421e-10,1.39028816931175e-09,0.0799999961344849,2.53340702028302e-05,1.59229661218438e-05,-1.59678553257429e-05,8.3917248150378e-12,2.93437149578857e-10,7.20063297876549e-06,4.84796935668746e-09,-9.30462304427059e-10,-5.14670771278869e-10,5.24103330179492e-10,-3.71230823859036e-10,1.26721549920106e-09 +1.78,-1.95796916825186e-06,-1.30624246053035e-06,1.64472504734364e-06,3.46486967589543e-10,1.39056867409781e-09,0.0799997013738977,-1.96644686211583e-09,9.40730132681366e-10,4.13754100425656e-10,9.2512802973843e-12,2.89044829737683e-10,-5.36813649087974e-10,-0.00677330433579457,-0.00410449444766293,0.00525596992166122,6.16694195709754e-10,-1.54607229796433e-09,-0.000344365677466817 +1.782,-4.97642935887166e-09,7.96540050237993e-09,2.38364984868344e-09,3.46549323959611e-10,1.3914443486307e-09,0.0799999961323377,-1.75914714034813e-06,-4.95011668807943e-07,5.05602436090199e-06,1.08585015978768e-11,2.87252860386999e-10,5.82317026889822e-06,4.96053664724577e-09,-1.22211268882566e-09,-1.72149620947248e-09,8.53917631049582e-10,-6.37510877421476e-10,1.21604115665974e-09 +1.784,-1.96500575681325e-06,-1.30822250720558e-06,1.66494914478725e-06,3.46530401595935e-10,1.39171768553936e-09,0.0799997246665788,-1.94660471552685e-09,9.35841681926063e-10,4.06868115587766e-10,1.26669508215826e-11,2.86494786227997e-10,-5.31949484461335e-10,0.00286812933129778,0.00201327752060755,-0.00308748737676538,9.30679144861555e-10,-1.45283091113057e-10,-0.000476232201243597 +1.786,-4.98421577773377e-09,7.96914386910763e-09,2.3852773211458e-09,3.46599991762897e-10,1.39259032777561e-09,0.0799999961302099,9.71337018484301e-06,7.55809841362225e-06,-7.29392514615956e-06,1.4581218177323e-11,2.86671728022547e-10,3.91824146392383e-06,3.45852361506582e-09,-1.09526103464486e-09,-2.08123449030317e-09,8.25294693695965e-10,-6.14959472233778e-10,7.93635990259389e-10 +1.788,-1.92615227607388e-06,-1.27799011355109e-06,1.63577344420261e-06,3.46588726468644e-10,1.39286437245145e-09,0.0799997403395447,-1.93277062106659e-09,9.31460637787484e-10,3.98543177626553e-10,1.59681295963665e-11,2.84034948339062e-10,-5.28774940500298e-10,-0.00208122912979079,-0.00142420694421857,0.00123222602217351,6.89986262569774e-10,-8.46978737145675e-10,-0.000407809925585811 +1.79,-4.99194686021803e-09,7.97286971165878e-09,2.3868714938563e-09,3.46663864281282e-10,1.39372646756897e-09,0.0799999961280948,1.38845366567984e-06,1.86127063674796e-06,-2.3650210574655e-06,1.73411632276021e-11,2.83283813073964e-10,2.28700176158058e-06,1.82712460612688e-09,-8.43292449759225e-10,-1.92391675507553e-09,6.17561557447742e-10,-5.19116000186059e-10,3.26128013483639e-10 +1.792,-1.92059846141116e-06,-1.2705450310041e-06,1.62631335997275e-06,3.46658091121554e-10,1.39399750770375e-09,0.0799997494875517,-1.92546212264208e-09,9.28087467988447e-10,3.90847510606251e-10,1.84383758261575e-11,2.81958484338318e-10,-5.27470428446363e-10,0.000457846169871623,0.000259005863414638,-0.000651702027846395,5.28873819738429e-10,-3.72965547335013e-10,-0.000269870694367957 +1.794,-4.9996487087086e-09,7.97658206153073e-09,2.38843488389873e-09,3.46737617784587e-10,1.39485430150632e-09,0.0799999961259849,3.21983834516634e-06,2.89729409040651e-06,-4.97182916885108e-06,1.94566585065559e-11,2.81791950884624e-10,1.20751898410876e-06,6.77734778020688e-10,-5.97829077908507e-10,-1.49901792367846e-09,4.06575814682063e-10,-3.76868675155961e-10,1.4658413372004e-10 +1.796,-1.90771910803049e-06,-1.25895585464247e-06,1.60642604329735e-06,3.46735917755581e-10,1.39512467550729e-09,0.0799997543176276,-1.92275118353e-09,9.25696151676813e-10,3.84851438911537e-10,2.00646790848857e-11,2.80451009637694e-10,-5.26884091911483e-10,0.0594005609889534,0.0380326337179412,-0.0485885623391617,2.6920739942815e-09,4.65686517125973e-09,0.0148109549295144 +1.798,-5.00733971344272e-09,7.98028484613744e-09,2.38997428965437e-09,3.46817876500927e-10,1.39597610554487e-09,0.0799999961238773,0.00024082208230098,0.000155027828962172,-0.000199326078525498,3.02249544836819e-11,3.00419411569663e-10,6.04513387021665e-05,3.59946312122536e-08,-1.90923665766007e-08,-1.14706421444621e-08,2.09467859724199e-09,-5.74366942895919e-09,-0.0243533540503909 +1.8,-9.44430778826574e-07,-6.38844538793787e-07,8.09121729195353e-07,3.46856817573515e-10,1.39632635315357e-09,0.0799999961229824,-1.77877265868098e-09,8.4932668537041e-10,3.38968870333689e-10,2.84433934738537e-11,2.57476331921857e-10,-9.74139430856557e-05,-0.164190266987583,-0.103947627644752,0.134043277659392,-3.13204323587612e-09,-2.1763840729605e-08,-0.0151129632029387 +1.802,-5.01445480407745e-09,7.98368215287892e-09,2.39133016513571e-09,3.46931650074822e-10,1.39700601087256e-09,0.079999606468105,-0.000415938985649355,-0.000260762681616837,0.000336847032112071,1.76967815401774e-11,2.13364048651243e-10,-5.1410958823439e-10,-4.03521481636901e-08,2.09136093859418e-08,9.0755311252244e-09,-1.38734509991245e-09,5.77012396196784e-09,0.0313666155713973 +1.804,-2.60818672142399e-06,-1.68189526526114e-06,2.15650985764364e-06,3.46927604699676e-10,1.39717980934817e-09,0.079999996120926,-1.94018125133574e-09,9.32981122914177e-10,3.75270994834586e-10,2.28940130742039e-11,2.80556827769729e-10,2.80525191999337e-05,0.162602274071465,0.101940964870005,-0.133436711482549,1.72431513512094e-09,2.61366449316735e-08,-7.38471783723324e-09 +1.806,-5.02221552908279e-09,7.98741407737058e-09,2.39283124911505e-09,3.47023226127119e-10,1.39812823818364e-09,0.0799997186781818,0.000234470110636506,0.000147001177863183,-0.000196899813818124,2.45940420806612e-11,3.17910628377937e-10,-5.43648459583323e-10,-5.29516209525626e-09,7.83661330272522e-10,3.04986071120171e-09,-1.421172207694e-09,7.23813370351322e-10,-0.00780877057980632 +1.808,-1.67030627887797e-06,-1.0938905538084e-06,1.36891060237114e-06,3.47025980867999e-10,1.39845145186168e-09,0.0799999961187514,-1.96136189971677e-09,9.36115768235267e-10,3.87470437679393e-10,1.72093242434279e-11,2.83452081251134e-10,-3.18256311929166e-06,-0.0862502378128103,-0.0557950685725008,0.072330888864643,-2.78618274285324e-09,-1.25394486460983e-08,1.64798730217797e-09 +1.81,-5.03006097668166e-09,7.99115854044352e-09,2.39438113086576e-09,3.47092063424093e-10,1.39926204650864e-09,0.0799997059479293,-0.000110530840614735,-7.61790964268205e-05,9.24237416404481e-05,1.34493111092482e-11,2.67752833793544e-10,-5.37056510374611e-10,-2.23548935439355e-10,3.61906685175661e-10,1.78080206830744e-09,-5.59448321002519e-10,3.16587034365767e-10,0.00147676010135711 +1.812,-2.11242964133691e-06,-1.39860693951568e-06,1.73860556893293e-06,3.47079778112436e-10,1.39952246319686e-09,0.0799999961166032,-1.96225609545852e-09,9.3756339497597e-10,3.94593645952623e-10,1.49715309594178e-11,2.84718429388597e-10,2.72447728613678e-06,0.0428070163933111,0.0289837674329745,-0.0348357732821722,6.13441589192297e-10,6.46878384191751e-09,-4.1806835771041e-10 +1.814,-5.03791000106349e-09,7.99490879402343e-09,2.39595950544957e-09,3.4715194954793e-10,1.4004009202262e-09,0.0799997168458385,6.06972249585094e-05,3.97559733050778e-05,-4.69193514882407e-05,1.59030774660174e-11,2.93627969161214e-10,-5.38728783805453e-10,1.99504041759058e-09,-1.97758476261356e-10,6.7610847476196e-10,-6.26668855696621e-11,5.3776427755281e-11,-6.65759600226855e-05 +1.816,-1.86964074150287e-06,-1.23958304629537e-06,1.55092816297997e-06,3.471433904223e-10,1.4006969750735e-09,0.0799999961144483,-1.95427593378816e-09,9.36772361070925e-10,3.97298079851671e-10,1.47208634171392e-11,2.84933535099618e-10,2.45817344604604e-06,-0.0217233766417141,-0.0143544648875671,0.017872497736545,-3.88794899053302e-10,-3.27212215656125e-09,1.01654795692241e-09 +1.818,-5.04572710479864e-09,7.99865588346771e-09,2.39754869776898e-09,3.47210833001599e-10,1.4015406543666e-09,0.0799997266785323,-2.61962816083469e-05,-1.76618862451905e-05,2.45706394579395e-05,1.43478978698042e-11,2.80539480534969e-10,-5.34662591977763e-10,2.09612871764769e-09,-2.78423117894277e-10,8.6085652495349e-11,1.40729441988618e-10,-1.04517089427603e-10,-0.000187819223715357 +1.82,-1.97442586793626e-06,-1.31023059127613e-06,1.64921072081173e-06,3.47200782013779e-10,1.40181913299564e-09,0.0799999961123096,-1.94589141891757e-09,9.35658668599348e-10,3.97642422461652e-10,1.52837811850936e-11,2.84515466741908e-10,1.70689655118461e-06,0.0107054474911348,0.00718485407042063,-0.00926118379391843,4.03323208164607e-10,1.52525561625261e-09,1.43982048506075e-10 +1.822,-5.05351067047431e-09,8.00239851814211e-09,2.39913926745883e-09,3.47271968126339e-10,1.40267871623356e-09,0.0799997335061185,1.66255083561923e-05,1.10775300364921e-05,-1.24740957177342e-05,1.59611907024626e-11,2.86640502999979e-10,-5.34086663783739e-10,1.34717540942186e-09,-1.55691431968918e-10,-2.48499137933677e-10,1.72171304990698e-10,-1.1666015375944e-10,-0.000201930316218179 +1.824,-1.90792383451149e-06,-1.26592047113017e-06,1.59931433794079e-06,3.47264626776589e-10,1.40296569500764e-09,0.0799999961101733,-1.94050271727988e-09,9.35035902871472e-10,3.96648425909918e-10,1.59724664050564e-11,2.8404882612687e-10,8.99175286311892e-07,-0.0056047535568947,-0.00375591903737336,0.00438215234748167,6.15826833971766e-11,-9.3935276224144e-10,2.50667542278648e-10 +1.826,-5.06127268134343e-09,8.00613866175359e-09,2.40072586116247e-09,3.47335857991959e-10,1.40381491153807e-09,0.0799997371028196,-5.79350587138647e-06,-3.94614611300137e-06,5.05451367219245e-06,1.62075214360513e-11,2.82883091951014e-10,-5.33083993614624e-10,5.69165482973421e-10,1.0842021724855e-12,-4.02672686861116e-10,1.76941794549633e-10,-1.30971622436249e-10,-0.000125888769027249 +1.828,-1.93109785799703e-06,-1.28170505558217e-06,1.61953239262956e-06,3.47329456862333e-10,1.40409722737544e-09,0.0799999961080409,-1.93822605534799e-09,9.35040239680162e-10,3.95037735162473e-10,1.6680233583255e-11,2.83524939637125e-10,3.95620210202896e-07,0.00261868914584479,0.00176216596935001,-0.00239183003459576,2.28983498828938e-10,3.06178693509906e-10,-1.09287578986539e-10 +1.83,-5.06902558556482e-09,8.00987882271231e-09,2.40230601210312e-09,3.47402578926292e-10,1.40494901129662e-09,0.0799997386853004,4.6812507119927e-06,3.10251776439868e-06,-4.51280646619062e-06,1.7123455431367e-11,2.84107806725053e-10,-5.3352114393057e-10,7.46337670484708e-11,1.196959198424e-10,-4.49401800495241e-10,1.6826817716975e-10,-7.63278329429794e-11,-6.45898785844866e-05 +1.832,-1.91237285514906e-06,-1.26929498452458e-06,1.6014811667648e-06,3.47397950684059e-10,1.40523365860235e-09,0.0799999961059069,-1.9379275202798e-09,9.35519023359531e-10,3.93240127960492e-10,1.7353306291934e-11,2.83219628305353e-10,1.37260695864949e-07,-0.00147684889762345,-0.000974335256139628,0.00116798141026452,1.24032728532342e-10,-3.20056481317721e-10,-1.11889664200504e-10 +1.834,-5.07677729564594e-09,8.01362089880575e-09,2.40387897261496e-09,3.4747199215146e-10,1.40608188980984e-09,0.0799997392343432,-1.22614487850113e-06,-7.94823260159837e-07,1.59119174867467e-07,1.76195863454964e-11,2.82827580799782e-10,-5.33968702587372e-10,-1.47952938962803e-10,1.7802599672212e-10,-4.20778863141624e-10,1.42030484595601e-10,-1.14925430283463e-10,-3.58989027740563e-05 +1.836,-1.91727743466307e-06,-1.27247427756522e-06,1.60211764346427e-06,3.47468429029441e-10,1.40636496892554e-09,0.079999996103771,-1.93851933203565e-09,9.3623112734642e-10,3.91557012507926e-10,1.79214282303164e-11,2.82759926584219e-10,-6.33491523127638e-09,0.000617099614572298,0.00041932140962611,-0.000504430128743515,1.54173548927439e-10,4.81385764583564e-11,-1.93421667571414e-10 +1.838,-5.08453137297409e-09,8.01736582331514e-09,2.40544520066499e-09,3.47543677864381e-10,1.40721292951618e-09,0.0799997392090036,1.24225357978807e-06,8.82462378344605e-07,-1.8586013401066e-06,1.82362805412062e-11,2.83020135105616e-10,-5.34742389257658e-10,-2.26422071196441e-10,2.4980018054066e-10,-3.25152231528402e-10,1.2490009027033e-10,-3.12250225675825e-11,-3.08842847129842e-05 +1.84,-1.91230842034392e-06,-1.26894442805184e-06,1.59468323810384e-06,3.47541374151605e-10,1.40749704946597e-09,0.079999996101632,-1.93942502032043e-09,9.37230328068583e-10,3.90256403581812e-10,1.84210285913977e-11,2.82635026493949e-10,-1.29872054083213e-07,0.0598663291480479,0.0386792326394821,-0.0486554765734064,2.45897052719712e-09,4.65252836256979e-09,7.38471783723324e-09 +1.842,-5.09228907305537e-09,8.02111474462741e-09,2.40700622627932e-09,3.47617361978747e-10,1.40834346962215e-09,0.0799997386895153,0.00024070757017198,0.000155599392936273,-0.000196480507633732,2.80721626499947e-11,3.01630248555895e-10,-5.05203517908725e-10,3.48991262321199e-08,-1.70558012158039e-08,-1.03294109377039e-08,2.08145133073767e-09,-5.27225832436249e-09,-0.00779226419153621 +1.844,-9.49478139655995e-07,-6.46546856306746e-07,8.08761207568912e-07,3.47653662802205e-10,1.40870357046019e-09,0.0799999960996112,-1.79982851539195e-09,8.69007123205367e-10,3.48938759830996e-10,2.67468339143484e-11,2.61545993196499e-10,-3.12989288202281e-05,-0.164611564976483,-0.105040657788361,0.133732831773272,-3.12076753328227e-09,-2.13084758171611e-08,-4.33594132820403e-09 +1.846,-5.09948838711693e-09,8.02459077312023e-09,2.40840198131864e-09,3.47724349314404e-10,1.40938965359494e-09,0.0799996134938001,-0.000417738689733953,-0.00026456323821717,0.000338450819459355,1.55890925168656e-11,2.16396345287251e-10,-5.22547283221541e-10,-3.94495498550959e-08,1.98597648742859e-08,9.07076063566545e-09,-1.48448961456715e-09,5.58711063525228e-09,0.0127965259473853 +1.848,-2.62043289859181e-06,-1.70479980917543e-06,2.16256448540633e-06,3.47716019172273e-10,1.40956915584134e-09,0.079999996097521,-1.95762671481234e-09,9.48446182702511e-10,3.85221802373658e-10,2.08088754560798e-11,2.83894435737508e-10,1.9887174969313e-05,0.163345127610415,0.103358554081386,-0.133790666049702,1.75597383855752e-09,2.62871321932145e-08,-7.58247631349459e-09 +1.85,-5.10731889397618e-09,8.02838455785104e-09,2.40994286852814e-09,3.47807584816229e-10,1.41052523133789e-09,0.0799996930424999,0.000235641820707706,0.000148870978108374,-0.000196711844739454,2.26129878710956e-11,3.21544874060109e-10,-5.5287718847552e-10,-5.52531111142062e-09,1.45976980503448e-09,3.2686527096093e-09,-1.35612007734487e-09,8.15753714578093e-10,-0.00558041613266113 +1.852,-1.67786561576099e-06,-1.10931589674193e-06,1.37571710644852e-06,3.47806471123757e-10,1.41085533533758e-09,0.0799999960953095,-1.97972795925802e-09,9.54285261922649e-10,3.98296413212095e-10,1.53843951467003e-11,2.87157450595821e-10,-2.43448956133152e-06,-0.0866352671557593,-0.0565130396201328,0.0724917233016659,-2.68925506863304e-09,-1.25303413478494e-08,1.64278313175003e-09 +1.854,-5.11523780581322e-09,8.03220169889873e-09,2.41153605418098e-09,3.47869122396816e-10,1.41167386114027e-09,0.0799996833045417,-0.000110899247915332,-7.71811803721572e-05,9.32550484672098e-05,1.18559675965635e-11,2.71423508668711e-10,-5.46306055948519e-10,-1.6464965241908e-10,5.85035492273178e-10,1.61914752438985e-09,-4.17417836406919e-10,3.1788807697275e-10,0.00133714223807951 +1.856,-2.12146260742231e-06,-1.41804061823056e-06,1.74873730031735e-06,3.47853894994143e-10,1.41194102937225e-09,0.0799999960931243,-1.9803865578677e-09,9.56625403891741e-10,4.04773003309655e-10,1.37147238010726e-11,2.88429002903712e-10,2.91407939098653e-06,0.0431124628004106,0.0295039919639625,-0.0352323386667609,7.89949702872937e-10,6.47051856539348e-09,-4.64905891561784e-10 +1.858,-5.12315935204469e-09,8.0360282005143e-09,2.41315514619422e-09,3.4792398129202e-10,1.41282757715189e-09,0.0799996949608593,6.15506032863107e-05,4.08347874836928e-05,-4.76743061998338e-05,1.50157664080552e-11,2.97305582930285e-10,-5.48165679514767e-10,2.10762126067604e-09,-1.01264482910146e-10,3.58654078658205e-10,1.12540185503995e-10,-3.55618312575245e-11,-2.94349683516159e-05 +1.86,-1.87526019427707e-06,-1.25470146829579e-06,1.55804007551802e-06,3.47913958059776e-10,1.41313025170398e-09,0.0799999960909316,-1.97195607282499e-09,9.56220345960101e-10,4.06207619624288e-10,1.41648845430886e-11,2.88286755578681e-10,2.79633951758007e-06,-0.0219074472900589,-0.0145879037417515,0.0179801778931116,-2.17057274931598e-10,-3.37186875642992e-09,1.02175212735034e-09 +1.862,-5.13104717633599e-09,8.03985308189814e-09,2.41477997667272e-09,3.47980640830192e-10,1.4139807241742e-09,0.0799997061462173,-2.60791858739252e-05,-1.75168274833132e-05,2.42464053726125e-05,1.41475373083288e-11,2.83818107904565e-10,-5.44078671005365e-10,2.23422896936803e-09,-3.01841884819964e-10,-3.39138439553465e-10,3.05961853075409e-10,-1.74773390204663e-10,-0.000197054862011159 +1.864,-1.97957693777277e-06,-1.32476877822904e-06,1.65502569700847e-06,3.47970548209009e-10,1.41426552413559e-09,0.0799999960887553,-1.96301915694752e-09,9.55012978420821e-10,4.04851065866074e-10,1.53887319553902e-11,2.87587662017863e-10,2.00812006953543e-06,0.010781114681476,0.00730644357516129,-0.00937196988407255,5.57496757092045e-10,1.45196354939259e-09,1.64798730217797e-10 +1.866,-5.13889925296378e-09,8.04367313381182e-09,2.41639938093619e-09,3.48042195758014e-10,1.41513107482227e-09,0.0799997141786976,1.70452728519787e-05,1.1708946817332e-05,-1.32414741636777e-05,1.6377524336697e-11,2.89625962102136e-10,-5.43419476084494e-10,1.47034077621622e-09,-2.61075883134509e-10,-6.43257148935649e-10,3.22658566531685e-10,-1.92120624964431e-10,-0.000219945318034875 +1.868,-1.91139584636486e-06,-1.27793299095971e-06,1.60205980035376e-06,3.48036058306356e-10,1.415424027984e-09,0.0799999960865816,-1.95713779384265e-09,9.53968674888283e-10,4.02278037270331e-10,1.6679366221517e-11,2.86819179518005e-10,1.12833879739593e-06,-0.0056910354984471,-0.00384810591095956,0.00444684375292599,1.82579645846559e-10,-1.01394587170844e-09,2.94035629178069e-10 +1.87,-5.14672780413915e-09,8.04748900851138e-09,2.41800849308527e-09,3.481089132229e-10,1.41627835154035e-09,0.0799997186920528,-5.71886914180978e-06,-3.68347682650621e-06,4.54590084802628e-06,1.71078429200833e-11,2.85570178615302e-10,-5.42243333567782e-10,2.83478074998219e-08,-1.28052950187918e-08,-7.30470371690382e-09,1.44892778330963e-09,-4.10478942503012e-09,0.0170548764052286 +1.872,-1.9342713229321e-06,-1.29266689826574e-06,1.62024340374586e-06,3.48104489678036e-10,1.41656630869846e-09,0.0799999960844126,-1.84374656384337e-09,9.02747494813116e-10,3.73059222402716e-10,2.24750773547555e-11,2.70400021817885e-10,6.93478444183104e-05,-0.0235904318507867,-0.0132816495115352,0.0202312625201912,1.65622723868885e-09,-9.51018777617383e-09,-0.0276067161335963 +1.874,-5.15410279039452e-09,8.05109999849063e-09,2.41950072997488e-09,3.48198813532319e-10,1.41735995162762e-09,0.0799999960834305,-0.000100080596544957,-5.68100748726471e-05,8.54709509287912e-05,2.37327518748387e-11,2.47529427510606e-10,-0.000110427406777719,-2.20041134835549e-08,1.06264823329649e-08,1.75402227464703e-09,4.39318720291125e-10,2.77252179547993e-09,-0.0173370959168778 +1.876,-2.33459370911192e-06,-1.51990719775633e-06,1.96212720746103e-06,3.48199420685535e-10,1.41755642640851e-09,0.0799995543747855,-1.93176301777759e-09,9.45253424144975e-10,3.80075311501304e-10,2.423235223592e-11,2.81490108999804e-10,-5.39249200848246e-10,0.0576661312011054,0.0344699837308542,-0.0508790288557009,1.60461921527855e-11,1.49615562994309e-08,0.035562378905389 +1.878,-5.16182984246563e-09,8.05488101218721e-09,2.42102103122088e-09,3.48295742941263e-10,1.41848591206362e-09,0.0799999960812735,0.000130583928259465,8.10698600507697e-05,-0.000118045164494013,2.37969366434498e-11,3.0737565270833e-10,3.18221088438375e-05,-1.32584508693093e-08,4.89040231921311e-09,4.34331390297693e-09,-1.60418553440955e-09,1.66359981346176e-09,-3.49893725104522e-09 +1.88,-1.81225799607406e-06,-1.19562775755325e-06,1.48994654948498e-06,3.48294608432109e-10,1.41878592901934e-09,0.0799996816632209,-1.98479682125482e-09,9.64815033421828e-10,3.97448567113212e-10,1.78156100982818e-11,2.88144508253651e-10,-5.53244949852427e-10,-0.0482082854740158,-0.0317662865517362,0.0421765521123502,-2.30284541435921e-09,-6.80445283451902e-09,-0.00878167668184186 +1.882,-5.16976902975065e-09,8.0587402723209e-09,2.42261082548934e-09,3.48367005381656e-10,1.41963849009663e-09,0.0799999960790605,-6.22492136365983e-05,-4.59952861561752e-05,5.06610439553883e-05,1.4585554986013e-11,2.80157841370254e-10,-3.30459788352999e-06,-2.28030756169867e-09,7.67398297685239e-10,1.98463207673471e-09,-7.49617382056476e-10,4.09394740330526e-10,-3.76434994286967e-10 +1.884,-2.06125485062046e-06,-1.37960890217795e-06,1.69259072530653e-06,3.48352950652053e-10,1.41990656038482e-09,0.0799996684448294,-1.99391805150162e-09,9.67884626612569e-10,4.05387095420151e-10,1.48171405700559e-11,2.89782087214973e-10,-5.54750689829575e-10,0.0246059715290571,0.0173066570399813,-0.0195525334182982,1.70002900645727e-10,3.78386558197441e-09,0.00169430019146543 +1.886,-5.17774470195666e-09,8.06261181082735e-09,2.42423237387102e-09,3.48426273943936e-10,1.42079761844549e-09,0.0799999960768415,3.617467247963e-05,2.32313420037502e-05,-2.75490897178043e-05,1.52655665885959e-11,2.95293303698152e-10,3.47260288233175e-06,1.43037437363297e-09,-6.98226199080664e-11,5.50557863188139e-10,-3.20923843055709e-11,4.16333634234433e-11,4.11129463806503e-10 +1.888,-1.91655616070194e-06,-1.28668353416295e-06,1.58239436643531e-06,3.48414012918408e-10,1.42108773359961e-09,0.0799996823352409,-1.98819655400709e-09,9.67605336132936e-10,4.07589326872903e-10,1.46887710328336e-11,2.89948620668667e-10,-5.53106171974349e-10,-0.012371353819954,-0.0080416485798932,0.0102892632065357,-9.30245463992562e-11,-1.95763544263983e-09,-0.000112859032015688 +1.89,-5.18569748817269e-09,8.06648223217188e-09,2.42586273117851e-09,3.48485029028067e-10,1.42195741292817e-09,0.0799999960746291,-1.33107428001858e-05,-8.93525231582259e-06,1.36079631083384e-05,1.48934684029989e-11,2.87462761927592e-10,3.021166754269e-06,2.40851446859508e-09,-3.62340366044655e-10,-2.29417179697933e-10,2.85362011798185e-10,-1.63931368479808e-10,5.95010152260044e-10 +1.892,-1.96979913190268e-06,-1.32242454342624e-06,1.63682621886867e-06,3.4847358679202e-10,1.42223758464732e-09,0.0799996944199079,-1.97856249613271e-09,9.66155974668758e-10,4.06671658154112e-10,1.58302190800263e-11,2.89292895194748e-10,-5.50726131365308e-10,0.0661465037688694,0.0434133253137801,-0.0542199439332746,2.92214169528293e-09,5.75190936547009e-09,0.0180979313930962 +1.894,-5.19361173815722e-09,8.07034685607055e-09,2.42748941781112e-09,3.48548349904387e-10,1.42311458450894e-09,0.0799999960724262,0.000251275272275292,0.000164718048939298,-0.00020327181262476,2.65820351841306e-11,3.10470399389473e-10,7.54128923266539e-05,3.68753354132271e-08,-1.72568122985828e-08,-1.07072553948151e-08,2.42189081289812e-09,-5.37547437118313e-09,1.09105433021561e-08 +1.896,-9.64698042801512e-07,-6.63552347669044e-07,8.23738968369625e-07,3.48579914932756e-10,1.42347946624488e-09,0.0799999960714772,-1.8310611544798e-09,8.97128725474427e-10,3.63842636574851e-10,2.55177823316188e-11,2.67790997710015e-10,-5.07083958156684e-10,-0.16769461529827,-0.108267623837336,0.136126490681292,-3.10732342634345e-09,-2.26698000649339e-08,-0.0432077764643545 +1.898,-5.20093598277514e-09,8.07393537097245e-09,2.42894478835742e-09,3.48650421033714e-10,1.42418574849978e-09,0.0799999960703978,-0.00041950318891779,-0.000268352446410047,0.000341234150100407,1.41527414787568e-11,2.19791199129737e-10,-9.74182135307643e-05,-3.754796088851e-08,1.84041150375069e-08,8.21402407896741e-09,-1.36154108820729e-09,5.2054714705374e-09,-1.19938781129036e-08 +1.9,-2.64271079847267e-06,-1.73696213330923e-06,2.18867556877125e-06,3.48636525898671e-10,1.4243586310414e-09,0.0799996063986231,-1.98125299803384e-09,9.70745185624455e-10,3.96698732890721e-10,2.00716179787896e-11,2.88612883592165e-10,-5.55059470608298e-10,0.164640121643544,0.105310615001195,-0.135458295080228,2.07733136248222e-09,2.68179575768634e-08,0.0276272481003481 +1.902,-5.20886099476727e-09,8.07781835171495e-09,2.43053158328899e-09,3.48730707505629e-10,1.42534020003415e-09,0.0799999960681776,0.000239057297656388,0.000152890013594732,-0.000200599030220506,2.24620669286857e-11,3.27063029437191e-10,1.3090778870628e-05,-5.39213720332151e-09,1.66576821780673e-09,2.83974233017403e-09,-1.15727739891102e-09,7.41594285980084e-10,-1.15359111152458e-09 +1.904,-1.68648160784712e-06,-1.1254020789303e-06,1.38627944788923e-06,3.48726374166386e-10,1.42566688315915e-09,0.0799996587617386,-2.00282154684712e-09,9.77408258495681e-10,4.08057702211417e-10,1.54425083831455e-11,2.91579260736085e-10,-5.59673835054397e-10,-0.0875361104790431,-0.0576409269524915,0.0733219623497496,-2.55633188228632e-09,-1.29037405760535e-08,-0.00306882526595469 +1.906,-5.21687228095466e-09,8.08172798474893e-09,2.43216381409783e-09,3.48792477539162e-10,1.4265065170771e-09,0.0799999960659389,-0.000111087144259785,-7.76736942152342e-05,9.26888191784928e-05,1.22367393995404e-11,2.75448067132977e-10,8.15477806809239e-07,1.72245843890056e-10,1.65449251521288e-10,9.58109459825439e-10,-2.65846372693445e-10,1.0321604682062e-10,1.56125112837913e-10 +1.908,-2.13083018488626e-06,-1.43609685579124e-06,1.7570347246032e-06,3.48775321123984e-10,1.42676867542768e-09,0.0799996620236498,-2.00213256347156e-09,9.78070055501767e-10,4.11890140050719e-10,1.43791228923717e-11,2.91992124923368e-10,-5.59049334603045e-10,0.0434562406133087,0.0299975343070243,-0.0355663039734504,9.39569602675937e-10,6.39809386027145e-09,0.000741305470133845 +1.91,-5.22488081120855e-09,8.08564026497094e-09,2.43381137465803e-09,3.48849994030731e-10,1.42767448557679e-09,0.0799999960637027,6.27378181934504e-05,4.2316443012863e-05,-4.9576396715309e-05,1.59950178102441e-11,3.01040442574063e-10,3.78069968734462e-06,2.27281979044494e-09,-3.52365706057789e-10,-1.79218619111854e-10,2.41343403595273e-10,-1.31405303305243e-10,5.99346960949986e-10 +1.912,-1.87987891211246e-06,-1.26683108373979e-06,1.55872913774197e-06,3.48839301195225e-10,1.42797283719798e-09,0.0799996771464486,-1.99304128430978e-09,9.76660592677535e-10,4.11173265574271e-10,1.53444965067528e-11,2.91466503710147e-10,-5.56651946759245e-10,-0.0222231128234985,-0.0149252443102082,0.0182687872445899,-1.07336015076065e-10,-3.54404006142061e-09,-0.000227639812382107 +1.914,-5.23285297634579e-09,8.08954690734165e-09,2.43545606772033e-09,3.48911372016758e-10,1.42884035159163e-09,0.0799999960614761,-2.61546331005436e-05,-1.73845342279696e-05,2.34987522630507e-05,1.55656737499399e-11,2.8686428232838e-10,2.87014043781619e-06,2.34544100721073e-09,-4.7271214720368e-10,-7.03972470594837e-10,3.96167473826202e-10,-2.55871712706579e-10,5.10008701937181e-10 +1.916,-1.98449744451463e-06,-1.33636922065167e-06,1.65272414679417e-06,3.48901563890225e-10,1.42912029432729e-09,0.0799996886270103,-1.98365952028094e-09,9.74769744088721e-10,4.08357375691892e-10,1.69291664020576e-11,2.90443016859321e-10,-5.54611911951496e-10,0.0108538117911134,0.00737773271793621,-0.0093339216457931,6.30138302648825e-10,1.3955850364274e-09,-0.000280191971187258 +1.918,-5.24078761442691e-09,8.093445986318e-09,2.4370894972231e-09,3.48979088682366e-10,1.43000212365907e-09,0.0799999960592576,1.72606140639099e-05,1.21263966437752e-05,-1.38369343201217e-05,1.80862269605352e-11,2.9244662247409e-10,1.74937255306716e-06,1.54083424619119e-09,-3.64942451245147e-10,-8.61073365382412e-10,3.71013983424815e-10,-2.63244287475475e-10,3.22658566524026e-10 +1.92,-1.91545498825899e-06,-1.28786363407657e-06,1.59737640951368e-06,3.48973908798067e-10,1.43029008081719e-09,0.0799996956245005,-1.97749618329618e-09,9.7330997428374e-10,4.04913082230363e-10,1.84132223357568e-11,2.89390039709419e-10,-5.533212776854e-10,-0.00579489396983804,-0.00397269481439009,0.00457934927076921,1.91470103660699e-10,-1.07379383163376e-09,-0.000230099936500453 +1.922,-5.24869759916009e-09,8.09733922621514e-09,2.43870914955202e-09,3.49052741571709e-10,1.43115968381791e-09,0.0799999960570444,-5.91896181544103e-06,-3.76438261378425e-06,4.4804627629541e-06,1.88521073751779e-11,2.88151447147555e-10,8.28972807065397e-07,6.80255548099117e-10,-2.15973072772606e-10,-7.63820430521659e-10,2.61075883134254e-10,-1.79977560636613e-10,6.33174068808307e-11 +1.924,-1.93913083552076e-06,-1.30292116453171e-06,1.6152982605655e-06,3.49049317227568e-10,1.43144268660578e-09,0.0799996989403918,-1.97477516110378e-09,9.7244608199265e-10,4.01857800508276e-10,1.94575258682938e-11,2.88670129466872e-10,-5.53068008057877e-10,0.0026391894849623,0.00175945101413624,-0.00233172823703355,2.70833702686879e-10,2.4980018054066e-10,-0.000140732057084258 +1.926,-5.25659669980451e-09,8.10122901054311e-09,2.44031658075405e-09,3.49130571675182e-10,1.43231436433577e-09,0.0799999960548321,4.63779612440819e-06,3.27342144276071e-06,-4.84645018518012e-06,1.99354421859255e-11,2.89150647869718e-10,2.66044578728364e-07,9.67582676307531e-11,-4.98732999343332e-11,-5.68121938382404e-10,1.64148208914304e-10,-1.37910516340156e-10,-6.50521303491302e-11 +1.928,-1.92057965102313e-06,-1.28982747876066e-06,1.59591245982478e-06,3.49129058996311e-10,1.43259928919726e-09,0.0799997000045701,-1.97438812803326e-09,9.72246588792912e-10,3.99585312754746e-10,2.01141187039511e-11,2.88118487401512e-10,-5.53328216579274e-10,-0.00153730395726942,-0.00106003662770325,0.00126586028020414,8.84708972748163e-11,-3.2829641782861e-10,-7.69132353292677e-05 +1.93,-5.26449425231664e-09,8.10511799689828e-09,2.44191492200507e-09,3.49211028149998e-10,1.43346683828538e-09,0.0799999960526188,-1.5114197046695e-06,-9.66725068052287e-07,2.16990935636429e-07,2.02893257750247e-11,2.87837462198403e-10,-4.16083625887076e-08,-2.02373111757997e-10,6.39679281766447e-11,-3.42716306722668e-10,8.21825246744012e-11,-5.8113236445223e-11,-1.35308431126191e-10 +1.932,-1.9266253298418e-06,-1.29369437903287e-06,1.59678042356733e-06,3.49210216299412e-10,1.43375063904605e-09,0.0799996998381366,-1.97519762048029e-09,9.72502460505619e-10,3.98214447527856e-10,2.04428488026487e-11,2.87886034455731e-10,-5.53869450303778e-10,0.000629756261048342,0.000410914193296751,-0.000467758799358938,6.35342473076505e-11,5.03069808033274e-11,-4.53971417749276e-05 +1.934,-5.27239504279856e-09,8.1090080067403e-09,2.44350777979518e-09,3.49292799545209e-10,1.4346183824232e-09,0.0799999960504033,1.00760533952387e-06,6.76931705134719e-07,-1.65404426179932e-06,2.05434627642553e-11,2.88038690121617e-10,-2.23196929688418e-07,2.86575234029196e-08,-1.45515110377969e-08,-7.3696474270357e-09,1.16898678237387e-09,-4.29083851782863e-09,9.05612390633689e-09 +1.936,-1.92259490848371e-06,-1.29098665221233e-06,1.59016424652013e-06,3.49292390150469e-10,1.43490279380654e-09,0.0799996989453489,-1.86056752686861e-09,9.14296416354431e-10,3.68735857819713e-10,2.51187959321441e-11,2.70722680384416e-10,-5.17644954678431e-10,-0.0265838186088433,-0.0154094772076944,0.022751973410319,1.49706635976798e-09,-9.47679434926128e-09,-0.00845744208260306 +1.938,-5.27983731290604e-09,8.11266519240572e-09,2.44498272322646e-09,3.49393274728937e-10,1.43570127314474e-09,0.0799999960483327,-0.000105327669095849,-6.0960977125643e-05,8.93538493794767e-05,2.65317282033273e-11,2.50131512724572e-10,-3.40529652601007e-05,-2.35142783608193e-08,1.28649261382785e-08,3.04053657251833e-09,2.78856798763271e-10,3.30334717912883e-09,-8.51315545835615e-09 +1.94,-2.34390558486711e-06,-1.53483056071491e-06,1.94757964403804e-06,3.49398517063282e-10,1.43590331985743e-09,0.0799995627334879,-1.95462464031189e-09,9.65756120907545e-10,3.80898004109786e-10,2.62342231271972e-11,2.83936069100932e-10,-5.51697576511855e-10,0.0592002953788143,0.0356740583850722,-0.0515001189521548,-3.35018471298021e-10,1.4960688937693e-08,0.0139009482388527 +1.942,-5.28765581146728e-09,8.11652821688935e-09,2.4465063152429e-09,3.49498211621446e-10,1.43683701742114e-09,0.0799999960461259,0.000131473512419408,8.17352564146458e-05,-0.000116646626429143,2.51916543181352e-11,3.09974268475343e-10,2.15508276953102e-05,-1.38159476264013e-08,5.36463234945827e-09,5.25707949394771e-09,-1.87133294970998e-09,1.86005724711613e-09,-3.67154223690491e-09 +1.944,-1.81801153518947e-06,-1.20788953505632e-06,1.48099313832147e-06,3.49499283680554e-10,1.43714321693134e-09,0.0799996489367986,-2.00988843081749e-09,9.87214650305378e-10,4.01926322085577e-10,1.87488913283573e-11,2.91376298089396e-10,-5.66383745459475e-10,-0.0487841155774032,-0.0323409293553466,0.0422749602420856,-2.53031103014667e-09,-6.60756171999565e-09,-0.00604966940345035 +1.946,-5.29569536519055e-09,8.12047707549057e-09,2.44811402053124e-09,3.4957320718676e-10,1.4380025226135e-09,0.0799999960438604,-6.36629498902046e-05,-4.76284610067406e-05,5.24532145391998e-05,1.50704101975485e-11,2.83544021595361e-10,-2.6478499184912e-06,2.64667438356139e-08,-1.36863177041535e-08,-4.58021207766501e-09,2.17490955800592e-10,-3.68628738645071e-09,8.84708972748171e-09 +1.948,-2.07266333475029e-06,-1.39840337908329e-06,1.69080599647826e-06,3.49559565321345e-10,1.43827739301772e-09,0.079999638345399,-1.90402145547504e-09,9.32469379488764e-10,3.83605473774917e-10,1.96188551515597e-11,2.76631148543593e-10,-5.30995386549548e-10,-0.000487519170588597,0.00288096273161515,0.00187858983642479,1.55734800055818e-09,-5.38848479725295e-09,-0.00751195477696752 +1.95,-5.30331145101245e-09,8.12420695300853e-09,2.44964844242634e-09,3.49651682607366e-10,1.43910904720768e-09,0.0799999960417364,-6.56130265725589e-05,-3.610461008028e-05,5.99675738848989e-05,2.12998021997812e-11,2.61990082406349e-10,-3.26956690263613e-05,-2.18156859222405e-08,1.28326169135384e-08,4.01078909667562e-09,1.59811400224362e-10,3.38748126771371e-09,-7.9580439460436e-09 +1.952,-2.33511544104053e-06,-1.54282181940441e-06,1.93067629201786e-06,3.49644764530144e-10,1.43932535334734e-09,0.0799995075627229,-1.991284199164e-09,9.83799847142918e-10,3.99648630161619e-10,2.02581007524571e-11,2.90181073614448e-10,-5.62827562333723e-10,0.0450624880111749,0.0268592549870164,-0.039771326461541,-4.91360424570429e-10,1.28091981466127e-08,0.0149587563499226 +1.954,-5.31127658780911e-09,8.1281421523971e-09,2.45124703694699e-09,3.49732715010376e-10,1.44026977150213e-09,0.0799999960394851,0.000114636925472141,7.13324098677858e-05,-9.91177319612651e-05,1.93343605014995e-11,3.132268749928e-10,2.71393563733291e-05,-1.10912798043095e-08,4.88910127660613e-09,5.04772005444076e-09,-1.56667213924155e-09,1.67877864387655e-09,-2.92474378049689e-09 +1.956,-1.87656773915196e-06,-1.25749217993326e-06,1.5342053641728e-06,3.4972210197215e-10,1.44057826084731e-09,0.0799996161201484,-2.03564931838124e-09,1.00335625224934e-09,4.19839510379382e-10,1.39914121954909e-11,2.96896188189954e-10,-5.7452653745571e-10,-0.0413418651220824,-0.027514346188787,0.0357807426889329,-1.982138411738e-09,-5.73369476897234e-09,-0.00679757264972907 +1.958,-5.31941918508264e-09,8.1321555774061e-09,2.45292639498851e-09,3.49788680659158e-10,1.44145735625489e-09,0.079999996037187,-5.0730535016189e-05,-3.87249748873622e-05,4.40052387944665e-05,1.14058068545475e-11,2.90292095916911e-10,-5.0934225587218e-08,-2.11771789340731e-10,4.77699477197113e-10,1.85496149690545e-09,-5.09141340199192e-10,3.23959609138668e-10,1.70002900645727e-10 +1.96,-2.07948987921672e-06,-1.41239207948271e-06,1.71022631935067e-06,3.49767725199568e-10,1.44173942923098e-09,0.0799996159164115,-2.0364964055386e-09,1.00526705015813e-09,4.27259356367004e-10,1.19548468346942e-11,2.98192026626509e-10,-5.73846525853127e-10,0.0809511285427526,0.0548937516295453,-0.0655446349554551,2.89720504531576e-09,8.07210201458906e-09,0.0235786057085213 +1.962,-5.32756517070479e-09,8.13617664560673e-09,2.45463543241398e-09,3.49836500046496e-10,1.4426501243614e-09,0.0799999960348916,0.000273073979154822,0.000180850031630819,-0.000218173301027354,2.29946270358105e-11,3.22580503975267e-10,9.4263488608498e-05,3.81883923355336e-08,-1.77904566078801e-08,-1.04870539335833e-08,2.43641912200942e-09,-5.42187822416551e-09,1.1594891713429e-08 +1.964,-9.87193962597431e-07,-6.88991952959433e-07,8.37533115241249e-07,3.49859703707711e-10,1.44302975124688e-09,0.0799999929703659,-1.88374283619647e-09,9.3410522372661e-10,3.85311140632671e-10,2.17005233227318e-11,2.76504513729847e-10,-5.27466958999411e-10,-0.174768398987358,-0.114420458508131,0.141350031813915,-3.10060137287404e-09,-2.38706623911788e-08,-0.0521449018634628 +1.966,-5.33510014204958e-09,8.13991306650164e-09,2.45617667697651e-09,3.49923302139787e-10,1.44375614241632e-09,0.0799999960327817,-0.000425999616794609,-0.000276831802401706,0.000347226826228307,1.05922215443144e-11,2.27097854410552e-10,-0.000114316118845353,-3.56362481841385e-08,1.83785278662363e-08,7.90611066198154e-09,-1.08311797031302e-09,5.0484789959615e-09,-1.17241286123892e-08 +1.968,-2.69119242977587e-06,-1.79631916256626e-06,2.22644042015448e-06,3.49902072593888e-10,1.44393814266452e-09,0.0799995357058905,-2.02628782893302e-09,1.00761933519156e-09,4.16935583280597e-10,1.73680514414798e-11,2.96698429713693e-10,-5.74363473448968e-10,0.168296253143764,0.109523719533976,-0.138340913390621,2.51881848711832e-09,2.71514581651199e-08,0.0334832830680559 +1.97,-5.34320529336531e-09,8.1439435438424e-09,2.45784441930963e-09,3.49992774345553e-10,1.44494293613517e-09,0.0799999960304843,0.000247185395780446,0.000161263075734198,-0.000206136827334176,2.06674954927877e-11,3.35703687071031e-10,1.96170134268703e-05,-3.53304218563346e-09,1.14860378153114e-09,1.99037834824889e-09,-7.72602468113169e-10,4.51461784622964e-10,-6.69603261727047e-10 +1.972,-1.70245084665408e-06,-1.15126685962946e-06,1.40189311081777e-06,3.4998474257586e-10,1.44528095741281e-09,0.0799996141739442,-2.04041999767555e-09,1.01221375031768e-09,4.24897096673593e-10,1.42776415690271e-11,2.98504276852185e-10,-5.77041886495877e-10,-0.0897513673397302,-0.0599515053484235,0.0749353931625301,-2.20982086795995e-09,-1.34870413448507e-08,-0.00434701436131945 +1.974,-5.35136697335601e-09,8.14799239884367e-09,2.45954400769632e-09,3.50049884911829e-10,1.44613695324258e-09,0.0799999960281761,-0.000111820073578475,-7.8542945659496e-05,9.36047453159449e-05,1.18282120209478e-11,2.81755521691629e-10,2.22895598159245e-06,1.52572995470307e-09,-3.97685356867683e-10,-3.02492406123455e-11,9.88792381306779e-11,-1.50920942409982e-10,5.31692745386891e-10 +1.976,-2.14973114096798e-06,-1.46543864226745e-06,1.77631209208155e-06,3.50032055423943e-10,1.44640797949958e-09,0.0799996230897681,-2.03431707785674e-09,1.01062300889021e-09,4.24776099711143e-10,1.46731585215498e-11,2.97900593082545e-10,-5.74915115514329e-10,0.0443331987730785,0.030930781129727,-0.0365502880725126,1.29041742569225e-09,6.27059168478716e-09,0.000722936498859238 +1.978,-5.35950424166744e-09,8.15203489087923e-09,2.46124311209517e-09,3.50108577545916e-10,1.44732855561491e-09,0.0799999960258765,6.55127215138393e-05,4.51801788594122e-05,-5.25964069741056e-05,1.69898817237168e-11,3.06837888430777e-10,5.1207019770294e-06,3.06331159440412e-09,-8.23559970219988e-10,-1.10664515745595e-09,5.26922255827954e-10,-3.86843335142828e-10,7.80625564189562e-10 +1.98,-1.88768025491262e-06,-1.2847179268298e-06,1.56592646418513e-06,3.50100014950838e-10,1.4476353310533e-09,0.0799996435725761,-2.02206383147912e-09,1.00732876900933e-09,4.2034951908132e-10,1.67808475448616e-11,2.96353219741974e-10,-5.71792613257571e-10,-0.022918360540013,-0.0155904731587771,0.0187823877692214,1.1514227071796e-10,-3.8220294984459e-09,-0.000384336159252318 +1.982,-5.36759249699335e-09,8.15606420595527e-09,2.46292451017149e-09,3.50175700936095e-10,1.44851396849388e-09,0.0799999960235893,-2.61607206462129e-05,-1.71817137756963e-05,2.253314410278e-05,1.74504508065887e-11,2.91549770436994e-10,3.58335734002013e-06,2.73662792730708e-09,-8.71698546678345e-10,-1.44719305983365e-09,5.90239662701108e-10,-4.31946145518225e-10,6.17561557447743e-10 +1.984,-1.99232313749748e-06,-1.35344478193258e-06,1.65605904059625e-06,3.50169816754065e-10,1.44880153013505e-09,0.0799996579060054,-2.0111173197699e-09,1.00384197482262e-09,4.14560746841985e-10,1.91418061956661e-11,2.94625435159901e-10,-5.6932236702778e-10,0.0110358722798547,0.00754416801165141,-0.00946230624800438,7.64362531602279e-10,1.25290403052425e-09,-0.00036329186273859 +1.986,-5.37563696627243e-09,8.16007957385456e-09,2.46458275315886e-09,3.50252268160878e-10,1.44969247023452e-09,0.079999996021312,1.79827684732058e-05,1.29949582709093e-05,-1.53160808892376e-05,2.05079009329978e-11,2.96561386559091e-10,2.13018988906577e-06,1.71182648134663e-09,-6.87601017790306e-10,-1.33324341150542e-09,4.54931231574916e-10,-3.55184631706251e-10,3.94649590784723e-10 +1.988,-1.92039206360465e-06,-1.30146494884895e-06,1.5947947170393e-06,3.50251848357797e-10,1.44998777568128e-09,0.079999666426765,-2.00427001384451e-09,1.00109157075145e-09,4.09227773195963e-10,2.09615311219657e-11,2.93204696633076e-10,-5.67743768664641e-10,-0.00601567520907549,-0.0041816837540419,0.00481139801394511,2.45463371850718e-10,-1.1891529427821e-09,-0.000285293785991236 +1.99,-5.38365404632781e-09,8.16408394013757e-09,2.46621966425165e-09,3.50336114285366e-10,1.45086528902105e-09,0.079999996019041,-6.07993236309621e-06,-3.73177674525826e-06,3.92951116654286e-06,2.14897544204007e-11,2.91804774787962e-10,9.89014745100824e-07,7.36905111584085e-10,-4.75097391983148e-10,-9.89442902610271e-10,2.77989437025283e-10,-2.79290479632266e-10,9.88792381306779e-11 +1.992,-1.94471179305704e-06,-1.31639205582998e-06,1.61051276170547e-06,3.50337807375478e-10,1.45115499478043e-09,0.0799996703828239,-2.00132239339817e-09,9.99191181183522e-10,4.05270001585522e-10,2.20734888700669e-11,2.92087534714547e-10,-5.67348251712118e-10,0.00267420869466233,0.00177272841545006,-0.00227186248231894,2.46981254892198e-10,2.09901540593193e-10,-0.000176439072553658 +1.994,-5.3916593359014e-09,8.1680807048623e-09,2.46784074425799e-09,3.50424408240846e-10,1.45203363915991e-09,0.0799999960167716,4.61690241555312e-06,3.35913691654199e-06,-5.1579387627329e-06,2.24776794399695e-11,2.92644380950335e-10,2.83258454886192e-07,9.32549393609094e-11,-1.94722710178396e-10,-5.77988178152022e-10,1.19045398538908e-10,-1.01481323344643e-10,-5.8113236445223e-11 +1.996,-1.92624418339483e-06,-1.30295550816381e-06,1.58988100665454e-06,3.50427718093238e-10,1.45232557230424e-09,0.0799996715158578,-2.00094937364073e-09,9.98412290342809e-10,4.02958048872914e-10,2.25496704642225e-11,2.91681609421168e-10,-5.67580704657899e-10,-0.00159769272258073,-0.00113041196043474,0.00137476565830081,1.60461921527855e-11,-3.25260651745651e-10,-9.92302854468939e-05 +1.998,-5.39966313339597e-09,8.17207435402367e-09,2.46945257645348e-09,3.50514606922703e-10,1.4532003655976e-09,0.0799999960145013,-1.7738684747698e-06,-1.16251092519698e-06,3.41123870470361e-07,2.25418642085806e-11,2.91343338343353e-10,-1.13662686901383e-07,-2.51263853445701e-10,-4.6837533865229e-11,-1.73147086951518e-10,-2.01661604085422e-11,-6.1582683401222e-11,-1.22298005048481e-10 +2,-1.93333965729391e-06,-1.3076055518646e-06,1.59124550213642e-06,3.50517885550072e-10,1.45349094565761e-09,0.079999671061207,-2.00195442905451e-09,9.98224940207348e-10,4.02265460525108e-10,2.24690058225883e-11,2.91435278687563e-10,-5.68069896678093e-10,0.000647980717951469,0.000410902129162315,-0.000432686494272724,-4.83554168928508e-11,8.28330459778879e-11,-5.64020288806833e-05 +2.002,-5.40767095111219e-09,8.1760672537845e-09,2.47106163829558e-09,3.50604482945993e-10,1.45436610671235e-09,0.079999996012229,8.18054397036223e-07,4.81097591452373e-07,-1.38962210662063e-06,2.23484425410092e-11,2.91674670527264e-10,-3.39270802424129e-07,-4.04271885093346e-10,1.48535697644369e-10,1.4983674024308e-10,-9.17235037919618e-11,4.90059382003902e-11,-1.89084858889356e-10 +2.004,-1.93006743970576e-06,-1.30568116149879e-06,1.58568701370994e-06,3.50607279320236e-10,1.45465764433972e-09,0.0799996697041238,-2.00357151659489e-09,9.98819082997925e-10,4.0286480748608e-10,2.21021118074205e-11,2.91631302440365e-10,-5.6882623611365e-10,-0.000412548143507941,-0.000308697768736099,0.000443402904237027,-1.30754782001752e-10,1.17093834628434e-11,-3.39190004208789e-05 +2.006,-5.41568523717856e-09,8.18006253011649e-09,2.47267309752552e-09,3.50692891393223e-10,1.45553263192211e-09,0.0799999960099537,-8.32138176995542e-07,-7.53693483492023e-07,3.83989510327476e-07,2.18254234130022e-11,2.91721508061115e-10,-4.74946804107645e-07,-4.65685161873258e-10,2.60642202265515e-10,3.76326574069718e-10,-1.41163122857613e-10,9.67108337857069e-11,-1.95156391047391e-10 +2.008,-1.93339599241374e-06,-1.30869593543276e-06,1.58722297175125e-06,3.50694581013888e-10,1.45582453037196e-09,0.0799996678043366,-2.00543425724238e-09,9.99861651806987e-10,4.04370113782359e-10,2.153745931599e-11,2.92018145775508e-10,-5.6960686167784e-10,0.000174149336525922,9.7139757609249e-05,-6.39207001131708e-05,-1.5482407023093e-10,1.33573707650214e-10,-1.95302272618103e-05 +2.01,-5.42370697420753e-09,8.18406197672372e-09,2.47429057798065e-09,3.50779041230487e-10,1.45670070450521e-09,0.0799999960076753,-1.35540830891855e-07,-3.65134453055027e-07,1.28306709874792e-07,2.12061271320785e-11,2.92255802891716e-10,-5.53067713154886e-07,-4.93352646062372e-10,3.7990444123892e-10,5.07623457157713e-10,-1.59811400224363e-10,1.45716771982052e-10,-2.15105711021124e-10 +2.012,-1.93393815573731e-06,-1.31015647324498e-06,1.58773619859075e-06,3.50779405522417e-10,1.45699355358353e-09,0.0799996655920657,-2.00740766782663e-09,1.00138126957194e-09,4.0640060761099e-10,2.08982137150926e-11,2.92601012863436e-10,-5.70467284521924e-10,-8.61597827656847e-05,-7.26897660986712e-05,0.000117357044871966,-1.56558793706907e-10,1.23165366794353e-10,-7.53643415035698e-06 +2.014,-5.43173660487884e-09,8.18806750180201e-09,2.4759161804111e-09,3.50862634085347e-10,1.45787110855666e-09,0.0799999960053934,-4.80179961954594e-07,-6.55893517449712e-07,5.97734889362655e-07,2.05798919572508e-11,2.92748464358894e-10,-5.83213449756314e-07,-5.01057257750597e-10,4.39969241594617e-10,5.40691623418521e-10,-1.46800974154537e-10,1.34441069388202e-10,-2.13370987545147e-10 +2.016,-1.93585887558513e-06,-1.31278004731478e-06,1.5901271381482e-06,3.50861725090246e-10,1.45816454744097e-09,0.0799996632592119,-2.00941189685763e-09,1.00314114653832e-09,4.08563374104664e-10,2.03110098184744e-11,2.93138777140989e-10,-5.71320768472105e-10,6.67088836088318e-05,4.11541564715455e-05,-3.79431089412435e-05,-1.346579098227e-10,1.58293517182884e-10,2.41302897802109e-06 +2.018,-5.43977425246627e-09,8.19208006638816e-09,2.47755043390752e-09,3.50943878124621e-10,1.45904366366523e-09,0.0799999960031081,-2.13344427519267e-07,-4.9127689156353e-07,4.45962453597681e-07,2.004126031796e-11,2.93381638427625e-10,-5.7356133384423e-07,-4.88616037821326e-10,5.1456235106162e-10,4.90384642615193e-10,-1.22731685925358e-10,1.3314002678122e-10,-2.42861286636753e-10 +2.02,-1.93671225329521e-06,-1.31474515488103e-06,1.59191098796259e-06,3.50941890131518e-10,1.45933807399468e-09,0.0799996609649666,-2.01136636100892e-09,1.00519939594257e-09,4.10524912675125e-10,1.9820083074773e-11,2.93671337248113e-10,-5.72292213618652e-10,-7.98188006304305e-07,3.25355801328308e-06,-3.97344136759958e-06,-9.45424294407351e-11,1.21430643318376e-10,9.02156040843981e-06 +2.022,-5.44781971791031e-09,8.19610086397193e-09,2.47919253355822e-09,3.5102315845692e-10,1.46021834901422e-09,0.079999996000819,-2.16537179544484e-07,-4.78262659510397e-07,4.30068688127283e-07,1.96630906001971e-11,2.93867361000899e-10,-5.3747509221047e-07,-4.62791697325437e-10,5.10225542371678e-10,3.92914867308746e-10,-6.61363325216157e-11,1.23599047663347e-10,-2.23779328401008e-10 +2.024,-1.93757840201338e-06,-1.31665820551907e-06,1.5936312627151e-06,3.51020542493918e-10,1.46051354343868e-09,0.0799996588150662,-2.01321752779822e-09,1.00724029811205e-09,4.1209657214436e-10,1.95555377446865e-11,2.94165733438767e-10,-5.73187330932256e-10,3.3410578164218e-05,3.21831064402366e-05,-4.48069115447854e-05,-5.160802341031e-11,1.15359111152458e-10,1.15509147385895e-05 +2.026,-5.4558725880215e-09,8.20012982516438e-09,2.48084091984679e-09,3.51101380607899e-10,1.46139501194797e-09,0.0799999959985262,-8.2894866887612e-08,-3.49530233749451e-07,2.50841041948141e-07,1.94566585065559e-11,2.94328797445509e-10,-4.91271433256113e-07,-4.29140772396918e-10,5.29090660172926e-10,2.82434665932474e-10,-3.03576608295941e-11,8.15320033709099e-11,-2.4459601011273e-10 +2.028,-1.93790998148093e-06,-1.31805632645407e-06,1.59463462688289e-06,3.51098369127945e-10,1.46169085862846e-09,0.0799996568499805,-2.01493409088781e-09,1.00935666075275e-09,4.1322631080809e-10,1.94341071013682e-11,2.9449186145225e-10,-5.74165714972707e-10,9.83118888896312e-06,1.82051619872919e-05,-3.04893703600289e-05,-3.03576608295941e-12,9.10729824887823e-11,1.05439997011292e-05 +2.03,-5.46393232438505e-09,8.20416725180739e-09,2.48249382509003e-09,3.51179117036304e-10,1.46257297939378e-09,0.0799999959962296,-4.35701113317595e-08,-2.76709585800283e-07,1.28883560508025e-07,1.9444515442224e-11,2.94693089375464e-10,-4.49095434451596e-07,-3.94324330132978e-10,5.15429712799608e-10,1.68810278255993e-10,1.43114686768086e-11,8.76035355368287e-11,-2.23779328401008e-10 +2.032,-1.93808426192626e-06,-1.31916316479727e-06,1.59515016112492e-06,3.51176147189713e-10,1.46286963098596e-09,0.0799996550535988,-2.01651138820834e-09,1.01141837960394e-09,4.13901551921114e-10,1.94913529760754e-11,2.94842275594398e-10,-5.75060832286311e-10,1.21705415453217e-05,1.92368928945974e-05,-3.20032054242774e-05,3.4477629085039e-11,4.98732999343332e-11,7.3845660489291e-06 +2.034,-5.47199836993788e-09,8.20821292532581e-09,2.48414943129771e-09,3.51257082448209e-10,1.46375234849616e-09,0.0799999959939293,5.11205484952752e-09,-1.99762014221893e-07,8.70738810915261e-10,1.95824259585642e-11,2.94892582575201e-10,-4.19557170255879e-07,2.89033594692671e-08,-1.47434148223269e-08,-7.43296483390887e-09,1.25420507313123e-09,-4.27869545349679e-09,9.36663940853676e-09 +2.036,-1.93806381370686e-06,-1.31996221285416e-06,1.59515364408017e-06,3.51254476893548e-10,1.46404920131626e-09,0.0799996533753701,-1.90089795033127e-09,9.52444720314637e-10,3.84169692585478e-10,2.45081732686003e-11,2.77727493780411e-10,-5.37594274652164e-10,-0.0257898050401968,-0.0151066458168713,0.021933587684487,1.68007968648353e-09,-9.41868111281605e-09,-0.00916264263593756 +2.038,-5.47960196173921e-09,8.21202270420707e-09,2.48568611006805e-09,3.51355115141283e-10,1.46486325847128e-09,0.0799999959917789,-0.000103154108105938,-6.06263452817071e-05,8.7735221476759e-05,2.63027447044983e-11,2.57217858123937e-10,-3.70701277140062e-05,-2.33184850009955e-08,1.34206881718946e-08,2.9839412191146e-09,3.92698026874249e-10,3.29250515740398e-09,-8.80892581101022e-09 +2.04,-2.35068024613061e-06,-1.56246759398099e-06,1.9460945299872e-06,3.51359687872366e-10,1.46507807274876e-09,0.0799995050948592,-1.99417189033525e-09,1.00612747300222e-09,3.96105457461937e-10,2.60789653760973e-11,2.90897514410026e-10,-5.72829977896205e-10,0.0580838247656627,0.0355016317140407,-0.0505425102981064,-3.07913416985883e-10,1.48765548491081e-08,0.0151637250074207 +2.042,-5.48757864930055e-09,8.21604721409908e-09,2.4872705318979e-09,3.51459431002787e-10,1.46602684852892e-09,0.0799999959894876,0.000129181190956714,8.13801815744557e-05,-0.000114434819715667,2.50710910365548e-11,3.16724077520369e-10,2.35847723156768e-05,-1.42226725188821e-08,5.77641233456827e-09,5.24439432852963e-09,-1.82167649021014e-09,1.88217497143483e-09,-3.86843335142828e-09 +2.044,-1.83395548230376e-06,-1.23694686768316e-06,1.48835525112453e-06,3.51459972236512e-10,1.46634496905884e-09,0.0799995994339485,-2.05106258041078e-09,1.02923312234049e-09,4.17083034776055e-10,1.87922594152567e-11,2.98426214295766e-10,-5.88303711301918e-10,-0.0478853898546954,-0.0321601223009053,0.0413854743732278,-2.4381538454854e-09,-6.50651407752e-09,-0.00657844544810214 +2.046,-5.49578289962219e-09,8.22016414658844e-09,2.488938864037e-09,3.51534600040448e-10,1.46722055338611e-09,0.0799999959871344,-6.23603684620681e-05,-4.72603076291655e-05,5.11070777772446e-05,1.53184756546132e-11,2.90698021210289e-10,-2.72900947673182e-06,-2.63895486415047e-09,1.2409778066556e-09,2.51144591235727e-09,-8.35919874985893e-10,5.39065320168129e-10,-4.83120488075929e-10 +2.048,-2.08339695615203e-06,-1.42598809819983e-06,1.69278356223351e-06,3.5152124613913e-10,1.46750776114368e-09,0.0799995885179106,-2.06161839986738e-09,1.03419703356711e-09,4.27128818425484e-10,1.54485799153132e-11,3.00582475576438e-10,-5.90236193254222e-10,0.0246925743338687,0.0177956305433809,-0.0194675909790417,1.34657909822714e-10,3.85585660622787e-09,0.00167276686599567 +2.05,-5.50402937322166e-09,8.22430093472271e-09,2.49064737931071e-09,3.5159639436011e-10,1.46842288328841e-09,0.0799999959847735,3.64099288733958e-05,2.39222145443502e-05,-2.67632861389137e-05,1.5857107293904e-11,3.06121447635199e-10,3.96205798725013e-06,1.37835299820158e-09,1.68268177141057e-10,7.9710543719949e-10,-2.05998412776535e-11,8.37004077075444e-11,3.98119037753065e-10 +2.052,-1.93775724065845e-06,-1.33029924002243e-06,1.58573041767786e-06,3.51584674568306e-10,1.46873224693422e-09,0.0799996043661425,-2.05610498787458e-09,1.03487010627568e-09,4.30317240174282e-10,1.53661805502025e-11,3.00917277207269e-10,-5.88643717103209e-10,-0.0123960143727828,-0.00822290301214638,0.0101216584168966,-4.44522890719056e-11,-1.89908852532561e-09,-0.000104388635756292 +2.054,-5.51225379317316e-09,8.22844041514781e-09,2.4923686482714e-09,3.51657859082311e-10,1.46962655239724e-09,0.0799999959824189,-1.31741286177355e-05,-8.96939750423541e-06,1.37233475286727e-05,1.56792981376164e-11,2.98525093533897e-10,3.54450344422496e-06,2.48223344006051e-09,-2.51751744451134e-10,-2.63027447044983e-10,3.50414142147314e-10,-1.27502175484295e-10,6.25367813089638e-10 +2.056,-1.99045375512939e-06,-1.36617683003937e-06,1.64062380779255e-06,3.51647391760856e-10,1.46992634730836e-09,0.0799996185441563,-2.04617605411433e-09,1.03386309929787e-09,4.29265130386102e-10,1.67678371187918e-11,3.00407268505331e-10,-5.86142245850851e-10,0.00610540428652873,0.00429241299058566,-0.00535855211375099,5.41233724504763e-10,7.51568945966951e-10,-0.000268270658292102 +2.058,-5.52043849738962e-09,8.232575867545e-09,2.49408570879295e-09,3.51724930430786e-10,1.47082818147126e-09,0.0799999959800743,1.12474885283795e-05,8.20025445810723e-06,-7.71086092633127e-06,1.78442330356354e-11,3.01531369317764e-10,2.47142081105656e-06,2.01013793284244e-09,-3.7470027081099e-10,-7.63712010298789e-10,4.15899953365439e-10,-2.23779328401008e-10,4.40619762898109e-10 +2.06,-1.94546380101587e-06,-1.33337581220694e-06,1.60978036408722e-06,3.51718768692999e-10,1.47113247278563e-09,0.0799996284298396,-2.03813550238296e-09,1.03236429821463e-09,4.26210282344907e-10,1.84314369322536e-11,2.99512151191727e-10,-5.84379766799258e-10,-0.00335792827404194,-0.00234933012713961,0.00240755760531723,3.35235311732518e-10,-7.24680732089311e-10,-0.000284566250771667 +2.062,-5.52859103939915e-09,8.23670532473786e-09,2.49579054992233e-09,3.51798656178515e-10,1.47202623007603e-09,0.0799999959777368,-2.18422456778832e-06,-1.19706605045122e-06,1.91936949493765e-06,1.91851742825655e-11,2.98632646389407e-10,1.33315580796989e-06,1.11546785263455e-09,-2.9316826744008e-10,-9.24282352043892e-10,3.7318238776951e-10,-2.41126563160776e-10,1.99493199737333e-10 +2.064,-1.95420069928703e-06,-1.33816407640874e-06,1.61745784206697e-06,3.51795509390129e-10,1.47232700337119e-09,0.0799996337624628,-2.03367363097243e-09,1.03119162514487e-09,4.22513152936732e-10,1.99241664833316e-11,2.98547644939084e-10,-5.83581794000309e-10,0.00141388900298111,0.000950299113055065,-0.00141974325763676,3.4998046127832e-10,4.07660016854549e-11,-0.000186986221645257 +2.066,-5.53672573392304e-09,8.24083009123844e-09,2.49748060253407e-09,3.51878352844448e-10,1.47322042065579e-09,0.0799999959754025,3.47133144413614e-06,2.60413040176904e-06,-3.75960353560939e-06,2.05850961276788e-11,2.98795710396149e-10,5.85210921388856e-07,3.83177376547111e-10,-1.88868018446975e-10,-8.80589004492726e-10,2.77338915721791e-10,-1.97324795392362e-10,3.46944695195361e-12 +2.068,-1.94031537351048e-06,-1.32774755480167e-06,1.60241942792454e-06,3.5187784977464e-10,1.47352218621277e-09,0.0799996361033065,-2.03214092146624e-09,1.03043615307108e-09,4.18990796918761e-10,2.10335221462188e-11,2.97758345757515e-10,-5.83567916212501e-10,-0.000950892921104943,-0.000668405564403783,0.000691181103779254,2.2291196666302e-10,-3.13984949151802e-10,-0.000102981981449368 +2.07,-5.5448542976089e-09,8.24495183585072e-09,2.49915656572175e-09,3.51962486933033e-10,1.47441145403882e-09,0.0799999959730682,-3.32240240283636e-07,-6.94918558460932e-08,-9.94879120492369e-07,2.14767439943308e-11,2.97539770599542e-10,1.73282995591384e-07,-3.39219754716402e-11,-7.37257477290142e-11,-6.90962044525011e-10,1.95806912350882e-10,-1.32272665043231e-10,-9.88792381306779e-11 +2.072,-1.94164433447162e-06,-1.32802552222505e-06,1.59843991144257e-06,3.51963756750617e-10,1.47471234529517e-09,0.0799996367964385,-2.03227660936812e-09,1.03014125008016e-09,4.16226948740661e-10,2.18167497956223e-11,2.97229255097342e-10,-5.83963433165024e-10,0.000297876605156912,0.000197734684745723,-0.000227189003287192,1.56558793706907e-10,-8.71698546678345e-11,-5.86417000028593e-05 +2.074,-5.55298340404638e-09,8.24907240085104e-09,2.50082147351671e-09,3.52049753932215e-10,1.4756003710592e-09,0.0799999959707323,8.59266180344014e-07,7.214468831368e-07,-1.90363513364114e-06,2.21029791691585e-11,2.9719109118087e-10,-6.12838044200536e-08,-2.32290315455019e-10,2.32019264911898e-11,-4.47775497236513e-10,1.12757025938492e-10,-8.50014503228635e-11,-1.70002900645727e-10 +2.076,-1.93820726975024e-06,-1.3251397346925e-06,1.590825370908e-06,3.52052168667294e-10,1.47590110965989e-09,0.0799996365513032,-2.03320577062994e-09,1.03023405778613e-09,4.14435846751715e-10,2.22677778993763e-11,2.9688924929605e-10,-5.84643444767607e-10,-0.00028333896714321,-0.000210277200166086,0.000310053428244361,7.19910242530374e-11,-6.76542155630954e-11,-4.27351678350395e-05 +2.078,-5.5611162271289e-09,8.25319333708219e-09,2.50247921690372e-09,3.52138825043813e-10,1.47678792805639e-09,0.0799999959683938,-2.74089688228826e-07,-1.19661917527547e-07,-6.63421420663695e-07,2.23909432661706e-11,2.96920474318618e-10,-2.32224475760212e-07,-3.25714661405379e-10,1.5482407023093e-10,-1.76399693463391e-10,4.29344060304259e-11,-1.60461921527855e-11,-1.85615411929518e-10 +2.08,-1.93930362850315e-06,-1.32561838236261e-06,1.58817168522535e-06,3.52141732440359e-10,1.47708879155717e-09,0.0799996356224053,-2.03450862927556e-09,1.03085335406705e-09,4.13730247977861e-10,2.2439515523498e-11,2.96825064527439e-10,-5.85385906415325e-10,5.2476058119363e-05,1.33648467726815e-05,4.74361572157938e-05,4.11996825544491e-12,-2.60208521396521e-12,-3.66398404672008e-05 +2.082,-5.569254261646e-09,8.25731675049846e-09,2.50413413789563e-09,3.52228583105907e-10,1.4779752283145e-09,0.0799999959660522,-6.41854557513737e-08,-6.62025304368207e-08,-4.7367679180052e-07,2.24074231391924e-11,2.96910065977762e-10,-3.78783837629015e-07,-3.88815227844036e-10,2.50884382713146e-10,7.62194127257309e-11,-2.88397777881144e-11,4.90059381963448e-11,-1.97758476261356e-10 +2.084,-1.93956037032616e-06,-1.32588319248436e-06,1.58627697805815e-06,3.52231362132915e-10,1.47827643182108e-09,0.07999963410727,-2.03606389018694e-09,1.0318568915979e-09,4.14035125628764e-10,2.23241564123455e-11,2.97021088280225e-10,-5.8617694032037e-10,-8.00016136236896e-05,-8.06401991623044e-05,0.000143496827593146,-4.46691295064027e-11,6.33174068731534e-11,-2.90781825701413e-05 +2.086,-5.57739851720675e-09,8.26144417806485e-09,2.50579027839815e-09,3.52317879731556e-10,1.47916331266762e-09,0.0799999959637075,-3.84191910246132e-07,-3.88763327086039e-07,1.00310518572066e-07,2.22287466211668e-11,2.97163335605255e-10,-4.9509656790958e-07,-4.46244061667877e-10,3.36970035208494e-10,2.70183181383387e-10,-6.07153216591882e-11,9.75781955236953e-11,-2.18575157973077e-10 +2.088,-1.94109713796714e-06,-1.32743824579271e-06,1.58667822013243e-06,3.523202771194e-10,1.4794650851635e-09,0.0799996321268837,-2.03784886643361e-09,1.03320477173874e-09,4.15115858354298e-10,2.20812951257088e-11,2.97411401062319e-10,-5.87051240952263e-10,1.86806401781831e-05,-8.54364192240386e-06,3.94729590810424e-05,-8.67361737988403e-11,1.0321604682062e-10,-1.78727779104326e-05 +2.09,-5.58554991267248e-09,8.2655769971518e-09,2.50745074183156e-09,3.52406204912059e-10,1.48035295827187e-09,0.0799999959613593,-3.094693495334e-07,-4.22937894775654e-07,2.58202354896236e-07,2.18818019259714e-11,2.97576199792537e-10,-5.66587679551311e-07,-4.84177585177714e-10,4.19803081186387e-10,3.71556084510782e-10,-9.21571846612678e-11,1.1145598333151e-10,-1.8995222061946e-10 +2.092,-1.94233501536528e-06,-1.32912999737181e-06,1.58771102955202e-06,3.52407804327104e-10,1.48065538996267e-09,0.079999629860533,-2.03978557677432e-09,1.03488398406348e-09,4.16602082692341e-10,2.17126663870637e-11,2.97857224995645e-10,-5.87811049834741e-10,-6.37667195657825e-06,-1.76635722107937e-05,3.57899940153088e-05,-9.67108337857069e-11,1.25333771139324e-10,-5.70912067621165e-06 +2.094,-5.59370905497958e-09,8.26971653308806e-09,2.50911715016233e-09,3.52493055577607e-10,1.48154438717185e-09,0.0799999959590081,-3.34976037359713e-07,-4.93592183618829e-07,4.01362330957472e-07,2.14949585908286e-11,2.98077534877095e-10,-5.89424162256157e-07,-5.05638011929349e-10,4.52545986795449e-10,4.27717757045531e-10,-9.58434720477185e-11,1.21864324187371e-10,-2.68014777038416e-10 +2.096,-1.94367491951472e-06,-1.33110436610628e-06,1.58931647887585e-06,3.52493784161467e-10,1.48184770010218e-09,0.0799996275028363,-2.04180812882204e-09,1.03669416801066e-09,4.18312953720523e-10,2.13292924988728e-11,2.98344682292395e-10,-5.88883108942894e-10,2.24547017535926e-05,1.1174135618533e-05,-8.19870571173301e-06,-7.9580439460436e-11,1.05818132034585e-10,4.02522893488965e-06 +2.098,-5.60187628749487e-09,8.2738633097601e-09,2.51079040197721e-09,3.52578372747603e-10,1.48273776590102e-09,0.0799999959566525,-2.45157230345343e-07,-4.48895641144697e-07,3.6856750811054e-07,2.11766368329869e-11,2.98500807405233e-10,-5.73323246516599e-07,-4.96503608626158e-10,5.04587691074753e-10,3.94974851436469e-10,-7.7412035115465e-11,1.3010426069826e-10,-2.2811613709095e-10 +2.1,-1.9446555484361e-06,-1.33289994867086e-06,1.59079074890829e-06,3.52578490708799e-10,1.4830417033318e-09,0.0799996252095434,-2.04379414325655e-09,1.03871251877496e-09,4.19892853126269e-10,2.1019644358411e-11,2.98865099335188e-10,-5.89795573491258e-10,1.52294271283022e-05,1.33154453175327e-05,-1.70049604822711e-05,-7.19910242530374e-11,1.40512601554121e-10,9.49861456850384e-06 +2.102,-5.61005146406789e-09,8.2780181598352e-09,2.51246997338972e-09,3.52662451325036e-10,1.48393322629836e-09,0.0799999959542934,-1.84239521832134e-07,-3.95633859874566e-07,3.00547666181455e-07,2.08886727359747e-11,2.99062857811449e-10,-5.35328788242583e-07,-4.79739132534101e-10,4.88324658487471e-10,3.27537476307871e-10,-5.22585447138013e-11,1.0321604682062e-10,-2.2811613709095e-10 +2.104,-1.94539250652343e-06,-1.33448248411036e-06,1.59199293957302e-06,3.52662045399743e-10,1.48423795476305e-09,0.0799996230682282,-2.04571309978668e-09,1.04066581740891e-09,4.212030030315e-10,2.08106101795557e-11,2.9927796352247e-10,-5.90708038039622e-10,1.87579203607618e-05,1.99847692648053e-05,-2.87137226972697e-05,-3.03576608295941e-11,9.54097911787243e-11,1.07410686248088e-05 +2.106,-5.61823431646704e-09,8.28218082310483e-09,2.51415478540185e-09,3.52745693765755e-10,1.48513033815245e-09,0.0799999959519305,-1.09207840389086e-07,-3.15694782815345e-07,1.85692775392376e-07,2.07672420926563e-11,2.99444496976164e-10,-4.92364513743348e-07,-4.4688780670779e-10,5.16513914972094e-10,2.54462249882348e-10,-1.23599047663347e-11,8.71698546678345e-11,-2.20309881449054e-10 +2.108,-1.94582933788498e-06,-1.33574526324162e-06,1.59273571067459e-06,3.52745114368114e-10,1.48543573275095e-09,0.0799996210987702,-2.04750065101351e-09,1.0427318730688e-09,4.2222085203103e-10,2.07611705604904e-11,2.99626642941142e-10,-5.91589277565418e-10,1.17877475155578e-05,1.65652808310768e-05,-2.65856956675053e-05,-6.50521303491302e-12,8.37004077158809e-11,8.97876391292573e-06 +2.11,-5.62642431907109e-09,8.28635175059711e-09,2.51584366880997e-09,3.52828738447997e-10,1.48632884472422e-09,0.0799999959495642,-6.20568503268553e-08,-2.49433659491038e-07,7.9349992722355e-08,2.07412212405167e-11,2.99779298607028e-10,-4.56449458091645e-07,-4.17112904545907e-10,4.83771009363032e-10,1.65015570652294e-10,8.23993651088983e-12,7.84962372879505e-11,-2.56739074444567e-10 +2.112,-1.94607756528629e-06,-1.33674299787959e-06,1.59305311064548e-06,3.52828079253076e-10,1.48663484994538e-09,0.0799996192729723,-2.0491691026317e-09,1.04466695710625e-09,4.22880914313639e-10,2.0794130306534e-11,2.99940627890294e-10,-5.92616233863196e-10,7.70532671955786e-06,1.30677172641841e-05,-2.27802127205148e-05,2.88397777881144e-11,6.85215773010838e-11,5.78194870454183e-06 +2.114,-5.63462099548162e-09,8.29053041842553e-09,2.51753519246722e-09,3.52911914969223e-10,1.48752860723578e-09,0.0799999959471937,-3.12355434486239e-08,-1.97162790434302e-07,-1.17708581597042e-08,2.08565803516691e-11,3.00053384916232e-10,-4.33321663273478e-07,-3.96878981501897e-10,4.63171168085807e-10,9.12898229232794e-11,3.4477629085039e-11,6.93889390390722e-11,-2.13370987545147e-10 +2.116,-1.94620250746009e-06,-1.33753164904132e-06,1.59300602721284e-06,3.52911505574482e-10,1.48783506348504e-09,0.0799996175396857,-2.0507566185577e-09,1.0465196417786e-09,4.23246073605332e-10,2.09320408228741e-11,3.0021818364645e-10,-5.93469717813377e-10,0.0605769198420749,0.0407658589801629,-0.0484241409861099,2.67104047213528e-09,5.00077410037214e-09,0.0235632412219286 +2.118,-5.64282402195585e-09,8.29471649699265e-09,2.51922817676165e-09,3.52995643132514e-10,1.48872947997036e-09,0.0799999959448198,0.000242276443824851,0.000162866273130217,-0.000193708334802599,3.15407422402103e-11,3.20056481317721e-10,9.38196432244408e-05,3.5930453219906e-08,-1.80409073097243e-08,-1.10248182111361e-08,2.37895640686769e-09,-5.34208094427057e-09,1.12531511886615e-08 +2.12,-9.7709673216068e-07,-6.86066556520454e-07,8.18172688002439e-07,3.53037668543443e-10,1.48911528941031e-09,0.0799999928182586,-1.90703480567808e-09,9.743560125397e-10,3.79146800760788e-10,3.04478664503449e-11,2.78849859869368e-10,-5.48457113058731e-10,-0.165741954454888,-0.110157858925147,0.132165416170688,-3.32980171213748e-09,-2.20461669753202e-08,-0.0554331910729635 +2.122,-5.65045216117856e-09,8.29861392104281e-09,2.52074476396469e-09,3.53117434598316e-10,1.48984487940984e-09,0.079999995942626,-0.000420691373994702,-0.000277765162570373,0.000334953329880153,1.82215353916604e-11,2.3187181341644e-10,-0.000127913121067413,-3.98743470425393e-08,2.06206579589362e-08,9.55745899089421e-09,-1.7427465720532e-09,5.60228946566709e-09,-1.34415048536063e-08 +2.124,-2.65986222813949e-06,-1.79712720680195e-06,2.15798600752305e-06,3.5311055468501e-10,1.49004277666398e-09,0.0799994811657743,-2.06653219384824e-09,1.05683864437545e-09,4.17376636724364e-10,2.34768801621321e-11,3.01259017732036e-10,-6.02223132473156e-10,0.164649393186462,0.108500362451524,-0.132557850781103,1.72908562467988e-09,2.69363524540988e-08,0.0365981748630741 +2.126,-5.65871828995396e-09,8.30284127562031e-09,2.52241427051159e-09,3.53211342118964e-10,1.49104991548077e-09,0.0799999959402171,0.000237906198751147,0.000156236287235725,-0.000195278073244261,2.51378778903799e-11,3.39617223232835e-10,1.84795783848834e-05,-6.75737813144242e-09,2.51057855060743e-09,3.8401356747264e-09,-1.45131302808909e-09,9.6103680569115e-10,-1.52482193538361e-09 +2.128,-1.7082374331349e-06,-1.17218205785904e-06,1.37687371454601e-06,3.53211106196571e-10,1.49140124555691e-09,0.0799995550840878,-2.09356170637401e-09,1.06688095857787e-09,4.3273717942327e-10,1.76716280497757e-11,3.05103164954801e-10,-6.0832242021469e-10,-0.0875358710390716,-0.0592114106706068,0.0720412279495976,-2.74801882638175e-09,-1.25429180930503e-08,-0.00459856420043785 +2.13,-5.66709253677945e-09,8.30710879945462e-09,2.52414521922928e-09,3.53282028631163e-10,1.49227032814059e-09,0.0799999959377838,-0.000112237285405139,-8.06093554467021e-05,9.28868385541292e-05,1.41458025848529e-11,2.89445550860634e-10,8.53215831320141e-08,-2.7351710306378e-10,6.5138866522929e-10,1.69731850102604e-09,-3.9183066513626e-10,3.07046055247895e-10,5.11743425413158e-11 +2.132,-2.15718657475546e-06,-1.49461947964585e-06,1.74842106876252e-06,3.53267689406911e-10,1.49255902776035e-09,0.0799995554253742,-2.09465577478626e-09,1.06948651323879e-09,4.39526453427374e-10,1.61043053892307e-11,3.06331349175792e-10,-6.08117722844525e-10,0.0438334863858658,0.0311126143212429,-0.0352515751259746,8.6822909972639e-10,6.49263628971219e-09,0.00110591324205961 +2.134,-5.6754711598786e-09,8.31138674550758e-09,2.52590332504299e-09,3.5334644585272e-10,1.49349565353729e-09,0.0799999959353513,6.30966601383243e-05,4.38411018382697e-05,-4.81194619497693e-05,1.76187189837584e-11,3.15416096019483e-10,4.50897455137044e-06,2.20628365837222e-09,-9.6927674220204e-11,2.50342281626903e-10,2.02962646689285e-10,0,6.1929628092372e-10 +2.136,-1.90479993420216e-06,-1.31925507229277e-06,1.55594322096345e-06,3.53338164282846e-10,1.49382069214443e-09,0.0799995734612724,-2.08583064015277e-09,1.06909880254191e-09,4.40527822553882e-10,1.69161559759878e-11,3.06331349175792e-10,-6.0564053772083e-10,-0.0224218232917648,-0.0154978297744936,0.0180679685901326,-1.2490009027033e-10,-3.38661390597572e-09,-0.000315645659783314 +2.138,-5.68381448243921e-09,8.31566314071774e-09,2.5276654363332e-09,3.53414110476624e-10,1.49472097893399e-09,0.0799999959329288,-2.65906330287348e-05,-1.81502172597048e-05,2.41524124107613e-05,1.71191186226771e-11,3.0186964039558e-10,3.24639191223719e-06,2.38290696853369e-09,-3.43908929112402e-10,-5.53593629271098e-10,4.10912623372006e-10,-1.9819215713035e-10,5.62917767954473e-10 +2.14,-2.0111624663171e-06,-1.39185594133159e-06,1.65255287060649e-06,3.53406640757337e-10,1.49502817070601e-09,0.07999958644684,-2.07629901227864e-09,1.06772316682546e-09,4.38313448036797e-10,1.85598064694758e-11,3.05538580547271e-10,-6.03388866649012e-10,0.011048920432318,0.00770845261038008,-0.00945658037412778,6.67434857382076e-10,1.43504999550181e-09,-0.000320983895713 +2.142,-5.69211967848832e-09,8.31993403338505e-09,2.52941869012535e-09,3.53488349702502e-10,1.49594313325618e-09,0.0799999959305152,1.7605048700537e-05,1.26835931818156e-05,-1.36739090857499e-05,1.97888580522054e-11,3.07609840377587e-10,1.96245632938519e-06,1.58680780646368e-09,-3.52799386926783e-10,-9.05091973590885e-10,4.18935719448398e-10,-2.42861286636753e-10,3.20923843055709e-10 +2.144,-1.94074227151495e-06,-1.34112156860433e-06,1.59785723426349e-06,3.53485796189545e-10,1.49625861006752e-09,0.0799995942966653,-2.06995178105278e-09,1.06631196927775e-09,4.34693080142434e-10,2.02355493472694e-11,3.04567135400724e-10,-6.02105171276789e-10,-0.00588878519003151,-0.00414771152991953,0.00452592954368509,2.6020852139652e-10,-1.08723793856846e-09,-0.000257835050185284 +2.146,-5.70039948561253e-09,8.32419928126216e-09,2.53115746244592e-09,3.53569291899891e-10,1.49716140179779e-09,0.0799999959281068,-5.95009205958901e-06,-3.90725293786253e-06,4.42980908899048e-06,2.08296921377915e-11,3.03260888623313e-10,9.31116128644049e-07,7.261647338129e-10,-2.56305393575573e-10,-9.64614672860352e-10,3.33283747822044e-10,-2.28549817959944e-10,1.12757025938492e-10 +2.148,-1.96454263975331e-06,-1.35675058035578e-06,1.61557647061945e-06,3.53569114958097e-10,1.49747165362202e-09,0.0799995980211299,-2.06704712211753e-09,1.06528674770345e-09,4.30834621450992e-10,2.15686843385576e-11,3.03652936128884e-10,-6.01654143173035e-10,0.00271140147542196,0.00186837358908884,-0.0024044309352789,3.53233067795777e-10,2.22044604925031e-10,-0.000148851011377848 +2.15,-5.708667674101e-09,8.32846042825297e-09,2.53288080093172e-09,3.53655566637245e-10,1.4983760135423e-09,0.0799999959257002,4.89551384209884e-06,3.56624141849282e-06,-5.18791465212512e-06,2.22426244089746e-11,3.04149067043013e-10,3.35712083132655e-07,1.58496805090225e-10,-1.35525271560688e-10,-8.5185764692186e-10,2.56739074444567e-10,-1.63497687610814e-10,-6.76542155630954e-11 +2.152,-1.94496058438491e-06,-1.34248561468181e-06,1.59482481201095e-06,3.53658085455733e-10,1.49868824989019e-09,0.0799995993639782,-2.06641313489717e-09,1.06474464661721e-09,4.27427190863305e-10,2.25956406363359e-11,3.02998945378441e-10,-6.01924760035288e-10,-0.00158051121656964,-0.00110892525544137,0.00126827100937251,1.7802599672212e-10,-3.95516952522712e-10,-7.85619572868378e-05 +2.154,-5.71693332664059e-09,8.33271940683944e-09,2.53459050969518e-09,3.53745949199791e-10,1.49958800932382e-09,0.0799999959232925,-1.42653102417972e-06,-8.6945960327267e-07,-1.14830614635075e-07,2.29547283958631e-11,3.02566999232922e-10,2.14642539853038e-08,-1.41935616905508e-10,-9.75781955236953e-12,-6.1777839788224e-10,1.71087102818212e-10,-1.37476835471162e-10,-1.62196645003831e-10 +2.156,-1.95066670848163e-06,-1.3459634530949e-06,1.59436548955241e-06,3.53749904369316e-10,1.49989851788712e-09,0.0799995994498352,-2.06698087736479e-09,1.064705615339e-09,4.24956077271776e-10,2.32799890476087e-11,3.02449038036556e-10,-6.02573546615303e-10,0.000642506405426677,0.000438680514656952,-0.000470048472692683,1.48318857196017e-10,2.03830008427275e-11,-4.83367582071458e-05 +2.158,-5.72520125015005e-09,8.3369782293008e-09,2.53629033400427e-09,3.53839069155981e-10,1.50079780547596e-09,0.0799999959208822,1.14349459752699e-06,8.8526245535514e-07,-1.99502450540581e-06,2.35480038246471e-11,3.02648531236293e-10,-1.7188277884328e-07,-2.7296822571396e-10,1.047339298621e-10,-3.52040445406043e-10,8.93382590128055e-11,-3.64291929955129e-11,-1.70002900645727e-10 +2.16,-1.94609273009152e-06,-1.34242240327348e-06,1.58638539153079e-06,3.53844096384615e-10,1.50110911201207e-09,0.0799995987623041,-2.06807275026765e-09,1.06512455105845e-09,4.23547915490152e-10,2.363734208366e-11,3.02303321264574e-10,-6.03253558217886e-10,-0.000436179305649382,-0.000320566527749893,0.000446497803682256,3.70797142990034e-11,-9.49761103097301e-11,-3.85267096003616e-05 +2.162,-5.73347354115112e-09,8.34123872750503e-09,2.53798452566623e-09,3.53933618524316e-10,1.50200701876102e-09,0.0799999959184692,-6.01222625070535e-07,-3.97003655644434e-07,-2.09033290676785e-07,2.36963226818432e-11,3.02268626795054e-10,-3.25989617244726e-07,-3.51467851133699e-10,2.10985742765679e-10,-5.67037736209918e-11,2.73218947466339e-11,2.21177243187043e-11,-1.90819582357449e-10 +2.164,-1.9484976205918e-06,-1.34401041789606e-06,1.58554925836808e-06,3.53938881675342e-10,1.50231818651925e-09,0.0799995974583456,-2.06947862167218e-09,1.06596849402951e-09,4.23321100395668e-10,2.37466296626465e-11,3.02391792161849e-10,-6.04016836547316e-10,0.000148495048251713,8.05375928707856e-05,-3.333679176893e-05,-8.02309607639273e-12,5.72458747072346e-11,-3.22780352793316e-05 +2.166,-5.74175145563781e-09,8.34550260148115e-09,2.53967781006781e-09,3.54028605042966e-10,1.50321658592967e-09,0.0799999959160531,-7.24243206368362e-09,-7.48532841612914e-08,-3.42380457752505e-07,2.36642302975376e-11,3.02497610293883e-10,-4.55101758362053e-07,-4.21520864003419e-10,3.40439482160448e-10,1.77917576504871e-10,-4.96564594998353e-11,5.76795555762288e-11,-2.12503625807159e-10 +2.168,-1.94852659032006e-06,-1.3443098310327e-06,1.58417973653707e-06,3.54033538596532e-10,1.50352817696042e-09,0.0799995956379386,-2.0711647051282e-09,1.06733025195815e-09,4.24032770701687e-10,2.35480038246471e-11,3.02622510384154e-10,-6.04866851050545e-10,-0.00011252764509312,-0.000100728082992607,0.000159076810534939,-6.78710559975917e-11,6.50521303491302e-11,-2.26321452898026e-05 +2.17,-5.75003611445832e-09,8.34977192248898e-09,2.54137394115062e-09,3.54122797058265e-10,1.5044270759712e-09,0.0799999959136336,-4.57353012436163e-07,-4.7776561613172e-07,2.93926784387249e-07,2.33927460735472e-11,3.0275781881528e-10,-5.45630339521263e-07,-4.71184099766833e-10,3.96167473826203e-10,3.42391046070922e-10,-7.91467585914418e-11,1.16226472890446e-10,-2.32452945780892e-10 +2.172,-1.9503560023698e-06,-1.34622089349723e-06,1.58535544367462e-06,3.54127109580826e-10,1.50473920823568e-09,0.0799995934554172,-2.07304944152726e-09,1.06891492185346e-09,4.25402334885971e-10,2.32314167902814e-11,3.03087416275716e-10,-6.05796662833668e-10,4.81687188915021e-05,1.7193107831534e-05,2.80908434534266e-06,-9.19403442267707e-11,1.31405303305243e-10,-1.04675096715412e-05 +2.174,-5.75832831222443e-09,8.35404758217639e-09,2.54307555049016e-09,3.54215722725426e-10,1.50563942563631e-09,0.0799999959112105,-2.64678136870154e-07,-4.08993184805584e-07,3.0516312176862e-07,2.30249846966401e-11,3.03283440028501e-10,-5.87500378207428e-07,-5.07477767490785e-10,4.62737487216813e-10,4.30103001824999e-10,-1.01264482910146e-10,1.27068494615301e-10,-2.2811613709095e-10 +2.176,-1.95141471491728e-06,-1.34785686623645e-06,1.5865760961617e-06,3.54219209519613e-10,1.5059523419958e-09,0.0799995911054157,-2.07507935259723e-09,1.07076587180233e-09,4.27122746893271e-10,2.28263588586408e-11,3.03595690254177e-10,-6.06709127382032e-10,-1.2328526722183e-05,-1.65032863676945e-05,2.87212093301111e-05,-9.58434720477185e-11,1.32272665043231e-10,6.92637787402805e-07 +2.178,-5.76662862963482e-09,8.3583306456636e-09,2.54478404147773e-09,3.54307028160861e-10,1.50685380839732e-09,0.0799999959087836,-3.13992243758886e-07,-4.75006330276361e-07,4.20047959089065e-07,2.26416108084493e-11,3.03812530688674e-10,-5.84729827057817e-07,-5.17184765066319e-10,5.06972935854221e-10,4.47124975933022e-10,-8.28330459778925e-11,1.26201132877313e-10,-2.41126563160776e-10 +2.18,-1.95267068389232e-06,-1.34975689155756e-06,1.58825628799805e-06,3.54309775962847e-10,1.50716759211855e-09,0.0799995887664964,-2.07714809165749e-09,1.07279376354574e-09,4.28911246797003e-10,2.24950266747292e-11,3.04100494785686e-10,-6.07673633634675e-10,3.00337799572501e-05,2.08248897726887e-05,-2.37915982487929e-05,-7.97972798949331e-11,1.26634813746307e-10,8.06348911253085e-06 +2.182,-5.77493722200145e-09,8.36262182071779e-09,2.54649968646492e-09,3.5439700826756e-10,1.50807021037647e-09,0.0799999959063529,-1.93857123929886e-07,-3.91706771185607e-07,3.24881566093893e-07,2.23224216888695e-11,3.04319069943659e-10,-5.52475870607693e-07,-5.00535485455089e-10,5.11092904109666e-10,3.82072845583891e-10,-7.63278329429794e-11,1.3314002678122e-10,-2.60208521396521e-10 +2.184,-1.95344611238804e-06,-1.3513237186423e-06,1.58955581426243e-06,3.54399065649602e-10,1.50838486839833e-09,0.0799995865565929,-2.07915023359931e-09,1.07483813516218e-09,4.30439538179339e-10,2.21897153429573e-11,3.04633054892811e-10,-6.08714467720261e-10,1.19427588241157e-05,1.35526052186252e-05,-2.08162217931601e-05,-6.17995238316737e-11,1.17527515497429e-10,1.08663009146248e-05 +2.186,-5.78325382293585e-09,8.36692117325843e-09,2.54822144461764e-09,3.54485767128931e-10,1.50928874259604e-09,0.0799999959039181,-1.46086088633423e-07,-3.37496350311106e-07,2.41616678921252e-07,2.20752235935428e-11,3.04789180005649e-10,-5.09010666949194e-07,-4.78265295205879e-10,5.2128440453103e-10,3.15719672627779e-10,-4.46691295064027e-11,8.54351311918577e-11,-2.1163626406917e-10 +2.188,-1.95403045674257e-06,-1.35267370404354e-06,1.59052228097811e-06,3.54487366543976e-10,1.50960402511835e-09,0.0799995845205503,-2.08106329478014e-09,1.0769232727803e-09,4.3170241686985e-10,2.20110388249317e-11,3.04974795417578e-10,-6.09561012776538e-10,1.80471930768513e-05,2.02802442807875e-05,-3.16117891412115e-05,-1.90819582357449e-11,1.04083408558608e-10,9.95255006880357e-06 +2.19,-5.79157807611497e-09,8.37122886634956e-09,2.54994825428512e-09,3.54573811284231e-10,1.51050864177771e-09,0.0799999959014798,-7.38973163260172e-08,-2.56375373187956e-07,1.15169522356406e-07,2.19988957605999e-11,3.05205513639883e-10,-4.6920046667398e-07,-4.43926579524189e-10,4.86806775445991e-10,2.18791998407575e-10,-3.90312782094781e-12,1.11022302462516e-10,-2.5500435096859e-10 +2.192,-1.95432604600788e-06,-1.3536992055363e-06,1.59098295906754e-06,3.54575362127019e-10,1.51082484717291e-09,0.0799995826437484,-2.08283900109823e-09,1.07887049988209e-09,4.3257758486348e-10,2.19954263136479e-11,3.05418884627428e-10,-6.10581030180412e-10,8.18631316909316e-06,1.34713065355618e-05,-2.45231368848838e-05,2.16840434497101e-12,8.19656842399041e-11,6.92083716724577e-06 +2.194,-5.79990943211936e-09,8.37554434834908e-09,2.55167856462457e-09,3.54661792989486e-10,1.51173031731622e-09,0.0799999958990375,-4.11520636496446e-08,-2.02490147045708e-07,1.70769748168709e-08,2.20075693779797e-11,3.05533376376843e-10,-4.41517118004997e-07,-4.14060197804003e-10,4.90493062832442e-10,1.49403059368502e-10,1.3010426069826e-11,6.50521303491302e-11,-2.27248775352962e-10 +2.196,-1.95449065426247e-06,-1.35450916612448e-06,1.59105126696681e-06,3.54663392404531e-10,1.51204698067842e-09,0.0799995808776799,-2.08449524188945e-09,1.08083247213342e-09,4.33175197100954e-10,2.20474680179272e-11,3.05679093148825e-10,-6.11490025281824e-10,5.23514505061813e-06,9.98698367928039e-06,-1.96555629845135e-05,2.73218947466347e-11,5.03069808033274e-11,3.32817367415527e-06 +2.198,-5.80824741308692e-09,8.37986767823762e-09,2.55341126541297e-09,3.54749982861557e-10,1.51295303368881e-09,0.0799999958965915,-2.0211483447172e-08,-1.62542212328587e-07,-6.15452771211832e-08,2.21168569569663e-11,3.05734604300056e-10,-4.28204423308376e-07,-3.98329101907596e-10,4.73796349376165e-10,8.47846098883664e-11,4.14165229889462e-11,4.90059381963448e-11,-2.45463371850718e-10 +2.2,-1.95457150019626e-06,-1.35515933497379e-06,1.59080508585832e-06,3.54751859832358e-10,1.51326991909562e-09,0.0799995791648622,-2.08608855829708e-09,1.08272765753092e-09,4.33514335540508e-10,2.2213134109883e-11,3.0587511690161e-10,-6.12471878769227e-10,-4.54264769111358e-07,3.96475929344275e-06,-1.07107885928548e-05,4.77048955893621e-11,8.37004077158809e-11,2.72257910660656e-07 +2.202,-5.81659176732011e-09,8.38419858886774e-09,2.55514532275514e-09,3.54838835397997e-10,1.51417653415642e-09,0.0799999958941417,-2.20285425236175e-08,-1.46683175154816e-07,-1.04388431492602e-07,2.23076765393237e-11,3.0606940593092e-10,-4.27115391665733e-07,-3.88923648061284e-10,4.60785923306339e-10,4.42354486374085e-11,4.59701721133853e-11,5.98479599211998e-11,-2.16840434497101e-10 +2.204,-1.95465961436636e-06,-1.35574606767441e-06,1.59038753213235e-06,3.54841090538516e-10,1.51449419671934e-09,0.0799995774564007,-2.08764425288933e-09,1.08457080122415e-09,4.33691277335057e-10,2.23970147983365e-11,3.06114508741295e-10,-6.13339240507215e-10,-2.87662411997831e-06,2.70909379998518e-07,-3.98152821476371e-06,4.05491612509578e-11,2.55871712706579e-11,-1.70777367941577e-06 +2.206,-5.82494234433167e-09,8.38853687207264e-09,2.55688008786448e-09,3.5492842345719e-10,1.51540099219138e-09,0.0799999958916883,-3.35350390035307e-08,-1.45599537634822e-07,-1.20314544351657e-07,2.24698731843276e-11,3.06171754616002e-10,-4.33946486383396e-07,-3.88859273557293e-10,4.51895465491958e-10,4.85722573273506e-11,5.11743425413158e-11,5.98479599211998e-11,-2.38524477946811e-10 +2.208,-1.95479375452237e-06,-1.35632846582495e-06,1.58990627395494e-06,3.54930970031253e-10,1.5157188837378e-09,0.0799995757206147,-2.08919968998355e-09,1.08637838308612e-09,4.33885566364367e-10,2.26017121685018e-11,3.0635390058098e-10,-6.14293338419003e-10,-4.69963156322287e-06,-2.56679811953819e-06,1.67224730156928e-06,5.5944832100252e-11,6.50521303491302e-11,-2.53530443167227e-06 +2.21,-5.8332991430916e-09,8.39288238560498e-09,2.55861563012993e-09,3.55018830305864e-10,1.51662640779371e-09,0.0799999958892311,-5.23335652564222e-08,-1.55866730112974e-07,-1.1362555514538e-07,2.26936525127286e-11,3.06431963137399e-10,-4.44087704110085e-07,-3.93219799169758e-10,4.44089209850062e-10,5.09575021068187e-11,3.92481186439752e-11,3.81639164714897e-11,-2.15105711021124e-10 +2.212,-1.9550030887834e-06,-1.3569519327454e-06,1.58945177173436e-06,3.55021744641304e-10,1.51694461159035e-09,0.0799995739442639,-2.09077256918023e-09,1.08815473992552e-09,4.34089396372794e-10,2.27587046430777e-11,3.06506556246866e-10,-6.15153761263087e-10,-4.75990062387973e-06,-3.58598914451668e-06,4.71695035461627e-06,3.90312782094781e-11,5.68121938382404e-11,-2.43079254641508e-06 +2.214,-5.84166223336832e-09,8.39723500456468e-09,2.56035198771543e-09,3.55109865124437e-10,1.5178524340187e-09,0.0799999958867705,-7.13731677519412e-08,-1.70210686691041e-07,-9.4757753726915e-08,2.28497776255665e-11,3.06659211912752e-10,-4.53810874295745e-07,-4.01317434145509e-10,4.44089209850062e-10,6.76542155630954e-11,4.0982842119952e-11,6.6786853825107e-11,-2.38524477946811e-10 +2.216,-1.9552885814544e-06,-1.35763277549217e-06,1.58907274071945e-06,3.55113143751806e-10,1.518171248438e-09,0.0799995721290204,-2.09237783891682e-09,1.08993109676492e-09,4.34360013235046e-10,2.29226360115575e-11,3.06773703662166e-10,-6.16107859174874e-10,-4.15949135486488e-06,-3.59034698672877e-06,5.88864634137875e-06,2.25514051876985e-11,4.55364912443911e-11,-1.74958051518681e-06 +2.218,-5.85003174472399e-09,8.40159472895174e-09,2.56208942776837e-09,3.55201555668483e-10,1.51907952883334e-09,0.0799999958843061,-8.80111331714007e-08,-1.84572074637956e-07,-7.12031683614e-08,2.29399832463173e-11,3.06841357877729e-10,-4.60809196356493e-07,-4.10661901619619e-10,4.16984155537925e-10,9.72529348719497e-11,1.84314369322536e-11,5.8113236445223e-11,-2.43728648374741e-10 +2.22,-1.95564062598709e-06,-1.35837106379072e-06,1.58878792804601e-06,3.55204903684792e-10,1.51939861386952e-09,0.0799995702857836,-2.09402048652329e-09,1.09159903338707e-09,4.34749024974534e-10,2.29963617592865e-11,3.07006156607947e-10,-6.17082773768373e-10,-2.96837503714489e-06,-2.7667852817853e-06,5.4037425575859e-06,3.12250225675825e-11,8.93382590128055e-11,-8.56446857877557e-07 +2.222,-5.85840782667008e-09,8.40596112508529e-09,2.56382842386826e-09,3.5529354111552e-10,1.52030755345978e-09,0.0799999958818377,-9.98846333199803e-08,-1.95639215765097e-07,-4.95881981310564e-08,2.30648833365876e-11,3.07198710913781e-10,-4.64234983788003e-07,-4.21734316306023e-10,4.39318720291126e-10,1.06577073555325e-10,2.05998412772246e-11,7.37257477290142e-11,-1.96891114523367e-10 +2.224,-1.95604016452037e-06,-1.35915362065378e-06,1.58858957525349e-06,3.55297163218138e-10,1.52062740871317e-09,0.0799995684288437,-2.09570742378852e-09,1.09335630826823e-09,4.35175333268755e-10,2.30787611243954e-11,3.07301059598863e-10,-6.17870338226467e-10,-1.73555805753974e-06,-1.6769667252059e-06,4.05259614928709e-06,8.23993651088983e-12,5.33427468862868e-11,-4.47714781914854e-08 +2.226,-5.86679065636524e-09,8.41033455031837e-09,2.56556912520134e-09,3.55385856160018e-10,1.52153675769817e-09,0.0799999958793663,-1.06826865550139e-07,-2.02347082665921e-07,-3.3377813533908e-08,2.30978430826312e-11,3.07412081901326e-10,-4.64414069700769e-07,-4.29113667342606e-10,4.36499794642664e-10,1.46150452851046e-10,7.37257477290142e-12,7.50267903359968e-11,-2.50667542278648e-10 +2.228,-1.95646747198257e-06,-1.35996300898444e-06,1.58845606399935e-06,3.55389554590468e-10,1.52185705704078e-09,0.0799995665711874,-2.09742387845789e-09,1.0951023074468e-09,4.3575993508016e-10,2.3108251423487e-11,3.07601166760207e-10,-6.18873008395581e-10,-6.29458213118961e-07,-6.04240615875717e-07,2.36832276880039e-06,-1.5178830414797e-12,6.98226199080664e-11,5.02082750375443e-07 +2.23,-5.87518035187907e-09,8.41471495954815e-09,2.56731216494166e-09,3.55478289165712e-10,1.52276716236521e-09,0.0799999958768908,-1.09344698402615e-07,-2.04764045129424e-07,-2.39045224587064e-08,2.30917715504652e-11,3.07691372380958e-10,-4.62405738699267e-07,-4.318919354096e-10,4.26091453786803e-10,1.47017814589034e-10,4.33680868994201e-12,6.07153216591882e-11,-2.25514051876985e-10 +2.232,-1.95690485077618e-06,-1.36078206516496e-06,1.58836044590951e-06,3.5548192167667e-10,1.5230878225303e-09,0.0799995647215644,-2.09915144619953e-09,1.09680667326195e-09,4.36348006338516e-10,2.31255986582468e-11,3.07844028046844e-10,-6.19775064603089e-10,1.63511009745008e-07,1.98777192622623e-07,8.50903115329204e-07,1.06251812903579e-11,8.54351311918577e-11,7.16392223321093e-07 +2.234,-5.88357695766387e-09,8.4191021862412e-09,2.56905755696701e-09,3.55570791560345e-10,1.5239985384774e-09,0.0799999958744117,-1.08690654363635e-07,-2.03968936358933e-07,-2.05009099973896e-08,2.31342722756267e-11,3.08033112905725e-10,-4.59540169805983e-07,2.94102578662218e-08,-1.59303993607639e-08,-7.92465051913104e-09,1.33812232128161e-09,-4.38798303248333e-09,1.00154259885521e-08 +2.236,-1.95733961339364e-06,-1.3615979409104e-06,1.58827844226953e-06,3.55574458765773e-10,1.52431995498192e-09,0.0799995628834038,-1.98151041473464e-09,1.0330850758189e-09,4.04649404261992e-10,2.84780879433732e-11,2.90292095916911e-10,-5.79713360648881e-10,-0.0250989264739264,-0.0150413968129717,0.0211115938892996,1.86049092798512e-09,-9.51886139355373e-09,-0.0106237701153616 +2.238,-5.8915029993228e-09,8.42323452654448e-09,2.57067615458406e-09,3.55684703912118e-10,1.52515970686107e-09,0.0799999958720928,-0.000100504396550069,-6.03695561882458e-05,8.44258746472009e-05,3.05762359875672e-11,2.6995766733151e-10,-4.29546206312525e-05,-2.30138140261318e-08,1.3979702812028e-08,3.12488750153772e-09,3.58870919092702e-10,3.38444550163075e-09,-9.20791221048488e-09 +2.24,-2.35935719959391e-06,-1.60307616566338e-06,1.92598194085833e-06,3.55696763709723e-10,1.52539978565125e-09,0.0799993910649212,-2.07356567083917e-09,1.08900388706701e-09,4.17148954268142e-10,2.9913571619744e-11,3.03829877923434e-10,-6.1654500949082e-10,0.0563123904928994,0.0350793584328115,-0.0485004980595518,-5.54677831443584e-10,1.47941554839992e-08,0.0175847939942047 +2.242,-5.89979726200616e-09,8.42759054209274e-09,2.57234475040113e-09,3.55804358198597e-10,1.52637502637276e-09,0.0799999958696266,0.000124745165421528,7.99478775430004e-05,-0.000109576117591006,2.83575246617928e-11,3.29134289267507e-10,2.73845553455665e-05,-1.53038185964938e-08,6.44232930890886e-09,5.8629316679326e-09,-2.05065998903908e-09,1.9598038469848e-09,-4.32900243430012e-09 +2.244,-1.8603765379078e-06,-1.28328465549138e-06,1.4876774704943e-06,3.5581019380837e-10,1.52671632280832e-09,0.0799995006031426,-2.13478094522514e-09,1.11477320430264e-09,4.40600680939873e-10,2.17109316635877e-11,3.11669093311373e-10,-6.33861019228021e-10,-0.0463451627608295,-0.0317214165950277,0.0396779682794619,-2.5951463200613e-09,-6.1691103614425e-09,-0.00761872845887744 +2.246,-5.90833638578706e-09,8.43204963490995e-09,2.57410715312489e-09,3.55891201925251e-10,1.52762170274601e-09,0.0799999958670912,-6.06354856217897e-05,-4.69377888371105e-05,4.91357555268412e-05,1.79769393815476e-11,3.04457847821737e-10,-3.09035848994332e-06,-3.08533445103273e-09,1.44263941070921e-09,2.96269085653389e-09,-9.66457816553577e-10,6.16694195709754e-10,-5.53376788836601e-10 +2.248,-2.10291848039496e-06,-1.47103581083982e-06,1.68422049260167e-06,3.55882101565896e-10,1.52793415419961e-09,0.0799994882417087,-2.14712228302927e-09,1.12054376194548e-09,4.52451444366008e-10,1.78451003973734e-11,3.14135870094212e-10,-6.36074526383367e-10,0.024091984496258,0.0177928840819005,-0.0186883828171783,3.64291929955129e-11,3.80771802976909e-09,0.00202865785281503 +2.25,-5.91692487491918e-09,8.43653180995774e-09,2.57591695890236e-09,3.55962582326841e-10,1.52887824622638e-09,0.0799999958645469,3.57324523632423e-05,2.42337474904916e-05,-2.56177757418721e-05,1.81226561535297e-11,3.19688719940814e-10,5.02427292131679e-06,1.28192676742897e-09,2.51101223147643e-10,1.04668877731751e-09,-6.65700133906099e-11,1.75207071073657e-10,4.31946145518225e-10 +2.252,-1.95998867094199e-06,-1.37410082087785e-06,1.58174938963418e-06,3.55954592190511e-10,1.52921290907937e-09,0.0799995083388003,-2.14199457595956e-09,1.12154816683807e-09,4.56638199475278e-10,1.7578820343811e-11,3.14836698378506e-10,-6.34346741801294e-10,-0.0121205038031395,-0.00822177415168641,0.00974409562607725,-6.54858112181244e-11,-1.77635683940025e-09,-0.000205729393590314 +2.254,-5.92549285322302e-09,8.44101800262509e-09,2.57774351170026e-09,3.56032897608216e-10,1.5301375930199e-09,0.0799999958620095,-1.27495628493156e-05,-8.65334911625409e-06,1.33586067624369e-05,1.78607129086572e-11,3.12583292583213e-10,4.20135534695553e-06,2.51302816989089e-09,-2.44379169678232e-10,-1.73038666728686e-10,3.43908929112402e-10,-9.84455572616837e-11,6.80011602582908e-10 +2.256,-2.01098692233925e-06,-1.40871421734287e-06,1.63518381668393e-06,3.56026035042145e-10,1.5304632422497e-09,0.0799995251442217,-2.13194246327999e-09,1.12057065015936e-09,4.55946044808364e-10,1.89544560602606e-11,3.1444291614946e-10,-6.31626695390963e-10,0.00597560417251058,0.00426282678730668,-0.00520566681579646,5.52726267533109e-10,7.28150179041264e-10,-0.000337469293829051 +2.258,-5.93402062307614e-09,8.44550028522573e-09,2.57956729587949e-09,3.56108715432457e-10,1.5313953646845e-09,0.079999995859483,1.11528538407267e-05,8.39795803297266e-06,-7.46406050074893e-06,2.00716179787896e-11,3.15495893299378e-10,2.85147817163933e-06,2.07402115772436e-09,-3.94649590784723e-10,-7.99057001121816e-10,4.50377582450477e-10,-2.3332030751888e-10,4.57966997657877e-10 +2.26,-1.96637550697634e-06,-1.37512238521098e-06,1.60532757468093e-06,3.5610632151406e-10,1.5317252258229e-09,0.0799995365501344,-2.1236463786491e-09,1.11899205179622e-09,4.52749816803876e-10,2.07559663900625e-11,3.13509634919384e-10,-6.29794827400331e-10,0.0574574921495557,0.0392645219159451,-0.04606658860558,3.11946649067529e-09,4.21971485531357e-09,0.0273439253644161 +2.262,-5.94251520859073e-09,8.44997625343291e-09,2.58137829514671e-09,3.56191739298017e-10,1.53264940322417e-09,0.0799999958569638,0.00024098282243895,0.000165456045696753,-0.000191730414923069,3.25494839414908e-11,3.32374752720632e-10,0.000112227179629304,3.83684529053949e-08,-1.99443326437398e-08,-1.28065960613988e-08,2.91346807790304e-09,-5.79050696281058e-09,1.2341690169837e-08 +2.264,-1.00244421722055e-06,-7.13298202423968e-07,8.38405914988655e-07,3.56236519449826e-10,1.53305472483378e-09,0.0799999854588529,-1.97017256702752e-09,1.03921472122126e-09,4.01523432558281e-10,3.24098387016747e-11,2.90347607068142e-10,-5.80428066720983e-10,-0.164820452218573,-0.111628988171347,0.130613262637599,-3.00931154995076e-09,-2.22374202385466e-08,-0.0655331941004643 +2.266,-5.95039589885884e-09,8.4541331123178e-09,2.58298438887694e-09,3.56321378652824e-10,1.53381079365245e-09,0.0799999958546421,-0.000418298986435343,-0.000281059906988637,0.000330722635627327,2.05122377416877e-11,2.43425071766445e-10,-0.000149905596772554,-3.96636763960299e-08,2.10380757953432e-08,8.96006359385468e-09,-1.59399403398819e-09,5.45266956586409e-09,-1.38760530843385e-08 +2.268,-2.67564016296192e-06,-1.83753783037852e-06,2.16129645749796e-06,3.56318568400793e-10,1.53402842512085e-09,0.0799993858364658,-2.12882727261164e-09,1.12336702440263e-09,4.373636869337e-10,2.60338625657219e-11,3.12158285331598e-10,-6.35932279058337e-10,0.164081083910631,0.110050135986072,-0.131572460189714,1.87371819448945e-09,2.66822154648682e-08,0.0435935964210667 +2.27,-5.95891120794929e-09,8.45862658041541e-09,2.58473384362468e-09,3.56425514103087e-10,1.53505942679377e-09,0.0799999958520984,0.000238025349207183,0.00015914063695565,-0.00019556720513153,2.80071105196455e-11,3.50153933625918e-10,2.44687889117134e-05,2.30968944057301e-08,-1.42735216007717e-08,-4.93246936350554e-09,3.16587034365767e-11,-3.71491032380433e-09,8.79938483189235e-09 +2.272,-1.72353876613318e-06,-1.20097528255592e-06,1.37902763697184e-06,3.56430596842872e-10,1.53542904085535e-09,0.0799994837116215,-2.03643969498872e-09,1.06627293799955e-09,4.17633809479678e-10,2.61604973794682e-11,2.97298644036381e-10,-6.00734739730768e-10,-0.114839858712985,-0.0766741296031637,0.0943824537478868,-8.04911692853237e-10,-2.26160236371786e-08,-0.0176270356765789 +2.274,-5.96705696672925e-09,8.46289167216741e-09,2.58640437886259e-09,3.56530156092605e-10,1.53624862136992e-09,0.0799999958496954,-0.000221334085644759,-0.000147555881457005,0.000181962609860017,2.47874637482326e-11,2.59689839077204e-10,-4.60393537946024e-05,-2.26985381987682e-08,1.40295761119624e-08,4.19846449273286e-09,4.90059381963448e-11,3.50934559190108e-09,-8.94249951866043e-09 +2.276,-2.60887510871222e-06,-1.79119880838394e-06,2.10687807641191e-06,3.56529746697865e-10,1.53646780021166e-09,0.0799992995542063,-2.12723384778379e-09,1.12239124244739e-09,4.34427667450609e-10,2.63565211322536e-11,3.11336026403985e-10,-6.3650473780541e-10,0.105340415098279,0.0702091232955211,-0.0871451087530987,4.65339572430778e-10,2.18917765859583e-08,0.0206303935254559 +2.278,-5.97556590212038e-09,8.46738123713719e-09,2.5881420895324e-09,3.56635582177134e-10,1.53749396547553e-09,0.0799999958471494,0.000200027574748357,0.00013328061172508,-0.000166617825152378,2.66488220379557e-11,3.47256945421037e-10,3.64822203072212e-05,-1.27160922850505e-08,5.82433407059212e-09,5.8100226019153e-09,-1.82688066063807e-09,1.82449541585861e-09,-3.53623380577869e-09 +2.28,-1.80876480971879e-06,-1.25807636148362e-06,1.4404067758024e-06,3.56636341986016e-10,1.53785682799334e-09,0.0799994454830875,-2.17809821692399e-09,1.14568857872976e-09,4.57667757858271e-10,1.90489984897013e-11,3.1863400806742e-10,-6.50649673028524e-10,-0.0729496328497461,-0.0504280087980281,0.0606709306407662,-2.80938466934443e-09,-1.02504810195469e-08,-0.00892873567616413 +2.282,-5.98427829498808e-09,8.47196399145211e-09,2.58997276056383e-09,3.56711778171093e-10,1.5387685015078e-09,0.0799999958445468,-9.17709566506277e-05,-6.8431423467033e-05,7.60658974106875e-05,1.54112833605779e-11,3.06255021342849e-10,7.67277602564675e-07,-2.39056414637686e-10,5.36680075380324e-10,2.23519119879611e-09,-5.76145034458797e-10,3.54317269968263e-10,3.03576608295941e-10 +2.284,-2.1758486363213e-06,-1.53180205535175e-06,1.74467036544515e-06,3.56697987119459e-10,1.53908184807872e-09,0.079999448552198,-2.17905444258254e-09,1.14783529903128e-09,4.66608522653455e-10,1.67444183518661e-11,3.20051277147293e-10,-6.49435366595341e-10,0.0369774109381057,0.0269800180573501,-0.0293209360040323,6.9475675212871e-10,5.42448030937946e-09,0.0018080952611868 +2.286,-5.99299451275841e-09,8.47655533264824e-09,2.59183919465444e-09,3.567787558445e-10,1.54004870661639e-09,0.0799999958419491,5.61386871017951e-05,3.94886487623674e-05,-4.12178466054416e-05,1.81903103690928e-11,3.27952942580367e-10,7.99965864731188e-06,3.32502275224907e-09,-6.10405823109338e-10,1.27285335049798e-10,2.86229373536173e-10,-1.1145598333151e-10,1.02261948908833e-09 +2.288,-1.95129388791412e-06,-1.37384746030228e-06,1.57979897902338e-06,3.56770748360935e-10,1.54039365984904e-09,0.0799994805508325,-2.16575435157354e-09,1.14539367573885e-09,4.67117663993654e-10,1.78893358460108e-11,3.19605453213967e-10,-6.45344888638987e-10,-0.0190707635280203,-0.0132729018793593,0.0150975030064476,9.77950359581924e-11,-3.04443970033928e-09,-0.00058011257429713 +2.29,-6.0016575301647e-09,8.48113690735119e-09,2.59370766531042e-09,3.56850313187884e-10,1.54132712842925e-09,0.0799999958393677,-2.01443670102861e-05,-1.36029587550698e-05,1.91721654203489e-05,1.85814905129256e-11,3.1577518377901e-10,5.67920835012336e-06,3.66405107751939e-09,-9.81202966099381e-10,-1.07032438467769e-09,5.92624907480575e-10,-3.62557206479152e-10,1.02522157430229e-09 +2.292,-2.03187135595527e-06,-1.42825929532256e-06,1.65648764070478e-06,3.56845074322987e-10,1.54165676058415e-09,0.0799995032676659,-2.15109814726347e-09,1.14146886387445e-09,4.62836366454944e-10,2.02598354759331e-11,3.1815522438805e-10,-6.41244002341778e-10,0.00920808180913735,0.00652908080747172,-0.00800046932153928,8.15970555012589e-10,9.97465998686663e-10,-0.000522087528591341 +2.294,-6.01026192275375e-09,8.48570278280669e-09,2.59555901077624e-09,3.56931352529788e-10,1.5425997493268e-09,0.0799999958368027,1.66879602262634e-05,1.25133644748171e-05,-1.28297118658083e-05,2.18453727329759e-11,3.19765047773757e-10,3.590858235758e-06,3.26375889205323e-08,-1.76312957289593e-08,-9.79945291579296e-09,1.9741153156616e-09,-4.93528828915401e-09,1.10987607992996e-08 +2.296,-1.96511951505021e-06,-1.37820583742329e-06,1.60516879324155e-06,3.56932455813919e-10,1.54293582077525e-09,0.0799995176310989,-2.02054779158134e-09,1.07094368095861e-09,4.23638554791772e-10,2.81562967385795e-11,2.98414071231434e-10,-5.9684895914458e-10,-0.0300318552476552,-0.0187232541872927,0.0248519214430566,2.38220901338515e-09,-1.07804390414579e-08,-0.011581919931794 +2.298,-6.01834411392008e-09,8.48998655753053e-09,2.59725356499541e-09,3.57043977716742e-10,1.54379340561173e-09,0.0799999958344153,-0.000103439460764357,-6.23796522743538e-05,8.65779739064181e-05,3.13742087865165e-11,2.76643291607925e-10,-4.27368214914181e-05,-2.10359480485796e-08,1.29716116320511e-08,1.39710291946482e-09,8.54784992787571e-10,2.94122365351867e-09,-8.8175994283901e-09 +2.3,-2.37887735810764e-06,-1.62772444652071e-06,1.95148068886722e-06,3.57057952649065e-10,1.54404239394168e-09,0.0799993466838129,-2.10469158377566e-09,1.12283012748682e-09,4.29226966469631e-10,3.15754367097298e-11,3.10178965845509e-10,-6.3211935685814e-10,0.0579377297142467,0.0364162713254855,-0.0502936562481094,-1.52655665885959e-10,1.47048172249864e-08,0.0182083985146575 +2.302,-6.02676288025518e-09,8.49447787804047e-09,2.59897047286128e-09,3.57170279463581e-10,1.54503412147511e-09,0.0799999958318869,0.00012831145809263,8.32854330275883e-05,-0.00011459665108602,3.07635861229727e-11,3.35462560507871e-10,3.00967725672119e-05,-1.46241237842333e-08,5.72979164115139e-09,4.55039651792164e-09,-1.75293807247456e-09,1.58206781009085e-09,-4.18068357710408e-09 +2.304,-1.86563152573712e-06,-1.29458271441035e-06,1.49309408452314e-06,3.57181006993557e-10,1.54538424418371e-09,0.0799994670709032,-2.16318807891259e-09,1.14574929405142e-09,4.47428552541318e-10,2.45636844198316e-11,3.16507237085872e-10,-6.48842091166556e-10,-0.047273587322398,-0.0325601944557818,0.0405542504669001,-2.38437741772953e-09,-6.63965410429264e-09,-0.00815302282977665 +2.306,-6.03541563257083e-09,8.49906087521668e-09,2.60076018707145e-09,3.5726853420126e-10,1.54630015042345e-09,0.0799999958292915,-6.07828911969624e-05,-4.69553447955389e-05,4.76203507815809e-05,2.12260764520545e-11,3.089039440907e-10,-2.51531875189476e-06,2.73512715433143e-08,-1.59184731368684e-08,-6.30073250518294e-09,5.88071258356202e-10,-4.14382070324005e-09,1.00518551815487e-08 +2.308,-2.10876309052495e-06,-1.48240409359249e-06,1.68357548764944e-06,3.57265911299365e-10,1.54661985996007e-09,0.0799994570096282,-2.05378299273934e-09,1.08207540150396e-09,4.22225622520589e-10,2.69159694532561e-11,2.99931954272914e-10,-6.08634670440366e-10,0.000102525027457369,0.00334826874321151,0.00142416293428267,2.13587827979585e-09,-5.90456503136462e-09,-0.00957981945246674 +2.31,-6.04363076454179e-09,8.5033891768227e-09,2.60244908956153e-09,3.57376198079074e-10,1.54749987824054e-09,0.0799999958268569,-6.03727910871329e-05,-3.35622698226928e-05,5.33170025187115e-05,2.9769589571238e-11,2.85285683965242e-10,-4.08345965617618e-05,-2.09033840042025e-08,1.35950278812302e-08,3.48419210149941e-09,3.76001313417972e-10,3.32329649910257e-09,-8.62677984603263e-09 +2.312,-2.35025425487348e-06,-1.61665317288326e-06,1.89684349772429e-06,3.5738498965765e-10,1.54776100269594e-09,0.0799992936712419,-2.13739652875615e-09,1.13645551302888e-09,4.36162390926586e-10,2.8419974706928e-11,3.13225140269324e-10,-6.43141789824497e-10,0.0418633614185476,0.0257067437313147,-0.036326260879774,-7.1340502949546e-10,1.25463875400022e-08,0.0191179761457535 +2.314,-6.05218035065682e-09,8.50793499887481e-09,2.60419373912524e-09,3.57489877977901e-10,1.54875277880162e-09,0.0799999958242844,0.000107080654587058,6.9264705102566e-05,-9.19880410003847e-05,2.69159694532561e-11,3.35471234125251e-10,3.56373080212524e-05,-1.26003452328082e-08,5.76145034458797e-09,5.59947054001862e-09,-1.78806622286309e-09,1.78719886112509e-09,-3.55358104053849e-09 +2.316,-1.92193163652525e-06,-1.33959435247299e-06,1.52889133372275e-06,3.57492653535463e-10,1.54910288763244e-09,0.079999436220474,-2.18779790968739e-09,1.15950131440723e-09,4.58560273086661e-10,2.12677098154756e-11,3.20373935713824e-10,-6.57356113986651e-10,-0.0386227096574094,-0.0266286927330487,0.032991991391661,-2.12937306676153e-09,-5.2492732383058e-09,-0.00889400029492614 +2.318,-6.06093154229556e-09,8.51257300413244e-09,2.60602798021758e-09,3.57574948817163e-10,1.55003427454448e-09,0.079999995821655,-4.74101840425797e-05,-3.7250065829629e-05,3.99799245662593e-05,1.839847718621e-11,3.14474141172027e-10,6.13068415478146e-08,-6.95321723104529e-10,5.89805981832114e-10,2.31325375521507e-09,-6.67434857382075e-10,3.67761376907083e-10,1.42247325030098e-10 +2.32,-2.11157237269557e-06,-1.48859461579151e-06,1.68881103198779e-06,3.57566247444208e-10,1.55036078419712e-09,0.0799994364657014,-2.19057919657981e-09,1.16186053833456e-09,4.67813288107521e-10,1.85979703859473e-11,3.21844981221453e-10,-6.5678712468653e-10,0.019919248217568,0.0149199896276684,-0.0155918181536391,2.35488711863851e-10,2.9759181230382e-09,0.00184246826649692 +2.322,-6.06969385908188e-09,8.51722044628578e-09,2.60789923337001e-09,3.57649340698707e-10,1.55132165446936e-09,0.0799999958190278,3.22668088276922e-05,2.24298926810445e-05,-2.23873480482972e-05,1.93404320336654e-11,3.2637781366418e-10,7.43117990753549e-06,2.80540700262413e-09,-4.7271214720368e-10,3.18972279145235e-10,1.67400815431762e-10,-6.72205346941012e-11,9.16801357053742e-10 +2.324,-1.9825051373848e-06,-1.39887504506733e-06,1.5992616397946e-06,3.57643609172342e-10,1.55166629545178e-09,0.079999466190421,-2.17935756856931e-09,1.15996968974574e-09,4.69089177224102e-10,1.92675736476744e-11,3.21576099082676e-10,-6.53119919258315e-10,-0.0102783468296592,-0.00703571220663118,0.00803825460100187,1.59160878920872e-10,-1.70523317688519e-09,-0.000519030250202556 +2.326,-6.07841128935616e-09,8.52186032504476e-09,2.60977559007891e-09,3.57726410993298e-10,1.55260795886569e-09,0.0799999958164153,-8.84657849094453e-06,-5.71295614548023e-06,9.76567035571029e-06,1.99770755493489e-11,3.19556880956639e-10,5.35505890672527e-06,3.30209611146574e-09,-8.4437665193171e-10,-8.16404235881584e-10,4.98299318474337e-10,-2.9316826744008e-10,9.02056207507939e-10 +2.328,-2.01789145134858e-06,-1.42172686964925e-06,1.63832432121744e-06,3.5772351747454e-10,1.55294452297561e-09,0.0799994876106566,-2.16614918412345e-09,1.15659218313802e-09,4.65823560280576e-10,2.12607709215717e-11,3.20403426012916e-10,-6.49511694428284e-10,0.00482829771445025,0.0034392907430434,-0.0043558550397258,6.47485537408342e-10,3.99420080343647e-10,-0.000480446777847975 +2.33,-6.08707588609265e-09,8.52648669377731e-09,2.61163888432003e-09,3.57811454076984e-10,1.55388957256974e-09,0.0799999958138173,1.04666123668565e-05,8.04420682669337e-06,-7.65774980319294e-06,2.25670176989823e-11,3.21154561278014e-10,3.43327179533337e-06,2.43073891906514e-09,-8.28980981082416e-10,-1.32771398042575e-09,5.23886489744995e-10,-3.70797142990029e-10,5.92408067046079e-10 +2.332,-1.97602500188115e-06,-1.38955004234248e-06,1.60769332200467e-06,3.57813785545336e-10,1.55422914122072e-09,0.0799995013437438,-2.15642622844719e-09,1.15327625921369e-09,4.60512704358873e-10,2.33563168805517e-11,3.18920237440956e-10,-6.47142062160099e-10,-0.00288122974404051,-0.00210726332412238,0.00197079821320951,4.24139889876328e-10,-7.62844648560787e-10,-0.000420155838072588 +2.334,-6.09570159100644e-09,8.53109979881417e-09,2.61348093513747e-09,3.57904879344506e-10,1.55516525351951e-09,0.0799999958112287,-1.05830660930556e-06,-3.8484646979614e-07,2.25443049645113e-07,2.42635772584876e-11,3.18103182683771e-10,1.75264844304301e-06,1.33978674102296e-09,-6.49003420449822e-10,-1.38734509991245e-09,4.37150315946154e-10,-3.46944695195361e-10,2.81025203108242e-10 +2.336,-1.98025822831837e-06,-1.39108942822166e-06,1.60859509420325e-06,3.5791083985437e-10,1.55550155395145e-09,0.0799995083543376,-2.15106708148309e-09,1.15068024553189e-09,4.54963323959223e-10,2.51049181443363e-11,3.17532458660174e-10,-6.46017961347666e-10,0.00107584719188687,0.000717901387859223,-0.00107132993752354,4.05057931640584e-10,-1.32272665043231e-10,-0.000257498936236111 +2.338,-6.10430585933238e-09,8.5357025197963e-09,2.61530078843331e-09,3.58005299017083e-10,1.55643538335415e-09,0.0799999958086446,3.24508215824193e-06,2.48675908164075e-06,-4.05987670044905e-06,2.58838089850499e-11,3.17574092023598e-10,7.22652698098569e-07,5.30267188936662e-10,-3.93782229046735e-10,-1.1889361023476e-09,3.20923843055709e-10,-2.85795692667179e-10,3.98986399474665e-11 +2.34,-1.9672778996854e-06,-1.3811423918951e-06,1.59235558740145e-06,3.5801437509031e-10,1.55677185031955e-09,0.0799995112449484,-2.14894601272735e-09,1.1491051166157e-09,4.50207579549832e-10,2.63886135165592e-11,3.16389275889506e-10,-6.45858366787876e-10,-0.000844860820922044,-0.000620509027623657,0.00065898024211898,2.43728648374741e-10,-3.68628738645071e-10,-0.000140571577815496 +2.342,-6.11290164338329e-09,8.54029894026276e-09,2.61710161875151e-09,3.5811085347115e-10,1.55770094045771e-09,0.0799999958060612,-1.34361125446247e-07,4.72297114612052e-09,-1.42395573197312e-06,2.68587235785489e-11,3.16099577069018e-10,1.60366386836586e-07,6.24839264530552e-11,-1.56775634141404e-10,-8.37220917593306e-10,1.98625837999344e-10,-1.7130394325271e-10,-1.14491749414469e-10 +2.344,-1.96781534418719e-06,-1.38112350001052e-06,1.58665976447356e-06,3.58121809984624e-10,1.55803624862783e-09,0.0799995118864139,-2.14869607702153e-09,1.14847801407913e-09,4.46858695879459e-10,2.71831168685565e-11,3.15704060116495e-10,-6.46316333785534e-10,0.000210554773169528,0.000135487186140454,-9.08697416358155e-05,1.50053580671993e-10,-1.01047642475649e-10,-7.83676751964223e-05 +2.346,-6.12149642769137e-09,8.54489285231907e-09,2.61888905353502e-09,3.58219585938624e-10,1.55896375669817e-09,0.0799999958034759,7.07857967231865e-07,5.46671715707935e-07,-1.78743469851639e-06,2.74589379012369e-11,3.15695386499115e-10,-1.53104313949104e-07,-1.82184081460191e-10,5.48606299277665e-11,-4.26091453786803e-10,9.54097911787235e-11,-7.89299181569447e-11,-1.80411241501588e-10 +2.348,-1.96498391231826e-06,-1.37893681314769e-06,1.57951002567949e-06,3.58231645736229e-10,1.55929903017382e-09,0.0799995112739967,-2.14942481334738e-09,1.14869745659885e-09,4.45154330064312e-10,2.75647560332714e-11,3.15388340443867e-10,-6.47037978751541e-10,-0.000255024740132445,-0.000197303917127966,0.000324649878594845,3.46944695195361e-11,-7.97972798949331e-11,-5.06509504477614e-05 +2.35,-6.13009412694476e-09,8.54948764214547e-09,2.62066967085528e-09,3.58329844962757e-10,1.56022531005995e-09,0.0799999958008878,-3.12240993297915e-07,-2.42543952803931e-07,-4.88835184137004e-07,2.7597715779315e-11,3.15376197379535e-10,-3.5570811574015e-07,-3.29987942624277e-10,2.46113893154209e-10,-1.56125112837913e-11,-3.03576608295941e-12,4.33680868994201e-13,-1.98625837999344e-10 +2.352,-1.96623287629145e-06,-1.3799069889589e-06,1.57755468494294e-06,3.58342036599346e-10,1.56056053496334e-09,0.0799995098511642,-2.15074476511787e-09,1.14968191217146e-09,4.45091880019177e-10,2.75526129689396e-11,3.15390075167343e-10,-6.47832482103538e-10,3.83670249941932e-05,6.73253098236458e-06,8.17609118429484e-05,-4.59701721133853e-11,5.11743425413158e-11,-3.50722168321326e-05 +2.354,-6.13869710600523e-09,8.55408636979416e-09,2.62245003837536e-09,3.58440055414633e-10,1.56148687036062e-09,0.0799999957982965,-1.58772893321142e-07,-2.15613828874472e-07,-1.6179153676521e-07,2.74138350908615e-11,3.155808947497e-10,-4.9599698306868e-07,2.97615757925239e-08,-1.66301434428861e-08,-8.15558558187044e-09,1.33703811910912e-09,-4.45303516283246e-09,1.04308922610485e-08 +2.356,-1.96686796786474e-06,-1.3807694442744e-06,1.57690751879588e-06,3.5845169193971e-10,1.56182285854234e-09,0.0799995078671763,-2.03169846194778e-09,1.08316133839992e-09,4.12469537691695e-10,3.29007654453761e-11,2.97577934516013e-10,-6.06108913059344e-10,-0.0247871748549811,-0.0150343089321252,0.0207158528219963,1.90993054705046e-09,-9.56613260827409e-09,-0.0115396318941391 +2.358,-6.14682389985302e-09,8.55841901514776e-09,2.62409991652612e-09,3.58571658476414e-10,1.56267718209868e-09,0.079999995795872,-9.93074723132454e-05,-6.03528495573754e-05,8.270161975122e-05,3.50535572790633e-11,2.77316364316604e-10,-4.6654524559625e-05,-2.28117310231581e-08,1.44237920218781e-08,3.49113099540332e-09,2.51101223147643e-10,3.45817124935976e-09,-9.53750967092045e-09 +2.36,-2.36409785711772e-06,-1.6221808425039e-06,1.90771399780076e-06,3.58591906168826e-10,1.56293212399961e-09,0.079999321249078,-2.12294538604041e-09,1.14085650648743e-09,4.26434061673308e-10,3.39051703379667e-11,3.11410619513452e-10,-6.44258951743026e-10,0.0553573682887715,0.0347511566508706,-0.0472005763846923,-8.22258927613004e-10,1.48193089744008e-08,0.019059356817612 +2.362,-6.15531568139719e-09,8.56298244117371e-09,2.62580565277282e-09,3.58707279157766e-10,1.56392282457674e-09,0.079999995793295,0.000122122000841841,7.8651777046107e-05,-0.00010610068578755,3.17645215686113e-11,3.36593600214208e-10,2.9582902710823e-05,-1.60375346290316e-08,7.01435437511221e-09,6.64854456211559e-09,-2.30024332914524e-09,2.11809736416768e-09,-4.60482346698043e-09 +2.364,-1.87560985375036e-06,-1.30757373431947e-06,1.48331125465057e-06,3.587189642551e-10,1.56427849840046e-09,0.0799994395806889,-2.18709552455654e-09,1.16891392398788e-09,4.53028239921771e-10,2.47041970213857e-11,3.19883008970123e-10,-6.62678245610948e-10,-0.0454735036806372,-0.0313728465083876,0.0386277676804515,-2.80374681804751e-09,-5.90066190353509e-09,-0.00823726517724942 +2.366,-6.16406406349541e-09,8.56765809686966e-09,2.6276177657325e-09,3.58806095945852e-10,1.56520235661262e-09,0.0799999957906443,-5.97720138807082e-05,-4.68396089874437e-05,4.84103849342568e-05,2.05495342964212e-11,3.12990952600067e-10,-3.36615799817474e-06,2.67820776847341e-08,-1.53800583380104e-08,-4.87023615880487e-09,2.50667542278648e-10,-3.85542292535845e-09,1.00813454806392e-08 +2.368,-2.11469790927319e-06,-1.49493217026925e-06,1.67695279438759e-06,3.58801162392286e-10,1.56553046221086e-09,0.0799994261160569,-2.0799672138176e-09,1.10739369063584e-09,4.33547295286551e-10,2.57068671905003e-11,3.04461317268689e-10,-6.22352863688391e-10,-0.000348486173329343,0.00303545117795629,0.0017984066360676,1.90429269575354e-09,-5.72545483246145e-09,-0.00985702355935784 +2.37,-6.17238393235068e-09,8.5720876716322e-09,2.62935195491365e-09,3.58908923414614e-10,1.56642020188169e-09,0.0799999957881549,-6.11659585740256e-05,-3.46978042756185e-05,5.56040114785272e-05,2.81667050794354e-11,2.90089133270221e-10,-4.27942522356061e-05,-2.11236044177965e-08,1.43667629876054e-08,4.49271696234542e-09,1.91253263226443e-10,3.61039323437673e-09,-8.84795708921967e-09 +2.372,-2.35936174356929e-06,-1.63372338737172e-06,1.8993688403017e-06,3.58913829212604e-10,1.56669081874394e-09,0.079999254939048,-2.16446163148879e-09,1.16486074258626e-09,4.51518163135933e-10,2.64718802434061e-11,3.18902890206196e-10,-6.57744692045269e-10,0.0419706851197738,0.0259891546781562,-0.0365581423297962,-8.79938483189234e-10,1.28039939761848e-08,0.0199529455527369 +2.374,-6.18104177887664e-09,8.57674711460255e-09,2.63115802756619e-09,3.59014810935587e-10,1.56769581344252e-09,0.0799999957855239,0.00010671678190507,6.92588144370065e-05,-9.06285578406578e-05,2.46469511466785e-11,3.41305109174961e-10,3.70175299753417e-05,-1.30459792189959e-08,6.32024814428699e-09,6.19599857532015e-09,-1.89778748271862e-09,1.90429269575353e-09,-3.72271657944622e-09 +2.376,-1.93249461594901e-06,-1.3566881296237e-06,1.53685460893907e-06,3.5901241701719e-10,1.56805603918064e-09,0.0799994030091679,-2.21664554836477e-09,1.19014173516341e-09,4.76302157437214e-10,1.88807303125316e-11,3.2652006098921e-10,-6.72635558363054e-10,-0.0384280184616053,-0.0266157578385738,0.0326733067242471,-2.14194981196236e-09,-5.13608253149833e-09,-0.00920953617533636 +2.378,-6.1899083610701e-09,8.5815076815432e-09,2.63306323619594e-09,3.59090333856837e-10,1.56900189368647e-09,0.0799999957828333,-4.69952919413514e-05,-3.72042169172887e-05,4.00646690563305e-05,1.6079151898829e-11,3.20760779048967e-10,1.79385273996191e-07,2.94593688365038e-08,-1.64007262631882e-08,-6.18060290447086e-09,8.16187395447086e-10,-4.18805615187699e-09,1.08732467474226e-08 +2.38,-2.12047578371442e-06,-1.50550499729285e-06,1.69711328516439e-06,3.59076733624786e-10,1.56933908229684e-09,0.079999403726709,-2.09880807301875e-09,1.12453883011065e-09,4.5157974581933e-10,2.21454798943199e-11,3.09767836381702e-10,-6.29142571373364e-10,-0.00411797430194836,0.000335371183515093,0.00444366287126115,2.38914790728905e-09,-6.66090446688193e-09,-0.0102941513629301 +2.382,-6.19830359336217e-09,8.58600583686364e-09,2.63486955517922e-09,3.59178915776415e-10,1.570240965032e-09,0.0799999957803168,-6.34671891491449e-05,-3.58627321832283e-05,5.78393205413751e-05,2.56357435279852e-11,2.94117161181439e-10,-4.09972201777242e-05,-1.93325796147279e-08,1.34868245044162e-08,2.9171543652895e-09,7.06899816460547e-10,3.20490162186714e-09,-8.3596324307322e-09 +2.384,-2.374344540311e-06,-1.64895592602576e-06,1.92847056732989e-06,3.59179276598898e-10,1.57051555094156e-09,0.0799992397378282,-2.17613839147767e-09,1.17848612812832e-09,4.63248363280488e-10,2.49730791601621e-11,3.22587442869171e-10,-6.62581101096293e-10,0.0434612336164139,0.027063620096487,-0.0383506051550991,-3.75133951679984e-10,1.27094515467441e-08,0.0199148682570801 +2.386,-6.20700814692808e-09,8.59071978137615e-09,2.63672254863234e-09,3.59278808093055e-10,1.57153131480348e-09,0.0799999957776664,0.000110377745316511,7.239174820272e-05,-9.55631000790213e-05,2.41352077212653e-11,3.44954967368416e-10,3.86622528505964e-05,-1.20998545342202e-08,5.53571945227648e-09,4.67052611863305e-09,-1.47971912500821e-09,1.52438825451462e-09,-3.45817124935976e-09 +2.388,-1.93283355904495e-06,-1.35938893321488e-06,1.54621816701381e-06,3.59275817429783e-10,1.57189537081104e-09,0.0799993943868396,-2.22453780961455e-09,1.20062900593742e-09,4.8193046775502e-10,1.90542026601292e-11,3.28684995887229e-10,-6.76413786093732e-10,-0.0393837819540149,-0.0273726549874803,0.033609672912176,-1.79804088284996e-09,-5.6317797647587e-09,-0.00947802393513884 +2.39,-6.21590629816654e-09,8.5955222973999e-09,2.63865027050336e-09,3.59355024903696e-10,1.57284605478702e-09,0.0799999957749608,-4.71573824995486e-05,-3.70988717472015e-05,3.88755915696828e-05,1.69430441898655e-11,3.22427848309381e-10,7.50157110041005e-07,3.0017660745775e-08,-1.7092880930103e-08,-7.47730870276352e-09,1.13320811068185e-09,-4.48295914279305e-09,1.10753420323739e-08 +2.392,-2.12146308904315e-06,-1.50778442020369e-06,1.70172053329254e-06,3.59343589606542e-10,1.57318508220428e-09,0.0799993973874681,-2.10446716663145e-09,1.13225748221701e-09,4.52021232943966e-10,2.35870351028566e-11,3.10753159316057e-10,-6.32112417964236e-10,-0.00374240121957151,0.000595131980155039,0.00411850632504179,2.67581096169422e-09,-6.86733656052317e-09,-0.0104231840346303 +2.394,-6.22432416683307e-09,8.60005132732877e-09,2.64045835543514e-09,3.59449373044107e-10,1.57408906742429e-09,0.0799999957724323,-6.21269873778346e-05,-3.47183438265813e-05,5.534961686985e-05,2.76462880366423e-11,2.94958502067288e-10,-4.09425790284801e-05,-1.90095375540293e-08,1.30357964006622e-08,2.04263689296269e-09,9.18536080529718e-10,2.98676014476305e-09,-8.35789770725622e-09 +2.396,-2.36997103855449e-06,-1.64665779551001e-06,1.92311900077194e-06,3.59454174758689e-10,1.57436491621255e-09,0.079999233617152,-2.18050531684756e-09,1.18440066781966e-09,4.60191780515817e-10,2.72611794249755e-11,3.22700199895109e-10,-6.65544008793261e-10,0.0429290982109259,0.0266827468143552,-0.0377548319428679,-2.62376925741491e-10,1.24622534514174e-08,0.0199831237130548 +2.398,-6.23304618810046e-09,8.60478893000005e-09,2.6422991225572e-09,3.59558417761807e-10,1.57537986822387e-09,0.0799999957697702,0.000109589405465869,7.20126434308396e-05,-9.56697109016218e-05,2.65967803336764e-11,3.44807515872958e-10,3.89899158237394e-05,-1.20105460272397e-08,5.30586859170956e-09,4.24486834571524e-09,-1.41423331379009e-09,1.45369827286856e-09,-3.39398648074862e-09 +2.4,-1.93161341669101e-06,-1.35860722178666e-06,1.54044015716545e-06,3.59560561880023e-10,1.57574414627604e-09,0.0799993895768153,-2.22854750095652e-09,1.2056241421865e-09,4.77171253898678e-10,2.16042461698151e-11,3.28514992986584e-10,-6.79119954716256e-10,-0.0391177229458425,-0.0272042092290536,0.0334463876080614,-1.76941794549634e-09,-5.65693325516036e-09,-0.00956590906139863 +2.402,-6.24196037810428e-09,8.6096114265688e-09,2.6442078075728e-09,3.59644834746486e-10,1.57669392819582e-09,0.0799999957670537,-4.68814863175013e-05,-3.68041934853749e-05,3.81158395306238e-05,1.9519108551691e-11,3.22179782852316e-10,7.26279578144861e-07,-2.57957954855666e-10,1.25767452008318e-11,1.01264482910146e-09,-3.1485231088979e-10,4.20670442924375e-11,2.41126563160776e-10 +2.404,-2.11913936196102e-06,-1.50582399572816e-06,1.69290351528795e-06,3.5963863831423e-10,1.57703286540745e-09,0.0799993924819336,-2.22957933277595e-09,1.2056744491673e-09,4.81221833215084e-10,2.0344836926256e-11,3.28683261163753e-10,-6.78155448463613e-10,0.0200183005676761,0.0151142158174872,-0.0156458948041317,5.34294830600855e-10,2.71874536772465e-09,0.00191162486014307 +2.406,-6.25087869543539e-09,8.61443412436547e-09,2.64613269490566e-09,3.59726214094191e-10,1.57800866124047e-09,0.0799999957643411,3.31917159532031e-05,2.3652669784574e-05,-2.4467739685903e-05,2.16562878740944e-11,3.33054764323215e-10,8.37277901871713e-06,3.16009400247387e-09,-1.00613961606655e-09,-6.99527241687647e-10,4.23272528138341e-10,-2.6324428747948e-10,1.02955838299223e-09 +2.408,-1.9863724981482e-06,-1.41121331658986e-06,1.59503255654433e-06,3.59725263465727e-10,1.57836508446474e-09,0.0799994259730497,-2.21693895676605e-09,1.20164989070304e-09,4.78423724248333e-10,2.20379270388093e-11,3.27630284013835e-10,-6.74037214931644e-10,-0.0104954239124681,-0.00726465130109279,0.00827834604338883,3.74266589941996e-10,-1.92163993051331e-09,-0.00063810740198733 +2.41,-6.25974645126245e-09,8.61924072392828e-09,2.64804638980265e-09,3.59814365802347e-10,1.57931918237653e-09,0.0799999957616449,-8.78997969666934e-06,-5.40593541979716e-06,8.64564448765231e-06,2.31533542338624e-11,3.25368204601162e-10,5.82034941076781e-06,3.5633879880018e-09,-1.23794204054395e-09,-1.49966844498195e-09,6.55725473919232e-10,-4.57966997657877e-10,9.84455572616837e-10 +2.412,-2.02153241693488e-06,-1.43283705826905e-06,1.62961513449494e-06,3.59817876882662e-10,1.57966655728314e-09,0.0799994492544473,-2.20268540481404e-09,1.19669812254086e-09,4.72425050468405e-10,2.46608289344863e-11,3.25798416023204e-10,-6.70099392641176e-10,0.00481522498787472,0.00341877676840983,-0.00420886285198984,7.33788030338188e-10,2.90132501357121e-10,-0.000554450848948284 +2.414,-6.26855719288171e-09,8.62402751641844e-09,2.64993609000452e-09,3.59913009118085e-10,1.58062237604062e-09,0.0799999957589645,1.04709202548296e-05,8.26917165384216e-06,-8.18980692030707e-06,2.60885063552152e-11,3.2652873460659e-10,3.60254601497467e-06,3.29351024669918e-08,-1.85012595521616e-08,-1.02337843060907e-08,2.02745806254789e-09,-5.01291716470396e-09,1.15298395830798e-08 +2.416,-1.97964873591556e-06,-1.39976037165368e-06,1.59685590681372e-06,3.59922230908083e-10,1.58097267222157e-09,0.0799994636646314,-2.07094499494608e-09,1.12269308433221e-09,4.31489913244043e-10,3.27706611846778e-11,3.05746747364388e-10,-6.23980034308857e-10,-0.0274109301351555,-0.0170963939606812,0.0225736276127704,2.52358897667726e-09,-1.05219652435373e-08,-0.0125059620419837 +2.418,-6.27684097286149e-09,8.62851828875577e-09,2.6516620496575e-09,3.60044091762823e-10,1.58184536303008e-09,0.0799999957564686,-9.91728002857925e-05,-6.01164041888826e-05,8.21047035307747e-05,3.61828622619242e-11,2.84440873632441e-10,-4.64213021529602e-05,-2.08019789138231e-08,1.32975228051002e-08,1.62001488612783e-09,7.77156117237609e-10,2.99760216648792e-09,-9.07520586457263e-09 +2.42,-2.37633993705873e-06,-1.64022598840921e-06,1.92527472093681e-06,3.60066962357131e-10,1.5821104357161e-09,0.0799992779794227,-2.15415291060137e-09,1.17588317555262e-09,4.37969972788554e-10,3.58792856536283e-11,3.1773715603034e-10,-6.60280857767148e-10,0.0557220798114976,0.0351584250686456,-0.047874393802787,-4.3454823073219e-10,1.45378500904236e-08,0.019649806473794 +2.422,-6.2854575845039e-09,8.63322182145798e-09,2.65341392954865e-09,3.60187608905438e-10,1.5831163116542e-09,0.0799999957538275,0.000123715518960198,8.05172960856997e-05,-0.000109392871680373,3.44446693389954e-11,3.42592273994135e-10,3.21779237422159e-05,-1.53480726798561e-08,6.24869080090295e-09,5.30153178301961e-09,-2.01097818952611e-09,1.7338561142388e-09,-4.44956571588051e-09 +2.424,-1.88147786121794e-06,-1.31815680406641e-06,1.48770323421532e-06,3.60204741034487e-10,1.58348080481208e-09,0.0799994066911177,-2.21554520132079e-09,1.20087793875623e-09,4.59176099920632e-10,2.78353728955238e-11,3.24672580487295e-10,-6.7807912063067e-10,-0.0457132030682868,-0.0317014360359368,0.0389214228268749,-2.58343693659846e-09,-6.27102536565614e-09,-0.00876118944927172 +2.426,-6.29431976530918e-09,8.63802533321301e-09,2.65525063394834e-09,3.6029895039702e-10,1.58441500197615e-09,0.0799999957511152,-5.91372933129495e-05,-4.62884480580475e-05,4.62928196271264e-05,2.41109215926016e-11,3.17508172531511e-10,-2.86683405487098e-06,-3.0740214789892e-09,1.08138324683704e-09,2.67364255734925e-09,-9.92695509127726e-10,4.88324658487471e-10,-5.29958021910914e-10 +2.428,-2.11802703446974e-06,-1.5033105962986e-06,1.67287451272383e-06,3.60301184720857e-10,1.5847508375022e-09,0.0799993952237815,-2.22784128723675e-09,1.20520347174358e-09,4.6987067015003e-10,2.38645908590129e-11,3.26625879121245e-10,-6.80198952718313e-10,0.0236918895927409,0.0177830337495452,-0.0180205221573907,-2.51534904016637e-11,3.64682242737223e-09,0.00229552602273863 +2.43,-6.30323113045813e-09,8.64284614709998e-09,2.65713011662894e-09,3.60394408760456e-10,1.58572150549263e-09,0.0799999957483944,3.56302650580142e-05,2.48436869401333e-05,-2.57892690024366e-05,2.4010307630995e-11,3.32095462241e-10,6.31527003608356e-06,1.35524509231035e-09,3.25260651745651e-11,1.05124242644194e-09,-1.48318857196016e-10,1.40946282423115e-10,5.10008701937181e-10 +2.432,-1.97550597423768e-06,-1.40393584853807e-06,1.56971743671408e-06,3.60397225951381e-10,1.58607921935117e-09,0.0799994204848616,-2.22242030686751e-09,1.20533357600427e-09,4.74075639855797e-10,2.32713154302288e-11,3.27189664250937e-10,-6.78158917910565e-10,-0.0120554304655985,-0.00831980385908487,0.00965258708249607,-1.58727198051877e-10,-1.74903494465361e-09,-0.000356692894838694 +2.434,-6.3121208116856e-09,8.647667481404e-09,2.65902641918836e-09,3.60487494022177e-10,1.58703026414964e-09,0.0799999957456817,-1.25914568043798e-05,-8.43552849620621e-06,1.28210793275477e-05,2.33753988387875e-11,3.25099322462385e-10,4.88849845672878e-06,3.29978743846469e-08,-1.79405101885521e-08,-8.62135883517023e-09,1.69699324037431e-09,-4.67898289557843e-09,1.16451986942323e-08 +2.436,-2.0258718014552e-06,-1.43767796252289e-06,1.62100175402427e-06,3.60490727546736e-10,1.58737961664102e-09,0.0799994400388555,-2.09042880932892e-09,1.13357153525007e-09,4.39590204515116e-10,3.00592883917261e-11,3.08473732668624e-10,-6.31578123133635e-10,0.0527670963019043,0.0379666209755768,-0.0406811190515471,5.68121938382403e-09,-2.38177533251614e-09,0.0294304647631415 +2.438,-6.32048252692291e-09,8.652201767545e-09,2.66078478000642e-09,3.60607731175744e-10,1.58826415908031e-09,0.0799999957431554,0.000198476928403238,0.000143430955406101,-0.000149903396878641,4.61002763740836e-11,3.15572221132321e-10,0.000122610357509295,1.82810953603795e-08,-7.34742128249976e-09,-1.0097391672792e-08,3.41610420506732e-09,-2.54180357317501e-09,4.05057931640584e-09 +2.44,-1.23196408784225e-06,-8.63954140898487e-07,1.02138816650971e-06,3.60675128652233e-10,1.58864190552555e-09,0.0799999304802855,-2.0173044278874e-09,1.10418185012007e-09,3.99200637823948e-10,4.37237052119954e-11,2.98306518375923e-10,-6.15375805868012e-10,-0.140116687937472,-0.0978568992459053,0.105268373795653,-4.61740021218126e-09,-1.23755172776185e-08,-0.0787815828580395 +2.442,-6.32855174463446e-09,8.65661849494548e-09,2.66238158255772e-09,3.60782625996592e-10,1.58945738515381e-09,0.0799999957406939,-0.000361989823346651,-0.00024799664157752,0.00027117009830397,2.76306755253586e-11,2.66070152021846e-10,-0.000192515973922863,-5.56053599297172e-08,2.90355847004653e-08,1.62192308195141e-08,-4.06575814682064e-09,7.61153293171722e-09,-1.90394575105834e-08 +2.444,-2.67992338122885e-06,-1.85594070720857e-06,2.10606855972559e-06,3.60785651354334e-10,1.58970618613363e-09,0.0799991604163898,-2.23972586760627e-09,1.22032418892193e-09,4.64077561102005e-10,2.74606726247128e-11,3.28752650102792e-10,-6.91533635910346e-10,0.142914765988452,0.0961624525804611,-0.109497821921362,-4.77048955893621e-10,2.4528556269443e-08,0.0580359240803795 +2.446,-6.33751064810489e-09,8.66149979170117e-09,2.66423789280212e-09,3.60892468687091e-10,1.59077239575423e-09,0.0799999957379278,0.000209669240607157,0.000136653168744324,-0.00016682118938148,2.57224797017841e-11,3.64184377099619e-10,3.96277223986552e-05,-1.01563316133937e-08,3.80251385934116e-09,6.99115244862102e-09,-2.58387061746745e-09,1.43851944245377e-09,-2.06952510684033e-09 +2.448,-1.84124641880023e-06,-1.30932803223127e-06,1.43878380219967e-06,3.60888541273141e-10,1.59116292364203e-09,0.0799993189272794,-2.28035119405985e-09,1.23553424435929e-09,4.92042170896489e-10,1.7125190154843e-11,3.34506727872607e-10,-6.99811736337707e-10,-0.0758024750803773,-0.0517048829955495,0.0613116333399946,-3.07436368029989e-09,-1.05692364582577e-08,-0.00863339800084155 +2.45,-6.34663205288113e-09,8.6664419286786e-09,2.66620606148571e-09,3.6096096944771e-10,1.59211042266572e-09,0.0799999957351285,-9.3540659714353e-05,-7.01663632378737e-05,7.84253439784984e-05,1.34250249805845e-11,3.21907431266588e-10,5.09413039528894e-06,1.44549899393914e-09,3.514983443198e-10,2.58322009616396e-09,-4.78783679369598e-10,3.5301622736128e-10,8.5782075887053e-10 +2.452,-2.21540905765764e-06,-1.58999348518277e-06,1.75248517811366e-06,3.60942241373063e-10,1.5924505533671e-09,0.079999339303801,-2.27456919808409e-09,1.23694023773657e-09,5.02375051281145e-10,1.52100554373646e-11,3.35918792782053e-10,-6.96380453302225e-10,0.0384782814797323,0.0286940468185049,-0.0301565053605762,9.86190296092813e-10,5.54374254835288e-09,0.00187840018192608 +2.454,-6.35573032967346e-09,8.67138968962955e-09,2.66821556169083e-09,3.6102180966946e-10,1.59345409783684e-09,0.079999995732343,6.03724662045764e-05,4.46098240361458e-05,-4.22006774638064e-05,1.73697861649558e-11,3.44082401459999e-10,1.26077311229933e-05,5.47729281364078e-09,-1.08355165118201e-09,-2.87096735274161e-10,6.28403579172597e-10,-2.15973072759112e-10,1.68528385691147e-09 +2.456,-1.97391919283933e-06,-1.41155418903818e-06,1.58368246825843e-06,3.61011720517723e-10,1.59382688297294e-09,0.0799993897347255,-2.25266002682953e-09,1.23260603113184e-09,5.01226664340048e-10,1.7723669754055e-11,3.35054900491016e-10,-6.89639317874579e-10,-0.0200570156732714,-0.0143497276008323,0.0154603157652335,4.41920805505091e-10,-3.29901037043889e-09,-0.00115712456977279 +2.458,-6.36474096978078e-09,8.67632011375408e-09,2.67022046834819e-09,3.61092704348476e-10,1.59479431743881e-09,0.0799999957295845,-1.98555964885092e-05,-1.27890863671834e-05,1.96405855971277e-05,1.91374693869761e-11,3.30886359978244e-10,7.97923284390211e-06,3.5737795576053e-08,-1.91741154204061e-08,-1.05848489695415e-08,2.41646980203569e-09,-5.1742464479698e-09,1.24709270687972e-08 +2.46,-2.05334157879337e-06,-1.46271053450692e-06,1.66224481064695e-06,3.61088270395271e-10,1.59515042841285e-09,0.0799994216516569,-2.10970884452531e-09,1.15590956945022e-09,4.58887268461882e-10,2.73895489621978e-11,3.14357914699137e-10,-6.3975560959939e-10,-0.0143757148632536,-0.00791746606687917,0.0117268313280447,3.28036209307214e-09,-8.82930881185293e-09,-0.0133233266901705 +2.462,-6.37317980515888e-09,8.68094375203188e-09,2.67205601742204e-09,3.61202262544325e-10,1.5960517490976e-09,0.0799999957270254,-7.73584559415237e-05,-4.44589506347001e-05,6.65479109093064e-05,3.22589177592647e-11,2.95569124730832e-10,-4.53140739167801e-05,-1.85736673166247e-08,1.27656132192788e-08,5.75928194024299e-10,1.26938390354603e-09,2.74433253899529e-09,-8.55218673656563e-09 +2.464,-2.36277540255946e-06,-1.64054633704572e-06,1.92843645428417e-06,3.61217306066308e-10,1.59633270491177e-09,0.0799992403953612,-2.18400351379181e-09,1.20697202232733e-09,4.6119098123798e-10,3.24670845763819e-11,3.25335244855118e-10,-6.73964356545653e-10,0.0478163221051492,0.0297000049000965,-0.042265260990484,-1.3010426069826e-10,1.31700206296159e-08,0.020037079047179 +2.466,-6.38191581921405e-09,8.68577164012119e-09,2.67390078134699e-09,3.6133213088263e-10,1.59735309007702e-09,0.0799999957243296,0.000113906832479073,7.43410689656859e-05,-0.00010251313305263,3.17385007164716e-11,3.48249207249296e-10,3.48342422719361e-05,-1.4244866476166e-08,5.71981698116452e-09,3.95538636566161e-09,-1.57556259705593e-09,1.40078920685127e-09,-4.19282664143594e-09 +2.468,-1.90714807264317e-06,-1.34318206118297e-06,1.51838392207365e-06,3.61344260069174e-10,1.59772570174077e-09,0.0799993797323303,-2.24098297969648e-09,1.22985129025199e-09,4.77012526700626e-10,2.61648341881582e-11,3.30938401682523e-10,-6.90735663111396e-10,-0.0415153767443719,-0.0289140457722381,0.0355995182876704,-2.07516295813725e-09,-6.02209254685348e-09,-0.00926497598346258 +2.47,-6.39087975113284e-09,8.6906910452822e-09,2.6758088314538e-09,3.61436790219383e-10,1.59867684368376e-09,0.0799999957215666,-5.21546744984143e-05,-4.13151141232665e-05,3.98849400980519e-05,2.34378488839226e-11,3.24160837061882e-10,-2.22566166191429e-06,-2.39219383776738e-09,5.09141340199192e-10,1.24076096619241e-09,-5.83734449666195e-10,1.57426155444895e-10,-3.63424568217141e-10 +2.472,-2.11576677063683e-06,-1.50844251767604e-06,1.67792368246586e-06,3.6143801146471e-10,1.59902234508902e-09,0.0799993708296836,-2.25055175504755e-09,1.23188785561279e-09,4.81975570565396e-10,2.38298963894934e-11,3.31568106304303e-10,-6.92189361384265e-10,0.0816100848154096,0.0585634243293729,-0.0630857305704452,3.2079373879501e-09,7.73599934111856e-09,0.037430045978469 +2.474,-6.39988195815303e-09,8.69561859670465e-09,2.67773673373606e-09,3.61532109804941e-10,1.60000311610897e-09,0.0799999957187979,0.000274285664763224,0.000192938583194226,-0.000212457982183729,3.62695984357231e-11,3.55104834426356e-10,0.000147494522251962,4.03530290779551e-08,-2.1877248276847e-08,-1.30548783588979e-08,2.95553512219548e-09,-5.92885116001971e-09,1.37546224410201e-08 +2.476,-1.01862411158393e-06,-7.36688184899137e-07,8.28091753730942e-07,3.61583089858453e-10,1.60044276442672e-09,0.0799999608077726,-2.08913963873573e-09,1.1443788625054e-09,4.29756057129804e-10,3.56520368782753e-11,3.07852701664224e-10,-6.37170871620185e-10,-0.176304679451991,-0.122433320322735,0.136958469281996,-3.25217283658751e-09,-2.39717100336545e-08,-0.0836492537606771 +2.478,-6.40823851670797e-09,8.70019611215467e-09,2.67945575796458e-09,3.61674717952454e-10,1.60123452691563e-09,0.0799999957162492,-0.00043093305304474,-0.000296794698096715,0.000335375894944256,2.3260907089373e-11,2.59217994291738e-10,-0.000187102492790747,-3.80687370732725e-08,2.20572258374796e-08,9.82157064011167e-09,-1.62933902481121e-09,5.55892137876766e-09,-1.41501393935428e-08 +2.48,-2.74235632376289e-06,-1.923866977286e-06,2.16959533350797e-06,3.6167613348681e-10,1.60147963640389e-09,0.0799992123978015,-2.24141458702882e-09,1.23260776585532e-09,4.69042339690251e-10,2.91346807790304e-11,3.30088387179294e-10,-6.93771429194356e-10,0.169970350472534,0.11693895996109,-0.133447231935764,2.03049382863085e-09,2.75083775203022e-08,0.0564356745103716 +2.482,-6.41720417505608e-09,8.70512654321809e-09,2.68133192732334e-09,3.6179125667557e-10,1.60255488046435e-09,0.0799999957134741,0.000248948348845398,0.000170961141747645,-0.0001984130327988,3.13828824038964e-11,3.69251504372947e-10,3.86402052507395e-05,-5.31538924203669e-09,2.03222855210683e-09,3.55661680662145e-09,-1.29106794699574e-09,7.52869988573934e-10,-1.13277442981285e-09 +2.484,-1.7465629283813e-06,-1.24002241029542e-06,1.37594320231277e-06,3.61801665016426e-10,1.60295664242138e-09,0.0799993669586225,-2.26267614399696e-09,1.24073668006375e-09,4.83268806916736e-10,2.39704089910475e-11,3.3309986713359e-10,-6.98302526913607e-10,-0.0908623692130799,-0.0637381300189285,0.0728506116256729,-2.67884672777718e-09,-1.30928254349349e-08,-0.00944190864642784 +2.486,-6.42625487963207e-09,8.71008948993834e-09,2.68326500255101e-09,3.61887138311534e-10,1.60388727993288e-09,0.0799999957106809,-0.000114501128006922,-8.39913783280687e-05,9.29894137038922e-05,2.06674954927877e-11,3.16880202633207e-10,8.72570665028104e-07,1.00992924147256e-09,-1.56125112837913e-11,1.26569761615958e-09,-2.49800180540659e-10,1.20996962449382e-10,6.07153216591882e-10 +2.488,-2.20456744040899e-06,-1.57598792360769e-06,1.74790085712834e-06,3.61884334998397e-10,1.60422416323192e-09,0.0799993704489051,-2.25863642703107e-09,1.24067423001861e-09,4.88331597381375e-10,2.29712082688849e-11,3.33583854983388e-10,-6.9587391404724e-10,0.0453429685464109,0.0331459959648609,-0.0358298443976345,1.03476255342016e-09,6.51518769489987e-09,0.00166363520355539 +2.49,-6.4352894253402e-09,8.71505218685842e-09,2.68521832894053e-09,3.6197902314461e-10,1.60522161535281e-09,0.0799999957078974,6.68707461787219e-05,4.85926055313751e-05,-5.03299638866458e-05,2.48065457064683e-11,3.42940953412807e-10,7.52711147924966e-06,3.03618959943304e-09,-7.179586786199e-10,-1.62847166307323e-10,3.00974523081975e-10,-1.37043154602168e-10,8.81239525796217e-10 +2.492,-1.9370844556941e-06,-1.38161750148219e-06,1.54658100158175e-06,3.61983561181223e-10,1.60559592704557e-09,0.0799994005573511,-2.24649166863334e-09,1.23780239530413e-09,4.87680208716145e-10,2.41751063612128e-11,3.33035682364979e-10,-6.92348955944055e-10,-0.0235451988623622,-0.0168707798371605,0.0184864484907131,-7.76288755499621e-11,-3.62123525610158e-09,-0.000754821405900273 +2.494,-6.44427539201473e-09,8.72000339643964e-09,2.6871690497754e-09,3.62075723570054e-10,1.60655375808227e-09,0.079999995705128,-2.7310049270727e-05,-1.88905138172671e-05,2.36158300762068e-05,2.44960302042685e-11,3.284560123884e-10,4.50782585564857e-06,2.827441717714e-09,-8.75384834064795e-10,-8.93599430562552e-10,4.52329146360952e-10,-2.72785266597353e-10,7.927686285214e-10 +2.496,-2.04632465277701e-06,-1.45717955675126e-06,1.64104432188658e-06,3.6208154530204e-10,1.60690975109512e-09,0.0799994185886545,-2.23518190176248e-09,1.23430085596787e-09,4.84105810993895e-10,2.59844229466566e-11,3.3194454129859e-10,-6.89177881429969e-10,0.0114820645927799,0.00818744377850676,-0.00958338111449982,6.77843198237937e-10,1.38691141904346e-09,-0.000484933959307709 +2.498,-6.45321611962178e-09,8.72494059986351e-09,2.68910547301937e-09,3.62179661261841e-10,1.60788153624747e-09,0.0799999957023713,1.86182091003925e-05,1.385926129676e-05,-1.47176943817925e-05,2.72074029972202e-11,3.34003658064574e-10,2.56809001841773e-06,1.80949276829684e-09,-7.47448977711506e-10,-1.1293049828609e-09,3.95516952522711e-10,-2.98806118737005e-10,4.37150315946155e-10 +2.5,-1.97185181637544e-06,-1.40174251156422e-06,1.58217354435941e-06,3.62190374914029e-10,1.60824576572738e-09,0.0799994288610145,-2.2279439306893e-09,1.23131106005703e-09,4.79588591062452e-10,2.75664907567474e-11,3.30749316823642e-10,-6.87429280166185e-10,-0.00623478985552945,-0.00455297117672378,0.00473632060481176,2.19442519711065e-10,-1.15229006891759e-09,-0.000368613372464521 +2.502,-6.46212789534454e-09,8.72986584410373e-09,2.69102382738362e-09,3.62289927224868e-10,1.60920453351476e-09,0.0799999956996216,-6.32095032172537e-06,-4.35262341013514e-06,4.22758803745454e-06,2.80851730760645e-11,3.29394497788904e-10,1.09363652855965e-06,8.4651456309058e-10,-5.24537011048487e-10,-1.07596223597461e-09,2.95770352654045e-10,-2.69749500514393e-10,1.40512601554121e-10 +2.504,-1.99713561766234e-06,-1.41915300520476e-06,1.59908389650923e-06,3.62302715606333e-10,1.60956334371853e-09,0.0799994332355607,-2.22455787243694e-09,1.22921291201283e-09,4.75284742118553e-10,2.87495721673636e-11,3.29670318821584e-10,-6.86867229759968e-10,0.0028483779171671,0.0020043458587738,-0.00239515713642765,3.05745012640912e-10,1.75207071073657e-10,-0.000198829564791724 +2.506,-6.47102612683428e-09,8.73478269575179e-09,2.69292496635209e-09,3.62404925513538e-10,1.61052321479005e-09,0.0799999956968741,5.07256134694305e-06,3.66476002496008e-06,-5.35304050825607e-06,2.93081531266281e-11,3.30095326073198e-10,2.9831826939275e-07,2.21139973737364e-10,-2.3332030751888e-10,-8.32233587599872e-10,1.90819582357449e-10,-1.96457433654373e-10,-3.46944695195361e-11 +2.508,-1.97684537227457e-06,-1.40449396510492e-06,1.5776717344762e-06,3.62419948218839e-10,1.61088372502283e-09,0.0799994344288337,-2.22367331254199e-09,1.22827963078276e-09,4.71955807768154e-10,2.95128504967934e-11,3.28884489086967e-10,-6.87006007638046e-10,-0.00167463990598764,-0.0012137255673162,0.00135989422240384,1.09721259855533e-10,-3.95516952522712e-10,-9.8191205166742e-05 +2.51,-6.47992082008445e-09,8.73969581427492e-09,2.69481278958317e-09,3.62522976915525e-10,1.6118387527464e-09,0.0799999956941261,-1.6259982770075e-06,-1.19014224430475e-06,8.65363813593033e-08,2.97470381660503e-11,3.28513258263108e-10,-9.44465512742187e-08,-1.18066228451882e-10,-2.16840434497101e-12,-4.97215116301852e-10,1.05384451165591e-10,-9.02056207507939e-11,-1.49186218934005e-10 +2.512,-1.9833493653826e-06,-1.40925453408214e-06,1.57801788000164e-06,3.62538936371504e-10,1.61219777805588e-09,0.0799994340510475,-2.22414557745579e-09,1.22827095716538e-09,4.69966947302946e-10,2.99343883014558e-11,3.28523666603963e-10,-6.87602752513782e-10,0.000693009092975627,0.000491774586547713,-0.000464638739159153,7.329206686002e-11,2.73218947466347e-11,-5.1384578016178e-05 +2.514,-6.48881740239428e-09,8.74460889810358e-09,2.69669265737238e-09,3.62642714468731e-10,1.61315284741281e-09,0.0799999956913757,1.14603809489501e-06,7.76956101886105e-07,-1.77201857527731e-06,3.00402064334903e-11,3.28622545842094e-10,-2.99984863338931e-07,-2.89715761147072e-10,2.32236105346395e-10,-1.49403059368502e-10,2.86229373536173e-11,-3.81639164714897e-11,-2.35922392732846e-10 +2.516,-1.97876521300302e-06,-1.40614670967459e-06,1.57092980570053e-06,3.62659097197238e-10,1.61351226823925e-09,0.0799994328511081,-2.22530444050038e-09,1.22919990158676e-09,4.69369335065472e-10,3.00488800508702e-11,3.28371010938077e-10,-6.88546442084714e-10,-0.000453780678309788,-0.000333853550490634,0.000464732175702378,-1.21430643318376e-11,-3.55618312575245e-11,-3.27177070158501e-05 +2.518,-6.49771862015628e-09,8.74952569770993e-09,2.69857013471264e-09,3.62762909988934e-10,1.61446633145657e-09,0.0799999956886215,-6.6908461834414e-07,-5.58458100076431e-07,8.69101275322025e-08,2.9991634176163e-11,3.28480298517064e-10,-4.30855691402332e-07,-3.9590319954666e-10,3.93348548177741e-10,1.55257751099924e-10,-4.07660016854549e-11,7.84962372879505e-11,-2.15105711021124e-10 +2.52,-1.98144155147639e-06,-1.4083805420749e-06,1.57127744621066e-06,3.62779063733942e-10,1.61482618943332e-09,0.0799994311276853,-2.22688805329857e-09,1.23077329577947e-09,4.69990366069872e-10,2.98858160441284e-11,3.28684995887229e-10,-6.89406864928798e-10,0.000172764955323041,0.000112349840151668,-5.0442600400477e-05,-5.72458747072346e-11,9.88792381306779e-11,-2.17689061221548e-05 +2.522,-6.50662617236947e-09,8.75444879089304e-09,2.70045009617692e-09,3.62882453253111e-10,1.61578107144011e-09,0.0799999956858639,2.19752029480225e-08,-1.09058739469758e-07,-1.14860274069706e-07,2.97626506773341e-11,3.28875815469587e-10,-5.17931315890951e-07,-4.77472472367249e-10,5.50991544057133e-10,3.92481186439752e-10,-7.19910242530374e-11,1.14491749414469e-10,-3.05311331771918e-10 +2.524,-1.9813536506646e-06,-1.40881677703278e-06,1.57081800511438e-06,3.62898114336652e-10,1.61614169269519e-09,0.0799994290559601,-2.22879794318804e-09,1.2329772619557e-09,4.71560290815631e-10,2.95978519471163e-11,3.29142962884887e-10,-6.90628110255886e-10,-0.000110011366461399,-8.96896018825337e-05,0.00014431544848037,-9.67108337857069e-11,1.12323345069498e-10,-1.06545102601662e-05 +2.526,-6.51554136414222e-09,8.75938069994087e-09,2.70233633734018e-09,3.63000844660899e-10,1.61709764329165e-09,0.0799999956831013,-4.18070262897573e-07,-4.67817146999893e-07,4.62401519851773e-07,2.93758073421912e-11,3.29325108849865e-10,-5.60549356931616e-07,-5.31811329999506e-10,6.07153216591882e-10,5.24753851482984e-10,-1.08853898117545e-10,1.36175792864179e-10,-2.81892564846231e-10 +2.528,-1.98302593171619e-06,-1.41068804562078e-06,1.57266761119379e-06,3.6301561756602e-10,1.61745899313059e-09,0.0799994268137626,-2.23092518850804e-09,1.23540587482207e-09,4.73659306221563e-10,2.91624363546461e-11,3.29687666056344e-10,-6.91755680515271e-10,5.99118707322507e-05,3.68886260513484e-05,-2.10880568649735e-05,-1.15792792021452e-10,1.6826817716975e-10,2.43048636772158e-07 +2.53,-6.52446506489626e-09,8.76432232344015e-09,2.70423097456507e-09,3.63117494406318e-10,1.61841639395588e-09,0.0799999956803343,-1.7842277996857e-07,-3.202626427945e-07,3.7804929239188e-07,2.89126361741054e-11,3.29998181558544e-10,-5.59577162384528e-07,-5.59987033956974e-10,6.74156910851486e-10,5.64218810561456e-10,-1.14058068545475e-10,1.60895602396849e-10,-2.58473797920544e-10 +2.532,-1.98373962283606e-06,-1.41196909619196e-06,1.57417980836336e-06,3.63131268110717e-10,1.61877898585683e-09,0.079999424575454,-2.23316513664386e-09,1.23810250246548e-09,4.75916181463809e-10,2.87062040804642e-11,3.30331248465931e-10,-6.92789575706953e-10,-1.01271185956196e-05,-7.60777465330651e-06,9.9626075618364e-06,-9.88792381306779e-11,1.44849410244063e-10,8.19628826614901e-06 +2.534,-6.53339772544283e-09,8.76927473345002e-09,2.70613463929092e-09,3.63232319222639e-10,1.61973771894974e-09,0.0799999956775632,-2.18931254351048e-07,-3.50693741407726e-07,4.17899722639225e-07,2.85171192215827e-11,3.3057757919952e-10,-5.26792009319931e-07,-5.52407783144942e-10,6.2970462177958e-10,5.19332840620556e-10,-8.76035355368287e-11,1.63931368479808e-10,-2.99239799605999e-10 +2.536,-1.98461534785347e-06,-1.41337187115759e-06,1.57585140725391e-06,3.63245336587603e-10,1.62010129617363e-09,0.0799994224682859,-2.23537476777644e-09,1.24062132095259e-09,4.77993512826291e-10,2.83557899383169e-11,3.3098697393985e-10,-6.93986534905377e-10,3.20220602015005e-05,2.73988104339956e-05,-3.99622143102545e-05,-8.15320033709099e-11,1.50053580671994e-10,1.15634099517869e-05 +2.538,-6.54233922451394e-09,8.77423721873383e-09,2.70804661334223e-09,3.63345742382393e-10,1.6210616668455e-09,0.0799999956747872,-9.08430135450463e-08,-2.41098499671743e-07,2.58050865398207e-07,2.81909912080991e-11,3.31177793522208e-10,-4.80538369512784e-07,-5.27521955154611e-10,6.30571983517569e-10,4.40836603332606e-10,-6.11490025281824e-11,1.13190706807487e-10,-2.60208521396521e-10 +2.54,-1.98497871990765e-06,-1.41433626515627e-06,1.57688361071551e-06,3.63358100552436e-10,1.62142600734771e-09,0.0799994205461325,-2.23748485559706e-09,1.24314360888666e-09,4.79756859239621e-10,2.81111939282041e-11,3.3143973676708e-10,-6.95027368990963e-10,9.26094493314807e-06,1.35587888572958e-05,-3.0205674333289e-05,-4.9439619065339e-11,1.28369537222284e-10,1.0660433473475e-05 +2.542,-6.55128916393632e-09,8.77920979316937e-09,2.70996564077919e-09,3.63458187158106e-10,1.62238742579257e-09,0.0799999956720071,-5.37992338124539e-08,-1.8686334424256e-07,1.37228168065051e-07,2.79932327318377e-11,3.31691271671097e-10,-4.37896635618884e-07,-4.9187880873415e-10,5.9457647139105e-10,3.11382863937837e-10,-4.29344060304259e-11,1.22298005056365e-10,-2.75821032680312e-10 +2.544,-1.9851939168429e-06,-1.41508371853324e-06,1.57743252338777e-06,3.63470073483363e-10,1.6227527724344e-09,0.0799994187945459,-2.239452370832e-09,1.24552191477223e-09,4.81002390695373e-10,2.79394563040824e-11,3.31928928787306e-10,-6.96130653121684e-10,1.44141361850926e-05,1.76052529759357e-05,-3.59073096777018e-05,-1.86482773667507e-11,1.01481323344643e-10,7.07636380048448e-06 +2.546,-6.56024697341965e-09,8.78419188082846e-09,2.71188965034197e-09,3.63569944983322e-10,1.62371514150772e-09,0.0799999956692226,3.85731092791656e-09,-1.16442332338817e-07,-6.40107064575623e-09,2.79186396223707e-11,3.32097196964476e-10,-4.09591180416946e-07,-4.56283096158735e-10,5.40366362766775e-10,2.26815094483967e-10,-3.46944695195361e-12,8.10983225019157e-11,-2.63677968348474e-10 +2.548,-1.98517848759919e-06,-1.4155494878626e-06,1.57740691910518e-06,3.63581748041852e-10,1.62408116122226e-09,0.0799994171561812,-2.24127750321663e-09,1.2476833802233e-09,4.81909651073309e-10,2.79255785162746e-11,3.32253322077314e-10,-6.97185364995078e-10,3.28480426249632e-06,8.40449086193794e-06,-2.38439693336922e-05,1.56125112837913e-11,7.329206686002e-11,2.6774771635929e-06 +2.55,-6.56921208343252e-09,8.78918261434936e-09,2.71381728894626e-09,3.63681647297387e-10,1.62504415479603e-09,0.0799999956664338,1.69965279779019e-08,-8.28243688910656e-08,-1.01776947980525e-07,2.79810896675059e-11,3.32390365231916e-10,-3.98881271762574e-07,-4.3223752485208e-10,5.011182441228e-10,1.34224228953705e-10,2.21177243187043e-11,8.41340885848751e-11,-2.2811613709095e-10 +2.552,-1.98511050148728e-06,-1.41588078533816e-06,1.57699981131326e-06,3.63693672400522e-10,1.62541072268318e-09,0.0799994155606561,-2.24300645331604e-09,1.24968785319979e-09,4.82446547989123e-10,2.80140494135494e-11,3.32589858431653e-10,-6.98097829543442e-10,7.76726776565436e-07,4.68876370021686e-06,-1.59205114369509e-05,2.34187669256869e-11,8.89045781438113e-11,-1.09862032665608e-06 +2.554,-6.57818410924578e-09,8.79418136576215e-09,2.71574707513822e-09,3.63793703495041e-10,1.62637451422976e-09,0.0799999956636415,2.01034350841636e-08,-6.40693140901982e-08,-1.65458993728329e-07,2.80747647352086e-11,3.32745983544491e-10,-4.03275753069198e-07,-4.19017034611335e-10,5.06105574116233e-10,8.19656842399041e-11,3.85975973404839e-11,6.4618449480136e-11,-2.79290479632266e-10 +2.556,-1.98503008774694e-06,-1.41613706259452e-06,1.57633797533835e-06,3.63805971459463e-10,1.62674170661736e-09,0.0799994139475531,-2.24468252145449e-09,1.25171227549625e-09,4.82774410726083e-10,2.81684398029114e-11,3.32848332229574e-10,-6.99214991461971e-10,-4.21085710652349e-06,-8.56199442941792e-07,-5.20470949325058e-06,4.03323208164607e-11,5.42101086242752e-11,-3.49871780852551e-06 +2.558,-6.5871628393316e-09,8.79918821486414e-09,2.71767817278112e-09,3.63906377254253e-10,1.62770590755867e-09,0.0799999956608446,3.26000665806965e-09,-6.74941118619653e-08,-1.86277831701331e-07,2.82360940184745e-11,3.32962823978988e-10,-4.172706243033e-07,-4.16801196483666e-10,4.74880551583444e-10,7.15573433974591e-11,4.25007251622185e-11,4.25007251706729e-11,-2.3852447796625e-10 +2.56,-1.98501704772031e-06,-1.41640703904197e-06,1.57559286401154e-06,3.63918915835537e-10,1.62807355791328e-09,0.0799994122784706,-2.24634972624042e-09,1.25361179770259e-09,4.83060640099673e-10,2.83384427035602e-11,3.33018335130256e-10,-7.00169089373836e-10,-5.38747161709962e-06,-3.27858161626485e-06,1.83164377762244e-06,5.07406616723272e-11,5.72458747072409e-11,-4.39092859294603e-06 +2.562,-6.59614823823656e-09,8.80420266205495e-09,2.71961041534152e-09,3.64019731025067e-10,1.6290379808992e-09,0.0799999956580439,-1.82898798103265e-08,-8.06084383270233e-08,-1.78951256590842e-07,2.84390566651637e-11,3.33191807477817e-10,-4.34834338675083e-07,-4.22686381276492e-10,4.90709903232146e-10,5.70290342593216e-11,4.42354486366218e-11,7.54604711957499e-11,-2.67147415280989e-10 +2.564,-1.98509020723955e-06,-1.41672947279528e-06,1.57487705898518e-06,3.64032672062198e-10,1.62940632514319e-09,0.0799994105391332,-2.24804047176553e-09,1.25557463731551e-09,4.8328875623671e-10,2.85153844981067e-11,3.33320177015039e-10,-7.0123767903496e-10,-6.02985795179039e-06,-4.76177734395898e-06,6.89099710453332e-06,3.68628738645071e-11,6.80878964320896e-11,-4.05543133796813e-06 +2.566,-6.60514040012362e-09,8.80922496060421e-09,2.72154357036647e-09,3.64133792563059e-10,1.63037126160726e-09,0.079999995655239,-4.2409311617488e-08,-9.96555477028592e-08,-1.51387268172709e-07,2.85865081606218e-11,3.33464159063545e-10,-4.51056064026955e-07,-4.3589331905243e-10,4.99166680212326e-10,8.23993651088983e-11,3.64291929955129e-11,6.59194920871186e-11,-2.42861286636753e-10 +2.568,-1.98525984448602e-06,-1.41712809498609e-06,1.57427150991249e-06,3.6414701809484e-10,1.63074018177944e-09,0.079999408734909,-2.24978404504174e-09,1.25757130403636e-09,4.83618353697146e-10,2.86611012700888e-11,3.33583854983388e-10,-7.02209124181507e-10,-5.01282967297678e-06,-4.50287723774422e-06,8.73697446855669e-06,3.51281503885303e-11,6.72205346941012e-11,-2.95995866705922e-06 +2.57,-6.61413953630379e-09,8.81425524582036e-09,2.72347804378126e-09,3.6424843696814e-10,1.63170559702719e-09,0.0799999956524301,-6.24606303093952e-08,-1.17667056653836e-07,-1.16439370298482e-07,2.87270207621759e-11,3.33733041202322e-10,-4.62895898695192e-07,-4.48222730632663e-10,4.73796349376165e-10,1.07986536379556e-10,3.03576608295941e-11,8.41340885848751e-11,-2.52402265754625e-10 +2.572,-1.98550968700726e-06,-1.41759876321271e-06,1.5738057524313e-06,3.64261926177889e-10,1.63207511394425e-09,0.0799994068833254,-2.25157693596427e-09,1.25946648943387e-09,4.84050299842664e-10,2.87825319134072e-11,3.33920391337727e-10,-7.03218733244525e-10,-3.64555393115922e-06,-3.56229585760092e-06,8.52727545692931e-06,2.77555756156289e-11,6.37510877421476e-11,-1.58531694716135e-06 +2.574,-6.62314584404765e-09,8.81929311177809e-09,2.72541424498063e-09,3.64363567095793e-10,1.63304127859254e-09,0.0799999956496173,-7.70428460340321e-08,-1.3191624008424e-07,-8.23302684707649e-08,2.88380430646384e-11,3.3398804555329e-10,-4.69237166483838e-07,-4.58902122031645e-10,5.25404372786475e-10,1.30754782001752e-10,2.81892564846231e-11,6.50521303491302e-11,-2.74086309204335e-10 +2.576,-1.98581785839139e-06,-1.41812642817304e-06,1.57347643135741e-06,3.64377278350148e-10,1.63341106612647e-09,0.0799994050063767,-2.25341254445239e-09,1.26156810692501e-09,4.84573318970671e-10,2.88952889393456e-11,3.34180599859124e-10,-7.04315078481343e-10,-1.9878854117005e-06,-2.14445171689558e-06,6.72411930822957e-06,2.03830008427275e-11,9.28077059647591e-11,-3.1648208359547e-07 +2.578,-6.63215949422546e-09,8.82433938420579e-09,2.72735253825651e-09,3.64479148251551e-10,1.63437800099198e-09,0.0799999956468,-8.49943876808341e-08,-1.40494046951822e-07,-5.54337912378466e-08,2.89195750680093e-11,3.34359276377149e-10,-4.70503094818219e-07,-4.71299296247659e-10,4.98949839777829e-10,1.53523027623947e-10,1.5178830414797e-11,7.80625564189563e-11,-2.47198095326695e-10 +2.58,-1.98615783594212e-06,-1.41868840436085e-06,1.57325469619246e-06,3.6449295665042e-10,1.63474850323198e-09,0.0799994031243643,-2.25529774163738e-09,1.26356390628413e-09,4.85187411081167e-10,2.89560042610048e-11,3.344928500848e-10,-7.0530387086265e-10,-5.88272052598481e-07,-8.02203355826369e-07,4.30432837809912e-06,1.82145964977565e-11,6.72205346941012e-11,6.05458391755853e-07 +2.582,-6.64118068519201e-09,8.82939363983093e-09,2.72929328790084e-09,3.64594972268595e-10,1.63571597239232e-09,0.0799999956439788,-8.7347475891228e-08,-1.43702860375128e-07,-3.82164777254501e-08,2.89924334540004e-11,3.34628158515926e-10,-4.68081261251196e-07,-4.74101281237177e-10,5.19116000186059e-10,1.58510357617381e-10,1.56125112837913e-11,1.00180280737661e-10,-2.65412691824451e-10 +2.584,-1.98650722584568e-06,-1.41926321580235e-06,1.57310183028156e-06,3.64608926384236e-10,1.63608701586604e-09,0.0799994012520393,-2.25719414676233e-09,1.26564037028487e-09,4.85821452511636e-10,2.901845430614e-11,3.3489357120775e-10,-7.06365521629947e-10,4.61327695743798e-07,2.74781716477767e-07,1.86519636541371e-06,1.43114686768086e-11,1.06685493772574e-10,1.0863185351262e-06 +2.586,-6.65020946177906e-09,8.83445620131207e-09,2.73123657371088e-09,3.64711046085819e-10,1.63705554667715e-09,0.0799999956411533,-8.55021651082528e-08,-1.42603733509217e-07,-3.07556922637952e-08,2.90496793287076e-11,3.35054900491016e-10,-4.63735987110691e-07,-4.78864994532535e-10,5.17814957579077e-10,1.78459677591114e-10,1.3010426069826e-11,7.97972798949331e-11,-2.59341159658532e-10 +2.588,-1.98684923450611e-06,-1.41983363073639e-06,1.5729788075125e-06,3.6472512510155e-10,1.637427235468e-09,0.0799993993970954,-2.25910960674046e-09,1.26771163011519e-09,4.86535291222001e-10,2.90704960104193e-11,3.3521276032733e-10,-7.07402886268582e-10,1.04692215183513e-06,9.28402103458902e-07,-9.10872939574591e-08,5.63785129692462e-12,8.71698546678345e-11,1.15274977063873e-06 +2.59,-6.65924590020602e-09,8.83952704783253e-09,2.73318271487577e-09,3.64827328069861e-10,1.63839639771846e-09,0.0799999956383237,-8.13144765009123e-08,-1.38890125095381e-07,-3.11200414396251e-08,2.90722307338953e-11,3.35403579909687e-10,-4.59124988028136e-07,-4.80908038001312e-10,5.11960265847655e-10,1.78459677591114e-10,8.23993651088983e-12,8.76035355368287e-11,-2.58473797920544e-10 +2.592,-1.98717449241212e-06,-1.42038919123677e-06,1.57285432734675e-06,3.64841414024486e-10,1.63876884978764e-09,0.0799993975605954,-2.26103323889247e-09,1.26975947117858e-09,4.87249129932365e-10,2.91034557564629e-11,3.35563174469477e-10,-7.08436781460264e-10,1.23809554324278e-06,1.18035550951412e-06,-1.36437736109052e-06,8.67361737988403e-12,7.93635990259389e-11,9.1079574437991e-07 +2.594,-6.66829003316159e-09,8.84460608571724e-09,2.7351317113955e-09,3.64943741892887e-10,1.63973865041633e-09,0.07999999563549,-7.63620943279412e-08,-1.34168703057325e-07,-3.65775508839871e-08,2.91069252034148e-11,3.35721034305791e-10,-4.55481805050617e-07,-4.78925980904737e-10,5.16947595841088e-10,1.73038666728686e-10,1.64798730217797e-11,8.23993651088983e-11,-2.83627288322208e-10 +2.596,-1.98747994078943e-06,-1.420925866049e-06,1.57270801714321e-06,3.649578417253e-10,1.64011173392486e-09,0.0799993957386682,-2.26294894281609e-09,1.27182726156194e-09,4.8794128459928e-10,2.916937524855e-11,3.35892771929913e-10,-7.09571290613553e-10,1.12544887214479e-06,1.10552452609047e-06,-1.92705226775835e-06,2.47198095326695e-11,7.97972798949331e-11,5.01432229071952e-07 +2.598,-6.67734182893285e-09,8.84969339476349e-09,2.7370834765339e-09,3.65060419393881e-10,1.64108222150405e-09,0.0799999956326517,-7.1860298839362e-08,-1.29746604952963e-07,-4.42857599550206e-08,2.92058044415455e-11,3.36040223425371e-10,-4.53476076134329e-07,-4.76249356791413e-10,5.27355936696949e-10,1.67400815431762e-10,1.5178830414797e-11,1.07119174641568e-10,-2.41993924898764e-10 +2.6,-1.98776738198479e-06,-1.42144485246881e-06,1.57253087410339e-06,3.65074664943066e-10,1.64145589481857e-09,0.0799993939247639,-2.26485394024325e-09,1.27393668530873e-09,4.88610887861007e-10,2.92300905702092e-11,3.36321248628479e-10,-7.10539266313148e-10,8.42401879318481e-07,8.33638930455848e-07,-1.91083824110927e-06,1.17093834628434e-11,1.09721259855533e-10,6.29418392406044e-08 +2.602,-6.68640124469383e-09,8.85478914150473e-09,2.73903792008534e-09,3.65177339756162e-10,1.64242750649857e-09,0.0799999956298095,-6.84906913220881e-08,-1.26412049231139e-07,-5.19291129194576e-08,2.92526419753969e-11,3.36479108464793e-10,-4.53224308777366e-07,-4.76293402504671e-10,5.25838053655469e-10,1.59811400224363e-10,1.77809156287623e-11,6.98226199080664e-11,-2.63677968348474e-10 +2.604,-1.98804134475007e-06,-1.42195050066574e-06,1.57232315765171e-06,3.65191675510967e-10,1.64280181125243e-09,0.0799993921118666,-2.26675911385327e-09,1.27604003752335e-09,4.89250133461904e-10,2.93012142327242e-11,3.36600539108111e-10,-7.11593978186542e-10,5.02594043179325e-07,4.8893506431058e-07,-1.51178852422773e-06,1.99493199737333e-11,7.76288755499621e-11,-2.97276092631193e-07 +2.606,-6.69546828114924e-09,8.85989330165482e-09,2.74099492061919e-09,3.65294544613093e-10,1.643773908655e-09,0.0799999956269631,-6.64803151493708e-08,-1.24456308973897e-07,-5.79762670163685e-08,2.93324392552918e-11,3.36789623966993e-10,-4.54413413147891e-07,-4.73718422345018e-10,5.16513914972094e-10,1.45499931547555e-10,1.64798730217797e-11,8.71698546678345e-11,-2.57606436182556e-10 +2.608,-1.98830726601067e-06,-1.42244832590163e-06,1.57209125258365e-06,3.65309005267989e-10,1.64414896974829e-09,0.079999390294213,-2.26865398754265e-09,1.27810609318324e-09,4.89832133188095e-10,2.93671337248113e-11,3.36949218526783e-10,-7.12624403931272e-10,1.96343497558572e-07,1.75477254255041e-07,-9.41292183087582e-07,2.55871712706579e-11,8.23993651088983e-11,-5.14917102012457e-07 +2.61,-6.70454289709941e-09,8.86500572602755e-09,2.74295424915194e-09,3.65412013147992e-10,1.64512170552911e-09,0.0799999956241126,-6.56949411591365e-08,-1.23754399956877e-07,-6.17414357487189e-08,2.94347879403744e-11,3.37119221427428e-10,-4.56473081555941e-07,-4.73715034213229e-10,5.16947595841088e-10,1.54607229796433e-10,2.81892564846231e-11,8.80372164058229e-11,-2.61943244872498e-10 +2.612,-1.98857004577531e-06,-1.42294334350146e-06,1.57184428684065e-06,3.6542674441975e-10,1.645497446634e-09,0.0799993884683207,-2.27054884767951e-09,1.2801738835666e-09,4.9045056210728e-10,2.94798907507498e-11,3.37301367392406e-10,-7.13672176910762e-10,-2.5376382039536e-08,-4.26087116978113e-08,-3.74685742501879e-07,1.56125112837913e-11,7.02563007770606e-11,-5.71338983068603e-07 +2.614,-6.71362509249013e-09,8.87012642156182e-09,2.74491605140037e-09,3.65529932710995e-10,1.64647091099868e-09,0.079999995621258,-6.57964466872946e-08,-1.23924834803668e-07,-6.32401787187264e-08,2.94972379855096e-11,3.37400246630537e-10,-4.58758437488215e-07,-4.72556293141385e-10,5.26271734524412e-10,1.43331527202584e-10,2.08166817117217e-11,7.93635990259389e-11,-2.67147415300428e-10 +2.616,-1.98883323156206e-06,-1.42343904284067e-06,1.57159132612578e-06,3.65544733371692e-10,1.64684704762053e-09,0.0799993866332869,-2.27243907285207e-09,1.2822789705047e-09,4.91023888216091e-10,2.95631574775967e-11,3.3761882178851e-10,-7.14740766571963e-10,-1.44838886706727e-07,-1.40044659896476e-07,6.90127208852197e-08,2.55871712706579e-11,9.15066633577765e-11,-4.8525072848804e-07 +2.618,-6.72271484878154e-09,8.87525553744384e-09,2.74688014695323e-09,3.65648185340905e-10,1.64782138628583e-09,0.079999995618399,-6.63758022341216e-08,-1.24485013443254e-07,-6.29641278351855e-08,2.95995866705922e-11,3.37766273283968e-10,-4.60699440402168e-07,-4.74717921222778e-10,5.36896915814821e-10,1.47234655023531e-10,2.38524477946811e-11,7.15573433840432e-11,-2.78423117894277e-10 +2.62,-1.98909873477099e-06,-1.42393698289445e-06,1.57133946961444e-06,3.65663131718375e-10,1.64819811271366e-09,0.0799993847904892,-2.27433794453696e-09,1.28442655816796e-09,4.91612826836185e-10,2.96585672687754e-11,3.37905051162046e-10,-7.15854459043541e-10,-1.7197761227258e-07,-1.25482957358258e-07,3.34480056499164e-07,2.73218947466347e-11,8.93382590128055e-11,-2.99977924445027e-07 +2.622,-6.73181220055968e-09,8.88039324367651e-09,2.74884659826058e-09,3.65766819609981e-10,1.64917300649048e-09,0.0799999956155356,-6.70637126832119e-08,-1.24986945272687e-07,-6.16262076091889e-08,2.97088742495788e-11,3.38123626320019e-10,-4.61899352099948e-07,-4.73728586740385e-10,5.21501244965527e-10,1.50487261540988e-10,2.16840434497101e-11,9.45424294407359e-11,-2.39391839684799e-10 +2.624,-1.98936698962173e-06,-1.42443693067554e-06,1.571092964784e-06,3.65781967215373e-10,1.64955060721894e-09,0.0799993829428917,-2.27623285888392e-09,1.28651256314782e-09,4.92214775882349e-10,2.97453034425743e-11,3.38283220879809e-10,-7.1681202640228e-10,-1.32415759401209e-07,-2.95247767206907e-08,4.20341062304374e-07,2.29850860566927e-11,7.84962372879505e-11,-6.90870971542523e-08 +2.626,-6.74091713199522e-09,8.8855392939291e-09,2.75081545736411e-09,3.65885800823751e-10,1.650526139374e-09,0.0799999956126683,-6.75933757208167e-08,-1.2510504437957e-07,-5.99448433599714e-08,2.98008145938055e-11,3.38437611269171e-10,-4.62175700488565e-07,-4.75734360759483e-10,5.32560107124879e-10,1.45716771982052e-10,2.51534904016637e-11,8.71698546678345e-11,-2.78423117894277e-10 +2.628,-1.98963736312461e-06,-1.42493735085306e-06,1.57085318541056e-06,3.65901170473748e-10,1.65090435766402e-09,0.0799993810941889,-2.27813579632696e-09,1.28864280357632e-09,4.92797642970277e-10,2.98459174041809e-11,3.3863190029848e-10,-7.17925718873857e-10,-5.76679004028746e-08,1.07568901702715e-07,3.63179755366594e-07,1.64798730217797e-11,8.32667268468867e-11,1.56230930969947e-07 +2.63,-6.75002967518053e-09,8.89069386514341e-09,2.75278664793599e-09,3.66005184493368e-10,1.65188066697519e-09,0.0799999956097966,-6.78240473224282e-08,-1.24674768772759e-07,-5.8492124338505e-08,2.98667340858927e-11,3.38770678176558e-10,-4.61550776764685e-07,-4.75991858775448e-10,5.30825383648902e-10,1.52005144582468e-10,2.29850860566927e-11,8.10983225019157e-11,-2.69749500514393e-10 +2.632,-1.9899086593139e-06,-1.42543604992815e-06,1.5706192169132e-06,3.66020637410092e-10,1.65225944037672e-09,0.0799993792479858,-2.28003976376206e-09,1.29076610511092e-09,4.93405663548607e-10,2.99378577484077e-11,3.38956293588488e-10,-7.19004716875914e-10,2.34574864957718e-08,2.4668288245433e-07,2.18449824201938e-07,2.81892564846231e-11,8.54351311918577e-11,3.35951752528096e-07 +2.634,-6.75914983423558e-09,8.89585692956385e-09,2.75476027059018e-09,3.66124935924361e-10,1.65323649214955e-09,0.0799999956069206,-6.77302173764451e-08,-1.23688037242942e-07,-5.76183250416972e-08,2.99794911118312e-11,3.39112418701326e-10,-4.60206969754573e-07,-4.77516518080506e-10,5.24753851482984e-10,1.59811400224363e-10,2.03830008427275e-11,7.71951946809679e-11,-2.81025203108242e-10 +2.636,-1.99017958018341e-06,-1.42593080207712e-06,1.57038874361304e-06,3.66140555374539e-10,1.65361589005153e-09,0.079999377407158,-2.28194982983439e-09,1.29286512051685e-09,4.94044909149504e-10,3.00193897517786e-11,3.39265074367212e-10,-7.20128817688347e-10,8.98696739313857e-08,3.57572044890064e-07,4.35491486622252e-08,1.17093834628434e-11,8.97719398817997e-11,4.46611497784133e-07 +2.638,-6.76827763355491e-09,8.90102839004592e-09,2.75673645022678e-09,3.66245013483368e-10,1.65459355244701e-09,0.0799999956040401,-6.73707386807196e-08,-1.22257749063381e-07,-5.74441284470483e-08,3.00263286456825e-11,3.39471506460853e-10,-4.58420523763436e-07,-4.77164152374448e-10,5.30608543214405e-10,1.52655665885959e-10,1.60461921527855e-11,9.49761103097301e-11,-2.41993924898764e-10 +2.64,-1.99044906313813e-06,-1.42641983307337e-06,1.57015896709925e-06,3.66260660689122e-10,1.65497377607737e-09,0.0799993755734759,-2.28385848644388e-09,1.29498755468971e-09,4.94655531813048e-10,3.00835745203898e-11,3.39644978808451e-10,-7.21096793387942e-10,1.30345373708891e-07,4.22637836186568e-07,-1.14299628789505e-07,3.33934269125535e-11,7.67615138119736e-11,4.81168056787328e-07 +2.642,-6.77741306750069e-09,8.90620834026468e-09,2.75871507235403e-09,3.6636534778145e-10,1.65595213236225e-09,0.0799999956011557,-6.6849357185884e-08,-1.20567197718635e-07,-5.79013269622063e-08,3.01599023533327e-11,3.39778552516101e-10,-4.56495851536287e-07,-4.79522292099604e-10,5.42751607546243e-10,1.68701858038744e-10,2.08166817117217e-11,9.58434720477185e-11,-2.65412691824451e-10 +2.644,-1.99071646056687e-06,-1.42690210186425e-06,1.5699273617914e-06,3.66381300298535e-10,1.65633289028744e-09,0.0799993737474925,-2.28577657561228e-09,1.29715856111989e-09,4.95330339245203e-10,3.01668412472366e-11,3.40028352696642e-10,-7.2215844415524e-10,1.42767355825867e-07,4.37274348674687e-07,-2.24659700565066e-07,8.67361737988403e-12,9.36750677027475e-11,4.47131047465188e-07 +2.646,-6.78655617380314e-09,8.91139697450916e-09,2.76069639371102e-09,3.66486015146439e-10,1.65731224577303e-09,0.0799999955982671,-6.62782877625805e-08,-1.18818100323936e-07,-5.87999657644666e-08,3.01945968228523e-11,3.40153252786912e-10,-4.54707327346426e-07,-4.77069284684356e-10,5.18465478882568e-10,1.51354623278976e-10,2.21177243187043e-11,6.85215773010838e-11,-2.75821032680312e-10 +2.648,-1.99098157371792e-06,-1.42737737426554e-06,1.56969216192834e-06,3.66502078685826e-10,1.65769350329859e-09,0.0799993719286631,-2.28768485275102e-09,1.29923242303542e-09,4.95935757738319e-10,3.02553121445115e-11,3.40302439005846e-10,-7.23261728285962e-10,1.3201509926463e-07,4.07736995208796e-07,-2.75373040342641e-07,2.03830008427275e-11,8.06646416329215e-11,3.61959594241678e-07 +2.65,-6.79570691321414e-09,8.9165939042013e-09,2.76268013674197e-09,3.66607036395017e-10,1.65867345552906e-09,0.079999995595374,-6.5750227365522e-08,-1.17187152343101e-07,-5.99014579258372e-08,3.02761288262232e-11,3.40475911353444e-10,-4.53259488969459e-07,-4.81067280195396e-10,5.3624639451133e-10,1.66099772824779e-10,1.60461921527855e-11,9.80118763926895e-11,-2.60208521396521e-10 +2.652,-1.99124457462738e-06,-1.42784612287492e-06,1.56945255609664e-06,3.66623183201131e-10,1.659055406944e-09,0.0799993701156252,-2.2896091218718e-09,1.30137740861347e-09,4.96600156829618e-10,3.03194969131226e-11,3.40694486511417e-10,-7.24302562371548e-10,1.06779284036757e-07,3.47303566114454e-07,-2.69790917037382e-07,1.82145964977565e-11,8.89045781438113e-11,2.48184285622788e-07 +2.654,-6.80486534970163e-09,8.92179941383575e-09,2.76466653736929e-09,3.66728314382669e-10,1.6600362334751e-09,0.0799999955924768,-6.5323110229375e-08,-1.15797938078643e-07,-6.09806215939867e-08,3.03489872122142e-11,3.40831529666019e-10,-4.52266751826968e-07,-4.79590054735384e-10,5.29307500607423e-10,1.5482407023093e-10,1.34441069388202e-11,7.1123662515049e-11,-2.5500435096859e-10 +2.656,-1.9915058670683e-06,-1.42830931462723e-06,1.56920863361026e-06,3.6674457914998e-10,1.66041873306266e-09,0.0799993683065582,-2.29152748209074e-09,1.3034946386159e-09,4.97219453110542e-10,3.03732733408779e-11,3.40978981161477e-10,-7.25322579775422e-10,0.0609664854111685,0.0433560140686208,-0.0468493037786374,3.08477202115575e-09,4.77482636762616e-09,0.0371363408600833 +2.658,-6.81403145962999e-09,8.92701339239022e-09,2.76665541518173e-09,3.66849807476033e-10,1.66140014939975e-09,0.0799999955895755,0.000243800618534445,0.000173308258336405,-0.000187458195736144,4.26880752968372e-11,3.59930835136523e-10,0.000148093096688506,3.92618541302479e-08,-2.24638016521616e-08,-1.36546590007169e-08,3.02839350818651e-09,-5.89892718005911e-09,1.37233974184525e-08 +2.66,-1.01630339293052e-06,-7.3507628128161e-07,8.19375850665688e-07,3.66915331451168e-10,1.66185845640321e-09,0.0799999606789449,-2.13448006556975e-09,1.21363943200725e-09,4.42600817107674e-10,4.24868473736239e-11,3.1738327244124e-10,-6.70428990101612e-10,-0.167052462857829,-0.117515409194055,0.127996938024044,-3.44429346155194e-09,-2.22530327498304e-08,-0.0887701587792831 +2.662,-6.82256937989227e-09,8.93186795011824e-09,2.76842581845016e-09,3.67019754865527e-10,1.66266968248951e-09,0.0799999955868938,-0.000424409232896872,-0.000296753378439818,0.000324529556360031,2.89109014506294e-11,2.70918704137202e-10,-0.000206987538428627,-4.21925881277478e-08,2.49156164450203e-08,1.15387300408942e-08,-2.26858462570867e-09,6.08584363459562e-09,-1.61069074744446e-08 +2.664,-2.71394032451801e-06,-1.92208979504088e-06,2.11749407610581e-06,3.6703097505697e-10,1.66294213121976e-09,0.0799991327287912,-2.30325041808074e-09,1.31330189778733e-09,4.88755737271251e-10,3.34125088707892e-11,3.41726646979623e-10,-7.3485661999939e-10,0.16614357585485,0.115602968993062,-0.128547918138008,1.34267597040605e-09,2.73518187265953e-08,0.0616474321686252 +2.666,-6.83178238156459e-09,8.93712115770939e-09,2.77038084139924e-09,3.67153404901011e-10,1.66403658907743e-09,0.0799999955839544,0.000240165070522529,0.000165658497532431,-0.000189662116192,3.42816053322536e-11,3.80325979043583e-10,3.96021902458743e-05,2.22791620221874e-08,-1.52063691499781e-08,-4.29127219869762e-09,-2.24646690138995e-10,-3.65592972562112e-09,9.61297014212547e-09 +2.668,-1.75328004242789e-06,-1.25945580491116e-06,1.35884561133781e-06,3.67168101478299e-10,1.66446343513593e-09,0.0799992911375522,-2.21413376999199e-09,1.25247642118742e-09,4.71590648476461e-10,3.25139221102333e-11,3.27102928077138e-10,-6.96404739430889e-10,-0.114539915216233,-0.078923362961539,0.0913600003472641,-7.0212932690161e-10,-2.25540072729124e-08,-0.0248525197478824 +2.67,-6.84063891664456e-09,8.94213106339414e-09,2.77226720399315e-09,3.67283460589451e-10,1.66534500078974e-09,0.0799999955811688,-0.000217994590342405,-0.000150034954313725,0.000175777885197056,3.14730880246472e-11,2.90109949951933e-10,-5.98078887456554e-05,-2.2367876864951e-08,1.59577212555106e-08,5.47803989670025e-09,-1.02782365951626e-10,3.86539758534532e-09,-9.92435300606331e-09 +2.672,-2.62525840379751e-06,-1.85959562216606e-06,2.06195715212604e-06,3.67293993830398e-10,1.66562387493574e-09,0.0799990519059972,-2.3036052774518e-09,1.31630730620946e-09,4.93502808063262e-10,3.21027926464268e-11,3.4256451841852e-10,-7.36102151455142e-10,0.102748062228013,0.0706066069055665,-0.0830114314125713,-5.63785129692462e-11,2.20080030588487e-08,0.0267429036042779 +2.674,-6.84985333775437e-09,8.94739629261898e-09,2.7742412152254e-09,3.67411871760037e-10,1.66671525886342e-09,0.0799999955782243,0.000192997658569649,0.000132391473308541,-0.000156267840453229,3.12475739727702e-11,3.78141962187328e-10,4.71637256714563e-05,-1.49608854493367e-08,7.75941810804425e-09,7.54951656745106e-09,-2.26684990223269e-09,2.18791998407575e-09,-4.38885039422132e-09 +2.676,-1.85326776951892e-06,-1.3300297289319e-06,1.43688579031312e-06,3.67418984126289e-10,1.66713644278449e-09,0.0799992405608999,-2.36344881924914e-09,1.34734497864164e-09,5.23700874333066e-10,2.3035393037496e-11,3.51316198354823e-10,-7.53657553032027e-10,-0.00539943951855458,-0.00338481635623645,0.00761514454879901,1.33573707650214e-10,-4.263082942213e-09,0.0310102324920999 +2.678,-6.85930713303137e-09,8.95278567253355e-09,2.77633601872274e-09,3.67504013332187e-10,1.66812052365684e-09,0.0799999955752097,0.000171399900495431,0.000118852207883595,-0.000125807262258033,3.17818688033711e-11,3.61089630418476e-10,0.000171204655639856,3.88861306436366e-08,-2.20548405927001e-08,-1.09103264617216e-08,2.32236105346395e-09,-5.48389458843168e-09,1.43236117411405e-08 +2.68,-1.16766816753719e-06,-8.54620897397518e-07,9.33656741280986e-07,3.67546111601502e-10,1.66858080130616e-09,0.0799999253795225,-2.2079042966746e-09,1.25912561627084e-09,4.80059568486179e-10,3.23248372513518e-11,3.29380620001096e-10,-6.96363106067465e-10,-0.14027245020745,-0.0980164533985644,0.106541672609261,-3.0140820395097e-09,-1.84353400600745e-08,-0.098754254426736 +2.682,-6.86813875021806e-09,8.95782217499863e-09,2.77825625699668e-09,3.67633312681193e-10,1.66943804613684e-09,0.0799999955724243,-0.000389689900334369,-0.000273213605710663,0.000300359428179013,1.97255406453323e-11,2.87348270178178e-10,-0.000223812362067088,-3.84032337722752e-08,2.39495923093357e-08,1.16319714277279e-08,-1.92380833485828e-09,5.95096888433843e-09,-1.48023954205101e-08 +2.684,-2.72642776887467e-06,-1.94747532024017e-06,2.13509445399704e-06,3.67625013764084e-10,1.66973019438688e-09,0.0799990301300742,-2.3615172317637e-09,1.35492398550818e-09,5.26587454197091e-10,2.46296039119187e-11,3.5318449553845e-10,-7.55572687749506e-10,0.154666461922039,0.108338665547177,-0.119895539032501,1.74730022117764e-09,2.55212517785707e-08,0.0697098448340648 +2.686,-6.87758481914512e-09,8.96324187094066e-09,2.78036260681347e-09,3.6773183109684e-10,1.67085078411899e-09,0.079999995569402,0.000228975947353787,0.000160141056478047,-0.000179222727950991,2.67147415300428e-11,3.89433277292461e-10,5.50270172691713e-05,2.67686602593332e-08,-1.70959166961859e-08,-6.03597033466127e-09,5.59882001871514e-10,-4.13818285194267e-09,1.1144730971413e-08 +2.688,-1.81052397945952e-06,-1.30691109432798e-06,1.41820354219307e-06,3.67731872730204e-10,1.67128792749605e-09,0.0799992502381433,-2.25444259072636e-09,1.28654031872344e-09,5.02443572858446e-10,2.68691319194047e-11,3.36631764130679e-10,-7.10993763863854e-10,-0.108311859685251,-0.0749261025484621,0.086685301469054,2.68882138776404e-10,-2.23384678810223e-08,-0.0280459517484898 +2.69,-6.88660258950802e-09,8.96838803221556e-09,2.7823723811049e-09,3.67839307624518e-10,1.67219731117552e-09,0.079999995566558,-0.000204271491387219,-0.000139563353715802,0.000167518477925225,2.77902700851484e-11,3.00079405768372e-10,-5.71567897247882e-05,-1.88127643888439e-08,1.4099615572305e-08,3.03186295513846e-09,7.07767178198536e-10,3.25824436875344e-09,-8.83060985445993e-09 +2.692,-2.6276099450084e-06,-1.86516450919119e-06,2.08827745389398e-06,3.67843033810544e-10,1.67248824511912e-09,0.0799990216109844,-2.32969364828174e-09,1.34293878101266e-09,5.14571024679e-10,2.97002006321989e-11,3.49664741605693e-10,-7.46316203281693e-10,0.0984263147759389,0.067525404724147,-0.0810043586274739,6.06719535722888e-10,2.09211988011492e-08,0.0270112452491894 +2.694,-6.89592136410115e-09,8.97375978733961e-09,2.78443066520362e-09,3.67958108427047e-10,1.67359597014194e-09,0.0799999955635727,0.000189433767716537,0.000130538265180786,-0.00015649895658467,3.021714822804e-11,3.83764200972969e-10,5.08881912719694e-05,-1.28151612585614e-08,6.1476431584273e-09,5.06279046463828e-09,-1.60158344919558e-09,1.53783236145344e-09,-3.78082981589142e-09 +2.696,-1.86987487414225e-06,-1.34301144846805e-06,1.4622816275553e-06,3.67963902403456e-10,1.67402330192301e-09,0.0799992251637495,-2.38095429331599e-09,1.36752935364637e-09,5.34822186537553e-10,2.32938668354165e-11,3.55816071051507e-10,-7.61439522545259e-10,-0.00356563387471272,-0.00215198183730301,0.00640569434106306,7.74987712892636e-10,-4.62564014869214e-09,0.0308686900407292 +2.698,-6.90544518127442e-09,8.97922990475419e-09,2.78656995394977e-09,3.68051283894388e-10,1.67501923442614e-09,0.079999995560527,0.000175171232217686,0.000121930337831574,-0.000130876179220418,3.33170990796105e-11,3.652616403782e-10,0.000174362951434886,4.02884377335294e-08,-2.35712057511383e-08,-1.32021130139215e-08,2.85882428840977e-09,-6.02382727032946e-09,1.48258141874357e-08 +2.7,-1.16918994527151e-06,-8.55290097141748e-07,9.38776910673622e-07,3.68097170799775e-10,1.67548434848452e-09,0.0799999226155552,-2.21980054238187e-09,1.27324453064181e-09,4.82013734481867e-10,3.47291639890556e-11,3.31720761970189e-10,-7.02136265795516e-10,-0.140983252882768,-0.0986565308295094,0.10721390796887,-2.61813140611799e-09,-1.90455290427493e-08,-0.100215683674319 +2.702,-6.91432438344394e-09,8.98432288287676e-09,2.7884980088877e-09,3.68190200550345e-10,1.67634611747403e-09,0.0799999955577184,-0.000388761779313387,-0.000272695785486464,0.000297979452655063,2.28445734551386e-11,2.89079524207203e-10,-0.00022649978326239,-3.77590889328108e-08,2.31657141386287e-08,1.01401092383879e-08,-1.61589491787239e-09,5.59491689089419e-09,-1.47052509058554e-08 +2.704,-2.72423706252506e-06,-1.9460732390876e-06,2.13069472129387e-06,3.68188549093595e-10,1.67664066658135e-09,0.0799990166164222,-2.37083689811311e-09,1.36590738719633e-09,5.22574171435419e-10,2.82655843175661e-11,3.54100429533765e-10,-7.60957269418937e-10,0.154427139412651,0.108223405601276,-0.119544366183237,1.98625837999344e-09,2.52120373189779e-08,0.0706570063161229 +2.706,-6.9238077310364e-09,8.98978651242555e-09,2.79058830557344e-09,3.68303262887615e-10,1.67776251919216e-09,0.0799999955546746,0.000228946778337219,0.000160197836918639,-0.000180198012077887,3.07896069751123e-11,3.89927673483114e-10,5.61282420021014e-05,2.71241498229005e-08,-1.77592315853125e-08,-6.93520761652077e-09,7.20777604268363e-10,-4.37930941510345e-09,1.13025908077269e-08 +2.708,-1.80844994917618e-06,-1.30528189141305e-06,1.40990267298233e-06,3.68311707521496e-10,1.67820037727529e-09,0.0799992411293902,-2.26234029882151e-09,1.29487046085508e-09,4.94833340969336e-10,3.11486947346395e-11,3.36583191873352e-10,-7.1574690618803e-10,-0.108212992565601,-0.0748669146133101,0.0864346463387218,3.44342609981396e-10,-2.24629342904236e-08,-0.0285213562793359 +2.71,-6.93285709223168e-09,8.99496599426897e-09,2.79256763893732e-09,3.68427857666553e-10,1.67910885195965e-09,0.0799999955518116,-0.000203905191925184,-0.000139269821534602,0.000165540573277001,3.21669774150379e-11,3.0007593632142e-10,-5.79571831152425e-05,-1.86352466118901e-08,1.39267937460108e-08,2.82261193584876e-09,7.06032454722558e-10,3.19839640883224e-09,-8.86877377093142e-09 +2.712,-2.62407071687691e-06,-1.86236117755145e-06,2.07206496609033e-06,3.68440375431156e-10,1.67940068102057e-09,0.0799990093006577,-2.33688128526907e-09,1.35057763583912e-09,5.06123788712731e-10,3.39728245535298e-11,3.49376777508681e-10,-7.51222001271756e-10,0.0981072589024616,0.0672741887737612,-0.0801017188635423,5.19116000186057e-10,2.08197174778046e-08,0.0273124422158627 +2.714,-6.94220461737276e-09,9.00036830481232e-09,2.79459213409217e-09,3.68563748964768e-10,1.68050635906969e-09,0.0799999955488067,0.000188523843684663,0.000129826933560444,-0.000154866302177169,3.42434414157821e-11,3.83354806232638e-10,5.12925857482082e-05,-1.29575712139174e-08,6.20684059704501e-09,5.40995200026814e-09,-1.74556549770166e-09,1.62630325872826e-09,-3.80598330629309e-09 +2.716,-1.86997534213826e-06,-1.34305344330968e-06,1.45259975738166e-06,3.68577349196819e-10,1.6809341002455e-09,0.0799992144710007,-2.38871157012474e-09,1.3754049982273e-09,5.27763596713803e-10,2.69905625627231e-11,3.55881990543594e-10,-7.66445934496928e-10,-0.0681281158803516,-0.0484523241771339,0.0555141844416593,-2.59861576701325e-09,-9.73873759413377e-09,-0.0122651785637584 +2.718,-6.95175946365326e-09,9.00586992480523e-09,2.79670318847902e-09,3.68671711215018e-10,1.68192988703186e-09,0.0799999955457409,-8.39886198367438e-05,-6.3982363148092e-05,6.71904355894689e-05,2.38489783477291e-11,3.44399855856103e-10,2.23187149317461e-06,8.31786354203722e-11,8.67361737988403e-13,1.50812522192734e-09,-3.97251675998688e-10,1.20129600711394e-10,5.38631639290798e-10 +2.72,-2.20592982148524e-06,-1.59898289590205e-06,1.72136149973953e-06,3.6867274511021e-10,1.68231169966893e-09,0.0799992233984867,-2.38837885558306e-09,1.37540846767425e-09,5.33796097601513e-10,2.54015558587284e-11,3.56362508946439e-10,-7.64291407939765e-10,0.0345644627974532,0.0260274588782458,-0.026701866038788,8.50881864966623e-10,4.81472500757362e-09,0.00238218736403617 +2.722,-6.96131297907559e-09,9.01137155867593e-09,2.79883837286943e-09,3.68773317438453e-10,1.68335533706765e-09,0.0799999955426838,5.42692313530691e-05,4.01274723648911e-05,-3.96170285656832e-05,2.72525058075956e-11,3.63658755886398e-10,1.17606209493193e-05,3.90089165396706e-09,-1.36457685429025e-09,-6.49003420449822e-10,4.83554168928534e-10,-2.9316826744008e-10,1.33400235302616e-09 +2.724,-1.98885289607296e-06,-1.43847300644248e-06,1.5628933854768e-06,3.6878175513344e-10,1.68376633469247e-09,0.0799992704409705,-2.37277528896719e-09,1.36995016025709e-09,5.31200083919713e-10,2.73357725344425e-11,3.55189835876679e-10,-7.5895539852766e-10,-0.0181211778797342,-0.013047410266781,0.0139585777244547,2.84928330929189e-10,-3.01841884819964e-09,-0.00108659588965443 +2.726,-6.97080408023146e-09,9.01685135931696e-09,2.80096317320511e-09,3.68882660528591e-10,1.68477609641116e-09,0.079999995539648,-1.8215480165868e-05,-1.20621687022329e-05,1.62172823321357e-05,2.83922191313124e-11,3.51585080493599e-10,7.41423739070157e-06,4.21837315512513e-09,-1.64798730217797e-09,-1.74361393379119e-09,7.42461647718073e-10,-4.62303806347819e-10,1.27502175484293e-09 +2.728,-2.06171481673643e-06,-1.48672168125141e-06,1.62776251480534e-06,3.68895324009966e-10,1.68517267501445e-09,0.07999930009792,-2.35590179634669e-09,1.36335821104838e-09,5.24225628184549e-10,3.03056191253148e-11,3.53340620651288e-10,-7.53855311508288e-10,0.00857884371148545,0.00615420419789943,-0.00719110297676093,9.23306570088655e-10,7.77589798106603e-10,-0.0007630256582819 +2.73,-6.98022768741684e-09,9.02230479216115e-09,2.80306007571784e-09,3.69003883005092e-10,1.68618945889376e-09,0.0799999955366325,1.60998946800738e-05,1.25546480893648e-05,-1.2547129574908e-05,3.2085445411667e-11,3.54695439686025e-10,4.36213475757396e-06,3.03245926633333e-09,-1.50118632802343e-09,-1.99232991215934e-09,6.61363325216156e-10,-5.14779191496117e-10,8.65627014512426e-10 +2.732,-1.99731523801614e-06,-1.43650308889395e-06,1.57757399650571e-06,3.69023665791612e-10,1.68659145677319e-09,0.0799993175464591,-2.34377195928136e-09,1.35735346573629e-09,5.16256308535911e-10,3.29510724261794e-11,3.51281503885303e-10,-7.50392803450239e-10,-0.00495186404978164,-0.00373416755763272,0.00359778894263445,4.63171168085805e-10,-1.20303073058991e-09,-0.000617560362223267 +2.734,-6.98960277525397e-09,9.0277342060241e-09,2.80512510095199e-09,3.69135687294797e-10,1.6875945849093e-09,0.079999995533631,-3.70756151905275e-06,-2.38202214116606e-06,1.84402619562984e-06,3.39381300840102e-11,3.49883316763666e-10,1.89189330868089e-06,1.66406059938506e-09,-1.08832214074095e-09,-1.77397159462078e-09,4.78783679369598e-10,-4.57533316788882e-10,3.86843335142828e-10 +2.736,-2.01214548409235e-06,-1.44603117745862e-06,1.58495010128823e-06,3.69159418311948e-10,1.68799099004024e-09,0.0799993251140323,-2.33711571688381e-09,1.35300017717332e-09,5.09160422157428e-10,3.48662071436578e-11,3.49451370618148e-10,-7.48845430109667e-10,0.00204831203978435,0.00140694346754608,-0.00174431328799421,4.18502038579404e-10,-6.59194920871186e-11,-0.000340315095548326 +2.738,-6.9989512381215e-09,9.03314620673279e-09,2.80716174264062e-09,3.69275152123372e-10,1.68899239039177e-09,0.0799999955306356,4.48568664008467e-06,3.24575172901825e-06,-5.13322695634699e-06,3.56121382383278e-11,3.49619638795317e-10,5.30632926487584e-07,6.52195040595077e-10,-6.29487781345083e-10,-1.27328703136698e-09,2.69749500514393e-10,-2.70616862252382e-10,1.07552855510562e-10 +2.74,-1.99420273753201e-06,-1.43304817054254e-06,1.56441719346284e-06,3.69301866864902e-10,1.68938946859543e-09,0.079999327236564,-2.33450693672143e-09,1.35048222604794e-09,5.0406727403196e-10,3.59452051457154e-11,3.48368903169138e-10,-7.48415218687625e-10,-0.0013726703672852,-0.00102300784206657,0.00111518809789955,1.5482407023093e-10,-4.39318720291126e-10,-0.000157639835213219 +2.742,-7.00828926586839e-09,9.03854813563698e-09,2.80917801173675e-09,3.69418932943955e-10,1.69038586600445e-09,0.0799999955276419,-1.00499482905613e-06,-8.46279639248048e-07,-6.72474564748781e-07,3.62314345192516e-11,3.47862363914153e-10,-9.99264143652922e-08,6.11422262646044e-11,-1.97758476261356e-10,-6.6938642129255e-10,1.17093834628434e-10,-1.96891114523367e-10,-1.48318857196017e-10 +2.744,-1.99822271684824e-06,-1.43643328909954e-06,1.56172729520385e-06,3.69446792602979e-10,1.69078091805108e-09,0.0799993268368583,-2.33426236781638e-09,1.3496911921429e-09,5.0138972834679e-10,3.64135804842291e-11,3.47581338711045e-10,-7.49008494116409e-10,0.000479940391235103,0.000346749779714036,-0.000254430265701419,5.03069808033274e-11,-2.81892564846231e-11,-6.24093528592272e-05 +2.746,-7.01762631533966e-09,9.04394690040555e-09,2.81118357065013e-09,3.69564587265891e-10,1.6917761913593e-09,0.0799999955246459,9.14766735884281e-07,5.40719479608098e-07,-1.69019562755446e-06,3.64326624424649e-11,3.47749606888214e-10,-3.49563825802201e-07,-2.70826926423301e-10,1.88000656708986e-10,-1.07336015076065e-10,-2.55871712706579e-11,-4.33680868994201e-12,-2.0643209364124e-10 +2.748,-1.9945636499047e-06,-1.4342704111811e-06,1.55496651269363e-06,3.69592523252749e-10,1.69217191647864e-09,0.079999325438603,-2.33534567552207e-09,1.35044319476973e-09,5.00960384286486e-10,3.63112317991465e-11,3.47563991476285e-10,-7.49834222490974e-10,-0.000375917885233093,-0.00027049574949714,0.000432772265289773,-7.84962372879505e-11,-2.29850860566927e-11,-2.36847017692776e-05 +2.75,-7.02696769804174e-09,9.04934867318463e-09,2.81318741218728e-09,3.69709832193088e-10,1.6931664473252e-09,0.0799999955216465,-5.88904805048093e-07,-5.41263518380463e-07,4.08934336046385e-08,3.61186774933131e-11,3.47657666543988e-10,-4.44302632879312e-07,-4.51448232095808e-10,4.71844785465691e-10,3.85325452101348e-10,-1.12757025938492e-10,8.41340885848751e-11,-2.7148422399037e-10 +2.752,-1.99691926912489e-06,-1.43643546525463e-06,1.55513008642805e-06,3.69736997962722e-10,1.69356254714481e-09,0.0799993236613925,-2.33715146845045e-09,1.3523305739116e-09,5.02501686094891e-10,3.58602036953925e-11,3.47900527830624e-10,-7.50920159386936e-10,0.0001236132624754,8.89140065827436e-05,1.59856591939317e-05,-1.49186218934005e-10,1.39211558947139e-10,-8.42476088891429e-06 +2.754,-7.03631630391555e-09,9.05475799548028e-09,2.81519741893166e-09,3.6985327300787e-10,1.69455804943652e-09,0.0799999955186429,-9.4451755146491e-08,-1.85607492049489e-07,1.04836070380365e-07,3.5521932617577e-11,3.48214512779776e-10,-4.78001676434969e-07,-5.69544953733791e-10,6.50087622622308e-10,6.80878964320896e-10,-1.79543879763599e-10,1.75640751942652e-10,-3.22658566531686e-10 +2.756,-1.99729707614548e-06,-1.43717789522282e-06,1.55554943070957e-06,3.69879085693192e-10,1.69495540519593e-09,0.0799993217493858,-2.33942964826539e-09,1.35493092440209e-09,5.05225201952175e-10,3.51420281763381e-11,3.48603090838395e-10,-7.52210793653062e-10,-8.28729109465861e-05,-6.31658848490589e-05,0.000133375163777899,-1.98625837999344e-10,1.66533453693773e-10,3.75961414778025e-07 +2.758,-7.04567402250861e-09,9.06017771917789e-09,2.81721831973947e-09,3.69993841120575e-10,1.69595246179988e-09,0.079999995515634,-4.25943398932836e-07,-4.38271031445725e-07,6.38336725491961e-07,3.47274292655797e-11,3.48880646594551e-10,-4.76497830775857e-07,-6.34908792207511e-10,7.58290999436361e-10,8.61290205822484e-10,-2.00360561475321e-10,2.0339632755828e-10,-3.13984949151802e-10 +2.76,-1.99900084974121e-06,-1.43893097934861e-06,1.55810277761154e-06,3.70017995410254e-10,1.69635092778231e-09,0.0799993198433945,-2.34196928343422e-09,1.35796408839983e-09,5.08670362775465e-10,3.43405859304368e-11,3.49416676148628e-10,-7.5346673344967e-10,5.48250211166735e-05,3.81737302358742e-05,-1.70899583547268e-05,-2.00360561475321e-10,2.23345647532014e-10,7.06436558556289e-06 +2.762,-7.05504189964234e-09,9.06560957553149e-09,2.81925300119057e-09,3.70131203464297e-10,1.69735012850447e-09,0.0799999955126202,-2.06643314466142e-07,-2.85576110502228e-07,5.69976892073054e-07,3.39259870196784e-11,3.49774029184679e-10,-4.48240368433605e-07,-6.54031408024724e-10,8.12284267626139e-10,8.51749226704612e-10,-1.9298798670242e-10,2.09467859724199e-10,-3.20923843055709e-10 +2.764,-1.99982742299907e-06,-1.44007328379062e-06,1.56038268517983e-06,3.70153699358333e-10,1.69775002389905e-09,0.079999318050433,-2.34458540906632e-09,1.36121322547034e-09,5.12077359682283e-10,3.35686339836272e-11,3.50254547587525e-10,-7.54750428821893e-10,3.03867176511046e-06,3.6365305298297e-06,-9.70966102659117e-06,-1.83013326715553e-10,2.1987620058006e-10,1.06626200924165e-05 +2.766,-7.06442024127861e-09,9.07105442843337e-09,2.8213013106293e-09,3.70265478000231e-10,1.69875114669482e-09,0.0799999955096012,-1.944886274057e-07,-2.71029988382909e-07,5.31138247966689e-07,3.31939337128162e-11,3.50653533987e-10,-4.05589888063939e-07,-6.31927236233176e-10,7.66747776381748e-10,7.62410967691806e-10,-1.62196645003831e-10,2.21177243187043e-10,-3.22658566531686e-10 +2.768,-2.0006053775087e-06,-1.44115740374415e-06,1.5625072381717e-06,3.70286475093184e-10,1.699152638035e-09,0.0799993164280735,-2.34711311801125e-09,1.36428021657586e-09,5.1512700355305e-10,3.29198474036118e-11,3.51139256560273e-10,-7.56041063088019e-10,3.48440141011694e-05,2.9553049677583e-05,-5.47978181927865e-05,-1.28369537222282e-10,1.70436581514721e-10,1.01325718648848e-05 +2.77,-7.07380869375066e-09,9.07651154929967e-09,2.82336181864351e-09,3.70397157389846e-10,1.70015570372106e-09,0.079999995506577,-5.5112571001022e-08,-1.52817789672577e-07,3.11946975195543e-07,3.2680455563927e-11,3.51335280313058e-10,-3.650596006044e-07,-5.85882525220432e-10,7.11887146453982e-10,5.86119694445663e-10,-1.1579279202145e-10,1.45283091113057e-10,-2.97505076129996e-10 +2.772,-2.0008258277927e-06,-1.44176867490284e-06,1.56375502607248e-06,3.7041719691544e-10,1.70055797915625e-09,0.0799993149678351,-2.34945664811213e-09,1.36712776516168e-09,5.17471482330833e-10,3.2456676235526e-11,3.51720388924725e-10,-7.57231083392539e-10,1.43523467849987e-05,1.58947935108983e-05,-4.70289137494139e-05,-8.58688120608519e-11,1.54390389361936e-10,6.14963115153077e-06 +2.774,-7.0832065203431e-09,9.08198006036032e-09,2.82543170457283e-09,3.70526984094788e-10,1.70156258527676e-09,0.0799999955035481,2.29681613897296e-09,-8.92386156289836e-08,1.23831320197887e-07,3.23369803156836e-11,3.51952841870506e-10,-3.40461075998277e-07,-5.21955254625256e-10,6.50087622622308e-10,4.14382070323959e-10,-4.85722573273506e-11,1.20129600711394e-10,-2.84494650060196e-10 +2.776,-2.00081664052814e-06,-1.44212562936535e-06,1.56425035135327e-06,3.70546544836703e-10,1.70196579052373e-09,0.0799993136059907,-2.35154446913063e-09,1.36972811565217e-09,5.19129010612129e-10,3.22623872062166e-11,3.52200907327571e-10,-7.5836906199278e-10,1.47670763895528e-05,1.58220381241136e-05,-4.63288795347904e-05,-3.59955121265187e-11,1.18394877235417e-10,6.34077859662518e-07 +2.778,-7.09261269821963e-09,9.08745897282293e-09,2.82750822061528e-09,3.70656033643613e-10,1.70297138890607e-09,0.0799999955005146,6.13651216971843e-08,-2.59504631325291e-08,-6.1484197941275e-08,3.21929982671776e-11,3.52426421379448e-10,-3.37924764559627e-07,-4.75178707146084e-10,5.85686013576669e-10,2.49149659237169e-10,-1.69135538907739e-11,8.41340885848751e-11,-2.68014777038416e-10 +2.78,-2.00057118004136e-06,-1.44222943121788e-06,1.5640044145615e-06,3.70675316829772e-10,1.70337549620925e-09,0.0799993122542917,-2.35344518395922e-09,1.37207085970647e-09,5.20125609249078e-10,3.21947329906535e-11,3.5253744368191e-10,-7.59441121100934e-10,2.77888732939371e-06,5.69467411594414e-06,-2.99408037425508e-05,1.17093834628434e-11,8.15320033709099e-11,-4.36520871532897e-06 +2.782,-7.10202647895546e-09,9.09294725626175e-09,2.82958872305228e-09,3.70784812575575e-10,1.7043815386808e-09,0.0799999954974768,7.24806710147591e-08,-3.17176666875252e-09,-1.81247412911478e-07,3.22398358010289e-11,3.52752549392931e-10,-3.55385599420943e-07,-4.37434919016432e-10,5.79831321845247e-10,1.24466409401336e-10,3.33934269125535e-11,1.00613961606655e-10,-2.72351585728358e-10 +2.784,-2.0002812573573e-06,-1.44224211828456e-06,1.56327942490986e-06,3.70804276172976e-10,1.70478650640682e-09,0.0799993108327493,-2.35519492363528e-09,1.37439018499386e-09,5.20623474886683e-10,3.23283066983038e-11,3.52939899528337e-10,-7.60530527443847e-10,-1.60159658837066e-06,8.24571530846917e-07,-1.67435201987864e-05,4.33680868994201e-11,7.24247051220316e-11,-7.48068707673299e-06 +2.786,-7.11144725865e-09,9.09844481700173e-09,2.83167121695183e-09,3.70914125802368e-10,1.70579329827891e-09,0.0799999954944347,6.60742846612764e-08,1.26519454635154e-10,-2.48221493706624e-07,3.24133081486266e-11,3.5304224821342e-10,-3.85308347727875e-07,-4.23123450339624e-10,5.13478148889134e-10,6.33174068731534e-11,4.55364912443911e-11,4.16333634234433e-11,-2.98372437868011e-10 +2.788,-2.00001696021865e-06,-1.44224161220674e-06,1.56228653893503e-06,3.7093392940557e-10,1.70619867539967e-09,0.0799993092915159,-2.35688741743664e-09,1.37644409758941e-09,5.20876744514176e-10,3.25104526632813e-11,3.53106432982031e-10,-7.61724017195319e-10,-6.78110934510542e-06,-4.34339326657595e-06,-2.80763997120847e-06,5.03069808033274e-11,4.64038529823796e-11,-8.27600141195537e-06 +2.79,-7.12087480831975e-09,9.10395059339209e-09,2.83375472392988e-09,3.71044167613022e-10,1.70720572401084e-09,0.0799999954913878,3.89498472808547e-08,-1.72470536116687e-08,-2.59452053591458e-07,3.26145360718399e-11,3.53227863625349e-10,-4.18412353375696e-07,-4.19938606457948e-10,5.26705415393458e-10,1.77809156287623e-11,5.98479599211982e-11,6.0281640790194e-11,-2.37657116208822e-10 +2.792,-1.99986116082953e-06,-1.44231060042119e-06,1.56124873072067e-06,3.71064387549858e-10,1.70761158685417e-09,0.0799993076178665,-2.35856717186247e-09,1.37855091925099e-09,5.20947868176691e-10,3.27498445029661e-11,3.53347559545192e-10,-7.62674645660154e-10,-7.93118184788578e-06,-6.02098210698842e-06,6.24529854914568e-06,6.50521303491286e-11,8.93382590128055e-11,-7.07945681244215e-06 +2.794,-7.1303090770072e-09,9.10946479706909e-09,2.83583851540259e-09,3.71175166991033e-10,1.70861911424902e-09,0.0799999954883371,7.22511988931161e-09,-4.13309820396223e-08,-2.34470859394875e-07,3.28747445932364e-11,3.535852166614e-10,-4.46730180625465e-07,-4.34148431181086e-10,5.3624639451133e-10,4.29344060304259e-11,5.76795555762288e-11,6.6786853825107e-11,-3.05311331771918e-10 +2.796,-1.99983226034997e-06,-1.44247592434935e-06,1.56031084728309e-06,3.71195886528231e-10,1.70902592772082e-09,0.0799993058309458,-2.3603037655872e-09,1.38069590482903e-09,5.21119605800812e-10,3.2980562725271e-11,3.53614706960492e-10,-7.63895890987242e-10,-7.88960697039328e-06,-6.25713586846487e-06,1.16769675526096e-05,5.11743425413158e-11,1.90819582357449e-11,-4.64270375616359e-06 +2.798,-7.13975029206955e-09,9.11498758068841e-09,2.83792299382579e-09,3.71307089241935e-10,1.71003357307686e-09,0.0799999954852815,-2.43333079922615e-08,-6.63595255134818e-08,-1.87762989184437e-07,3.30794419634017e-11,3.53661544494343e-10,-4.65300995650119e-07,-4.56882795485391e-10,5.46654735367191e-10,6.28837260041592e-11,5.160802341031e-11,7.06899816460548e-11,-2.39391839684799e-10 +2.8,-1.99992959358194e-06,-1.4427413624514e-06,1.55955979532635e-06,3.71328204296084e-10,1.7104405738988e-09,0.0799993039697418,-2.36213129676914e-09,1.3828825237705e-09,5.21371140704829e-10,3.31869948189123e-11,3.53897466887076e-10,-7.64853458345981e-10,-6.12574751259483e-06,-4.80683678624748e-06,1.29046220324197e-05,4.98732999343332e-11,9.80118763926895e-11,-1.80988817682914e-06 +2.802,-7.14919881725663e-09,9.12051911078349e-09,2.84000847838861e-09,3.7143983722121e-10,1.71144916294441e-09,0.0799999954822221,-4.88362980426409e-08,-8.55868726584718e-08,-1.36144501054758e-07,3.3278935163139e-11,3.54053591999914e-10,-4.72540548357436e-07,-4.71268803061558e-10,5.37981117987307e-10,1.1817803680092e-10,4.11996825544491e-11,7.76288755499621e-11,-3.13984949151802e-10 +2.804,-2.00012493877411e-06,-1.44308370994203e-06,1.55901521732213e-06,3.71461320036737e-10,1.7118567882668e-09,0.0799993020795796,-2.36401637198138e-09,1.38503444824245e-09,5.21843852852033e-10,3.33517935491301e-11,3.54207982389276e-10,-7.66109398142589e-10,-3.99109640057985e-06,-2.85835894883734e-06,1.140421611312e-05,3.03576608295941e-11,7.1123662515049e-11,7.13934120155634e-07 +2.806,-7.15865488274455e-09,9.12605924857646e-09,2.84209585380002e-09,3.71573244395407e-10,1.71286599487397e-09,0.0799999954791577,-6.48006836449603e-08,-9.70203084538212e-08,-9.05276366022777e-08,3.34003658064574e-11,3.54338086649974e-10,-4.69684811876813e-07,-4.92437850479338e-10,5.69206140554889e-10,1.43548367637081e-10,2.90566182226115e-11,8.93382590128055e-11,-2.62810606610486e-10 +2.808,-2.00038414150869e-06,-1.44347179117585e-06,1.55865310677572e-06,3.71594921499963e-10,1.7132741406134e-09,0.0799993002008403,-2.3659861233833e-09,1.38731127280467e-09,5.22418046322581e-10,3.34680200220205e-11,3.54565335425327e-10,-7.6716064056903e-10,-1.77450946054228e-06,-8.16220788874e-07,8.1531118661937e-06,2.73218947466347e-11,1.02348685082632e-10,2.47932750718771e-06 +2.81,-7.16811882723808e-09,9.13160849366768e-09,2.84418552598531e-09,3.71707116475495e-10,1.71428425621567e-09,0.079999995476089,-7.18987214871294e-08,-1.00285191609317e-07,-5.79151891375029e-08,3.3509653385444e-11,3.54747481390305e-10,-4.59767501848062e-07,-5.03754210654655e-10,5.82433407059212e-10,1.8474805019153e-10,1.90819582357449e-11,8.80372164058229e-11,-2.82759926584219e-10 +2.812,-2.00067173639464e-06,-1.44387293194229e-06,1.55842144601917e-06,3.71728960113504e-10,1.71469313053896e-09,0.0799992983617703,-2.36800114022592e-09,1.38964100643291e-09,5.23157038523347e-10,3.35443478549635e-11,3.54917484290951e-10,-7.68291680275367e-10,-4.3156301559554e-08,7.63550464172388e-07,4.43461521844211e-06,1.43114686777408e-11,1.04950770306458e-10,3.31249264128178e-06 +2.814,-7.17759083179899e-09,9.13716705769341e-09,2.8462781541394e-09,3.71841293866915e-10,1.71570392615283e-09,0.0799999954730159,-7.20713466933677e-08,-9.72309897526276e-08,-4.01767282637344e-08,3.35668992601549e-11,3.55167284471531e-10,-4.46517531282935e-07,-5.11763754203949e-10,5.67688257513473e-10,1.98408997564843e-10,1.34441069388217e-11,9.23740250957751e-11,-2.81025203108274e-10 +2.816,-2.00096002178141e-06,-1.4442618559013e-06,1.55826073910612e-06,3.71863227710545e-10,1.71611379967684e-09,0.0799992965757002,-2.37004819524274e-09,1.39191175946296e-09,5.23950674513606e-10,3.35981242827188e-11,3.55286980391334e-10,-7.694157810878e-10,1.09396510811888e-06,1.72615936301904e-06,1.0741247301338e-06,1.3444106937888e-11,8.32667268370251e-11,3.27259486872084e-06 +2.818,-7.18707102457996e-09,9.14273470473126e-09,2.84837395683746e-09,3.71975686364046e-10,1.7171250740744e-09,0.0799999954699382,-6.76954862608922e-08,-9.03263523005514e-08,-3.58802293431992e-08,3.36206756879065e-11,3.55500351378879e-10,-4.33427151808052e-07,-5.13451043834822e-10,5.74193470548323e-10,2.04480529730766e-10,8.23993651088983e-12,1.24032728532342e-10,-2.74953670942324e-10 +2.82,-2.00123080372646e-06,-1.4446231613105e-06,1.55811721818874e-06,3.71997710413297e-10,1.71753580108236e-09,0.0799992948419916,-2.37210199941808e-09,1.39420853334515e-09,5.24768596632529e-10,3.36310840287623e-11,3.55783111305463e-10,-7.7051559577157e-10,1.58617659073512e-06,2.02386176394176e-06,-1.36103693419709e-06,8.23993651088983e-12,1.05384451165591e-10,2.57549537252544e-06 +2.822,-7.19655943257763e-09,9.14831153886464e-09,2.85047303122399e-09,3.72110210700161e-10,1.71854820651962e-09,0.0799999954668561,-6.13507798979517e-08,-8.22309052447844e-08,-4.13243770799876e-08,3.365363543395e-11,3.55921889183541e-10,-4.2312517031795e-07,-5.1497570313988e-10,5.61833565781988e-10,2.10118381027691e-10,1.60461921527855e-11,8.67361737988403e-11,-3.08780778723871e-10 +2.824,-2.00147620684605e-06,-1.44495208493148e-06,1.55795192068042e-06,3.72132324955032e-10,1.71895948863909e-09,0.0799992931494909,-2.37416190223063e-09,1.39645586760828e-09,5.2560907015664e-10,3.36952687973735e-11,3.56130056000658e-10,-7.71750718886465e-10,1.57173291715591e-06,1.79589980039973e-06,-2.70028097104635e-06,1.12757025938492e-11,1.01047642475649e-10,1.51067092862833e-06 +2.826,-7.20605608018655e-09,9.15389736233507e-09,2.85257546750461e-09,3.7224499177535e-10,1.71997272674362e-09,0.0799999954637691,-5.5063848229328e-08,-7.50473060431855e-08,-5.2125500964173e-08,3.36987382443254e-11,3.56326079753444e-10,-4.17082486603437e-07,-5.14209985355562e-10,5.79831321845247e-10,2.00577401909818e-10,8.67361737988403e-12,1.09287578986539e-10,-2.72351585728358e-10 +2.828,-2.00169646223896e-06,-1.44525227415565e-06,1.55774341867657e-06,3.7226711990801e-10,1.72038479295811e-09,0.079999291481161,-2.37621874217206e-09,1.39877519289566e-09,5.26411379764279e-10,3.3729963266893e-11,3.56567206316604e-10,-7.72840125229379e-10,1.21992073018849e-06,1.23298571873265e-06,-3.02348207234515e-06,1.25767452008318e-11,1.12757025938492e-10,3.67395350253652e-07 +2.83,-7.21556095515524e-09,9.15949246310666e-09,2.85468111302367e-09,3.72379911628418e-10,1.72139899556889e-09,0.0799999954606778,-5.01841653085741e-08,-7.01153631682549e-08,-6.42194292535536e-08,3.37490452251287e-11,3.56777107857198e-10,-4.15612905202422e-07,-5.07203328815875e-10,5.59014640133526e-10,1.9667427408887e-10,1.82145964977565e-11,9.80118763926895e-11,-2.67147415300428e-10 +2.832,-2.0018971989002e-06,-1.44553273560832e-06,1.55748654095955e-06,3.7240211608891e-10,1.72181190138954e-09,0.0799992898187094,-2.37824755548732e-09,1.4010112514562e-09,5.27198076860635e-10,3.3802821652884e-11,3.56959253822175e-10,-7.7390871489058e-10,7.24271920107646e-07,5.51188218331222e-07,-2.59592434354027e-06,2.68882138776405e-11,7.58941520739852e-11,-6.1939516016185e-07 +2.834,-7.22507394537719e-09,9.16509650811248e-09,2.85678990533111e-09,3.72515122915029e-10,1.72282683258418e-09,0.0799999954575821,-4.72870776281435e-08,-6.791061029493e-08,-7.46031266277147e-08,3.38565980806393e-11,3.57080684465494e-10,-4.1809048584307e-07,-5.0949370590525e-10,5.57279916657549e-10,1.72604985859692e-10,2.08166817117217e-11,6.15826833971766e-11,-2.91433543964103e-10 +2.836,-2.00208634721071e-06,-1.4458043780495e-06,1.55718812845304e-06,3.72537542481233e-10,1.7232402241274e-09,0.0799992881463474,-2.38028553031094e-09,1.40324037112283e-09,5.27888496804074e-10,3.38860883797309e-11,3.57205584555764e-10,-7.75074449066437e-10,2.38580829354726e-07,-7.17995541493765e-08,-1.74449994380654e-06,1.60461921527855e-11,9.45424294407359e-11,-1.29799122838836e-06 +2.838,-7.23459508749844e-09,9.17070946959697e-09,2.85890145931833e-09,3.72650667268548e-10,1.7242556549224e-09,0.0799999954544818,-4.63327543107246e-08,-6.81978085115275e-08,-8.15811264029408e-08,3.39207828492505e-11,3.57458854183257e-10,-4.23282450756623e-07,3.10637339418981e-08,-1.95152054238701e-08,-9.92110039954582e-09,1.78242837156617e-09,-4.82600071016747e-09,1.21335233527197e-08 +2.84,-2.00227167822795e-06,-1.44607716928355e-06,1.55686180394743e-06,3.7267322561263e-10,1.72467005954413e-09,0.0799992864532176,-2.25603059454335e-09,1.32517954942735e-09,4.8820409520589e-10,4.10158018659956e-11,3.37901581715094e-10,-7.26540355655558e-10,-0.0230636031571068,-0.0144567248261482,0.0187248780432903,2.69359187732298e-09,-9.92608772953927e-09,-0.0152896283229717 +2.842,-7.24361920987661e-09,9.17601018779468e-09,2.86085427569915e-09,3.72814730476012e-10,1.72560726124926e-09,0.0799999954515757,-9.23007453827381e-05,-5.78950971131045e-05,7.48179310467583e-05,4.46951503585424e-11,3.17754503265099e-10,-6.15817957426434e-05,-2.14185629952498e-08,1.58276169948124e-08,3.12206857588926e-09,5.10008701937181e-10,3.53146331621978e-09,-1.05236999670133e-08 +2.844,-2.37147465975891e-06,-1.67765755773597e-06,1.85613352813446e-06,3.72852006214064e-10,1.72594107755719e-09,0.0799990401260346,-2.34170484652435e-09,1.38849001740659e-09,5.00692369509447e-10,4.30558366737443e-11,3.52027434979973e-10,-7.68635155523611e-10,0.0510339821762207,0.0327517887331162,-0.0427281421405602,-1.17223938889132e-09,1.4583820262537e-08,0.0252699872589634 +2.846,-7.25298602926271e-09,9.18156414786431e-09,2.86285704517719e-09,3.72986953822707e-10,1.72701537098918e-09,0.0799999954485011,0.000111835183322145,7.31120578193605e-05,-9.60946375154827e-05,4.00061928029771e-11,3.76089784315247e-10,3.94981532932103e-05,-1.86789467357048e-08,9.09905831236734e-09,7.64124007124331e-09,-2.62940710871184e-09,2.20006304840758e-09,-5.8486201992558e-09 +2.848,-1.92413392647033e-06,-1.38520932645853e-06,1.47175497807253e-06,3.73012030985276e-10,1.72744543669445e-09,0.0799991981186478,-2.41642063346717e-09,1.42488625065606e-09,5.31257329794421e-10,3.25382082388969e-11,3.60827687173603e-10,-7.92029636320634e-10,-0.0416517543356766,-0.0292385766858822,0.0347495256779531,-2.94859622829157e-09,-5.27616145218345e-09,-0.0107204314548845 +2.85,-7.26265171179657e-09,9.18726369286693e-09,2.86498207449637e-09,3.73117106655663e-10,1.72845868173788e-09,0.079999995445333,-5.47718340205617e-05,-4.38422489241682e-05,4.29034651963297e-05,2.82118078898108e-11,3.54985138506514e-10,-3.38357252632759e-06,2.70883440461542e-08,-1.77121772110267e-08,-6.01623785512203e-09,5.2865697930393e-10,-4.12647346847983e-09,1.15376458387217e-08 +2.852,-2.14322126255257e-06,-1.5605783221552e-06,1.64336883885785e-06,3.73124878216835e-10,1.72886537724848e-09,0.0799991845843577,-2.30806725728255e-09,1.35403754181196e-09,5.07192378373933e-10,3.46528361561127e-11,3.44321793299684e-10,-7.45879052965747e-10,-0.00045127525891489,0.00291979725835535,0.00190239797200932,2.55698240358981e-09,-6.30788823952066e-09,-0.0127715575962139 +2.854,-7.27188398082571e-09,9.19267984303418e-09,2.86701084400987e-09,3.73255718000287e-10,1.72983596891108e-09,0.0799999954423495,-5.65769350562212e-05,-3.21630598907468e-05,5.0513057084367e-05,3.843973750417e-11,3.29753585548431e-10,-5.44698029111834e-05,-1.98704578182121e-08,1.59264962329431e-08,4.62910959564408e-09,3.68628738645071e-10,3.76695202808363e-09,-9.78384040450916e-09 +2.856,-2.36952900277746e-06,-1.68923056171819e-06,1.84542106719532e-06,3.73278637166852e-10,1.73018439159067e-09,0.0799989667051461,-2.3875490885554e-09,1.41774352674373e-09,5.25708816756509e-10,3.6127351110693e-11,3.59389601412019e-10,-7.85014414583784e-10,0.0386063759195032,0.0242616318587001,-0.0330393522421455,-1.26461341398709e-09,1.28677450639269e-08,0.0257894399290775 +2.858,-7.28143417717993e-09,9.19835081714115e-09,2.86911367927689e-09,3.7340022740473e-10,1.73127352731672e-09,0.0799999954392095,9.78485686217917e-05,6.48834675440537e-05,-8.16443518842149e-05,3.33812838482217e-11,3.81224565804139e-10,4.86879568051268e-05,-1.5557176315413e-08,8.31561382252932e-09,7.52544727922188e-09,-2.25297211442487e-09,2.16189913193609e-09,-4.80518402845575e-09 +2.86,-1.97813472829029e-06,-1.42969669154197e-06,1.51884365965846e-06,3.73412162302245e-10,1.73170928985389e-09,0.0799991614569733,-2.44977779381705e-09,1.45100598203385e-09,5.55810605873396e-10,2.71154626529934e-11,3.68037197939763e-10,-8.04235150697607e-10,-0.0351464608933083,-0.0247455019758511,0.029313532994837,-2.33710620300975e-09,-4.49770429233885e-09,-0.0119387053108127 +2.862,-7.2912332883552e-09,9.20415484106929e-09,2.87133692170038e-09,3.73508689255342e-10,1.73274567610848e-09,0.0799999954359925,-4.27372749514415e-05,-3.40985403593508e-05,3.56097800951332e-05,2.40328590361827e-11,3.63233748634783e-10,9.33135561875797e-07,-1.70753710650173e-09,1.26938390354603e-09,3.00345685821934e-09,-7.39425881635113e-10,5.16947595841088e-10,4.33680868994201e-12 +2.864,-2.14908382809606e-06,-1.56609085297937e-06,1.66128278003899e-06,3.73508293738389e-10,1.73316222484843e-09,0.0799991651895155,-2.45660794224306e-09,1.45608351764803e-09,5.67824433306274e-10,2.4157759126453e-11,3.70104988323127e-10,-8.04217803462847e-10,0.0184537037796093,0.0143820154017374,-0.014038320746753,2.85362011798185e-10,2.83020135105616e-09,0.00265261953548423 +2.866,-7.30105972012417e-09,9.20997917513988e-09,2.87360821943361e-09,3.73605320291848e-10,1.73422609606178e-09,0.0799999954327756,3.10775401669958e-05,2.3429521247599e-05,-2.05435028918788e-05,2.51743070833754e-11,3.74554554039008e-10,1.15436137038127e-05,2.90738299320997e-09,-5.67037736209918e-10,1.04950770296597e-10,3.62557206479152e-10,-4.25007251614317e-11,1.11195774810113e-09 +2.868,-2.02477366742808e-06,-1.47237276798898e-06,1.57910876847148e-06,3.73608990966723e-10,1.73466044306458e-09,0.0799992113639703,-2.44497841027022e-09,1.45381536670319e-09,5.6824423638746e-10,2.56079879523696e-11,3.69934985422482e-10,-7.99769972470443e-10,-0.00960030401655791,-0.00686361874713963,0.00712667510335134,4.47558656802016e-10,-1.59594559789866e-09,-0.00104521288846193 +2.87,-7.31083963376525e-09,9.21579443660669e-09,2.87588119637916e-09,3.73707752243657e-10,1.73570583600346e-09,0.0799999954295766,-7.32367589923593e-06,-4.02495374095951e-06,7.96319752152663e-06,2.69645417105835e-11,3.68170771647413e-10,7.362762149965e-06,3.82217857624461e-09,-1.35416851343439e-09,-1.62825482263873e-09,8.08381139805191e-10,-3.92481186439752e-10,1.19002030452009e-09 +2.872,-2.05406837102502e-06,-1.48847258295282e-06,1.61096155855758e-06,3.73716849133565e-10,1.73613312615117e-09,0.0799992408150189,-2.42968969596524e-09,1.44839869264945e-09,5.61731217096905e-10,2.88415125115904e-11,3.68365060676723e-10,-7.95009891252362e-10,0.00442504393693174,0.00313065182913803,-0.00397064017689657,9.61470486560144e-10,1.76074432811646e-10,-0.000756655739800326 +2.874,-7.32055839254911e-09,9.22158803137729e-09,2.87812812124755e-09,3.73823118293704e-10,1.73717929624617e-09,0.0799999954263965,1.0376499848491e-05,8.49765357559262e-06,-7.91936318605967e-06,3.0810423656824e-11,3.6887506937866e-10,4.3361391907637e-06,3.00286054702447e-09,-1.47516547588378e-09,-2.39868888640693e-09,8.51315545835617e-10,-5.03503488902268e-10,8.40473524110762e-10 +2.876,-2.01256237163105e-06,-1.45448196865045e-06,1.57928410581334e-06,3.73840090828192e-10,1.73760862642869e-09,0.0799992581595757,-2.41767825377714e-09,1.44249803074592e-09,5.52136461551278e-10,3.22467746949328e-11,3.66351046721114e-10,-7.91647997155919e-10,-0.00276221480238726,-0.00216672583434191,0.00178577940043896,7.34655392076176e-10,-9.14632952708771e-10,-0.00064082080527411 +2.878,-7.33022910556422e-09,9.22735802350028e-09,2.88033666709375e-09,3.73952105392483e-10,1.73864470043306e-09,0.0799999954232299,-6.7235936105801e-07,-1.69249761775014e-07,-7.76245584303836e-07,3.37490452251287e-11,3.65216537567825e-10,1.77285596966725e-06,1.813328133482e-09,-1.23902624271643e-09,-2.46894518718399e-09,7.10802944281494e-10,-5.62484087085479e-10,4.58834359395865e-10 +2.88,-2.01525180907529e-06,-1.45515896769755e-06,1.57617912347613e-06,3.73975087009093e-10,1.73906949257896e-09,0.0799992652509996,-2.41042494124321e-09,1.43754192577505e-09,5.42260680802542e-10,3.50899864720588e-11,3.64101110372772e-10,-7.89812659718336e-10,0.000963179446803969,0.00061455918218961,-0.000921932412139765,6.44449771325383e-10,-3.49546780409326e-10,-0.000358528729274554 +2.882,-7.33987080532919e-09,9.23310819120338e-09,2.88250570981696e-09,3.74092465338371e-10,1.74010110487455e-09,0.0799999954200707,3.18035842615787e-06,2.28898696698343e-06,-4.4639752328629e-06,3.63268443104303e-11,3.63818350446188e-10,3.38741052569036e-07,8.57143132512727e-10,-8.31149385427387e-10,-2.04242005252819e-09,5.31692745386891e-10,-4.38451358553138e-10,1.4658413372004e-10 +2.884,-2.00253037537066e-06,-1.44600301982961e-06,1.55832322254468e-06,3.74120394386335e-10,1.74052476598074e-09,0.0799992666059638,-2.40699636871316e-09,1.43421732823334e-09,5.34091000592429e-10,3.72167574536064e-11,3.62347304938559e-10,-7.89226323183455e-10,-0.000827612749233524,-0.000631781288092449,0.000669974968081978,4.19803081186387e-10,-4.85722573273506e-10,-0.000165756990598564 +2.886,-7.34949879080404e-09,9.23884506051631e-09,2.88464207381933e-09,3.74241332368186e-10,1.7415504940943e-09,0.0799999954169138,-1.30092570776227e-07,-2.38138185386372e-07,-1.78407536053499e-06,3.80060566351758e-11,3.61875460153093e-10,-3.24286909825222e-07,2.37751983898915e-10,-3.82072845583891e-10,-1.38973034469192e-09,3.43041567374413e-10,-2.8796409701215e-10,-1.24032728532342e-10 +2.888,-2.00305074565376e-06,-1.44695557257116e-06,1.55118692110254e-06,3.74272418612875e-10,1.74197226782136e-09,0.0799992653088162,-2.40604536077757e-09,1.43268903685101e-09,5.28532079213661e-10,3.8588923723104e-11,3.61195448550511e-10,-7.89722454097585e-10,0.0611808524681448,0.0441511987896419,-0.0459306319774629,3.53926957186167e-09,4.336808689942e-09,0.0424512883873129 +2.89,-7.35912297224715e-09,9.24457581666371e-09,2.88675620213619e-09,3.74395688063078e-10,1.7429952758885e-09,0.0799999954137549,0.000244593317301803,0.000176366656973181,-0.000185506603270387,5.21631349226225e-11,3.79222694912862e-10,0.000169480866639426,4.11587810274921e-08,-2.51554419655742e-08,-1.58980901360239e-08,3.49763620843823e-09,-6.38291502985666e-09,1.50886247940462e-08 +2.892,-1.02467747644655e-06,-7.41488944678431e-07,8.0916050802099e-07,3.74481071152566e-10,1.74348915860101e-09,0.0799999432322827,-2.2414102366676e-09,1.33206726898871e-09,4.64939718669565e-10,5.2579468556857e-11,3.35663788431084e-10,-7.293679549214e-10,-0.167452749468965,-0.119610214358891,0.125746497653964,-3.42781358853016e-09,-2.24750773547555e-08,-0.102510643760004 +2.894,-7.36808861319382e-09,9.24990408573967e-09,2.88861596101087e-09,3.74606005937306e-10,1.74433793104223e-09,0.0799999954108374,-0.000425217680574056,-0.000302074200462382,0.00031747938734547,3.84518805685019e-11,2.8932238549384e-10,-0.000240561708400588,-4.30222264063973e-08,2.67867325542958e-08,1.23503637872169e-08,-2.50407333757252e-09,6.20380483096205e-09,-1.73914702084054e-08 +2.896,-2.72554819874277e-06,-1.94978574652796e-06,2.07907805740287e-06,3.7463487867484e-10,1.74464644814298e-09,0.0799989809854491,-2.41349914229319e-09,1.43921419920589e-09,5.14341173818433e-10,4.25631752065669e-11,3.60479007754932e-10,-7.98933835755022e-10,0.166304771644985,0.117352106202267,-0.125705437054816,1.09721259855533e-09,2.74888618811974e-08,0.0726640638666619 +2.898,-7.377742609763e-09,9.25566094253649e-09,2.89067332570614e-09,3.74776258638132e-10,1.74577984707325e-09,0.0799999954076417,0.000240001406005884,0.000167334224346685,-0.000185342360873794,4.28407309627232e-11,3.99277833018629e-10,5.00945470660596e-05,-9.87907401283488e-09,4.53066403838242e-09,6.16195462710408e-09,-2.17490955800592e-09,1.30971622436249e-09,-2.53790044535407e-09 +2.9,-1.76554257471924e-06,-1.28044884914122e-06,1.3377086139077e-06,3.74806241598691e-10,1.74624355947506e-09,0.0799991813636374,-2.45301543834453e-09,1.45733685535942e-09,5.38988992326849e-10,3.38635369745432e-11,3.65717872652382e-10,-8.09085437536438e-10,-0.0228348634792461,-0.0153872203500962,0.0198695913314252,8.67361737988403e-13,-6.87644385877204e-09,0.0333264277641367 +2.902,-7.38755467151637e-09,9.26149028995793e-09,2.89282928167545e-09,3.7491171278603e-10,1.74724271856386e-09,0.0799999954044053,0.000148661952088899,0.0001057853429463,-0.000105863995548093,4.28442004096751e-11,3.71772057583541e-10,0.000183400258122607,3.99561433201897e-08,-2.36434136158259e-08,-1.17319348680311e-08,2.53182891318815e-09,-5.58234014569336e-09,1.51953102878188e-08 +2.904,-1.17089476636364e-06,-8.57307477356017e-07,9.14252631715323e-07,3.7497761840033e-10,1.74773064770539e-09,0.0799999149646699,-2.29319086506377e-09,1.36276320089612e-09,4.92061252854725e-10,4.39908526272958e-11,3.43388512069609e-10,-7.48304196385163e-10,-0.133124147904854,-0.0945668163308126,0.0986621453815185,-3.15459464106382e-09,-1.7123455431367e-08,-0.108607918841534 +2.906,-7.39672743497663e-09,9.26694134276151e-09,2.89479752668687e-09,3.75087676196539e-10,1.74861627261214e-09,0.0799999954014121,-0.000383834639530516,-0.00027248192237695,0.000288784585977981,3.02258218454199e-11,3.03278235858073e-10,-0.00025103141724353,-4.06913137082978e-08,2.68715171641842e-08,1.39664755455237e-08,-2.56175289314875e-09,6.51562137576888e-09,-1.64711994043997e-08 +2.908,-2.70623332448571e-06,-1.94723516686382e-06,2.06939097562725e-06,3.75098521687711e-10,1.74894376064882e-09,0.0799989108390009,-2.45595611989696e-09,1.47024926955286e-09,5.4792715503682e-10,3.37438410547008e-11,3.69450997572684e-10,-8.14188994002762e-10,0.151386636985847,0.107166673586666,-0.114453189945266,1.02175212735034e-09,2.55598493759112e-08,0.078212903871326 +2.91,-7.40655125945622e-09,9.27282233983973e-09,2.89698923530701e-09,3.75222651560758e-10,1.75009407660243e-09,0.0799999953981554,0.000221711908412873,0.000156184771969714,-0.000169028173803084,3.43128303548212e-11,4.05517633361718e-10,6.18201982417743e-05,-6.88500905593469e-09,3.62643942652951e-09,5.83300768797201e-09,-1.77722420113823e-09,1.19348975147204e-09,-1.49880108324396e-09 +2.912,-1.81938569083421e-06,-1.32249607898496e-06,1.39327828041491e-06,3.7523577300913e-10,1.75056583118227e-09,0.0799991581197939,-2.4834961561207e-09,1.48475502725898e-09,5.71259185788708e-10,2.66349442501479e-11,3.74224956578572e-10,-8.20184198335738e-10,-0.0806839462823531,-0.057769442512014,0.0627210063998753,-2.75430719898217e-09,-1.12696310616833e-08,-0.015283879623712 +2.914,-7.4164852440807e-09,9.27876135994876e-09,2.89927427205017e-09,3.75329191337759e-10,1.75159097642874e-09,0.0799999953948746,-0.00010102387671654,-7.48929980783421e-05,8.18558517964168e-05,2.32956015588925e-11,3.60439109114985e-10,6.84679746926208e-07,1.00033913444375e-09,3.56485674313234e-10,2.0641040959779e-09,-2.90566182226115e-10,3.27429056090622e-10,7.38124839028131e-10 +2.916,-2.22348119770037e-06,-1.62206807129833e-06,1.72070168760058e-06,3.75328955415366e-10,1.75200758761873e-09,0.0799991608585128,-2.47949479958292e-09,1.48618096995623e-09,5.79515602172619e-10,2.54726795212434e-11,3.75534672802935e-10,-8.17231698979625e-10,0.04065141388348,0.0303723260593451,-0.0315780116961778,1.08376849161651e-09,5.89892718005911e-09,0.00268192285480389 +2.918,-7.42640322327903e-09,9.28470608382859e-09,2.90159233445886e-09,3.75431082055844e-10,1.75309311511995e-09,0.0799999953916057,6.15817788173801e-05,4.65963061590385e-05,-4.44561949882946e-05,2.76306755253586e-11,3.84034817835221e-10,1.14123711661418e-05,3.63106083828973e-09,-9.9768283912116e-10,-5.28223298434937e-10,5.45570533194705e-10,-1.7130394325271e-10,1.23772520010945e-09 +2.92,-1.97715408243085e-06,-1.43568284666218e-06,1.5428769076474e-06,3.75439478117467e-10,1.75354372689007e-09,0.0799992065079975,-2.46497055622977e-09,1.48219023859974e-09,5.7740270897888e-10,2.76549616540222e-11,3.74849457029924e-10,-8.12280798179187e-10,-0.0212214266568955,-0.0156038413021749,0.0160174960797069,2.68882138776405e-10,-3.35408784080114e-09,-0.00137735069009881 +2.922,-7.43626310550395e-09,9.29063484478299e-09,2.90390194529477e-09,3.7554170190246e-10,1.75459251294807e-09,0.0799999953883566,-2.3303927810202e-05,-1.58190590496612e-05,1.96137893305331e-05,2.87062040804642e-11,3.70618466472017e-10,5.90296840574655e-06,3.56068256476827e-09,-1.51549779670024e-09,-1.98712574173143e-09,7.97972798949331e-10,-4.48859699408998e-10,1.05904868208384e-09 +2.924,-2.07036979367166e-06,-1.49895908286082e-06,1.62133206496953e-06,3.75554302933789e-10,1.75502620075596e-09,0.0799992301198711,-2.45072782597069e-09,1.47612824741294e-09,5.69454206011954e-10,3.08468528498196e-11,3.73054018232288e-10,-8.08044603450852e-10,0.0102579688017647,0.00734619516737019,-0.0085391493518088,1.04343617080005e-09,9.9399655173471e-10,-0.000697466515098276 +2.926,-7.44606601680783e-09,9.29653935777264e-09,2.90617976211882e-09,3.75665089313859e-10,1.756084729021e-09,0.0799999953851244,1.77279473968566e-05,1.35657216198195e-05,-1.45428080767021e-05,3.28799487636644e-11,3.74594452678955e-10,3.11310234535344e-06,2.4873901766434e-09,-1.48904326369159e-09,-2.56435497836271e-09,7.99273841556312e-10,-5.78530279238265e-10,6.99960922556641e-10 +2.928,-1.99945800408424e-06,-1.44469619638155e-06,1.56316083266272e-06,3.75685822728844e-10,1.75652457856668e-09,0.0799992425722805,-2.44077826526412e-09,1.47017207435818e-09,5.59196786098503e-10,3.40439482160448e-11,3.70739897115335e-10,-8.05244759760625e-10,-0.00571396277964155,-0.00430445091831495,0.00417316385376182,6.08887940067859e-10,-1.3986208025063e-09,-0.000535523122374703 +2.93,-7.45582912986889e-09,9.30242004607007e-09,2.90841654926322e-09,3.75801265106723e-10,1.75756768860946e-09,0.0799999953819034,-5.12790372170961e-06,-3.65208205344025e-06,2.14984733834522e-06,3.53155005239358e-11,3.6899996946893e-10,9.71009855854631e-07,1.40332352942946e-09,-1.14535117501369e-09,-2.47284831500494e-09,6.52689707836273e-10,-5.5641255491956e-10,3.07046055247895e-10 +2.932,-2.01996961897107e-06,-1.45930452459531e-06,1.57176022201611e-06,3.7582708473094e-10,1.75800057844455e-09,0.0799992464563199,-2.4351649711464e-09,1.46559066965812e-09,5.49305392838483e-10,3.66547070473899e-11,3.68514246895657e-10,-8.04016575539634e-10,0.00250502887351586,0.00176892184645775,-0.00202940469789213,6.38378239159464e-10,-1.12757025938492e-10,-0.000268077240093977 +2.934,-7.46556978975348e-09,9.3082824087487e-09,2.91061377083457e-09,3.75947883934913e-10,1.75904174559705e-09,0.0799999953786873,4.89221177235382e-06,3.42360533239077e-06,-5.9677714532233e-06,3.78690134805737e-11,3.68548941365176e-10,-1.0129910452128e-07,6.16030121879107e-10,-6.83914730403856e-10,-1.95633440003284e-09,4.85722573273506e-10,-4.10262102068515e-10,3.20923843055709e-11 +2.936,-2.00040077188166e-06,-1.44561010326574e-06,1.54788913620321e-06,3.75978560784862e-10,1.75947477421001e-09,0.0799992460511235,-2.43270085065888e-09,1.46285501073651e-09,5.41480055238352e-10,3.85975973404839e-11,3.66873198487383e-10,-8.03888206002411e-10,-0.00157439726518684,-0.00115979495538681,0.00131310679625691,3.62557206479152e-10,-5.7809659836927e-10,-0.000115335570087527 +2.938,-7.47530059315611e-09,9.31413382879165e-09,2.91277969105552e-09,3.76102274324275e-10,1.76050923839099e-09,0.0799999953754718,-1.40537728839356e-06,-1.21557448915649e-06,-7.15344268195638e-07,3.93192423064903e-11,3.66236554971699e-10,-5.62641384871387e-07,1.08447322302862e-10,-2.01444763647807e-10,-1.23512311489549e-09,3.19189119579732e-10,-2.46764414457701e-10,-1.64798730217797e-10 +2.94,-2.00602228103523e-06,-1.45047240122237e-06,1.54502775913043e-06,3.76135837754088e-10,1.7609397204299e-09,0.079999243800558,-2.43226706136967e-09,1.46204923168192e-09,5.3653956277877e-10,3.98743538188029e-11,3.65886140829552e-10,-8.04547400923283e-10,0.00059014061406994,0.000439014231435122,-0.000290140841257072,2.26381413614972e-10,-7.28583859910258e-11,-3.63748970180766e-05 +2.942,-7.48502966140159e-09,9.31998202571838e-09,2.91492584930664e-09,3.7626177173955e-10,1.76197278295431e-09,0.0799999953722536,9.55185167886198e-07,5.40482436583999e-07,-1.87590763322393e-06,4.02247679609502e-11,3.65945121427735e-10,-7.08140972943693e-07,-2.43864173646302e-10,2.53269627492614e-10,-4.55581752878409e-10,1.30971622436247e-10,-6.6786853825107e-11,-2.47198095326695e-10 +2.944,-2.00220154036369e-06,-1.44831047147603e-06,1.53752412859753e-06,3.76296736825932e-10,1.76240350091561e-09,0.0799992409679941,-2.43324251806426e-09,1.46306231019189e-09,5.34717235767256e-10,4.03982403085478e-11,3.65618993414251e-10,-8.05536193304589e-10,-0.000433845118508256,-0.000307645898556599,0.00050471525938657,4.59701721133853e-11,-7.41594285980084e-11,-5.41953634747294e-07 +2.946,-7.49476263147385e-09,9.32583427495914e-09,2.91706471824971e-09,3.76423364700784e-10,1.76343525892797e-09,0.0799999953690315,-7.80195306146827e-07,-6.90101157642397e-07,1.42953404322354e-07,4.04086486494037e-11,3.65648483713343e-10,-7.10308787482682e-07,3.13846577849538e-08,-2.02665575294025e-08,-1.03044742877367e-08,1.83143430976251e-09,-4.95480392825875e-09,1.25316423904564e-08 +2.948,-2.00532232158828e-06,-1.4510708761066e-06,1.53809594221482e-06,3.76458371420529e-10,1.76386609485046e-09,0.0799992381267589,-2.30770388692444e-09,1.38199608007428e-09,4.9349933861631e-10,4.77239775475979e-11,3.45799777701216e-10,-7.55409623742764e-10,-0.0225876263729022,-0.0141978056063165,0.0182549103420332,2.76254713549306e-09,-9.99330826423338e-09,-0.0161745650050643 +2.95,-7.50399344702155e-09,9.33136225927944e-09,2.91903871560417e-09,3.76614260610975e-10,1.76481845803877e-09,0.0799999953660098,-9.11307007977557e-05,-5.74813235829085e-05,7.31625947724551e-05,5.1458837191376e-11,3.25675250656409e-10,-6.54085688077399e-05,-2.11949462971747e-08,1.63640802297582e-08,3.63034255435046e-09,3.82072845583891e-10,3.6498581934552e-09,-1.08298786605232e-08 +2.952,-2.3698451247793e-06,-1.68099617043824e-06,1.83074632130464e-06,3.76664206769295e-10,1.76516879585309e-09,0.0799989764924837,-2.39248367211314e-09,1.44745240099331e-09,5.08020708833711e-10,4.92522689299335e-11,3.60399210475037e-10,-7.98729138384856e-10,0.0500836054722101,0.0321556259403731,-0.0414174108590188,-1.495331636292e-09,1.47030825015104e-08,0.0267832868244832 +2.954,-7.51356338171e-09,9.33715206888341e-09,2.92107079843951e-09,3.76811269686694e-10,1.76626005488068e-09,0.0799999953628149,0.000109203721091085,7.11411801785841e-05,-9.25070486636203e-05,4.54775106462079e-11,3.84487580662451e-10,4.17245784901931e-05,-1.95728985319735e-08,9.98094835946705e-09,8.79396382102989e-09,-2.97548444216921e-09,2.41690348290468e-09,-6.24066770482656e-09 +2.956,-1.93303024041496e-06,-1.3964314497239e-06,1.46071812665016e-06,3.7684611681188e-10,1.76670674617574e-09,0.0799991433907977,-2.47077526624104e-09,1.48737619443118e-09,5.43196564117831e-10,3.73503311612566e-11,3.70066824406656e-10,-8.23691809204163e-10,0.0230147360802857,0.0179323866894999,-0.0135054678393389,1.45716771982052e-10,-4.77048955893622e-12,0.0371105048219133 +2.958,-7.52344648277496e-09,9.34310157366114e-09,2.92324358469598e-09,3.76960671011339e-10,1.7677403221783e-09,0.0799999953595201,0.000201262665412228,0.000142870726936584,-0.000146528920020976,4.60603777341361e-11,3.84468498704215e-10,0.000190166597777846,3.66929522790243e-08,-2.29269728202475e-08,-1.04536605066707e-08,1.89648644011164e-09,-5.35118824251945e-09,1.45630035808253e-08 +2.96,-1.12797957876605e-06,-8.24948541977566e-07,8.74602446566258e-07,3.77030358322816e-10,1.76824462017056e-09,0.0799999040571888,-2.32400345712494e-09,1.39566830315019e-09,5.01381922091148e-10,4.49362769217032e-11,3.48662071436578e-10,-7.65439794880861e-10,-0.152151603752062,-0.108643569180769,0.112853480838549,-4.09351372243626e-09,-1.96817388775638e-08,-0.113232798224644 +2.962,-7.53274249660346e-09,9.34868424687374e-09,2.92524911238434e-09,3.77140416119026e-10,1.76913497046405e-09,0.0799999953564584,-0.000407343749596019,-0.000291703549786491,0.00030488500333322,2.96863228443911e-11,3.0574154319396e-10,-0.000262764595120729,-4.21549866411533e-08,2.79622245497046e-08,1.51807819787075e-08,-2.93255003613879e-09,6.77669725890339e-09,-1.70419234279961e-08 +2.964,-2.75735457715013e-06,-1.99176274112353e-06,2.09414245989914e-06,3.77149103614194e-10,1.76946758634333e-09,0.0799988529988083,-2.49262340368955e-09,1.50751720134901e-09,5.62105050005978e-10,3.3206076777148e-11,3.75768860472192e-10,-8.33607488592846e-10,0.160908716767779,0.114840116722343,-0.120822140360719,1.0247878934333e-09,2.70799008217359e-08,0.0826455986433285 +2.966,-7.54271299021822e-09,9.35471431567914e-09,2.92749753258437e-09,3.77273240426135e-10,1.77063804590594e-09,0.079999995353124,0.000236291117475099,0.000167656917102882,-0.000178403558109656,3.37854744181243e-11,4.14061146480904e-10,6.78177994525852e-05,-7.02690401525873e-09,3.96275894043446e-09,6.41305585025175e-09,-1.8921496314217e-09,1.29193530873371e-09,-1.48665801891212e-09 +2.968,-1.81219010724973e-06,-1.321135072712e-06,1.38052822746051e-06,3.77284245511866e-10,1.77112383092926e-09,0.0799991242700061,-2.52073101975059e-09,1.52336823711074e-09,5.87757273406985e-10,2.56374782514612e-11,3.80936601707127e-10,-8.39554120668495e-10,-0.0858245912909159,-0.0616538849966974,0.0663096570070221,-2.87400311882457e-09,-1.19093103434498e-08,-0.016523885667738 +2.97,-7.55279591429722e-09,9.36080778862758e-09,2.92984856167799e-09,3.77375790339141e-10,1.77216179231277e-09,0.0799999953497657,-0.000107007247688565,-7.89586228839081e-05,8.68350699184325e-05,2.2289461942826e-11,3.66423905107105e-10,1.72225678163329e-06,1.5025822383205e-09,3.16153353496773e-10,2.16385069584657e-09,-2.04697370165263e-10,3.8814437774981e-10,8.93382590128055e-10 +2.972,-2.24021909800399e-06,-1.63696956424764e-06,1.72786850713424e-06,3.77373403359638e-10,1.77258952654968e-09,0.0799991311590332,-2.5147206907973e-09,1.52463285052473e-09,5.96412676190372e-10,2.48186887708002e-11,3.82489179218126e-10,-8.35980590307982e-10,0.0431615722069341,0.0322509341411578,-0.0334654491470839,1.23945992358543e-09,6.27015800391815e-09,0.00276773080669367 +2.974,-7.56285479706041e-09,9.36690632002968e-09,2.93223421238276e-09,3.77475065094224e-10,1.77369174902964e-09,0.0799999953464218,6.5639041139172e-05,5.00451136807231e-05,-4.70267266699034e-05,2.72473016371677e-11,3.91504537122777e-10,1.2793180008408e-05,4.19210835749667e-09,-1.22883474229507e-09,-6.94106230825219e-10,6.46184494801359e-10,-2.15105711021124e-10,1.46150452851046e-09 +2.976,-1.9776629334473e-06,-1.43678910952474e-06,1.53976160045463e-06,3.77482392566186e-10,1.77415554469817e-09,0.0799991823317533,-2.49795225736732e-09,1.51971751155555e-09,5.93636251267071e-10,2.74034267500056e-11,3.81628756374041e-10,-8.30134572193941e-10,-0.0225787452526706,-0.0166773459070457,0.0169331474963747,3.62557206479152e-10,-3.59174495700996e-09,-0.00160384941438884 +2.978,-7.57284660608988e-09,9.3729851900759e-09,2.93460875738782e-09,3.77584678801224e-10,1.77521826405513e-09,0.0799999953431013,-2.46759398715105e-05,-1.66642699474598e-05,2.07058633155954e-05,2.86975304630843e-11,3.77137557294737e-10,6.37778235085262e-06,3.96514418521398e-09,-1.79392091459446e-09,-2.3561881612455e-09,9.32413868337533e-10,-5.09141340199192e-10,1.23772520010945e-09 +2.98,-2.07636669293334e-06,-1.50344618931458e-06,1.62258505371701e-06,3.77597182688039e-10,1.77566409492735e-09,0.0799992078428827,-2.48209168062646e-09,1.51254182789717e-09,5.84211498622089e-10,3.11330822233557e-11,3.79592191013245e-10,-8.25183671393503e-10,0.0108880564575079,0.00776849276616988,-0.00907822383065802,1.18004564453322e-09,9.79685083057888e-10,-0.000788406978591281 +2.982,-7.58277497281239e-09,9.37903535738749e-09,2.93694560338231e-09,3.77709211130117e-10,1.77673663281919e-09,0.0799999953398005,1.88762859585213e-05,1.44097011172198e-05,-1.56070320070367e-05,3.34177130412172e-11,3.81056297626969e-10,3.22415443648749e-06,2.74753093540414e-09,-1.75814224290249e-09,-2.98589278302508e-09,9.00755164900955e-10,-6.68302219120051e-10,7.6588041464376e-10 +2.984,-2.00086154909926e-06,-1.4458073848457e-06,1.56015692568887e-06,3.77730853540204e-10,1.77718832011786e-09,0.0799992207395004,-2.47110155688485e-09,1.50550925892556e-09,5.72267927489988e-10,3.47361028829596e-11,3.76918982136764e-10,-8.22120149734928e-10,-0.00607747569443864,-0.0045890962852707,0.00442156897445359,6.97358837342676e-10,-1.50357157280288e-09,-0.000583586654695488 +2.986,-7.59265937903993e-09,9.38505739442319e-09,2.93923467509227e-09,3.77848155541649e-10,1.77824430874773e-09,0.0799999953365121,-5.43361681923327e-06,-3.94668402386305e-06,2.07924389077768e-06,3.62071483905879e-11,3.75042011335757e-10,8.89807817705534e-07,1.56144086375931e-09,-1.36782946080771e-09,-2.86641370361717e-09,7.4419637119405e-10,-6.36643515683488e-10,3.59955121265187e-10 +2.988,-2.02259601637619e-06,-1.46159412094116e-06,1.56847390125198e-06,3.77875682133766e-10,1.7786884881632e-09,0.0799992242987317,-2.46485579342981e-09,1.50003794108233e-09,5.6080227267552e-10,3.77128883677358e-11,3.7437240807403e-10,-8.20680329249867e-10,0.00265805218849603,0.00187910508182322,-0.0021370678187152,7.22946008613334e-10,-1.82145964977565e-10,-0.000280498906220227 +2.99,-7.60251880221365e-09,9.39105754618752e-09,2.94147788418297e-09,3.7799900709512e-10,1.77974179838003e-09,0.0799999953332293,5.19859193475087e-06,3.56973630342982e-06,-6.46902738408311e-06,3.90989324250412e-11,3.74313427475847e-10,-2.32187807175377e-07,7.18785382776421e-10,-8.55435514091062e-10,-2.26403097658423e-09,5.65519853168439e-10,-4.9960036108132e-10,4.33680868994201e-11 +2.992,-2.00180164863718e-06,-1.44731517572744e-06,1.54259779171564e-06,3.78032077863466e-10,1.78018574187311e-09,0.0799992233699805,-2.4619806518987e-09,1.49661619902597e-09,5.51746148769183e-10,3.99749677804095e-11,3.72374006629705e-10,-8.20506856902269e-10,0.0593858382426836,0.0430412462116592,-0.044240311379345,3.7990444123892e-09,3.82549894539784e-09,0.0446149491829805 +2.994,-7.61236672482124e-09,9.39704401098362e-09,2.94368486877805e-09,3.78158906966242e-10,1.78123129440655e-09,0.0799999953299473,0.000242741944905486,0.000175734721150067,-0.000183430272901463,5.4295110074598e-11,3.89615423257439e-10,0.000178227608924747,4.21976499966406e-08,-2.65562311724254e-08,-1.73695693245212e-08,3.85325452101347e-09,-6.68475691467662e-09,1.56931759254242e-08 +2.996,-1.03083386901524e-06,-7.44376291127169e-07,8.0887670010979e-07,3.78249258303764e-10,1.78174420356614e-09,0.0799999362804162,-2.29319005191214e-09,1.39039127433627e-09,4.82267871471098e-10,5.53879858644634e-11,3.45634978970999e-10,-7.57734153200573e-10,-0.166704304500339,-0.119674133295441,0.124246217885274,-3.25000443224254e-09,-2.25704871459342e-08,-0.108307678724044 +2.998,-7.62153948502889e-09,9.40260557608097e-09,2.94561394026394e-09,3.783804589097e-10,1.78261383432243e-09,0.0799999953269164,-0.00042407527309587,-0.000302961812031696,0.000313554598639631,4.12950923456279e-11,2.99333474673702e-10,-0.00025500310597143,-4.32209471120867e-08,2.75441561919942e-08,1.2223945813905e-08,-2.47371567674292e-09,6.17821765969139e-09,-1.78971421016527e-08 +3,-2.72713496139872e-06,-1.95622353925395e-06,2.06309509466832e-06,3.78414438673147e-10,1.78294153746483e-09,0.0799989162679923,-2.46607384036049e-09,1.50056789910424e-09,5.31163654726718e-10,4.54931231574917e-11,3.70347849609764e-10,-8.29322721607183e-10,0.165828189845895,0.117554719555662,-0.124274638422465,1.13581019589581e-09,2.74016920265296e-08,0.0774351100740754 +3.002,-7.63140378039033e-09,9.40860784767739e-09,2.94773859488284e-09,3.78562431402329e-10,1.78409522572087e-09,0.0799999953235991,0.000239237486287711,0.000167257066190952,-0.000183543955050228,4.58383331292111e-11,4.0894024277982e-10,5.47373343248724e-05,-1.02535438906842e-08,4.82665123147091e-09,6.13029592366753e-09,-2.16233281280509e-09,1.27458807397396e-09,-2.72351585728358e-09 +3.004,-1.77018501624788e-06,-1.28719527449014e-06,1.3289192744674e-06,3.78597792005664e-10,1.78457729843595e-09,0.0799991352173296,-2.50708801592322e-09,1.51987450403013e-09,5.55684838421388e-10,3.68437919062714e-11,3.7544620190566e-10,-8.40216785036318e-10,-0.088274984059899,-0.0630769627079241,0.0681190817804471,-3.39745592770057e-09,-1.20515576684798e-08,-0.0143178275936739 +3.006,-7.64143213245402e-09,9.41468734569351e-09,2.94996133423653e-09,3.78709806569955e-10,1.78559701052849e-09,0.0799999953202382,-0.000113862449951886,-8.50507846407444e-05,8.89323720715609e-05,3.22485094184088e-11,3.60734012105901e-10,-2.5339760498233e-06,-1.59605401811591e-09,1.87523607753093e-09,3.69105787600965e-09,-8.09682182412174e-10,7.32053306862199e-10,-1.81278603239576e-10 +3.008,-2.22563481605542e-06,-1.62739841305312e-06,1.68464876275365e-06,3.78726786043337e-10,1.78602023448438e-09,0.0799991250814254,-2.51347223199569e-09,1.52737544834025e-09,5.70449069925427e-10,3.36050631766227e-11,3.78374415133109e-10,-8.40941899449276e-10,0.0446360595487418,0.0335018851180778,-0.0334596463680367,6.04117450508921e-10,6.88771956136589e-09,0.00319229718874491 +3.01,-7.65148602138201e-09,9.42079684748687e-09,2.95224313051623e-09,3.78844226822661e-10,1.78711050818903e-09,0.0799999953168744,6.46817882430815e-05,4.89567558315667e-05,-4.49062134005862e-05,3.46649792204445e-11,3.88284890351364e-10,1.02352127051564e-05,1.89026583014701e-09,5.43835809718729e-10,1.74578233813616e-09,-3.25260651745651e-11,4.03323208164607e-10,7.04297731246583e-10 +3.012,-1.9669076630831e-06,-1.43157138972685e-06,1.5050239091513e-06,3.78865445960219e-10,1.78757337404578e-09,0.0799991660222762,-2.5059111686751e-09,1.52955079157912e-09,5.77432199277971e-10,3.34749589159244e-11,3.79987707965767e-10,-8.3812470852429e-10,-0.0230399981786206,-0.016928937491634,0.0173200863057103,-3.30898503042576e-10,-3.05181227511218e-09,-0.00115781159312766 +3.014,-7.66150966605671e-09,9.42691505065318e-09,2.95455285931334e-09,3.78978126658325e-10,1.78863045902089e-09,0.0799999953135219,-2.74782044714012e-05,-1.87589941349694e-05,2.43741318222551e-05,3.33413852082742e-11,3.76077641250916e-10,5.6039663326457e-06,2.40005769164969e-09,-1.84314369322536e-10,3.89228579922296e-10,2.766883944183e-10,8.89045781438113e-11,7.45063732932038e-10 +3.016,-2.0768204809687e-06,-1.50660736626673e-06,1.60252043644032e-06,3.78998811501052e-10,1.78907768461078e-09,0.0799991884381415,-2.4963109379085e-09,1.52881353410183e-09,5.78989113597661e-10,3.45817124935976e-11,3.80343326278343e-10,-8.35144453592562e-10,0.0719327264969292,0.0521297499396933,-0.0548806379212923,3.95733792957208e-09,6.13268116844699e-09,0.0450295150689408 +3.018,-7.67149490980834e-09,9.43303030478959e-09,2.95686881576773e-09,3.79116453508299e-10,1.790151832326e-09,0.0799999953101814,0.000260252701516316,0.000189760005623804,-0.000195148419862914,4.91707369265626e-11,4.00608365924704e-10,0.000185722026608409,4.38993188588837e-08,-2.70133308083453e-08,-1.6603038388574e-08,3.84024409494365e-09,-6.56722939917918e-09,1.6457321616592e-08 +3.02,-1.03580967490344e-06,-7.47567343771516e-07,8.21926756988667e-07,3.79195494448759e-10,1.79068011807448e-09,0.079999931326248,-2.32071366247297e-09,1.42076021086845e-09,5.12576960043365e-10,4.99426888733722e-11,3.54074408681626e-10,-7.69315167126194e-10,-0.172201058393239,-0.123954318903725,0.129074945809946,-3.32416386084055e-09,-2.35081051846997e-08,-0.110966815951296 +3.022,-7.68077776445823e-09,9.43871334563307e-09,2.95891912360791e-09,3.79316224263793e-10,1.79156812996073e-09,0.0799999953071041,-0.000428551532056641,-0.000306057269991097,0.000321151363376869,3.58740814832003e-11,3.06575945185905e-10,-0.000258145237196777,-4.21911854411871e-08,2.70070424357448e-08,1.18822052891376e-08,-2.35271871429354e-09,6.10319086935538e-09,-1.75909634081428e-08 +3.024,-2.75001580313e-06,-1.97179642373591e-06,2.10653221049614e-06,3.79338990774691e-10,1.79190642185523e-09,0.0799988987452992,-2.48947840423771e-09,1.52878838061143e-09,5.60105781199915e-10,4.05318140161981e-11,3.78487172159047e-10,-8.39679020758765e-10,0.168220968276827,0.119240535267732,-0.127881484935982,1.40512601554121e-09,2.77187127417644e-08,0.0788625286367652 +3.026,-7.69073567807518e-09,9.44482849915551e-09,2.96115954673271e-09,3.79478351519857e-10,1.79308207864937e-09,0.0799999953037454,0.000244332341050668,0.000170904871079833,-0.000190374576367058,4.14945855453652e-11,4.17450796152962e-10,5.73048773502837e-05,-9.49462947499868e-09,3.82766734974282e-09,4.81038819888368e-09,-1.89865484445661e-09,9.05525654459892e-10,-2.41473507855971e-09 +3.028,-1.77268643892733e-06,-1.28817693941657e-06,1.34503390502791e-06,3.79504969116873e-10,1.79357622503984e-09,0.0799991279648086,-2.52745692213771e-09,1.5440990500104e-09,5.7934733399545e-10,3.29371946383716e-11,3.82109274776887e-10,-8.49337961073004e-10,-0.0896818682318726,-0.06407456269405,0.0697413797890507,-3.11209391590239e-09,-1.27025126528401e-08,-0.0148739622615051 +3.03,-7.70084550576373e-09,9.45100489535555e-09,2.96347693606869e-09,3.79610100298411e-10,1.79461051574847e-09,0.079999995300348,-0.000114395131876823,-8.53933796963676e-05,8.85909427891448e-05,2.90462098817556e-11,3.66640745541602e-10,-2.1909716957369e-06,-8.52670798551224e-10,8.04478011984244e-10,1.92575989876875e-09,-4.32379826387217e-10,3.30031141304587e-10,8.50014503228635e-11 +3.032,-2.23026696643462e-06,-1.62975045820205e-06,1.69939767618449e-06,3.796211539564e-10,1.79504278802201e-09,0.0799991192009218,-2.53086760533191e-09,1.54731696205834e-09,5.87050373590525e-10,3.12076753328227e-11,3.83429399342105e-10,-8.48997955271712e-10,0.0452064763359512,0.0339052032207343,-0.0342016442192189,1.02218580821933e-09,6.5581221009303e-09,0.00318405754887174 +3.034,-7.71096897618506e-09,9.45719416320379e-09,2.96582513756305e-09,3.79734930999742e-10,1.79614423334584e-09,0.0799999952969521,6.64307734669824e-05,5.02274331865698e-05,-4.8215634087731e-05,3.3134953114633e-11,3.92873233945323e-10,1.05452584997501e-05,2.6019632412208e-09,-4.33247188125207e-10,-2.05998412772246e-11,3.78603398631938e-10,-4.77048955893622e-12,9.07260377935869e-10 +3.036,-1.96454387256669e-06,-1.42884072545577e-06,1.50653513983356e-06,3.79753693768858e-10,1.79661428095779e-09,0.0799991613819558,-2.52045975236703e-09,1.54558397330584e-09,5.86967974225416e-10,3.27220889273505e-11,3.8341031738387e-10,-8.45368913759969e-10,-0.0234723213759629,-0.017238577486485,0.0177822984332235,5.07406616723216e-11,-3.45730388762177e-09,-0.0012561043715581 +3.038,-7.72105081519453e-09,9.46337649909701e-09,2.96817300945995e-09,3.79865819355452e-10,1.79767787461538e-09,0.0799999952935706,-2.74585120368692e-05,-1.87268767593701e-05,2.29135596451629e-05,3.33379157613222e-11,3.79044018394836e-10,5.52084101351768e-06,2.98404963933185e-09,-8.68662780595385e-10,-1.09591155594835e-09,6.17127876578747e-10,-2.10335221462188e-10,8.70831184940356e-10 +3.04,-2.07437792071417e-06,-1.50374823249325e-06,1.59818937841422e-06,3.79887045431904e-10,1.79813045703137e-09,0.0799991834653198,-2.5085235538097e-09,1.54210932218346e-09,5.82584328001622e-10,3.51906004336655e-11,3.82568976498021e-10,-8.41885589020207e-10,0.0114846400451062,0.00824722957374484,-0.00920678671950842,8.66928057119409e-10,1.37823780166357e-09,-0.000654975672656487 +3.042,-7.73108490940977e-09,9.46954493638574e-09,2.97050334677196e-09,3.80006581757186e-10,1.79920815052137e-09,0.079999995290203,1.84800481435555e-05,1.42620415356093e-05,-1.39135872328708e-05,3.68056279897999e-11,3.8455696960149e-10,2.90093832289173e-06,2.07882214046939e-09,-8.7278274885083e-10,-1.49706635976798e-09,5.84168130535189e-10,-3.26128013483639e-10,5.43835809718729e-10 +3.044,-2.00045772813994e-06,-1.44670006635081e-06,1.54253502948273e-06,3.80034267943863e-10,1.79966868490977e-09,0.0799991950690731,-2.50020826524783e-09,1.53861819118806e-09,5.76596062562551e-10,3.75272729558062e-11,3.81264464444086e-10,-8.39710245781333e-10,-0.00624404947276895,-0.00472495753699002,0.00454088130595261,3.8814437774981e-10,-1.18091300627121e-09,-0.000530072289013638 +3.046,-7.74108574247076e-09,9.4756994091505e-09,2.97280973102221e-09,3.80156690849009e-10,1.80073320837915e-09,0.0799999952868442,-6.4961497475203e-06,-4.63778861235081e-06,4.2499379909397e-06,3.83582055007991e-11,3.79833317576405e-10,7.80649166837177e-07,1.03848949838808e-09,-5.98696439646495e-10,-1.48795906151911e-09,4.44089209850062e-10,-2.75387351811318e-10,2.24646690138996e-10 +3.048,-2.02644232713003e-06,-1.46525122080021e-06,1.55953478144649e-06,3.80187700765866e-10,1.80118801818008e-09,0.0799991981916698,-2.49605430725427e-09,1.53622340542947e-09,5.70644226316474e-10,3.93036297952065e-11,3.80162915036841e-10,-8.38811659020777e-10,0.00287329025272487,0.00202247270905502,-0.00233840949815517,4.43655528981066e-10,1.37910516340156e-10,-0.000249555254933087 +3.05,-7.75106995969978e-09,9.48184430277221e-09,2.97509230792747e-09,3.8031390536819e-10,1.80225386003929e-09,0.0799999952834889,4.99701126337919e-06,3.45210222386927e-06,-5.10370000168097e-06,4.01328276167234e-11,3.80384959641766e-10,-2.17571852895171e-07,3.02777009193733e-10,-3.07046055247895e-10,-1.17766039975375e-09,3.1702071523476e-10,-2.74086309204335e-10,-4.77048955893621e-11 +3.052,-2.00645428207651e-06,-1.45144281190474e-06,1.53911998143977e-06,3.80348232076333e-10,1.80270955801864e-09,0.0799991973213824,-2.4948431992175e-09,1.53499522120848e-09,5.65933584717459e-10,4.05717126561455e-11,3.79066569800024e-10,-8.39002478603134e-10,-0.00167161761818431,-0.0012341010043309,0.001299902189578,2.12069944938164e-10,-4.45390252457045e-10,-8.70407678224548e-05 +3.054,-7.76104933249665e-09,9.48798428365705e-09,2.97735604226634e-09,3.80476192218815e-10,1.80377012631849e-09,0.0799999952801329,-1.68945920935807e-06,-1.48430179345432e-06,9.59087566310134e-08,4.09811073964761e-11,3.78603398631938e-10,-5.6573492418499e-07,-1.09843232599938e-10,4.7488055154865e-11,-7.5460471204991e-10,1.97324795392362e-10,-1.41813644161104e-10,-2.05564731903251e-10 +3.056,-2.01321211891394e-06,-1.45738001907855e-06,1.53950361646629e-06,3.80512156505919e-10,1.80422397161317e-09,0.0799991950584427,-2.4952825721479e-09,1.5351851734291e-09,5.62915165869259e-10,4.1361011837715e-11,3.78499315223379e-10,-8.39824737530747e-10,0.000711178382351885,0.000536375136580418,-0.000457307944116968,1.59160878920872e-10,4.03323208164607e-11,-1.02801031576227e-05 +3.058,-7.77103046278524e-09,9.49412502435076e-09,2.97960770292982e-09,3.80641636266166e-10,1.80528412357939e-09,0.0799999952767736,1.15525432004947e-06,6.61198752867353e-07,-1.73332301983686e-06,4.16177509121595e-11,3.78764727915204e-10,-6.06855336815481e-07,-3.3850147077713e-10,3.44125769546899e-10,-2.86663054405167e-10,9.28077059647591e-11,-9.10729824887823e-12,-2.4980018054066e-10 +3.06,-2.00859110163374e-06,-1.45473522406708e-06,1.53257032438694e-06,3.80678627509567e-10,1.80573903052483e-09,0.0799991926310213,-2.49663657803101e-09,1.53656167650729e-09,5.61768513651639e-10,4.1732242661574e-11,3.78462886030384e-10,-8.4082393825291e-10,-0.000450779950341003,-0.000309753506698429,0.000451032422998584,3.68628738645071e-11,-7.76288755499621e-11,1.35604253520549e-05 +3.062,-7.78101700909736e-09,9.50027127105679e-09,2.98185477698443e-09,3.80808565236812e-10,1.80679797512351e-09,0.0799999952734103,-6.47865481314541e-07,-5.77815273926363e-07,7.08066721574751e-08,4.17652024076176e-11,3.78454212413004e-10,-5.52613635407261e-07,-4.87240456314985e-10,5.73542949244831e-10,1.42464165464595e-10,3.46944695195361e-12,7.58941520739852e-11,-3.15719672627779e-10 +3.064,-2.011182563559e-06,-1.45704648516279e-06,1.53285355107557e-06,3.80845688319198e-10,1.80725284737449e-09,0.0799991904205668,-2.49858553985627e-09,1.53885584830426e-09,5.62338370313497e-10,4.17461204493818e-11,3.7876646263868e-10,-8.42086816943421e-10,0.000179643896234941,0.000145720278508718,-4.85337583924077e-05,-2.73218947466347e-11,1.42681005899092e-10,1.80206587499509e-05 +3.066,-7.79101135125679e-09,9.50642669445001e-09,2.98410413046568e-09,3.8097554971861e-10,1.80831304097406e-09,0.079999995270042,7.07101036252245e-08,5.06584010850907e-09,-1.23328361412156e-07,4.1655914828631e-11,3.790249364366e-10,-4.80531000407458e-07,-5.96568692882992e-10,7.42895328587067e-10,4.61219604175333e-10,-5.55111512312578e-11,1.52655665885959e-10,-3.43475248243407e-10 +3.068,-2.0108997231445e-06,-1.45702622180235e-06,1.53236023762993e-06,3.81012311978512e-10,1.80876894712023e-09,0.0799991884984428,-2.5009718146278e-09,1.54182742961861e-09,5.64183248730198e-10,4.15240758444568e-11,3.79377085302223e-10,-8.43460717936394e-10,-0.000109713436767652,-7.21049960190899e-05,0.00014043235194508,-1.00180280737661e-10,1.48318857196017e-10,1.83902589337425e-05 +3.07,-7.8010152385153e-09,9.51259400416848e-09,2.9863608634606e-09,3.81141646021987e-10,1.80983054931527e-09,0.0799999952666682,-3.68143643445385e-07,-2.83354143967851e-07,4.38401046368164e-07,4.12551937056804e-11,3.79618211865384e-10,-4.06969964672487e-07,-6.64521064113004e-10,8.18355799834968e-10,6.69820102177286e-10,-1.22298005055226e-10,1.83880688464101e-10,-3.48679418694783e-10 +3.072,-2.01237229771828e-06,-1.45815963837823e-06,1.5341138418154e-06,3.81177332753335e-10,1.81028741996769e-09,0.0799991868705629,-2.50362989888425e-09,1.54510085281795e-09,5.66862529138908e-10,4.10348838242359e-11,3.8011260805608e-10,-8.44855435611174e-10,6.14371781394926e-05,4.98699399918061e-05,-2.29045909842821e-05,-1.13624387676493e-10,2.09034178855228e-10,1.80247127987163e-05 +3.074,-7.81102975811084e-09,9.51877440757976e-09,2.98862831357716e-09,3.81305785557284e-10,1.8113509997475e-09,0.0799999952632887,-1.22394930887441e-07,-8.38743840006483e-08,3.46782682431046e-07,4.08006961549745e-11,3.80454348580805e-10,-3.3487111347763e-07,-6.94363728771701e-10,8.16837916707668e-10,7.30969104673984e-10,-1.22298005057504e-10,2.02962646678727e-10,-3.40005801268008e-10 +3.076,-2.01286187744183e-06,-1.45849513591423e-06,1.53550097254512e-06,3.81340535537955e-10,1.81180923736202e-09,0.0799991855310785,-2.50640735379934e-09,1.54836820448478e-09,5.69786405557604e-10,4.05456918040059e-11,3.80924458642795e-10,-8.46215458816246e-10,-1.08915100652555e-05,-4.42705572721579e-06,6.42035686768127e-06,-1.28369537222284e-10,2.03830008427275e-10,1.56975188056463e-05 +3.078,-7.82105538752603e-09,9.52496788039769e-09,2.99090745919939e-09,3.814679683245e-10,1.81287469758207e-09,0.0799999952599039,-1.65960971148463e-07,-1.01582606909512e-07,3.72464109901771e-07,4.02872180060853e-11,3.81269668614514e-10,-2.72081038255045e-07,-6.8472788203322e-10,8.29848342820404e-10,6.83697889969358e-10,-1.25333771139324e-10,2.01227923213309e-10,-3.43475248243407e-10 +3.08,-2.01352572132643e-06,-1.45890146634187e-06,1.53699082898473e-06,3.81501684409979e-10,1.81333431603647e-09,0.0799991844427543,-2.50914626532747e-09,1.55168759785606e-09,5.72521197117481e-10,4.00443567194486e-11,3.81729370335648e-10,-8.47589359809219e-10,3.1534749651515e-05,2.58305776941469e-05,-4.26678482042669e-05,-1.08853898117543e-10,2.02962646689286e-10,1.05640652475758e-05 +3.082,-7.83109197258734e-09,9.53117463078912e-09,2.99319754398786e-09,3.81628145751378e-10,1.81440161506341e-09,0.0799999952565135,-3.98219725424031e-08,1.73970386707634e-09,2.01792717084703e-07,3.98518024136152e-11,3.82081519201271e-10,-2.29824777264742e-07,-6.44842794612909e-10,7.16223955143924e-10,5.90673343570102e-10,-8.63024929298445e-11,1.72171304990698e-10,-3.10515502199848e-10 +3.084,-2.0136850092166e-06,-1.4588945075264e-06,1.53779799985307e-06,3.81661091619634e-10,1.81486264211328e-09,0.0799991835234552,-2.51172563650592e-09,1.55455249367664e-09,5.74883890491761e-10,3.96991467477292e-11,3.82418055555611e-10,-8.48831421818019e-10,7.90888668032902e-06,7.42406873824318e-06,-3.22317608800887e-05,-7.37257477290142e-11,1.70436581514721e-10,3.439198578703e-06 +3.086,-7.84113887513337e-09,9.53739284076383e-09,2.99549707954982e-09,3.81786942338369e-10,1.81593128728563e-09,0.0799999952531182,-8.18642582108702e-09,3.14359788200491e-08,7.28656735643484e-08,3.95568994226991e-11,3.8276326552733e-10,-2.1606798294993e-07,-5.93803977343154e-10,7.03864050377589e-10,4.44522890719056e-10,-6.50521303491302e-11,1.44849410244063e-10,-3.44342609981396e-10 +3.088,-2.01371775491988e-06,-1.45876876361112e-06,1.53808946254733e-06,3.81819319217325e-10,1.81639369517539e-09,0.0799991826591833,-2.51410085241529e-09,1.55736794987815e-09,5.76661982054638e-10,3.94389382263327e-11,3.82997453196587e-10,-8.50208792257944e-10,1.31020640165144e-05,9.75031492177201e-06,-3.6497512477529e-05,-5.03069808033274e-11,1.17961196366423e-10,-3.83648668389468e-06 +3.09,-7.85119527854303e-09,9.54362231256334e-09,2.99780372747804e-09,3.81944698091274e-10,1.81746327709842e-09,0.0799999952497173,4.42218302449705e-08,7.04372385071372e-08,-7.31243763457678e-08,3.93556714994858e-11,3.83235110312796e-10,-2.31413929685509e-07,-5.43198840942393e-10,5.95226992694541e-10,3.18755438710738e-10,-1.69135538907739e-11,1.34007388519208e-10,-2.84494650060196e-10 +3.092,-2.0135408675989e-06,-1.45848701465709e-06,1.53779696504194e-06,3.81976741903323e-10,1.81792663561664e-09,0.0799991817335276,-2.51627364777906e-09,1.55974885784893e-09,5.77937003809481e-10,3.93712840107696e-11,3.83533482750664e-10,-8.51346770858185e-10,1.8222117608227e-06,1.23690120645836e-08,-2.31435823196818e-05,-1.3010426069826e-12,1.24032728532342e-10,-9.48818454360454e-06 +3.094,-7.86126037313414e-09,9.54986130799473e-09,3.00011547549328e-09,3.82102183227317e-10,1.81899741102942e-09,0.079999995246312,5.15106772882613e-08,7.04867145553955e-08,-1.65698705624495e-07,3.93504673290579e-11,3.83731241226925e-10,-2.69366667859927e-07,-5.15795631032822e-10,6.31656185690054e-10,1.99493199737333e-10,-8.67361737988403e-13,9.36750677027475e-11,-3.08780778723871e-10 +3.096,-2.01333482488975e-06,-1.45820506779887e-06,1.53713417021945e-06,3.82134143772639e-10,1.81946156058155e-09,0.0799991806560609,-2.5183368303032e-09,1.56227548259169e-09,5.7873497660843e-10,3.93678145638176e-11,3.83908183021475e-10,-8.5258189397308e-10,-4.01852338839832e-07,-2.70324474610505e-06,-1.41267271318301e-05,1.64798730217797e-11,7.93635990259389e-11,-1.24863955980325e-05 +3.098,-7.87133372045536e-09,9.5561104099251e-09,3.00243041539972e-09,3.82259654485573e-10,1.82053304376151e-09,0.0799999952429016,4.9903267932902e-08,5.96737355709753e-08,-2.22205614151816e-07,3.9416386821145e-11,3.84048695623029e-10,-3.19312250252057e-07,-4.95087369538349e-10,5.57279916657549e-10,1.6002824065886e-10,3.25260651745651e-11,7.24247051220316e-11,-2.81892564846231e-10 +3.1,-2.01313521181802e-06,-1.45796637285658e-06,1.53624534776284e-06,3.82291809319923e-10,1.82099775536404e-09,0.0799991793788119,-2.52031717978135e-09,1.56450460225832e-09,5.79375089571065e-10,3.94979188245159e-11,3.84197881841963e-10,-8.53709464232465e-10,-5.04852905899681e-06,-6.57392846756254e-06,-2.79567384867118e-06,3.98986399474665e-11,9.28077059647591e-11,-1.26945606804263e-05 +3.102,-7.88141498917448e-09,9.56236842833413e-09,3.004747915758e-09,3.82417646160871e-10,1.82206983528888e-09,0.0799999952394868,2.97091516969147e-08,3.33780217007251e-08,-2.333883095465e-07,3.95759813809348e-11,3.84419926446888e-10,-3.70090492973762e-07,-4.95954731276338e-10,5.98479599211998e-10,9.32413868337533e-11,4.11996825544491e-11,1.04083408558608e-10,-3.01841884819964e-10 +3.104,-2.01301637521123e-06,-1.45783286076978e-06,1.53531179452465e-06,3.82450113245447e-10,1.82253543506983e-09,0.0799991778984499,-2.52230099870645e-09,1.56689852065517e-09,5.797480551184e-10,3.96627175547337e-11,3.84614215476197e-10,-8.54916831771745e-10,-5.71476209182321e-06,-6.90126146334068e-06,4.3720415742604e-06,5.20417042793042e-11,8.02309607639273e-11,-1.06547999589867e-05 +3.106,-7.89150419316931e-09,9.56863602241675e-09,3.00706690797847e-09,3.8257629703109e-10,1.82360829215078e-09,0.0799999952360671,6.85010332962185e-09,5.77297584736236e-09,-2.15900143249459e-07,3.97841481980521e-11,3.84740850289944e-10,-4.12709692809709e-07,-5.05360185122649e-10,6.09972142240344e-10,9.75781955236953e-11,5.29090660172926e-11,6.37510877421476e-11,-3.11382863937837e-10 +3.108,-2.01298897479791e-06,-1.45780976886639e-06,1.53444819395165e-06,3.82609249838239e-10,1.82407439847099e-09,0.0799991762476112,-2.52432243944694e-09,1.56933840922413e-09,5.80138367900495e-10,3.98743538188029e-11,3.84869219827166e-10,-8.56162363227497e-10,-5.86122064782662e-06,-6.36071382197067e-06,9.11286389231046e-06,4.42354486374085e-11,7.45931094670026e-11,-7.25162638270937e-06 +3.11,-7.9016014829271e-09,9.57491337605365e-09,3.00938746145007e-09,3.82735794446365e-10,1.82514776903009e-09,0.0799999952326425,-1.65947792616847e-08,-1.96698794405203e-08,-1.79448687680217e-07,3.99610899926017e-11,3.85039222727812e-10,-4.41716198340547e-07,3.18122400167278e-08,-2.13932604270494e-08,-1.10618979254351e-08,2.0413358503557e-09,-5.11179640283464e-09,1.31908373113276e-08 +3.112,-2.01305535391496e-06,-1.45788844838415e-06,1.53373039920093e-06,3.8276909419821e-10,1.8256145553619e-09,0.0799991744807464,-2.39707347938003e-09,1.48376536751593e-09,5.35890776198755e-10,4.80396972202257e-11,3.64422034215827e-10,-8.03399013982186e-10,0.0486316189231896,0.0366833875979459,-0.035090363438529,6.93065396739632e-09,-4.05014563553683e-09,0.0424725492605831 +3.114,-7.91118977684462e-09,9.58084843752371e-09,3.01153102455487e-09,3.82927953235246e-10,1.82660545716695e-09,0.0799999952294289,0.000194509880913497,0.000146713880512343,-0.000140540902441796,6.7683705862187e-11,3.68838640185664e-10,0.000169448480843992,2.24695750287301e-08,-1.09747280707673e-08,-1.37043154602167e-08,4.27565968741383e-09,-2.99022959171502e-09,5.44789907630516e-09 +3.116,-1.23501583026097e-06,-8.7103292633478e-07,9.71566789433748e-07,3.83039829021659e-10,1.82708990992264e-09,0.0799998522746697,-2.30719517926511e-09,1.43986645523286e-09,4.81073514357888e-10,6.5142335969881e-11,3.52461115848967e-10,-7.81607417676965e-10,-0.142112209901919,-0.10496838117051,0.10089979126846,-5.67514785165811e-09,-1.21040330536282e-08,-0.115446983197168 +3.118,-7.92041855756168e-09,9.58660790334465e-09,3.0134553186123e-09,3.83188522579125e-10,1.82801530163035e-09,0.0799999952263025,-0.00037393895869418,-0.000273159644169699,0.000263058262632044,4.49831144555545e-11,3.20422507971152e-10,-0.000292339451944678,-6.37839661730281e-08,3.90438549546789e-08,2.19136774698425e-08,-5.70246974640475e-09,8.70093927463065e-09,-2.50615500574369e-08 +3.12,-2.73077166503769e-06,-1.96367150301358e-06,2.02379983996193e-06,3.83219761479481e-10,1.82837159995453e-09,0.079998682916862,-2.56233104395723e-09,1.59604187505158e-09,5.68728224237258e-10,4.2332456984262e-11,3.8726487294749e-10,-8.81853617906713e-10,0.147031474102022,0.104916109380532,-0.105743155221632,-1.65492619608187e-09,2.60885063552152e-08,0.0921433409798582 +3.122,-7.9306678817375e-09,9.59299207084485e-09,3.01573023150925e-09,3.83357852407062e-10,1.82956436112214e-09,0.079999995222775,0.000214186937713906,0.000146504793352431,-0.000159914358254486,3.83634096712271e-11,4.24776533392012e-10,7.62339119747545e-05,-1.56404701473142e-08,7.70108803116453e-09,1.10916050649612e-08,-3.65809812996609e-09,2.16797066410201e-09,-3.70797142990042e-09 +3.124,-1.87402391418207e-06,-1.37765232960385e-06,1.38414240694398e-06,3.83373215118166e-10,1.83007070608809e-09,0.0799989878525099,-2.62489292454648e-09,1.62684622717624e-09,6.13094644497103e-10,2.77000644643976e-11,3.95936755603898e-10,-8.96685503626315e-10,-0.0776507550321425,-0.0545553023880394,0.0596255074255396,-3.88491322445005e-09,-1.00908864597571e-08,-0.0176136782398944 +3.126,-7.94116745343569e-09,9.59949945575356e-09,3.01818261008724e-09,3.8346865266492e-10,1.83114810814455e-09,0.0799999952191883,-9.64160824146642e-05,-7.17164161997268e-05,7.85876714476732e-05,2.28237567734268e-11,3.84412987552984e-10,5.77919901517676e-06,-3.17766104228345e-10,2.09229335246252e-09,5.23474492919451e-09,-8.64759652774437e-10,1.0542781925249e-09,6.15826833971766e-10 +3.128,-2.25968824384072e-06,-1.66451799440276e-06,1.69849309273468e-06,3.83464510145259e-10,1.83160835803831e-09,0.0799990109693059,-2.6261639889634e-09,1.63521540058609e-09,6.34033624213881e-10,2.42410258532999e-11,4.00153868373998e-10,-8.94222196290428e-10,0.0397271001734903,0.0303647108149725,-0.0296544320290987,8.86010015355153e-10,6.23806561961259e-09,0.00364091825438839 +3.13,-7.95167210939154e-09,9.6060403173559e-09,3.02071874458409e-09,3.83565616768333e-10,1.83274872361805e-09,0.0799999952156114,6.24923182792973e-05,4.97424270601634e-05,-4.00300566687217e-05,2.63677968348474e-11,4.09365250031435e-10,2.03428720327303e-05,5.39749722781174e-09,-6.96057794735693e-10,9.53664230918249e-10,6.24934132220644e-10,2.39825520553793e-10,2.04523897817665e-09 +3.132,-2.00971897072353e-06,-1.4655482861621e-06,1.53837286605979e-06,3.83569981332599e-10,1.83324581903843e-09,0.0799990923407941,-2.60457400005215e-09,1.63243116940714e-09,6.37848281137554e-10,2.67407623821825e-11,4.01113170456213e-10,-8.86041240377721e-10,-0.020787015566476,-0.0155136848790493,0.0150706031499734,5.10876063675168e-10,-2.98676014476307e-09,-0.00238165381860611 +3.134,-7.96209040539175e-09,9.61257004203353e-09,3.02327013770864e-09,3.83672579817862e-10,1.83435317629987e-09,0.0799999952120672,-2.06557439866067e-05,-1.23123124560337e-05,2.02523559311718e-05,2.84113010895481e-11,3.97418209452382e-10,1.08162567583059e-05,5.74955122574494e-09,-1.9741153156616e-09,-1.79240303155303e-09,1.10068204550728e-09,-3.45209971719384e-10,1.870031907103e-09 +3.136,-2.09234194666996e-06,-1.51479753598624e-06,1.61938228978448e-06,3.83683626536957e-10,1.83483549187624e-09,0.0799991356058211,-2.58157579514917e-09,1.6245347081445e-09,6.30678669011341e-10,3.11434905642116e-11,3.99732330569335e-10,-8.78561112749309e-10,0.0098842004304765,0.00684007900927235,-0.00854715017923993,1.35091590691694e-09,9.32413868337533e-10,-0.00134169848061555 +3.138,-7.97241670857235e-09,9.61906818086611e-09,3.02579285238469e-09,3.83797153780119e-10,1.83595210562215e-09,0.079999995208553,1.88810577352993e-05,1.50480035810557e-05,-1.3936244785788e-05,3.38149647172159e-11,4.01147864925732e-10,5.44946283584368e-06,4.11632262563993e-09,-2.34252721387218e-09,-3.23547612313124e-09,1.11022302462515e-09,-7.01695646032618e-10,1.34788014083398e-09 +3.14,-2.01681771572876e-06,-1.45460552166202e-06,1.56363731064132e-06,3.83818886395826e-10,1.83644008333594e-09,0.0799991574036724,-2.56511050464661e-09,1.61516459928901e-09,6.17736764518816e-10,3.55843826627122e-11,3.96925547985205e-10,-8.73169592185973e-10,-0.00567757405393648,-0.00444953247250717,0.00375552890738775,9.21571846612678e-10,-1.54173548927439e-09,-0.000962141876587051 +3.142,-7.98267715059094e-09,9.62552883926326e-09,3.02826379944277e-09,3.8393949131077e-10,1.83753980781409e-09,0.0799999952050603,-3.82923848044666e-06,-2.75012630897298e-06,1.08587084376305e-06,3.75012521036666e-11,3.94980922968635e-10,1.60089532949548e-06,2.43232625880819e-09,-2.131324630672e-09,-3.66915699212544e-09,9.56699997001208e-10,-8.10549544150162e-10,6.81746326058859e-10 +3.144,-2.03213466965055e-06,-1.46560602689791e-06,1.56798079401638e-06,3.83968891404241e-10,1.83802000702782e-09,0.0799991638072537,-2.55538119961138e-09,1.60663930076632e-09,6.03060136550315e-10,3.9411182650717e-11,3.93683349808604e-10,-8.70442606881738e-10,0.00236040853881939,0.00159289819182118,-0.00209679153098489,9.25474974433624e-10,-4.30645102911242e-10,-0.000444243974939695 +3.146,-7.99289867538938e-09,9.63195539646633e-09,3.03067603998897e-09,3.84097136041373e-10,1.83911454121333e-09,0.0799999952015785,5.61239567483089e-06,3.62146645831174e-06,-7.30129528017653e-06,4.12031520014011e-11,3.9325834255699e-10,-1.76080570263304e-07,1.28809994354856e-09,-1.59529507659517e-09,-3.30529874303931e-09,7.73686670285654e-10,-7.38558519897125e-10,2.9316826744008e-10 +3.148,-2.00968508695123e-06,-1.45112016106466e-06,1.53877561289567e-06,3.84133704012246e-10,1.83959304039805e-09,0.0799991631029315,-2.55022879983718e-09,1.60025812045994e-09,5.89838941578157e-10,4.25059293318597e-11,3.90729115729016e-10,-8.69269933811977e-10,-0.00160083422123184,-0.00117635660218905,0.00126356902111629,6.45750813932366e-10,-8.8774473883113e-10,-0.000162248424764866 +3.15,-8.00309959058873e-09,9.63835642894817e-09,3.03303539575528e-09,3.842671597587e-10,1.84067745767624e-09,0.0799999951981015,-7.90941210096484e-07,-1.08395995044447e-06,-2.24701919571135e-06,4.37861552571305e-11,3.89707363601665e-10,-8.25074269322767e-07,5.93546479327189e-10,-9.5583263526322e-10,-2.51339747625589e-09,5.76795555762288e-10,-5.22585447138013e-10,1.56125112837913e-11 +3.152,-2.01284885179161e-06,-1.45545600086644e-06,1.52978753611283e-06,3.84308848633275e-10,1.84115186985245e-09,0.0799991598026344,-2.54785461391987e-09,1.59643478991889e-09,5.79785351673134e-10,4.48131115549088e-11,3.88638773940464e-10,-8.69207483766842e-10,0.000514123372211604,0.000412703051637721,-0.000195539576934925,4.74446870679656e-10,-3.58654078658205e-10,-3.34548161742831e-05 +3.154,-8.01329100904441e-09,9.64474216810784e-09,3.03535453716197e-09,3.8444641220492e-10,1.842232012772e-09,0.0799999951946246,1.26555227874993e-06,5.6685225610642e-07,-3.02917750345105e-06,4.56839427398492e-11,3.88272747287033e-10,-9.58893534019899e-07,1.10561516539209e-10,-2.38524477946811e-10,-1.43201422941885e-09,3.56485674313234e-10,-2.74519990073329e-10,-1.78676518025611e-10 +3.156,-2.00778664267661e-06,-1.45318859184201e-06,1.51767082609902e-06,3.84491584404234e-10,1.8427049608416e-09,0.0799991559670603,-2.54741236785372e-09,1.5954806920071e-09,5.74057294755458e-10,4.62390542521618e-11,3.8754069398017e-10,-8.69922189838945e-10,-0.000476003408957374,-0.000308849809225672,0.000604057357085629,2.25080371007991e-10,-2.23345647532014e-10,1.2883985545109e-05 +3.158,-8.02348065851582e-09,9.65112409087587e-09,3.03765076634099e-09,3.84631368421928e-10,1.84378217554793e-09,0.079999995191145,-6.38461357079563e-07,-6.68546980796269e-07,-6.12948075108532e-07,4.65842642238811e-11,3.87379364696904e-10,-9.07357591839463e-07,-2.88817906222982e-10,3.61906685175661e-10,-3.79253919935429e-10,1.22731685925359e-10,-4.07660016854549e-11,-3.3133218391157e-10 +3.16,-2.01034048810493e-06,-1.4558627797652e-06,1.51521903379859e-06,3.8467792146113e-10,1.84425447830039e-09,0.0799991523376299,-2.54856763947861e-09,1.5969283187478e-09,5.72540279075717e-10,4.67299809958632e-11,3.87377629973428e-10,-8.71247518574591e-10,0.000107313156787452,0.00010596863122235,0.000131948476450594,2.51534904016637e-11,3.51281503885303e-11,3.25478012597191e-05 +3.162,-8.03367492907374e-09,9.65751180415086e-09,3.0399409274573e-09,3.84818288345912e-10,1.84533168606782e-09,0.07999999518766,-2.09208729929754e-07,-2.44672455906869e-07,-8.51541693061563e-08,4.66848781854878e-11,3.87519877298459e-10,-7.77166386800587e-07,-6.27305824472956e-10,8.1445267197111e-10,4.80735243280072e-10,-5.89805981832114e-11,1.51354623278976e-10,-3.26128013483639e-10 +3.164,-2.01117732302465e-06,-1.45684146958883e-06,1.51487841712136e-06,3.84864660973872e-10,1.84580455780958e-09,0.0799991492289643,-2.5510768627765e-09,1.60018612943569e-09,5.74463220048837e-10,4.64940586031303e-11,3.87983048466544e-10,-8.72552030628525e-10,-0.000114788548322619,-6.66873019479485e-05,0.000235051589737161,-1.37043154602168e-10,2.25514051876985e-10,4.54103898581136e-05 +3.166,-8.04387923652485e-09,9.66391254866861e-09,3.04223878033749e-09,3.85004264580324e-10,1.84688361826169e-09,0.0799999951841698,-6.68362923220231e-07,-5.11421663698663e-07,8.5505218964249e-07,4.61367055670791e-11,3.88421933505967e-10,-5.95524827368132e-07,-8.59569034873663e-10,1.1071872585422e-09,1.07140858685017e-09,-1.99493199737333e-10,2.90132501357121e-10,-4.56232274181874e-10 +3.168,-2.01385077471753e-06,-1.45888715624362e-06,1.51829862587993e-06,3.8504920779614e-10,1.84735824554361e-09,0.079999146846865,-2.55451513891599e-09,1.60461487846986e-09,5.78748854396238e-10,4.5696085804181e-11,3.89143578471973e-10,-8.74376959725253e-10,0.0611881590797729,0.0446990174676492,-0.0449773062229704,3.32286281823357e-09,4.70717215206306e-09,0.0486752154710972 +3.17,-8.05409729708051e-09,9.67033100818249e-09,3.04455377575508e-09,3.85187048923541e-10,1.84844019257557e-09,0.0799999951806722,0.000244084273395872,0.000178284648206898,-0.000179054172702239,5.94281568400134e-11,4.07250622114219e-10,0.000194105337057021,4.23076694120935e-08,-2.70191855000767e-08,-1.58094023983146e-08,3.50977927277007e-09,-6.34518479425415e-09,1.64252292322864e-08 +3.172,-1.03751368113404e-06,-7.45748563416027e-07,8.02081935070975e-07,3.852869204235e-10,1.84898724803206e-09,0.0799999232682133,-2.38528446126762e-09,1.49653813646955e-09,5.15511244802979e-10,5.97352028952613e-11,3.63762839294956e-10,-8.08676042796107e-10,-0.16757525307918,-0.121251045548344,0.122963182390585,-3.84631562710957e-09,-2.23120133480136e-08,-0.118433749684947 +3.174,-8.06363843492558e-09,9.67631716072836e-09,3.04661582073429e-09,3.85425989735122e-10,1.84989524393275e-09,0.0799999951774375,-0.00042621673892085,-0.000306719533986477,0.000312798556860102,4.40428943315751e-11,3.18002568722164e-10,-0.000279629661682767,-4.45774195551375e-08,3.01191363516472e-08,1.48960704882128e-08,-3.11382863937836e-09,6.78753928062823e-09,-1.91062443644085e-08 +3.176,-2.74238063681744e-06,-1.97262669936193e-06,2.05327616251139e-06,3.85463092000826e-10,1.85025925830695e-09,0.0799988047495665,-2.56359413948817e-09,1.61701468187614e-09,5.75095526755831e-10,4.72798883377478e-11,3.90912996417469e-10,-8.85101020253742e-10,0.166655224505239,0.118899674934501,-0.123605601962768,6.81746326058885e-10,2.80791015438985e-08,0.0859857294498166 +3.178,-8.07389281148353e-09,9.68278521945587e-09,3.04891620284131e-09,3.85615109288473e-10,1.85145889591842e-09,0.0799999951738971,0.000240404159100105,0.000168879165751527,-0.000181623850990971,4.67698796358107e-11,4.30318974897758e-10,6.43132561164994e-05,-1.14445128721052e-08,5.78747119672762e-09,7.60914768693776e-09,-2.56175289314875e-09,1.51484727539675e-09,-3.02709246557953e-09 +3.18,-1.78076400041702e-06,-1.29711003635583e-06,1.3267807585475e-06,3.85650171519369e-10,1.85198053420654e-09,0.079999062002591,-2.60937219097659e-09,1.64016456666305e-09,6.05532117503582e-10,3.70328767651528e-11,3.96972385519056e-10,-8.9720939011606e-10,-0.0885827705051011,-0.0633700526471783,0.0676037107797972,-3.67284327951189e-09,-1.19409690468863e-08,-0.0166889627083166 +3.182,-8.08433030024744e-09,9.68934587772252e-09,3.05133833131133e-09,3.85763240795534e-10,1.8530467854605e-09,0.0799999951703083,-0.000113926922920299,-8.46010448371861e-05,8.87909921282181e-05,3.20785065177631e-11,3.82555098710213e-10,-2.44259471676722e-06,-1.92269702763148e-09,2.07386191553027e-09,4.12213665978988e-09,-9.0942878228084e-10,8.41774566717745e-10,-1.6826817716975e-10 +3.184,-2.23647169209822e-06,-1.63551421570457e-06,1.68194472706037e-06,3.8577848554544e-10,1.85351075460138e-09,0.0799990522322121,-2.61706297908712e-09,1.64846001432517e-09,6.22020664142741e-10,3.33951616360295e-11,4.00339483785927e-10,-8.97882462824739e-10,0.0448988727964687,0.0337153495662354,-0.0335879278556827,6.46184494801358e-10,6.94236335085918e-09,0.00366094736123367 +3.186,-8.09479855216379e-09,9.69593971777982e-09,3.0538264139679e-09,3.85896821442078e-10,1.85464814339564e-09,0.0799999951667168,6.56685682655757e-05,5.02603534277557e-05,-4.55607192945128e-05,3.46632444969685e-11,4.1032455211365e-10,1.22011947281675e-05,2.07486480253982e-09,2.59774840527527e-10,1.41466699465908e-09,9.58434720477185e-11,3.29597460435593e-10,7.73686670285655e-10 +3.188,-1.97379741903592e-06,-1.43447280199355e-06,1.49970184988232e-06,3.85917138523428e-10,1.85515205280984e-09,0.079999101036991,-2.60876351987696e-09,1.64949911368728e-09,6.27679332121378e-10,3.37785355242204e-11,4.0165787362767e-10,-8.94787716143596e-10,-0.0231910950044948,-0.0170852401484324,0.0172123263897025,-1.4658413372004e-10,-3.19015647232135e-09,-0.00146466044501081 +3.19,-8.1052336062433e-09,9.70253771423457e-09,3.05633713129638e-09,3.86031935584175e-10,1.85625477489015e-09,0.0799999951631376,-2.70958117524035e-05,-1.80806071659739e-05,2.32885862642973e-05,3.40769079620884e-11,3.97563926224364e-10,6.34255294812424e-06,2.8203486638137e-09,-6.96925156473682e-10,-4.69025859817229e-10,4.97431956736349e-10,-5.85469173142172e-11,9.46291656145347e-10 +3.192,-2.08218066604553e-06,-1.50679523065744e-06,1.59285619493951e-06,3.86053446155277e-10,1.85674230851474e-09,0.0799991264072028,-2.5974821252217e-09,1.64671141306138e-09,6.25803228682109e-10,3.57682633511658e-11,4.01423685958413e-10,-8.91002549519015e-10,0.0114343541639342,0.00815150889735097,-0.00925344916750252,8.18789480661052e-10,1.50530629627887e-09,-0.000726848086059216 +3.194,-8.11562353474418e-09,9.70912455988682e-09,3.05884034421111e-09,3.86175008637579e-10,1.85786046963399e-09,0.0799999951595736,1.86416049033334e-05,1.452542842343e-05,-1.37252104057128e-05,3.73520658847326e-11,4.0358515140948e-10,3.43516060388737e-06,2.16314596443445e-09,-1.02738997864726e-09,-1.55821536229617e-09,5.90239662701108e-10,-2.97505076130022e-10,6.09755301805847e-10 +3.196,-2.0076142464322e-06,-1.44869351696372e-06,1.53795535331666e-06,3.86202854418816e-10,1.85835664912037e-09,0.0799991401478452,-2.58882954136397e-09,1.6426018531468e-09,6.19570367232924e-10,3.81292220019702e-11,4.00233665653893e-10,-8.88563528311791e-10,-0.00617583906111189,-0.0047018176789048,0.00434372796542445,4.48859699408998e-10,-1.23468943402649e-09,-0.000610935095048114 +3.198,-8.12597885290964e-09,9.7156949672994e-09,3.06131862568004e-09,3.86327525525587e-10,1.8594614042966e-09,0.0799999951560194,-6.06175134111423e-06,-4.28184229218919e-06,3.64970145598497e-06,3.91475046823686e-11,3.98646393673374e-10,9.91420223694916e-07,1.28529457042725e-09,-9.80552444795889e-10,-1.99059518868338e-09,5.65953534037431e-10,-4.34114549863196e-10,3.11382863937837e-10 +3.2,-2.03186125179665e-06,-1.46582088613248e-06,1.5525541591406e-06,3.86359444437545e-10,1.85995123469507e-09,0.0799991441135261,-2.58368836308226e-09,1.63867964336761e-09,6.1160798647819e-10,4.03930361381199e-11,3.9849720745444e-10,-8.8731799685604e-10,0.00284202205696928,0.00197700347195559,-0.00236191285561855,5.92408067046077e-10,-2.38524477946811e-11,-0.000304147976769308 +3.202,-8.13631360636197e-09,9.72224968587287e-09,3.06376505762596e-09,3.8648909767014e-10,1.86105539312642e-09,0.0799999951524701,5.3063368867629e-06,3.62617159563316e-06,-5.79794996648924e-06,4.15171369505529e-11,3.98550983882195e-10,-2.25171683382319e-07,6.24663081677523e-10,-7.2251232774434e-10,-1.94701026134947e-09,4.861562541425e-10,-3.98986399474665e-10,7.97972798949331e-11 +3.204,-2.0106359042496e-06,-1.45131619974995e-06,1.52936235927464e-06,3.86525512985347e-10,1.8615454386306e-09,0.0799991432128394,-2.58118971075555e-09,1.63578959405663e-09,6.03819945432793e-10,4.23376611546899e-11,3.96901261856541e-10,-8.8699880773646e-10,-0.00168032689008119,-0.00124609487789015,0.0012779919691952,4.15466272496445e-10,-5.79831321845247e-10,-0.000126316591735065 +3.206,-8.14663836520499e-09,9.7287928442491e-09,3.06618033740769e-09,3.86658448314758e-10,1.86264299817385e-09,0.0799999951489221,-1.41497067356186e-06,-1.35820791592744e-06,-6.85982089708436e-07,4.31790020405387e-11,3.96231658594814e-10,-7.30438050322579e-07,1.9591533256813e-10,-3.06395533944403e-10,-1.53696499971545e-09,3.92914867308746e-10,-2.78423117894277e-10,-1.28369537222284e-10 +3.208,-2.01629578694385e-06,-1.45674903141366e-06,1.52661843091581e-06,3.86698228993509e-10,1.86313036526498e-09,0.0799991402910872,-2.58040604942527e-09,1.63456401192086e-09,5.97672085433931e-10,4.39093206239249e-11,3.95787569384964e-10,-8.87512285885349e-10,0.000674537201675274,0.000507416289974998,-0.00040999002717118,3.4477629085039e-10,-1.47017814589034e-10,-3.37401252770153e-05 +3.21,-8.15695998940269e-09,9.73533110029678e-09,3.06857102574942e-09,3.86834085597254e-10,1.86422614845139e-09,0.079999995145372,1.28317813313924e-06,6.7145724397255e-07,-2.32594219839316e-06,4.45581072039402e-11,3.95643587336458e-10,-8.6539855143064e-07,-1.20292231037267e-10,1.1514227071796e-10,-9.23523410523152e-10,2.6628005356244e-10,-1.89084858881472e-10,-2.13370987545147e-10 +3.212,-2.01116307441129e-06,-1.45406320243777e-06,1.51731466212224e-06,3.86876461422325e-10,1.86471293961432e-09,0.079999136829493,-2.58088721834942e-09,1.63502458100373e-09,5.93977991791838e-10,4.49744408381747e-11,3.95031229949438e-10,-8.8836576983553e-10,-0.000474706988954774,-0.00032410551022502,0.000499430419112836,1.83013326715553e-10,-1.59594559789866e-10,5.44712972644356e-06 +3.214,-8.16728353827609e-09,9.7418711986208e-09,3.07094693771659e-09,3.87013983360607e-10,1.86580627337118e-09,0.0799999951418186,-6.15649822679857e-07,-6.24964796927529e-07,-3.28220521941813e-07,4.52901605108024e-11,3.95005209097298e-10,-8.43610032524866e-07,-3.69523205437372e-10,4.82903647625043e-10,-3.20490162186715e-10,1.4137996329211e-10,1.77809156287623e-11,-3.38271077815477e-10 +3.216,-2.01362567370201e-06,-1.45656306162548e-06,1.51600178003447e-06,3.87057622064368e-10,1.86629296045071e-09,0.0799991334550529,-2.58236531117117e-09,1.63695619559423e-09,5.92696031143091e-10,4.55399606913431e-11,3.95102353611953e-10,-8.89718854146792e-10,0.000156577378843049,0.000133822794859406,1.15860951475227e-05,8.97719398817997e-11,6.41847686111418e-11,2.39635481597e-05 +3.218,-8.17761299952077e-09,9.74841902340318e-09,3.07331772184116e-09,3.87196143203372e-10,1.86738668278563e-09,0.0799999951382597,1.06596926923406e-08,-8.96736174899048e-08,-2.81876141351722e-07,4.56492482703296e-11,3.95261948171743e-10,-7.47755839886066e-07,-5.90090584902391e-10,8.07947458936197e-10,2.43294967505747e-10,3.20923843055709e-11,1.21430643318376e-10,-3.38271077815477e-10 +3.22,-2.01358303493124e-06,-1.45692175609544e-06,1.51487427546906e-06,3.8724021905745e-10,1.8678740082434e-09,0.0799991304640295,-2.58472567351078e-09,1.64018798542997e-09,5.93669211013114e-10,4.56683302285654e-11,3.95588076185227e-10,-8.91071938458054e-10,-0.000119915726748908,-7.29861702759154e-05,0.00018544276769554,-1.56125112837913e-11,1.52221985016965e-10,3.492564137203e-05 +3.222,-8.18795190221482e-09,9.7549797753449e-09,3.07569239868521e-09,3.87378816524286e-10,1.86896903509037e-09,0.0799999951346954,-4.69003214303293e-07,-3.81618298593566e-07,4.59894929430437e-07,4.55867982251945e-11,3.95870836111811e-10,-6.08053274397946e-07,-7.39764694814015e-10,9.6255468873263e-10,6.20380483096205e-10,-6.6786853825107e-11,1.91686944095437e-10,-4.16333634234433e-10 +3.224,-2.01545904778846e-06,-1.45844822928981e-06,1.51671385518679e-06,3.87422566250351e-10,1.86945749158784e-09,0.0799991280318164,-2.58768473229004e-09,1.6440382041849e-09,5.96150732945499e-10,4.5401182813265e-11,3.96354823961608e-10,-8.92737272994991e-10,5.85598424542336e-05,5.4538667202189e-05,9.02407597432041e-06,-1.04083408558608e-10,2.20743562318048e-10,4.03293197448473e-05 +3.226,-8.19830264114398e-09,9.76155592816164e-09,3.078077001617e-09,3.87560421255539e-10,1.87055445438622e-09,0.0799999951311245,-2.34763844486358e-07,-1.6346362978481e-07,4.95991233327719e-07,4.517046459096e-11,3.96753810361083e-10,-4.46735995418556e-07,-8.21893009379792e-10,1.0250047338678e-09,8.41991407152242e-10,-1.13624387676481e-10,2.42861286636753e-10,-4.1286418728248e-10 +3.228,-2.0163981031664e-06,-1.45910208380895e-06,1.5186978201201e-06,3.87603248108714e-10,1.87104450682929e-09,0.0799991262448724,-2.59097230432756e-09,1.64813822312038e-09,5.99518698574108e-10,4.4946685262559e-11,3.97326269108155e-10,-8.94388729744121e-10,-5.88072604122084e-06,5.47835062904289e-06,1.96723941390392e-05,-1.35308431126191e-10,2.47198095326695e-10,3.8799054247196e-05 +3.23,-8.20866653036129e-09,9.76814848105412e-09,3.08047507641129e-09,3.8774020799659e-10,1.87214375946265e-09,0.0799999951275469,-2.58286748651241e-07,-1.41550227268639e-07,5.74680809883876e-07,4.46292308664553e-11,3.9774260274239e-10,-2.91539778429772e-07,-8.22191164977225e-10,1.00397121172158e-09,8.46111375407687e-10,-1.47017814589034e-10,2.59341159658532e-10,-3.79037079500932e-10 +3.232,-2.01743125016101e-06,-1.45966828471802e-06,1.52099654335963e-06,3.8778176503218e-10,1.87263547724026e-09,0.0799991250787133,-2.59426106898747e-09,1.65215410796726e-09,6.02903144075739e-10,4.43586140042029e-11,3.9836363374679e-10,-8.95904878062125e-10,3.99554846402649e-05,3.69385739443922e-05,-4.33292319124839e-05,-1.37910516340156e-10,2.40259201422788e-10,3.04646672472097e-05 +3.234,-8.21904357463724e-09,9.77475709748599e-09,3.0828866889876e-09,3.87917642452607e-10,1.87373721399764e-09,0.0799999951239633,-9.84648100901818e-08,6.2040685089304e-09,4.0136388223394e-07,4.40775888010947e-11,3.98703639548081e-10,-1.69681109440933e-07,-7.73280094470973e-10,9.04007771418413e-10,7.98189639383828e-10,-1.22298005056365e-10,2.11202583200176e-10,-3.72098185597025e-10 +3.236,-2.01782510940137e-06,-1.45964346844399e-06,1.52260199888857e-06,3.87958075387385e-10,1.87423029179845e-09,0.0799991243999889,-2.59735418936535e-09,1.65577013905294e-09,6.06095902633274e-10,4.38694219839774e-11,3.9920844407959e-10,-8.97393270804513e-10,1.76296342704451e-05,1.78863493027065e-05,-4.33850830695164e-05,-1.0321604682062e-10,2.23345647532014e-10,1.76867930024027e-05 +3.238,-8.2294329913947e-09,9.7813801780422e-09,3.08531107259813e-09,3.88093120140542e-10,1.87533404777396e-09,0.0799999951203737,-2.79462730084015e-08,7.77494657197563e-08,2.27823549955874e-07,4.36647246138122e-11,3.99597022138209e-10,-9.89339374313224e-08,-6.93997810607971e-10,7.89949702872938e-10,6.34908792207511e-10,-9.97465998686663e-11,1.89518539750466e-10,-3.5822039778921e-10 +3.24,-2.0179368944934e-06,-1.45933247058111e-06,1.52351329308839e-06,3.8813273428584e-10,1.875828679887e-09,0.0799991240042531,-2.60013018060778e-09,1.65892993786443e-09,6.08635537802104e-10,4.34704355845028e-11,3.99966518238592e-10,-8.9882615239567e-10,2.14726160571894e-05,1.75587524121195e-05,-5.23573608513655e-05,-8.67361737988403e-11,1.79110198894605e-10,3.90713156273036e-06 +3.242,-8.23983351211713e-09,9.78801589779366e-09,3.08774561474934e-09,3.8826700188288e-10,1.87693391384691e-09,0.0799999951167784,5.79441912203562e-08,1.47984475368235e-07,1.83941065504123e-08,4.33177799186168e-11,4.00313462933788e-10,-8.33054111804009e-08,-6.11083449467142e-10,6.80011602582908e-10,4.52979667664443e-10,-5.55111512312578e-11,1.7130394325271e-10,-2.90566182226115e-10 +3.244,-2.01770511772852e-06,-1.45874053267964e-06,1.52358686951459e-06,3.88306005405514e-10,1.87742993373874e-09,0.0799991236710315,-2.60257451440565e-09,1.66164998427476e-09,6.10447456472762e-10,4.32483909795777e-11,4.00651734011603e-10,-8.99988417124575e-10,7.72607853887461e-06,4.55442432899243e-06,-3.94368968904823e-05,-3.38271077815477e-11,1.47451495458028e-10,-7.80591390137085e-06 +3.246,-8.25024381017475e-09,9.79466249773076e-09,3.09018740457523e-09,3.88439995446799e-10,1.87853652078296e-09,0.0799999951131785,8.88485053758547e-08,1.66202172684204e-07,-1.39353481011517e-07,4.31824714874906e-11,4.0090326891562e-10,-1.14529066785884e-07,-5.50395232862266e-10,6.27102536565615e-10,3.01625044385467e-10,-2.47198095326695e-11,1.15359111152458e-10,-3.40005801291454e-10 +3.248,-2.01734972370702e-06,-1.4580757239889e-06,1.52302945559055e-06,3.88478735291464e-10,1.8790335468144e-09,0.0799991232129152,-2.6047760953371e-09,1.66415839442102e-09,6.11653956650304e-10,4.31495117414471e-11,4.01113170456213e-10,-9.0134844032974e-10,2.4755707737651e-06,-1.52040576309464e-06,-2.74264257138501e-05,-4.33680868994201e-12,9.58434720477185e-11,-1.55850870403595e-05 +3.25,-8.2606629145561e-09,9.80131913130844e-09,3.09263402040183e-09,3.88612593493765e-10,1.88014097346478e-09,0.0799999951095731,9.87507884709151e-08,1.60120549631826e-07,-2.49059183866917e-07,4.31651242527309e-11,4.01286642803811e-10,-1.76869414947323e-07,-5.09981596882869e-10,5.5944832100252e-10,1.99276359302836e-10,1.56125112837913e-11,8.45677694538693e-11,-2.53269627492614e-10 +3.252,-2.01695472055313e-06,-1.45743524179037e-06,1.52203321885508e-06,3.88651395788475e-10,1.88063869338562e-09,0.0799991225054376,-2.60681602172463e-09,1.66639618770503e-09,6.12451062087515e-10,4.32119617865822e-11,4.01451441534028e-10,-9.02361518839711e-10,-4.87139023780738e-06,-8.13349322788258e-06,-1.14585552418028e-05,2.77555756156289e-11,9.62771529167127e-11,-1.89130291289308e-05 +3.254,-8.271090178643e-09,9.80798471605926e-09,3.09508382465018e-09,3.88785441340911e-10,1.88174677923092e-09,0.0799999951059636,7.92652275196856e-08,1.27586576720295e-07,-2.94893404834129e-07,4.32761465551934e-11,4.01671751415477e-10,-2.52521531463046e-07,-4.93068042992095e-10,5.60966204043999e-10,1.01264482910146e-10,3.59955121265187e-11,9.97465998686663e-11,-3.18321757841744e-10 +3.256,-2.01663765964305e-06,-1.45692489548349e-06,1.52085364523574e-06,3.88824500374696e-10,1.88224538039128e-09,0.0799991214953514,-2.6087882938966e-09,1.66864005252121e-09,6.12856120019156e-10,4.33559438350883e-11,4.01850427933503e-10,-9.03634805871078e-10,-7.55221371009049e-06,-1.03448720943644e-05,7.04229860190585e-07,3.94649590784723e-11,9.19403442267707e-11,-1.83211536219918e-05 +3.258,-8.28152533181858e-09,9.81465927626934e-09,3.09753524913026e-09,3.88958865116251e-10,1.88335418094265e-09,0.0799999951023491,4.90563726793236e-08,8.62070883428378e-08,-2.92076485393366e-07,4.34340063915073e-11,4.02039512792384e-10,-3.25806145951013e-07,-5.07758982429273e-10,5.91757545742588e-10,9.56266316132214e-11,4.25007251614317e-11,6.37510877421476e-11,-3.15719672627779e-10 +3.26,-2.01644143415234e-06,-1.45658006713012e-06,1.51968533929417e-06,3.88998236400262e-10,1.88385353844245e-09,0.0799991201921268,-2.61081932982632e-09,1.67100708270418e-09,6.13238626545609e-10,4.3525946735734e-11,4.02105432284472e-10,-9.04897684561589e-10,-8.79397550330832e-06,-1.07048265651083e-05,9.69132716785446e-06,5.11743425413158e-11,7.63278329429794e-11,-1.49364982188205e-05 +3.262,-8.29196860913789e-09,9.82134330460016e-09,3.09998820363644e-09,3.89132968903194e-10,1.88496260267179e-09,0.0799999950987295,1.38804706660903e-08,4.33877820824046e-08,-2.53311176721948e-07,4.36387037616725e-11,4.02344824124156e-10,-3.85552138826295e-07,-5.24537011048487e-10,6.25801493958633e-10,9.88792381306779e-11,6.07153216591882e-11,1.15359111152458e-10,-3.11382863937837e-10 +3.264,-2.01638591226967e-06,-1.45640651600179e-06,1.51867209458728e-06,3.89172791215309e-10,1.88546291773894e-09,0.0799991186499183,-2.61291747787051e-09,1.67351028868001e-09,6.13634143498131e-10,4.37688080223708e-11,4.02566868729081e-10,-9.0614321601734e-10,-7.56120545949283e-06,-8.73751375071728e-06,1.38363337714303e-05,5.42101086242752e-11,1.01915004213637e-10,-1.00622114806992e-05 +3.266,-8.30242027904937e-09,9.82803734575488e-09,3.10244274021043e-09,3.89308044135284e-10,1.88657287014671e-09,0.0799999950951049,-1.63643511718811e-08,8.43772707953549e-09,-1.97965841636227e-07,4.38555441961696e-11,4.02752484141011e-10,-4.25800984749091e-07,-5.50313917699329e-10,6.50738143925799e-10,1.20563281580388e-10,5.160802341031e-11,8.63024929298461e-11,-3.29597460435593e-10 +3.268,-2.01645136967436e-06,-1.45637276509347e-06,1.51788023122074e-06,3.89348213392093e-10,1.88707392767551e-09,0.0799991169467144,-2.61511873354131e-09,1.67611324125572e-09,6.14116396624453e-10,4.3975240116012e-11,4.02912078700801e-10,-9.07461605859083e-10,-5.42770995791592e-06,-5.87785072350687e-06,1.42631119588732e-05,4.98732999343332e-11,8.28330459778925e-11,-4.87816557981357e-06 +3.27,-8.31288075398354e-09,9.8347417987199e-09,3.10489920579693e-09,3.89483945095748e-10,1.88818451846151e-09,0.0799999950914751,-3.80751910035448e-08,-1.5073675814492e-08,-1.40913393800734e-07,4.4055037395907e-11,4.03083816324922e-10,-4.45313647068346e-07,-5.80237897659929e-10,7.21428125571854e-10,1.63714528045311e-10,4.68375338513738e-11,1.13190706807487e-10,-3.33934269125535e-10 +3.272,-2.01660367043837e-06,-1.45643305979673e-06,1.51731657764553e-06,3.89524433541677e-10,1.88868626294081e-09,0.0799991151654598,-2.61743968513195e-09,1.678998953758e-09,6.14771254736634e-10,4.41625902514175e-11,4.03364841528031e-10,-9.08797342935585e-10,0.061033291287192,0.0446254901800921,-0.0447094058093118,3.72748706900516e-09,4.43959105589364e-09,0.0503907206621245 +3.274,-8.32335051272406e-09,9.84145779453494e-09,3.10735829081588e-09,3.89660595456753e-10,1.88979797782762e-09,0.0799999950878399,0.000244095089957765,0.000178486887044554,-0.000178978536631048,5.89649856719276e-11,4.20842180548497e-10,0.00020111756900143,4.3443547370625e-08,-2.86405014288116e-08,-1.77121772110267e-08,3.98422614344973e-09,-6.72508923549307e-09,1.71338637722229e-08 +3.276,-1.04022331060731e-06,-7.42485511618513e-07,8.0140243112134e-07,3.89760293484365e-10,1.890369631663e-09,0.0799999196357358,-2.44366549564945e-09,1.56443694804276e-09,5.43922545892527e-10,6.00994948252164e-11,3.76464484586058e-10,-8.40261887846693e-10,-0.167295969170884,-0.121250013532942,0.122065432283475,-3.55054527445552e-09,-2.26004111258948e-08,-0.12329018334381 +3.278,-8.33312517470666e-09,9.84771554232711e-09,3.10953398099945e-09,3.89900993436054e-10,1.89130383576597e-09,0.0799999950844788,-0.000425088786725771,-0.000306513167087213,0.000309283192502854,4.47628045741055e-11,3.30440536044918e-10,-0.000292043164373812,-4.45764844307638e-08,3.07258558873702e-08,1.42834962607585e-08,-2.91997329093796e-09,6.65266453037104e-09,-1.96119162576557e-08 +3.28,-2.7405784575104e-06,-1.96853817996737e-06,2.03853520113276e-06,3.89939344702661e-10,1.89169139380718e-09,0.0799987514630783,-2.6219714333725e-09,1.68734037159224e-09,6.01056530935561e-10,4.84196016614646e-11,4.03075142707543e-10,-9.18709552877316e-10,0.166189212524647,0.118657406557049,-0.122441589701406,8.85142653617163e-10,2.79537677727592e-08,0.0901273297434361 +3.282,-8.34361306044015e-09,9.85446490381348e-09,3.11193820712319e-09,3.900946718427e-10,1.8929161363368e-09,0.079999995080804,0.000239668063372819,0.000168116459140985,-0.000180483166302772,4.83033751885741e-11,4.42255607135955e-10,6.84661545999332e-05,-1.16972946086202e-08,5.91410601047392e-09,7.04774780202477e-09,-2.38828054555106e-09,1.40122288772026e-09,-3.18668702536939e-09 +3.284,-1.78190620401912e-06,-1.29607234340343e-06,1.31660253592167e-06,3.90132558203415e-10,1.89346041623573e-09,0.0799990253276967,-2.66876061180698e-09,1.71099679563413e-09,6.29247522143661e-10,3.88664794792603e-11,4.08680034258424e-10,-9.31456300978794e-10,-0.0882735017030321,-0.0630134071681869,0.0669457154507841,-3.50977927277007e-09,-1.19986486024626e-08,-0.0178853999301814 +3.286,-8.35428810288738e-09,9.86130889099601e-09,3.11445519721176e-09,3.90250137760617e-10,1.89455085647383e-09,0.0799999950770782,-0.00011342594343931,-8.39371695317628e-05,8.72996955003646e-05,3.42642580974939e-11,3.94261012726104e-10,-3.07544512079261e-06,-1.99395621541809e-09,2.16254965323959e-09,3.74808691028236e-09,-7.37257477290142e-10,7.86263415486487e-10,-2.15105711021124e-10 +3.288,-2.23560997777636e-06,-1.63182102153048e-06,1.66580131792313e-06,3.90269615235805e-10,1.89503746028663e-09,0.0799990130259162,-2.67673643666866e-09,1.71964699424709e-09,6.4423986978479e-10,3.59174495700998e-11,4.1182508792037e-10,-9.32316723822878e-10,0.0446847031361637,0.0335059628935214,-0.0330781644046138,7.93202309390394e-10,6.85736190053631e-09,0.00393304644755176 +3.29,-8.36499504863406e-09,9.868187478973e-09,3.1170321566909e-09,3.90393807558898e-10,1.89619815682551e-09,0.0799999950733489,6.53128691053455e-05,5.00866820423231e-05,-4.50129621180905e-05,3.74370673350554e-11,4.2169046032825e-10,1.26567406694145e-05,2.0531536540358e-09,3.31115343477073e-10,1.19023714495459e-09,2.13370987545147e-10,3.32633226518552e-10,8.18789480661052e-10 +3.292,-1.97435850135498e-06,-1.43147429336118e-06,1.48574946945076e-06,3.90419363505146e-10,1.89672422212794e-09,0.0799990636528789,-2.66852382205251e-09,1.720971455621e-09,6.49000818364608e-10,3.67709335202803e-11,4.13155620826444e-10,-9.29041565900234e-10,0.039013069520798,0.02840754869185,-0.0287404259321621,3.67674640733284e-09,1.42290693116997e-09,0.0498644846750467 +3.294,-8.37566914392227e-09,9.87507136479548e-09,3.11962815996436e-09,3.90540891292979e-10,1.89785077930882e-09,0.0799999950696327,0.000221365147188537,0.000163716876809723,-0.000159974665846739,5.21440529643868e-11,4.2738208805293e-10,0.000212114679369601,4.69669604857141e-08,-3.02232197602059e-08,-1.85743347785871e-08,4.54931231574917e-09,-6.86863760313016e-09,1.85216425530043e-08 +3.296,-1.08889791260083e-06,-7.76606786122291e-07,8.45850806063808e-07,3.90627939717003e-10,1.89843375048016e-09,0.0799999121115963,-2.48065598010966e-09,1.60007857658018e-09,5.7470347925026e-10,5.4968182783277e-11,3.85681070413923e-10,-8.54954995688217e-10,-0.0805773053056236,-0.0584899103189556,0.0588956442142216,1.35481903473788e-09,-1.4729970715388e-08,-0.0602688173985398 +3.298,-8.3855917678427e-09,9.88147167910181e-09,3.12192697388136e-09,3.90760764024112e-10,1.89939350359047e-09,0.0799999950662129,-0.000100944074033957,-7.02427644660996e-05,7.56079110101476e-05,5.75633291033383e-11,3.68462205191377e-10,-2.89605902245582e-05,2.29059392981012e-09,-4.67291136341252e-10,-5.46481263019593e-09,1.62109908830032e-09,-6.01515365294957e-10,-1.14058068545475e-09 +3.3,-1.49267420873666e-06,-1.05757784398669e-06,1.1482824501044e-06,3.90858193033417e-10,1.89990759930092e-09,0.0799997962692355,-2.47149360439042e-09,1.59820941203481e-09,5.52844228729476e-10,6.14525791364783e-11,3.83275008952743e-10,-8.59517318430036e-10,-0.0425077128144281,-0.032612692322945,0.0279343174828562,-3.21617732446099e-09,-1.6531914726059e-09,-0.0683968489770605 +3.302,-8.39547774226027e-09,9.88786451674994e-09,3.12413835079628e-09,3.91006574340658e-10,1.90092660362629e-09,0.0799999950627748,-0.00027097492529167,-0.00020069353375788,0.000187345180941573,4.46986198054943e-11,3.61849439300954e-10,-0.0003025479861328,-5.40097751678541e-08,3.45415970132157e-08,1.91645744412883e-08,-4.88107818052973e-09,7.44456579715446e-09,-2.19468540563205e-08 +3.304,-2.57657390990334e-06,-1.86035197901821e-06,1.89766317387069e-06,3.91036987512638e-10,1.90135499705812e-09,0.0799985860772909,-2.68753270506183e-09,1.73637580008767e-09,6.29502526494629e-10,4.19282664143594e-11,4.13053272141361e-10,-9.47304734655318e-10,0.107182881624806,0.0772949487963091,-0.0760658752402709,-1.48145384848419e-09,1.9895543545978e-08,0.0974375162785325 +3.306,-8.40622787308051e-09,9.8948100199503e-09,3.12665636090226e-09,3.91174287406315e-10,1.90257881671485e-09,0.0799999950589856,0.000157756601207553,0.000108486261427357,-0.000116918320019511,3.87728044115576e-11,4.41431613484866e-10,8.72020789813298e-05,2.08173051279708e-08,-1.74704001265624e-08,-3.42672938635768e-09,-5.95877513998031e-10,-3.78213085849843e-09,1.15567277969575e-08 +3.308,-1.94554750507312e-06,-1.42640693330878e-06,1.42998989379264e-06,3.91192078730285e-10,1.90312072351206e-09,0.0799989348856068,-2.60426348454995e-09,1.66649419958142e-09,6.15795608949198e-10,3.95447563583673e-11,3.97924748707367e-10,-9.01077823467488e-10,-0.0791548151618265,-0.053960230740049,0.0609823080342536,6.81312645189889e-10,-1.83104399698042e-08,-0.0406392875055075 +3.31,-8.41664492701871e-09,9.90147599674862e-09,3.12911954333805e-09,3.91332466431749e-10,1.90417051570968e-09,0.0799999950553813,-0.000158862659439753,-0.000107354661532839,0.000127010912117503,4.14980549923171e-11,3.68189853605649e-10,-7.53550710407002e-05,-1.76070638104042e-08,1.71080597605178e-08,5.94186158608955e-09,3.60822483003174e-10,4.11476408501698e-09,-9.93042453822922e-09 +3.312,-2.58099814283213e-06,-1.85582557944014e-06,1.93803354226266e-06,3.91358070950254e-10,1.90459348292649e-09,0.0799986334653227,-2.67469173979157e-09,1.73492643862349e-09,6.39563055293557e-10,4.098804629038e-11,4.14383805047435e-10,-9.40799521620405e-10,0.0789861317458227,0.0542627603039493,-0.0621766660232821,-5.1521287236511e-10,1.93096406919668e-08,0.0375538206443329 +3.314,-8.42734369397788e-09,9.90841570250311e-09,3.13167779555923e-09,3.9149641861691e-10,1.90582805092987e-09,0.0799999950516181,0.000157081867543538,0.000109696379682958,-0.000121695751975626,3.94372035028567e-11,4.45428416373516e-10,7.48602115366314e-05,-1.51397720315333e-08,9.44101567756922e-09,8.55500566221409e-09,-2.24256377356901e-09,2.28723290307542e-09,-4.82513334842948e-09 +3.316,-1.95267067265798e-06,-1.41704006070831e-06,1.45125053436015e-06,3.91515819764265e-10,1.90637519659198e-09,0.0799989329061688,-2.7352508279177e-09,1.77269050133377e-09,6.73783077942413e-10,3.20177911961039e-11,4.23532736659737e-10,-9.60100055014123e-10,-0.0559189189779367,-0.0397371590662824,0.0438919527305601,-2.58603902181242e-09,-7.59201729261248e-09,-0.0170400248598878 +3.318,-8.43828469728955e-09,9.91550646450845e-09,3.134372927871e-09,3.91624489781695e-10,1.90752218187651e-09,0.0799999950477777,-6.65938083682085e-05,-4.92522565821718e-05,5.38720589466149e-05,2.9093047415607e-11,4.15060347203066e-10,6.70011209707999e-06,2.96502189120473e-10,3.64075089520632e-10,2.36941542774982e-09,-3.04443970033929e-10,3.80771802976909e-10,8.89045781438113e-10 +3.32,-2.21904590613081e-06,-1.614049087037e-06,1.66673877014661e-06,3.91632191953928e-10,1.90803543798079e-09,0.0799989597066172,-2.73406481916122e-09,1.77414680169185e-09,6.83260739653412e-10,3.08000153159682e-11,4.25055823871645e-10,-9.5654387188837e-10,0.0285663096561317,0.0216038289239332,-0.0215263659772858,1.06512021424976e-09,4.08006961549745e-09,0.00281221081144256 +3.322,-8.44922095656619e-09,9.92260305171522e-09,3.13710597082961e-09,3.91747689842958e-10,1.909222405172e-09,0.0799999950439515,4.76714302563184e-05,3.7163059113561e-05,-3.22334049625283e-05,3.3353528272606e-11,4.31380625665056e-10,1.79489553428502e-05,5.08479976873976e-09,-2.15626128063917e-09,-1.45521615591004e-09,9.25474974433624e-10,-3.4781205693335e-10,2.07299455379228e-09 +3.324,-2.02836018510554e-06,-1.46539685058275e-06,1.5378051502965e-06,3.91765606067018e-10,1.90976096048345e-09,0.0799990315024386,-2.71372562008626e-09,1.7655217565693e-09,6.77439875029772e-10,3.45019152137027e-11,4.23664575643911e-10,-9.48251893673201e-10,-0.0151539827759309,-0.0111742593602616,0.0108795277127538,8.69530142333374e-10,-2.73869468769838e-09,-0.00212581916479715 +3.326,-8.46007585904654e-09,9.92966513874149e-09,3.13981573032973e-09,3.91885697503813e-10,1.91091706347457e-09,0.0799999950401585,-1.29445008474052e-05,-7.53397832748553e-06,1.12847058884868e-05,3.68316488419395e-11,4.20425846914263e-10,9.44567868366163e-06,3.84801511401493e-08,-2.67099710404838e-08,-1.57198472988673e-08,3.5076108684251e-09,-6.16780931883553e-09,1.63124722063479e-08 +3.328,-2.08013818849516e-06,-1.49553276389269e-06,1.58294397385045e-06,3.91912932662386e-10,1.91144266387111e-09,0.0799990692851533,-2.55980501552566e-09,1.65868187240736e-09,6.14560485834303e-10,4.85323586874031e-11,3.98993338368569e-10,-8.8300200484781e-10,-0.0142198667160121,-0.00852933815286467,0.0110110423541634,4.92314522482374e-09,-1.04066061323743e-08,-0.0205091165873131 +3.33,-8.47031507910864e-09,9.93629986623112e-09,3.14227397227307e-09,3.92079826938563e-10,1.91251303682805e-09,0.0799999950366265,-6.98239677114535e-05,-4.16513309389442e-05,5.53288753051403e-05,5.65242297412345e-11,3.78799422384765e-10,-7.25907876655909e-05,-1.46599583601013e-08,1.34699109505269e-08,-1.42052168639066e-09,1.85875620450935e-09,2.5869063835507e-09,-9.77863623408234e-09 +3.332,-2.35943405934094e-06,-1.66213808764845e-06,1.80425947507099e-06,3.92139029581351e-10,1.91295786156065e-09,0.0799987789220027,-2.61844484896606e-09,1.71256151620946e-09,6.08878399088741e-10,5.59673835054397e-11,4.09340963902771e-10,-9.22116549784135e-10,0.0418821766547754,0.0257046664155659,-0.0353656957601427,-7.37257477291709e-10,1.29327971942656e-08,0.0308963250678104 +3.334,-8.48078885850451e-09,9.94315011229596e-09,3.14470948586942e-09,3.92303696472585e-10,1.91415040068366e-09,0.0799999950329381,9.77047389076482e-05,6.11673347233193e-05,-8.61339077354305e-05,5.35751998320677e-11,4.30530611161828e-10,5.0994512605651e-05,-1.85529759957892e-08,8.90281771914741e-09,5.36398182815478e-09,-2.27292143439861e-09,1.44719305983365e-09,-6.40112962635441e-09 +3.336,-1.96861510371035e-06,-1.41746874875517e-06,1.45972384412926e-06,3.92353330380679e-10,1.9146799840053e-09,0.0799989829000531,-2.69265675294922e-09,1.74817278708605e-09,6.3033432640136e-10,4.68756977678452e-11,4.15129736142105e-10,-9.47721068289552e-10,-0.0356272927789277,-0.0243745693453197,0.0295152613061927,-2.53096155145016e-09,-5.17728221405278e-09,-0.0134373144469041 +3.338,-8.4915594855163e-09,9.95014280344431e-09,3.14723082317503e-09,3.92491199263656e-10,1.91581091962822e-09,0.0799999950291472,-4.48044322080626e-05,-3.63309426579597e-05,3.19271374893404e-05,4.3451353626267e-11,4.09821482305616e-10,-2.75474518196539e-06,-4.15512351088776e-09,1.55257751099924e-09,2.26229625310825e-09,-8.89479462307107e-10,2.78856798763271e-10,-7.61543605953818e-10 +3.34,-2.1478328325426e-06,-1.56279251938701e-06,1.58743239408662e-06,3.92527135795184e-10,1.91631926993452e-09,0.0799989718810724,-2.70927724699277e-09,1.75438309713005e-09,6.39383511413793e-10,4.33177799186168e-11,4.16245163337159e-10,-9.50767242713368e-10,0.0187584663444574,0.0148230766109942,-0.013131828344344,1.37476835471162e-10,2.75647560332714e-09,0.00377962154109179 +3.342,-8.50239659450427e-09,9.95716033583283e-09,3.14978835722068e-09,3.9266447038333e-10,1.91747590028157e-09,0.0799999950253441,3.02294331697671e-05,2.29613637860171e-05,-2.06001758880358e-05,4.40012609681517e-11,4.20847384718925e-10,1.23637409824018e-05,1.54406652394523e-09,-7.41594285980084e-11,5.21934925834496e-10,1.76941794549634e-10,1.08853898117545e-10,7.21644966006351e-10 +3.344,-2.02691509986353e-06,-1.47094706424294e-06,1.50503169053448e-06,3.92703140839057e-10,1.91800265947339e-09,0.0799990213360363,-2.70310098089699e-09,1.75408645941566e-09,6.41471251117131e-10,4.40255470968153e-11,4.16680578929629e-10,-9.47880662849342e-10,-0.00973066460830468,-0.00688096872471406,0.00733791801887233,2.14238349283135e-10,-1.3986208025063e-09,-0.00113379577774963 +3.346,-8.51320899842786e-09,9.96417668167049e-09,3.15235424222515e-09,3.92840572571718e-10,1.91914262259729e-09,0.0799999950215526,-8.6932252634517e-06,-4.56251111283917e-06,8.75149618745351e-06,4.48582143652842e-11,4.152529015089e-10,7.82855787140323e-06,3.09631877429272e-09,-6.84782092141844e-10,-4.58183838092348e-10,5.31259064517897e-10,-6.6786853825107e-11,1.02175212735034e-09 +3.348,-2.06168800091734e-06,-1.4891971086943e-06,1.54003767528429e-06,3.92882573696518e-10,1.91966367107943e-09,0.0799990526502678,-2.69071570579982e-09,1.75134733104709e-09,6.39638515764762e-10,4.61505833548869e-11,4.16413431514328e-10,-9.43793654339941e-10,0.00450925848697875,0.00315386284709812,-0.00359574247959203,6.37510877421474e-10,5.50341022753642e-10,-0.000786966846723357 +3.35,-8.52397186125106e-09,9.97118207099468e-09,3.15491279628821e-09,3.93025174905137e-10,1.92080827632335e-09,0.0799999950177774,9.34380868446333e-06,8.0529402755533e-06,-5.6314737309146e-06,4.74082578749701e-11,4.17454265599914e-10,4.6806904845098e-06,2.49987205415414e-09,-7.53737350311922e-10,-8.08597980239688e-10,4.94396190653388e-10,-9.97465998686663e-11,7.43329009456061e-10 +3.352,-2.02431276617948e-06,-1.45698534759209e-06,1.51751178036064e-06,3.93072206728018e-10,1.92133348814183e-09,0.0799990713730297,-2.6807162175832e-09,1.74833238164584e-09,6.36404123843803e-10,4.81281681175005e-11,4.16014445114854e-10,-9.40820338302117e-10,-0.00272335669773281,-0.00219261106688441,0.00175931130145905,3.57353036051222e-10,-5.18248638448071e-10,-0.00071997664080614 +3.354,-8.53469472612139e-09,9.97817540052126e-09,3.15745841278359e-09,3.93217687577607e-10,1.92247233410381e-09,0.0799999950140141,-1.54961810646791e-06,-7.17503991984336e-07,1.4057714749216e-06,4.8837670019175e-11,4.15381271046122e-10,1.80078392128524e-06,1.34709409425893e-09,-5.20417042793042e-10,-8.16187395447087e-10,3.21791204793697e-10,-1.86482773667507e-10,3.45209971719384e-10 +3.356,-2.03051123860536e-06,-1.45985536356003e-06,1.52313486626032e-06,3.93267557408095e-10,1.92299501322601e-09,0.0799990785761654,-2.67532784120616e-09,1.74625071347467e-09,6.33139374262015e-10,4.94153329366753e-11,4.15268514020184e-10,-9.39439498415239e-10,0.00106137153712692,0.000644664427526183,-0.00098569659357471,2.46764414457701e-10,-5.20417042793042e-12,-0.00037019888803752 +3.358,-8.54539603748622e-09,9.98516040337516e-09,3.15999097028064e-09,3.93415348909354e-10,1.92413340815989e-09,0.0799999950102564,2.69586804203976e-06,1.8611537181204e-06,-2.53701489937724e-06,4.98247276770058e-11,4.1536045436441e-10,3.1998836913516e-07,4.30916153454363e-10,-2.34187669256817e-10,-6.15176312668275e-10,1.43982048506075e-10,-1.47885176327023e-10,5.29090660172926e-11 +3.36,-2.0197277664372e-06,-1.45241074868754e-06,1.51298680666281e-06,3.93466856318803e-10,1.92465645504347e-09,0.0799990798561189,-2.67360417659235e-09,1.74531396279764e-09,6.30678669011341e-10,4.99912611306996e-11,4.14676973314875e-10,-9.3922786215117e-10,-0.00074673396096127,-0.000578544163748125,0.000496485559478912,8.02309607639273e-11,-1.99926880606327e-10,-0.000136049656783432 +3.362,-8.55609045419259e-09,9.99214165922635e-09,3.16251368495668e-09,3.93615313953877e-10,1.92579211605315e-09,0.0799999950064995,-2.91067801805322e-07,-4.53022936872105e-07,-5.51072661461593e-07,5.01456515200615e-11,4.14560746841985e-10,-2.24210257998569e-07,3.29330475650617e-08,-2.39105610311263e-08,-1.26415804907465e-08,2.26077837006677e-09,-5.5194564196892e-09,1.4356571487184e-08 +3.364,-2.02089203764442e-06,-1.45422284043503e-06,1.51078251601697e-06,3.93667438924883e-10,1.92631469803084e-09,0.0799990789592778,-2.5418719863321e-09,1.64967171867314e-09,5.80112347048355e-10,5.90343746109667e-11,3.92599147636119e-10,-8.81801576202434e-10,-0.0210915446533736,-0.0132858973161173,0.0165619585042881,3.52365706057788e-09,-1.06607431216154e-08,-0.0196647614858491 +3.366,-8.56625794213792e-09,9.99874034610104e-09,3.16483413434487e-09,3.93851451452321e-10,1.92736251264369e-09,0.0799999950029723,-8.46572464152997e-05,-5.35966122013412e-05,6.56967613556907e-05,6.42402797623731e-11,3.71917774355523e-10,-7.88832562013952e-05,-1.90504350575797e-08,1.67960263752764e-08,2.81307095673089e-09,6.14525791364783e-10,3.50370774060415e-09,-1.14283582597352e-08 +3.368,-2.35952102330562e-06,-1.6686092892404e-06,1.77356956143973e-06,3.93924400043932e-10,1.92780236912826e-09,0.079998763426253,-2.61807372656242e-09,1.71685582417424e-09,5.91364630875279e-10,6.14924777764258e-11,4.06613978598535e-10,-9.27515009241374e-10,0.0463361616403188,0.0293220738737786,-0.0377067127608349,-1.88044024795886e-09,1.4511829238284e-08,0.0323578909942542 +3.37,-8.57673023704417e-09,1.00056077693977e-08,3.16719959286837e-09,3.94097421363426e-10,1.92898896855809e-09,0.0799999949992622,0.000100687400145976,6.36916832937733e-05,-8.51300896876488e-05,5.67185187705376e-11,4.29965091308659e-10,5.05483077756219e-05,-2.18849190072173e-08,1.1961785728598e-08,9.69493582636537e-09,-3.39138439553465e-09,2.43772016461641e-09,-7.553853376141e-09 +3.372,-1.95677142272171e-06,-1.4138425560653e-06,1.43304920268914e-06,3.94151274119015e-10,1.9295222294935e-09,0.0799989656194841,-2.70561340259129e-09,1.76470296708864e-09,6.30144374180741e-10,4.79269401942872e-11,4.16364859257001e-10,-9.57730422745939e-10,0.0260571947692685,0.021304580544168,-0.0148904048848097,3.37403716077489e-10,1.12323345069498e-10,0.0439718356205764 +3.374,-8.58755269065453e-09,1.00126665812661e-08,3.1697201703651e-09,3.94289129124203e-10,1.93065442799512e-09,0.0799999949954313,0.00020491617922305,0.000148910005470446,-0.000144691709226888,5.80681336348476e-11,4.30414384688937e-10,0.000226435650257928,3.86013378379789e-08,-2.680863343818e-08,-1.28595051274161e-08,2.42991390897451e-09,-5.9010955844041e-09,1.6677631498041e-08 +3.376,-1.13710670582952e-06,-8.18202534183521e-07,8.54282365781583e-07,3.94383546653554e-10,1.93124388703225e-09,0.0799998713620852,-2.55120805123937e-09,1.65746843333592e-09,5.78706353671076e-10,5.76465958301852e-11,3.92760476919385e-10,-8.91019896753774e-10,-0.153118296666946,-0.111034274428902,0.109783784472527,-4.25354196309512e-09,-2.0044729764912e-08,-0.13597672574115 +3.378,-8.59775752285949e-09,1.00192964549994e-08,3.17203499577978e-09,3.94519715507524e-10,1.93222546990279e-09,0.0799999949918672,-0.000407557007444737,-0.000295227092245165,0.000294443428663221,4.10539657824671e-11,3.50235465629289e-10,-0.000317471252706674,-4.38315562231033e-08,3.223072850278e-08,1.74669306796104e-08,-3.42607886505419e-09,7.2992827060414e-09,-1.93785959501369e-08 +3.38,-2.76733473560846e-06,-1.99911090316418e-06,2.03205608043447e-06,3.94547762516684e-10,1.93264482889477e-09,0.0799986014770743,-2.72653427613178e-09,1.78639134734704e-09,6.48574076389518e-10,4.39422803699685e-11,4.2195760774355e-10,-9.68534280554322e-10,0.160861634273911,0.115929431165461,-0.116658429691069,7.25548093827299e-10,2.76848856339828e-08,0.1020866874403 +3.382,-8.60866365996402e-09,1.00264420203888e-08,3.17462929208534e-09,3.94695484629004e-10,1.93391330033377e-09,0.0799999949879931,0.000235889529650907,0.000168490632416682,-0.000172190290101057,4.39561581577763e-11,4.6097500816522e-10,9.08754970545266e-05,-8.96518644911969e-09,5.44811591673965e-09,7.90383383741932e-09,-2.21567555969137e-09,1.53826604232243e-09,-2.14932238673526e-09 +3.384,-1.82377661700484e-06,-1.32514837349745e-06,1.34329492003024e-06,3.94723587149315e-10,1.93448872892743e-09,0.0799989649790626,-2.76239502192826e-09,1.808183811014e-09,6.80189411739195e-10,3.5079578131203e-11,4.2811067191284e-10,-9.77131570101263e-10,-0.085598706513006,-0.0613193841692699,0.0640646548798976,-3.15936513062275e-09,-1.16729542698479e-08,-0.0224801998509327 +3.386,-8.61971324005173e-09,1.00336747556329e-08,3.1773500497323e-09,3.94835802941529e-10,1.93562574302142e-09,0.0799999949840845,-0.000106505296401118,-7.6786904260398e-05,8.40683294185337e-05,3.13186976352852e-11,4.14283191085829e-10,9.54697650795699e-07,8.84925813182668e-10,8.04911692853238e-10,3.01711780559266e-09,-3.15719672627779e-10,6.34475111338517e-10,9.11597186625811e-10 +3.388,-2.24979780260931e-06,-1.63229599053905e-06,1.67956823770438e-06,3.94848861939856e-10,1.93614586169177e-09,0.0799989687978532,-2.75885531867553e-09,1.81140345778541e-09,6.92257882961566e-10,3.38166994406918e-11,4.30648572358194e-10,-9.7348518135476e-10,0.0430016848737568,0.0318618486295184,-0.0322943757187499,1.25030194531028e-09,6.39245600897452e-09,0.00383043627198709 +3.39,-8.63074866132643e-09,1.0040920369464e-08,3.18011908126414e-09,3.94971069739292e-10,1.93734833731085e-09,0.0799999949801906,6.55014430939095e-05,5.06604902576757e-05,-4.51091734564659e-05,3.63199054165264e-11,4.39853015121727e-10,1.62764427387441e-05,4.24527492152992e-09,-1.30559625610704e-09,-4.62520646782316e-10,6.74373751285983e-10,-6.20163642661708e-11,1.64365049348802e-09 +3.392,-1.98779203023367e-06,-1.42965402950834e-06,1.49913154387851e-06,3.94994141561522e-10,1.93790527375226e-09,0.0799990339036241,-2.74187421898941e-09,1.80618107276098e-09,6.90407800374437e-10,3.65141944458358e-11,4.30400506901129e-10,-9.66910579380808e-10,-0.0224961824670151,-0.0166488011812179,0.0162937752825644,4.0158848468863e-10,-3.45687020675277e-09,-0.00230342437571723 +3.394,-8.64171615820239e-09,1.00481450937551e-08,3.18288071246564e-09,3.95117126517075e-10,1.93906993933846e-09,0.0799999949763229,-2.44832867741509e-05,-1.59347144671959e-05,2.00659276737916e-05,3.79262593552809e-11,4.26025534294716e-10,7.06274523587513e-06,4.28937484489577e-09,-2.19724412275912e-09,-2.53031103014667e-09,1.00700697780453e-09,-5.1304446802014e-10,1.47711703979425e-09 +3.396,-2.08572517733027e-06,-1.49339288737713e-06,1.57939525457368e-06,3.95145846598943e-10,1.93960937588944e-09,0.0799990621546051,-2.72471671960983e-09,1.79739209626994e-09,6.8028655625385e-10,4.05422223570539e-11,4.28348329029049e-10,-9.61002111221631e-10,0.0108084397698214,0.0075042323394777,-0.00877687106456622,1.271118627022e-09,9.4759269875233e-10,-0.000970232923516721 +3.398,-8.65261502508083e-09,1.00553346621401e-08,3.18560185869066e-09,3.95279295406503e-10,1.94078333265457e-09,0.0799999949724789,1.87504723051348e-05,1.40822148907149e-05,-1.50415565844733e-05,4.30107338633689e-11,4.29815905089725e-10,3.18181354180824e-06,3.13610899402294e-09,-2.27595720048157e-09,-3.42933147157165e-09,9.87925019568791e-10,-7.29451221648247e-10,9.54097911787243e-10 +3.4,-2.01072328810973e-06,-1.43706402781427e-06,1.51922902823579e-06,3.95317889534397e-10,1.9413286395098e-09,0.0799990748818592,-2.71217228363374e-09,1.78828826746802e-09,6.66569230367563e-10,4.44939224353291e-11,4.25430524142456e-10,-9.57185719574482e-10,-0.00602524844210347,-0.00457748720373608,0.00422374215312305,7.927686285214e-10,-1.61676227961038e-09,-0.000724479457328563 +3.402,-8.66346371421536e-09,1.006248781521e-08,3.18826813561213e-09,3.95457271096245e-10,1.94248505475114e-09,0.0799999949686502,-5.35052146327912e-06,-4.22773392422942e-06,1.85341202801892e-06,4.61818083774545e-11,4.23348855971284e-10,2.83895712493986e-07,1.92277834279442e-09,-1.83815636323192e-09,-3.41263475811537e-09,8.40473524110761e-10,-7.40726924242096e-10,5.2128440453103e-10 +3.404,-2.03212537396285e-06,-1.45397496351118e-06,1.52664267634786e-06,3.95502616767907e-10,1.94302203493368e-09,0.0799990760174421,-2.70448117026256e-09,1.78093564201509e-09,6.52918691335102e-10,4.78558165317721e-11,4.22467616445487e-10,-9.55100581956358e-10,0.00263336338656274,0.00182674868200866,-0.00205835887397143,8.02743288508265e-10,-3.13551268282808e-10,-0.000307500608309751 +3.406,-8.67428163889641e-09,1.00696115577781e-08,3.19087981037747e-09,3.95648694362372e-10,1.94417492521692e-09,0.0799999949648298,5.18293208297184e-06,3.07926080380521e-06,-6.38002346786681e-06,4.93927815314876e-11,4.22094650898152e-10,-9.4610672074502e-07,9.96625742002987e-10,-1.14556801544818e-09,-2.75105459246472e-09,6.51822346098285e-10,-5.96311194867027e-10,1.36175792864179e-10 +3.408,-2.01139364563096e-06,-1.44165792029596e-06,1.50112258247639e-06,3.95700187894032e-10,1.94471041353728e-09,0.0799990722330152,-2.70049466729455e-09,1.7763533699533e-09,6.41914472965243e-10,5.04631059161653e-11,4.20082371666019e-10,-9.54555878784901e-10,0.0593311305996997,0.0434028144266976,-0.0427428697945524,4.34114549863195e-09,3.514983443198e-09,0.0528220469413198 +3.41,-8.68508361756559e-09,1.00767169712579e-08,3.19344746826933e-09,3.95850546786036e-10,1.94585525470359e-09,0.0799999949610116,0.000242507454481771,0.000176690518510596,-0.000177351502646077,6.67573635260154e-11,4.36154584670944e-10,0.000210342081044534,4.53747282802562e-08,-3.14180105542849e-08,-2.07568337518004e-08,4.62694119129913e-09,-7.41073868937291e-09,1.81825041134509e-08 +3.412,-1.04136382770388e-06,-7.3489584625358e-07,7.91716571892087e-07,3.95967217348137e-10,1.94645503187596e-09,0.0799999136013394,-2.51899575417352e-09,1.65068132773616e-09,5.58887137958041e-10,6.89708706813618e-11,3.90439416908528e-10,-8.81825862331097e-10,-0.166452896173565,-0.12068704123569,0.119870865276624,-3.27168847569225e-09,-2.29434526932692e-08,-0.130168469485853 +3.414,-8.69515960058229e-09,1.00833196965688e-08,3.19568301682116e-09,3.96126430268762e-10,1.94741701237122e-09,0.0799999949574843,-0.000423304130212488,-0.000306057646432163,0.000302131958460419,5.36706096232464e-11,3.44380773897867e-10,-0.000310331796898877,-4.45981142641048e-08,3.16669433730875e-08,1.40191677711066e-08,-2.91867224833097e-09,6.55031584528842e-09,-2.03196834358543e-08 +3.416,-2.73458034855383e-06,-1.95912643198223e-06,2.00024440573376e-06,3.9618189978663e-10,1.94783255497155e-09,0.0799986722741518,-2.69738821122994e-09,1.77734910122851e-09,6.14963809042468e-10,5.72961816880379e-11,4.16640680289681e-10,-9.63104596074515e-10,0.16528786961551,0.118084259321865,-0.119649242719078,8.28330459778923e-10,2.78037141920872e-08,0.0962485688787982 +3.418,-8.70594915342721e-09,1.00904290929738e-08,3.19814287205733e-09,3.96355614995514e-10,1.94908357509238e-09,0.0799999949536318,0.000237847348249554,0.000166279390855298,-0.000176465012415895,5.69839314623621e-11,4.55595630666216e-10,7.46624786163163e-05,-1.23897474311324e-08,6.57546933569008e-09,7.51655682140747e-09,-2.53399731753312e-09,1.45890244329649e-09,-3.50153933625918e-09 +3.42,-1.78319095555561e-06,-1.29400886856104e-06,1.29438435607018e-06,3.96409835512479e-10,1.94965493749422e-09,0.0799989709240662,-2.74694720095447e-09,1.80365097857127e-09,6.45030036328097e-10,4.71601924179054e-11,4.22476290062867e-10,-9.77110753419551e-10,-0.0876788276036264,-0.0623259749357382,0.065562746466444,-3.71404296206634e-09,-1.17813744870965e-08,-0.0195951395005889 +3.422,-8.71693694223102e-09,1.0097643696888e-08,3.20072299220264e-09,3.96544255765185e-10,1.95077348025263e-09,0.0799999949497234,-0.000112867962164952,-8.30245088876552e-05,8.57859734498811e-05,4.21277596140967e-11,4.0847013271783e-10,-3.71807938603918e-06,-2.55042298044627e-09,2.83865812800155e-09,4.69481224729673e-09,-9.52363188311266e-10,9.86623976961808e-10,-4.11129463806503e-10 +3.424,-2.23466280421542e-06,-1.62610690411166e-06,1.63752824986971e-06,3.96578346550935e-10,1.95128881802509e-09,0.0799989560517487,-2.75714889287626e-09,1.81500561108327e-09,6.63809285317284e-10,4.33507396646604e-11,4.26422785970714e-10,-9.78755271274777e-10,0.044332012777014,0.0331868089361361,-0.0321838129725086,5.59014640133526e-10,7.03473737595493e-09,0.00441019995349456 +3.426,-8.72796553780253e-09,1.01049037193324e-08,3.20337822934391e-09,3.96717658723844e-10,1.95247917139652e-09,0.0799999949458084,6.44600889431043e-05,4.97227268568892e-05,-4.29492784401533e-05,4.43638181746308e-11,4.3660908222165e-10,1.39227204279391e-05,1.58201359998222e-09,9.73396710457485e-10,2.37895640686769e-09,-3.42607886505419e-11,5.96744875736021e-10,6.73940070416989e-10 +3.428,-1.976822448443e-06,-1.42721599668411e-06,1.46573113610909e-06,3.96755801823634e-10,1.95303525435397e-09,0.0799990117426304,-2.75082083847633e-09,1.8188991979251e-09,6.73325110944755e-10,4.32136965100582e-11,4.28809765473659e-10,-9.76059510993109e-10,-0.022880359673989,-0.0168041167460976,0.0166165612014348,-3.05311331771918e-10,-2.81805828672431e-09,-0.00173737890220293 +3.43,-8.73896882115643e-09,1.01121793161241e-08,3.20607152978769e-09,3.96890513509884e-10,1.95419441045841e-09,0.0799999949419041,-2.70613497528518e-05,-1.74937401275013e-05,2.3516966365586e-05,4.31425728475432e-11,4.25336849074753e-10,6.97320481912733e-06,3.56091024722449e-08,-2.4605317783255e-08,-1.20673870201981e-08,2.58473797920544e-09,-5.30348334693009e-09,1.56845023080443e-08 +3.432,-2.08506784745441e-06,-1.49719095719411e-06,1.55979900157144e-06,3.96928372115024e-10,1.95473660175027e-09,0.0799990396354497,-2.60838442858735e-09,1.72047792679208e-09,6.25055562863963e-10,5.355264842688e-11,4.07595832085938e-10,-9.13321501760932e-10,-0.00952222067247321,-0.00512871419292015,0.00749454880945819,4.25354196309512e-09,-9.00364852118861e-09,-0.020933979015536 +3.434,-8.74940235887078e-09,1.01190612278312e-08,3.20857175203915e-09,3.97104724103592e-10,1.95582479378675e-09,0.0799999949382509,-6.51502324427446e-05,-3.80085968991819e-05,5.34951616034187e-05,6.01567406999237e-11,3.89322254989998e-10,-7.67627112430169e-05,-1.65129140829861e-08,1.59364708929299e-08,2.1612486106326e-09,1.03562991515815e-09,3.46337541978769e-09,-1.06832945268032e-08 +3.436,-2.34566877722539e-06,-1.64922534479084e-06,1.77377964798511e-06,3.97168999077824e-10,1.95629389077023e-09,0.0799987325846047,-2.67443608491929e-09,1.7842238103638e-09,6.33700557306493e-10,5.76951680875126e-11,4.21449333765089e-10,-9.56054679868145e-10,0.039222489966003,0.0237308951948813,-0.0331230526318636,-1.67270711171063e-09,1.34146166397286e-08,0.0325329013190628 +3.438,-8.76010010321046e-09,1.01261981230727e-08,3.21110655426837e-09,3.97335504775942e-10,1.95751059112181e-09,0.0799999949344266,9.17397274212676e-05,5.69149838803434e-05,-7.89970489240357e-05,5.34659122530811e-11,4.42980721548913e-10,5.33688940332344e-05,-2.07564000709315e-08,1.1030456062433e-08,8.41015625197002e-09,-3.03706712556639e-09,2.08427025638613e-09,-7.19042880792386e-09 +3.44,-1.97870986754032e-06,-1.42156540926947e-06,1.45779145228897e-06,3.97382862726836e-10,1.95806581365643e-09,0.0799989460601808,-2.75746168520302e-09,1.82834563461354e-09,6.67341182314373e-10,4.5546899585247e-11,4.29786414790633e-10,-9.8481639509984e-10,-0.0336179355862767,-0.0227465904976704,0.0276676619826582,-3.08780778723871e-09,-4.37063579772355e-09,-0.0137778607056313 +3.442,-8.77112994995127e-09,1.01335115056111e-08,3.21377591899763e-09,3.97517692374283e-10,1.95922973678098e-09,0.0799999949304874,-4.27320149238392e-05,-3.40713781103383e-05,3.16735990065972e-05,4.11146811041263e-11,4.25498178358019e-10,-1.74254878929081e-06,-5.28651558293069e-09,2.51665008277335e-09,4.00937963385139e-09,-1.30711413914852e-09,6.60495963478169e-10,-1.02695629777827e-09 +3.444,-2.14963792723568e-06,-1.55785092171082e-06,1.58448584831536e-06,3.97547321451253e-10,1.95976780636986e-09,0.0799989390899857,-2.77860774753474e-09,1.83841223494463e-09,6.83378700849779e-10,4.03184430286529e-11,4.32428398644546e-10,-9.88924220290953e-10,0.0179947855277664,0.014210053203784,-0.0127099464121774,-1.1145598333151e-10,2.93948893004268e-09,0.00390857590130272 +3.446,-8.78224438094141e-09,1.01408651545509e-08,3.21650943380103e-09,3.97678966146398e-10,1.96095945037555e-09,0.0799999949265317,2.92471271872265e-05,2.27688347047977e-05,-1.91661866421125e-05,4.06688571708002e-11,4.3725613407819e-10,1.38917548159201e-05,1.25331060633893e-09,5.76795555762288e-11,1.02175212735034e-09,7.19910242530374e-11,2.40692882291782e-10,6.99093560818653e-10 +3.448,-2.03264941848677e-06,-1.46677558289163e-06,1.50782110174691e-06,3.97709996879936e-10,1.96151683090617e-09,0.079998994657005,-2.77359450510939e-09,1.83864295316693e-09,6.8746570935918e-10,4.06064071256651e-11,4.33391170173713e-10,-9.86127846047679e-10,-0.00921913720426549,-0.00653061337820003,0.00676531545194813,2.36789754470834e-10,-1.30494573480354e-09,-0.00130516006509318 +3.45,-8.79333875896185e-09,1.01482197263636e-08,3.21925929663847e-09,3.978413917749e-10,1.96269301505625e-09,0.0799999949225872,-7.62942162983552e-06,-3.35361880800244e-06,7.89507516568005e-06,4.16160161886836e-11,4.32036351138975e-10,8.67111455554736e-06,3.3124273723234e-09,-1.07856432118858e-09,-8.66711216684912e-10,6.60495963478169e-10,-1.12323345069498e-10,1.17961196366423e-09 +3.452,-2.06316710500611e-06,-1.48019005812364e-06,1.53940140240963e-06,3.97876460944691e-10,1.96324497631073e-09,0.0799990293414632,-2.76034479562009e-09,1.83432869588218e-09,6.8399886449244e-10,4.32483909795777e-11,4.32941876793435e-10,-9.81409398193022e-10,0.0042854603736367,0.00290665762943051,-0.00355035956688641,8.38738800634786e-10,4.08527378592538e-10,-0.000927192323786628 +3.454,-8.80438013814433e-09,1.01555570411471e-08,3.22199529209644e-09,3.98014385338818e-10,1.96442478256342e-09,0.0799999949186615,9.51241986471128e-06,8.27301170971961e-06,-6.3063631018656e-06,4.49709713912227e-11,4.33670460653346e-10,4.96234526040084e-06,3.62410568135324e-08,-2.60577150135165e-08,-1.45961801673033e-08,3.05788380727811e-09,-5.90326398874907e-09,1.58623114643319e-08 +3.456,-2.02511742554727e-06,-1.44709801128476e-06,1.51417595000217e-06,3.98056344830255e-10,1.96497965815334e-09,0.0799990491908442,-2.61538056836596e-09,1.73009783582811e-09,6.25614143823227e-10,5.54799262086902e-11,4.09328820838439e-10,-9.17960152335694e-10,-0.0236742488166194,-0.0153610937067127,0.018149633518533,4.34721703079787e-09,-1.15350437535078e-08,-0.0211764213014012 +3.458,-8.81484166041779e-09,1.01624774324904e-08,3.22449774867173e-09,3.98236305043653e-10,1.96606209784678e-09,0.0799999949149897,-8.51845754017664e-05,-5.31713631171312e-05,6.62921709722666e-05,6.23598395144142e-11,3.87530285639314e-10,-7.9743339945204e-05,-1.63535634686851e-08,1.5476335490927e-08,6.79794762148411e-10,1.3162214373974e-09,3.16023249236075e-09,-1.08316133839992e-08 +3.46,-2.36585572715433e-06,-1.65978346375328e-06,1.77934463389123e-06,3.98305784188313e-10,1.9665297792959e-09,0.0799987302174844,-2.6807948222407e-09,1.79200317779182e-09,6.28333322871821e-10,6.07448119582798e-11,4.21969750807882e-10,-9.61286605871691e-10,0.0467336326626413,0.0291282650792448,-0.0383200238263971,-1.34094124693007e-09,1.43197086133195e-08,0.0329514208263076 +3.462,-8.82556483970676e-09,1.01696454452016e-08,3.22701108196322e-09,3.98479284291486e-10,1.96774997685001e-09,0.0799999949111445,0.000101749955248799,6.33416971998479e-05,-8.69879243333218e-05,5.69960745266939e-11,4.44809120092593e-10,5.20623433600264e-05,-2.11357353060298e-08,1.1255536433441e-08,7.94915348822919e-09,-2.95336671785051e-09,1.97628372000658e-09,-7.37084004942545e-09 +3.464,-1.95885590615914e-06,-1.40641667495389e-06,1.43139293655795e-06,3.9853376848642e-10,1.96830901577627e-09,0.0799989384668579,-2.76533776346482e-09,1.83702532352559e-09,6.60129936824738e-10,4.89313450868778e-11,4.29874885687908e-10,-9.90769966069393e-10,-0.0375845077850683,-0.0254699930922561,0.0306443307248813,-3.15546200280181e-09,-4.97865637605342e-09,-0.0136773237197768 +3.466,-8.83662619076062e-09,1.01769935464957e-08,3.22965160171051e-09,3.98675009671834e-10,1.96946947639276e-09,0.0799999949071815,-4.85880758914741e-05,-3.85382751691768e-05,3.55893985662034e-05,4.43742265154867e-11,4.24894494588379e-10,-2.64695151908078e-06,-5.74415731993682e-09,3.08607306376274e-09,4.27197340002738e-09,-1.32446137390829e-09,7.43762690325055e-10,-1.29757316003065e-09 +3.468,-2.15320820972503e-06,-1.5605697756306e-06,1.57375053082276e-06,3.98711265392482e-10,1.97000859375462e-09,0.0799989278790518,-2.78831439274457e-09,1.84936961578064e-09,6.77217830424847e-10,4.36334995912446e-11,4.32849936449209e-10,-9.95960258709515e-10,0.0199943206749509,0.0157150196707697,-0.0139267658076387,-1.34441069388202e-10,3.32546490344752e-09,0.00405674588192794 +3.47,-8.84777944833159e-09,1.01843910249588e-08,3.23236047303221e-09,3.98849543670199e-10,1.97120087613856e-09,0.0799999949031976,3.13892068083297e-05,2.4321803513902e-05,-2.01176646643514e-05,4.38364622379339e-11,4.38196354202169e-10,1.3580032008631e-05,7.56718906286257e-10,7.92334947652406e-10,1.74469813596367e-09,-3.29597460435593e-11,4.16333634234433e-10,5.20417042793042e-10 +3.472,-2.02765138249171e-06,-1.46328256157499e-06,1.49327987216535e-06,3.98886611241434e-10,1.97176137917143e-09,0.0799989821991798,-2.78528751711943e-09,1.85253895557125e-09,6.84196622968702e-10,4.35016606070704e-11,4.34515270986146e-10,-9.93878590538343e-10,-0.0102137732502358,-0.00723689563050105,0.00751252081723773,8.84708972748171e-11,-1.20216336885191e-09,-0.00124376111840241 +3.474,-8.85892059840007e-09,1.01918011807811e-08,3.23509725952409e-09,3.99023550312627e-10,1.9729389372225e-09,0.0799999948992221,-9.46588619261337e-06,-4.62577900810223e-06,9.93241860459958e-06,4.41903458270331e-11,4.33387700726761e-10,8.60498753502136e-06,2.8159983025966e-09,-3.2981430087009e-10,2.92734586571086e-11,5.07406616723216e-10,1.31838984174237e-10,1.00353753085258e-09 +3.476,-2.06551492726217e-06,-1.4817856776074e-06,1.53300954658375e-06,3.99063372624742e-10,1.97349492997434e-09,0.07999901661913,-2.77402352390904e-09,1.85121969836777e-09,6.8431371680333e-10,4.55312870739632e-11,4.35042626922843e-10,-9.89864440414933e-10,0.00484090397555682,0.00331772182209782,-0.00393693887061098,6.96925156473682e-10,6.64399091299116e-10,-0.000877575678792651 +3.478,-8.87001669249571e-09,1.01992060595746e-08,3.2378345143913e-09,3.99205675460923e-10,1.97467910773019e-09,0.0799999948952626,9.89772970961394e-06,8.64510828028907e-06,-5.81533687784435e-06,4.69780464529279e-11,4.36045297091958e-10,5.09468481985075e-06,3.58772527745549e-08,-2.56593791353454e-08,-1.38558869239302e-08,2.9238764187589e-09,-5.72458747072346e-09,1.58120044835286e-08 +3.48,-2.02592400842371e-06,-1.44720524448624e-06,1.50974819907237e-06,3.99251284810553e-10,1.97523911116271e-09,0.0799990369978693,-2.63051451281082e-09,1.74858218182638e-09,6.28890169107609e-10,5.72267927489988e-11,4.12144277039949e-10,-9.26616422480818e-10,0.0464302562133537,0.0349782359135991,-0.0329698839568546,8.41167413501152e-09,-5.45180220412611e-09,0.047549658281111 +3.482,-8.88053875054695e-09,1.02062003883019e-08,3.24035007506773e-09,3.99434582631919e-10,1.97632768483835e-09,0.0799999948915562,0.000195618754563029,0.000148558051934686,-0.000137694872705263,8.0624742992974e-11,4.14238088275453e-10,0.000195293317944295,2.90666741977612e-08,-1.59915483632921e-08,-1.82161143807979e-08,5.48432826930067e-09,-3.90486254442379e-09,7.88778764526654e-09 +3.484,-1.2434489901716e-06,-8.52973036747501e-07,9.58968708251323e-07,3.99573783782525e-10,1.97689606351581e-09,0.079999818171141,-2.51424781601977e-09,1.68461598837322e-09,5.56025711584418e-10,7.91641058262015e-11,3.96524826862254e-10,-8.95065271899752e-10,-0.142717614234704,-0.106700754649337,0.098332661716124,-5.79094064367956e-09,-1.25351118374084e-08,-0.134748301235804 +3.486,-8.89059574181103e-09,1.02129388522554e-08,3.24257417791407e-09,3.99751239055224e-10,1.9779137841458e-09,0.0799999948879759,-0.000375251702375788,-0.000278244966662663,0.000255635774159234,5.74609804182557e-11,3.6409764092582e-10,-0.000343699886998921,-3.26934659899968e-08,1.87076916458028e-08,1.06802587607202e-08,-3.97338412172487e-09,3.26171381570539e-09,-1.29306287899311e-08 +3.488,-2.74445579967475e-06,-1.96595290339815e-06,1.98151180488826e-06,3.99803627704198e-10,1.97835245407951e-09,0.079998443371593,-2.64502167997976e-09,1.75944675495643e-09,5.98746746627298e-10,6.3270569339302e-11,4.09571682125076e-10,-9.46787787059477e-10,0.129736421848142,0.0948716199714731,-0.0897300079557692,1.75900960464048e-09,1.61177494961695e-08,0.0887020826356026 +3.49,-8.90117582853095e-09,1.02199766392752e-08,3.24496916490058e-09,4.00004321332581e-10,1.9795520708743e-09,0.0799999948841888,0.00014369398501678,0.00010124151322323,-0.000103284257663844,6.44970188368176e-11,4.28568638910498e-10,1.11084435434894e-05,-3.60810285728735e-08,2.58744848463665e-08,1.4841643539154e-08,-3.36839930947796e-09,5.69336244815588e-09,-1.58770566138777e-08 +3.492,-2.16967985960763e-06,-1.56098685050524e-06,1.56837477423288e-06,4.00061615779546e-10,1.98006672863515e-09,0.0799984878053672,-2.78934579427126e-09,1.86294469434189e-09,6.58113320783915e-10,4.97969721013902e-11,4.32345131917699e-10,-1.01029601351499e-09,-0.0394344864217935,-0.0297101958289264,0.0275981113385514,-6.30008198387876e-09,3.32459754170954e-09,0.0135081694736111 +3.494,-8.91233321170803e-09,1.02274284180526e-08,3.24760161818372e-09,4.00203509220987e-10,1.98128145140197e-09,0.0799999948801476,-1.4043960670394e-05,-1.75992700924762e-05,7.10818769036197e-06,3.92966909013026e-11,4.41867029077336e-10,6.51411214379338e-05,-2.32416082907027e-08,1.46909394371786e-08,1.57272198736402e-08,-4.38928407509031e-09,3.59001023353399e-09,-7.09848846369709e-09 +3.496,-2.2258557022892e-06,-1.63138393087514e-06,1.59680752499433e-06,4.00218802543151e-10,1.98183419675146e-09,0.079998748369853,-2.88231222743407e-09,1.92170845209061e-09,7.21022200278475e-10,3.22398358010289e-11,4.46705172851835e-10,-1.03868996736978e-09,0.00915946955291185,0.00917280076873602,-0.00373904405115594,-2.48022088977784e-09,2.74823566681625e-09,-0.0104452337447783 +3.498,-8.92386246061777e-09,1.02351152518609e-08,3.25048570698483e-09,4.00332468564191e-10,1.98306827209338e-09,0.0799999948759928,2.25939175412535e-05,1.90919329824679e-05,-7.84798851426182e-06,2.93758073421912e-11,4.52859971744601e-10,2.33601864588206e-05,-5.31231959463585e-10,2.50884382713146e-09,6.75826582197114e-09,-9.82287168271866e-10,1.40122288772026e-09,1.02522157430229e-09 +3.5,-2.13548003212419e-06,-1.55501619894527e-06,1.56541557093728e-06,4.0033630577252e-10,1.98364563663844e-09,0.0799988418105988,-2.88443715527192e-09,1.93174382739913e-09,7.4805526356636e-10,2.83106871279415e-11,4.52310064402716e-10,-1.03458908107257e-09,-0.00425498440065449,-0.00235351873645144,0.00298909420262324,9.54097911787243e-11,2.05131051034257e-10,0.00111227076420722 +3.502,-8.93540020923886e-09,1.02428422271705e-08,3.25347792803909e-09,4.00445711312702e-10,1.98487751235099e-09,0.0799999948718545,5.57397993863548e-06,9.67785803666215e-06,4.10838829623117e-06,2.97574465069061e-11,4.53680495948738e-10,2.78092695156495e-05,7.11309808797133e-09,-1.92857882441721e-09,5.05671893247239e-10,9.53230550049255e-10,2.2811613709095e-10,3.06438902031303e-09 +3.504,-2.11318411236965e-06,-1.51630476679862e-06,1.58184912412221e-06,4.00455335558547e-10,1.98546035862224e-09,0.0799989530476769,-2.85598476292004e-09,1.92402951210146e-09,7.50077951139349e-10,3.21236093281385e-11,4.5322252895108e-10,-1.02233152499131e-09,0.00155552226514029,0.000718577927412768,-0.00219111468920986,1.4281111015979e-09,1.64798730217797e-11,-0.00311419344825591 +3.506,-8.94682414829054e-09,1.02505383452189e-08,3.25647823984365e-09,4.00574205750015e-10,1.9866904024668e-09,0.0799999948677651,1.17960689991967e-05,1.25521697463132e-05,-4.65607046060828e-06,3.54698909132977e-11,4.53746415440825e-10,1.53524957226259e-05,7.90551435078667e-09,-3.93803913090185e-09,-3.45383444066982e-09,1.60418553440955e-09,-6.34041430469522e-10,2.8865798640254e-09 +3.508,-2.06599983637286e-06,-1.46609608781337e-06,1.56322484227978e-06,4.005972151222e-10,1.987275344284e-09,0.0799990144576598,-2.82436270551689e-09,1.90827735557786e-09,7.3626261337667e-10,3.85403514657767e-11,4.50686363229202e-10,-1.01078520553521e-09,-0.00171033800354858,-0.00190571966258816,0.000199880500822632,1.61676227961038e-09,-1.12843762112291e-09,-0.00212261381474926 +3.51,-8.95812159911261e-09,1.02581714546413e-08,3.25942329029716e-09,4.00728367155878e-10,1.98849314791971e-09,0.079999994863722,4.95471698500234e-06,4.92929109596057e-06,-3.85654845731775e-06,4.19369400317393e-11,4.49232664956333e-10,6.86204046362881e-06,6.09514066822469e-09,-4.41161863984351e-09,-5.46958311975487e-09,1.60375185354056e-09,-1.20216336885193e-09,2.17968004756486e-09 +3.512,-2.04618096843285e-06,-1.44637892342953e-06,1.5477986484505e-06,4.00764962882327e-10,1.98907227494383e-09,0.0799990419058216,-2.79998214284399e-09,1.89063088101848e-09,7.1438428089765e-10,4.49553588799389e-11,4.45877709753794e-10,-1.00206648534495e-09,-8.77342583348663e-06,-0.000476138716995477,-0.000702205205441174,1.52005144582467e-09,-1.23035262533655e-09,-0.00138610132573158 +3.514,-8.96932152768398e-09,1.02657339781653e-08,3.26228082742075e-09,4.00908188591398e-10,1.99027665875873e-09,0.0799999948597137,4.91962328166839e-06,3.02473622797866e-06,-6.66536927908245e-06,4.8017145815038e-11,4.44311254454987e-10,1.31763516070249e-06,4.00534098075888e-09,-3.92914867308746e-09,-5.81327520843277e-09,1.37823780166357e-09,-1.31578775652841e-09,1.23512311489549e-09 +3.516,-2.02650247530618e-06,-1.43427997851761e-06,1.52113717133417e-06,4.00957031465587e-10,1.99084951996165e-09,0.0799990471763622,-2.78396077892096e-09,1.87491428632613e-09,6.91131180063919e-10,5.04683100865932e-11,4.40614558727681e-10,-9.97125992885372e-10,-0.000704001429363813,-0.000692512186050569,0.000291261048482663,1.21734219926672e-09,-1.37433467384262e-09,-0.000632910619746684 +3.518,-8.98045737079967e-09,1.02732336353106e-08,3.265045352141e-09,4.01110061831744e-10,1.99203911699364e-09,0.0799999948557252,2.10361756421313e-06,2.54687483776383e-07,-5.5003250851518e-06,5.28865146121049e-11,4.38813915759617e-10,-1.21400731828425e-06,2.39120789141678e-09,-2.84646438364344e-09,-5.01356768600747e-09,1.08506953422349e-09,-1.14621853675166e-09,6.2970462177958e-10 +3.52,-2.01808800504933e-06,-1.43326122858251e-06,1.49913587099357e-06,4.01168577524036e-10,1.99260477562468e-09,0.079999042320333,-2.77439594735529e-09,1.86352842879156e-09,6.71076909319889e-10,5.48085882234872e-11,4.36029684580674e-10,-9.94607174398253e-10,-0.000179496729627157,-0.000124979402478173,0.000246908226936987,9.15500314446758e-10,-1.0013691265076e-09,-0.000191927879839015 +3.522,-8.99155495458909e-09,1.02806877490258e-08,3.26772965977828e-09,4.01329296184638e-10,1.99378323573196e-09,0.0799999948517468,1.38563064570451e-06,-2.45230126136309e-07,-4.51269217740385e-06,5.65485158698919e-11,4.34808439253586e-10,-1.98171883764031e-06,1.224660563931e-09,-1.57361103314546e-09,-3.55076211489002e-09,7.48099499014997e-10,-7.76722436368615e-10,1.72604985859692e-10 +3.524,-2.01254548246651e-06,-1.43424214908705e-06,1.48108510228395e-06,4.01394771587515e-10,1.9943440093817e-09,0.0799990343934576,-2.76949730509956e-09,1.85723398465898e-09,6.56873860860329e-10,5.78009862195472e-11,4.329227948352e-10,-9.93916754454815e-10,-0.00030098233069287,-0.000128757128006404,0.000514450378781213,5.66387214906427e-10,-6.57893878264203e-10,2.37089905000265e-05 +3.526,-9.00263294380949e-09,1.02881166849644e-08,3.27035715522173e-09,4.01560500129516e-10,1.9955149269113e-09,0.0799999948477711,1.81701322933027e-07,-7.60258638161925e-07,-2.45489066227899e-06,5.88140647295176e-11,4.3217686374053e-10,-1.8868828756402e-06,3.14174684531987e-10,-3.33500588256541e-10,-1.7800431267867e-09,4.19369400317393e-10,-3.963843142607e-10,-1.83013326715553e-10 +3.528,-2.01181867717478e-06,-1.4372831836397e-06,1.47126553963484e-06,4.01630027846434e-10,1.99607271683666e-09,0.0799990268459261,-2.76824060636144e-09,1.85589998230595e-09,6.49753688353182e-10,5.94784638208167e-11,4.31337257578157e-10,-9.94648807761677e-10,-0.000115480327692952,1.86976495484409e-05,0.000410441585016116,2.48065457064683e-10,-2.34187669256869e-10,0.000108710047908023 +3.53,-9.01370590623493e-09,1.02955402848937e-08,3.27295616997514e-09,4.017984139848e-10,1.99724027594161e-09,0.0799999948437925,-2.80219987838781e-07,-6.85468039968162e-07,-8.1312432221453e-07,5.98063265577763e-11,4.31240113063502e-10,-1.45204268400811e-06,-4.24980146560005e-10,7.27065976868779e-10,-1.60245081093357e-10,8.93382590128055e-11,1.43114686768086e-11,-3.99853761212654e-10 +3.532,-2.01293955712613e-06,-1.44002505579957e-06,1.46801304234598e-06,4.01869253152665e-10,1.99779767728891e-09,0.0799990210377554,-2.76994052694768e-09,1.85880824621343e-09,6.49112708028809e-10,5.9835816856868e-11,4.31394503452864e-10,-9.96248222806528e-10,0.060879467925185,0.0446700777236019,-0.0430133339278468,3.91396984267266e-09,4.27826177262778e-09,0.0556526074746779 +3.534,-9.02478566834272e-09,1.03029755178785e-08,3.27555262080725e-09,4.02037757252227e-10,1.99896585395543e-09,0.0799999948398075,0.000243237651712902,0.00017799484285444,-0.000172866460033602,7.5462205928467e-11,4.48353160154013e-10,0.000221158387214704,4.50242057178917e-08,-3.1143707404646e-08,-1.89212794737825e-08,4.23706209007334e-09,-6.96578211778486e-09,1.85866946833535e-08 +3.536,-1.03998895027452e-06,-7.28045684381812e-07,7.76547202211569e-07,4.02171101976379e-10,1.99959108992953e-09,0.0799999056713042,-2.58984370407611e-09,1.73423341659484e-09,5.73427590133679e-10,7.67840652171613e-11,4.03531374981725e-10,-9.21901444073114e-10,-0.167079078128784,-0.121361895135015,0.118404032938739,-3.89835733138887e-09,-2.25258180164278e-08,-0.137111531701289 +3.538,-9.03514504315903e-09,1.03099124515449e-08,3.27784633116779e-09,4.02344893513096e-10,2.00057997945535e-09,0.0799999948361199,-0.000425078660802233,-0.00030745273768562,0.000300749671721355,5.98687766029115e-11,3.58249888088302e-10,-0.000327287739590454,-4.60651482236951e-08,3.43945791986266e-08,1.72247199142772e-08,-3.63207727782643e-09,7.24116946959618e-09,-2.14290390987415e-08 +3.54,-2.74030359348346e-06,-1.95785663512429e-06,1.97954588909699e-06,4.0241057708279e-10,2.00102408948188e-09,0.0799985965203459,-2.77410429697089e-09,1.87181173338935e-09,6.42326469790788e-10,6.22557561058556e-11,4.32496052860109e-10,-1.00761760046808e-09,0.165784309053544,0.118490446784003,-0.118460637381877,2.0643209364124e-10,2.85440074354603e-08,0.102464919833622 +3.542,-9.04624146034691e-09,1.03173996984784e-08,3.28041563704695e-09,4.02593916537519e-10,2.00230996366679e-09,0.0799999948320895,0.000238058575411943,0.00016650904945039,-0.000173092877806154,6.06945049774765e-11,4.72425917830143e-10,8.2571939744036e-05,-1.38716078554313e-08,8.05822422678126e-09,9.8796838765569e-09,-3.13160955500713e-09,1.9212062496443e-09,-3.95430216348913e-09 +3.544,-1.78806929183569e-06,-1.29182043732273e-06,1.28717437787237e-06,4.026533551027e-10,2.0029137931532e-09,0.0799989268081049,-2.82959072839261e-09,1.90404463029647e-09,6.81845205297015e-10,4.97293178858271e-11,4.40180877858686e-10,-1.02343480912204e-09,-0.0877540599189041,-0.062103238791973,0.0648401868436325,-4.21494436575464e-09,-1.14253224936522e-08,-0.0214084413434692 +3.546,-9.05755982326048e-09,1.03250158769996e-08,3.28314301786814e-09,4.02792833809063e-10,2.00407068717823e-09,0.0799999948279957,-0.000112957664263674,-8.19039057175022e-05,8.62678695683765e-05,4.38347275144579e-11,4.26724627855534e-10,-3.06182562984092e-06,-3.27499529231834e-09,3.49806988930723e-09,6.13159696627452e-09,-1.29713947916165e-09,1.2563734774762e-09,-5.56846235788555e-10 +3.548,-2.23989994889038e-06,-1.61943606019274e-06,1.63224585614588e-06,4.02828694012758e-10,2.00462069166463e-09,0.0799989145608023,-2.84269070956189e-09,1.9180369098537e-09,7.06371593162113e-10,4.45407599691805e-11,4.45206371768591e-10,-1.02566219406519e-09,0.0444732965325421,0.0330792533779263,-0.0322386788545285,3.5301622736128e-10,7.26588927912884e-09,0.00475784083832364 +3.55,-9.06893058609873e-09,1.0332688024639e-08,3.28596850424079e-09,4.02970996848939e-10,2.0058515126653e-09,0.0799999948238931,6.49355218664947e-05,5.04131077942032e-05,-4.26868458497375e-05,4.5246792423903e-11,4.5578818497205e-10,1.59695377234537e-05,1.44304598652389e-09,9.68409380464052e-10,2.86858210796215e-09,-1.63497687610814e-10,7.43762690325055e-10,7.74554032023644e-10 +3.552,-1.9801578614244e-06,-1.41778362901593e-06,1.46149847274693e-06,4.03009681182454e-10,2.00644384440452e-09,0.0799989784389532,-2.83691852561579e-09,1.92191054737556e-09,7.17845921593962e-10,4.38867692187372e-11,4.48181422529891e-10,-1.0225639779371e-09,-0.0228916568086848,-0.0167552544096116,0.0164119981457041,-3.72098185597025e-10,-2.77599124243188e-09,-0.00200670348046716 +3.554,-9.08027826020119e-09,1.03403756668285e-08,3.28883988792716e-09,4.03146543925814e-10,2.00764423835542e-09,0.0799999948198028,-2.66311053682445e-05,-1.66079098442434e-05,2.2961146733079e-05,4.37583996815149e-11,4.44684220002322e-10,7.942723801585e-06,2.64100807195744e-09,-5.55328352747075e-10,3.76001313417973e-10,3.20490162186715e-10,1.61762964134837e-10,9.88792381306779e-10 +3.556,-2.08668228289738e-06,-1.4842152683929e-06,1.55334305967925e-06,4.0318471478118e-10,2.00822258128452e-09,0.0799990102098484,-2.82635449332796e-09,1.91968923396457e-09,7.19349926847634e-10,4.51687298674841e-11,4.48828474386431e-10,-1.01860880841187e-09,0.0112856199305222,0.00780445724908074,-0.00897629013349789,6.97358837342676e-10,1.5933435126847e-09,-0.000882246539712915 +3.558,-9.0915836781745e-09,1.03480544237644e-08,3.29171728763455e-09,4.03327218845284e-10,2.00943955225297e-09,0.0799999948157284,1.85113743538445e-05,1.46099191520796e-05,-1.29440138009126e-05,4.65478350308856e-11,4.51057594053061e-10,4.41373764273334e-06,2.2800500636827e-09,-1.29800684089964e-09,-1.29280267047171e-09,4.92661467177413e-10,-2.53269627492614e-10,7.23379689482328e-10 +3.56,-2.012636785482e-06,-1.42577559178458e-06,1.5015670044756e-06,4.03370906121303e-10,2.01002681166074e-09,0.079999027864799,-2.81723429307323e-09,1.91449720660097e-09,7.14178716165747e-10,4.71393757361937e-11,4.4781539587646e-10,-1.01571528965394e-09,-0.00605509896300297,-0.0046229920167614,0.00406697794842411,3.89879101225785e-10,-1.19392343234104e-09,-0.000777360208321918 +3.562,-9.1028526153468e-09,1.03557124125908e-08,3.29457400249922e-09,4.03515776348229e-10,2.01123081383647e-09,0.0799999948116655,-5.7090214981674e-06,-3.88204891496602e-06,3.32389799278382e-06,4.81073514357888e-11,4.46281900323697e-10,1.30429680944566e-06,1.5772702154776e-09,-1.48535697630514e-09,-2.14021508848638e-09,5.43402128849733e-10,-4.58834359395865e-10,5.01335084557297e-10 +3.564,-2.03547287147467e-06,-1.44130378744445e-06,1.51486259644673e-06,4.03563335527046e-10,2.01181193926203e-09,0.0799990330819862,-2.81092521221132e-09,1.90855577869575e-09,7.05617855811801e-10,4.93129842515927e-11,4.45980058438877e-10,-1.01370994931571e-09,0.00278720595049491,0.00185478221800469,-0.00230959986378953,5.88071258356137e-10,-8.06646416329215e-11,-0.000391562272189504 +3.566,-9.11409631619564e-09,1.03633466357056e-08,3.29739647392246e-09,4.03713028285235e-10,2.01301473407023e-09,0.0799999948076107,5.43980230381223e-06,3.53707995705277e-06,-5.91450146237432e-06,5.04596364692133e-11,4.45959241757165e-10,-2.61952279312361e-07,9.84509782725461e-10,-1.22840106142608e-09,-2.33515463909928e-09,5.00034041950314e-10,-4.83554168928535e-10,1.94289029309402e-10 +3.568,-2.01371366225942e-06,-1.42715546761624e-06,1.49120459059723e-06,4.03765174072923e-10,2.01359577622906e-09,0.0799990320341771,-2.80698717308042e-09,1.90364217445005e-09,6.96277237255404e-10,5.13131204193939e-11,4.44045841763163e-10,-1.01293279319847e-09,-0.00165036631897489,-0.00122063162420575,0.00119755471251342,4.44956571588051e-10,-7.18175519054398e-10,-0.000173428680270981 +3.57,-9.12532426488796e-09,1.03709612044034e-08,3.30018158287149e-09,4.03918280766913e-10,2.01479091743728e-09,0.079999994803559,-1.16166297208734e-06,-1.34544653977026e-06,-1.12428261232061e-06,5.22394627555655e-11,4.43086539680948e-10,-9.55667000396287e-07,5.15348397636672e-10,-7.71735106375181e-10,-1.98669206086244e-09,4.41487124636097e-10,-4.49293380277993e-10,-8.67361737988403e-12 +3.572,-2.01836031414777e-06,-1.43253725377532e-06,1.48670746014795e-06,4.03974131923945e-10,2.01536812238778e-09,0.0799990282115091,-2.80492577948987e-09,1.90055523402455e-09,6.88330469011955e-10,5.30790689179383e-11,4.42248668242051e-10,-1.01296748766799e-09,0.000639426527107881,0.000476404836153437,-0.000376680985448435,4.07226335985555e-10,-2.48065457064683e-10,-5.03347667366038e-05 +3.574,-9.13654396800592e-09,1.03785634253395e-08,3.30293490474753e-09,4.04130597042585e-10,2.01655991211025e-09,0.0799999947995071,1.39604313634418e-06,5.60172804843495e-07,-2.63100655411435e-06,5.38683680995077e-11,4.42094277852689e-10,-1.1570060673427e-06,1.08637057683047e-10,-1.22948526359856e-10,-1.32250980999782e-09,3.42607886505419e-10,-2.1467203015213e-10,-1.66533453693773e-10 +3.576,-2.0127761416024e-06,-1.43029656255594e-06,1.47618343393149e-06,4.04189605396343e-10,2.01713649949919e-09,0.0799990235834849,-2.80449123125914e-09,1.90006343991911e-09,6.83040429771963e-10,5.444950046396e-11,4.41389980121442e-10,-1.01363362148277e-09,-0.000480187633308381,-0.000309442992930952,0.000501458307386806,2.60642202265513e-10,-2.51968584885631e-10,8.62089132719345e-06 +3.578,-9.14776193293096e-09,1.03861636790992e-08,3.30566706646662e-09,4.0434839504444e-10,2.01832547203074e-09,0.0799999947954526,-5.2470739688934e-07,-6.77599166880315e-07,-6.25173324567129e-07,5.49109369085698e-11,4.41086403513146e-10,-1.12252250203393e-06,-2.90647497389051e-10,4.3303034769071e-10,-5.88288098790634e-10,2.06865774510232e-10,-6.28837260041592e-11,-3.21791204793697e-10 +3.58,-2.01487497118995e-06,-1.43300695922347e-06,1.47368274063323e-06,4.04409249143978e-10,2.01890084511325e-09,0.0799990190933949,-2.8056538212487e-09,1.90179556130987e-09,6.80687277376801e-10,5.52769635620009e-11,4.41138445217426e-10,-1.01492078630194e-09,0.00013459366376956,0.000132968075135589,4.73839474601777e-05,1.4658413372004e-10,6.0281640790194e-11,3.99860977662313e-05 +3.582,-9.15898454821595e-09,1.03937708613444e-08,3.30838981557613e-09,4.04569502898688e-10,2.02009002581161e-09,0.0799999947913929,1.36672581889027e-08,-1.45726866337958e-07,-4.35637534726418e-07,5.549727344345e-11,4.41327530076307e-10,-9.62578110969003e-07,-6.38893235269357e-10,9.22222367969005e-10,1.25550611592743e-10,8.32667268484312e-11,8.63024929420987e-11,-4.40619762926284e-10 +3.584,-2.0148203021572e-06,-1.43358986668882e-06,1.47194019049432e-06,4.04631238237751e-10,2.02066615523355e-09,0.0799990152430824,-2.80820939418977e-09,1.90548445078175e-09,6.81189479823172e-10,5.56100304693946e-11,4.41483655189194e-10,-1.01668326535365e-09,-0.00012649772898546,-6.01964951409888e-05,0.000206887682766716,1.69135538907757e-11,1.22298005056378e-10,5.75358181237392e-05 +3.586,-9.17021738579271e-09,1.04013927991475e-08,3.31111457349542e-09,4.04791943020566e-10,2.02185596043236e-09,0.0799999947873261,-4.92323657752882e-07,-3.86512846901887e-07,3.91913196340354e-07,5.55649276590131e-11,4.41816722096533e-10,-7.32434838474071e-07,-8.88368155002348e-10,1.25420507307839e-09,6.37944558271549e-10,-3.25260651761096e-11,2.51968584873378e-10,-4.84855211507341e-10 +3.588,-2.01678959678821e-06,-1.43513591807642e-06,1.47350784327968e-06,4.04853497948388e-10,2.02243342212194e-09,0.0799990123133431,-2.81176286680978e-09,1.91050127107406e-09,6.83741258056258e-10,5.54799262086902e-11,4.42491529528688e-10,-1.01862268619968e-09,5.21387759626779e-05,6.21736878560901e-05,3.24091554374655e-05,-6.63531729561128e-11,2.77122075287295e-10,6.42219801644249e-05 +3.59,-9.18146443725995e-09,1.04090348042318e-08,3.31384953852765e-09,4.05013862725401e-10,2.02362592655048e-09,0.0799999947832516,-2.83768553902171e-07,-1.37818095477526e-07,5.21549818090216e-07,5.52995149671886e-11,4.42925210397682e-10,-4.75546917816371e-07,-1.03096784581647e-09,1.36826314167671e-09,9.4087064528292e-10,-9.28077059647591e-11,2.65846372693445e-10,-5.25621213220972e-10 +3.592,-2.01792467100382e-06,-1.43568719045833e-06,1.47559404255204e-06,4.05074696008256e-10,2.02420512296353e-09,0.0799990104111554,-2.81588673819305e-09,1.91597432364077e-09,6.8750474063739e-10,5.51086953848312e-11,4.43554915019461e-10,-1.02072517105256e-09,-3.83762935166932e-06,1.56494400771478e-05,3.07258936176057e-05,-1.14925430283463e-10,2.91433543964103e-10,5.99907224591022e-05 +3.594,-9.19272798421272e-09,1.04166987015264e-08,3.3165995574902e-09,4.0523429750694e-10,2.02540014621055e-09,0.0799999947791687,-2.99119071308848e-07,-7.5220335168935e-08,6.44453392560639e-07,5.48398132460548e-11,4.44090944573538e-10,-2.35584027979962e-07,-1.05335662067829e-09,1.35113274735143e-09,1.02522157430229e-09,-1.35742111995183e-10,2.97938756999016e-10,-4.79651041107587e-10 +3.596,-2.01912114728905e-06,-1.43598807179901e-06,1.47817185612228e-06,4.05294055261241e-10,2.02598148674182e-09,0.0799990094688193,-2.82010016467576e-09,1.92137885463017e-09,6.91605626934599e-10,5.45657269368504e-11,4.44746670047457e-10,-1.02264377521699e-09,4.39391124125356e-05,4.37973108301236e-05,-3.85624253883276e-05,-1.35742111995183e-10,2.90132501357121e-10,4.67077617902211e-05 +3.598,-9.20400838487143e-09,1.04243842169449e-08,3.31936597999793e-09,4.05452560414687e-10,2.02717913289074e-09,0.0799999947750782,-1.23362621658705e-07,9.99689081515597e-08,4.90203691007329e-07,5.4296844798074e-11,4.45251474578967e-10,-4.87529808190778e-08,-9.85051883811704e-10,1.24054412575791e-09,9.60386284387659e-10,-1.196959198424e-10,3.10949183068842e-10,-4.9960036108132e-10 +3.6,-2.01961459777569e-06,-1.4355881961664e-06,1.48013267088631e-06,4.05511242640433e-10,2.02776249264014e-09,0.0799990092738073,-2.82404037221101e-09,1.9263410311332e-09,6.95447172072149e-10,5.40869432574808e-11,4.45990466779733e-10,-1.02464217666132e-09,2.4372342767023e-05,2.36994521229938e-05,-4.66126831143859e-05,-1.03649727689614e-10,2.94035629178069e-10,2.83529120320702e-05 +3.602,-9.21530454636027e-09,1.04320895810694e-08,3.32214776868622e-09,4.05668908187717e-10,2.02896309475786e-09,0.0799999947709796,-2.58732505906134e-08,1.94766716643535e-07,3.03752958549785e-07,5.38822458873156e-11,4.46427617095679e-10,6.46586673092031e-08,-8.68988041247131e-10,1.06013288425633e-09,7.97972798949331e-10,-9.15066633577765e-11,2.25080371007991e-10,-4.15466272496445e-10 +3.604,-2.01971809077805e-06,-1.43480912929983e-06,1.48134768272051e-06,4.05726771623982e-10,2.02954820310852e-09,0.079999009532442,-2.827516324376e-09,1.93058156267023e-09,6.98639063267947e-10,5.37209166040497e-11,4.46890788263765e-10,-1.0263040417513e-09,2.77901841079161e-05,2.09456894103427e-05,-5.93388146778727e-05,-7.71951946809679e-11,2.33753988387875e-10,9.54433927724539e-06 +3.606,-9.22661461165777e-09,1.04398119073201e-08,3.3249423249393e-09,4.05883791854134e-10,2.03075065791092e-09,0.0799999947668744,8.52874858410512e-08,2.78549474284906e-07,6.63976998382942e-08,5.35734651085917e-11,4.4736263304923e-10,1.02836024418185e-07,-7.45117943040662e-10,8.75167993630298e-10,5.77446077065779e-10,-6.59194920871186e-11,2.07299455379228e-10,-3.38271077815477e-10 +3.608,-2.01937694083469e-06,-1.43369493140269e-06,1.48161327351987e-06,4.05941065484416e-10,2.03133765364072e-09,0.0799990099437861,-2.83049679614816e-09,1.93408223464475e-09,7.0094884757621e-10,5.34572386357012e-11,4.47719986085282e-10,-1.02765712606256e-09,1.31430847379477e-05,6.55945220015552e-06,-4.84739043609544e-05,-4.77048955893621e-11,1.65232411086791e-10,-6.04921841784732e-06 +3.61,-9.23793659884237e-09,1.04475482362587e-08,3.3277461203296e-09,4.06097620808676e-10,2.03254153785526e-09,0.0799999947627638,1.37859824792842e-07,3.04787283085528e-07,-1.27497917605523e-07,5.33826455262342e-11,4.48023562693578e-10,7.86391507467953e-08,-5.63053293226034e-10,6.95840954301196e-10,3.98986399474665e-10,-2.64545330086463e-11,1.44415729375069e-10,-3.81639164714897e-10 +3.612,-2.01882550153552e-06,-1.43247578227035e-06,1.48110328184944e-06,4.06154596066521e-10,2.03312974789149e-09,0.0799990102583427,-2.83274900932106e-09,1.93686559846195e-09,7.02544793174108e-10,5.33514205036667e-11,4.48297649002782e-10,-1.02918368272142e-09,6.64446061647734e-05,3.55899459208996e-05,-9.14063323729368e-05,-2.51534904016637e-11,1.31405303305243e-10,-1.3346351801502e-05 +3.614,-9.24926759487965e-09,1.04552956986526e-08,3.3305562995023e-09,4.06311026490691e-10,2.03433472845127e-09,0.079999994758647,4.03638249451936e-07,4.47147066769126e-07,-4.93123247097271e-07,5.32820315646276e-11,4.48549183906799e-10,2.52537435407873e-08,-4.19179664937208e-10,6.21247844834194e-10,2.98589278302508e-10,-4.25007251614317e-11,9.84455572616837e-11,-2.83627288322208e-10 +3.616,-2.01721094853771e-06,-1.43068719400327e-06,1.47913078886105e-06,4.0636772419278e-10,2.03492394462712e-09,0.0799990103593577,-2.83442572798081e-09,1.93935058984129e-09,7.03739150287319e-10,5.31814176030209e-11,4.48691431231829e-10,-1.03031819187471e-09,-0.000128431076456279,-0.000105497686541528,7.31274069076803e-05,-5.07406616723216e-11,8.76035355368287e-11,-8.8838559772486e-05 +3.618,-9.26060529779157e-09,1.04630531010119e-08,3.33337125610345e-09,4.06523752161103e-10,2.0361294941762e-09,0.0799999947545258,-1.10086056373179e-07,2.51563206030147e-08,-2.0061361946655e-07,5.30790689179383e-11,4.48899598048946e-10,-3.30100495549157e-07,-5.75440303046681e-10,6.63748569995625e-10,3.01841884819964e-10,-4.7271214720368e-11,1.28369537222284e-10,-3.72965547335013e-10 +3.62,-2.0176512927632e-06,-1.43058656872086e-06,1.47832833438319e-06,4.06580040468452e-10,2.03671954301932e-09,0.0799990090389557,-2.836727489193e-09,1.94200558412127e-09,7.04946517826598e-10,5.29923327441395e-11,4.49204909380718e-10,-1.03181005406405e-09,5.47788250307087e-05,4.04080456161553e-05,-3.71095619511318e-05,-4.38017677684143e-11,1.18828558104411e-10,2.49740800956077e-05 +3.622,-9.27195220774835e-09,1.04708211233484e-08,3.33619104217475e-09,4.0673572149208e-10,2.03792631381372e-09,0.0799999947503985,1.09029243749656e-07,1.86788503067636e-07,-3.49051867271077e-07,5.29038618468646e-11,4.49374912281364e-10,-2.30204175166726e-07,-6.30653298680505e-10,6.72205346941012e-10,3.2981430087009e-10,-3.03576608295941e-11,8.89045781438113e-11,-3.59955121265187e-10 +3.624,-2.0172151757882e-06,-1.42983941470859e-06,1.4769321269141e-06,4.06791655915839e-10,2.03851704266844e-09,0.079999008118139,-2.83925010238772e-09,1.94469440550904e-09,7.06265775030079e-10,5.28709021008211e-11,4.49560527693293e-10,-1.03324987454911e-09,-3.04546054173682e-05,-1.48719385330981e-05,3.36636885901742e-05,-1.86482773667507e-11,1.23599047663347e-10,1.21616805168201e-05 +3.626,-9.2833092081579e-09,1.04785999009704e-08,3.33901610527487e-09,4.06947205100483e-10,2.03972455592449e-09,0.0799999947462655,-1.27891779198169e-08,1.27300748935244e-07,-2.1439711291038e-07,5.28292687373976e-11,4.49869308472017e-10,-1.81557453099446e-07,-6.45777918986678e-10,7.05381933419069e-10,3.03576608295941e-10,-2.21177243187043e-11,1.53523027623947e-10,-3.86843335142828e-10 +3.628,-2.01726633249988e-06,-1.42933021171285e-06,1.47607453846246e-06,4.07002972990789e-10,2.04031651990233e-09,0.0799990073919092,-2.84183321406367e-09,1.94751593324271e-09,7.07480081463263e-10,5.27824312035463e-11,4.50174619803789e-10,-1.03479724788968e-09,1.35441323141725e-05,1.49484819054329e-05,1.92112471764094e-06,-1.73472347597681e-11,1.43982048506075e-10,7.59139105743766e-06 +3.63,-9.29467654101415e-09,1.04863899647034e-08,3.34184602560073e-09,4.07158334825297e-10,2.04152525440371e-09,0.0799999947421263,4.13873513368731e-08,1.87094676556976e-07,-2.06712614039817e-07,5.27598797983586e-11,4.50445236666041e-10,-1.51191888869695e-07,-6.59764127011741e-10,7.52219467270442e-10,3.13551268282808e-10,4.33680868994201e-12,1.57426155444895e-10,-3.22658566531686e-10 +3.632,-2.01710078309453e-06,-1.42858183300662e-06,1.4752476880063e-06,4.07214012509982e-10,2.04211830084899e-09,0.0799990067871416,-2.84447227057172e-09,1.9505248111118e-09,7.08734286536394e-10,5.2799778438306e-11,4.50804324425568e-10,-1.03608788215581e-09,-9.46461225365123e-06,-5.76041124522586e-06,1.56677572391711e-05,1.95156391047391e-11,1.63497687610814e-10,-2.36311230999986e-06 +3.634,-9.30605443009644e-09,1.04941920639479e-08,3.34468096274687e-09,4.0736953393905e-10,2.04332847170141e-09,0.079999994737982,3.52890232226815e-09,1.64053031576072e-07,-1.44041585083132e-07,5.28379423547775e-11,4.51099227416484e-10,-1.60644338109694e-07,-6.65049612602608e-10,7.46798456408015e-10,2.98372437868011e-10,2.03830008427275e-11,1.3010426069826e-10,-4.26741975090294e-10 +3.636,-2.01708666748525e-06,-1.42792562088032e-06,1.47467152166597e-06,4.07425364279401e-10,2.04392269775866e-09,0.0799990061445643,-2.84713246902213e-09,1.95351200493743e-09,7.09927776287866e-10,5.28813104416769e-11,4.51324741468361e-10,-1.03779485005617e-09,2.05752304300102e-06,-1.03366425661943e-06,3.42936573236029e-06,2.73218947466347e-11,1.29670579829266e-10,-8.25334158655043e-06 +3.638,-9.31744295997253e-09,1.05020061119676e-08,3.34752067385202e-09,4.07581059180817e-10,2.04513377066728e-09,0.0799999947338308,1.17589944942722e-08,1.59918374549595e-07,-1.30324122153691e-07,5.29472299337641e-11,4.51617909735802e-10,-1.93657704455896e-07,-6.80201337963093e-10,8.03393809811758e-10,2.62593766175989e-10,3.55618312575245e-11,1.46150452851046e-10,-3.27862736959616e-10 +3.64,-2.01703963150727e-06,-1.42728594738212e-06,1.47415022517736e-06,4.07637153199136e-10,2.0457291693976e-09,0.0799990053699335,-2.84985327437398e-09,1.95672558017668e-09,7.1097815135257e-10,5.3023557766707e-11,4.51909343279766e-10,-1.03910630100401e-09,-3.0866328915545e-06,-6.55906232105429e-06,4.26271865028304e-06,3.12250225675825e-11,1.47451495458028e-10,-1.0479490539228e-05 +3.642,-9.32884237307002e-09,1.05098330142883e-08,3.35036458645743e-09,4.07793153411884e-10,2.0469414080404e-09,0.0799999947296744,-5.87537071945753e-10,1.33682125265377e-07,-1.13273247552559e-07,5.30721300240344e-11,4.52207715717634e-10,-2.35575666612808e-07,-6.94377281368341e-10,8.31149385427387e-10,2.49366499671666e-10,4.64038529823796e-11,1.64365049348802e-10,-3.92047505570758e-10 +3.644,-2.01704198165556e-06,-1.42675121888106e-06,1.47369713218715e-06,4.07849441719232e-10,2.04753800026047e-09,0.0799990044276308,-2.85263078349945e-09,1.96005017771838e-09,7.11975617351256e-10,5.32091731786366e-11,4.52566803477161e-10,-1.04067449102629e-09,6.1412021843711e-07,-4.23225213555533e-06,-1.82534976717052e-07,7.1123662515049e-11,1.50920942409982e-10,-9.94328838016532e-06 +3.646,-9.34025289620402e-09,1.05176732149992e-08,3.35321248892684e-09,4.08005990104598e-10,2.04875167525431e-09,0.0799999947255117,1.86894380180269e-09,1.16753116723156e-07,-1.14003387459427e-07,5.33566246740946e-11,4.52811399487274e-10,-2.75348820133469e-07,-7.01831171304179e-10,8.41774566717745e-10,2.25514051876985e-10,7.06899816460548e-11,1.37043154602168e-10,-3.5822039778921e-10 +3.648,-2.01703450588035e-06,-1.42628420641416e-06,1.47324111863731e-06,4.08062868217929e-10,2.04934924585842e-09,0.0799990033262355,-2.85543810818467e-09,1.96341727598526e-09,7.12877673558764e-10,5.34919331052208e-11,4.5311497609557e-10,-1.04210737261745e-09,-2.39534141219938e-07,-4.18167280316627e-06,-3.15544899237574e-07,6.33174068731534e-11,1.43982048506075e-10,-7.87836636206851e-06 +3.65,-9.35167464863676e-09,1.05255268841031e-08,3.35606399962107e-09,4.08219957837019e-10,2.05056413515869e-09,0.0799999947213432,9.10807236922938e-10,1.00026425510491e-07,-1.15265567056377e-07,5.36098943015872e-11,4.53387327681298e-10,-3.06862285581744e-07,-7.03294844237034e-10,8.58904961043016e-10,2.01227923213309e-10,6.59194920871186e-11,1.14058068545475e-10,-4.11129463806503e-10 +3.652,-2.0170308626514e-06,-1.42588410071212e-06,1.47278005636908e-06,4.08277307795135e-10,2.05116279516915e-09,0.0799990020987864,-2.85825128756162e-09,1.96685289582943e-09,7.13682585251618e-10,5.37556110735693e-11,4.53571208369751e-10,-1.04375189047268e-09,9.16835726262609e-07,-2.18013562931773e-06,-1.31032836490907e-06,7.67615138119736e-11,1.34441069388202e-10,-5.09581786489743e-06 +3.654,-9.36310765378701e-09,1.05333942956864e-08,3.35891872996208e-09,4.08434980281314e-10,2.05237841999217e-09,0.0799999947171682,4.57815014197338e-09,9.130588299322e-08,-1.20506880516014e-07,5.39169403568351e-11,4.53925091958851e-10,-3.27245557041333e-07,-7.03836945323277e-10,8.6606069538142e-10,1.8171228410857e-10,8.19656842399041e-11,1.72171304990698e-10,-3.6949610038306e-10 +3.656,-2.01701255005083e-06,-1.42551887718015e-06,1.47229802884702e-06,4.08492975556562e-10,2.05297849553698e-09,0.0799990007898042,-2.86106663534291e-09,1.97031713861095e-09,7.14409434388052e-10,5.40834738105289e-11,4.54259893589714e-10,-1.04522987487421e-09,7.42155089553802e-07,-9.37465816780446e-07,-1.02875303761851e-06,8.32667268468867e-11,1.44415729375069e-10,-2.08721234740138e-06 +3.658,-9.37455192032838e-09,1.05412755642409e-08,3.36177636769963e-09,4.08651314176556e-10,2.05419545956653e-09,0.0799999947129873,7.54677050018859e-09,8.75560197260982e-08,-1.24621892666488e-07,5.42500072642226e-11,4.54502754876351e-10,-3.35594406430939e-07,-7.04216416083647e-10,8.58904961043016e-10,1.90169061053957e-10,8.71698546678345e-11,1.28369537222284e-10,-3.76434994286967e-10 +3.66,-2.01698236296883e-06,-1.42516865310124e-06,1.47179954127635e-06,4.08709975585619e-10,2.05479650655649e-09,0.0799989994474265,-2.86388350100724e-09,1.97375275845513e-09,7.15170110632268e-10,5.44321532292002e-11,4.54773371738603e-10,-1.04673561485136e-09,1.01376800834205e-06,6.14702733159333e-07,-9.77817002714708e-07,8.1098322501914e-11,1.24466409401336e-10,8.15226358641396e-07 +3.662,-9.38600745433241e-09,1.05491705752747e-08,3.36463704814216e-09,4.08869042789473e-10,2.05601455305349e-09,0.0799999947088004,1.16018425335568e-08,9.00148306587355e-08,-1.28533160677346e-07,5.45744005542303e-11,4.55000620513956e-10,-3.32333500996373e-07,-6.96084899790005e-10,8.69963823202368e-10,1.65882932390282e-10,8.28330459778908e-11,1.32706345912226e-10,-4.09394740330474e-10 +3.664,-2.0169359555987e-06,-1.42480859377861e-06,1.47128540863364e-06,4.08928273187836e-10,2.05661650903854e-09,0.0799989981180925,-2.8666678406064e-09,1.97723261374794e-09,7.15833642361829e-10,5.47634854131118e-11,4.55304197122252e-10,-1.04837319381268e-09,9.18269692055938e-07,1.75203926887357e-06,-6.83201542214795e-07,8.32667268468867e-11,1.40078920685127e-10,3.33391734358422e-06 +3.666,-9.39747412569483e-09,1.05570795057297e-08,3.36750038271161e-09,4.09088096731125e-10,2.05783576984198e-09,0.0799999947046069,1.52749213017805e-08,9.70229877342298e-08,-1.31265966846206e-07,5.49074674616178e-11,4.55560936196697e-10,-3.18997831622036e-07,-7.021022218473e-10,8.65843854946923e-10,2.09467859724199e-10,7.1123662515049e-11,1.37476835471162e-10,-3.83373888190874e-10 +3.668,-2.01687485591349e-06,-1.42442050182767e-06,1.47076034476626e-06,4.09147903057683e-10,2.05843875278333e-09,0.0799989968421012,-2.86947624949379e-09,1.98069598916772e-09,7.16671513800726e-10,5.5047980063172e-11,4.55854104464137e-10,-1.04990668936544e-09,9.18943605021301e-07,2.69904281216537e-06,-5.44312641834188e-07,7.45931094670026e-11,1.57426155444895e-10,5.23418808295872e-06 +3.67,-9.40895203069281e-09,1.05650022896864e-08,3.37036706876681e-09,4.09308288651378e-10,2.05965918625983e-09,0.0799999947004073,1.89506957218657e-08,1.07819158982891e-07,-1.33443217413542e-07,5.52058398994859e-11,4.56190640818476e-10,-2.98061079290201e-07,-6.91612565828503e-10,8.32667268468867e-10,1.8474805019153e-10,7.329206686002e-11,1.56992474575901e-10,-3.43475248243407e-10 +3.672,-2.0167990531306e-06,-1.42398922519174e-06,1.4702265718966e-06,4.09368726417281e-10,2.06026351534661e-09,0.0799989956498569,-2.87224269975711e-09,1.9840266582416e-09,7.17410506001492e-10,5.5341148330612e-11,4.56482074362441e-10,-1.05128059035842e-09,7.97439290165304e-07,3.22816990153129e-06,-4.19282880984022e-07,6.28837260041592e-11,1.24466409401336e-10,6.35739464543982e-06 +3.674,-9.42044100149184e-09,1.05729383963193e-08,3.37323671079082e-09,4.095296532447e-10,2.06148511455728e-09,0.0799999946962021,2.2140452882527e-08,1.20731838589016e-07,-1.35120348937478e-07,5.54573748035025e-11,4.56688506456082e-10,-2.72631500708442e-07,-6.94783857183023e-10,8.55652354525559e-10,2.40259201422788e-10,5.98479599211998e-11,1.32272665043231e-10,-4.25007251614317e-10 +3.676,-2.01671049131907e-06,-1.42350629783738e-06,1.46968609050085e-06,4.09590555916495e-10,2.06209026937243e-09,0.0799989945593309,-2.87502183518584e-09,1.9874492676597e-09,7.18371542807183e-10,5.55805401702968e-11,4.57011165022613e-10,-1.05298061936487e-09,6.64715868068862e-07,3.3905248400523e-06,-3.76045982547479e-07,6.20163642661708e-11,1.60461921527855e-10,6.6514536933848e-06 +3.678,-9.43194108883258e-09,1.058088819339e-08,3.37611019696205e-09,4.09751975405381e-10,2.06331315921737e-09,0.0799999946919902,2.47993163548024e-08,1.34293937949226e-07,-1.36624532867668e-07,5.57054402605672e-11,4.57330354142193e-10,-2.46025685934903e-07,-6.92425717457867e-10,8.28764140647919e-10,2.38741318381308e-10,5.72458747072346e-11,1.4658413372004e-10,-3.5822039778921e-10 +3.68,-2.01661129405365e-06,-1.42296912208559e-06,1.46913959236938e-06,4.09813377677537e-10,2.063919590789e-09,0.0799989935752281,-2.87779153805567e-09,1.99076432422229e-09,7.19326508080708e-10,5.58095236691258e-11,4.57597501557494e-10,-1.05441350095603e-09,4.6714208564759e-07,3.16552665156899e-06,-3.42510958831199e-07,4.29344060304259e-11,1.40946282423115e-10,6.17855679813094e-06 +3.682,-9.4434522549848e-09,1.05888512506869e-08,3.37898750299437e-09,4.09975213500058e-10,2.0651435492236e-09,0.0799999946877726,2.66678846973928e-08,1.46956044555502e-07,-1.37994576702993e-07,5.58771778846889e-11,4.57894139271886e-10,-2.21311458742379e-07,-6.91043359687948e-10,8.23343129785491e-10,2.5652223401007e-10,3.94649590784723e-11,1.49619899802999e-10,-3.71230823859036e-10 +3.684,-2.01650462251486e-06,-1.42238129790737e-06,1.46858761406257e-06,4.10036886389076e-10,2.06575116734609e-09,0.0799989926899823,-2.88055571149442e-09,1.99405769674143e-09,7.20352597016748e-10,5.59673835054397e-11,4.58195981156706e-10,-1.05589842425147e-09,0.0607372724619901,0.0441711249807643,-0.0430179758700594,4.22101589792056e-09,4.17808149189014e-09,0.0572467093364753 +3.686,-9.45497447783078e-09,1.05968274814738e-08,3.38186891338244e-09,4.1019908303408e-10,2.06697633314823e-09,0.079999994683549,0.000242975757732658,0.000176831455967613,-0.000172209898056941,7.27612414763711e-11,4.74606465239446e-10,0.000228765525887159,4.64788526676612e-08,-3.37624893320676e-08,-2.10853470100636e-08,4.76311698416331e-09,-7.38905464592319e-09,1.97446226035679e-08 +3.688,-1.04460159158423e-06,-7.15055474036913e-07,7.79748021834809e-07,4.10327931354981e-10,2.06764959320704e-09,0.0799999077520858,-2.69464030082378e-09,1.85900773941316e-09,6.36011208976494e-10,7.50198514420929e-11,4.28639762573013e-10,-9.76919933837194e-10,-0.16626448258477,-0.120055747495533,0.117118308768597,-3.62166893697057e-09,-2.2886206818562e-08,-0.142327447620084 +3.69,-9.46575303903407e-09,1.06042635124315e-08,3.38441295821834e-09,4.10499162439848e-10,2.06869089219852e-09,0.0799999946796413,-0.000422082172606423,-0.00030339153401452,0.000296263337017446,5.82745657284888e-11,3.83061637965198e-10,-0.000340544264593179,-4.58088699351738e-08,3.50245006608407e-08,1.64657783935373e-08,-3.45209971719384e-09,7.0889474845792e-09,-2.20812951257087e-08 +3.692,-2.73293028200993e-06,-1.92862161009499e-06,1.9648013699046e-06,4.10561029617895e-10,2.0691818397589e-09,0.0799985455750275,-2.87787578056447e-09,1.99910574205653e-09,7.01874322550643e-10,6.12114525733176e-11,4.5699555251133e-10,-1.06524511434003e-09,0.164631339964066,0.116674698454966,-0.117098732827468,4.85722573273506e-10,2.83583920235308e-08,0.107094961671397 +3.694,-9.47726454215633e-09,1.06122599353997e-08,3.38722045550854e-09,4.10744008250141e-10,2.07051887440857e-09,0.0799999946753803,0.000236443187249841,0.000163307259805345,-0.000172131594292427,6.02174560215829e-11,4.96495206059322e-10,8.78355820924103e-05,-1.40449717828117e-08,7.80950824841308e-09,8.66667848598012e-09,-2.85925796927877e-09,1.62760430133524e-09,-4.06792655116561e-09 +3.696,-1.78715753301056e-06,-1.27539257087361e-06,1.27627499273489e-06,4.10801899441982e-10,2.07116782058314e-09,0.0799988969173558,-2.93405566769572e-09,2.03034377505018e-09,7.36541036494564e-10,4.97744206962025e-11,4.63505969716671e-10,-1.08151682054469e-09,-0.0869456402611091,-0.060700847938572,0.0638614907121168,-3.89705628878189e-09,-1.16599438437781e-08,-0.0228558531840256 +3.698,-9.48900076482712e-09,1.06203813104999e-08,3.39016661965452e-09,4.10943105932926e-10,2.07237289828743e-09,0.0799999946710542,-0.000111339373794596,-7.94961319489431e-05,8.33143685560408e-05,4.46292308664553e-11,4.49855430684209e-10,-3.58783064369205e-06,-3.07582735323275e-09,3.02058725254461e-09,4.85093736013464e-09,-9.13331910101787e-10,1.05080874557295e-09,-4.78783679369598e-10 +3.7,-2.23251502818895e-06,-1.59337709866939e-06,1.60953246695905e-06,4.10980416365447e-10,2.07296724230588e-09,0.0799988825660333,-2.94635897710865e-09,2.04242612406036e-09,7.55944785935103e-10,4.61210930557953e-11,4.67709204698962e-10,-1.08343195526217e-09,0.0439080672462335,0.0322581908153689,-0.0314704904408238,7.402932433731e-10,7.01045124729127e-09,0.00498531444164534 +3.702,-9.50078620073555e-09,1.06285510149962e-08,3.39319039879826e-09,4.11127590305149e-10,2.07424373510623e-09,0.0799999946667205,6.42928951903381e-05,4.95366313125328e-05,-4.25675932072544e-05,4.75904038399477e-11,4.77897235673374e-10,1.63534271228893e-05,1.7362684640726e-09,6.18428919185731e-10,1.73060350772133e-09,1.99926880606327e-10,5.70290342727375e-10,8.80372164058229e-10 +3.704,-1.9753434474276e-06,-1.39523057341925e-06,1.43926209413003e-06,4.11170777980807e-10,2.07487883124857e-09,0.0799989479797418,-2.93941390325236e-09,2.0448998397371e-09,7.62867199965988e-10,4.69208005782206e-11,4.69990366069872e-10,-1.07991046660594e-09,-0.0226291215786925,-0.0163975774770519,0.0160945670918226,-1.99493199737333e-11,-2.86186005449274e-09,-0.00220739132094499 +3.706,-9.51254385634856e-09,1.06367306143551e-08,3.39624186759813e-09,4.11315273507462e-10,2.07612369657051e-09,0.0799999946624009,-2.62235911244321e-05,-1.60536785956747e-05,2.18106751600361e-05,4.75106065600527e-11,4.66449795455403e-10,7.52386183910935e-06,2.84551570674252e-09,-7.97755958514833e-10,-4.81168924149066e-10,6.37944558290469e-10,4.03323208164607e-11,1.02001740387436e-09 +3.708,-2.08023781192532e-06,-1.45944528780195e-06,1.52650479477018e-06,4.11360820407047e-10,2.07674463043039e-09,0.0799989780751891,-2.92803184042539e-09,2.04170881590304e-09,7.60942524269392e-10,4.94725788113825e-11,4.70151695353138e-10,-1.07583039699044e-09,0.0110595108889031,0.00750357481856498,-0.00861640785609038,9.423885283244e-10,1.44112152766773e-09,-0.000925236528885596 +3.71,-9.52425598371026e-09,1.06448974496187e-08,3.3992856376952e-09,4.11513163822708e-10,2.07800430335192e-09,0.0799999946580975,1.80144524311804e-05,1.39606206785853e-05,-1.26549562643255e-05,5.12801606733503e-11,4.72214281566074e-10,3.82291572356696e-06,2.34824638033204e-09,-1.33183394868119e-09,-1.82341121368609e-09,7.01695646032618e-10,-2.77989437025283e-10,8.24861012826971e-10 +3.712,-2.0081800022006e-06,-1.40360280508761e-06,1.47588496971288e-06,4.11565941049741e-10,2.07863348755666e-09,0.079998993366852,-2.91863885490406e-09,2.03638148010832e-09,7.53648879414647e-10,5.2279361395513e-11,4.69039737605037e-10,-1.07253095293913e-09,-0.005955548506583,-0.0045116655548235,0.00399652576007006,5.55545193181572e-10,-1.19305607060305e-09,-0.000789479732456187 +3.714,-9.53593053912988e-09,1.06530429755392e-08,3.40230023321286e-09,4.1172228126829e-10,2.07988046230234e-09,0.0799999946538074,-5.80774159515164e-06,-4.08604154070874e-06,3.33114677595475e-06,5.35023414460766e-11,4.67442057283662e-10,6.64996793742211e-07,1.52034960142211e-09,-1.34961486430995e-09,-2.38806370511657e-09,6.56592835657219e-10,-4.7791631763161e-10,4.31946145518225e-10 +3.716,-2.03141096858121e-06,-1.41994697125045e-06,1.4892095568167e-06,4.11779950415525e-10,2.08050325578579e-09,0.0799989960268392,-2.91255745649837e-09,2.03098302065108e-09,7.44096624594181e-10,5.49057327381419e-11,4.6712807233451e-10,-1.07080316835706e-09,0.00272833718272425,0.00179062092649055,-0.00218832162915579,6.73940070416987e-10,-1.04083408558608e-10,-0.000359049649387155 +3.718,-9.54758076895587e-09,1.06611669076218e-08,3.40527661971124e-09,4.11941904199242e-10,2.08174897459168e-09,0.0799999946495242,5.10560713574536e-06,3.07644216525349e-06,-5.4221397406684e-06,5.61981017277446e-11,4.67025723649428e-10,-7.71201803806409e-07,8.41151150468566e-10,-1.02652261690927e-09,-2.31173587217359e-09,5.50341022753642e-10,-4.62303806347819e-10,1.35308431126191e-10 +3.72,-2.01098854003823e-06,-1.40764120258943e-06,1.46752099785402e-06,4.12004742822436e-10,2.08237135868039e-09,0.079998992942032,-2.9091928518965e-09,2.02687693018344e-09,7.34849681105487e-10,5.71070968291564e-11,4.65278857109119e-10,-1.07026193463255e-09,-0.00159948887595569,-0.00115658676299451,0.00116624244224546,4.63604848954801e-10,-6.3794455829047e-10,-0.000123096687357216 +3.722,-9.55921754036346e-09,1.06692744153425e-08,3.40821601843566e-09,4.12170332586559e-10,2.08361009002012e-09,0.0799999946452432,-1.2923483680774e-06,-1.54990488672457e-06,-7.57169971686566e-07,5.80525211235638e-11,4.64473945416266e-10,-1.26358855323527e-06,3.32389281029743e-10,-4.76832115459124e-10,-1.81083446848529e-09,4.62303806347819e-10,-3.50847823016309e-10,-4.85722573273506e-11 +3.724,-2.01615793351054e-06,-1.41384082213633e-06,1.46449231796728e-06,4.1223695290693e-10,2.08422925446206e-09,0.0799989878876778,-2.90786329477238e-09,2.0249696017216e-09,7.27606343231545e-10,5.89563120545477e-11,4.63875465817054e-10,-1.07045622366186e-09,0.00063861054503322,0.000488955713374636,-0.000366141661477595,3.93782229046735e-10,-1.92120624964431e-10,3.28248539460673e-06 +3.726,-9.57084899354255e-09,1.06773742937494e-08,3.41112644380859e-09,4.12406157834777e-10,2.08546559188338e-09,0.0799999946409613,1.26209381205548e-06,4.05917966773972e-07,-2.22173661759695e-06,5.96276500397507e-11,4.63705462916408e-10,-1.25045861165685e-06,-8.38359329874416e-11,1.09721259855533e-10,-1.08528637465799e-09,2.89698820488127e-10,-1.62630325872826e-10,-2.4459601011273e-10 +3.728,-2.01110955826232e-06,-1.41221715026923e-06,1.45560537149689e-06,4.12475463507089e-10,2.08608407631372e-09,0.0799989828858433,-2.90819863850433e-09,2.02540848676103e-09,7.23265197732913e-10,6.01151073365002e-11,4.63224944513562e-10,-1.07143460770231e-09,-0.000451013900488669,-0.000266814212000407,0.00046420298789769,2.30718222304915e-10,-1.37043154602168e-10,5.47442039616762e-05 +3.73,-9.58248178809656e-09,1.06854759276964e-08,3.41401950459952e-09,4.12646618264123e-10,2.08731849166144e-09,0.0799999946366756,-5.41961789899195e-07,-6.61338881227657e-07,-3.64924666006183e-07,6.05505229289704e-11,4.63157290297999e-10,-1.03148179581014e-06,-4.56042538801715e-10,6.45100292628875e-10,-3.05528172206415e-10,1.74339709335669e-10,-8.23993651088983e-12,-3.62557206479152e-10 +3.732,-2.01327740542191e-06,-1.41486250579415e-06,1.45414567283286e-06,4.12717665598805e-10,2.08793670547491e-09,0.0799989787599161,-2.91002280865954e-09,2.02798888793154e-09,7.22043085044088e-10,6.08124661738429e-11,4.63191984767519e-10,-1.07288483652823e-09,0.000143641320273771,0.000152701284993409,2.25622281274651e-05,9.15066633577765e-11,6.6786853825107e-11,7.33552576320794e-05 +3.734,-9.5941218793312e-09,1.06935878832481e-08,3.4169076769397e-09,4.12889868128818e-10,2.08917125960051e-09,0.0799999946323841,3.26034911958886e-08,-5.05337412540218e-08,-2.74675753496323e-07,6.09165495824015e-11,4.634244377133e-10,-7.38060765281822e-07,-7.70135908170765e-10,1.05622975643538e-09,3.49546780409326e-10,2.60208521396521e-11,1.67400815431762e-10,-4.82253126321552e-10 +3.736,-2.01314699145713e-06,-1.41506464075916e-06,1.45304696981888e-06,4.12961331797135e-10,2.08979040322577e-09,0.0799989758076731,-2.91310335229222e-09,2.03221380695728e-09,7.23441272165725e-10,6.09165495824015e-11,4.63861588029246e-10,-1.07481384903352e-09,-0.000113360826422496,-4.03722665107824e-05,0.000174605111835993,-2.90566182226115e-11,2.1987620058006e-10,7.65163835070302e-05 +3.738,-9.60577429274037e-09,1.0701716738476e-08,3.41980144202836e-09,4.13133534327148e-10,2.09102670595263e-09,0.0799999946280848,-4.20839814494096e-07,-2.12022807297152e-07,4.23744693847649e-07,6.08003231095111e-11,4.6430394251562e-10,-4.31995231253701e-07,-9.78194305070733e-10,1.30516257523805e-09,8.05995895025723e-10,-6.85215773010838e-11,2.766883944183e-10,-5.10008701937181e-10 +3.74,-2.0148303507151e-06,-1.41591273198835e-06,1.45474194859427e-06,4.13204533089573e-10,2.09164761899583e-09,0.0799989740796921,-2.9170161295125e-09,2.03743445725823e-09,7.26665255745828e-10,6.06424632731972e-11,4.64968341606919e-10,-1.07685388384127e-09,5.51198667600709e-05,6.81604354121206e-05,1.14656049411687e-05,-1.08853898117545e-10,2.97938756999016e-10,6.98496035317352e-05 +3.742,-9.61744235725842e-09,1.0709866476305e-08,3.42270810305134e-09,4.13376104180241e-10,2.09288657931905e-09,0.0799999946237774,-2.00360347453812e-07,6.06189343513308e-08,4.69607113612324e-07,6.03649075170409e-11,4.65495697543616e-10,-1.5259681712676e-07,-1.08005509917575e-09,1.39970500467878e-09,1.05883184164934e-09,-1.35742111995185e-10,3.06178693509906e-10,-4.97865637605343e-10 +3.744,-2.01563179210492e-06,-1.41567025625094e-06,1.45662037704872e-06,4.13445992719641e-10,2.093509601786e-09,0.0799989734693049,-2.92133634990921e-09,2.04303327727695e-09,7.30900583112425e-10,6.00994948252164e-11,4.66193056380959e-10,-1.07884534639169e-09,-2.86432065132319e-06,1.62515064339868e-05,1.59453899736817e-05,-1.42681005899092e-10,3.17454396103755e-10,5.4973201338293e-05 +3.746,-9.62912770265806e-09,1.07180386094141e-08,3.42563170538379e-09,4.13616502159542e-10,2.09475135154458e-09,0.079999994619462,-2.11817630059105e-07,1.25624960087278e-07,5.33388673507051e-07,5.97941834934445e-11,4.66765515128031e-10,6.72959882264123e-08,-1.07430882766157e-09,1.31426987348693e-09,1.10133256681077e-09,-1.40512601554121e-10,3.04443970033929e-10,-5.4296844798074e-10 +3.748,-2.01647906262516e-06,-1.4151677564106e-06,1.45875393174275e-06,4.13685169453615e-10,2.09537666384652e-09,0.0799989737384888,-2.92563358521985e-09,2.0482903567709e-09,7.35305913379668e-10,5.95374444189999e-11,4.67410832261094e-10,-1.08101722018361e-09,4.0100723360404e-05,3.72739035817137e-05,-4.3241448182546e-05,-1.43982048506075e-10,2.94035629178069e-10,3.45813907023928e-05 +3.75,-9.64083023699894e-09,1.07262317708412e-08,3.42857292903731e-09,4.13854651937218e-10,2.09662099487362e-09,0.0799999946151379,-5.14147366174888e-08,2.74720574414133e-07,3.60422880776867e-07,5.92182552994202e-11,4.67941657644743e-10,2.05621551035984e-07,-9.90499999728444e-10,1.18438245322316e-09,9.74697753064468e-10,-1.64365049348802e-10,3.19622800448726e-10,-4.28476698566271e-10 +3.752,-2.01668472157163e-06,-1.41406887411294e-06,1.46019562326585e-06,4.13922042474812e-10,2.09724843047709e-09,0.079998974560975,-2.92959558521877e-09,2.05302788658379e-09,7.39204704391926e-10,5.88799842216047e-11,4.68689323462889e-10,-1.08273112697788e-09,1.93945307134114e-05,1.45818637112965e-05,-4.48395040715532e-05,-1.43548367637081e-10,3.1788807697275e-10,1.27108740199944e-05 +3.754,-9.65254861933981e-09,1.07344438823875e-08,3.43152974785488e-09,4.14090171874104e-10,2.09849575216747e-09,0.079999994610807,2.61633862361568e-08,3.33048029259319e-07,1.81064864490654e-07,5.86440618288719e-11,4.69213209952634e-10,2.56465047115961e-07,-8.6999092825668e-10,1.00158596694211e-09,8.10115863281168e-10,-9.45424294407359e-11,2.38090797077817e-10,-4.37150315946155e-10 +3.756,-2.01658006802668e-06,-1.4127366819959e-06,1.46091988272382e-06,4.14156618722128e-10,2.0991252833169e-09,0.0799989755868352,-2.93307554893179e-09,2.05703423045156e-09,7.42445167845051e-10,5.85018145038418e-11,4.69641686651201e-10,-1.08447972824166e-09,2.19192792443121e-05,1.04327583898278e-05,-5.24419093220207e-05,-7.89299181569447e-11,1.94289029309402e-10,-6.53116276339016e-06 +3.758,-9.66428092153554e-09,1.07426720193093e-08,3.43449952852626e-09,4.14324179132119e-10,2.10037431891408e-09,0.0799999946064691,1.13840503213405e-07,3.74779062818631e-07,-2.87027727974287e-08,5.83283421562441e-11,4.69990366069872e-10,2.303403960624e-07,-7.54143926126604e-10,8.51315545835617e-10,5.83951290100692e-10,-7.80625564189563e-11,1.91253263226443e-10,-3.98119037736677e-10 +3.76,-2.01612470601383e-06,-1.41123756574463e-06,1.46080507163263e-06,4.14389932090753e-10,2.10100524478118e-09,0.0799989765081968,-2.9360921246363e-09,2.0604394926349e-09,7.44780973005454e-10,5.8189564278166e-11,4.70406699704106e-10,-1.08607220439261e-09,8.11929023363313e-06,-2.95565221603011e-06,-3.96373186009601e-05,-4.7271214720368e-11,1.74773390204663e-10,-2.03088813127694e-05 +3.762,-9.67602529003408e-09,1.07509137772799e-08,3.43747865241828e-09,4.14556937389232e-10,2.10225594571289e-09,0.0799999946021248,1.46317664147938e-07,3.6295645395451e-07,-1.87252047201269e-07,5.81392572973626e-11,4.70689459630691e-10,1.49104870811323e-07,-6.64670141842238e-10,7.4419637119405e-10,4.16767315103428e-10,-1.99493199737333e-11,1.68701858038744e-10,-3.55618312575245e-10 +3.764,-2.01553943535724e-06,-1.40978573992881e-06,1.46005606344382e-06,4.14622489119942e-10,2.10288800261971e-09,0.0799989771046163,-2.93875080520367e-09,2.06341627811968e-09,7.46448042265868e-10,5.8109766998271e-11,4.71081507136261e-10,-1.08749467764291e-09,2.03303712298201e-06,-8.6033977251404e-06,-2.69886391880691e-05,-1.82145964977565e-11,1.67834496300756e-10,-2.75509051336775e-05 +3.766,-9.6877802932549e-09,1.07591674423924e-08,3.44046444458734e-09,4.14789376457225e-10,2.10414027174144e-09,0.0799999945977748,1.54449812639866e-07,3.28542863053949e-07,-2.95206603953546e-07,5.80663989113716e-11,4.71360797615894e-10,3.89012502766128e-08,-6.05797963876275e-10,6.78060038672434e-10,2.62160085306995e-10,-6.50521303491302e-12,1.21864324187371e-10,-3.43475248243407e-10 +3.768,-2.01492163610668e-06,-1.40847156847659e-06,1.45887523702801e-06,4.14854754715588e-10,2.10477344581017e-09,0.0799989772602213,-2.94117399705917e-09,2.06612851827437e-09,7.47496682607095e-10,5.80837461461314e-11,4.71568964433011e-10,-1.08886857863588e-09,-5.63945580771967e-06,-1.35371117527399e-05,-1.09097837101141e-05,1.82145964977565e-11,1.2490009027033e-10,-2.87479588745309e-05 +3.77,-9.69954498924314e-09,1.07674319564655e-08,3.44345443131777e-09,4.1502171144181e-10,2.10602654759917e-09,0.0799999945934193,1.31891989408987e-07,2.74394416042989e-07,-3.38845738794002e-07,5.81392572973626e-11,4.71860397976975e-10,-7.6090585221511e-08,-5.87773102758704e-10,6.6786853825107e-10,1.93421667571414e-10,3.38271077815477e-11,1.18828558104411e-10,-3.55618312575245e-10 +3.772,-2.01439406814904e-06,-1.40737399081242e-06,1.45751985407283e-06,4.15087311744777e-10,2.10666088740208e-09,0.0799989769558589,-2.94352508947021e-09,2.06879999242737e-09,7.48270369277381e-10,5.82190545772576e-11,4.72044278665428e-10,-1.09029105188618e-09,-8.69076612433106e-06,-1.39903351490528e-05,1.45101985982165e-06,3.68628738645071e-11,1.05384451165591e-10,-2.53712884035195e-05 +3.774,-9.71131908960102e-09,1.07757071564352e-08,3.44644751279488e-09,4.15254587660119e-10,2.10791472471383e-09,0.0799999945890582,9.71289249116629e-08,2.18433075446778e-07,-3.33041659354716e-07,5.82867087928207e-11,4.72281935781637e-10,-1.77575738835589e-07,-6.03683769639928e-10,7.00177762991138e-10,1.63931368479808e-10,4.07660016854549e-11,1.196959198424e-10,-3.42607886505419e-10 +3.776,-2.01400555244939e-06,-1.40650025851063e-06,1.45618768743541e-06,4.15320458579949e-10,2.10855001514521e-09,0.079998976245556,-2.94593982454877e-09,2.07160070347934e-09,7.489260947513e-10,5.83821185839994e-11,4.72523062344798e-10,-1.0916614834322e-09,-9.98037964121746e-06,-1.2631203808594e-05,1.03867355254888e-05,4.98732999343332e-11,1.27068494615301e-10,-1.92568478524224e-05 +3.778,-9.72310284889921e-09,1.07839935592491e-08,3.44944321717389e-09,4.15488116134455e-10,2.10980481696321e-09,0.0799999945846915,5.72074063467931e-08,1.67908260212401e-07,-2.9149471725276e-07,5.8486201992558e-11,4.72790209760098e-10,-2.54603130245279e-07,3.34867496145502e-08,-2.66841670287787e-08,-1.43043129424702e-08,2.69359187732298e-09,-5.8408139436139e-09,1.59603233407245e-08 +3.78,-2.01377672282401e-06,-1.40582862546978e-06,1.4550217085664e-06,4.15554403387919e-10,2.11044117598425e-09,0.0799989752271435,-2.81199282609057e-09,1.96486403536422e-09,6.91708842981419e-10,6.91564860932913e-11,4.49159806570342e-10,-1.02782019006931e-09,-0.0199617746151638,-0.0123739984456833,0.0151966192153945,4.37020211685456e-09,-1.11815938452775e-08,-0.0230965584947437 +3.782,-9.73435082020357e-09,1.07918530153905e-08,3.45221005254581e-09,4.15764742078828e-10,2.11160145618949e-09,0.0799999945805803,-7.97898910543086e-05,-4.93280855225208e-05,6.04949821443254e-05,7.59670104599763e-11,4.28063834378989e-10,-9.26408371092201e-05,-1.69000555737264e-08,1.79890824458795e-08,2.75734296506513e-09,8.46978737145675e-10,3.73789540986102e-09,-1.21170434796979e-08 +3.784,-2.33293628704124e-06,-1.60314096755987e-06,1.6970016371437e-06,4.15858271429759e-10,2.11215343132176e-09,0.079998604663795,-2.87959304838547e-09,2.03682036514774e-09,7.0273821484168e-10,7.2544401041874e-11,4.64111388209787e-10,-1.0762883639881e-09,0.0429564860940335,0.0259287141377798,-0.0342574764738371,-2.318457925643e-09,1.47637978231696e-08,0.0377494847186854 +3.786,-9.74586919239712e-09,1.08000002968511e-08,3.45502100540518e-09,4.16054919682995e-10,2.11345790174233e-09,0.0799999945762751,9.20360533218254e-05,5.43867710285986e-05,-7.65349237510232e-05,6.66931787574043e-11,4.87119025671667e-10,5.83571017655215e-05,-2.49386557411857e-08,1.52180785334409e-08,1.155781199913e-08,-3.85802501057241e-09,2.6849182599431e-09,-9.21918791307873e-09 +3.788,-1.96479207375394e-06,-1.38559388344547e-06,1.39086194213961e-06,4.16125044144788e-10,2.11410190742445e-09,0.0799988380922021,-2.97934767135022e-09,2.0976926792815e-09,7.489694628382e-10,5.71123009995844e-11,4.74851061249559e-10,-1.11316511564041e-09,-0.034257952017053,-0.0220719955281584,0.0275267195740894,-3.84978507406152e-09,-3.91743928962462e-09,-0.0147500275830131 +3.79,-9.75778658308252e-09,1.08083910675683e-08,3.45801688325653e-09,4.16283368886994e-10,2.11535730598733e-09,0.0799999945718224,-4.49957547463868e-05,-3.3901211084035e-05,3.35719545453347e-05,5.12940384611582e-11,4.71449268513168e-10,-6.43008566530989e-07,2.61033328199239e-08,-2.21836438107913e-08,-7.52045994922845e-09,7.68916180726719e-10,-4.60482346698043e-09,1.44129500001533e-08 +3.792,-2.14477509273949e-06,-1.52119872778161e-06,1.52514976032095e-06,4.16330220298633e-10,2.1159877044985e-09,0.0799988355201678,-2.87493434007052e-09,2.00895810403834e-09,7.18887623041286e-10,6.01879657224912e-11,4.56431767381637e-10,-1.0555133156398e-09,-0.00105128427314925,0.00216965608391788,0.00227180273247931,3.82072845583891e-09,-7.56469539786585e-09,-0.019257903403902 +3.794,-9.7692863204428e-09,1.08164268999844e-08,3.4608924337487e-09,4.16524120749884e-10,2.11718303305686e-09,0.0799999945676004,-4.92008918389838e-05,-2.52225867483635e-05,4.2659165475252e-05,6.65769522845138e-11,4.41190486921705e-10,-7.76746221821389e-05,1.77210947738954e-08,-8.46826948841527e-09,-8.61702202648028e-09,3.2235498992339e-09,-1.48795906151911e-09,5.00554458993102e-09 +3.796,-2.34157866009542e-06,-1.62208907477507e-06,1.69578642222196e-06,4.16596528107771e-10,2.11775246644619e-09,0.0799985248216791,-2.80404996097494e-09,1.97508502608468e-09,6.84419534935365e-10,7.30821653194268e-11,4.50479931135561e-10,-1.03549113728007e-09,0.0137041253924473,0.00708459096119064,-0.0127016237362956,1.97151323044764e-09,2.5955800009303e-09,0.0127345947736543 +3.798,-9.7805025202867e-09,1.08243272400887e-08,3.46363011188844e-09,4.16816449411161e-10,2.1189849527814e-09,0.0799999945634584,5.61560973080538e-06,3.11577709639909e-06,-8.14732946993051e-06,7.44630052063044e-11,4.51572806925426e-10,-2.67362430875217e-05,-3.78977990482532e-08,3.14991088767867e-08,1.45168165682774e-08,-2.62637134262888e-09,6.48786580015325e-09,-1.95529356594725e-08 +3.8,-2.3191162211722e-06,-1.60962596638947e-06,1.66319710434223e-06,4.16894380128596e-10,2.11955875767389e-09,0.0799984178767068,-2.95564115716795e-09,2.10108146159182e-09,7.42486801208474e-10,6.25766799489113e-11,4.76431394336174e-10,-1.11370287991796e-09,0.0117455935113935,0.00599178172030513,-0.00897452308171521,-5.55978874050566e-09,1.11525372270549e-08,0.024145666901662 +3.802,-9.79232508491537e-09,1.08327315659351e-08,3.46660005909327e-09,4.17066756130957e-10,2.12089067835874e-09,0.0799999945590036,5.25979837763795e-05,2.70829039776196e-05,-4.40454217967914e-05,5.22238502442817e-11,4.96182955833646e-10,6.98464245191265e-05,-2.89983694608946e-08,1.78106227682884e-08,1.68747394529988e-08,-5.14475614887821e-09,3.664603343001e-09,-9.49153949880709e-09 +3.804,-2.10872428606668e-06,-1.50129435047899e-06,1.48701541715507e-06,4.17103275529573e-10,2.12154348949722e-09,0.0799986972624048,-3.07163463501153e-09,2.17232395266498e-09,8.0998575902047e-10,4.19976553533985e-11,4.91089807708178e-10,-1.15166903791319e-09,0.0454812380345332,0.0367179691272093,-0.0282691517709734,6.14959472233776e-10,3.35191943645618e-09,0.0536106649334094 +3.806,-9.80461162345542e-09,1.08414208617458e-08,3.46984000212935e-09,4.17234746752371e-10,2.12285503758958e-09,0.0799999945543969,0.000234522935914512,0.000173954780486457,-0.000157122028880685,5.46836881332168e-11,5.0959063357947e-10,0.000284289084252764,4.31856156737907e-08,-3.22196696406206e-08,-1.48676643912937e-08,3.46684486673964e-09,-6.26538751435923e-09,2.07629052839664e-08 +3.808,-1.17063254240863e-06,-8.05475228533165e-07,8.58527301632328e-07,4.17322010282106e-10,2.12358185203154e-09,0.0799998344187418,-2.89889217231637e-09,2.04344527410249e-09,7.50515101455295e-10,5.5865034820357e-11,4.66028257650741e-10,-1.06861741677733e-09,-0.160717984335178,-0.115852772998885,0.11171089454344,-3.76218153852469e-09,-2.18202192425742e-08,-0.162088880214551 +3.81,-9.81620719214468e-09,1.08495946428422e-08,3.47284206253518e-09,4.17458206891652e-10,2.12471915062018e-09,0.0799999945501225,-0.000408349001426201,-0.000289456311509083,0.000289721549293076,3.96349619791181e-11,4.22309756609173e-10,-0.000364066436605442,-4.04368108008339e-08,3.41619094124111e-08,1.76969983806119e-08,-2.841910734519e-09,7.49834222490974e-09,-1.99250338450696e-08 +3.812,-2.80402854811344e-06,-1.9633004745695e-06,2.01741349880463e-06,4.17480550130023e-10,2.12527109105798e-09,0.0799983781529954,-3.0606394155197e-09,2.18009291175214e-09,8.21303094977743e-10,4.4497391882281e-11,4.9602162655038e-10,-1.14831755215761e-09,0.21681530927353,0.154190350644357,-0.153755224440192,5.96007618258731e-09,3.15771714332058e-08,0.183975891309556 +3.814,-9.82844974980676e-09,1.08583150144892e-08,3.47612727491509e-09,4.17636196459181e-10,2.12670323712638e-09,0.0799999945455292,0.000458912235667919,0.000327305091068347,-0.000325299348467693,6.34752667094673e-11,5.48618442341997e-10,0.000371837128632785,4.15229103271213e-08,-3.27322804277717e-08,-1.72162631373318e-08,3.6420519378133e-09,-6.80401915365003e-09,1.99840144432528e-08 +3.816,-9.68379605441761e-07,-6.54080110296107e-07,7.16216104933859e-07,4.17734451196861e-10,2.12746556482735e-09,0.0799998655015099,-2.89454777421122e-09,2.04916379004105e-09,7.52438042428415e-10,5.90655996335343e-11,4.6880554993578e-10,-1.06838149438459e-09,-0.238237263807864,-0.169381474755163,0.169045669223561,-5.683821469038e-09,-3.42790032470396e-08,-0.186585798541728 +3.818,-9.84002794090361e-09,1.08665116696494e-08,3.4791370270848e-09,4.17872458857715e-10,2.12857845932612e-09,0.0799999945412557,-0.000494036819563537,-0.000350220807952307,0.000350883328426553,4.07399808333153e-11,4.11502429353838e-10,-0.00037450606553413,-4.17469064959568e-08,3.33812838482216e-08,1.59843926289538e-08,-2.89568716227428e-09,6.91027096655361e-09,-2.03500410966839e-08 +3.82,-2.94452688369591e-06,-2.05496334210534e-06,2.11974941864007e-06,4.17897411120194e-10,2.12911157454476e-09,0.0799983674772478,-3.06153540019504e-09,2.18268892543394e-09,8.1637561294423e-10,4.74828509844371e-11,4.96446633801994e-10,-1.14978165877133e-09,0.196563289388084,0.138353979327408,-0.140472305763328,2.53486467927111e-09,3.28903571045202e-08,0.123936033410814 +3.822,-9.85227408250439e-09,1.08752424253511e-08,3.48240252953658e-09,4.18062390261653e-10,2.13056424586133e-09,0.0799999945366565,0.0002922163379888,0.000203195109357325,-0.000211005894626762,5.08794395503997e-11,5.43063857771919e-10,0.000121238068109125,-7.30166795082087e-09,3.23222351661378e-09,4.26395030395099e-09,-1.3010426069826e-09,6.80878964320896e-10,-1.2264494975156e-09 +3.824,-1.77566153174071e-06,-1.24218290467604e-06,1.27572584013302e-06,4.18100928878395e-10,2.13128382997585e-09,0.0799988524295202,-3.09074207199833e-09,2.19561781950039e-09,8.33431414160034e-10,4.22786805565067e-11,4.99170149659278e-10,-1.15468745676139e-09,-0.104741128282507,-0.0726435409263269,0.0763391990710702,-2.67320887648026e-09,-1.56103428794463e-08,-0.0301234138831013 +3.826,-9.86463705079238e-09,1.08840248966291e-08,3.48573625519322e-09,4.18231504983879e-10,2.13256092645997e-09,0.0799999945320378,-0.000126748175141231,-8.73790543479829e-05,9.43509016575194e-05,4.01866040444787e-11,4.80622486254134e-10,7.44412576719755e-07,3.5891157667417e-09,-2.26034468919778e-09,-1.26634813746307e-09,8.13585310233122e-10,-2.94035629178069e-10,2.08513761812412e-09 +3.828,-2.28265423230564e-06,-1.59169912206797e-06,1.6531294467631e-06,4.18261675294573e-10,2.13320631992087e-09,0.0799988554071706,-3.07638560893136e-09,2.1865764407436e-09,8.28366021610182e-10,4.55330217974392e-11,4.97994007142566e-10,-1.1463469062889e-09,0.0514829538574782,0.0365049888035109,-0.0375353863815361,2.62116717220095e-09,6.84088202751453e-09,0.00461328074786298 +3.83,-9.87694259322811e-09,1.08927712023921e-08,3.48904971927966e-09,4.18413637071069e-10,2.13455290248854e-09,0.0799999945274524,7.91836402886823e-05,5.86409008660609e-05,-5.5790643868625e-05,5.06712727332825e-11,5.07986014364192e-10,1.91975355681717e-05,6.8841416941967e-09,-4.16854051277226e-09,-4.449782556315e-09,1.73082034815586e-09,-8.2789677890993e-10,2.70963806947577e-09 +3.832,-1.96591967115091e-06,-1.35713551860372e-06,1.4299668712886e-06,4.18464360385506e-10,2.13523826397832e-09,0.0799989321973128,-3.04884904215457e-09,2.16990227869251e-09,8.10566891384922e-10,5.24563031900626e-11,4.94682420026926e-10,-1.13550835401099e-09,-0.0271241124532434,-0.0194439744051738,0.0192326914088669,1.17874460192624e-09,-4.86806775445991e-09,-0.00325305149050797 +3.834,-9.88913798939672e-09,1.09014508115068e-08,3.4922919868452e-09,4.18623462283829e-10,2.13653163216865e-09,0.0799999945229104,-2.93128095242914e-05,-1.91349967546342e-05,2.11401217668425e-05,5.53862511409874e-11,4.88513743346352e-10,6.18532960613982e-06,6.26381542120902e-09,-4.28736907087667e-09,-5.57735281569993e-09,1.74860126378462e-09,-1.08333481074751e-09,2.22044604925031e-09 +3.836,-2.08317090924807e-06,-1.43367550562226e-06,1.51452735835597e-06,4.1868590539007e-10,2.13719231895171e-09,0.0799989569386313,-3.02379378046974e-09,2.15275280240901e-09,7.88257480122122e-10,5.94507082452011e-11,4.90349080783936e-10,-1.12662656981399e-09,0.0127082677049017,0.0084504869816118,-0.00965203126950543,1.90212429141032e-09,7.03864050391211e-10,-0.00114203931034224 +3.838,-9.9012331645186e-09,1.09100618227165e-08,3.49544501676569e-09,4.1886126511681e-10,2.13849302849178e-09,0.0799999945184039,2.15202612953156e-05,1.46669511718131e-05,-1.74680033111793e-05,6.29947483066287e-11,4.91329199547917e-10,1.61717236477084e-06,4.29650347418034e-09,-3.45188287675973e-09,-5.22563763094621e-09,1.39558503642349e-09,-1.10501885419735e-09,1.39298295120953e-09 +3.84,-1.99708986406682e-06,-1.37500770093502e-06,1.44465534511126e-06,4.18937884383297e-10,2.1391576357499e-09,0.0799989634073207,-3.00660776657302e-09,2.13894527090197e-09,7.6735492959834e-10,6.50330483908945e-11,4.85929005367147e-10,-1.12105463800915e-09,-0.00713293904120668,-0.00519004383632426,0.00503792378734511,1.00787433954077e-09,-2.01618235996766e-09,-0.000757143654196756 +3.842,-9.91325959558489e-09,1.09186176038001e-08,3.49851443648408e-09,4.19121397310374e-10,2.14043674451325e-09,0.0799999945139196,-7.01149486951116e-06,-6.09322417348401e-06,2.68369183820116e-06,6.70262456647918e-11,4.83264470108046e-10,-1.41140225201619e-06,2.35055030994857e-09,-2.15214131238372e-09,-3.97750408998029e-09,9.5106214570428e-10,-8.8774473883113e-10,5.55111512312578e-10 +3.844,-2.02513584354486e-06,-1.39938059762895e-06,1.45539011246407e-06,4.19205989365956e-10,2.14109069363033e-09,0.0799989577617117,-2.99720556533322e-09,2.13033670565243e-09,7.51444913238419e-10,6.88372969737116e-11,4.82378026411822e-10,-1.1188341919599e-09,0.00308888008600976,0.00214315889926312,-0.00214897886052952,8.0621273546022e-10,-2.78856798763271e-10,-0.000172742146975491 +3.846,-9.92524841784623e-09,1.09271389506227e-08,3.50152021613703e-09,4.19396746498268e-10,2.1423662566189e-09,0.0799999945094443,5.34402547452787e-06,2.4794114235685e-06,-5.91222360391691e-06,7.02510966066327e-11,4.82149042912993e-10,-2.10237083991815e-06,3.51525991475199e-08,-2.88013970312083e-08,-1.71726782099979e-08,3.23222351661378e-09,-6.56289259048925e-09,1.67626329483639e-08 +3.848,-2.00375974164675e-06,-1.38946295193468e-06,1.4317412180484e-06,4.19486993752383e-10,2.14301928980198e-09,0.0799989493522283,-2.85659516874315e-09,2.0151311175276e-09,6.82754200398427e-10,8.17661910401667e-11,4.56126456049865e-10,-1.05178366016645e-09,-0.0216344899889287,-0.0134585446671768,0.0163686382412785,4.72495306769182e-09,-1.20545934345628e-08,-0.0237718890232219 +3.85,-9.9366747985212e-09,1.09351994750928e-08,3.50425123293863e-09,4.19723811262429e-10,2.1441907624431e-09,0.0799999945052372,-8.1193934481187e-05,-5.13547672451389e-05,5.95623293611971e-05,8.91509088774e-11,4.33930669174742e-10,-9.71899269328057e-05,-1.59446566193322e-08,1.76035401533436e-08,1.86764666232353e-09,9.97032317817669e-10,3.48896259105835e-09,-1.21222476501259e-08 +3.852,-2.3285354795715e-06,-1.59488202091523e-06,1.66999053549319e-06,4.19843597387892e-10,2.14475501247868e-09,0.0799985605925206,-2.92037379522047e-09,2.08554527814098e-09,6.90224787047721e-10,8.57543203114374e-11,4.70082306414099e-10,-1.10027265076695e-09,0.0431827956799863,0.0261375023317619,-0.0337267669044474,-2.44032224983037e-09,1.4810201676152e-08,0.0392499504226276 +3.854,-9.94835629370208e-09,1.09435416562054e-08,3.50701213208682e-09,4.20066828543675e-10,2.14607109166876e-09,0.0799999945008361,9.15372482387585e-05,5.3195242081909e-05,-7.53447382565927e-05,7.93896198780785e-11,4.9317147587935e-10,5.98098747577047e-05,-2.55831326175654e-08,1.61303262413702e-08,1.24147653962625e-08,-4.17461204493818e-09,2.78336381720478e-09,-9.6407257177411e-09 +3.856,-1.96238648661647e-06,-1.3821010525876e-06,1.36861158246682e-06,4.20161155867405e-10,2.1467276983822e-09,0.0799987998320196,-3.02270632569074e-09,2.15006658310646e-09,7.39883848632771e-10,6.90558721316847e-11,4.81215761682918e-10,-1.13883555363792e-09,-0.034182118332181,-0.0217469919958253,0.0272932645093478,-4.23836313268033e-09,-3.74093117594398e-09,-0.0150027963255819 +3.858,-9.96044711900484e-09,1.09521419225378e-08,3.50997166748135e-09,4.20343052032202e-10,2.14799595471549e-09,0.0799999944962807,-4.51912250899657e-05,-3.37927259013923e-05,3.38283197807987e-05,6.24361673473572e-11,4.78207751175574e-10,-2.01310544623023e-07,2.5428010391737e-08,-2.17608049635219e-08,-6.27536217434609e-09,4.23272528138341e-10,-4.43351952372772e-09,1.44016742975594e-08 +3.86,-2.14315138697633e-06,-1.51727195619317e-06,1.50392486159001e-06,4.20410900536794e-10,2.1486405293869e-09,0.0799987990267775,-2.92099428412379e-09,2.06302336325237e-09,7.14782399935387e-10,7.0748962244238e-11,4.63481683588007e-10,-1.08122885644768e-09,-0.000910567345482893,0.00231783135566654,0.00226831093903638,3.4850594632374e-09,-7.37040636855645e-09,-0.0196986386005043 +3.862,-9.97213109614134e-09,1.09603940159908e-08,3.51283079708109e-09,4.20626047881179e-10,2.14984988144984e-09,0.0799999944919558,-4.88334944718973e-05,-2.45214004787261e-05,4.29015635369442e-05,7.63764052003068e-11,4.48726125701348e-10,-7.89958649466404e-05,-1.67780015141589e-08,2.01928317816734e-08,7.89646126264642e-09,7.63278329429794e-11,4.89452228746856e-09,-1.17380064001971e-08 +3.864,-2.33848536486392e-06,-1.61535755810807e-06,1.67553111573779e-06,4.20716406157595e-10,2.15043543388971e-09,0.0799984830433177,-2.98810629018042e-09,2.14379469037906e-09,7.46368244985973e-10,7.105427357601e-11,4.83059772737881e-10,-1.12818088204847e-09,0.0322775956549748,0.0186422057439454,-0.0263817255463302,-3.00714314560579e-09,1.42694016325162e-08,0.0385530917208082 +3.866,-9.98408352130206e-09,1.09689691947523e-08,3.51581627006103e-09,4.20910264975483e-10,2.15178212054079e-09,0.0799999944874431,8.02768881480019e-05,5.00474224970556e-05,-6.26253386483768e-05,6.43478326178836e-11,5.05803732231413e-10,7.52165019365924e-05,-2.29260512484007e-08,1.56415679020139e-08,1.42290693116997e-08,-4.04971195466785e-09,3.32416386084055e-09,-8.28503932126522e-09 +3.868,-2.01737781227191e-06,-1.41516786811985e-06,1.42502976114428e-06,4.20973797488067e-10,2.15245864881863e-09,0.0799987839093254,-3.07981049517403e-09,2.20636096198712e-09,8.03284522232772e-10,5.48554257573385e-11,4.96356428181243e-10,-1.16132103933353e-09,-0.0285577146915208,-0.0182719404357313,0.0227619527393141,-3.71013983424539e-09,-2.80764994586846e-09,-0.0169631960691627 +3.87,-9.99640276328276e-09,1.09777946386003e-08,3.51902940814997e-09,4.21129686678512e-10,2.15376754625352e-09,0.0799999944827978,-3.39539706180813e-05,-2.30403392458694e-05,2.84224723088797e-05,4.95072732809021e-11,4.94573132447939e-10,7.3637176599417e-06,-5.41900508840842e-09,4.00374178255447e-09,7.32096674949111e-09,-1.71130470905112e-09,1.39905448337529e-09,-7.86697096355481e-10 +3.872,-2.15319369474424e-06,-1.50732922510333e-06,1.5387196503798e-06,4.2117182658119e-10,2.15443694134843e-09,0.0799988133641961,-3.10148651552766e-09,2.22237592911734e-09,8.32568389230736e-10,4.80102069211341e-11,5.01952646114745e-10,-1.16446782771895e-09,0.015315448138604,0.0116093748095749,-0.0108559927872263,-3.53449908230274e-10,3.16890610974063e-09,0.00352221182688822 +3.874,-1.00088087093449e-08,1.09866841423167e-08,3.52235968170689e-09,4.21321727506196e-10,2.15577535683797e-09,0.0799999944781399,2.73078219363348e-05,2.33971599924304e-05,-1.50014988400254e-05,4.8093473647981e-11,5.07248756886902e-10,2.14525649674946e-05,2.11422134140104e-09,-2.75604192245815e-10,2.07299455379228e-09,4.16333634234433e-11,5.49473661015653e-10,1.39471767468535e-09 +3.876,-2.0439624069989e-06,-1.4137405851336e-06,1.4787136550197e-06,4.21364200475782e-10,2.15646593637597e-09,0.0799988991744559,-3.09302963016206e-09,2.22127351234835e-09,8.40860367445905e-10,4.81767403748278e-11,5.04150540758807e-10,-1.15888895702021e-09,-0.00790276261051764,-0.00574142411022791,0.00516765740594081,3.69062419514065e-10,-1.00310384998359e-09,-0.00240967131838465 +3.878,-1.00211808278655e-08,1.09955692363661e-08,3.52572312317667e-09,4.21514434467696e-10,2.15779195900101e-09,0.0799999944735044,-4.3032285057358e-06,4.3146355151874e-07,5.66913078373781e-06,4.95697233260372e-11,5.03236341486967e-10,1.1813879693956e-05,4.55663068041345e-09,-2.57649804269455e-09,-1.62240013090731e-09,8.48279779752658e-10,-2.12503625807159e-10,1.85355203408122e-09 +3.88,-2.06117532102184e-06,-1.41201473092753e-06,1.50139017815465e-06,4.21562479369086e-10,2.15847888174192e-09,0.0799989464299747,-3.0748031074404e-09,2.21096752017757e-09,8.34370766922276e-10,5.15698594938385e-11,5.03300526255579e-10,-1.15147474888388e-09,0.00350175159366267,0.00194394510406349,-0.00319296278891538,1.09547787507935e-09,3.90312782094781e-11,-0.00149539904244211 +3.882,-1.00334800402953e-08,1.10044131064468e-08,3.52906060624436e-09,4.21720713905671e-10,2.15980516110603e-09,0.0799999944688985,9.7037778689149e-06,8.20724396777272e-06,-7.10272037192371e-06,5.39516348263546e-11,5.03392466599805e-10,5.83228352418752e-06,4.37104237353824e-09,-3.38552970380323e-09,-3.69387680165811e-09,1.08637057683047e-09,-7.66747776381748e-10,1.57339419271096e-09 +3.884,-2.02236020954618e-06,-1.37918575505644e-06,1.47297929666695e-06,4.21778285908392e-10,2.16049245160832e-09,0.0799989697591088,-3.05731893794625e-09,2.19742540136236e-09,8.19595259715643e-10,5.59153418011604e-11,5.00233535150052e-10,-1.14518117211304e-09,-0.00231586905444117,-0.00201756496557258,0.00122776962056294,1.02305316995732e-09,-1.18438245322316e-09,-0.00119206527114668 +3.886,-1.00457093160471e-08,1.10132028080523e-08,3.53233898728322e-09,4.21944375272876e-10,2.16180609524663e-09,0.0799999944643178,4.40301651150228e-07,1.36984105482407e-07,-2.19164188967197e-06,5.80438475061839e-11,4.98654936786913e-10,1.0640224396008e-06,3.28784308806229e-09,-3.18777122754188e-09,-4.36955159555108e-09,1.02522157430229e-09,-9.47159017883336e-10,1.08073272553355e-09 +3.888,-2.02059900294158e-06,-1.37863781863451e-06,1.46421272910827e-06,4.22010461298417e-10,2.16248707135547e-09,0.0799989740151986,-3.044167565594e-09,2.18467431645219e-09,8.02117053333439e-10,6.00162280983695e-11,4.96444899078518e-10,-1.14085824121091e-09,0.000681261242704106,0.000258274042777562,-0.000682832750628983,9.79251402188907e-10,-8.35703034551826e-10,-0.000606318455512177 +3.89,-1.00578859863094e-08,1.10219415053181e-08,3.53554745549656e-09,4.22184440185269e-10,2.16379187484295e-09,0.0799999944597543,3.16534662196666e-06,1.17008027659265e-06,-4.9229728921879e-06,6.19608531149395e-11,4.95312124648705e-10,-1.36125138244791e-06,2.10186143663471e-09,-2.32214421302945e-09,-3.98574402649121e-09,8.74734312761304e-10,-8.75167993630298e-10,5.56846235788555e-10 +3.892,-2.00793761645371e-06,-1.37395749752814e-06,1.44452083753951e-06,4.22258304710876e-10,2.16446831985406e-09,0.079998968570193,-3.03576011984746e-09,2.17538573960008e-09,7.86174077227474e-10,6.35151653494148e-11,4.92944227103997e-10,-1.13863085626775e-09,0.059669895269526,0.0427321386257776,-0.0413852525246466,5.19506312968153e-09,2.94946359002956e-09,0.0592993847515349 +3.894,-1.00700290267888e-08,1.10306430482765e-08,3.53869215180547e-09,4.22438500846667e-10,2.16576365175136e-09,0.0799999944551998,0.000241844927700071,0.000172098634779703,-0.000170463982990775,8.27411056336657e-11,5.07109979008824e-10,0.000235836287623692,4.99277268833918e-08,-3.87517708894113e-08,-2.62858311506075e-08,5.80395106974939e-09,-8.58080967391927e-09,2.17170031957536e-08 +3.896,-1.04055790565343e-06,-6.85562958409325e-07,7.62664905576416e-07,4.22589269133411e-10,2.1664967597701e-09,0.0799999119153435,-2.83604921231389e-09,2.02037865604243e-09,6.81030752625044e-10,8.67309696284123e-11,4.5862098840832e-10,-1.05176284348474e-09,-0.165012214531682,-0.117561534958722,0.113953899640202,-3.14158421499399e-09,-2.36221632532451e-08,-0.149335815349122 +3.898,-1.00813732236381e-08,1.10387245629007e-08,3.54141627481597e-09,4.22785424725181e-10,2.167598135705e-09,0.0799999944509928,-0.000418203930426658,-0.000298147505055184,0.000285351615570035,7.01747687736897e-11,4.12621325995843e-10,-0.000361506973772796,-4.54277728715452e-08,3.65152786480082e-08,1.5816124451784e-08,-3.365363543395e-09,6.85736190053631e-09,-2.32097327468317e-08 +3.9,-2.71337362736006e-06,-1.87815297863006e-06,1.90407136785656e-06,4.22869968208506e-10,2.16814724507408e-09,0.0799984658874484,-3.01776030380007e-09,2.16643977063446e-09,7.4429525043218e-10,7.32695154548323e-11,4.86050436010465e-10,-1.14460177447206e-09,0.162699630017822,0.113797125764854,-0.112813617686056,5.02202446295285e-10,2.81359137377368e-08,0.114056606940332 +3.902,-1.00934442648533e-08,1.10473903219832e-08,3.5443934558177e-09,4.23078502787e-10,2.16954233744904e-09,0.0799999944464144,0.000232594589644631,0.000157040998004232,-0.000165902855174191,7.21835785588709e-11,5.2516498094679e-10,9.47194539885342e-05,-1.52378381180345e-08,9.0793258328281e-09,9.02338100072783e-09,-2.97201499521726e-09,1.61589491787239e-09,-4.70283534337312e-09 +3.904,-1.78299526878154e-06,-1.24998898661313e-06,1.24045994715979e-06,4.23158702522741e-10,2.17024790499787e-09,0.0799988447652644,-3.07871165627221e-09,2.20275707396578e-09,7.80388774435092e-10,6.13814554739633e-11,4.92514015681955e-10,-1.16341311584556e-09,-0.0207198453088387,-0.0111434737802302,0.0172222263553154,5.03937169771262e-10,-6.94886856389406e-09,0.0401680361880249 +3.906,-1.01057591114784e-08,1.10562013502791e-08,3.54751501091544e-09,4.23324028608896e-10,2.17151239351177e-09,0.0799999944417607,0.000149715208409276,0.000112467102883311,-9.7013949752929e-05,7.41993272379559e-11,4.97369506691214e-10,0.000255391598740634,4.48295372178219e-08,-3.32876087805188e-08,-1.75419574699464e-08,4.10869255285106e-09,-6.66177182861993e-09,2.08435699255993e-08 +3.908,-1.18413443514443e-06,-8.00120575079888e-07,8.52404148148078e-07,4.23455499831693e-10,2.17223738302463e-09,0.0799998663316594,-2.89939350740092e-09,2.0696066388437e-09,7.10220944555306e-10,7.78162256853675e-11,4.65866928367475e-10,-1.08003883614316e-09,-0.132238264473843,-0.0955819530745748,0.0895990250532936,-3.35712360688411e-09,-1.74695327648244e-08,-0.15656783605017 +3.91,-1.0117356685508e-08,1.10644797768344e-08,3.55035589469366e-09,4.23635293511637e-10,2.17337586122524e-09,0.0799999944374405,-0.000379237849486096,-0.000269860709414989,0.000261382150460246,6.07708328104195e-11,4.27491375631916e-10,-0.000370879745460045,-4.47923490833056e-08,3.85212695075408e-08,2.06247779271917e-08,-3.78473294371239e-09,8.09812286672872e-09,-2.25245169738208e-08 +3.912,-2.70108583308882e-06,-1.87956341273984e-06,1.89793274998906e-06,4.23698583162935e-10,2.17394734852716e-09,0.0799983828126775,-3.07856290373415e-09,2.22369171687386e-09,7.92720056264073e-10,6.2677293910518e-11,4.9825941983439e-10,-1.17013690403844e-09,0.148852036563156,0.104868726403867,-0.103049772759911,1.66967134562768e-10,2.71917904859364e-08,0.121159125252533 +3.914,-1.01296709371229e-08,1.10733745437019e-08,3.55352677491871e-09,4.23886002687279e-10,2.17536889890457e-09,0.07999999443276,0.000216170296766529,0.000149614196200479,-0.000150816940579397,6.14387013486705e-11,5.36258537575662e-10,0.000113756755550087,-1.26331508188554e-08,8.44463388105509e-09,1.02563357112784e-08,-2.76645026331401e-09,2.03049382863085e-09,-3.37403716077489e-09 +3.916,-1.8364046460227e-06,-1.28110662793793e-06,1.29466498767147e-06,4.23944337968329e-10,2.17609238267746e-09,0.0799988378396997,-3.12909550700957e-09,2.25747025239808e-09,8.33745399109186e-10,5.16114928572619e-11,5.06381395148913e-10,-1.18363305268154e-09,-0.0139914288670509,-0.00721826110081784,0.0115987419042115,1.04864034122798e-09,-5.96701507649119e-09,0.0360746841626333 +3.918,-1.0142187319151e-08,1.10824044247115e-08,3.55686175651515e-09,4.24092448658708e-10,2.17739442448517e-09,0.0799999944280255,0.000160204581298325,0.000120741151797207,-0.000104421972962551,6.56332627135824e-11,5.12390477269697e-10,0.00025805549220062,4.78469802840663e-08,-3.57686970320347e-08,-1.90880297679108e-08,4.63344640433404e-09,-6.96795052212983e-09,2.2211399386407e-08 +3.92,-1.1955863208294e-06,-7.98142020749099e-07,8.76977095821269e-07,4.24206871019184e-10,2.17814194458654e-09,0.0799998700616685,-2.9377075858733e-09,2.11439546426994e-09,7.57393280037543e-10,7.01452784745981e-11,4.78509593060394e-10,-1.09478745513591e-09,-0.134788600928044,-0.096975252551019,0.0921657896046315,-2.84841594755391e-09,-1.84539883374413e-08,-0.156081735676674 +3.922,-1.01539381494944e-08,1.10908620065686e-08,3.5598913296353e-09,4.24373029772607e-10,2.17930846285741e-09,0.0799999944236463,-0.000378949822413851,-0.000267159858406869,0.000264241185455975,5.42395989233668e-11,4.38574523919932e-10,-0.000366271450506078,-4.21198449382375e-08,3.55934899609611e-08,1.76633881132648e-08,-3.18018181233448e-09,7.39339145461315e-09,-2.1463733568261e-08 +3.924,-2.71138561048481e-06,-1.86678145437658e-06,1.93394183764517e-06,4.24423829414877e-10,2.17989624268222e-09,0.0799984049758665,-3.10618696562625e-09,2.25676942411379e-09,8.28046832490602e-10,5.74245512252602e-11,5.08083158878847e-10,-1.18064238940896e-09,0.149399510651057,0.104071302172836,-0.105226601801803,8.3830511976579e-10,2.66570619744666e-08,0.119604473381753 +3.926,-1.0166362897357e-08,1.10998890842651e-08,3.56320351696526e-09,4.24602727977508e-10,2.18134079549293e-09,0.0799999944189237,0.000218648220190378,0.000149125350284475,-0.000156665221751236,5.75928194024299e-11,5.45202771817798e-10,0.000112146443020933,-1.03550523190832e-08,5.42686555415894e-09,6.7237881928861e-09,-2.11939840677466e-09,1.15359111152458e-09,-2.55264559489987e-09 +3.928,-1.8367927297233e-06,-1.27028005323868e-06,1.30728095064023e-06,4.24654200692487e-10,2.18207705376949e-09,0.0799988535616386,-3.14760717490259e-09,2.27847688633043e-09,8.54941985262147e-10,4.89469575981615e-11,5.12697523324945e-10,-1.19085297178856e-09,-0.07880395195905,-0.0536284055232226,0.0571394344458987,-2.92257537615192e-09,-1.14257561745212e-08,-0.0283169549197825 +3.93,-1.01789533260566e-08,1.11090029918104e-08,3.56662328490631e-09,4.247985158079e-10,2.18339158558623e-09,0.0799999944141603,-9.65675876458222e-05,-6.53882718084156e-05,7.18925160323596e-05,4.59025178978223e-11,4.99499747119713e-10,-1.12137665819745e-06,6.58002298481452e-10,-4.19369400317393e-10,1.19088766625808e-09,3.16587034365767e-11,2.46764414457701e-10,1.12843762112291e-09 +3.932,-2.22306308030659e-06,-1.53183314047234e-06,1.59485101476967e-06,4.24837810764078e-10,2.18407505275797e-09,0.0799988490761319,-3.14497516570866e-09,2.27679940872916e-09,8.59705535927179e-10,4.90735924119079e-11,5.13684580982776e-10,-1.18633922130407e-09,0.0392937380624827,0.027678237455881,-0.0283748027036373,1.64234945088104e-09,5.59535057176319e-09,0.00487646170492516 +3.934,-1.01915332267194e-08,1.11181101894453e-08,3.57006210705002e-09,4.24994810177548e-10,2.18544632391016e-09,0.079999994409415,6.06073646041089e-05,4.53246780151087e-05,-4.16066947821897e-05,5.24719157013464e-11,5.21881149406766e-10,1.83844701615032e-05,4.87801530939247e-09,-2.92691218484187e-09,-2.42536025985007e-09,1.12106504635001e-09,-3.72098185597025e-10,2.03656536079677e-09 +3.936,-1.98063362189015e-06,-1.3505344284119e-06,1.42842423564091e-06,4.25047698426884e-10,2.1861625773556e-09,0.0799989226140126,-3.12546310447109e-09,2.26509175998979e-09,8.50004094887779e-10,5.35578525973079e-11,5.12196188240388e-10,-1.17819295986088e-09,-0.0205294521734721,-0.0145883110877834,0.0143465075676512,8.30932544992888e-10,-3.5522799979315e-09,-0.00295465350103052 +3.938,-1.02040350791373e-08,1.11271705564853e-08,3.57346212342957e-09,4.25209041587937e-10,2.18749510866312e-09,0.0799999944047022,-2.15104440897794e-05,-1.30285663360249e-05,1.57793354884153e-05,5.5795645881318e-11,5.0767202941504e-10,6.56585615738114e-06,3.9778157981049e-08,-3.25655301336436e-08,-1.96787031114809e-08,4.19672976925688e-09,-6.97922622472368e-09,1.89908852532561e-08 +3.94,-2.06667539824927e-06,-1.402648693756e-06,1.49154157759457e-06,4.25270881010409e-10,2.18819326547326e-09,0.0799989488774372,-2.96635047254689e-09,2.13482963945521e-09,7.71289282441855e-10,7.03447716743354e-11,4.84279283341493e-10,-1.10222941884785e-09,-0.00943085839578819,-0.00528895021311911,0.00709603903870265,6.22592255528075e-09,-1.10645000106491e-08,-0.0253797809227074 +3.942,-1.02159004810275e-08,1.11357098750431e-08,3.57654728055934e-09,4.25490420674635e-10,2.18943222579648e-09,0.0799999944002933,-5.92338776729322e-05,-3.41843671885014e-05,4.41634916432259e-05,8.0699336102441e-11,4.63414029372444e-10,-9.49532675334485e-05,-1.11086541441235e-08,1.39664755455238e-08,-2.1916062714622e-09,2.11462791721573e-09,2.67494359995623e-09,-1.05089548174675e-08 +3.944,-2.303610908941e-06,-1.53938616251001e-06,1.66819554416747e-06,4.25593678354819e-10,2.19004692159075e-09,0.0799985690643671,-3.01078508912339e-09,2.19069554163731e-09,7.62522857356006e-10,7.88032833431984e-11,4.94979057741318e-10,-1.14426523811772e-09,0.0352728859024146,0.0195591504856523,-0.0288044500243965,-1.61242547092044e-09,1.29462413012149e-08,0.0387417606996856 +3.946,-1.0227943621384e-08,1.11444726572096e-08,3.57959737198876e-09,4.25805633808007e-10,2.19141214202745e-09,0.0799999943957162,8.18576659367261e-05,4.40522347541078e-05,-7.10543084543602e-05,7.42496342187592e-11,5.15198994577303e-10,6.0013775265294e-05,-2.29654348923163e-08,1.33276636254953e-08,8.19158109399697e-09,-3.2382950487797e-09,1.79196935068404e-09,-8.85749806833757e-09 +3.948,-1.97618024519409e-06,-1.36317722349358e-06,1.38397831035003e-06,4.25890676891694e-10,2.19210771756906e-09,0.0799988091194681,-3.10264682869265e-09,2.24400619613929e-09,7.95289181731994e-10,6.58501031480795e-11,5.02146935144054e-10,-1.17969523039107e-09,-0.0299745320595109,-0.0183164669278167,0.0243635258508588,-3.27472424177521e-09,-4.18762247100801e-09,-0.015365052691979 +3.95,-1.02403542086987e-08,1.11534486819942e-08,3.58277852871569e-09,4.260690342206e-10,2.19342072976803e-09,0.0799999943909974,-3.80404623013175e-05,-2.9213632957159e-05,2.63997949490752e-05,6.11507372516584e-11,4.98448504693271e-10,-1.44643550262224e-06,2.75595247577891e-08,-2.50329271200833e-08,-1.08344323096476e-08,1.39515135555435e-09,-5.45353692760208e-09,1.54563861709533e-08 +3.952,-2.12834209439936e-06,-1.48003175532221e-06,1.48957749014633e-06,4.261352798407e-10,2.19410151158783e-09,0.0799988033337261,-2.9924087296615e-09,2.14387448765896e-09,7.51951452493404e-10,7.14307085702969e-11,4.80332787433646e-10,-1.11786968570726e-09,-0.00300271382367919,0.000731518778494462,0.00366562948983344,4.4573719715224e-09,-8.68489308247788e-09,-0.0205749352295142 +3.954,-1.02523238436174e-08,1.11620241799448e-08,3.58578633452566e-09,4.26354757054881e-10,2.19534206091776e-09,0.079999994386526,-5.00513175960342e-05,-2.62875578431812e-05,4.10623129084089e-05,7.8980225137748e-11,4.6370893236336e-10,-8.37461764206792e-05,-1.48074911707207e-08,1.86554331010891e-08,4.60222138176644e-09,8.71264865809351e-10,4.22318430226553e-09,-1.14127457484514e-08 +3.956,-2.3285473647835e-06,-1.58518198669494e-06,1.65382674177997e-06,4.26451200741251e-10,2.19595634731728e-09,0.0799984683490205,-3.05163869434438e-09,2.21849622006331e-09,7.7036033802047e-10,7.49157680335343e-11,4.97225524642708e-10,-1.16352066870107e-09,0.0324963619705302,0.0185104020024133,-0.0261205697813481,-2.44856218634126e-09,1.38934003190982e-08,0.0395927843453366 +3.958,-1.02645303983948e-08,1.11708981648251e-08,3.58886777587775e-09,4.26654420127015e-10,2.19733096301633e-09,0.0799999943818719,7.99341302860868e-05,4.77540501664722e-05,-6.34199662169834e-05,6.91859763923829e-11,5.19282533639753e-10,7.46249609606674e-05,-2.29155073822734e-08,1.5707487394101e-08,1.26331237138011e-08,-3.64248561868229e-09,2.93818788743571e-09,-8.526165884426e-09 +3.96,-2.00881084363915e-06,-1.39416578602905e-06,1.40014687691203e-06,4.26727944646821e-10,2.19803347745184e-09,0.0799987668488643,-3.14330072387347e-09,2.28132616963972e-09,8.20892832875674e-10,6.03458255588051e-11,5.08978276192451e-10,-1.19762533223877e-09,-0.0284937826809021,-0.0177569767262526,0.0227224439268598,-3.41090003463939e-09,-3.05007755163622e-09,-0.0170931725414561 +3.962,-1.02771036012902e-08,1.11800234695036e-08,3.59215134720925e-09,4.2689580342925e-10,2.1993668761211e-09,0.0799999943770814,-3.40410004375218e-05,-2.32738567385385e-05,2.7469809490456e-05,5.55423762538254e-11,5.07082223433208e-10,6.25227079484313e-06,2.88530592647273e-08,-2.46116061558554e-08,-8.82410464142502e-09,1.37737043992558e-09,-4.84551634927221e-09,1.61710922430558e-08 +3.964,-2.14497484538924e-06,-1.4872612129832e-06,1.51002611487386e-06,4.26950114151836e-10,2.20006180634558e-09,0.0799987918579475,-3.02788848681456e-09,2.1828797450163e-09,7.85596414309974e-10,6.58553073185075e-11,4.89596210795362e-10,-1.13294096326655e-09,-0.00381505335406584,-0.000138346421124646,0.00385659855483069,4.53543452794135e-09,-8.48670092534753e-09,-0.0213976969979518 +3.966,-1.02892151552375e-08,1.11887549884837e-08,3.59529373286649e-09,4.27159224658524e-10,2.20132526096428e-09,0.0799999943725496,-4.93012138537852e-05,-2.38272424230371e-05,4.28962037097788e-05,7.36841143655908e-11,4.73135419731818e-10,-7.9338517196964e-05,-1.32871144642443e-08,1.78524729721463e-08,4.68093445948891e-09,1.03866568124111e-09,4.24747043092921e-09,-1.07127848258948e-08 +3.968,-2.34217970080438e-06,-1.58257018267535e-06,1.68161092971297e-06,4.27244850609299e-10,2.2019543480245e-09,0.0799984745038787,-3.08103694467154e-09,2.25428963690488e-09,8.0432015214793e-10,7.00099700434719e-11,5.06586092519079e-10,-1.17579210257013e-09,0.0327491879295376,0.0181473013354752,-0.0270731755655333,-2.24820162486594e-09,1.38795225312904e-08,0.0387998720079857 +3.97,-1.03015393030162e-08,1.11977721470313e-08,3.59851101347508e-09,4.27439264538698e-10,2.20335160533436e-09,0.0799999943678465,8.16955378643655e-05,4.8761962918864e-05,-6.53964985523544e-05,6.4691307866127e-11,5.28653509856979e-10,7.58609708349788e-05,-2.15981746376492e-08,1.421172207694e-08,1.13747986724144e-08,-3.41436948159134e-09,2.67971408951517e-09,-7.91554322088216e-09 +3.972,-2.01539754934692e-06,-1.3875223309999e-06,1.42002493550356e-06,4.27503615840763e-10,2.20406896206393e-09,0.079998777947762,-3.16742964322214e-09,2.31113652521264e-09,8.49819346837587e-10,5.63524921171065e-11,5.17304948877139e-10,-1.20745427545366e-09,0.033654762756686,0.0270364710743074,-0.0200903792146271,1.51007678583781e-09,6.3794455829047e-10,0.0488283753317594 +3.974,-1.03142090215891e-08,1.12070166931322e-08,3.60191029086243e-09,4.27664674507167e-10,2.20542082512987e-09,0.0799999943630166,0.00021631458889111,0.000156907847216094,-0.000145758015410863,7.07316150094783e-11,5.31205288090141e-10,0.000271174472162017,4.5131650153185e-08,-3.61180269720096e-08,-1.95158559451736e-08,4.20843915271973e-09,-7.31749730253916e-09,2.17300136218235e-08 +3.976,-1.15013919378248e-06,-7.59890942135522e-07,8.36992873860104e-07,4.27786542300801e-10,2.20619378321629e-09,0.0799998626456507,-2.9869030426094e-09,2.1666644173246e-09,7.71755923056893e-10,7.31862487279854e-11,4.88034959666983e-10,-1.12053422096636e-09,-0.154412769762149,-0.109882649724233,0.105770068292146,-3.64075089520632e-09,-2.16354711923827e-08,-0.162005784124647 +3.978,-1.03261566337595e-08,1.12156833508015e-08,3.60499731455466e-09,4.27957419502079e-10,2.20737296496853e-09,0.0799999943585345,-0.000401336490157486,-0.000282622751680839,0.000277322257757721,5.6168611428653e-11,4.44663403320611e-10,-0.000376848664336571,-4.2827612116436e-08,3.6123447982872e-08,1.79398596672486e-08,-3.36406250078802e-09,7.37084004942545e-09,-2.18072088165044e-08 +3.98,-2.75548515441242e-06,-1.89038194885888e-06,1.94628190489099e-06,4.28011216746516e-10,2.20797243682958e-09,0.0799983552509933,-3.15821349107514e-09,2.31115820925609e-09,8.43515361725888e-10,5.97299987248334e-11,5.17518319864684e-10,-1.20776305623238e-09,0.158527353641977,0.110351774031342,-0.110567248040637,1.03389519168218e-09,2.80274935204882e-08,0.124118848349348 +3.982,-1.03387894877238e-08,1.12249279836385e-08,3.60837137600156e-09,4.28196339496978e-10,2.20944303824799e-09,0.0799999943537034,0.000232772924410422,0.00015878434444453,-0.000164946734404828,6.03041921953817e-11,5.56773377402564e-10,0.000119626729060823,-1.01488912759851e-08,5.52617847315861e-09,6.84565251707347e-09,-2.07819872422021e-09,1.18785190017512e-09,-2.46157261241109e-09 +3.984,-1.82439345677073e-06,-1.25524457108075e-06,1.28649496727168e-06,4.28252433515297e-10,2.21019953033919e-09,0.0799988337579096,-3.19880905617908e-09,2.33326292314872e-09,8.70897971794182e-10,5.14172038279525e-11,5.22269727465385e-10,-1.21760934668202e-09,-0.0836958191701915,-0.0567219740365588,0.0601623444578327,-2.96377505870637e-09,-1.2110971947532e-08,-0.0298873942764649 +3.986,-1.03515847239485e-08,1.12342610353311e-08,3.61185496788874e-09,4.2840200831229e-10,2.21153211715786e-09,0.079999994348833,-0.000102010352270344,-6.8103551701705e-05,7.57026434265034e-05,4.84490919605562e-11,5.08329489612435e-10,7.71519549636057e-08,1.23327997120226e-09,-4.3151246464923e-10,1.3140530330524e-09,1.43982048506075e-10,2.97505076130022e-10,1.33573707650214e-09 +3.988,-2.23243486585211e-06,-1.52765877788757e-06,1.58930554097769e-06,4.28446229883139e-10,2.21223284829764e-09,0.0799988340665174,-3.19387593629427e-09,2.33153687329013e-09,8.76154183926391e-10,5.19931320219768e-11,5.23459747769905e-10,-1.21226639837602e-09,0.041498114217186,0.0289746492122561,-0.0297296805110234,1.79760720198096e-09,5.98045918343001e-09,0.00491524632800776 +3.99,-1.03643602276937e-08,1.12435871828243e-08,3.61535958462444e-09,4.28609980840378e-10,2.21362595614893e-09,0.0799999943439839,6.39821045984e-05,4.77950451473197e-05,-4.32160786175903e-05,5.56395207684801e-11,5.32251326346155e-10,1.97381372669947e-05,5.31307853615659e-09,-2.92691218484187e-09,-2.33775672431322e-09,1.18438245322316e-09,-3.30031141304587e-10,2.26988566831565e-09 +3.992,-1.97650644745851e-06,-1.3364785972983e-06,1.41644122650733e-06,4.28668787966213e-10,2.21436185360302e-09,0.0799989130190665,-3.17262362214965e-09,2.31982922455076e-09,8.66803157029138e-10,5.67306618348695e-11,5.22139623204687e-10,-1.20318685570275e-09,0.0394391750424874,0.0278810415124154,-0.0275077443260673,5.45397060847107e-09,2.51101223147643e-10,0.0574655307046186 +3.994,-1.03770507221823e-08,1.12528664997225e-08,3.61882679725256e-09,4.28836903487717e-10,2.21571451464175e-09,0.0799999943391712,0.00022173880476835,0.000159319211196981,-0.000153247055921859,7.74554032023644e-11,5.33255731238746e-10,0.000249600260085469,5.51748317173527e-08,-4.2742068565027e-08,-2.85776177028074e-08,6.77799830151037e-09,-8.92038179434173e-09,2.43451092618585e-08 +3.996,-1.08955122838511e-06,-6.9920175251037e-07,8.03453002819893e-07,4.28978609579023e-10,2.21649487652797e-09,0.0799999114201068,-2.95192429528024e-09,2.14886095029065e-09,7.52492686217909e-10,8.3842655040911e-11,4.8645809602732e-10,-1.10580641865532e-09,-0.156230263814976,-0.110540054138125,0.10729587270465,-2.14411821630733e-09,-2.30926389122032e-08,-0.153831196390494 +3.998,-1.03888584193634e-08,1.12614619435236e-08,3.62183676799743e-09,4.29172274107881e-10,2.21766034702586e-09,0.079999994334748,-0.000403182250491556,-0.00028284100535552,0.000275936434896741,6.8878930337135e-11,4.40885175589933e-10,-0.000365724525476507,-4.17294779461207e-08,3.43191187274851e-08,1.3453864758395e-08,-2.69922972861788e-09,6.32827124037758e-09,-2.2222675089034e-08 +4,-2.70228023035134e-06,-1.83056577393245e-06,1.90719874240686e-06,4.29254125300371e-10,2.21825841723033e-09,0.0799984485220049,-3.11884220706472e-09,2.28613742520059e-09,8.06308145251489e-10,7.30457361264394e-11,5.1177118098883e-10,-1.19469711901145e-09,0.157506185775196,0.108049063454661,-0.109960152778996,1.06512021424785e-09,2.70634209487019e-08,0.116066857438524 +4.002,-1.04013337881917e-08,1.12706064932244e-08,3.62506200057844e-09,4.29464457052386e-10,2.21970743174982e-09,0.0799999943299692,0.00022684249260916,0.000149355248463077,-0.000163904176219194,7.3139411194126e-11,5.49138859384729e-10,9.85429042775377e-05,-1.29071016026121e-08,6.39592545579808e-09,5.89871033957856e-09,-2.3726680342708e-09,8.01008565003715e-10,-3.81812637055778e-09 +4.004,-1.79491025991459e-06,-1.23314478008008e-06,1.25158203753001e-06,4.29546682945148e-10,2.22045497266787e-09,0.079998842693622,-3.17047061347517e-09,2.31172112702379e-09,8.29902986609806e-10,6.35550639893552e-11,5.14975215248845e-10,-1.20996962449369e-09,-0.0827749638151025,-0.0553485615798716,0.0596252638120244,-3.46294173891464e-09,-1.19921433893972e-08,-0.0259235457119742 +4.006,-1.04140156706456e-08,1.12798533777325e-08,3.62838161252488e-09,4.29718677308344e-10,2.22176733261081e-09,0.0799999943251293,-0.000104257362651287,-7.20389978564339e-05,7.45968790289305e-05,5.92876442384659e-11,5.01170285827135e-10,-5.15127857037058e-06,-2.30436329757724e-09,1.96587537927956e-09,2.86706422496736e-09,-5.21284404527618e-10,5.51208384520332e-10,-1.56125112905138e-10 +4.008,-2.21193971051969e-06,-1.52130077150578e-06,1.5499695536457e-06,4.29783833522102e-10,2.22245965381118e-09,0.0799988220885077,-3.17968806666548e-09,2.31958462854091e-09,8.41371243509674e-10,6.14699263712449e-11,5.17180048786926e-10,-1.21059412494531e-09,0.0413311246281515,0.0293800905934662,-0.0287058858610591,1.08160008726825e-09,6.34908792204728e-09,0.00556373755573908 +4.01,-1.04267344229123e-08,1.12891317162467e-08,3.63174709749892e-09,4.29964557013829e-10,2.22383605280596e-09,0.0799999943202869,6.10671358613012e-05,4.54813645174181e-05,-4.02266644152934e-05,6.36140445875384e-11,5.26566637515321e-10,1.71036716525833e-05,2.1859142102327e-09,4.74880550260264e-11,6.66784336031723e-10,4.66206934165251e-10,3.24826970847876e-10,1.00440489265756e-09 +4.012,-1.96767116707446e-06,-1.33937531343609e-06,1.38906289598451e-06,4.30038289700452e-10,2.22456592036124e-09,0.0799988905031943,-3.17094440982455e-09,2.31977458076101e-09,8.44038380853801e-10,6.33347541079061e-11,5.18479356670318e-10,-1.20657650537468e-09,-0.0213548642284448,-0.0149288652980468,0.0148822727902004,1.25767452011849e-10,-2.85101803273864e-09,-0.00246949528881395 +4.014,-1.04394182005516e-08,1.12984108145697e-08,3.63512325102233e-09,4.30217896030261e-10,2.22590997023264e-09,0.0799999943154606,-2.43523210524877e-05,-1.42340966747758e-05,1.93024267455149e-05,6.41171143955858e-11,5.15162565384365e-10,7.22569049732637e-06,2.96854554808997e-09,-7.97105437082701e-10,-6.94756752082e-10,6.90419943442435e-10,4.55364912731666e-11,1.08073272546682e-09 +4.016,-2.0650804512844e-06,-1.39631170013518e-06,1.46627260296656e-06,4.30294758158034e-10,2.22662657062278e-09,0.0799989194059563,-3.15907022763219e-09,2.31658615901268e-09,8.41259353845473e-10,6.60964338816756e-11,5.18661502635411e-10,-1.20225357447281e-09,0.0102347034339843,0.00667431529944003,-0.0076116310793368,9.13765590967223e-10,1.37129890773105e-09,-0.000895688972643982 +4.018,-1.04520544814621e-08,1.13076771592058e-08,3.63848828843771e-09,4.30482281765787e-10,2.22798461624318e-09,0.0799999943106516,1.6586492683445e-05,1.24631645229814e-05,-1.1144097571829e-05,6.77721767594543e-11,5.20647761015289e-10,3.64293460675084e-06,2.1994125272789e-09,-9.98333360553064e-10,-1.35677059869476e-09,6.0411745050512e-10,-1.71737624150455e-10,7.77156117304162e-10 +4.02,-1.99873448055062e-06,-1.34645904204325e-06,1.42169621267924e-06,4.30565846865072e-10,2.22870916166684e-09,0.0799989339776948,-3.15027257752308e-09,2.31259282557047e-09,8.35832271450694e-10,6.85129036836963e-11,5.17974552138809e-10,-1.19914495000359e-09,-0.00553750523939703,-0.00406092189476139,0.00367018288785603,3.79470760373687e-10,-1.01177746733456e-09,-0.000756647265675943 +4.022,-1.04646555717722e-08,1.13169275305081e-08,3.64183161752352e-09,4.30756333380522e-10,2.23005651445174e-09,0.079999994305855,-5.56352827414562e-06,-3.78052305606599e-06,3.5366339795968e-06,6.92900598009492e-11,5.1660065114595e-10,6.16345544046727e-07,1.20509071454303e-09,-7.97755958386606e-10,-1.46063716672639e-09,4.23272528142236e-10,-3.06612374350216e-10,3.03576608229438e-10 +4.024,-2.0209885936472e-06,-1.36158113426751e-06,1.43584274859762e-06,4.30843007104276e-10,2.23077556427143e-09,0.0799989364430769,-3.1454522146649e-09,2.30940180173692e-09,8.29989722783789e-10,7.02059937962651e-11,5.16748102641408e-10,-1.19793064357068e-09,0.00251977982994038,0.00160230211737632,-0.00192676421822641,4.09828421195675e-10,8.02309607352692e-11,-0.000288677031931617 +4.026,-1.04772373806308e-08,1.1326165137715e-08,3.64515157641465e-09,4.31037157355707e-10,2.2321235068623e-09,0.0799999943010633,4.5155910456148e-06,2.62868541343856e-06,-4.17042289330797e-06,7.09293734857318e-11,5.16921574988891e-10,-5.38362583679614e-07,4.58129628158337e-10,-4.46908135626585e-10,-1.20671701802217e-09,2.61509563999549e-10,-2.57606436211168e-10,2.25514052541806e-11 +4.028,-2.00292622946473e-06,-1.35106639261376e-06,1.41916105702439e-06,4.31126724598219e-10,2.23284325057138e-09,0.0799989342896266,-3.14361969615227e-09,2.30761416919441e-09,8.25162854711699e-10,7.12520320522634e-11,5.15717676896563e-10,-1.19784043794966e-09,-0.00143925041968972,-0.000985900202188907,0.00101708565419603,1.53523027627885e-10,-4.05491612480892e-10,-5.67818500552284e-05 +4.03,-1.04898118594154e-08,1.13353955943918e-08,3.6484522278335e-09,4.31322165483916e-10,2.23418637756989e-09,0.0799999942962719,-1.24141063314473e-06,-1.31491539531751e-06,-1.02080276523375e-07,7.15434655962434e-11,5.15299608538967e-10,-7.65489983900553e-07,-3.75133953425377e-11,2.03830009708393e-11,-6.92371507303592e-10,1.42681005903079e-10,-1.39645239787533e-10,-1.90819582423954e-10 +4.032,-2.00789187199731e-06,-1.35632605419503e-06,1.41875273591829e-06,4.31412898460604e-10,2.23490444900554e-09,0.0799989312276667,-3.14376974973364e-09,2.3076957011983e-09,8.22393368682485e-10,7.18227560758757e-11,5.15159095937413e-10,-1.19860371627935e-09,0.000606496238485051,0.000467659228183054,-0.000365588396361576,1.14491749410498e-10,-1.38777878364313e-11,5.14072907506915e-05 +4.034,-1.05023869384144e-08,1.13446263771966e-08,3.65174180130823e-09,4.3160945650822e-10,2.23624701395364e-09,0.0799999942914775,1.18457432079521e-06,5.55721517414503e-07,-1.56443386196952e-06,7.20014325938853e-11,5.15244097387622e-10,-5.5986082089781e-07,-3.82127055517938e-10,4.76398434461864e-10,-1.3205582465437e-10,3.2526065170571e-11,-1.47451495744165e-11,-3.18321757775172e-10 +4.036,-2.00315357471413e-06,-1.35410316812537e-06,1.41249500047042e-06,4.31700904190979e-10,2.23696542539509e-09,0.0799989289882234,-3.14529825795571e-09,2.30960129493614e-09,8.21865145383868e-10,7.1952860336558e-11,5.15100115339116e-10,-1.19987700331046e-09,-0.00038728800765338,-0.000202439080255992,0.000359099398871114,-3.38271077775535e-11,2.21177243473171e-11,7.65112365824459e-05 +4.038,-1.05149681314462e-08,1.13538647823763e-08,3.65502926188976e-09,4.31897267949566e-10,2.238307414415e-09,0.079999994286678,-3.64577709818485e-07,-2.54034803609554e-07,-1.28036266484902e-07,7.18661241627751e-11,5.15332568285011e-10,-2.53815874567992e-07,-6.51930766490244e-10,8.36353555983727e-10,4.2652513470152e-10,-5.68121938342594e-11,1.33573707678844e-10,-4.44089209916751e-10 +4.04,-2.0046118855534e-06,-1.35511930733981e-06,1.41198285540448e-06,4.3198836868763e-10,2.23902675566823e-09,0.0799989279729599,-3.14790598102167e-09,2.31294670916008e-09,8.23571245922674e-10,7.17256115612209e-11,5.15634410169831e-10,-1.20165336015012e-09,0.000141092176787433,0.000148372034059985,-2.59819997547939e-05,-8.9338259016793e-11,2.02962646660668e-10,6.9366664322293e-05 +4.042,-1.05275597553703e-08,1.1363116569213e-08,3.65832354687345e-09,4.32184170395811e-10,2.24036995205568e-09,0.0799999942818714,1.99790997331187e-07,3.39453332630319e-07,-2.31964265504066e-07,7.15087711267079e-11,5.16144418871653e-10,2.36507827211492e-08,-8.68391729877322e-10,1.13797860011213e-09,8.03827490634858e-10,-1.26201132881266e-10,2.49800180511991e-10,-4.83120487992744e-10 +4.044,-2.00381272156408e-06,-1.35376149400929e-06,1.41105499834246e-06,4.32274403772137e-10,2.24109133334371e-09,0.079998928067563,-3.15137954794118e-09,2.31749862356053e-09,8.26786555885213e-10,7.12208070296958e-11,5.16633610891879e-10,-1.20358584210209e-09,-9.78690712998406e-05,-3.25015231741698e-05,0.00011749876180528,-1.64798730213827e-10,2.42427605796424e-10,5.20505877982259e-05 +4.046,-1.05401652735621e-08,1.13723865637072e-08,3.661630693097e-09,4.3246905362393e-10,2.24243648649924e-09,0.0799999942770571,-1.9168528786822e-07,2.09447239933625e-07,2.38030781717106e-07,7.08495762058526e-11,5.17114129294839e-10,2.31853133914076e-07,-1.00624803645896e-09,1.22991894459642e-09,1.06555389516488e-09,-1.81712284104655e-10,2.94469310075814e-10,-5.10876063742072e-10 +4.048,-2.00457946271555e-06,-1.35292370504955e-06,1.41200712146933e-06,4.3255780207696e-10,2.24315978986089e-09,0.0799989289949755,-3.15540454008702e-09,2.32241829933891e-09,8.31048771465873e-10,7.04939578932773e-11,5.17811488132182e-10,-1.20562934635706e-09,4.52697114278479e-05,4.94053862490928e-05,-1.06355473473423e-05,-1.89952220623394e-10,3.0964814043315e-10,3.26461514071767e-05 +4.05,-1.05527868917224e-08,1.13816762369046e-08,3.66495488818286e-09,4.32751029455503e-10,2.24450773245177e-09,0.0799999942722345,-1.0606442156848e-08,4.07068784929975e-07,1.95488592327742e-07,7.00897673233591e-11,5.18352721856572e-10,3.62437739542769e-07,-1.06306022994666e-09,1.31405303292324e-09,1.13494283411145e-09,-1.83880688457415e-10,3.14852310860959e-10,-5.23886489677935e-10 +4.052,-2.00462188848418e-06,-1.35129542990983e-06,1.41278907583864e-06,4.32838161146254e-10,2.24523320074832e-09,0.0799989304447265,-3.1596567810068e-09,2.32767451147061e-09,8.35588542802319e-10,6.97584351394475e-11,5.19070897375626e-10,-1.20772489231577e-09,-1.07861217245152e-05,-1.91847232542357e-06,6.76825349239492e-06,-1.71737624117814e-10,3.31332183940355e-10,1.31002517861557e-05 +4.054,-1.05654255188464e-08,1.13909869349504e-08,3.66829724235407e-09,4.3303006319606e-10,2.24658401604128e-09,0.0799999942674036,-5.37509290549136e-08,3.9939489562828e-07,2.22561606297325e-07,6.94028168268877e-11,5.19678050592333e-10,4.14838746687397e-07,-1.0514050569434e-09,1.23490627459048e-09,1.06446969299289e-09,-1.68701858034908e-10,3.01841884848846e-10,-5.19549681122216e-10 +4.056,-2.0048368922004e-06,-1.34969785032732e-06,1.41367932226383e-06,4.33115772413561e-10,2.24731191295069e-09,0.0799989321040815,-3.16386240123458e-09,2.33261413656897e-09,8.3984642157429e-10,6.9083627707308e-11,5.20278264915021e-10,-1.20980309104026e-09,2.4875021693071e-05,1.2872028096167e-05,-3.31498546061444e-05,-1.58293517186733e-10,2.89265139590265e-10,-5.03116645569427e-06 +4.058,-1.05780809684514e-08,1.14003173914967e-08,3.67165662804037e-09,4.3330639770689e-10,2.24866512910094e-09,0.0799999942625644,4.57491577173595e-08,4.50883008012942e-07,8.99621878727618e-08,6.87696427581409e-11,5.20835111150694e-10,3.94714080864622e-07,-9.85431354396292e-10,1.15229006878791e-09,9.20704484827852e-10,-1.45716771985855e-10,2.85362011769253e-10,-4.94396190586126e-10 +4.06,-2.00465389556953e-06,-1.34789431829527e-06,1.41403917101532e-06,4.33390850984594e-10,2.24939525339529e-09,0.0799989336829378,-3.16780412665216e-09,2.33722329684412e-09,8.43529239513602e-10,6.85007606193645e-11,5.21419712962098e-10,-1.21178067580261e-09,6.85690631878597e-06,-5.72206344804088e-06,-2.74787022563149e-05,-1.11455983327694e-10,2.44596010141654e-10,-1.97406466173391e-05 +4.062,-1.0590752184958e-08,1.14096662846841e-08,3.67503074499842e-09,4.33580400749367e-10,2.25075080795278e-09,0.0799999942577173,7.31767829925065e-08,4.27994754220776e-07,-1.99526211525103e-08,6.832381882483e-11,5.21813495191261e-10,3.15751494395257e-07,-9.04007771594496e-10,1.05774763960684e-09,7.24247051267313e-10,-7.32920668562348e-11,2.48065457093662e-10,-4.37150316013515e-10 +4.064,-2.00436118843756e-06,-1.34618233927838e-06,1.41395936053071e-06,4.33664146259893e-10,2.25148250737606e-09,0.0799989349459438,-3.17142015773854e-09,2.34145428740255e-09,8.46426227718671e-10,6.82075923519396e-11,5.22411974790473e-10,-1.21352927706666e-09,1.07590787407728e-05,-6.24789196076601e-06,-3.08614301648679e-05,-5.46437894970624e-11,2.58907478760564e-10,-2.92120702627582e-05 +4.066,-1.06034378655889e-08,1.14190321018337e-08,3.67841644990929e-09,4.33853231118775e-10,2.25284045585195e-09,0.0799999942528632,1.16213097955593e-07,4.03003186377714e-07,-1.43398341811968e-07,6.81052436668418e-11,5.22849125106303e-10,1.98903213344237e-07,-8.26704156343915e-10,9.35883315159205e-10,5.36029554029728e-10,-4.25007251652075e-11,1.79110198865582e-10,-4.70110061922247e-10 +4.068,-2.00389633604574e-06,-1.34457032653287e-06,1.41338576716346e-06,4.33936567234561e-10,2.25357390387648e-09,0.0799989357415566,-3.17472697436392e-09,2.34519782066318e-09,8.4857034593479e-10,6.80375894512787e-11,5.23128415585935e-10,-1.21540971731435e-09,1.46136157646047e-06,-1.30010175801913e-05,-2.0370768656985e-05,-2.1250362576933e-11,1.70436581543757e-10,-3.26844272133142e-05 +4.07,-1.06161367734864e-08,1.14284128931164e-08,3.68181073129303e-09,4.3412538147658e-10,2.25493296951429e-09,0.0799999942480016,1.22058544261435e-07,3.50999116056943e-07,-2.24881416439917e-07,6.80202422165341e-11,5.23530871432478e-10,6.81655044909654e-08,-7.7325298959304e-10,9.21788687177558e-10,3.91830665183454e-10,4.33680869371974e-12,1.69135538936812e-10,-3.85975973472401e-10 +4.072,-2.00340810186869e-06,-1.34316633006865e-06,1.4124862414977e-06,4.34208648203427e-10,2.25566802736221e-09,0.0799989360142187,-3.17781998632229e-09,2.34888497541189e-09,8.50137668595524e-10,6.80549366860536e-11,5.23804957741683e-10,-1.21695362120824e-09,-9.2349733546768e-07,-1.28841449228479e-05,-1.2334744987548e-05,2.1684043445932e-11,1.56558793677844e-10,-3.0650136942371e-05 +4.074,-1.06288480534317e-08,1.1437808433018e-08,3.68521128196742e-09,4.34397601223324e-10,2.25702818934526e-09,0.0799999942431337,1.18364554919565e-07,2.99462536365558e-07,-2.74220396390104e-07,6.81069783903178e-11,5.24157106607189e-10,-5.44350432785051e-08,-7.53357879374969e-10,9.09862463019246e-10,2.98155597386254e-10,2.77555756118453e-11,1.8344700755542e-10,-4.52762827162274e-10 +4.076,-2.00293464364901e-06,-1.34196847992318e-06,1.41138935991214e-06,4.34481076116988e-10,2.25776465578864e-09,0.0799989357964785,-3.18083341783979e-09,2.35252442526397e-09,8.51330290985069e-10,6.8165958988501e-11,5.24538745771904e-10,-1.21876467251689e-09,-4.92461778820627e-06,-1.24956852590702e-05,-2.62866855020717e-06,5.29090660210736e-11,1.71303943281797e-10,-2.45582590721634e-05 +4.078,-1.0641571387103e-08,1.14472185307191e-08,3.68861660313136e-09,4.34670265059278e-10,2.25912634432834e-09,0.0799999942382587,9.86660837667378e-08,2.49479795329271e-07,-2.84735070590934e-07,6.83186146544021e-11,5.24842322380317e-10,-1.5266807956717e-07,-7.46906876802053e-10,8.92948909389854e-10,2.29200339310739e-10,6.72205346978988e-11,1.43548367666229e-10,-3.99853761280423e-10 +4.08,-2.00253997931395e-06,-1.34097056074187e-06,1.41025041962978e-06,4.34754350575606e-10,2.25986402507816e-09,0.0799989351858062,-3.183821045347e-09,2.35609622090153e-09,8.52247092342312e-10,6.84348411272926e-11,5.25112939242569e-10,-1.22036408756201e-09,-5.60006630911788e-06,-9.2985866402689e-06,3.81416534642379e-06,5.46437894894788e-11,1.33140026752076e-10,-1.62745632942189e-05 +4.082,-1.06543066712844e-08,1.14566429156027e-08,3.69202559150072e-09,4.34944004423787e-10,2.26122679608531e-09,0.0799999942333772,7.62658185302687e-08,2.122854487682e-07,-2.6947840920524e-07,6.853718981236e-11,5.25374882487325e-10,-2.17766332744038e-07,-7.65500943706495e-10,9.53881071221739e-10,2.18358317491226e-10,7.67615138081588e-11,1.68701858009568e-10,-4.51028103686142e-10 +4.084,-2.00223491603983e-06,-1.34012141894679e-06,1.40917250599296e-06,4.35028499334855e-10,2.26196552460811e-09,0.0799989343147408,-3.18688304912182e-09,2.35991174518642e-09,8.53120525612277e-10,6.87418871825252e-11,5.25787746674607e-10,-1.22216819997676e-09,-5.53404305887315e-06,-5.74555225444015e-06,7.97457325866947e-06,7.54604712087955e-11,1.83880688482705e-10,-7.59016807739918e-06 +4.086,-1.06670542034809e-08,1.14660825625834e-08,3.69543807360317e-09,4.35218971972517e-10,2.26332994707201e-09,0.0799999942284886,5.41296462947736e-08,1.89303239750437e-07,-2.37580116170559e-07,6.88390316971952e-11,5.26110405241256e-10,-2.48127005053638e-07,-8.02255397707651e-10,9.89442902741488e-10,2.32886626697294e-10,6.67868538289369e-11,1.34441069417427e-10,-4.38885039490061e-10 +4.088,-2.00201839745465e-06,-1.33936420598779e-06,1.40822218552827e-06,4.35303855461644e-10,2.26406996622908e-09,0.0799989333222328,-3.19009207071265e-09,2.36386951679738e-09,8.54052072119066e-10,6.9009034597841e-11,5.26325510952277e-10,-1.22392374013472e-09,-4.01380583501346e-06,-1.8290462460679e-06,9.08404016072769e-06,7.71951946771442e-11,1.37476835441967e-10,1.0413284819145e-07 +4.09,-1.06798145717638e-08,1.14755380406506e-08,3.69885428189165e-09,4.35495008110909e-10,2.26543524911582e-09,0.0799999942235929,3.80744229547216e-08,1.81987054766166e-07,-2.01243955527652e-07,6.91478124759038e-11,5.26660312583024e-10,-2.47710473660873e-07,-8.27679938298221e-10,1.02413737199838e-09,2.81675724364243e-10,7.15573433801966e-11,1.9168694406618e-10,-4.61436444541795e-10 +4.092,-2.00186609976283e-06,-1.33863625776873e-06,1.40741720970616e-06,4.35580446711548e-10,2.26617660747941e-09,0.0799989323313909,-3.19340279046585e-09,2.36796606628538e-09,8.55178775016523e-10,6.92952639713618e-11,5.27092258728542e-10,-1.22576948591288e-09,-2.19475408983757e-06,1.43133681991158e-06,8.15406726513692e-06,7.41594286018485e-11,1.97324795421601e-10,5.95182236827485e-06 +4.094,-1.06925881829256e-08,1.14850099049157e-08,3.70227499699172e-09,4.35772189166794e-10,2.26754361815074e-09,0.0799999942186898,2.92954065953703e-08,1.87712402045813e-07,-1.68627686467101e-07,6.94444501903112e-11,5.2744961176471e-10,-2.23903184187771e-07,-8.54676572747744e-10,1.07119174654742e-09,2.96854554874075e-10,6.72205346979635e-11,1.69135538937019e-10,-4.4929338034613e-10 +4.096,-2.00174891813645e-06,-1.33788540816054e-06,1.40674269896029e-06,4.35858224512309e-10,2.26828640592647e-09,0.0799989314357782,-3.19682149675684e-09,2.37225083327157e-09,8.56366193236019e-10,6.95641461101536e-11,5.2776880088429e-10,-1.22756665943427e-09,-2.81060114418258e-07,3.86730079383975e-06,5.81189523590892e-06,5.76795555762417e-11,1.66099772824823e-10,9.61725837856021e-06 +4.098,-1.07053754689126e-08,1.14944989082488e-08,3.70570046176466e-09,4.36050445751235e-10,2.26965469335427e-09,0.0799999942137795,2.81711661376974e-08,2.0318160522117e-07,-1.45380105523468e-07,6.96751684126161e-11,5.28114010856009e-10,-1.85434150673534e-07,-8.74788522692492e-10,1.07964852322935e-09,3.44125769499374e-10,5.89805981793502e-11,1.90385901459162e-10,-4.71844785397553e-10 +4.1,-2.0016362334719e-06,-1.33707268173966e-06,1.4061611785382e-06,4.36136925185959e-10,2.27039886196989e-09,0.0799989306940416,-3.20032065084761e-09,2.37656942736448e-09,8.57742696314016e-10,6.9800068502871e-11,5.28530344490127e-10,-1.22945403857586e-09,1.20834825435315e-06,5.24015921799102e-06,3.01583736283435e-06,6.24500451312839e-11,2.05131051004895e-10,1.11815227216228e-05 +4.102,-1.0718176751516e-08,1.15040051859583e-08,3.70913143254992e-09,4.36329646025246e-10,2.27176881473223e-09,0.0799999942088617,3.30045591551106e-08,2.24142242093136e-07,-1.33316756072129e-07,6.99249685931413e-11,5.28934535060029e-10,-1.40708059787038e-07,-8.79233751954762e-10,1.06316865047121e-09,3.64291930002729e-10,6.15826834010504e-11,1.91253263255786e-10,-4.61436444678073e-10 +4.104,-2.00150421523528e-06,-1.33617611277129e-06,1.40562791151391e-06,4.36416625060332e-10,2.27251460011013e-09,0.0799989301312093,-3.20383758585543e-09,2.38082210196637e-09,8.59199864034027e-10,7.00463992364752e-11,5.2929535754315e-10,-1.23129978435457e-09,2.14968207080829e-06,5.65439882417565e-06,4.08629293589438e-07,5.42101086281683e-11,1.77375475448013e-10,1.10013343920747e-05 +4.106,-1.07309921018595e-08,1.15135284743662e-08,3.71256823200605e-09,4.36609831622192e-10,2.27388599616241e-09,0.0799999942039365,4.16032874383428e-08,2.46759837389837e-07,-1.31682238897771e-07,7.01418090276539e-11,5.29644036961821e-10,-9.6702722218744e-08,-8.81944257030483e-10,1.06815598020059e-09,3.79687600756722e-10,4.55364912405026e-11,2.05998412742852e-10,-4.84855211467173e-10 +4.108,-2.00133780208552e-06,-1.33518907342173e-06,1.40510118255832e-06,4.36697192296442e-10,2.27463317625798e-09,0.0799989297443985,-3.20736536288355e-09,2.38509472588717e-09,8.60718614437054e-10,7.02285452014372e-11,5.30119351194121e-10,-1.23323920520044e-09,2.46544944832649e-06,5.26479944708181e-06,-1.53123455754534e-06,3.20923843016705e-11,2.28116137061508e-10,9.56956389131281e-06 +4.11,-1.0743821563311e-08,1.15230688532697e-08,3.7160111064638e-09,4.36890745802998e-10,2.27600647356718e-09,0.0799999941990035,5.14650852316498e-08,2.67819035178166e-07,-1.37807177127953e-07,7.02701785648606e-11,5.30556501510067e-10,-5.84244666534885e-08,-8.74571682613488e-10,1.04343617093238e-09,3.87710696928594e-10,3.72965547374004e-11,2.0903417888465e-10,-4.41487124704549e-10 +4.112,-2.0011319417446e-06,-1.33411779728101e-06,1.40454995384981e-06,4.36978273010702e-10,2.27675540226402e-09,0.0799989295107006,-3.210863649614e-09,2.3892684705709e-09,8.62269457224769e-10,7.03777314203868e-11,5.3095548790966e-10,-1.23500515369926e-09,2.25966917703757e-06,4.32884153871354e-06,-2.6248972613634e-06,5.16080234142222e-11,1.90385901517944e-10,7.40106413654578e-06 +4.114,-1.07566650179095e-08,1.1532625927152e-08,3.7194601842927e-09,4.3717225672868e-10,2.27813029551882e-09,0.0799999941940635,6.05037619397991e-08,2.85134401333018e-07,-1.48306766173406e-07,7.04766106585175e-11,5.31318045116139e-10,-2.88202101073086e-08,-8.6990961291548e-10,1.04473721327438e-09,3.89011739439943e-10,4.38017677645062e-11,1.99059518838841e-10,-4.57099635851335e-10 +4.116,-2.00088992669684e-06,-1.33297725967568e-06,1.40395672678512e-06,4.37260179453336e-10,2.27888067444448e-09,0.0799989293954197,-3.21434328806566e-09,2.393447419424e-09,8.63825504182528e-10,7.05529384914448e-11,5.31751725985015e-10,-1.23683355224266e-09,1.68340699452694e-06,3.09548285440122e-06,-2.89364626009592e-06,3.25260651706453e-11,1.81278603210036e-10,4.95352023288702e-06 +4.118,-1.07695223910617e-08,1.15421997168297e-08,3.72291548630943e-09,4.37454468482645e-10,2.28025730242276e-09,0.0799999941891162,6.72373899179076e-08,2.97516332750625e-07,-1.59881351213791e-07,7.06067149192001e-11,5.32043159528979e-10,-9.00612917575826e-09,-8.57387078180009e-10,9.93562870998574e-10,3.90529622577237e-10,3.12250225714984e-11,1.80411241531114e-10,-4.50160742084639e-10 +4.12,-2.00062097713716e-06,-1.33178719434468e-06,1.40331720138026e-06,4.37542606313013e-10,2.2810088470826e-09,0.0799989293593952,-3.21777283637838e-09,2.39742167090799e-09,8.65387622672837e-10,7.06778385817308e-11,5.3247337095114e-10,-1.238634195211e-09,9.28615040769516e-07,1.79497952961264e-06,-2.51909734392652e-06,3.68628738684339e-11,2.2030988147865e-10,2.58429302263392e-06 +4.122,-1.07823934824072e-08,1.15517894035133e-08,3.72637703680012e-09,4.37737179836972e-10,2.28238719590657e-09,0.0799999941841616,7.09518500809853e-08,3.04696250869075e-07,-1.69957740589496e-07,7.07541664146738e-11,5.32924399054894e-10,1.33104291477629e-09,-8.51911856851804e-10,1.00353753071952e-09,3.75784472935437e-10,4.68375338474498e-11,1.91686944065887e-10,-4.59701721065093e-10 +4.124,-2.00033716973684e-06,-1.3305684093412e-06,1.4026373704179e-06,4.37825622978671e-10,2.28314054467882e-09,0.0799989293647194,-3.22118048380579e-09,2.40143582103087e-09,8.66890760564579e-10,7.08651887171206e-11,5.33240118727403e-10,-1.24047300209526e-09,1.66225757113246e-07,6.02263031096056e-07,-1.75013454248713e-06,3.59955121225824e-11,1.73906028437032e-10,5.36811914364305e-07 +4.126,-1.07952782043425e-08,1.15613951467974e-08,3.72984459984238e-09,4.38020640591841e-10,2.28452015638148e-09,0.0799999941791998,7.16167531094384e-08,3.07105302993459e-07,-1.76958278759445e-07,7.08981484631642e-11,5.33620023168642e-10,3.47829057223375e-09,-8.52453958295614e-10,9.97682839254536e-10,3.79037079549047e-10,1.73472347637017e-11,2.168404345267e-10,-4.45823933394904e-10 +4.128,-2.0000507027244e-06,-1.32933998812923e-06,1.40192953730287e-06,4.38109215572524e-10,2.28527502477149e-09,0.0799989293786326,-3.22459029963897e-09,2.40542655238789e-09,8.68406908882775e-10,7.09345776561754e-11,5.3410748046551e-10,-1.24225629782884e-09,-4.70225366886886e-07,-3.64924670326025e-07,-8.42028270036113e-07,3.1658703440519e-11,2.09467859753872e-10,-1.05155380930592e-06 +4.13,-1.0808176565541e-08,1.1571016853007e-08,3.73331822747791e-09,4.38304378902465e-10,2.28665658630334e-09,0.0799999941742307,6.9735851641891e-08,3.05645604312155e-07,-1.80326391839589e-07,7.10247832769262e-11,5.34457894607657e-10,-7.27924664989468e-10,-8.50881864787633e-10,9.86623976828225e-10,3.77952877280228e-10,4.20670442885002e-11,1.91253263196789e-10,-4.09394740261554e-10 +4.132,-1.99977175931784e-06,-1.32811740571198e-06,1.40120823173551e-06,4.38393314705632e-10,2.28741285634992e-09,0.0799989293757209,-3.22799382709812e-09,2.4093730482952e-09,8.69918720391896e-10,7.11028458333294e-11,5.34872493518297e-10,-1.24389387678989e-09,-9.02200514820765e-07,-1.04701447166685e-06,-3.6212352460956e-09,3.85975973365344e-11,1.86482773637811e-10,-2.13080421362869e-06 +4.134,-1.08210885408494e-08,1.15806543452002e-08,3.73679790235948e-09,4.38588790285799e-10,2.28879607627741e-09,0.0799999941692552,6.61270495826076e-08,3.01457546425487e-07,-1.80340876780573e-07,7.11791736662724e-11,5.35203825702209e-10,-9.2511415195052e-09,3.42094516774956e-08,-2.97960441041128e-08,-1.62944744502363e-08,3.08563938289769e-09,-6.30051566471806e-09,1.74686654030174e-08 +4.136,-1.9995072511195e-06,-1.32691157552628e-06,1.40048686822838e-06,4.38678031400297e-10,2.28955367165273e-09,0.0799989293387163,-3.09115602038813e-09,2.29018887187874e-09,8.04740822590943e-10,8.34454033649215e-11,5.09670430859422e-10,-1.17401921517781e-09,-0.0186314751959889,-0.011109195313232,0.0137619713639256,5.12524050977855e-09,-1.18269109783138e-08,-0.0260496516822697 +4.138,-1.0833453164931e-08,1.15898151006877e-08,3.74001686564984e-09,4.38922571899258e-10,2.29083475800085e-09,0.0799999941645591,-7.4459773734365e-05,-4.41353237064977e-05,5.48675445789159e-05,9.16801357053843e-11,4.87896181788959e-10,-0.000104207857870587,-1.4331526416828e-08,1.84145233782356e-08,2.58864110698172e-09,1.02348685082168e-09,3.83590728622542e-09,-1.23772520010293e-08 +4.14,-2.29734634605693e-06,-1.50345287035225e-06,1.61995704654402e-06,4.39044751943118e-10,2.29150525637989e-09,0.0799985125072848,-3.14848212605543e-09,2.36384696539167e-09,8.15095387018869e-10,8.75393507682078e-11,5.25014060004322e-10,-1.22352822318192e-09,0.0396305986867796,0.0222355832774054,-0.0309737709757812,-2.83497184061955e-09,1.50292105149636e-08,0.0423342017006089 +4.142,-1.08460470934352e-08,1.15992704885493e-08,3.74327724719792e-09,4.39272729302331e-10,2.29293481424087e-09,0.079999994159665,8.40626210127711e-05,4.48070094031338e-05,-6.90275393242227e-05,8.03402483429049e-11,5.4801302384882e-10,6.51289489318679e-05,-2.76974623793584e-08,1.8340363949896e-08,1.36390464894784e-08,-4.49813797320299e-09,2.9720149952464e-09,-1.08576342362067e-08 +4.144,-1.96109586200581e-06,-1.3242248327397e-06,1.3438468892471e-06,4.3936611293649e-10,2.29369730847528e-09,0.0799987730230805,-3.25927197557288e-09,2.43720842119126e-09,8.69651572976789e-10,6.95467988753938e-11,5.36902119985309e-10,-1.26695876012675e-09,-0.03126524369821,-0.0183461927863117,0.0247944192837741,-4.34244654123544e-09,-3.36536354336534e-09,-0.0157947785840022 +4.146,-1.08590841813375e-08,1.1609019322234e-08,3.74675585348982e-09,4.39550916497833e-10,2.29508242272081e-09,0.0799999941545971,-4.09983537800553e-05,-2.8577761742105e-05,3.01501378108629e-05,6.2970462177965e-11,5.3455156967536e-10,1.94983459586594e-06,-1.00280569436806e-08,6.99006824631324e-09,8.61333573904555e-09,-2.20049672928044e-09,1.67921232471575e-09,-2.62116717213062e-09 +4.148,-2.12508927712601e-06,-1.4385358797081e-06,1.46444744049054e-06,4.39617994785202e-10,2.29583551475399e-09,0.0799987808224189,-3.2993842033476e-09,2.46516869417651e-09,9.04104915932967e-10,6.07448119582731e-11,5.43618969284171e-10,-1.27744342881527e-09,0.016971845817505,0.0128291121471815,-0.0111185846204858,-7.40293243376435e-10,3.84458090360308e-09,0.00464442005687512 +4.15,-1.08722817181509e-08,1.16188799970107e-08,3.75037227315356e-09,4.39793895745666e-10,2.29725689859794e-09,0.0799999941494874,2.68890294899721e-05,2.2738686846627e-05,-1.43242006710854e-05,6.0009289204459e-11,5.49929893289774e-10,2.05275148233685e-05,-1.24910932310373e-09,2.65976476967825e-09,4.36998527647028e-09,-3.57353036047851e-10,1.1787446019564e-09,1.48318857125121e-10 +4.152,-2.01753315916611e-06,-1.34758113232158e-06,1.40715063780619e-06,4.3985803194202e-10,2.29803523432714e-09,0.0799988629324782,-3.30438064064001e-09,2.47580775325523e-09,9.2158485703885e-10,5.93153998140815e-11,5.48333947691997e-10,-1.27685015338677e-09,-0.00844450071874833,-0.0057384024966696,0.00568167431744132,-4.33680868661115e-12,-3.45209971688946e-10,-0.00204065686657609 +4.154,-1.08854992407134e-08,1.16287832280237e-08,3.75405861258171e-09,4.40031157344922e-10,2.29945023438871e-09,0.07999999414438,-6.88897338501748e-06,-2.14923140048919e-07,8.4024965986774e-06,5.99919419697125e-11,5.48549053403018e-10,1.2364887357065e-05,2.25015318895988e-09,3.46944681453862e-12,9.29594942637915e-10,5.41233724501473e-10,5.52075746199177e-10,1.11282510991002e-09 +4.156,-2.04508905270618e-06,-1.34844082488178e-06,1.4407606242009e-06,4.40097999709899e-10,2.30022943054076e-09,0.0799989123920277,-3.29538002788417e-09,2.47582163104249e-09,9.25303236809401e-10,6.14803347120871e-11,5.50542250676794e-10,-1.27239885294713e-09,0.00396488400547765,0.00217874329428527,-0.00329589803929928,8.09682182408666e-10,8.04044331084632e-10,-0.00139544619696295 +4.158,-1.0898680760825e-08,1.16386865145479e-08,3.75775982552895e-09,4.40277078683771e-10,2.30165240339142e-09,0.0799999941392904,8.97056263689491e-06,8.50005003709313e-06,-4.78109555852121e-06,6.32306706993475e-11,5.51765230727357e-10,6.78310256921257e-06,2.84050127151185e-09,-1.47364759270482e-09,-1.4851401358193e-09,8.14886352843517e-10,-9.58434720171539e-11,1.11802928019641e-09 +4.16,-2.0092068021586e-06,-1.3144406247334e-06,1.42163624196681e-06,4.40350922392696e-10,2.30243649146367e-09,0.0799989395244379,-3.28401802279812e-09,2.46992704067167e-09,9.19362676266124e-10,6.47398801234616e-11,5.50158876788725e-10,-1.26792673582635e-09,-0.00233632406254409,-0.00204011216644107,0.00117486862556345,7.97105437215027e-10,-6.16694195679269e-10,-0.00122408762553278 +4.162,-1.09118168329161e-08,1.16485662227106e-08,3.76143727623401e-09,4.40536038204264e-10,2.30385303889857e-09,0.0799999941342187,-3.74733613280442e-07,3.39601371329749e-07,-8.16210562679199e-08,6.64190924482073e-11,5.4929845394464e-10,1.88675206708198e-06,2.33862408623347e-09,-1.97975316709565e-09,-2.78856798768374e-09,8.36136715417223e-10,-4.88324658518001e-10,8.65627014582781e-10 +4.164,-2.01070573661172e-06,-1.31308221924809e-06,1.42130975774174e-06,4.40616598762489e-10,2.30463368527944e-09,0.0799989470714462,-3.27466352645319e-09,2.46200802800328e-09,9.0820840431539e-10,6.80844269851301e-11,5.48205578154653e-10,-1.26446422776802e-09,0.000863528953475285,0.000278958449222074,-0.000902589253554272,8.2702941716807e-10,-4.47992337701411e-10,-0.000659038252789858 +4.166,-1.0924915487022e-08,1.16584142548226e-08,3.76507010985128e-09,4.40808375912205e-10,2.30604586121119e-09,0.0799999941291608,3.07938220062108e-06,1.45543516821817e-06,-3.69197807048541e-06,6.972721011688e-11,5.47506484593835e-10,-7.49400944077743e-07,1.64375891352352e-09,-1.83577111831577e-09,-3.14765574710949e-09,7.54171031184697e-10,-6.39679281736029e-10,4.50160741945828e-10 +4.168,-1.99838820780923e-06,-1.30726047857521e-06,1.4065418454598e-06,4.40895507602956e-10,2.30682371121782e-09,0.0799989440738424,-3.2680884907991e-09,2.45466494353002e-09,8.9561778132695e-10,7.11011111098692e-11,5.45646861027709e-10,-1.26266358480023e-09,-0.000682442484413352,-0.000554635963025171,0.000397000847994371,6.85649453883857e-10,-6.96925156443438e-10,-0.000267603468030831 +4.17,-1.09379878409852e-08,1.16682329145967e-08,3.76865258097658e-09,4.41092780356644e-10,2.3082284486553e-09,0.0799999941241101,3.49612262967977e-07,-7.6310868388227e-07,-2.1039746785081e-06,7.24698079324151e-11,5.44718783968061e-10,-1.81981481620095e-06,9.74589333028583e-10,-1.2277505402589e-09,-2.77165443379165e-09,6.44016090452441e-10,-5.65086172329725e-10,1.82145965047637e-10 +4.172,-1.99698975875736e-06,-1.31031291331074e-06,1.39812594674577e-06,4.41185386834686e-10,2.30900258635369e-09,0.0799989367945832,-3.26419013346698e-09,2.44975394136899e-09,8.84531163591785e-10,7.36771754716787e-11,5.4338651633839e-10,-1.26193500094004e-09,0.000136541503797888,0.000111816473181304,-3.52091942839586e-05,5.69422980985236e-10,-4.6967638115086e-10,-3.09566990096574e-05 +4.174,-1.0951044601519e-08,1.16780319303622e-08,3.77219070563095e-09,4.41387489058531e-10,2.31040199472066e-09,0.0799999941190624,8.95778278159589e-07,-3.15842791157004e-07,-2.24481145564395e-06,7.47474998563563e-11,5.42840078443458e-10,-1.94364161223959e-06,3.42445255998356e-10,-3.69496100247051e-10,-1.91470103656031e-09,4.74446870683746e-10,-3.5344990820012e-10,-9.88792382007188e-11 +4.176,-1.99340664564472e-06,-1.31157628447537e-06,1.38914670092319e-06,4.41484376834111e-10,2.31117394666747e-09,0.0799989290200167,-3.26282035244299e-09,2.448275956968e-09,8.76872359445543e-10,7.55749629544139e-11,5.4197271670559e-10,-1.26233051789285e-09,-0.000234261053643546,-7.96226045166399e-05,0.000296147815905614,3.85975973409073e-10,-2.79724160471176e-10,8.26733403957105e-05 +4.178,-1.09640958829288e-08,1.16878250341901e-08,3.77569819506873e-09,4.41689788910349e-10,2.31256988558748e-09,0.0799999941140131,-4.12659364144908e-08,-6.34333209223529e-07,-1.06022019202163e-06,7.62914037499924e-11,5.41721181801573e-10,-1.61294825065679e-06,-2.58582217956669e-10,4.62737487080896e-10,-8.85576334534829e-10,3.10081821326659e-10,-8.0230960793999e-11,-3.5648567424317e-10 +4.18,-1.99357170939038e-06,-1.31411361731226e-06,1.3849058201551e-06,4.41789542449111e-10,2.31334083139467e-09,0.0799989225682237,-3.26385468131482e-09,2.45012690691632e-09,8.73330054107404e-10,7.68152902397204e-11,5.41651792862414e-10,-1.26375646058982e-09,-4.87058581400213e-06,8.53973610576314e-05,0.000147034181271375,2.24213009265719e-10,1.12757025637851e-11,0.000128065887755663 +4.182,-1.09771513016541e-08,1.16976255418177e-08,3.77919151528516e-09,4.41997050071308e-10,2.31473649275893e-09,0.0799999941089581,-6.07482796705015e-08,-2.92743764992965e-07,-4.7208346693606e-07,7.71882557870554e-11,5.41766284611828e-10,-1.10068469963408e-06,-8.02201187603191e-10,1.15012166470867e-09,6.17995238801345e-11,1.36609473737436e-10,1.04517089457654e-10,-4.97865637675495e-10 +4.184,-1.99381470250906e-06,-1.31528459237223e-06,1.38301748628736e-06,4.4209829547226e-10,2.31550789653312e-09,0.0799989181654849,-3.26706348606523e-09,2.45472739357516e-09,8.73577252202925e-10,7.73617281346702e-11,5.42069861220244e-10,-1.26574792314052e-09,-7.00200118155921e-05,3.20357273694746e-05,0.000167196732587399,4.07660016897472e-11,1.89084858911582e-10,0.000136856586827019 +4.186,-1.09902195555983e-08,1.1707444451392e-08,3.78268582429397e-09,4.42306496983846e-10,2.31690477220381e-09,0.0799999941038951,-3.40828326932839e-07,-1.64600855515081e-07,1.96703463413461e-07,7.73513197938143e-11,5.42522624047474e-10,-5.53258352326064e-07,-1.20444019323282e-09,1.65145674899362e-09,7.97539118031854e-10,-2.34187669299805e-11,2.84494650030113e-10,-6.51388665159052e-10 +4.188,-1.99517801581679e-06,-1.31594299579429e-06,1.38380430014101e-06,4.42407700751435e-10,2.31767798702931e-09,0.0799989159524515,-3.27188124683816e-09,2.46133322057113e-09,8.76767408675052e-10,7.72680530669503e-11,5.43207839820365e-10,-1.26835347780116e-09,1.1590707939892e-05,6.81189753041983e-05,6.90413962979322e-05,-8.23993651131737e-11,3.32633226488349e-10,0.000124143920837708 +4.19,-1.10033070805857e-08,1.17172897842743e-08,3.78619289392867e-09,4.42615569196114e-10,2.31907760356309e-09,0.0799999940988217,-2.94465495173266e-07,1.07875045701743e-07,4.7286904860522e-07,7.70217223333616e-11,5.43853156953428e-10,-5.66826689751768e-08,-1.43239370036084e-09,1.85181731074183e-09,1.27155230793966e-09,-1.21430643314088e-10,4.09394740360673e-10,-6.94756752199099e-10 +4.192,-1.99635587779749e-06,-1.31551149561149e-06,1.38569577633543e-06,4.42715787640768e-10,2.31985339965712e-09,0.0799989157257208,-3.2776108216396e-09,2.4687404898141e-09,8.81853617906811e-10,7.67823304936939e-11,5.44845418781807e-10,-1.27113250480995e-09,1.03374399968782e-05,4.65961305998348e-05,2.69397303944197e-05,-1.53089346750711e-10,4.41053443797396e-10,9.72672983823491e-05 +4.194,-1.10164175238722e-08,1.17271647462336e-08,3.7897203084003e-09,4.42922698518089e-10,2.32125698523822e-09,0.0799999940937371,-2.53115735185758e-07,2.94259568101062e-07,5.80627970182887e-07,7.64093649463588e-11,5.45617370728617e-10,3.32386524554177e-07,-1.47993596526079e-09,1.8470468209093e-09,1.43244791023889e-09,-1.76941794553896e-10,4.41487124605851e-10,-6.72205346870466e-10 +4.196,-1.99736834073823e-06,-1.31433445733908e-06,1.38801828821616e-06,4.43021425100554e-10,2.32203586914004e-09,0.0799989170552669,-3.28353056550065e-09,2.47612867709773e-09,8.87583409547766e-10,7.60745633154784e-11,5.46611367280231e-10,-1.27382132619743e-09,3.55975544722815e-05,4.39597798266871e-05,-2.63771797373149e-05,-1.8171228411277e-10,4.11129463776136e-10,6.25424512526127e-05 +4.198,-1.10295516461342e-08,1.1737069260942e-08,3.79327064203849e-09,4.43226996771351e-10,2.32344343070734e-09,0.0799999940886418,-1.10725517296616e-07,4.7009868740783e-07,4.75119251233616e-07,7.56825158099077e-11,5.47261888583722e-10,5.82556329564655e-07,-1.39233243008812e-09,1.6479873023154e-09,1.37520203562988e-09,-1.87783816270265e-10,3.707971430204e-10,-6.47919218348041e-10 +4.2,-1.99781124280742e-06,-1.31245406258945e-06,1.3899187652211e-06,4.43324155163793e-10,2.32422491669437e-09,0.0799989193854922,-3.289099895221e-09,2.482720626307e-09,8.93084217690286e-10,7.53234280503972e-11,5.48094555852312e-10,-1.27641300307083e-09,3.15520375668643e-05,2.49322017025249e-05,-4.77725855835811e-05,-1.62196644999668e-10,4.03756889064071e-10,2.66581375030599e-05 +4.202,-1.10427080457151e-08,1.17470001434472e-08,3.79684297890925e-09,4.43528290483552e-10,2.32563580893075e-09,0.0799999940835362,1.54826329708275e-08,5.69827494217919e-07,2.84028908899312e-07,7.50337292299091e-11,5.48876916139978e-10,6.89188879576883e-07,-1.22438951320531e-09,1.40642705801042e-09,1.16226472885488e-09,-1.48752538069193e-10,3.8033812207748e-10,-5.17814957508203e-10 +4.204,-1.99774931227553e-06,-1.31017475261258e-06,1.3910548808567e-06,4.43624290080713e-10,2.32642042435893e-09,0.0799989221422478,-3.29399745327382e-09,2.48834633453904e-09,8.97733276605705e-10,7.47284178981205e-11,5.49615908340622e-10,-1.27848426290086e-09,2.89906421351636e-05,1.13486676652999e-05,-5.78828094396245e-05,-1.38344197213284e-10,3.23092247370142e-10,-4.3958369930581e-06 +4.206,-1.10558840355282e-08,1.17569535287854e-08,3.80043391201568e-09,4.43827204155145e-10,2.32783427256411e-09,0.0799999940784222,1.31445201511495e-07,6.15222164879123e-07,5.24976711407884e-08,7.44803524410559e-11,5.50169285129459e-10,6.71605531604649e-07,-1.03362414132185e-09,1.17007098468447e-09,9.07694058854704e-10,-1.09721259851385e-10,2.72785266627876e-10,-5.42968448051714e-10 +4.208,-1.99722353146949e-06,-1.30771386395306e-06,1.39126487154126e-06,4.43922211490477e-10,2.32862110149945e-09,0.0799989248286699,-3.29813194983911e-09,2.49302661847778e-09,9.01364052841124e-10,7.42895328587149e-11,5.50707049407134e-10,-1.28065613669307e-09,1.73387683876446e-05,-3.3937518593651e-06,-5.09678124358065e-05,-9.71445146505889e-11,2.54570670130178e-10,-2.67197193190258e-05 +4.21,-1.10690765633276e-08,1.17669256352593e-08,3.80403936822704e-09,4.4412436228658e-10,2.33003710076174e-09,0.0799999940732996,2.00800275062066e-07,6.01647157441665e-07,-1.51373578602415e-07,7.40917743824536e-11,5.51187567809979e-10,5.64726654328558e-07,-8.67741208565752e-10,9.12030867356354e-10,6.50738143875775e-10,-7.06899816501792e-11,2.55004350938013e-10,-3.85975973333745e-10 +4.212,-1.99642033036924e-06,-1.3053072753233e-06,1.39065937722685e-06,4.44218578588007e-10,2.33082585177069e-09,0.0799989270875765,-3.30160291467337e-09,2.4966747419472e-09,9.03967005416627e-10,7.40067729321143e-11,5.51727066810886e-10,-1.2822000405864e-09,7.03917002810422e-06,-1.27396175206601e-05,-3.73768561673897e-05,-4.25007251655338e-11,2.41560243999112e-10,-3.90061195149287e-05 +4.214,-1.10822829749863e-08,1.17769123342271e-08,3.80765523624871e-09,4.44420389378308e-10,2.33224400902898e-09,0.0799999940681708,2.28956955174486e-07,5.50688687359018e-07,-3.00881003271991e-07,7.39217714817914e-11,5.52153808785976e-10,4.08702176268826e-07,-7.56339435709127e-10,8.14886352978773e-10,4.16984155588104e-10,-2.99239799564898e-11,1.64365049379416e-10,-3.95516952593909e-10 +4.216,-1.99550450254854e-06,-1.30310452057386e-06,1.38945585321376e-06,4.44514265673934e-10,2.33303446700583e-09,0.0799989287223852,-3.30462827241621e-09,2.49993428735912e-09,9.0563494203898e-10,7.38870770122883e-11,5.52384527008404e-10,-1.28378210839678e-09,-2.90987031561191e-06,-1.83916449777734e-05,-1.99383651950036e-05,5.20417043203459e-12,1.56125112868613e-10,-4.2162738578253e-05 +4.218,-1.10955014880759e-08,1.17869120713765e-08,3.81127777601686e-09,4.44715937686357e-10,2.33445354713702e-09,0.0799999940630357,2.17317473912039e-07,4.77122107447933e-07,-3.80634464051996e-07,7.39425881635195e-11,5.5277830923745e-10,2.40051221955832e-07,-7.00611443676679e-10,7.42461647579292e-10,3.12900746929022e-10,1.90819582316434e-11,1.62196644973166e-10,-4.25874613281009e-10 +4.22,-1.99463523265289e-06,-1.30119603214407e-06,1.38793331535755e-06,4.44810036026588e-10,2.33524558024278e-09,0.0799989296825901,-3.30743071819091e-09,2.50290413394943e-09,9.06886545026696e-10,7.39634048452149e-11,5.53033313588296e-10,-1.2854856068499e-09,-9.27080249592218e-06,-1.95252954429902e-05,-4.12854429460722e-06,1.86482773626418e-11,1.48752538034285e-10,-3.84533134500978e-05 +4.222,-1.11087312109487e-08,1.17969236879123e-08,3.81490532219697e-09,4.45011791305738e-10,2.33666568039137e-09,0.0799999940578938,1.80234263928346e-07,3.99020925675963e-07,-3.97148641230427e-07,7.40171812729701e-11,5.53373319389588e-10,8.62379681554241e-08,-7.0570719425437e-10,7.63278329568676e-10,2.32452945831247e-10,4.07660016895605e-11,1.81278603270291e-10,-3.81639164786251e-10 +4.224,-1.99391429559718e-06,-1.29959994844137e-06,1.38634472079263e-06,4.4510610475168e-10,2.33745907352034e-09,0.079998930027542,-3.31025354696793e-09,2.50595724726771e-09,9.07816356810021e-10,7.41264688519731e-11,5.53758428001377e-10,-1.28701216350905e-09,-1.24903835646662e-05,-1.77026223541028e-05,7.9669187913264e-06,4.20670442965555e-11,1.62196645034584e-10,-3.06005758926606e-05 +4.226,-1.11219722251366e-08,1.18069475169014e-08,3.81853658762421e-09,4.45308297181146e-10,2.33888071410338e-09,0.0799999940527457,1.30272729669687e-07,3.2821043625956e-07,-3.65280966065125e-07,7.41854494501563e-11,5.54022105969726e-10,-3.61643354152048e-08,-7.47123716876003e-10,8.60422843945418e-10,2.37006594854925e-10,4.42354486332937e-11,1.24900090239583e-10,-4.24139889804928e-10 +4.228,-1.9933932046785e-06,-1.29828710669633e-06,1.38488359692837e-06,4.45402846549481e-10,2.33967516194422e-09,0.0799989298828846,-3.31324204183544e-09,2.50939893864349e-09,9.0876438318944e-10,7.43034106465063e-11,5.54258028362336e-10,-1.28870872306827e-09,-1.24683070942519e-05,-1.38303500596555e-05,1.49022209503139e-05,6.11490025240526e-11,1.6089560236607e-10,-2.11049858145284e-05 +4.23,-1.11352251933039e-08,1.18169851126559e-08,3.82217164515697e-09,4.45605510823732e-10,2.34109774621682e-09,0.0799999940475909,8.03995012926738e-08,2.72889036020932e-07,-3.05672082263863e-07,7.44300454602526e-11,5.5466568837919e-10,-1.20584278673328e-07,-8.10657964551369e-10,9.41087485856693e-10,2.56522234060526e-10,5.11743425454395e-11,1.90819582388214e-10,-4.55364912515412e-10 +4.232,-1.99307160667333e-06,-1.29719555055224e-06,1.38366090859932e-06,4.45700566731322e-10,2.34189382469774e-09,0.0799989294005475,-3.31648467369364e-09,2.51316328858692e-09,9.09790472125682e-10,7.4508108016688e-11,5.55021306691889e-10,-1.29053018271833e-09,-1.02514448752761e-05,-9.1877646983409e-06,1.70018237769527e-05,3.85975973446241e-11,1.51788304178774e-10,-1.18589443820576e-05 +4.234,-1.11484911319987e-08,1.18270377658103e-08,3.82581080704547e-09,4.45903543255799e-10,2.34331783144359e-09,0.0799999940424287,3.9393721791574e-08,2.36137977227572e-07,-2.3766478715606e-07,7.4584435849631e-11,5.55272841595905e-10,-1.68020056201553e-07,-8.7814954942058e-10,1.04517089413655e-09,3.30464822123083e-10,5.94142790480698e-11,1.64365049318008e-10,-4.57966997586273e-10 +4.236,-1.99291403178616e-06,-1.29625099864333e-06,1.38271024945069e-06,4.4599890447472e-10,2.34411491606412e-09,0.0799989287284673,-3.31999727189132e-09,2.51734397216346e-09,9.11112331414175e-10,7.47457651328803e-11,5.55678766889161e-10,-1.29236205070867e-09,-6.73607491400648e-06,-4.59204896331543e-06,1.52337983807497e-05,7.11236625108923e-11,2.11202583169314e-10,-4.02964380612579e-06 +4.238,-1.11617711210862e-08,1.18371071416989e-08,3.82945525637113e-09,4.46202526316331e-10,2.34554054651115e-09,0.0799999940372593,1.24494221355451e-08,2.17769781374309e-07,-1.76729593633054e-07,7.48689304996746e-11,5.56117651928583e-10,-1.84138631426058e-07,-9.36804887320353e-10,1.16139736730624e-09,3.62557206529725e-10,5.68121938423894e-11,2.11202583231017e-10,-5.23886489816695e-10 +4.24,-1.99286423409762e-06,-1.29537991951784e-06,1.38200333107616e-06,4.46298380196719e-10,2.34633938667184e-09,0.0799989279919128,-3.32374449144061e-09,2.52198956163269e-09,9.12562560240294e-10,7.49730139082499e-11,5.56523577222085e-10,-1.29445759666794e-09,-2.93126249184881e-06,-6.66088278271906e-07,1.10967168613567e-05,4.85722573315177e-11,2.06865774541147e-10,1.87175622222831e-06 +4.242,-1.1175066099052e-08,1.18471950999455e-08,3.83310550661209e-09,4.46502418371963e-10,2.34776664082004e-09,0.0799999940320815,7.24372168151102e-10,2.15105428261221e-07,-1.32342726187632e-07,7.50632195290007e-11,5.56945115026747e-10,-1.76651606537145e-07,-9.75890375269745e-10,1.17137202701326e-09,4.08093697672898e-10,5.4210108620113e-11,2.32019264881008e-10,-4.85722573201646e-10 +4.244,-1.99286133660895e-06,-1.29451949780479e-06,1.38147396017141e-06,4.46598633074835e-10,2.34856716713194e-09,0.0799989272853063,-3.32764805294168e-09,2.52667504974074e-09,9.14194935030985e-10,7.51898543427303e-11,5.57451654281609e-10,-1.29640048696075e-09,4.47336991667711e-07,2.31139933580679e-06,6.0456108435446e-06,4.7271214716188e-11,2.16840434466135e-10,5.82016292800264e-06 +4.246,-1.11883766912638e-08,1.18573018001444e-08,3.83676228635221e-09,4.46803177789334e-10,2.34999644743716e-09,0.0799999940268959,2.51372013482215e-09,2.24351025604449e-07,-1.08160282813451e-07,7.52523043878655e-11,5.57812476764612e-10,-1.53370954825132e-07,-9.98604411152434e-10,1.24162832807067e-09,4.33030347741456e-10,4.03323208206342e-11,1.84748050222477e-10,-5.70724023668374e-10 +4.248,-1.99285128172841e-06,-1.29362209370237e-06,1.38104131904015e-06,4.46899642292387e-10,2.350798417039e-09,0.0799989266718225,-3.33164247058629e-09,2.53164156305302e-09,9.15927056421951e-10,7.53511836260129e-11,5.58190646482499e-10,-1.29868338305542e-09,2.92401817819374e-06,4.26473960314595e-06,1.29729213482182e-06,6.98226199122618e-11,2.07299455410245e-10,8.08079471392046e-06 +4.25,-1.12017032611461e-08,1.18674283663966e-08,3.8404259945779e-09,4.47104582523838e-10,2.35222921002309e-09,0.0799999940217011,1.42097928475958e-08,2.41409984017031e-07,-1.02971114274164e-07,7.55315948675145e-11,5.58641674586253e-10,-1.21047775969454e-07,-1.00256174871237e-09,1.23035262519607e-09,4.25874613301456e-10,7.71951946767856e-11,2.48065457033691e-10,-4.63171168013687e-10 +4.252,-1.99279444255702e-06,-1.29265645376631e-06,1.38062943458306e-06,4.47201768671857e-10,2.35303298373735e-09,0.0799989261876314,-3.33565271758114e-09,2.53656297355381e-09,9.17630554875157e-10,7.565996440472e-11,5.59182908310633e-10,-1.30053606772747e-09,4.32557901172863e-06,5.28599646691593e-06,-2.35928616052692e-06,4.72712147161622e-11,2.18575157942008e-10,9.03555875953392e-06 +4.254,-1.12150458720164e-08,1.18775746182909e-08,3.8440965167974e-09,4.47407222381457e-10,2.35446594165634e-09,0.079999994016499,3.15121088945123e-08,2.62553969884697e-07,-1.12408258916273e-07,7.57206797263792e-11,5.59515975218021e-10,-8.49055409313142e-08,-9.89551323012698e-10,1.20953594376562e-09,4.52329146411877e-10,4.38017677726132e-11,2.20743562349095e-10,-5.36029554149048e-10 +4.256,-1.99266839412144e-06,-1.29160623788677e-06,1.38017980154739e-06,4.47504651390762e-10,2.35527104763822e-09,0.0799989258480092,-3.33961092287319e-09,2.54140111732887e-09,9.19439871460804e-10,7.58351714758104e-11,5.6006588256003e-10,-1.30268018594407e-09,4.70082561201888e-06,5.54321215666589e-06,-4.56595113281669e-06,4.64038529865949e-11,2.38958158846928e-10,9.05943028927942e-06 +4.258,-1.12284043157079e-08,1.18877402227602e-08,3.84777427628324e-09,4.47710563067361e-10,2.35670620518658e-09,0.0799999940112883,5.03154113425858e-08,2.84726818511359e-07,-1.30672063447538e-07,7.59062951383255e-11,5.60471807853408e-10,-4.86678197742006e-08,-9.73776181032468e-10,1.18611717655803e-09,4.12213665927956e-10,4.64038529781713e-11,2.08600497955111e-10,-5.08273978388882e-10 +4.26,-1.99246713247607e-06,-1.29046733061272e-06,1.3796571132936e-06,4.47808276571315e-10,2.35751293486963e-09,0.079998925653338,-3.34350602759732e-09,2.5461455860351e-09,9.21088726124516e-10,7.60207868877231e-11,5.6090028455185e-10,-1.30471328185763e-09,4.26004733875662e-06,5.2336559565155e-06,-5.34089938073455e-06,6.07153216549615e-11,2.14238349251963e-10,8.45563376261708e-06 +4.262,-1.12417783398183e-08,1.18979248051043e-08,3.85145863118774e-09,4.48014646214911e-10,2.35894980632478e-09,0.0799999940060694,6.73556006976142e-08,3.05661442337423e-07,-1.52035660970478e-07,7.61491564249454e-11,5.61328761250416e-10,-1.48452847237285e-08,-9.53447390669348e-10,1.13884596212009e-09,4.23489368623972e-10,5.81132364494429e-11,2.07733136279348e-10,-4.78783679442027e-10 +4.264,-1.99219771007328e-06,-1.28924468484337e-06,1.37904897064972e-06,4.48112873197015e-10,2.35975824991463e-09,0.0799989255939568,-3.34731981716e-09,2.55070096988358e-09,9.22782683599012e-10,7.62532398335209e-11,5.61731217096968e-10,-1.30662841657539e-09,3.28658687721961e-06,4.54233612530851e-06,-4.95751031373125e-06,4.33680869036546e-11,2.31151903205135e-10,7.43675693942817e-06 +4.266,-1.1255167619087e-08,1.19081276089839e-08,3.85514976192214e-09,4.48319659174246e-10,2.36119673119317e-09,0.0799999940008429,8.05019482064911e-08,3.23830786838655e-07,-1.71865702225401e-07,7.632262877256e-11,5.62253368863237e-10,1.49017430339809e-08,-9.31709136739612e-10,1.09894732188977e-09,4.08744218975795e-10,4.46691295021684e-11,2.29417179666758e-10,-4.69242700179193e-10 +4.268,-1.99187570228045e-06,-1.28794936169602e-06,1.37836150784082e-06,4.48418163712105e-10,2.36200726339009e-09,0.0799989256535638,-3.35104665370696e-09,2.55509675917114e-09,9.24417660474915e-10,7.64319163515296e-11,5.62648885815635e-10,-1.30850538737611e-09,2.07138782037784e-06,3.62642207927597e-06,-3.81919821288228e-06,5.50774703580149e-11,1.88651177981231e-10,6.14072681592639e-06 +4.27,-1.12685718057018e-08,1.19183479960205e-08,3.85884743256404e-09,4.48625386839652e-10,2.36344732673643e-09,0.0799999939956089,8.87874994880034e-08,3.3833647515576e-07,-1.87142495076932e-07,7.65429386539921e-11,5.63007973575162e-10,3.94646502976892e-08,-9.23740251143662e-10,1.10371781173208e-09,3.98335878222493e-10,3.94649590827169e-11,1.95156391078621e-10,-5.16080234175731e-10 +4.272,-1.9915205522825e-06,-1.28659601579539e-06,1.37761293786051e-06,4.48724335466721e-10,2.36425929528439e-09,0.0799989258114224,-3.35474161471153e-09,2.55951163041807e-09,9.26011003987805e-10,7.65897761878604e-11,5.63429511379949e-10,-1.31056970831281e-09,8.61261366049817e-07,2.60978825357964e-06,-2.34498271496333e-06,2.81892564888784e-11,2.21177243218345e-10,4.661880256832e-06 +4.274,-1.12819907721606e-08,1.19285860425422e-08,3.86255147657999e-09,4.48931745944403e-10,2.36570104478195e-09,0.0799999939903666,9.22325449522023e-08,3.48775628170078e-07,-1.96522425936784e-07,7.66556956799476e-11,5.63892682548035e-10,5.81121713250152e-08,-9.09428782094619e-10,1.03779831936096e-09,4.07876857237651e-10,4.72712147161145e-11,2.18141477072804e-10,-4.58834359323124e-10 +4.276,-1.99115162210269e-06,-1.28520091328271e-06,1.37682684815676e-06,4.49030958249441e-10,2.36651486601458e-09,0.0799989260438711,-3.35837932983991e-09,2.56366282369551e-09,9.27642511416756e-10,7.67788610467249e-11,5.6430207728824e-10,-1.31240504575011e-09,0.0596000075383311,0.0411054051478119,-0.0399622001154371,5.04110642118322e-09,3.62166893693846e-09,0.0625100721783829 +4.278,-1.129542428948e-08,1.1938840693837e-08,3.86626204662566e-09,4.4923886138859e-10,2.36795825309111e-09,0.079999993985117,0.000238492262698303,0.000164770396219436,-0.000160045322887703,9.68201213646827e-11,5.7837935829579e-10,0.000250098400884885,5.13861956456329e-08,-4.26551155506513e-08,-2.72733224892558e-08,6.09104780502782e-09,-8.64542812336807e-09,2.40701555908433e-08 +4.28,-1.03718257130937e-06,-6.26119328404895e-07,7.3664555660588e-07,4.494182387349e-10,2.36882838344776e-09,0.0799999264374746,-3.15283454725736e-09,2.39304236149289e-09,8.1854922145972e-10,1.01143052266839e-10,5.29720364794764e-10,-1.21612442338672e-09,-0.162283308463357,-0.11153608200965,0.107963621109629,-3.64248561867773e-09,-2.33142498362323e-08,-0.159284558660086 +4.282,-1.1308035627669e-08,1.1948412863283e-08,3.8695362435115e-09,4.49643433597657e-10,2.37007713455029e-09,0.0799999939802525,-0.000410640971155054,-0.000281373931819113,0.000271809161550766,8.22501788899734e-11,4.85122358950871e-10,-0.000387039833755391,-4.70389786148465e-08,4.20856925696714e-08,2.03103592971255e-08,-4.33724237081662e-09,7.84702164355168e-09,-2.57979401729215e-08 +4.284,-2.67974645592941e-06,-1.75161505568122e-06,1.82388220280882e-06,4.4974723945046e-10,2.37076887288357e-09,0.0799983782781396,-3.34099046171672e-09,2.56138513177156e-09,8.99790658648213e-10,8.37940827835743e-11,5.61108451368967e-10,-1.3193161840784e-09,0.159058840975221,0.106527490383547,-0.106800479324678,-2.42427605772271e-10,2.90258268808795e-08,0.12413429410773 +4.286,-1.13213995895159e-08,1.19586584038101e-08,3.87313540614609e-09,4.49978609928792e-10,2.37232156835576e-09,0.0799999939749752,0.0002255943927459,0.000144736029715123,-0.000155392755747993,8.12804684668842e-11,6.01225666474402e-10,0.000109497342675584,-1.83550548893874e-08,1.16712195465141e-08,1.17779050401944e-08,-3.64595506562959e-09,2.08773970336923e-09,-5.90673343577424e-09 +4.288,-1.77736888494571e-06,-1.17267093682066e-06,1.20231117981678e-06,4.50072361324327e-10,2.37317377554946e-09,0.0799988162675103,-3.41441068127428e-09,2.60807000995762e-09,9.46902278808996e-10,6.92102625210543e-11,5.69459410182445e-10,-1.3429431178215e-09,-0.0189490206078169,-0.0083266975948779,0.0154290814881278,5.82867087932847e-10,-6.90246471087985e-09,0.0397286246860635 +4.29,-1.1335057232241e-08,1.19690906838499e-08,3.87692301526132e-09,4.50255450978876e-10,2.37459940599649e-09,0.0799999939696034,0.000149798310314641,0.000111429239335615,-9.36764297954882e-05,8.36119368186153e-11,5.73615807630886e-10,0.000268411841419821,4.68788419543349e-08,-3.87845137951651e-08,-2.07984671152764e-08,4.8207965397357e-09,-7.27456289654035e-09,2.35306565899619e-08 +4.292,-1.17817564368721e-06,-7.26953979478251e-07,8.27605460634873e-07,4.50406809071602e-10,2.37546823877999e-09,0.079999889914876,-3.22689531345696e-09,2.45293195477697e-09,8.637084103479e-10,8.8493448679995e-11,5.40361158596287e-10,-1.24882049146166e-09,-0.130274859897775,-0.09118027717319,0.0852544696637886,-3.33370483996232e-09,-1.76833374332665e-08,-0.165246301868523 +4.294,-1.13479648134948e-08,1.1978902411669e-08,3.88037784890272e-09,4.50609424773596e-10,2.37676085063088e-09,0.0799999939646082,-0.000371301129276516,-0.000253291869357186,0.000247341448859705,7.02771174587645e-11,5.02882457897812e-10,-0.000392573366054345,-4.54334920381841e-08,4.25276133754455e-08,2.28298283056407e-08,-4.19152559882404e-09,8.66451008166513e-09,-2.4629603911988e-08 +4.296,-2.66338016079344e-06,-1.74012145690711e-06,1.8169712560738e-06,4.50687917541437e-10,2.37747976861158e-09,0.0799983196214118,-3.40862928160972e-09,2.62304240827878e-09,9.55027723570473e-10,7.17273462846969e-11,5.75019198922951e-10,-1.34733890710962e-09,0.145211856789616,0.0976254729326871,-0.0974313173153226,-4.64038529784879e-11,2.76254713549646e-08,0.129768125119695 +4.298,-1.13615993306213e-08,1.19893945813021e-08,3.884197959797e-09,4.50896334158735e-10,2.37906092742657e-09,0.0799999939592188,0.000209546297881884,0.00013721002237352,-0.000142383820401543,7.00915020468506e-11,6.13384343317659e-10,0.000126499134424377,-1.48055938167297e-08,9.74611016876115e-09,1.10449843714913e-08,-2.97374971869722e-09,2.15452655713128e-09,-4.21451068481084e-09 +4.3,-1.825194969266e-06,-1.19128136741309e-06,1.24743597446769e-06,4.50968283549624e-10,2.37993330598485e-09,0.0799988256179495,-3.46785165687663e-09,2.66202684895382e-09,9.99207661056433e-10,5.98323474099094e-11,5.83637305151476e-10,-1.36419694984886e-09,-0.012376229754634,-0.00472559296035114,0.0103364482444278,1.53002610580731e-09,-6.27015800395081e-09,0.035347427540507 +4.302,-1.13754707372488e-08,1.20000426886979e-08,3.88819479044122e-09,4.51135663548374e-10,2.38139547664717e-09,0.079999993953762,0.000160041378863343,0.000118307650532113,-0.000101038027423827,7.62116064700805e-11,5.88303711301853e-10,0.00026788884458642,5.06280672765164e-08,-4.20575033131719e-08,-2.37390402473836e-08,5.71374544900192e-09,-7.84138379225175e-09,2.5223746702365e-08 +4.304,-1.18502945381255e-06,-7.18050765284584e-07,8.43283864772337e-07,4.51273129975505e-10,2.38228652083006e-09,0.0799998971733278,-3.26533938777054e-09,2.49379683570111e-09,9.04251500066888e-10,8.26873292059196e-11,5.52271769982465e-10,-1.26330196303939e-09,-0.132805746560657,-0.0922294961488086,0.0874371023360709,-2.5222879340666e-09,-1.88165455438919e-08,-0.163720677669545 +4.306,-1.13885320947998e-08,1.20100178760407e-08,3.89181179644149e-09,4.51466412865198e-10,2.3836045637271e-09,0.0799999939487088,-0.000371181607379228,-0.000250610334063081,0.000248710381920418,6.61224547338152e-11,5.13037529126293e-10,-0.000386993866091688,-4.23457384606936e-08,3.93543704567404e-08,1.91775848673079e-08,-3.40656322595404e-09,7.80929140794791e-09,-2.35636163358608e-08 +4.308,-2.6697558833293e-06,-1.7204921015368e-06,1.8381253924539e-06,4.5153761979444e-10,2.38433867094656e-09,0.0799983491978634,-3.4347223416133e-09,2.65121431752805e-09,9.80961839536111e-10,6.90610763021049e-11,5.83508935614253e-10,-1.35755642838283e-09,0.145635364409842,0.0964973713348589,-0.098797924622009,7.10369263408675e-10,2.69276788366845e-08,0.127388441517599 +4.31,-1.14022709841663e-08,1.20206227333108e-08,3.89573564379964e-09,4.51742657170406e-10,2.38593859946956e-09,0.0799999939432786,0.000211359850260204,0.000135379151276398,-0.000146481316567662,6.89639317874502e-11,6.20748244473043e-10,0.000122559899978767,-1.24661565794289e-08,6.96708316053893e-09,7.38710308206718e-09,-2.26164573180093e-09,1.25420507316364e-09,-3.2959746044313e-09 +4.312,-1.82431648228839e-06,-1.17897549643114e-06,1.25220012618318e-06,4.5181347552159e-10,2.38682166392445e-09,0.0799988394374634,-3.48458696793102e-09,2.67908265017021e-09,1.01051025186438e-09,6.00144933749002e-11,5.88525755906908e-10,-1.37074032680055e-09,-0.0127596368069253,-0.00463263597621405,0.0109521395316494,2.19659360145995e-09,-7.21254653220971e-09,0.0356772927867657 +4.314,-1.1416209332038e-08,1.20313390639115e-08,3.89977768480709e-09,4.51982715143906e-10,2.38829270249319e-09,0.0799999939377956,0.000160321303032509,0.000116848607371544,-0.000102672758441069,7.77503061932891e-11,5.91898058344208e-10,0.000265269071125814,5.24548395173232e-08,-4.43403994078538e-08,-2.68808413029236e-08,6.31005664386229e-09,-8.54394680008743e-09,2.58014096200171e-08 +4.316,-1.18303127015842e-06,-7.11581066945022e-07,8.41509092418952e-07,4.52124476746363e-10,2.38918925615783e-09,0.0799999005137479,-3.27476760986175e-09,2.50172105253882e-09,9.029868866527e-10,8.52547199503466e-11,5.54349968706562e-10,-1.2675346883205e-09,-0.132570269224472,-0.0917674507138822,0.0871787807397249,-2.05261155295341e-09,-1.94271682074928e-08,-0.163453387153393 +4.318,-1.14293084024775e-08,1.20413459481217e-08,3.9033896323537e-09,4.52323734023707e-10,2.39051010236802e-09,0.0799999939327255,-0.00036995977386544,-0.000250221195484026,0.000246042364517869,6.95398599814745e-11,5.14189385514228e-10,-0.00038854447748783,-4.13164511286076e-08,3.84063440773963e-08,1.728608575729e-08,-3.0262251038368e-09,7.32356883473585e-09,-2.33068772615567e-08 +4.32,-2.66287036562035e-06,-1.71246584888124e-06,1.82567855049054e-06,4.52402636186289e-10,2.39124601369989e-09,0.0799983463358379,-3.4400334143762e-09,2.65534642884842e-09,9.72131229681868e-10,7.31498195349981e-11,5.83644244045509e-10,-1.36076219736673e-09,0.145100715402995,0.0960146547654663,-0.0979693720992099,9.94430232607782e-10,2.65516775233354e-08,0.127443736694904 +4.322,-1.1443068536135e-08,1.20519673338371e-08,3.90727815727243e-09,4.52616333301847e-10,2.3928446793442e-09,0.0799999939272824,0.000210443087746475,0.000133837423577796,-0.000145835123878927,7.35175809119052e-11,6.20396095607558e-10,0.00012123046929173,-1.21549363454354e-08,6.79924866394368e-09,6.57221672911866e-09,-2.08427025639019e-09,1.08897266201204e-09,-3.30551558339822e-09 +4.324,-1.82109801463454e-06,-1.17711615457011e-06,1.2423380549749e-06,4.52696706509936e-10,2.39372759808232e-09,0.0799988312577151,-3.48865315975794e-09,2.68254342350419e-09,9.9842009659834e-10,6.48127385094382e-11,5.88000134693557e-10,-1.37398425970032e-09,-0.0756815075681894,-0.0478413911372962,0.0529356816059282,-2.88007465099393e-09,-1.12566206356454e-08,-0.030663586933488 +4.326,-1.1457023148774e-08,1.20626975075311e-08,3.91127183765883e-09,4.52875584255885e-10,2.39519667988297e-09,0.0799999939217865,-9.22829425263166e-05,-5.75281409714098e-05,6.59076025448092e-05,6.19972823079282e-11,5.75369613064971e-10,-1.42387844223586e-06,-3.79308130237675e-10,4.63604849103746e-10,1.34029072568201e-09,1.84314369326134e-10,3.84241249961493e-10,8.25728374488664e-10 +4.328,-2.19022978473985e-06,-1.40722871845578e-06,1.50596846515416e-06,4.52944695639168e-10,2.39602907653458e-09,0.0799988255622013,-3.49017039227889e-09,2.68439784290061e-09,1.00378125950107e-09,6.55499959867428e-11,5.89537099693403e-10,-1.37068134620237e-09,0.0373559390733437,0.0245971598484261,-0.025774095290976,1.82796486281441e-09,5.62007038132905e-09,0.00519190453216712 +4.33,-1.14709838303431e-08,1.20734350989027e-08,3.91528696269683e-09,4.53137784239832e-10,2.39755482828174e-09,0.0799999939163038,5.71408137670416e-05,4.08604984222838e-05,-3.71887786190835e-05,6.9309141759185e-11,5.97849894590285e-10,1.93437396864303e-05,4.32065407776571e-09,-2.24299745458705e-09,-2.13045726898978e-09,1.28499641482618e-09,-1.38777878110859e-10,2.06779038344042e-09 +4.332,-1.96166652967171e-06,-1.24378672476666e-06,1.35721335067784e-06,4.53221932206205e-10,2.39842047611294e-09,0.0799989029371601,-3.47288777596783e-09,2.67542585308226e-09,9.9525943042511e-10,7.0689981646047e-11,5.8898198818096e-10,-1.36241018466861e-09,-0.0193402968334907,-0.0129525692623728,0.0129914611544666,9.50628464831229e-10,-3.2062026645066e-09,-0.00325465799103121 +4.334,-1.1484875381447e-08,1.2084136802315e-08,3.91926800041853e-09,4.53420544166416e-10,2.39991075623447e-09,0.0799999939108541,-2.02203735669299e-05,-1.09497786272132e-05,1.47770659987887e-05,7.31116556185103e-11,5.85025083932257e-10,6.32510772230406e-06,4.05048173819103e-08,-3.60427833410905e-08,-2.20366259961471e-08,4.76832115459516e-09,-7.40640188065028e-09,2.08791317567812e-08 +4.336,-2.04254802393944e-06,-1.28758583927552e-06,1.41632161467301e-06,4.53514378828679e-10,2.40076057644867e-09,0.0799989282375909,-3.31086850644017e-09,2.53125471971788e-09,9.07112926440512e-10,8.97632662644298e-11,5.59356380658355e-10,-1.27889365764147e-09,-0.00854020416256445,-0.00469939790293831,0.00618501619603684,7.22642432005603e-09,-1.19535457920574e-08,-0.0286715943920911 +4.338,-1.14981188554727e-08,1.20942618211939e-08,3.92289645212429e-09,4.53779597231474e-10,2.4021481817571e-09,0.0799999939057386,-5.4381190217184e-05,-2.97473702389644e-05,3.95171307829333e-05,1.02017352898731e-10,5.37210900764033e-10,-0.000108361269846048,-7.79492572900935e-09,1.44060111061088e-08,-2.40194149297472e-09,2.38004060903519e-09,2.81762460582426e-09,-1.069283550585e-08 +4.34,-2.26007278480815e-06,-1.40657532023136e-06,1.57439013780472e-06,4.53922448240274e-10,2.40290942005172e-09,0.0799984947925116,-3.3420482093562e-09,2.58887876414231e-09,8.97505160468614e-10,9.92834287005695e-11,5.70626879081651e-10,-1.32166499966487e-09,0.0318809501746213,0.0156709620315036,-0.0254499540389367,-2.2408290500982e-09,1.34328312361936e-08,0.0436900412089829 +4.342,-1.15114870483102e-08,1.21046173362505e-08,3.92648647276617e-09,4.54176730946276e-10,2.40443068927343e-09,0.0799999939004519,7.31426104813153e-05,3.29364778870569e-05,-6.22826853728247e-05,9.30540366983375e-11,5.90942225708813e-10,6.63988949899034e-05,-2.60994567973428e-08,1.71906759662049e-08,1.08372512353459e-08,-3.99940497385901e-09,2.11853104506836e-09,-1.06893660590424e-08 +4.344,-1.96750234288286e-06,-1.27482940868312e-06,1.32525939631339e-06,4.54294664387067e-10,2.40527318895456e-09,0.0799987603880915,-3.44644603654558e-09,2.65764146800714e-09,9.40854165410003e-10,8.32858088051317e-11,5.79101003261925e-10,-1.36442246390104e-09,-0.0267768682846861,-0.0141818436026806,0.021450198978147,-3.85672396796112e-09,-3.54794318920954e-09,-0.0162589091235592 +4.346,-1.15252728324564e-08,1.21152479021225e-08,3.93024988942781e-09,4.54509874181497e-10,2.40674709328648e-09,0.0799999938949942,-3.39648626574172e-05,-2.37908965236592e-05,2.35181105397537e-05,7.76271408264947e-11,5.76750452951976e-10,1.36325849567369e-06,-9.39846074210783e-09,6.12227282744355e-09,6.73896702324865e-09,-1.87566975840454e-09,1.15749423931337e-09,-2.4320823132437e-09 +4.348,-2.10336179351251e-06,-1.36999299477775e-06,1.4193318384724e-06,4.54605172950373e-10,2.40758019076637e-09,0.0799987658411255,-3.48403987951401e-09,2.68213055931691e-09,9.67810033502994e-10,7.57831297715143e-11,5.83730980219178e-10,-1.37415079315402e-09,0.0736211982339618,0.0516867087771157,-0.04819218752337,4.55581752877876e-09,6.4362577767095e-09,0.0708905601607739 +4.35,-1.15392089919744e-08,1.21259764243598e-08,3.93412112956182e-09,4.54813006700583e-10,2.40908201720735e-09,0.0799999938894976,0.000260519930278463,0.000182955938584827,-0.000169250639553748,9.58504109416118e-11,6.02495484058817e-10,0.000284925499138801,5.19678701111645e-08,-4.2636033592409e-08,-2.50251208643876e-08,6.05201652681828e-09,-8.07513778063962e-09,2.53590551334906e-08 +4.352,-1.06128207239854e-06,-6.38169240438358e-07,7.42329280257331e-07,4.5498857459414e-10,2.4099901727026e-09,0.0799999055431221,-3.27616839906933e-09,2.51158642494725e-09,8.67709550045432e-10,9.99911958787901e-11,5.51430429096616e-10,-1.27271457262004e-09,-0.168462031140301,-0.115313041153529,0.11077860919601,-3.58610710570852e-09,-2.3920969371954e-08,-0.170322399704903 +4.354,-1.15523136655707e-08,1.21360227700595e-08,3.937591967762e-09,4.55212971484098e-10,2.41128773892374e-09,0.0799999938844067,-0.000413328194282666,-0.000278296226029237,0.000273863797230242,8.15059825187793e-11,5.06811606571012e-10,-0.000396364099680734,-4.3988196331983e-08,4.20097984177396e-08,2.14116918639865e-08,-3.96861363216681e-09,8.31973379078661e-09,-2.47649123430504e-08 +4.356,-2.71459484952902e-06,-1.75135414455518e-06,1.83778446917818e-06,4.55314598524215e-10,2.41201741912889e-09,0.0799983200867233,-3.45212118439724e-09,2.67962561861819e-09,9.53356317501369e-10,8.41167413501246e-11,5.84709364259759e-10,-1.37177422199223e-09,0.161293035882407,0.10682275362321,-0.107773094257955,3.2482697087213e-10,2.97860694442316e-08,0.130057048373087 +4.358,-1.15661221503083e-08,1.2146741272534e-08,3.941405393032e-09,4.55549438449498e-10,2.41362657638078e-09,0.0799999938789197,0.000231843949246892,0.000148994788463555,-0.000157228579801532,8.28052904022676e-11,6.25955884347925e-10,0.000123864093811557,2.01918017897967e-08,-2.29798818864084e-08,-7.22252119228077e-09,1.491862189293e-10,-4.88541498925106e-09,1.45942286034658e-08 +4.36,-1.78721905254135e-06,-1.1553749907009e-06,1.20887014997198e-06,4.55645819685824e-10,2.41452124266628e-09,0.0799988155430986,-3.37135397723805e-09,2.58770609107255e-09,9.24466232732243e-10,8.47134862258419e-11,5.65167704302753e-10,-1.31339730757837e-09,-0.103574918075965,-0.0646789312065257,0.0721855015885229,1.43721839985138e-09,-2.44088603495659e-08,-0.059933320592849 +4.362,-1.15796075662172e-08,1.21570920968983e-08,3.94510325796293e-09,4.55888292394402e-10,2.41588724719799e-09,0.0799999938736661,-0.000182455723057014,-0.000109720936362577,0.000131513426552592,8.85541640016738e-11,5.28320442949651e-10,-0.000115869188559866,-1.43391158323973e-08,2.0201722239636e-08,7.15811958323672e-09,3.46944695200143e-10,4.86242990319545e-09,-1.20962267980618e-08 +4.364,-2.51704194476933e-06,-1.59425873615116e-06,1.73492385618229e-06,4.5600003634183e-10,2.41663452443808e-09,0.0799983520663443,-3.42871044056763e-09,2.66851298003108e-09,9.53098711065186e-10,8.61012650066423e-11,5.84617423915532e-10,-1.36178221477061e-09,0.0833664889772026,0.0499209328983186,-0.0604424103798995,-2.03352959471872e-09,2.26589580431797e-08,0.0529530687467105 +4.366,-1.15933224079795e-08,1.21677661488184e-08,3.94891565280719e-09,4.56232697454428e-10,2.41822571689365e-09,0.0799999938682189,0.000151010232851759,8.99627952306758e-05,-0.000110256214966979,8.04200456227998e-11,6.18956275122359e-10,9.59430864269532e-05,-2.58543186857622e-08,1.84964890624504e-08,1.53713847205741e-08,-4.42571326808962e-09,3.37143507552772e-09,-9.89573006863192e-09 +4.368,-1.91300101336223e-06,-1.23440755522841e-06,1.29389899631432e-06,4.56321716524322e-10,2.41911034953857e-09,0.07999873583869,-3.53212771531069e-09,2.74249893628089e-09,1.01458424994749e-09,6.83984119342819e-11,5.98103164217645e-10,-1.40136513504514e-09,-0.0542801244490562,-0.0324947838480726,0.0397606556845558,-4.50551054797629e-09,-6.80401915361567e-09,-0.0210503319454257 +4.37,-1.16074509188407e-08,1.21787361445636e-08,3.95297398980698e-09,4.56506291102166e-10,2.42061812955052e-09,0.0799999938626135,-6.61102649444897e-05,-4.00163401616293e-05,4.87864077712617e-05,6.23980034308926e-11,5.91740198507894e-10,1.17417586452408e-05,2.94282285170413e-08,-2.90197553486012e-08,-1.13401042028411e-08,1.86742982189324e-09,-5.44659803366618e-09,1.84002119096123e-08 +4.372,-2.17744207314016e-06,-1.39447291587491e-06,1.48904462739935e-06,4.56571308538045e-10,2.4214773103326e-09,0.0799987828057246,-3.41441480124254e-09,2.6264199148865e-09,9.6922383313613e-10,7.5868131221854e-11,5.76316772082982e-10,-1.3277642874067e-09,0.010766655126263,0.00905795962194643,-0.00648820881787088,6.10622663543488e-09,-7.58637944134841e-09,-0.0245265375040805 +4.374,-1.16211085780457e-08,1.21892418242231e-08,3.95685088513953e-09,4.56809763627053e-10,2.42292339663885e-09,0.0799999938573024,-2.30436444394423e-05,-3.78450167384761e-06,2.2833572499781e-05,8.68229099726295e-11,5.61394680742503e-10,-8.63643913710702e-05,-8.36532449194639e-09,1.5979405298811e-08,2.66995626990843e-09,1.71130470904653e-09,4.06575814678775e-09,-1.0104764247489e-08 +4.376,-2.26961665089793e-06,-1.4096109225703e-06,1.58037891739848e-06,4.56918600177936e-10,2.42372288905557e-09,0.0799984373481591,-3.44787609921033e-09,2.69033753608175e-09,9.79903658215765e-10,8.27133500580409e-11,5.92579804670135e-10,-1.36818334439666e-09,0.0216002947946167,0.00882132066134708,-0.018731303483547,-2.52922682796936e-09,1.2800958210133e-08,0.0422814164834383 +4.378,-1.16349000824426e-08,1.22000031743674e-08,3.96077049977239e-09,4.57140617027285e-10,2.42529371585753e-09,0.0799999938518297,6.33575347390343e-05,3.15007809715447e-05,-5.20916414344154e-05,7.67060026607509e-11,6.12598513583041e-10,8.27612745627018e-05,-2.28430555722935e-08,1.55526633240228e-08,1.14457054945519e-08,-3.59261231874417e-09,2.49713444370205e-09,-8.93382590135847e-09 +4.38,-2.01618651194183e-06,-1.28360779868414e-06,1.37201235166085e-06,4.57225424188579e-10,2.4261732831099e-09,0.0799987683932574,-3.53924832149949e-09,2.75254818937784e-09,1.02568648019397e-09,6.83429007830658e-11,6.02568342444942e-10,-1.40391864800209e-09,-0.0216269031597639,-0.0112918891520212,0.0174352077270065,-3.02969455079775e-09,-2.8887482684044e-09,-0.0184438900931565 +4.382,-1.16490570757286e-08,1.22110133671249e-08,3.96487324569317e-09,4.57413988630417e-10,2.42770398922731e-09,0.079999993846214,-2.31500779000115e-05,-1.36667756365351e-05,1.7649189473603e-05,6.45872244575613e-11,6.01043520509425e-10,8.98571419008409e-06,3.07320900500515e-08,-3.10185904740871e-08,-1.4416853128028e-08,2.38958158815372e-09,-6.17821765972346e-09,1.87332788171473e-08 +4.384,-2.10878682354188e-06,-1.33827490123029e-06,1.44260910955527e-06,4.57483773086409e-10,2.42857745719194e-09,0.0799988043361142,-3.41631996129927e-09,2.62847382748148e-09,9.68019067681849e-10,7.79012271356818e-11,5.77855471806046e-10,-1.32898553273349e-09,-0.0058188681215567,-0.00170310986450934,0.00488970931930316,6.09581829458607e-09,-1.06329875459664e-08,-0.0249947004152951 +4.386,-1.16627223555738e-08,1.22215272624349e-08,3.9687453219639e-09,4.5772559353896e-10,2.43001541111454e-09,0.0799999938408981,-4.64255503862409e-05,-2.04792150945732e-05,3.72080267508178e-05,8.89704976359083e-11,5.58511570325554e-10,-9.09930874711074e-05,-7.91586848172525e-09,1.52876843130638e-08,8.65627014566341e-10,1.98842678434318e-09,3.62427102221741e-09,-1.01021621624269e-08 +4.388,-2.29448902508683e-06,-1.42019176160857e-06,1.59144121655852e-06,4.57839655076953e-10,2.43081150347324e-09,0.0799984403637643,-3.44798343522617e-09,2.68962456473372e-09,9.71481575740114e-10,8.58549342730536e-11,5.92352555894914e-10,-1.36939418138319e-09,0.0303817975576404,0.0145457445172904,-0.0245020457128913,-2.12590361981451e-09,1.37819443357357e-08,0.0429046343826103 +4.39,-1.16765142893147e-08,1.22322857606938e-08,3.97263124826686e-09,4.58069013276052e-10,2.43238482133812e-09,0.0799999938354205,7.51016398443073e-05,3.77037629745821e-05,-6.08001561007364e-05,8.04668831566512e-11,6.13639347668491e-10,8.0625450059315e-05,-2.31496137361708e-08,1.58328211650875e-08,1.08485269378336e-08,-3.46727854761263e-09,2.31325375518167e-09,-9.20704484866884e-09 +4.392,-1.99408246570956e-06,-1.26937670971022e-06,1.34824059215555e-06,4.58161522609579e-10,2.43326606086391e-09,0.0799987628655645,-3.54058189017086e-09,2.75295584939408e-09,1.01487568349145e-09,7.19858200826015e-11,6.01605570915641e-10,-1.40622236077787e-09,0.0349448255387676,0.0278699091240036,-0.019578509734018,2.14281717370482e-09,2.21177243527713e-11,0.0504275457528488 +4.394,-1.16906766168753e-08,1.22432975840914e-08,3.97669075100082e-09,4.58356956556383e-10,2.43479124362178e-09,0.0799999938297956,0.000214880941999393,0.000149183399470609,-0.000139114195036817,8.90381518514714e-11,6.13727818565902e-10,0.000282335633070733,4.78059432316518e-08,-4.25133019064891e-08,-2.48388549311576e-08,5.35075456165564e-09,-8.39042377239928e-09,2.46998602126232e-08 +4.396,-1.13455869771208e-06,-6.72643111827853e-07,7.9178381200834e-07,4.58517675216985e-10,2.43572097213818e-09,0.0799998922080968,-3.34935811724427e-09,2.58290264176814e-09,9.15520263766834e-10,9.33888383292217e-11,5.68043875826048e-10,-1.30742291992739e-09,-0.151813163715403,-0.103080702421745,0.0992848082814995,-3.44125769547393e-09,-2.20405291240574e-08,-0.171061218650155 +4.398,-1.17040740493443e-08,1.22536291946584e-08,3.98035283205589e-09,4.587305119097e-10,2.43706341912509e-09,0.0799999938245659,-0.000392371712862153,-0.000263139410216327,0.000258025038089137,7.52731210695772e-11,5.25565702069682e-10,-0.000401909241529813,-4.38047493241929e-08,4.15644081651206e-08,2.06195737567084e-08,-3.77736036894384e-09,7.99707522421977e-09,-2.44517947555531e-08 +4.4,-2.70404554916087e-06,-1.72520075269328e-06,1.823883964365e-06,4.58818767701263e-10,2.43782323494646e-09,0.0799982845711307,-3.52457711454107e-09,2.74916027442864e-09,9.97998558793677e-10,7.82793968534447e-11,6.00032176722931e-10,-1.40523009894962e-09,0.153956134789617,0.101412252544768,-0.102233272924054,6.86950496490994e-10,2.85977838632448e-08,0.133595764833528 +4.402,-1.17181723578025e-08,1.22646258357562e-08,3.98434482629106e-09,4.59043629497113e-10,2.43946354783198e-09,0.079999993818945,0.000223452826296383,0.000142509599962789,-0.000150908053607127,7.80209230555415e-11,6.39956837522674e-10,0.000132473817804361,-1.35503045418139e-08,8.75818514949242e-09,9.12659704760589e-09,-2.52055321059051e-09,1.66923766479234e-09,-3.74787006992668e-09 +4.404,-1.81023424397544e-06,-1.15516235284219e-06,1.22025174993656e-06,4.59130851393486e-10,2.44038306229655e-09,0.0799988144664019,-3.57877833270832e-09,2.78419301502661e-09,1.0345049469841e-09,6.81971840110837e-11,6.06709127382099e-10,-1.42022157922932e-09,-0.0170974293469885,-0.00717742919439336,0.0136131691477224,1.99710040171396e-09,-7.58681312222009e-09,0.0347959651820976 +4.406,-1.17324874711333e-08,1.22757626078163e-08,3.988482846079e-09,4.59316418233158e-10,2.44189038434151e-09,0.0799999938132641,0.000155063108908437,0.000113799883185218,-9.6455377016243e-05,8.60093246623964e-11,6.09609585033797e-10,0.000271657678532736,5.27906169301354e-08,-4.4618388844875e-08,-2.63437275466698e-08,6.38334871072044e-09,-8.4056026028774e-09,2.65135136069024e-08 +4.408,-1.18998180834162e-06,-6.99962820101263e-07,8.34430241871548e-07,4.59474888692135e-10,2.44282150063668e-09,0.079999901097116,-3.36761586498775e-09,2.60571945964709e-09,9.29130036797406e-10,9.37305788539683e-11,5.73086716970586e-10,-1.3141675248017e-09,-0.130241918773132,-0.0895193304401823,0.0843779309116253,-2.16363385540729e-09,-1.88403979916812e-08,-0.166679449275701 +4.41,-1.17459579345933e-08,1.22861854856549e-08,3.99219936622619e-09,4.59691340548574e-10,2.44418273120939e-09,0.0799999938080074,-0.000365904566184151,-0.000244277438575551,0.000241056346630296,7.73547892407663e-11,5.34247993067064e-10,-0.000395060118570144,-4.17266590205818e-08,4.04823743972863e-08,1.9432806058817e-08,-3.35452152166569e-09,7.85829734620848e-09,-2.39322450746542e-08 +4.412,-2.65360007307806e-06,-1.67707257440336e-06,1.79865562839263e-06,4.59784307849098e-10,2.44495849260895e-09,0.0799983208566417,-3.53452250107006e-09,2.76764895723622e-09,1.00686126103267e-09,8.03124927673071e-11,6.04519906355416e-10,-1.40989650510031e-09,0.14335891915058,0.0936519832517436,-0.095617415565388,6.55291793045946e-10,2.68366058542005e-08,0.130383799513988 +4.414,-1.17600960245975e-08,1.22972560814838e-08,3.99622681127032e-09,4.60012590519643e-10,2.44660081083481e-09,0.0799999938023678,0.000207531110418107,0.000130330494431382,-0.000141413315631214,7.99759564129498e-11,6.41594416483854e-10,0.000126475079485752,-1.31226409944791e-08,7.93722726417652e-09,8.14105727270143e-09,-2.4316486324544e-09,1.39428399378249e-09,-3.6507255551141e-09 +4.416,-1.82347563140554e-06,-1.15575059667777e-06,1.23300236586771e-06,4.6010421167475e-10,2.44752487027489e-09,0.0799988267569597,-3.58701306504798e-09,2.79939786629293e-09,1.03942549012347e-09,7.05858982374884e-11,6.10097042330547e-10,-1.42449940732076e-09,-0.0117049421576524,-0.00350945577979431,0.0100751559679703,2.13717932240786e-09,-7.06292663240396e-09,0.0357121653412548 +4.418,-1.17744440768577e-08,1.2308453672949e-08,4.00038451323081e-09,4.60294934112593e-10,2.44904119900413e-09,0.0799999937966698,0.000160711341787492,0.000116292671312203,-0.000101112691759328,8.85246737025822e-11,6.13342709954235e-10,0.000269323740850787,5.28121383428849e-08,-4.53695241096831e-08,-2.7170540123304e-08,6.3590625820673e-09,-8.68489308244594e-09,2.65265240328261e-08 +4.42,-1.18063026425565e-06,-6.90579911429012e-07,8.2855159883044e-07,4.6045831036956e-10,2.4499782411147e-09,0.0799999040519231,-3.37576451167647e-09,2.61791976985422e-09,9.30743329630271e-10,9.60221485657548e-11,5.75357470000767e-10,-1.31839331118947e-09,-0.132186303950159,-0.090497604722957,0.0857131163935611,-2.27725824309346e-09,-1.93586466301972e-08,-0.166316479151289 +4.422,-1.17879471349044e-08,1.23189253520284e-08,4.00410748654934e-09,4.60679022706856e-10,2.45134262888413e-09,0.0799999937913963,-0.000368033874013085,-0.000245697747579585,0.000241739773814879,7.94156407302093e-11,5.35908123433455e-10,-0.000395942175754294,-4.18497701768747e-08,4.02481867277216e-08,1.91576355473284e-08,-3.46077333457829e-09,7.73903510716786e-09,-2.40961764429772e-08 +4.424,-2.65276576030815e-06,-1.67337090174746e-06,1.79551069409006e-06,4.60775972932481e-10,2.45212187360844e-09,0.0799983202832201,-3.54316359238398e-09,2.77891251676512e-09,1.00737387181959e-09,8.21790552274401e-11,6.06313610429442e-10,-1.41477801696139e-09,0.14410158889574,0.0940350636567875,-0.0959575397829971,5.64652491434859e-10,2.68843107498493e-08,0.130540607324604 +4.426,-1.1802119789274e-08,1.23300410020954e-08,4.00813698203661e-09,4.61007738927766e-10,2.45376788332585e-09,0.0799999937857372,0.000208372481569939,0.000130442507047607,-0.000142090385317152,8.1674250695949e-11,6.43445366432864e-10,0.000126220253544182,2.25334074314434e-08,-2.59497284769885e-08,-1.06013288425097e-08,9.11597186630575e-10,-5.62137142387043e-09,1.57382787357245e-08 +4.428,-1.81927583402849e-06,-1.15160087355709e-06,1.22714915282152e-06,4.61102669935265e-10,2.45469565507417e-09,0.0799988251642342,-3.45302996265822e-09,2.67511360285718e-09,9.64968556449559e-10,8.5825443973962e-11,5.83828124733963e-10,-1.3518249020185e-09,-0.0938140073926446,-0.0571397807719554,0.0653395993254956,2.50060389061603e-09,-2.40064045032097e-08,-0.0610065601092182 +4.43,-1.18159319091246e-08,1.23407414565069e-08,4.01199685626241e-09,4.61351040703661e-10,2.45610319582479e-09,0.0799999937803299,-0.000166883548000598,-9.81166160401893e-05,0.000119268011984801,9.1676666258412e-11,5.47419748420036e-10,-0.000117805986892664,-1.15987948410556e-08,1.8205922880224e-08,4.34981911595728e-09,1.03953304297411e-09,4.25484300566876e-09,-1.13346831919549e-08 +4.432,-2.48681002603095e-06,-1.54406733771789e-06,1.70422120076077e-06,4.61469376600299e-10,2.45688533406785e-09,0.0799983539402867,-3.49942514202245e-09,2.74793729437808e-09,9.8236783291339e-10,8.99835761458589e-11,6.0084749675664e-10,-1.39716363478632e-09,0.0772361015434913,0.0449100307667087,-0.0559161469678509,-1.68875330385833e-09,2.15192447195226e-08,0.0533993927452906 +4.434,-1.18299296096927e-08,1.23517332056844e-08,4.01592632759407e-09,4.61710975008245e-10,2.45850658581181e-09,0.0799999937747412,0.000142060858173402,8.15235070266658e-05,-0.000104396575886627,8.4921653042978e-11,6.33496727298136e-10,9.57915840885221e-05,-2.495502719419e-08,1.78368604610191e-08,1.37535382389052e-08,-4.0614213381266e-09,3.00280633694987e-09,-9.72225772119172e-09 +4.436,-1.91856659333741e-06,-1.21797330961126e-06,1.28663489721431e-06,4.61809063212471e-10,2.45941932097704e-09,0.079998737106623,-3.5992452507992e-09,2.81928473622215e-09,1.037381985869e-09,7.37378907933543e-11,6.12858722104438e-10,-1.43605266567109e-09,-0.050830627351279,-0.0295500611575658,0.0372331226414628,-4.12647346848454e-09,-6.69776734078162e-09,-0.0211784698042669 +4.438,-1.18443265906959e-08,1.23630103446293e-08,4.02007585553754e-09,4.62005926571418e-10,2.46095802070023e-09,0.079999993768997,-6.12616512316919e-05,-3.66767376035846e-05,4.45359146792077e-05,6.84157591690416e-11,6.06705657935013e-10,1.10777048714637e-05,-5.92890536992731e-09,3.94779695029682e-09,6.13203064708457e-09,-1.25420507313504e-09,1.20042864534164e-09,-6.68735899909161e-10 +4.44,-2.16361319826421e-06,-1.36468026002562e-06,1.46477855593116e-06,4.62082726249147e-10,2.46184614360878e-09,0.0799987814174425,-3.62296087227891e-09,2.83507592402334e-09,1.06191010845735e-09,6.87210705008135e-11,6.17660436685805e-10,-1.43872760927072e-09,0.025945619453357,0.017331443189024,-0.0174213000969622,5.34728511473646e-10,4.59918561571719e-09,0.00361418970532745 +4.442,-1.1858818434185e-08,1.23743506483254e-08,4.02432349597137e-09,4.62280810853422e-10,2.46342866244698e-09,0.0799999937632421,4.25208265817477e-05,3.26490351525191e-05,-2.51492857086491e-05,7.05546732149365e-11,6.25102400397883e-10,2.55344636927752e-05,2.82282877608277e-09,-1.18524981480402e-09,5.83083928421809e-10,6.63965410434083e-10,4.18935719482799e-10,1.91600207913693e-09 +4.444,-1.99352989193723e-06,-1.23408411941556e-06,1.36418141309658e-06,4.62364944942006e-10,2.46434655321037e-09,0.0799988835552973,-3.61166955717458e-09,2.83033492476412e-09,1.06424244417103e-09,7.13769321425496e-11,6.19336179563736e-10,-1.43106360095418e-09,-0.0133417424360976,-0.00885828741045535,0.00866368467245109,7.86263415482571e-10,-1.95459967659157e-09,-0.00327324189888236 +4.446,-1.18732651124137e-08,1.23856719880244e-08,4.02858046574806e-09,4.62566318581992e-10,2.46590600716523e-09,0.0799999937575178,-1.08461431626369e-05,-2.78411448929841e-06,9.50545298115145e-06,7.36997268768664e-11,6.17284001691518e-10,1.24414960972471e-05,4.14778346219915e-08,-3.7746281794797e-08,-2.19733085893834e-08,4.83120488059037e-09,-7.34568655905655e-09,2.19754769937487e-08 +4.448,-2.03691446458779e-06,-1.24522057737275e-06,1.40220322502119e-06,4.62659743849514e-10,2.46681568921714e-09,0.0799989333212817,-3.44575821868659e-09,2.67934979758492e-09,9.76349209813489e-10,9.07017516649132e-11,5.89953433327506e-10,-1.34316169297917e-09,-0.0110313616973214,-0.00632668577813328,0.00770539156373876,7.48359707536802e-09,-1.25832504138325e-08,-0.0300521819521566 +4.45,-1.18870481452885e-08,1.23963893872148e-08,4.03248586258731e-09,4.62929125588651e-10,2.46826582089854e-09,0.0799999937521452,-5.49715899519276e-05,-2.80908576018344e-05,4.03270192361099e-05,1.03634115178342e-10,5.66951000036182e-10,-0.000107767231711393,-5.10160490260566e-09,1.29314961518207e-08,-3.04790914723777e-09,2.58864110703199e-09,2.70746966516416e-09,-9.93042453830596e-09 +4.452,-2.25680082439547e-06,-1.35758400778008e-06,1.56351130196561e-06,4.63074280310227e-10,2.46908349321728e-09,0.0799985022523548,-3.46616463829701e-09,2.73107578219219e-09,9.64157573224539e-10,1.0105631609304e-10,6.00783311988162e-10,-1.38288339113239e-09,0.0321205469532978,0.0148772882832564,-0.0256711839181933,-2.18705262234351e-09,1.35464556238714e-08,0.0441070581785597 +4.454,-1.19009128038416e-08,1.24073136903435e-08,4.03634249288021e-09,4.63333350853024e-10,2.47066895414649e-09,0.0799999937466137,7.35105978612494e-05,3.14182955311846e-05,-6.2357716436652e-05,9.48859046889688e-11,6.21136822531662e-10,6.86610010028267e-05,-2.53894670043071e-08,1.66394675814142e-08,1.03283267354756e-08,-3.96080737652877e-09,1.93681876089431e-09,-1.05497208190739e-08 +4.456,-1.96275843295044e-06,-1.23191082565532e-06,1.31408043621897e-06,4.63453823928983e-10,2.47156804050741e-09,0.0799987768963588,-3.56772250631425e-09,2.79763365251786e-09,1.00547088016645e-09,8.52130865869232e-11,6.0853058703174e-10,-1.42508227440869e-09,-0.0266392928327814,-0.013462139472618,0.021174157829219,-3.79080447587304e-09,-3.84414722273013e-09,-0.0165936972548009 +4.458,-1.19151836938669e-08,1.24185042249536e-08,4.04036437640087e-09,4.63674203199371e-10,2.47310307649462e-09,0.0799999937409133,-3.30465734698882e-05,-2.24302623592934e-05,2.23389148802333e-05,7.97226867854749e-11,6.0576023364074e-10,2.28621198361559e-06,2.71326472572353e-08,-2.89638105164979e-08,-1.32331211960017e-08,1.69178906995149e-09,-6.14785999882937e-09,1.73880007613783e-08 +4.46,-2.09494472682998e-06,-1.32163187509249e-06,1.4034360957399e-06,4.63772714676125e-10,2.47399108144197e-09,0.0799987860412068,-3.45919191728532e-09,2.68177841045188e-09,9.52538395382446e-10,9.19802428667284e-11,5.83939147036425e-10,-1.35553027136319e-09,-0.00273445315685038,0.000710630129829021,0.00313485338295519,5.54894671877638e-09,-1.00002471581709e-08,-0.0246603506191823 +4.462,-1.1929020461536e-08,1.24292313385954e-08,4.0441745299824e-09,4.64042124170838e-10,2.47543883308277e-09,0.0799999937354912,-4.39843860972885e-05,-1.95877418399776e-05,3.48783284120527e-05,1.01918473660578e-10,5.65759245008061e-10,-9.63551904931029e-05,-1.06677362254336e-08,1.8695548581318e-08,4.19521188616159e-09,1.242929370532e-09,4.36890107421419e-09,-1.15255027743121e-08 +4.464,-2.27088227121915e-06,-1.39998284245241e-06,1.54294940938812e-06,4.64180388570767e-10,2.47625411842201e-09,0.0799984006204448,-3.50186286218706e-09,2.75656060477716e-09,9.69319242927094e-10,9.69519603488569e-11,6.01414751333284e-10,-1.40163228246044e-09,0.0284737462807619,0.0136533116075986,-0.0224170151989758,-3.11859912893164e-09,1.45543299634768e-08,0.0452206718737304 +4.466,-1.19430279129848e-08,1.24402575810145e-08,4.04805180695411e-09,4.64429932012234e-10,2.4778444920881e-09,0.0799999937298847,6.99105990257719e-05,3.50255045904229e-05,-5.47897323838605e-05,8.944407714485e-11,6.23976564861974e-10,8.45274970018388e-05,-2.67363171534756e-08,2.00347551050825e-08,1.53911172002269e-08,-4.42527958721243e-09,3.33717428694451e-09,-1.0705845932071e-08 +4.468,-1.9912398751161e-06,-1.25988082409073e-06,1.3237904798527e-06,4.64538164879347e-10,2.47875002468145e-09,0.0799987387304328,-3.60880813080095e-09,2.83669962519748e-09,1.03088371172799e-09,7.92508420000092e-11,6.1476344848106e-10,-1.44445566618872e-09,-0.0247318503113664,-0.0127443886407624,0.0194399249490938,-3.95690424870805e-09,-2.42470973858123e-09,-0.01844674422762 +4.47,-1.1957463145508e-08,1.24516043795153e-08,4.05217534180102e-09,4.64746935380234e-10,2.48030354588202e-09,0.0799999937241068,-2.9016802219683e-05,-1.59520499726211e-05,2.29699674125063e-05,7.36164601500195e-11,6.1427772590765e-10,1.07405200913667e-05,-8.39232112603042e-09,6.37337405057998e-09,8.44853700881694e-09,-1.80541345762686e-09,1.75684120026099e-09,-1.73906028458621e-09 +4.472,-2.10730708399484e-06,-1.32368902398122e-06,1.41567034950274e-06,4.64832630719947e-10,2.48120713558508e-09,0.0799987816925132,-3.64237741530508e-09,2.8621931213998e-09,1.06467785976327e-09,7.20291881695009e-11,6.21790813282105e-10,-1.45141190732706e-09,0.013217243121048,0.00924807795577971,-0.00866012376892325,-3.26128013479555e-10,3.29380620004505e-09,0.00354574074094897 +4.474,-1.19720326551692e-08,1.24630531520009e-08,4.05643405324008e-09,4.65035052132912e-10,2.48279070913515e-09,0.0799999937183012,2.38521702645147e-05,2.10402618505019e-05,-1.16705276631906e-05,7.23119480961012e-11,6.27452950707832e-10,2.49234830551642e-05,6.03304298677483e-10,1.02435421272334e-09,2.94252469618539e-09,1.6263032587686e-10,9.61470486594864e-10,1.12583553582863e-09 +4.476,-2.01189840293679e-06,-1.23952797657922e-06,1.36898823884998e-06,4.65121878512331e-10,2.48371694738792e-09,0.0799988813864454,-3.63996419811037e-09,2.8662905382507e-09,1.07644795854801e-09,7.26797094730083e-11,6.25636695228484e-10,-1.44690856518375e-09,-0.00672957728626743,-0.00458987740566593,0.00413938474859843,5.16080234099086e-10,-4.78783679404419e-10,-0.00293772219311371 +4.478,-1.19865925119617e-08,1.24745183141539e-08,4.06073984507427e-09,4.65325770970804e-10,2.48529325591607e-09,0.0799999937125136,-3.06613888055203e-06,2.68075222784018e-06,4.88701133120135e-06,7.43762690324973e-11,6.25537815990215e-10,1.31725942827106e-05,3.99730704268008e-08,-3.65133270842487e-08,-2.03309591385034e-08,4.49293380277489e-09,-6.99917554473058e-09,2.15834294881789e-08 +4.48,-2.024162958459e-06,-1.22880496766786e-06,1.38853628417479e-06,4.65419383588461e-10,2.48621909865188e-09,0.0799989340768225,-3.48007191640315e-09,2.72023722991369e-09,9.95124121993984e-10,9.06514446841099e-11,5.97639993049559e-10,-1.36057484723103e-09,-0.014043867560521,-0.00814984542352165,0.00973936058212337,7.17698470098916e-09,-1.27571564422987e-08,-0.0302109804820378 +4.482,-1.20005127996273e-08,1.24853992630736e-08,4.06472034156224e-09,4.6568837674954e-10,2.48768381588826e-09,0.0799999937070713,-5.92416091226423e-05,-2.99186294662501e-05,4.38444536596992e-05,1.03084207836457e-10,5.74509190221014e-10,-0.000107671327645454,-5.65237960623042e-09,1.38101335924054e-08,-1.8656950983582e-09,2.38004060904574e-09,3.04183761515919e-09,-1.01888983362275e-08 +4.484,-2.26112939494955e-06,-1.34847948553285e-06,1.56391409881357e-06,4.65831720419807e-10,2.48851713541276e-09,0.0799985033915119,-3.50268143482807e-09,2.7754777642833e-09,9.87661341600552e-10,1.00171607120292e-10,6.09807343510194e-10,-1.40133044057593e-09,0.0336232281631765,0.0155808568412709,-0.026734073898,-2.34621350126435e-09,1.4069908432747e-08,0.0443925257552203 +4.486,-1.20145235253666e-08,1.24965011741307e-08,4.06867098692865e-09,4.66089063178021e-10,2.4901230452623e-09,0.0799999937014659,7.52513035300487e-05,3.24047978988265e-05,-6.30918419322889e-05,9.36993538314008e-11,6.30788823951996e-10,6.98987753754076e-05,-2.59718462012555e-08,1.72297072441127e-08,1.10642831701573e-08,-4.13037659630541e-09,2.07603031984092e-09,-1.08168682343732e-08 +4.488,-1.96012418082932e-06,-1.21886029393753e-06,1.31154673108438e-06,4.66206517835133e-10,2.49104029070857e-09,0.0799987829866134,-3.6065688196331e-09,2.84439659325976e-09,1.03191847428119e-09,8.36501007350683e-11,6.18111464789559e-10,-1.44459791351343e-09,-0.027262677810263,-0.0136848965388829,0.0215244468446777,-3.91830665135741e-09,-3.83200415839773e-09,-0.0166863487784069 +4.49,-1.20289498006451e-08,1.25078787605037e-08,4.07279866082577e-09,4.66423663580962e-10,2.49259549112146e-09,0.0799999936956876,-3.37994077110155e-05,-2.23347882567112e-05,2.30059454464316e-05,7.80261272259694e-11,6.15460807318403e-10,3.1533802617726e-06,2.70890081197905e-08,-2.93389444681753e-08,-1.33565034032291e-08,1.73819292293379e-09,-6.13484957275902e-09,1.76109127280402e-08 +4.492,-2.09532181167336e-06,-1.30819944696436e-06,1.4035705128701e-06,4.66518622344037e-10,2.49350213393784e-09,0.0799987956001345,-3.49821278715395e-09,2.72704081538707e-09,9.78492460668275e-10,9.06028724268026e-11,5.93572066498525e-10,-1.37415426260128e-09,-0.00220796470180414,0.000997998575708581,0.00271336721732438,5.6885919585926e-09,-1.00475183728918e-08,-0.0249331353384745 +4.494,-1.20429426517937e-08,1.25187869237653e-08,4.07671263066844e-09,4.66786075070669e-10,2.49496977938746e-09,0.0799999936901909,-4.26312665182311e-05,-1.83427939538773e-05,3.38594143157279e-05,1.00780495060337e-10,5.7527073382684e-10,-9.65791610921144e-05,-1.00811286400083e-08,1.82302090088848e-08,3.77454144323586e-09,1.31752247999906e-09,4.28259858128384e-09,-1.14127457483726e-08 +4.496,-2.26584687774631e-06,-1.38157062277988e-06,1.53900817013303e-06,4.66921744324278e-10,2.49580321687315e-09,0.0799984092834901,-3.53853730171399e-09,2.79996165142262e-09,9.93590626441221e-10,9.58729623467995e-11,6.10702460823663e-10,-1.41980524559477e-09,0.0279120571229573,0.0130458462821611,-0.0220744763544648,-3.06308797770045e-09,1.44441750227528e-08,0.0453138627480186 +4.498,-1.20570968010006e-08,1.2529986770371e-08,4.08068699317421e-09,4.67169566920056e-10,2.49741258923075e-09,0.0799999936845117,6.90169619736107e-05,3.38405911747728e-05,-5.44384911021411e-05,8.85281431495341e-11,6.33047433917858e-10,8.46762898999802e-05,-2.65970513844218e-08,1.97511278167628e-08,1.50118632802928e-08,-4.35025279687647e-09,3.27342319920285e-09,-1.06538042277927e-08 +4.5,-1.9897790298519e-06,-1.24620825808081e-06,1.32125420572449e-06,4.67275856896876e-10,2.49833540660882e-09,0.0799987479886497,-3.64492550725166e-09,2.87896616268966e-09,1.05363807956239e-09,7.84719511592955e-11,6.23796153620473e-10,-1.46242046250594e-09,-0.0243384716711032,-0.0122978713089727,0.0191598105916033,-3.8675659896952e-09,-2.47284831504006e-09,-0.0184601907813863 +4.502,-1.20716765030296e-08,1.25415026350217e-08,4.08490154549246e-09,4.67483454724693e-10,2.49990777384523e-09,0.079999993678662,-2.83369247107912e-05,-1.53508940611124e-05,2.22007512642636e-05,7.3057879190755e-11,6.23156040657699e-10,1.0835526774443e-05,-8.18496746054062e-09,6.01385261018135e-09,7.89147393259276e-09,-1.68745226126042e-09,1.62890534390725e-09,-1.68528385682991e-09 +4.504,-2.10312672869507e-06,-1.30761183432526e-06,1.41005721078155e-06,4.67568088413639e-10,2.50082803077145e-09,0.0799987913307568,-3.67766537709383e-09,2.90302157313039e-09,1.08520397529276e-09,7.17221421142531e-11,6.30311774996102e-10,-1.46916159793326e-09,0.0129983846528073,0.00901484350492986,-0.00849718669840342,-1.95156391043333e-10,3.17280923759615e-09,0.0034657612439654 +4.506,-1.2086387164538e-08,1.25531147213143e-08,4.08924236139363e-09,4.6777034329315e-10,2.50242902094522e-09,0.0799999936727854,2.36566139004439e-05,2.07084799586111e-05,-1.17879955293539e-05,7.22772536265816e-11,6.35847277608085e-10,2.46985717503062e-05,8.443766517278e-10,6.22765728037043e-10,2.41126563166851e-09,2.97071395265074e-10,8.43509290228893e-10,1.20216336877063e-09 +4.508,-2.00850027309331e-06,-1.22477791449083e-06,1.36290522866414e-06,4.67857197428145e-10,2.50337141988188e-09,0.0799988901250438,-3.67428787048692e-09,2.90551263604254e-09,1.09484903781943e-09,7.29104276953132e-11,6.33685812157018e-10,-1.46435294445818e-09,-0.00663222836312823,-0.00449848669426104,0.00407685040956329,6.46618175666342e-10,-5.75928194059596e-10,-0.00296156288815683 +4.51,-1.21010843160199e-08,1.25647367718584e-08,4.09362175754491e-09,4.68061985003931e-10,2.50496376419385e-09,0.079999993666928,-2.87229955206611e-06,2.71453318156892e-06,4.51940610889744e-06,7.48637263292467e-11,6.33543564831847e-10,1.28523201976801e-05,4.20334340271207e-09,-2.36312705531023e-09,-1.61112442837387e-09,1.11109038635885e-09,5.6812193803053e-11,2.0374327226156e-09 +4.512,-2.01998947130157e-06,-1.21391978176455e-06,1.38098285309973e-06,4.68156652333462e-10,2.50590559414121e-09,0.0799989415343246,-3.65747449687607e-09,2.8960601278213e-09,1.08840454010594e-09,7.73547892407491e-11,6.3391306093223e-10,-1.45620321356771e-09,0.00281620262965735,0.00104402043347316,-0.0024741424495091,1.30841518175966e-09,1.22298005091532e-10,-0.00180904083293199 +4.514,-1.21157142140074e-08,1.25763210123697e-08,4.09797537570533e-09,4.68371404160894e-10,2.50749941643758e-09,0.0799999936611032,8.39251096656455e-06,6.89061491546204e-06,-5.37716368914008e-06,8.00973870562859e-11,6.34032756852213e-10,5.61615686595136e-06,4.51841255363128e-09,-3.5618209768894e-09,-3.89987521437082e-09,1.26591445659865e-09,-6.99093560783627e-10,1.80237769145945e-09 +4.516,-1.98641942743532e-06,-1.1863573221027e-06,1.35947419834317e-06,4.68477041881687e-10,2.50844172516862e-09,0.0799989639989521,-3.63940084666155e-09,2.88181284391374e-09,1.07280503924845e-09,8.24184470671432e-11,6.31116686689096e-10,-1.44899370280187e-09,-0.00189360482752033,-0.00169383859846241,0.000886678436186289,1.18047932539777e-09,-1.1275702594201e-09,-0.00134484156016249 +4.518,-1.21302718173941e-08,1.25878482637454e-08,4.10226659586233e-09,4.68701077949163e-10,2.51002388318433e-09,0.0799999936553072,8.18091656484046e-07,1.15260521613135e-07,-1.83044994439531e-06,8.48193043578765e-11,6.29522475814533e-10,2.36790625301993e-07,3.6348419935675e-09,-3.51021295379822e-09,-4.61002763746689e-09,1.13234074893903e-09,-9.34148591848329e-10,1.31752248008453e-09 +4.52,-1.98314706080938e-06,-1.18589628001625e-06,1.35215239856559e-06,4.68816319099119e-10,2.51095981507188e-09,0.0799989649461146,-3.62486147868727e-09,2.86777199209855e-09,1.05436492869859e-09,8.69478100628998e-11,6.27380092321702e-10,-1.44372361288154e-09,0.000512133578058636,5.17103569165685e-05,-0.000532331340249746,1.03562991516286e-09,-8.56086035359613e-10,-0.000615103552294146 +4.522,-1.21447712633088e-08,1.25993193517138e-08,4.10648405557712e-09,4.69048869189415e-10,2.51253340355362e-09,0.0799999936495323,2.86662596871882e-06,3.22101949279432e-07,-3.95977530539453e-06,8.89618240185284e-11,6.26098131673094e-10,-2.22362358387487e-06,2.45663949232555e-09,-2.60078417119959e-09,-4.18805615181936e-09,8.99454122299001e-10,-9.24607612661024e-10,7.35522753734217e-10 +4.524,-1.97168055693451e-06,-1.18460787221913e-06,1.33631329734402e-06,4.69172166395193e-10,2.51346420759857e-09,0.0799989560516202,-3.61503492071797e-09,2.85736885541375e-09,1.03761270409131e-09,9.05456265520954e-11,6.23681661871058e-10,-1.4407815218666e-09,-0.000590757741933125,-0.000387970888488676,0.000420175987536503,7.54171031175979e-10,-9.08995101446611e-10,-0.000146189146725416 +4.526,-1.21592314029917e-08,1.26107488271354e-08,4.11063450639348e-09,4.69411051695623e-10,2.5150281302011e-09,0.0799999936437692,5.03595000986581e-07,-1.2297816046751e-06,-2.27907135524871e-06,9.1978508143232e-11,6.22462151267308e-10,-2.80838017077647e-06,1.25599400691628e-09,-1.28152696803623e-09,-2.9581372074664e-09,6.305719835124e-10,-6.37077196586946e-10,2.00360561555225e-10 +4.528,-1.96966617693056e-06,-1.18952699863784e-06,1.32719701192302e-06,4.69540080427766e-10,2.51595405620364e-09,0.0799989448180996,-3.61001094469031e-09,2.8522427475416e-09,1.02578015526144e-09,9.30679144861453e-11,6.2113335308471e-10,-1.43998007962038e-09,3.08640678119422e-05,0.000122324281346468,0.000114312976836004,4.93962509789501e-10,-4.6143644457527e-10,0.000115995682676961 +4.53,-1.21736714467705e-08,1.26221577981256e-08,4.11473762701453e-09,4.69783323353568e-10,2.51751266361344e-09,0.0799999936380092,6.27051272234363e-07,-7.40484479289176e-07,-1.82181944790464e-06,9.39543581823902e-11,6.20616405489007e-10,-2.34439744006857e-06,1.50270420906123e-10,6.72205348525138e-11,-1.38886298289732e-09,3.69929781257304e-10,-2.7365262830094e-10,-2.86229373616183e-10 +4.532,-1.96715797184163e-06,-1.19248893655499e-06,1.3199097341314e-06,4.69915897860496e-10,2.5184365218256e-09,0.0799989354405098,-3.60940986300668e-09,2.85251162968101e-09,1.02022470332985e-09,9.45476336111743e-11,6.20038742571506e-10,-1.44112499711484e-09,-0.000205580039157448,2.23711656838621e-05,0.00031083798078892,2.17707796229872e-10,-1.31838984208683e-10,0.000222332091973217 +4.534,-1.21881090862225e-08,1.26335678446443e-08,4.11881852582785e-09,4.70161513888012e-10,2.51999281858373e-09,0.0799999936322447,-1.95268884395339e-07,-6.50999816553737e-07,-5.78467524749095e-07,9.48251893673096e-11,6.20089049552172e-10,-1.4550690721758e-06,-8.06971676780383e-10,1.29497107465803e-09,5.05238211812087e-11,8.10983224966495e-11,8.6302492895431e-11,-5.26488574878821e-10 +4.536,-1.96793904737921e-06,-1.19509293582121e-06,1.31759586403241e-06,4.70295198617965e-10,2.5209168780238e-09,0.0799989296202335,-3.6126377497138e-09,2.85769151397965e-09,1.02042679861458e-09,9.4872026901161e-11,6.20383952543088e-10,-1.44323095141436e-09,-1.7077119720502e-05,0.000131433377636261,0.00016469585656199,-2.60208521343888e-11,2.29417179732338e-10,0.000238885133028918 +4.538,-1.22025596372213e-08,1.26449986107002e-08,4.12290023302231e-09,4.70541001995617e-10,2.5224743543939e-09,0.0799999936264718,-2.63577363277355e-07,-1.25266306008634e-07,8.03159014989374e-08,9.4721105958772e-11,6.21006718271102e-10,-4.99528540060023e-07,-1.51744936081168e-09,2.05781572353653e-09,1.22124532714457e-09,-1.12757025933251e-10,3.91613824736265e-10,-8.2919782159719e-10 +4.54,-1.96899335683232e-06,-1.19559400104524e-06,1.3179171276384e-06,4.706740830418e-10,2.52340090489689e-09,0.0799989276221194,-3.61870754715705e-09,2.86592277687379e-09,1.02531177992316e-09,9.4420998797428e-11,6.21950407842033e-10,-1.44654774270075e-09,-4.12102252279395e-05,8.46405263585438e-05,0.000133281938220412,-1.96891114528624e-10,4.45390252422585e-10,0.000206894762606907 +4.542,-1.221703446741e-08,1.26564623018077e-08,4.127001480142e-09,4.70918685990807e-10,2.52496215602527e-09,0.0799999936206856,-4.28418264189095e-07,2.13295799425504e-07,6.13443654380528e-07,9.39335415006576e-11,6.22788279280792e-10,3.28050510367513e-07,-1.92337465378796e-09,2.51621640174474e-09,1.93074722870484e-09,-2.62810606615669e-10,5.39065320125172e-10,-9.22005527401178e-10 +4.544,-1.97070702988907e-06,-1.19474081784754e-06,1.32037090225592e-06,4.71049817207803e-10,2.52589205801401e-09,0.0799989289343214,-3.6264010457722e-09,2.87598764248077e-09,1.03303476883798e-09,9.33697563709652e-11,6.24106669122534e-10,-1.45023576481035e-09,2.87326118843354e-05,8.8287183119829e-05,3.1834261138667e-05,-3.07046055242681e-10,5.86770215783728e-10,0.000151023049101158 +4.546,-1.22315400715931e-08,1.26679662523776e-08,4.13113361921735e-09,4.7129216501629e-10,2.52745858270176e-09,0.0799999936148847,-3.1348781665174e-07,5.6644453190486e-07,7.4078069893521e-07,9.27053572796868e-11,6.25135360143927e-10,9.32142706772213e-07,-2.0416611112092e-09,2.46851150647512e-09,2.1868357819611e-09,-3.21791204788586e-10,5.85902854045921e-10,-8.97719398898695e-10 +4.548,-1.97196098115568e-06,-1.19247503971992e-06,1.32333402505166e-06,4.71420638636921e-10,2.52839259945459e-09,0.0799989326628922,-3.63456769021704e-09,2.88586168850667e-09,1.04178211196582e-09,9.2082591551811e-11,6.26450280538717e-10,-1.45382664240595e-09,3.31361718663124e-05,5.34402977598842e-05,-1.85097776949911e-05,-3.30898503047721e-10,6.02382726998245e-10,8.69327622040653e-05 +4.55,-1.22460783423539e-08,1.26795096991317e-08,4.13530074766522e-09,4.71660495382498e-10,2.52996438382391e-09,0.0799999936090694,-1.80943129186505e-07,7.80205722944373e-07,6.66741588155254e-07,9.1381763267496e-11,6.2754489105192e-10,1.27987375558844e-06,-1.92272413248354e-09,2.25904364643017e-09,2.1170131619369e-09,-3.36536354344539e-10,5.9674487570111e-10,-8.04911692772343e-10 +4.552,-1.97268475367243e-06,-1.18935421682814e-06,1.32600099140429e-06,4.71786165689991e-10,2.5309027790188e-09,0.0799989377823872,-3.64225858674697e-09,2.89489786309239e-09,1.05025016461357e-09,9.07364461344327e-11,6.28837260041522e-10,-1.45704628917704e-09,4.81788580385011e-05,3.21480832406617e-05,-6.18717360331329e-05,-3.17020715229689e-10,5.42968448015577e-10,2.62585118580171e-05 +4.554,-1.22606473767009e-08,1.2691089290584e-08,4.13950174832367e-09,4.72023441167035e-10,2.53247973286408e-09,0.0799999936032412,1.17723029675206e-08,9.08798055907034e-07,4.19254644022695e-07,9.01136804065771e-11,6.29716764843982e-10,1.38490780302052e-06,-1.66273245192641e-09,1.86612877944314e-09,1.77267055207247e-09,-2.85795692662205e-10,4.63604848989827e-10,-7.34655392157271e-10 +4.556,-1.97263766446056e-06,-1.18571902460451e-06,1.32767800998038e-06,4.72146620411618e-10,2.53342164607817e-09,0.0799989433220185,-3.64890951655468e-09,2.90236237821016e-09,1.05734084682186e-09,8.9593263363784e-11,6.30691679437481e-10,-1.45998491074567e-09,3.86097164981572e-05,5.06538127409923e-06,-7.27124289598656e-05,-2.52402265759629e-10,4.78349998465631e-10,-2.26559907987802e-05 +4.558,-1.22752430147671e-08,1.27026987400969e-08,4.14373111171096e-09,4.72381814220491e-10,2.53500249958183e-09,0.0799999935974013,1.66211168960132e-07,9.29059581003429e-07,1.28404928183264e-07,8.91040713435387e-11,6.31630164837845e-10,1.2942838398254e-06,-1.35205431899513e-09,1.4242079736155e-09,1.37303363117666e-09,-2.16406753633029e-10,4.2934406026916e-10,-6.01081684344781e-10 +4.56,-1.97197281978471e-06,-1.1820027862805e-06,1.32819162969311e-06,4.72503036696992e-10,2.53594816673752e-09,0.0799989484991538,-3.65431773383066e-09,2.90805921010463e-09,1.06283298134657e-09,8.87276363492518e-11,6.32409055678558e-10,-1.46238923748304e-09,2.78759536070672e-05,-1.30757462149006e-05,-6.86214195275769e-05,-1.63497687605865e-10,3.52148865658356e-10,-5.52496486060763e-05 +4.562,-1.22898602857024e-08,1.27143309769373e-08,4.14798244363634e-09,4.72736724765888e-10,2.53753213580454e-09,0.0799999935915517,2.77714983388414e-07,8.76756596143821e-07,-1.46080749927074e-07,8.84500805931152e-11,6.33038760300478e-10,1.07328524540107e-06,-1.07119174661877e-09,1.08637057699221e-09,9.18969761457906e-10,-1.27935856348392e-10,3.04877650938087e-10,-5.23019128088284e-10 +4.564,-1.97086195985116e-06,-1.17849575989593e-06,1.3276073066934e-06,4.72856837019364e-10,2.53848032177872e-09,0.0799989527922948,-3.65860250081714e-09,2.91240469241259e-09,1.0665088603924e-09,8.82158929238583e-11,6.3362856628231e-10,-1.4644813139954e-09,1.14902306419374e-05,-2.62365251052985e-05,-5.04242442071674e-05,-1.01915004218547e-10,2.77989436990159e-10,-7.08597278076856e-05 +4.566,-1.23044946957057e-08,1.2725980595707e-08,4.15224847907791e-09,4.73089588337583e-10,2.54006665006967e-09,0.0799999935856938,3.23675905956158e-07,7.71810495722638e-07,-3.47777726755721e-07,8.8042420576241e-11,6.34150718048439e-10,7.89846334170364e-07,-8.79559012225591e-10,8.71698546516431e-10,5.84601811344872e-10,-6.98226199129474e-11,2.25080370972759e-10,-3.72098185515661e-10 +4.568,-1.96956725622734e-06,-1.17540851791303e-06,1.32621619578638e-06,4.73209006701669e-10,2.54101692465092e-09,0.0799989559516801,-3.66212073686604e-09,2.91589148659866e-09,1.06884726763778e-09,8.79366024442065e-11,6.34528887766201e-10,-1.46596970673746e-09,-1.99846026227517e-06,-3.14235941954303e-05,-2.84501228999171e-05,-2.21177243138195e-11,1.99493199772517e-10,-7.19274657195572e-05 +4.57,-1.23191431786532e-08,1.27376441616533e-08,4.15652386814847e-09,4.7344133474736e-10,2.54260476562074e-09,0.0799999935798299,3.15682064907057e-07,6.46116118940903e-07,-4.61578218355403e-07,8.79539496789858e-11,6.34948690847529e-10,5.02136471292103e-07,-7.81330295805148e-10,7.69349861757719e-10,3.74917111304879e-10,7.8062556467788e-12,1.97758476296636e-10,-4.6577325338125e-10 +4.572,-1.96830452796771e-06,-1.17282405343727e-06,1.32436988291296e-06,4.73560822500385e-10,2.54355671941431e-09,0.079998957960226,-3.66524605804926e-09,2.91896888604569e-09,1.070346936083e-09,8.79678274667936e-11,6.35319921671388e-10,-1.46783279975099e-09,-1.23961112100114e-05,-3.11084625941396e-05,-7.03289683432129e-06,1.30104260649452e-11,1.76941794514395e-10,-6.26729761838141e-05 +4.574,-1.23338041628854e-08,1.27493200371975e-08,4.1608052558928e-09,4.73793206057227e-10,2.54514604530742e-09,0.0799999935739586,2.66097620067016e-07,5.21682268564358e-07,-4.89709805692685e-07,8.80059913832455e-11,6.35656458025586e-10,2.51444566556874e-07,-7.73198779104361e-10,7.92334947490191e-10,2.45897052660231e-10,4.4669129501509e-11,1.52221984981663e-10,-4.14598910676882e-10 +4.576,-1.96724013748744e-06,-1.17073732436301e-06,1.32241104369019e-06,4.73912846465918e-10,2.54609934524641e-09,0.0799989589660043,-3.66833885316568e-09,2.92213822583565e-09,1.07133052429364e-09,8.81465039847996e-11,6.35928809611315e-10,-1.46949119539369e-09,-1.75955432407349e-05,-2.63838521342695e-05,9.2267098908838e-06,5.42101086291612e-11,1.76074432846936e-10,-4.77417055541466e-05 +4.578,-1.2348477518298e-08,1.27610085901009e-08,4.16509057798997e-09,4.74145792073166e-10,2.54768976054587e-09,0.0799999935680806,1.95715447104069e-07,4.16146860027268e-07,-4.52802966129145e-07,8.82228318177622e-11,6.36360755756974e-10,6.0477744340266e-08,-8.46870317132317e-10,9.31980187630976e-10,2.23779328460538e-10,5.50774703671682e-11,2.00794242379648e-10,-4.70110062071399e-10 +4.58,-1.96645727569902e-06,-1.1690727369229e-06,1.32059983182567e-06,4.74265737793189e-10,2.54864478826944e-09,0.0799989592079153,-3.6717263344342e-09,2.92586614658618e-09,1.07222564160748e-09,8.83668138662683e-11,6.36731986580833e-10,-1.47137163564198e-09,-1.8406468244123e-05,-1.95150176400769e-05,1.90013729577361e-05,8.15320033660108e-11,1.79110198859263e-10,-3.11893974189214e-05 +4.582,-1.23631644236358e-08,1.27727120546872e-08,4.1693794805564e-09,4.74499259328631e-10,2.55023668849219e-09,0.0799999935621951,1.22089574127585e-07,3.38086789466969e-07,-3.76797474298209e-07,8.85489598312262e-11,6.37077196552411e-10,-6.4279845335406e-08,-9.43364310075528e-10,1.06381917148012e-09,2.78639958269186e-10,8.3700407710957e-11,1.81278603204194e-10,-5.01335084475505e-10 +4.584,-1.96596891740251e-06,-1.16772038976504e-06,1.31909264192848e-06,4.74619933632514e-10,2.55119309705565e-09,0.0799989589507959,-3.67549979167451e-09,2.9301214232721e-09,1.07334020144056e-09,8.87016154971122e-11,6.3745710099365e-10,-1.47337697597988e-09,-1.560591646144e-05,-1.20045353865595e-05,2.21939146747908e-05,8.1098322506831e-11,2.02962646724652e-10,-1.59295467441791e-05 +4.586,-1.23778664228025e-08,1.27844325403803e-08,4.17367284136216e-09,4.7485406579062e-10,2.55278651689617e-09,0.0799999935563016,5.96659082818179e-08,2.90068647920726e-07,-2.88021815599036e-07,8.88733531212536e-11,6.3788904713931e-10,-1.2799803231213e-07,-1.06257233934875e-09,1.27632279761293e-09,3.56051993503888e-10,8.02309607688702e-11,2.25080371043429e-10,-5.75928194106203e-10 +4.588,-1.96573025376939e-06,-1.16656011517335e-06,1.31794055466608e-06,4.74975427044999e-10,2.55374465324421e-09,0.0799989584388038,-3.6797500810319e-09,2.93522671446255e-09,1.07476440941457e-09,8.90225393401876e-11,6.38357422477824e-10,-1.4756806887563e-09,-1.07465698666353e-05,-5.13963264310801e-06,2.02102958934434e-05,6.59194920821855e-11,2.44596010077343e-10,-3.60818146193775e-06 +4.59,-1.23925854231266e-08,1.27961734472382e-08,4.17797189899982e-09,4.7521015594798e-10,2.55533994658608e-09,0.0799999935503989,1.66796288152813e-08,2.69510117348296e-07,-2.07180632025271e-07,8.91370310895823e-11,6.38867431179619e-10,-1.42430758159879e-07,-1.16053000522394e-09,1.36956418412037e-09,4.20670442864617e-10,8.15320033659474e-11,2.61943244837003e-10,-5.72458746990288e-10 +4.592,-1.96566353525413e-06,-1.16548207470396e-06,1.31711183213798e-06,4.75331975169357e-10,2.55630012296892e-09,0.0799989578690807,-3.6843922010528e-09,2.94070497119903e-09,1.07644709118603e-09,8.93486673536514e-11,6.39405195457172e-10,-1.47797052374427e-09,-5.17102582541552e-06,4.22453738672641e-07,1.49209672395285e-05,8.89045781487613e-11,2.60642202300977e-10,5.22173103366982e-06 +4.594,-1.24073229919308e-08,1.2807936267123e-08,4.18227768736457e-09,4.75567550617395e-10,2.55789756736791e-09,0.079999993544487,-4.00447448638308e-09,2.71199932302987e-07,-1.4749676306715e-07,8.94926494021774e-11,6.39909999988823e-10,-1.21543834025197e-07,-1.23024420532406e-09,1.4988010834076e-09,4.91143584195803e-10,8.06646416379e-11,2.46764414493245e-10,-6.36643515765656e-10 +4.596,-1.96567955315207e-06,-1.16439727497475e-06,1.31652184508571e-06,4.75689945766966e-10,2.55885976296888e-09,0.0799989573829054,-3.68931317787409e-09,2.94670017553266e-09,1.07841166552281e-09,8.9671325920203e-11,6.40392253115145e-10,-1.48051709780733e-09,-6.19459995449542e-08,4.40057018600996e-06,8.32024401633531e-06,8.45677694488994e-11,2.53703308326067e-10,1.07735643323293e-05 +4.598,-1.24220802446423e-08,1.28197230678251e-08,4.18659133402666e-09,4.75926235921076e-10,2.56045913638037e-09,0.0799999935385649,-4.25225848456287e-09,2.88802213047025e-07,-1.14215787001813e-07,8.98309204799729e-11,6.40924813222127e-10,-7.84495766958849e-08,-1.26743233943048e-09,1.54130180824144e-09,5.21067564036556e-10,8.37004077108859e-11,2.81892564810631e-10,-6.40980324291106e-10 +4.6,-1.96569656218601e-06,-1.16324206612256e-06,1.3160649819377e-06,4.76049269448886e-10,2.56142346222177e-09,0.0799989570691071,-3.69438290723182e-09,2.95286538276563e-09,1.08049593577896e-09,9.00061275510466e-11,6.41519823374387e-10,-1.48308101910449e-09,3.83964051959399e-06,6.85553176728519e-06,2.03416081721229e-06,8.41340885898611e-11,2.7148422402596e-10,1.36695819594147e-05 +4.602,-1.24368577762712e-08,1.28315345293561e-08,4.19091331776977e-09,4.7628626043128e-10,2.56302521567386e-09,0.0799999935326326,1.11063035938148e-08,3.16224340116168e-07,-1.06079143732963e-07,9.01674568343324e-11,6.42010750118231e-10,-2.37712488582202e-08,-1.27957540417278e-09,1.52959242510681e-09,5.45353692820343e-10,7.329206686503e-11,2.97938757034696e-10,-5.91540705390564e-10 +4.604,-1.96565213697163e-06,-1.1619771687621e-06,1.31564066536277e-06,4.76409939276223e-10,2.56399150522224e-09,0.0799989569740221,-3.69950120884851e-09,2.95898375246605e-09,1.08267735055024e-09,9.02992958185067e-11,6.42711578402526e-10,-1.48544718192606e-09,6.18276436992131e-06,8.01291758637987e-06,-2.84028182916917e-06,6.93889390340684e-11,2.92300905666452e-10,1.46438729198297e-05 +4.606,-1.24516557811066e-08,1.2843370464366e-08,4.19524402717197e-09,4.76647457614554e-10,2.56559606198747e-09,0.0799999935266908,3.58373610734973e-08,3.48276010461684e-07,-1.17440271049638e-07,9.04450125904686e-11,6.43179953740897e-10,3.48042428210921e-08,-1.25908398270182e-09,1.5131125517562e-09,5.3798111792707e-10,8.02309607588971e-11,2.79290479596511e-10,-6.24500451269069e-10 +4.608,-1.96550878752734e-06,-1.16058406472025e-06,1.31517090427857e-06,4.76771719326585e-10,2.5665642250372e-09,0.0799989571132391,-3.70453754477931e-09,2.96503620267308e-09,1.08482927502195e-09,9.06202196615423e-11,6.43828740320912e-10,-1.48794518373113e-09,6.98534589546804e-06,8.17336302807159e-06,-5.80309411635878e-06,7.24247051270513e-11,2.9923979964169e-10,1.43444995465166e-05 +4.61,-1.24664739312857e-08,1.28552306091767e-08,4.19958334427206e-09,4.770099384932e-10,2.56817137694876e-09,0.079999993520739,6.37787446553726e-08,3.80969462573974e-07,-1.40652647515076e-07,9.07347114109769e-11,6.44376912939464e-10,9.2182241007165e-08,-1.23279208043054e-09,1.4641066138893e-09,5.34077990226699e-10,6.80878964371378e-11,2.55004351004394e-10,-6.08020578412604e-10 +4.612,-1.96525367254872e-06,-1.15906018686995e-06,1.31460829368851e-06,4.77134658172229e-10,2.56914173268896e-09,0.079998957481968,-3.70946871310104e-09,2.97089262912863e-09,1.08696558698286e-09,9.08925712472908e-11,6.4484875772493e-10,-1.49037726604478e-09,6.51231293284098e-06,7.62568610687853e-06,-6.85775264700079e-06,7.37257477290321e-11,2.57172755313616e-10,1.32415719014707e-05 +4.614,-1.24813118061382e-08,1.28671141796932e-08,4.20393120661999e-09,4.77373508778189e-10,2.57075077197966e-09,0.0799999935147775,8.98279963867337e-08,4.11472207001485e-07,-1.68083658103076e-07,9.1029614401893e-11,6.45405603960718e-10,1.45148528613042e-07,-1.19094187616076e-09,1.38127356758166e-09,5.14996031870287e-10,6.85215772960379e-11,3.00540842177188e-10,-5.88938620011369e-10 +4.616,-1.96489436056317e-06,-1.15741429804195e-06,1.3139359590561e-06,4.77498776629837e-10,2.5717233551048e-09,0.0799989580625621,-3.71423248060568e-09,2.97641772339896e-09,1.08902557111034e-09,9.11666575564749e-11,6.46050921093638e-10,-1.49273302052483e-09,5.1670406234849e-06,6.61329324633596e-06,-6.36392609615657e-06,7.32920668549486e-11,2.84928330893306e-10,1.16222855991892e-05 +4.618,-1.24961687360606e-08,1.28790198505868e-08,4.20828730890443e-09,4.77738175408415e-10,2.57333497566403e-09,0.0799999935088066,1.10496158880676e-07,4.37925379986832e-07,-1.93539362487705e-07,9.13227826693128e-11,6.46545317284291e-10,1.91637671009804e-07,-1.16286104030548e-09,1.3374718001433e-09,4.97865637665775e-10,6.89552581751368e-11,2.43728648410593e-10,-5.78530279321125e-10 +4.62,-1.96445237592765e-06,-1.155662596522e-06,1.31316180160615e-06,4.77864067760514e-10,2.57430953637394e-09,0.0799989588291128,-3.7188839247669e-09,2.98176761059953e-09,1.091017033661e-09,9.14424785891755e-11,6.47025835687281e-10,-1.49504714164211e-09,3.38060823909866e-06,5.32151709853096e-06,-4.86024350107377e-06,4.64038529874609e-11,2.68014777074377e-10,9.63886002265545e-06 +4.622,-1.25110442717596e-08,1.28909469210292e-08,4.21265137703908e-09,4.78103945322772e-10,2.57592307900678e-09,0.0799999935028264,1.24018591837069e-07,4.59211448380953e-07,-2.12980336491998e-07,9.15083980812626e-11,6.47617376392589e-10,2.30193111100422e-07,-1.14177330763802e-09,1.31882352244587e-09,5.12393946656063e-10,4.5970172108311e-11,2.91867224797173e-10,-5.34294830517887e-10 +4.624,-1.9639563015603e-06,-1.15382575072848e-06,1.31230988026018e-06,4.78230101352839e-10,2.57690000587951e-09,0.0799989597498853,-3.72345101799745e-09,2.98704290468932e-09,1.09306660944762e-09,9.16263592776087e-11,6.48193304586469e-10,-1.49718432096418e-09,1.53480559424129e-06,3.88811986076904e-06,-2.91100325267164e-06,5.8980598178119e-11,2.45463371814708e-10,7.37781190306097e-06 +4.626,-1.25259380758316e-08,1.2902895092648e-08,4.21702364347687e-09,4.78470450759882e-10,2.57851585222513e-09,0.0799999934968377,1.30157814214035e-07,4.74763927824031e-07,-2.24624349502686e-07,9.17443204739751e-11,6.48599229879848e-10,2.59704358712669e-07,-1.12003505449282e-09,1.23729151940627e-09,5.00250882445502e-10,5.68121938433264e-11,2.50667542314629e-10,-5.63785129775583e-10 +4.628,-1.96343567030344e-06,-1.15192669501718e-06,1.31141138286217e-06,4.78597078634735e-10,2.57949440279903e-09,0.0799989607887027,-3.72793115821542e-09,2.99199207076694e-09,1.09506761297741e-09,9.18536080529821e-11,6.49195974755728e-10,-1.49943946148329e-09,-8.58028383514526e-08,2.41929913605191e-06,-9.93345379922605e-07,4.4235448642509e-11,2.84928330965256e-10,4.92060298758363e-06 +4.63,-1.25408498004645e-08,1.2914863060931e-08,4.22140391392878e-09,4.78837865192094e-10,2.58111263612415e-09,0.0799999934908399,1.29814602860629e-07,4.84441124368238e-07,-2.28597731022376e-07,9.19212622685452e-11,6.49738943203709e-10,2.79386770663001e-07,-1.12491396385546e-09,1.23685783820534e-09,5.18248638387279e-10,4.51028103702967e-11,2.58040117015519e-10,-5.70724023513094e-10 +4.632,-1.962916411892e-06,-1.14998893051971e-06,1.31049699193808e-06,4.78964763683809e-10,2.58209335857185e-09,0.0799989619062498,-3.73243081407085e-09,2.99693950211976e-09,1.09714060753095e-09,9.20340192944632e-11,6.5022813522379e-10,-1.50172235757734e-09,-1.30971638699973e-06,1.00472755112999e-06,5.63778841332425e-07,4.64038529772659e-11,2.84060969155085e-10,2.38298270003939e-06 +4.634,-1.25557795237208e-08,1.29268508189395e-08,4.2257924763589e-09,4.79206001269272e-10,2.58371354866505e-09,0.079999993484833,1.24575737312629e-07,4.88460034572758e-07,-2.26342615657046e-07,9.21068776804542e-11,6.50875187080329e-10,2.8891870146316e-07,-1.12800394046121e-09,1.26071028633247e-09,5.32560107185773e-10,2.55871712757668e-11,2.98806118773109e-10,-5.55978874133946e-10 +4.636,-1.96241810894275e-06,-1.14803509038142e-06,1.30959162147545e-06,4.79333191194531e-10,2.58469685932017e-09,0.0799989630619246,-3.73694282983269e-09,3.00198234326509e-09,1.0992708479597e-09,9.21363679795663e-11,6.51423359698882e-10,-1.50394627307387e-09,-2.07127799069623e-06,-2.73516886196298e-07,1.59425164041216e-06,2.68882138827616e-11,2.41560244065934e-10,-7.5985225040455e-08 +4.638,-1.25707272950401e-08,1.29388587483126e-08,4.23018955975074e-09,4.7957454674119e-10,2.58631924210384e-09,0.0799999934788172,1.16290625349845e-07,4.87365967027973e-07,-2.19965609095398e-07,9.22144305359853e-11,6.51841428056593e-10,2.88614760562998e-07,-1.13879175166265e-09,1.25724083904755e-09,5.41450564878264e-10,4.94396190602263e-11,2.40692882255619e-10,-5.5771359744306e-10 +4.64,-1.96195294644135e-06,-1.1460856265133e-06,1.30871175903907e-06,4.79702048916675e-10,2.58730422503239e-09,0.0799989642163836,-3.74149799683934e-09,3.00701130662128e-09,1.10143665021921e-09,9.23341264558072e-11,6.52386131227905e-10,-1.50617712746365e-09,-2.38873347101455e-06,-1.34013893734918e-06,2.07483140912465e-06,3.16587034314485e-11,2.99239799569751e-10,-2.26857335002158e-06 +4.642,-1.25856932870275e-08,1.29508867935391e-08,4.23459530635162e-09,4.79943883247014e-10,2.58892878662875e-09,0.0799999934727925,1.06735691465786e-07,4.82005411278576e-07,-2.11666283458899e-07,9.23410653497111e-11,6.53038387254872e-10,2.79540467162911e-07,-1.15624740705487e-09,1.25767452025013e-09,5.33210628489523e-10,1.73472347648908e-11,2.89265139655341e-10,-5.24753851566574e-10 +4.644,-1.96152600367549e-06,-1.14415760486819e-06,1.30786509390524e-06,4.80071413178074e-10,2.58991637858141e-09,0.0799989653345455,-3.74612298646756e-09,3.01204200470229e-09,1.10356949273317e-09,9.24035153948668e-11,6.53543191786526e-10,-1.50827614286991e-09,-2.33573712671104e-06,-2.13147251582206e-06,2.08513610022979e-06,3.33934269176883e-11,2.58040117087871e-10,-4.00905263846154e-06 +4.646,-1.26006777789733e-08,1.29629349615579e-08,4.23900958432255e-09,4.80313497308593e-10,2.5915429593959e-09,0.0799999934667594,9.73927429589429e-08,4.73479521215289e-07,-2.0332573905798e-07,9.24746390573818e-11,6.54070547723223e-10,2.63504256609066e-07,-1.17202254824892e-09,1.32576241634812e-09,5.78530279177014e-10,4.16333634183136e-11,2.77989436988996e-10,-5.64652491346761e-10 +4.648,-1.96113643270365e-06,-1.14226368678333e-06,1.307051790949e-06,4.80441311734303e-10,2.59253266077231e-09,0.0799989663885625,-3.75081107666056e-09,3.01734505436768e-09,1.10588361384988e-09,9.257004884854e-11,6.54655149534482e-10,-1.5105347528353e-09,-2.01387571983703e-06,-2.60368419535489e-06,1.76136080548263e-06,4.03323208113187e-11,2.72351585691984e-10,-5.14820391180019e-06 +4.65,-1.261568102328e-08,1.29750043417753e-08,4.24343311877795e-09,4.80683777503987e-10,2.59416157999404e-09,0.0799999934607173,8.93372400795939e-08,4.63064784433868e-07,-1.96280295836049e-07,9.26359683406271e-11,6.55159954065991e-10,2.42911440961863e-07,-1.18508718484339e-09,1.31275199061291e-09,5.53810469766952e-10,3.68628738696471e-11,2.7148422402671e-10,-6.51388665313125e-10 +4.652,-1.96077908374333e-06,-1.14041142764559e-06,1.30626666976566e-06,4.80811855607666e-10,2.59515330058857e-09,0.0799989673602083,-3.75555142539993e-09,3.02259606233013e-09,1.10809885572894e-09,9.27175003440186e-11,6.55741086430589e-10,-1.51314030749655e-09,-1.52975874155119e-06,-2.7404636719379e-06,1.25447915942981e-06,4.4669129511555e-11,2.68014777074842e-10,-5.60190869385188e-06 +4.654,-1.26307032289816e-08,1.29870947260247e-08,4.24786551420087e-09,4.81054647505363e-10,2.59678454433976e-09,0.0799999934546647,8.32182051133898e-08,4.52102929746118e-07,-1.9126237919833e-07,9.28146448586733e-11,6.56232013174291e-10,2.20503806186458e-07,-1.20194652820891e-09,1.3712989075919e-09,5.68338778755391e-10,3.85975973353377e-11,2.81458883940846e-10,-5.42968447896738e-10 +4.656,-1.96044621092288e-06,-1.13860301592661e-06,1.30550162024887e-06,4.811831141871e-10,2.59777822864127e-09,0.0799989682422235,-3.76035921151277e-09,3.0280812579605e-09,1.11037221084397e-09,9.28718907333599e-11,6.56866921966352e-10,-1.51531218128814e-09,-9.79284253519137e-07,-2.55750672378496e-06,6.99077514636964e-07,3.12250225624221e-11,3.03576608259434e-10,-5.36747209179948e-06 +4.658,-1.26457446658276e-08,1.29992070510565e-08,4.25230700304424e-09,4.81426135068297e-10,2.59941201202762e-09,0.0799999934486035,7.93010680993128e-08,4.41872902850977e-07,-1.88466069139782e-07,9.2939544948923e-11,6.57446319607328e-10,1.99033917819258e-07,-1.20845174166107e-09,1.35134958795401e-09,5.57279916719215e-10,4.16333634285989e-11,2.71484224026839e-10,-6.1235738710391e-10 +4.66,-1.96012900665048e-06,-1.13683552431521e-06,1.30474775597231e-06,4.81554872366896e-10,2.6004080139197e-09,0.0799989690383592,-3.76519301847941e-09,3.03348665631231e-09,1.11260133051084e-09,9.30384241870743e-11,6.5795285886246e-10,-1.51776161083655e-09,-4.38870565318824e-07,-2.10176364157469e-06,1.95247247179024e-07,4.94396190705111e-11,2.48932818839224e-10,-4.52485271472785e-06 +4.662,-1.26608054379015e-08,1.30113409976818e-08,4.25675740836629e-09,4.81798288765045e-10,2.60204382346307e-09,0.0799999934425324,7.75455858380377e-08,4.33465848284679e-07,-1.87685080151066e-07,9.3137303425205e-11,6.58442050882685e-10,1.80934506960348e-07,-1.21690851818879e-09,1.39688607886194e-09,5.44920011829443e-10,5.68121938330736e-11,2.81458883940717e-10,-5.84601811319928e-10 +4.664,-1.95981882430713e-06,-1.13510166092207e-06,1.3039970156517e-06,4.81927421580597e-10,2.60304178212323e-09,0.0799989697620972,-3.77006065255217e-09,3.03907420062776e-09,1.11478101055816e-09,9.32656729624066e-11,6.59078694398223e-10,-1.52010001808183e-09,3.74095285955622e-08,-1.44659631498166e-06,-1.97307881828007e-07,4.81385764531747e-11,3.05311331735307e-10,-3.22230523514921e-06 +4.666,-1.26758856805118e-08,1.30234972944843e-08,4.26121653240852e-09,4.82171351456895e-10,2.60468013824067e-09,0.079999993436452,7.769522395242e-08,4.27679463024751e-07,-1.88474311678378e-07,9.33298577310178e-11,6.59663296209627e-10,1.6804528601975e-07,-1.22184163849189e-09,1.40035552615097e-09,5.5077470368451e-10,5.29090660224727e-11,2.83193607489785e-10,-5.81999726274629e-10 +4.668,-1.95950804341132e-06,-1.13339094306997e-06,1.30324311840499e-06,4.82300741011521e-10,2.60568043530807e-09,0.0799989704342784,-3.77494801910613e-09,3.04467562273236e-09,1.1169841093729e-09,9.34773092264965e-11,6.60211468828182e-10,-1.52242801698693e-09,4.16801142215613e-07,-6.81669564521484e-07,-4.56104121495678e-07,6.37510877473407e-11,2.7105054315806e-10,-1.65340744566969e-06 +4.67,-1.26909854725882e-08,1.30356759969752e-08,4.26568446884601e-09,4.82545260693801e-10,2.60732098411598e-09,0.0799999934303623,7.93624285212822e-08,4.24952784766666e-07,-1.90298728164361e-07,9.35848620820071e-11,6.60747498382259e-10,1.61431656237072e-07,-1.21918534275039e-09,1.40252393015824e-09,5.41884245746225e-10,4.94396190601487e-11,2.84494650023547e-10,-6.43582409502887e-10 +4.672,-1.95919059369724e-06,-1.1316911319309e-06,1.30248192349233e-06,4.82675080459849e-10,2.6083234253016e-09,0.079998971080005,-3.77982476047713e-09,3.050285718453e-09,1.11915164635588e-09,9.36750677027371e-11,6.61349447428276e-10,-1.52500234662494e-09,6.84356380154262e-07,9.81588941836698e-08,-5.86926124010865e-07,5.24753851430936e-11,2.90566182189377e-10,-2.68621930344579e-08 +4.674,-1.27061047716301e-08,1.3047877139849e-08,4.27016107543143e-09,4.82919960964612e-10,2.60996638190569e-09,0.0799999934242623,8.20998540418996e-08,4.25345420343401e-07,-1.92646432660404e-07,9.37947636225795e-11,6.61909763111016e-10,1.61324207464934e-07,-1.22037796555944e-09,1.3847430148678e-09,5.42968448042873e-10,5.11743425465155e-11,2.78856798799998e-10,-5.83734449750813e-10 +4.676,-1.95886219428107e-06,-1.12998975024953e-06,1.30171133776169e-06,4.83050259514339e-10,2.61097106435404e-09,0.0799989717253018,-3.78470627233937e-09,3.05582469051247e-09,1.12132352014806e-09,9.38797650729232e-11,6.62464874623476e-10,-1.52733728442395e-09,8.38932655987968e-07,8.05345807426894e-07,-6.13097246593145e-07,4.81385764635736e-11,2.45029691018509e-10,1.46217239705799e-06 +4.678,-1.27212435967194e-08,1.30601004386111e-08,4.27464636951203e-09,4.83295480024903e-10,2.61261624140419e-09,0.079999993418153,8.54555846658511e-08,4.28566803573108e-07,-1.95098821646777e-07,9.39873179284338e-11,6.6288988187509e-10,1.67172897053166e-07,-1.22406425252596e-09,1.41726907970343e-09,5.3342746880063e-10,6.11490025229708e-11,2.62376925704711e-10,-5.75928193939526e-10 +4.68,-1.95852037194241e-06,-1.12827548303523e-06,1.3009309424751e-06,4.83426208786053e-10,2.61362262388154e-09,0.0799989723939934,-3.78960252934948e-09,3.06149376683128e-09,1.12345723002326e-09,9.4124361083015e-11,6.63514382326295e-10,-1.52964099719971e-09,8.89192528197216e-07,1.369480050171e-06,-5.65378039513322e-07,5.898059817798e-11,3.05745012604043e-10,2.65638205875341e-06 +4.682,-1.27364020068368e-08,1.30723464136784e-08,4.27914019843212e-09,4.83671977469236e-10,2.61527029893349e-09,0.0799999934120344,8.90123547786404e-08,4.34044723773792e-07,-1.9736033380483e-07,9.42232403211457e-11,6.64112861925507e-10,1.7779842528818e-07,-1.22064901610319e-09,1.38300829139244e-09,5.53376788898992e-10,5.8546917319442e-11,2.82759926621049e-10,-5.7506083237124e-10 +4.684,-1.95816432252329e-06,-1.12653930414014e-06,1.30014150113988e-06,4.83803101747338e-10,2.61627907532924e-09,0.0799989731051871,-3.79448512541389e-09,3.06702579999685e-09,1.12567073717885e-09,9.43585487522928e-11,6.64645422032779e-10,-1.53194124052919e-09,8.50265224986152e-07,1.74430738952519e-06,-4.74050052695584e-07,5.50774703675074e-11,2.71050543158319e-10,3.45264788982289e-06 +4.686,-1.27515799473385e-08,1.30846145168784e-08,4.28364288138083e-09,4.84049411664245e-10,2.61792888062162e-09,0.0799999934059066,9.24134156785846e-08,4.41021953331892e-07,-1.99256534015612e-07,9.44435502026157e-11,6.6519706409814e-10,1.9160901684747e-07,-1.22070322579084e-09,1.40469233450198e-09,5.50774703560141e-10,5.55111512260197e-11,2.90132501320214e-10,-6.4965394166829e-10 +4.688,-1.95779466886058e-06,-1.12477521632681e-06,1.29934447500382e-06,4.84180875948148e-10,2.61893986358563e-09,0.0799989738716232,-3.79936793831705e-09,3.07264456933486e-09,1.12787383599309e-09,9.45805933571969e-11,6.6580595203806e-10,-1.53453985629586e-09,7.41415501036548e-07,1.91104640790149e-06,-3.6437367878779e-07,5.63785129639893e-11,2.87530416106159e-10,3.8088915701891e-06 +4.69,-1.27667774190918e-08,1.30969050951557e-08,4.28815437672481e-09,4.84427734037673e-10,2.62059210442978e-09,0.0799999933997685,9.53790776827311e-08,4.48666138963499e-07,-2.00714028730764e-07,9.46690642544717e-11,6.66347185762565e-10,2.06844583128229e-07,-1.22070322621243e-09,1.38387565313105e-09,5.36029554139432e-10,3.4260788655792e-11,2.77555756193249e-10,-5.59448321087657e-10 +4.692,-1.95741315254985e-06,-1.12298055177096e-06,1.2985416188889e-06,4.84559552205166e-10,2.62160525232868e-09,0.0799989746990015,-3.8042507512219e-09,3.07818007194738e-09,1.13001795420965e-09,9.47176365118201e-11,6.66916175062833e-10,-1.53677764958021e-09,5.83800314953595e-07,1.87753545352365e-06,-2.54347541303697e-07,4.51028103806623e-11,2.78856798800319e-10,3.74147067495732e-06 +4.694,-1.27819944220967e-08,1.31092178154435e-08,4.29267444854164e-09,4.84806604583721e-10,2.62325976913003e-09,0.0799999933936214,9.77142789425452e-08,4.56176280777593e-07,-2.01731418895978e-07,9.48494754959943e-11,6.67462612957766e-10,2.21810465828056e-07,-1.22086585611609e-09,1.38951350408656e-09,5.73109268313087e-10,6.24500451299083e-11,2.76254713512295e-10,-6.30571983432284e-10 +4.696,-1.95702229543408e-06,-1.12115584664785e-06,1.29773469321331e-06,4.8493895010715e-10,2.62427510278052e-09,0.0799989755862434,-3.80913421464637e-09,3.08373812596373e-09,1.1323103912829e-09,9.49674366923397e-11,6.68021193916882e-10,-1.53929993751394e-09,3.9911254639192e-07,1.67374794577053e-06,-1.55053487399394e-07,4.77048955840868e-11,2.93601948271948e-10,3.3153254447174e-06 +4.698,-1.27972309589552e-08,1.31215527679474e-08,4.29720369010678e-09,4.8518647433049e-10,2.62593185390569e-09,0.0799999933874642,9.93107291281131e-08,4.62871272560676e-07,-2.02351632845576e-07,9.50402950783307e-11,6.68637020750854e-10,2.35071767606927e-07,-1.22048638577835e-09,1.36782946097889e-09,5.59665161499872e-10,4.25007251667035e-11,2.84928330966278e-10,-6.02816407987383e-10 +4.7,-1.95662505251756e-06,-1.1193043615576e-06,1.29692528668193e-06,4.85319111287463e-10,2.62694965086352e-09,0.0799989765265304,-3.81401616018948e-09,3.08920944380765e-09,1.1345490519289e-09,9.51374395930065e-11,6.69160907240747e-10,-1.54171120314589e-09,2.0815163829236e-07,1.34582579458354e-06,-7.19374646769677e-08,4.55364912496759e-11,2.72785266634529e-10,2.62959445886088e-06 +4.702,-1.2812487023596e-08,1.31339096057226e-08,4.30174188631449e-09,4.85567024088862e-10,2.62860849753466e-09,0.0799999933812973,1.00143335681282e-07,4.68254575739009e-07,-2.02639382704284e-07,9.52224410433294e-11,6.69728161817392e-10,2.4559014544237e-07,-1.22905158251774e-09,1.38907982321694e-09,5.72241906574891e-10,4.7271214715087e-11,2.99673480437829e-10,-5.49907341799044e-10 +4.704,-1.95622447917484e-06,-1.11743134325465e-06,1.29611472915112e-06,4.85700001051637e-10,2.62962856351079e-09,0.079998977508891,-3.81893236651955e-09,3.09476576310051e-09,1.1368380195552e-09,9.53265244518668e-11,6.70359601162498e-10,-1.54391083251309e-09,2.940480974474e-08,9.48014670211657e-07,-6.65504976390012e-09,3.77302355972019e-11,2.84060969153973e-10,1.79974438128934e-06 +4.706,-1.28277627530621e-08,1.3146288668775e-08,4.30628923839271e-09,4.8594833018667e-10,2.63128993593931e-09,0.0799999933751217,1.00260954920261e-07,4.72046634419856e-07,-2.0266600290334e-07,9.53733619857182e-11,6.70864405694008e-10,2.52789122967528e-07,-1.22227531936357e-09,1.36175792881359e-09,5.59882001934628e-10,3.59955121318106e-11,2.75387351848536e-10,-6.12357387105564e-10 +4.708,-1.95582343535516e-06,-1.11554315671697e-06,1.2953040651395e-06,4.86081494499579e-10,2.63231202113356e-09,0.0799989785200475,-3.82382146779701e-09,3.10021279481577e-09,1.13907754756294e-09,9.54705065003941e-11,6.71461150569893e-10,-1.54636026206151e-09,-1.21877063557359e-07,5.35122293725215e-07,4.11706259249814e-08,5.81132364505318e-11,2.92300905739399e-10,9.42204647650186e-07 +4.71,-1.28430580389333e-08,1.31586895199542e-08,4.31084554858296e-09,4.86330212212671e-10,2.63397578054159e-09,0.0799999933689362,9.9773446666032e-08,4.74187123594757e-07,-2.0250132039964e-07,9.56058149315203e-11,6.72033609316965e-10,2.56557941558128e-07,-1.23528574500912e-09,1.41206490927302e-09,5.9045650307234e-10,4.98732999290331e-11,2.82326245677956e-10,-6.15826833885911e-10 +4.712,-1.95542434156849e-06,-1.11364640822259e-06,1.2944940598579e-06,4.86463917759306e-10,2.63500015557083e-09,0.0799989795462793,-3.82876261077704e-09,3.10586105445286e-09,1.14143937357523e-09,9.56699997001102e-11,6.72590455552604e-10,-1.54882356939706e-09,-2.34771620552456e-07,1.56219221560129e-07,7.26922862294294e-08,2.86229373483021e-11,2.90999863057724e-10,1.59003886432011e-07 +4.714,-1.28583730893764e-08,1.31711129641721e-08,4.31541130607727e-09,4.86712892211472e-10,2.6366661423638e-09,0.0799999933627409,9.88343601838221e-08,4.74812000480998e-07,-2.02210551254722e-07,9.57203066809135e-11,6.73197608769196e-10,2.57193957103856e-07,-1.23544837575968e-09,1.37259995053907e-09,5.68338778880272e-10,4.38017677737248e-11,3.15719672665122e-10,-6.01949046249911e-10 +4.716,-1.95502900412776e-06,-1.11174716022067e-06,1.29368521765288e-06,4.86846798986029e-10,2.63769294600591e-09,0.0799989805750551,-3.83370440428008e-09,3.11135145425502e-09,1.14371272869075e-09,9.58452067712051e-11,6.73853334243265e-10,-1.55123136558206e-09,-3.03207654291225e-07,-1.50866732275024e-07,8.93146233942386e-08,5.20417042846285e-11,2.71917904896799e-10,-4.71112732144654e-07 +4.718,-1.28737079069935e-08,1.31835583699891e-08,4.31998615699203e-09,4.87096273038556e-10,2.63936155570077e-09,0.079999993356536,9.76215295666573e-08,4.74208533551898e-07,-2.01853292761145e-07,9.5928473498052e-11,6.74285280388783e-10,2.55309506175278e-07,-1.24048991543663e-09,1.38387565278777e-09,5.96311194803555e-10,4.64038529770597e-11,2.58907478752137e-10,-5.86336534794044e-10 +4.72,-1.95463851800949e-06,-1.10985032608646e-06,1.29287780448184e-06,4.87230512880021e-10,2.64039008712746e-09,0.0799989815962931,-3.83866636394183e-09,3.11688695686617e-09,1.14609797346997e-09,9.60308221831133e-11,6.74888964158273e-10,-1.55357671172123e-09,-3.26036127354865e-07,-3.61752728493412e-07,9.24212963216717e-08,3.90312782041456e-11,3.15285991721294e-10,-8.99136667911839e-07 +4.722,-1.28890625724493e-08,1.31960259178165e-08,4.32457054888591e-09,4.87480396327289e-10,2.6420611115574e-09,0.0799999933503217,9.63173850572377e-08,4.72761522637924e-07,-2.01483607575858e-07,9.60845986108686e-11,6.75546424355668e-10,2.5171295950363e-07,-1.24574829639891e-09,1.40555969658314e-09,5.5727991672118e-10,3.51281503938579e-11,3.13551268320254e-10,-6.09755301892116e-10 +4.724,-1.95425324846926e-06,-1.10795927999591e-06,1.29207187005154e-06,4.87614851274465e-10,2.64309227282489e-09,0.079998982603145,-3.84364935712742e-09,3.1225091956525e-09,1.14832709313685e-09,9.61713347846888e-11,6.76143169231555e-10,-1.5560157329288e-09,-3.06816150171943e-07,-4.66644518139442e-07,8.34156962142186e-08,5.63785129745936e-11,2.92734586608652e-10,-1.10643785798685e-06 +4.726,-1.29044371698778e-08,1.32085159545992e-08,4.32916385725846e-09,4.87865081666428e-10,2.64476568423433e-09,0.0799999933440976,9.50901204565501e-08,4.70894944565366e-07,-2.01149944791001e-07,9.6310112662767e-11,6.76717362702103e-10,2.47287208071683e-07,-1.25095246640029e-09,1.40512601536797e-09,5.921912265478e-10,5.20417042739656e-11,2.76688394380772e-10,-6.10622663457463e-10 +4.728,-1.95387288798744e-06,-1.10607570021765e-06,1.29126727027237e-06,4.88000091725116e-10,2.6457991422757e-09,0.0799989835922938,-3.84865316699302e-09,3.12812969971397e-09,1.15069585804304e-09,9.63795016017846e-11,6.77249922809078e-10,-1.55845822358263e-09,-2.53017929963491e-07,-4.6940229483755e-07,6.42973088077957e-08,2.94902990862516e-11,2.72351585690717e-10,-1.10256595521566e-06 +4.73,-1.29198317825457e-08,1.3221028473398e-08,4.33376664069063e-09,4.88250599672835e-10,2.64747468392557e-09,0.0799999933378638,9.4078048736696e-08,4.69017335386016e-07,-2.0089275555577e-07,9.6428073859112e-11,6.77806769044866e-10,2.4287694425082e-07,-1.25724083942788e-09,1.41076386701169e-09,5.73976630177713e-10,4.68375338567258e-11,2.9273458660869e-10,-5.97612237560487e-10 +4.732,-1.95349657579249e-06,-1.1041996308761e-06,1.29046369925015e-06,4.88385804020552e-10,2.64851036935188e-09,0.0799989845638016,-3.85368213035074e-09,3.13377275518202e-09,1.15299176456375e-09,9.65668517372116e-11,6.78420861155512e-10,-1.56084867253287e-09,-1.74686599815574e-07,-3.84549597000767e-07,3.72655465402286e-08,5.811323645059e-11,3.23092247438378e-10,-9.19248184503329e-07 +4.734,-1.29352465110671e-08,1.32335635644187e-08,4.33837860774888e-09,4.88636867079784e-10,2.65018836737019e-09,0.0799999933316204,9.33793023374338e-08,4.67479136998013e-07,-2.00743693369609e-07,9.66605268049143e-11,6.79099138034619e-10,2.39199951512807e-07,-1.26211974877648e-09,1.43288159098298e-09,5.82867087864217e-10,4.20670442870752e-11,2.78856798725614e-10,-6.40980324286802e-10 +4.736,-1.95312305858314e-06,-1.10232971432811e-06,1.28966072447667e-06,4.88772446127772e-10,2.65122676590401e-09,0.0799989855206014,-3.85873060934584e-09,3.13950428154595e-09,1.15532323291521e-09,9.67351199143598e-11,6.79536288350415e-10,-1.56341259383002e-09,-8.34450238993175e-08,-2.34658646706498e-07,5.47890726958141e-09,3.42607886451679e-11,2.53703308323865e-10,-6.03726270378238e-07 +4.738,-1.29506814335045e-08,1.32461215815449e-08,4.34299990068054e-09,4.89023807559441e-10,2.65290651252359e-09,0.0799999933253668,9.30455222418365e-08,4.66540502411187e-07,-2.00721777740531e-07,9.6797569959495e-11,6.80113951267915e-10,2.36785046431294e-07,-1.25962608420776e-09,1.40989650527442e-09,5.74410311046966e-10,6.15826834025464e-11,3.22224885700396e-10,-5.97612237560797e-10 +4.74,-1.95275087649417e-06,-1.10046355231846e-06,1.28885783736571e-06,4.8915963640761e-10,2.65394722170909e-09,0.0799989864677416,-3.86376911368267e-09,3.14514386756705e-09,1.1576208741594e-09,9.69814506479701e-11,6.80825187893216e-10,-1.56580304278026e-09,9.31936819898565e-09,-4.58548129763505e-08,-2.79166880696137e-08,6.24500451405518e-11,2.79724160539083e-10,-2.10837423895384e-07 +4.742,-1.29661365099593e-08,1.32587021570152e-08,4.34763038417718e-09,4.89411733362033e-10,2.65562981327516e-09,0.0799999933191036,9.30827997146324e-08,4.66357083159281e-07,-2.00833444492809e-07,9.70473701400572e-11,6.81232847910071e-10,2.35941696735712e-07,-1.26949232354897e-09,1.43765208054109e-09,5.77879757870473e-10,3.81639164661076e-11,2.79290479594479e-10,-6.21898366050745e-10 +4.744,-1.95237854529531e-06,-1.09859812398583e-06,1.28805450358774e-06,4.8954782588817e-10,2.65667215310073e-09,0.0799989874115083,-3.86884708297687e-09,3.15089447588921e-09,1.15993239319088e-09,9.71341063138345e-11,6.81942349811594e-10,-1.56829063624446e-09,9.32692508243977e-08,1.55099457556823e-07,-5.9522482417856e-08,5.8980598177812e-11,3.32633226480646e-10,2.04456243588957e-07 +4.746,-1.29816118982912e-08,1.32713057349187e-08,4.35227011374995e-09,4.89800269787288e-10,2.65835758267441e-09,0.0799999933128304,9.34558767179301e-08,4.66977480989509e-07,-2.01071534422481e-07,9.72832925327685e-11,6.82563380815994e-10,2.36759521710068e-07,-1.27778647059751e-09,1.44112152784273e-09,5.7549451321971e-10,5.20417042846945e-11,2.80157841408118e-10,-5.85469173229219e-10 +4.748,-1.95200472178844e-06,-1.09673021406187e-06,1.28725021745005e-06,4.89936959058301e-10,2.65940240662399e-09,0.0799989883585464,-3.87395822885926e-09,3.15665896200058e-09,1.16223437124376e-09,9.73422731309733e-11,6.83062981177227e-10,-1.57063251293738e-09,1.60492983925319e-07,3.44213806789296e-07,-8.62508849176156e-08,3.9031278214885e-11,2.77555756194241e-10,5.93068996703694e-07 +4.75,-1.29971077312066e-08,1.32839323707667e-08,4.35691905123492e-09,4.90189638879812e-10,2.66108983459912e-09,0.0799999933065479,9.40978486536313e-08,4.68354336216666e-07,-2.01416537962151e-07,9.7439417645628e-11,6.83673603840771e-10,2.39131797696883e-07,-1.27133546724137e-09,1.41987116491171e-09,5.84384970905179e-10,5.68121938328377e-11,3.0747973607895e-10,-6.36643515596342e-10 +4.752,-1.95162833039383e-06,-1.094856796717e-06,1.2864445512982e-06,4.90326716728884e-10,2.66213710103935e-09,0.0799989893150736,-3.87904357072822e-09,3.16233844666023e-09,1.16457191112738e-09,9.75695219063046e-11,6.84292900121543e-10,-1.57317908699977e-09,2.05851503372603e-07,5.02390230085458e-07,-1.05831359289888e-07,4.98732999289154e-11,2.78856798725268e-10,9.16055425945603e-07 +4.754,-1.30126239054895e-08,1.32965817245534e-08,4.36157733887943e-09,4.90579916967437e-10,2.6638270061996e-09,0.0799999933002551,9.49212546671218e-08,4.70363897137008e-07,-2.01839863399311e-07,9.76389108453437e-11,6.84789031035672e-10,2.42796019400666e-07,-1.27805752114125e-09,1.45413195391317e-09,5.78096598433881e-10,4.42354486428255e-11,3.07479736154879e-10,-5.95010152347349e-10 +4.756,-1.95124864537516e-06,-1.09297534112845e-06,1.2856371918446e-06,4.90717272372265e-10,2.6648762571635e-09,0.0799989902862577,-3.88415580081279e-09,3.16815497447588e-09,1.16688429752112e-09,9.77464637008759e-11,6.85522819066162e-10,-1.57555912760916e-09,2.27322121635249e-07,6.16924913958306e-07,-1.16850756512593e-07,5.46437894987006e-11,3.16153353534858e-10,1.1482230097419e-06 +4.758,-1.30281605286928e-08,1.33092543444513e-08,4.36624487606951e-09,4.90970902822241e-10,2.66656909747587e-09,0.0799999932939529,9.58305431536627e-08,4.72831596792841e-07,-2.02307266425361e-07,9.78574860033384e-11,6.86053644449811e-10,2.47388911439633e-07,-1.28320748102967e-09,1.4341826335879e-09,5.92624907415812e-10,5.59448320948266e-11,2.62376925703445e-10,-6.37510877334021e-10 +4.76,-1.95086532320254e-06,-1.09108401474128e-06,1.2848279627789e-06,4.91108702316279e-10,2.66762047174129e-09,0.0799989912758133,-3.88928863073691e-09,3.17389170501023e-09,1.16925479715078e-09,9.79702430292552e-11,6.86572326768976e-10,-1.57810917111849e-09,2.25731434407199e-07,6.81699922179502e-07,-1.1899032105729e-07,4.38017677629714e-11,3.14418629982633e-10,1.27738444820321e-06 +4.762,-1.30437176832157e-08,1.33219499112713e-08,4.37092189525812e-09,4.91362783794358e-10,2.66931538678294e-09,0.0799999932876405,9.67334688912916e-08,4.75558396481559e-07,-2.0278322770959e-07,9.80326930743903e-11,6.87311318969742e-10,2.52498449232446e-07,-1.28396642298192e-09,1.4536982730448e-09,5.89589141462537e-10,4.64038529878157e-11,3.2222488570081e-10,-6.50521303578911e-10 +4.764,-1.95047838932698e-06,-1.08918178115536e-06,1.28401682986806e-06,4.91500833088576e-10,2.67036971701717e-09,0.0799989922858071,-3.89442449642884e-09,3.17970649810241e-09,1.17161315371663e-09,9.81558584412065e-11,6.87861226311779e-10,-1.58071125633281e-09,2.04449196293397e-07,6.97026637823587e-07,-1.13024173365075e-07,5.63785129747002e-11,2.68014777076626e-10,1.30527446491656e-06 +4.766,-1.30592953812014e-08,1.33346687372637e-08,4.37560834787298e-09,4.91755407228123e-10,2.67206683168819e-09,0.0799999932813176,9.75512656764651e-08,4.78346503032853e-07,-2.03235324403051e-07,9.82582071262891e-11,6.88383378078048e-10,2.57719547092112e-07,-1.2828822203771e-09,1.43635103793225e-09,5.9284174785005e-10,5.37764277498327e-11,3.02709246519755e-10,-6.0888793998009e-10 +4.768,-1.95008818426427e-06,-1.08726839514323e-06,1.28320388857045e-06,4.91893865917081e-10,2.67312325052949e-09,0.0799989933166853,-3.89955602531034e-09,3.18545190225414e-09,1.17398452070803e-09,9.83709641522058e-11,6.89072063297858e-10,-1.58314680809273e-09,1.68478241335214e-07,6.68706843344133e-07,-1.0054413897544e-07,4.9439619059876e-11,3.10515502161582e-10,1.24367703634095e-06 +4.77,-1.30748936053027e-08,1.33474105448728e-08,4.38030428595582e-09,4.92148891084732e-10,2.67482311994138e-09,0.079999993274985,9.8225178641806e-08,4.8102133040623e-07,-2.03637500958952e-07,9.84559656025287e-11,6.89625440086695e-10,2.62694255237476e-07,-1.29399529307803e-09,1.45326459217642e-09,5.83083928427831e-10,3.90312782149409e-11,2.81892564884483e-10,-5.75928194112175e-10 +4.772,-1.94969528354971e-06,-1.0853443098216e-06,1.28238933856661e-06,4.92287689779491e-10,2.67588175228983e-09,0.0799989943674624,-3.90473200648266e-09,3.19126496062285e-09,1.17631685642174e-09,9.85270892650656e-11,6.90199633557396e-10,-1.58545052086918e-09,1.23770676872735e-07,6.06203889196482e-07,-8.37413905693259e-08,4.42354486428806e-11,3.03142927465289e-10,1.11288148836692e-06 +4.774,-1.30905125333286e-08,1.33601756047153e-08,4.3850095533815e-09,4.92542999441792e-10,2.67758391847561e-09,0.0799999932686432,9.87202613492969e-08,4.83446145963016e-07,-2.0397246652123e-07,9.86329073971002e-11,6.90838011796556e-10,2.67145781190943e-07,-1.29025479514959e-09,1.43635103793163e-09,5.98479599146717e-10,5.68121938327698e-11,3.19622800410427e-10,-6.60062282521205e-10 +4.776,-1.94930040250431e-06,-1.08341052523775e-06,1.28157344870053e-06,4.9268222140908e-10,2.67864510433702e-09,0.0799989954360455,-3.90989302566325e-09,3.19701036477457e-09,1.17871077481833e-09,9.87543380403966e-11,6.91478124759038e-10,-1.58809076999926e-09,7.64488841100398e-08,5.21462213660367e-07,-6.49825245583204e-08,5.50774703567774e-11,2.85795692628761e-10,9.37274563502174e-07 +4.778,-1.31061521054313e-08,1.33729636461744e-08,4.38972439648078e-09,4.92938016793953e-10,2.68034983097465e-09,0.0799999932622909,9.90260568857371e-08,4.85531994817657e-07,-2.04232396619463e-07,9.88532172785273e-11,6.91981194567071e-10,2.70894879444952e-07,-1.29822368155113e-09,1.46714237998486e-09,6.02165886663884e-10,5.16080234157908e-11,2.94035629216448e-10,-5.95010152348176e-10 +4.78,-1.94890429827677e-06,-1.08146839725848e-06,1.28075651911405e-06,4.93077634278194e-10,2.68141302911529e-09,0.079998996519625,-3.91508592038946e-09,3.20287893429451e-09,1.18111943836498e-09,9.89607701340598e-11,6.92654267275904e-10,-1.59047081060865e-09,0.0574977169035957,0.0357505277122613,-0.0364679762666035,5.84601811404862e-09,2.81849196763235e-09,0.0606174868295542 +4.782,-1.31218124491128e-08,1.33857751619115e-08,4.39444887423424e-09,4.9333385987449e-10,2.68312044804375e-09,0.079999993255929,0.000230089893671243,0.000143487642843847,-0.000146076137463017,1.22237289734719e-10,7.03255162437599e-10,0.000242740842197635,5.63226223474717e-08,-5.21258383680668e-08,-3.42881105453541e-08,7.50788320402212e-09,-1.01719847822974e-08,2.83271670010515e-08 +4.784,-1.02854472359189e-06,-5.07517825883153e-07,6.96451969262046e-07,4.93566583437133e-10,2.68422604976504e-09,0.0799999674829938,-3.6897954309996e-09,2.99437558082227e-09,1.04396699618358e-09,1.28992302950145e-10,6.51966328146718e-10,-1.47716214260446e-09,-0.154948304947118,-0.0964938533989104,0.0972392596965777,-3.45730388762779e-09,-2.33710620301313e-08,-0.158449819003306 +4.786,-1.31365716308368e-08,1.33977526642348e-08,4.39862474221897e-09,4.9384982908629e-10,2.68572831335634e-09,0.0799999932500203,-0.0003897033261173,-0.000242487770751838,0.000242880901323337,1.08408074184206e-10,6.09770914317063e-10,-0.000391058433815662,-4.73764365414125e-08,4.89812183869783e-08,2.4523785779942e-08,-5.17901693752159e-09,8.71698546681965e-09,-2.91242724382566e-08 +4.788,-2.58735802806127e-06,-1.47746890889061e-06,1.6679755745555e-06,4.9400021573387e-10,2.68666513342231e-09,0.0799984032492585,-3.87930117716527e-09,3.19030045437021e-09,1.14206213930336e-09,1.08276235200056e-10,6.86834270014001e-10,-1.5936592323575e-09,0.149220559687456,0.0897103930191476,-0.0944602650840447,-1.13841228110401e-09,2.93502201709609e-08,0.126789145422224 +4.79,-1.31520888355455e-08,1.34105138660523e-08,4.40319299077618e-09,4.9428293402709e-10,2.68847565043639e-09,0.0799999932436457,0.00020717891263246,0.000116353801324713,-0.0001349601590128,1.03854425059791e-10,7.27171795000894e-10,0.00011609814787318,-2.33520884918636e-08,1.64911487241964e-08,1.54115002009491e-08,-4.54280710272027e-09,2.7651492206689e-09,-7.93028837033946e-09 +4.792,-1.75864237753152e-06,-1.01205370359181e-06,1.12813493850436e-06,4.94415633434109e-10,2.68957382060231e-09,0.07999886764185,-3.97270953113271e-09,3.25626504926698e-09,1.20370814010715e-09,9.01050067891772e-11,6.97894866896675e-10,-1.62538038583886e-09,-0.0145316265673244,-0.00282769211778944,0.0118864917336057,7.49400541616048e-10,-6.65396557301692e-09,0.0381118222796673 +4.794,-1.316797967367e-08,1.34235389262494e-08,4.40800782333661e-09,4.94643354054247e-10,2.69126722990398e-09,0.0799999932371442,0.000149052406363156,0.000105043032853554,-8.74141920783721e-05,1.06852027226255e-10,7.00555932708823e-10,0.000268545436991866,4.8810185493882e-08,-4.58131796386287e-08,-2.5364259303928e-08,5.88244730704234e-09,-8.18485904048884e-09,2.69229083470698e-08 +4.796,-1.16243275207883e-06,-5.91881572177544e-07,7.78478170190833e-07,4.94843041543014e-10,2.69237604433314e-09,0.079999941823598,-3.77746878915716e-09,3.07301233071245e-09,1.10225110289143e-09,1.13634796017349e-10,6.65155430734716e-10,-1.51768875245056e-09,-0.125998864335681,-0.0810318443113539,0.0775977117817937,-3.36970035207976e-09,-1.75259112777586e-08,-0.16618542313196 +4.798,-1.31830895488266e-08,1.34358309755722e-08,4.41241682774818e-09,4.95097893238317e-10,2.69392785162692e-09,0.0799999932310734,-0.000354943050979513,-0.000219084344391825,0.000222976655048769,9.33732258179379e-11,6.30452287597796e-10,-0.000396196255535901,-4.71240342752432e-08,5.02510359710565e-08,2.82419487101447e-08,-5.12263842456581e-09,1.00158596693842e-08,-2.81927259314908e-08 +4.8,-2.58220495599672e-06,-1.46821894974475e-06,1.67038479038581e-06,4.95216534446286e-10,2.69489785348354e-09,0.0799983570385758,-3.96596492625811e-09,3.27401647459665e-09,1.21521889773199e-09,9.31442423190882e-11,7.05218869412248e-10,-1.63045965617651e-09,0.137315955890118,0.0829039543607841,-0.0869179495131057,-8.90346824050082e-10,2.85808703092835e-08,0.132704684744487 +4.802,-1.31989534085317e-08,1.34489270414706e-08,4.41727770333911e-09,4.95470470207593e-10,2.69674872710457e-09,0.0799999932245516,0.00019432077258102,0.000112531473051348,-0.000124695143003693,8.98118385217372e-11,7.44775768834943e-10,0.000134622483442106,-1.99187996827981e-08,1.42004463745279e-08,1.47371264497939e-08,-3.75264055940165e-09,2.91086599272823e-09,-6.04377659039366e-09 +4.804,-1.80492186567256e-06,-1.0180930575393e-06,1.17160421837098e-06,4.95575781800373e-10,2.69787695655888e-09,0.0799988955285096,-4.04564012498932e-09,3.33081826009477e-09,1.27416740353118e-09,7.813368008148e-11,7.16862333383163e-10,-1.65463476253809e-09,-0.00913815308670565,-0.000680105106340573,0.00778824484959708,1.83577111845785e-09,-6.27319376996116e-09,0.0323318108839753 +4.806,-1.32151359690316e-08,1.3462250314511e-08,4.42237437295323e-09,4.95783004927919e-10,2.6996161764381e-09,0.0799999932179331,0.000157768160234202,0.000109811052625986,-9.35421636053083e-05,9.71549229955678e-11,7.19682993755101e-10,0.000263949726977992,5.33593351797503e-08,-5.03689971677784e-08,-2.9224886399852e-08,6.9449654360688e-09,-8.85229389794945e-09,2.91051904800306e-08 +4.808,-1.17384922473582e-06,-5.78848847035407e-07,7.97435563949789e-07,4.95964401492355e-10,2.7007556885339e-09,0.0799999513274175,-3.83220278427034e-09,3.12934227142368e-09,1.15726785793178e-09,1.05913541825752e-10,6.81453157791369e-10,-1.53821400061798e-09,-0.127704504342208,-0.081042723964411,0.0791715931782902,-2.34751454387048e-09,-1.87449882005722e-08,-0.162315259058152 +4.81,-1.32304647801687e-08,1.34747676835967e-08,4.42700344438496e-09,4.96206659095222e-10,2.70234198906927e-09,0.0799999932117802,-0.000353049857134686,-0.000214359843231694,0.000223144209107888,8.77648648200848e-11,6.44703040952804e-10,-0.000385311309254689,-4.28090722594992e-08,4.56319010357436e-08,2.33250918580483e-08,-4.11606512761808e-09,8.86660536662429e-09,-2.6505707351273e-08 +4.812,-2.58604865327472e-06,-1.43628821996228e-06,1.69001240038144e-06,4.96315460951635e-10,2.70333450069771e-09,0.0799984100821805,-4.00343907330835e-09,3.31186987556667e-09,1.25056822536398e-09,8.94492813152779e-11,7.1691957925787e-10,-1.64423683002309e-09,0.137101131894742,0.0808054829463657,-0.087852912314744,8.71698546727265e-11,2.74329170491391e-08,0.128141827378254 +4.814,-1.32464785364619e-08,1.34880151630989e-08,4.43200571728641e-09,4.96564456220483e-10,2.7052096673863e-09,0.0799999932052032,0.00019535467044422,0.000108862088553733,-0.000128267440151049,8.81135442387756e-11,7.54434709149348e-10,0.000127256000258272,2.05521363818575e-08,-2.83601267471906e-08,-1.23566521598867e-08,1.16269840976849e-09,-6.09798669896728e-09,1.67279384789356e-08 +4.816,-1.80462997149793e-06,-1.00083986574739e-06,1.1769426397773e-06,4.9666791512859e-10,2.7063522395343e-09,0.0799989191061815,-3.92123052778093e-09,3.19842936857792e-09,1.20114161672444e-09,9.41000749543514e-11,6.92527632462003e-10,-1.57732507610735e-09,-0.0863679669465083,-0.0461046290971225,0.0580410915559791,3.59694912743221e-09,-2.47267484266098e-08,-0.0625458765265915 +4.818,-1.32621634585731e-08,1.35008088805733e-08,4.43681028375331e-09,4.969408565203e-10,2.70797977791615e-09,0.0799999931988939,-0.000150117197341852,-7.55564278347774e-05,0.000103896926072893,1.02501340748506e-10,6.55527715442898e-10,-0.000122927505848122,-7.63972218841959e-09,1.72310082870551e-08,2.96637714398701e-09,1.64018104654129e-09,4.30861943349584e-09,-1.09877384969246e-08 +4.82,-2.4050987608654e-06,-1.30306557708654e-06,1.59253034406892e-06,4.97077920491584e-10,2.70897435039608e-09,0.0799984273961581,-3.95178941653461e-09,3.26735340172615e-09,1.21300712530039e-09,1.00660799140517e-10,7.09762110195989e-10,-1.62127603009505e-09,0.068897037366798,0.0338628188966057,-0.048655938276895,-1.88347601403654e-09,2.15309541029963e-08,0.0554329837197371 +4.822,-1.32779706162392e-08,1.35138782941802e-08,4.44166231225451e-09,4.97343499716862e-10,2.71081882635693e-09,0.0799999931924088,0.00012547095212531,5.98948477516303e-05,-9.07268270346653e-05,9.49674366923608e-11,7.41651531854874e-10,9.88044290308019e-05,-2.77141048823119e-08,2.08908411401383e-08,1.47421137796526e-08,-4.27219024046746e-09,3.1480894279895e-09,-1.12791720407112e-08 +4.824,-1.90321495236422e-06,-1.06348618608004e-06,1.2296230359303e-06,4.97457790238354e-10,2.7119409565235e-09,0.0799988226138743,-4.06264583606385e-09,3.3509167662867e-09,1.271975580419e-09,8.35720381786493e-11,7.22354467907945e-10,-1.66639271825789e-09,-0.044667453439996,-0.0215668423354436,0.0320337958607093,-4.10175365895151e-09,-6.07066480422064e-09,-0.0211949231273414 +4.826,-1.32942211995835e-08,1.35272819612453e-08,4.44675021457619e-09,4.97677787869577e-10,2.71370824422856e-09,0.0799999931857433,-5.31988616346942e-05,-2.63725215901537e-05,3.74083564081862e-05,7.85604220565529e-11,7.17368872637989e-10,1.4024736521427e-05,-7.72239260407946e-09,4.83424064686436e-09,5.84536759280894e-09,-1.01568059517978e-09,1.28282801052495e-09,-1.18568349592266e-09 +4.828,-2.11601039890302e-06,-1.16897627244067e-06,1.37925646156306e-06,4.9777203192658e-10,2.71481043201405e-09,0.0799988787128204,-4.09353540648017e-09,3.37025372887416e-09,1.29535705079023e-09,7.95093157979297e-11,7.27485779950046e-10,-1.67113545224159e-09,0.0227486333312939,0.0134473986256234,-0.0147362399902021,9.31112825735116e-10,4.28606802831044e-09,0.00290141438739347 +4.83,-1.33105953412094e-08,1.35407629761608e-08,4.45193164277935e-09,4.97995825132769e-10,2.71661818734836e-09,0.0799999931790587,3.77956716904715e-05,2.74170729123338e-05,-2.15366035526156e-05,8.22848733594929e-11,7.34513144751229e-10,2.56303940709996e-05,2.51247590463641e-09,-1.53696499990246e-09,-7.06466135663442e-10,1.20736753927544e-09,3.64725610783735e-10,2.14758766335206e-09 +4.832,-1.96482771214115e-06,-1.05930798079135e-06,1.29311004735261e-06,4.98101171420018e-10,2.71774848459305e-09,0.0799989812343966,-4.08348550286163e-09,3.36410586887455e-09,1.29253118624758e-09,8.4338785955031e-11,7.28944682393181e-10,-1.66254510158818e-09,-0.0114944785597794,-0.00695982783471129,0.0071129832228223,1.43504999549693e-09,-1.895619078414e-09,-0.00353664633776709 +4.834,-1.33269292832208e-08,1.35542193996363e-08,4.45710176752434e-09,4.98333180276589e-10,2.71953396607794e-09,0.0799999931724086,-8.18224254865106e-06,-4.22238426514518e-07,6.91532933867678e-06,8.80250733414813e-11,7.26930668437572e-10,1.14838087199296e-05,4.30966568853117e-08,-4.32136965098714e-08,-2.71861526345678e-08,6.02426095120313e-09,-8.35746402634678e-09,2.44223044564472e-08 +4.836,-1.99755668233575e-06,-1.0609969344974e-06,1.32077136470732e-06,4.98453271713384e-10,2.7206562072668e-09,0.0799990271696315,-3.91109887532036e-09,3.19125108283504e-09,1.1837865757093e-09,1.08435829759846e-10,6.9551482628779e-10,-1.56485588376238e-09,-0.0098154225036981,-0.00532582800300463,0.0064954149160014,9.20184067832589e-09,-1.41722571178243e-08,-0.0327466729019701 +4.838,-1.33425736787221e-08,1.35669844039676e-08,4.46183691382718e-09,4.98766923595628e-10,2.72231602538309e-09,0.0799999931661491,-4.74439325634391e-05,-2.17255504385307e-05,3.28969890026795e-05,1.24832436054781e-10,6.70241639966281e-10,-0.000119502882887936,6.90528363873229e-10,1.11677160572925e-08,-5.80503527198756e-09,3.51758552840595e-09,2.37223435335967e-09,-9.20531012518405e-09 +4.84,-2.18733241258949e-06,-1.14789913625152e-06,1.45235932071802e-06,4.98952601457603e-10,2.72333717382667e-09,0.0799985491581,-3.90833676186487e-09,3.23592194706421e-09,1.16056643462135e-09,1.22506171873468e-10,7.05003763701227e-10,-1.60167712426311e-09,0.0274716506438758,0.00975969725435551,-0.0214730020474713,-2.34968294821699e-09,1.36730904376089e-08,0.047539647714079 +4.842,-1.33582070257696e-08,1.35799280917559e-08,4.46647917956566e-09,4.99256948283122e-10,2.72513604043789e-09,0.0799999931597424,6.24426700120764e-05,1.73132385788957e-05,-5.29950191872155e-05,1.15433704261912e-10,7.24934001716723e-10,7.0655707968401e-05,-2.8058393282621e-08,2.05326207427102e-08,1.18288625423157e-08,-4.38104413857262e-09,2.06128517036858e-09,-1.23998034063711e-08 +4.844,-1.93756173254116e-06,-1.07864618193593e-06,1.24037924396914e-06,4.99414336274651e-10,2.72623690983353e-09,0.0799988317809318,-4.02057033499536e-09,3.31805243003506e-09,1.20788188479062e-09,1.04981995319176e-10,7.13248904382703e-10,-1.6512763378886e-09,-0.0227510704964007,-0.00853302414664895,0.0179795604678394,-4.09481476503775e-09,-3.32850066949098e-09,-0.0164626552390243 +4.846,-1.33742893071095e-08,1.3593200301476e-08,4.47131070710483e-09,4.99676876264399e-10,2.72798903605542e-09,0.0799999931531373,-2.85616119735165e-05,-1.68188580076963e-05,1.89232226841342e-05,9.90544452017626e-11,7.1161999903876e-10,4.80508701231117e-06,2.54041579441654e-08,-3.09145070655668e-08,-1.51556284883729e-08,2.09337755462918e-09,-6.61189852872518e-09,1.84210285914893e-08 +4.848,-2.05180818043521e-06,-1.1459216139667e-06,1.31607213470566e-06,4.99810554055458e-10,2.72908338982969e-09,0.0799988510012799,-3.91895370321871e-09,3.1943944017728e-09,1.14725937083713e-09,1.13355505537692e-10,6.86801310267805e-10,-1.57759222352265e-09,-0.00262011907791598,0.00070595421869457,0.00280806666265807,6.583709272194e-09,-1.10636326489481e-08,-0.0276350755863973 +4.85,-1.33899651219224e-08,1.36059778790831e-08,4.47589974458817e-09,5.0013029828655e-10,2.73073624129649e-09,0.0799999931468269,-3.90420882851816e-05,-1.39950411329177e-05,3.01554893347677e-05,1.25389282290542e-10,6.67365468442963e-10,-0.000105735215333291,-7.54414976691479e-09,1.95195422327372e-08,4.47515288721488e-09,1.56819002228933e-09,4.74360134509669e-09,-1.16625459290796e-08 +4.852,-2.20797653357595e-06,-1.20190177849838e-06,1.43669409204475e-06,5.0031211118462e-10,2.73175285170346e-09,0.0799984280604186,-3.94913030228638e-09,3.27247257070376e-09,1.16515998238599e-09,1.1962826562685e-10,7.05775715648194e-10,-1.62424240723898e-09,0.0248120879281554,0.009439399812143,-0.0190994140026141,-3.74179853767584e-09,1.55014889813692e-08,0.0491751975658907 +4.854,-1.34057616431316e-08,1.36190677693659e-08,4.48056038451772e-09,5.00608811349057e-10,2.73355934415909e-09,0.07999999314033,6.0206263427429e-05,2.37625581156502e-05,-4.62421666756803e-05,1.1042208813984e-10,7.29371424368433e-10,9.09655749302507e-05,-3.11850697173072e-08,2.53855096663939e-08,1.91079790878198e-08,-5.21371140705493e-09,4.08050329632724e-09,-1.30407837305655e-08 +4.856,-1.96715147986627e-06,-1.10685154603579e-06,1.25172542534205e-06,5.00753799537179e-10,2.73467033740094e-09,0.0799987919227183,-4.07387058115559e-09,3.37401460936932e-09,1.24159189873727e-09,9.87734199986324e-11,7.22097728833501e-10,-1.67640554216123e-09,-0.0213979314329803,-0.0083967612342356,0.0166536712148466,-4.56796059312104e-09,-1.49706635980814e-09,-0.0188666897963868 +4.858,-1.34220571254562e-08,1.36325638278034e-08,4.48552675211267e-09,5.01003905029052e-10,2.73644773507442e-09,0.0799999931336244,-2.53854623045019e-05,-9.82448682129601e-06,2.03725181837135e-05,9.21502457673537e-11,7.233831589292e-10,1.5498815744695e-05,2.50137367414042e-08,-2.95327998165798e-08,-1.14392002813911e-08,1.83143430976799e-09,-5.45657269364494e-09,1.87740448186659e-08 +4.86,-2.06869332908428e-06,-1.14614949332098e-06,1.33321549807691e-06,5.01122400520249e-10,2.73756387003665e-09,0.0799988539179813,-3.97381563418996e-09,3.25588341010299e-09,1.1958350976117e-09,1.06099157237705e-10,7.00271438058919e-10,-1.60130936288656e-09,-0.00320348886599778,-7.83127560201399e-05,0.00285153428842766,6.48656475755282e-09,-1.04621172835783e-08,-0.0284906965580518 +4.862,-1.34379523879929e-08,1.36455873614438e-08,4.49031009250311e-09,5.01428301658002e-10,2.73924882082666e-09,0.0799999931272191,-3.81994177684916e-05,-1.01377378453765e-05,3.17786553374229e-05,1.18096504797562e-10,6.81534689794891e-10,-9.84639704874998e-05,-6.29888936149035e-09,1.84869480834889e-08,5.14432246801036e-09,1.60375185354091e-09,4.97431956736459e-09,-1.08619710448312e-08 +4.864,-2.22149100015823e-06,-1.18670044470248e-06,1.46033011942659e-06,5.01594786539439e-10,2.74029000879583e-09,0.0799984600620993,-3.99901119163592e-09,3.32983120243694e-09,1.21641238748373e-09,1.12514164651868e-10,7.20168716328375e-10,-1.64475724706588e-09,0.0249998396732947,0.00869715657565078,-0.0198440554843356,-3.58523974398161e-09,1.55405202595004e-08,0.0475334576838292 +4.866,-1.34539484327595e-08,1.36589066862536e-08,4.49517574205305e-09,5.0187835831661e-10,2.74212949569197e-09,0.0799999931206401,6.17999409246763e-05,2.46508884572228e-05,-4.75975665999109e-05,1.03755545821637e-10,7.43696770832886e-10,9.16698602477958e-05,-2.93170435842141e-08,2.28740637540402e-08,1.76135148132591e-08,-5.00771299428117e-09,3.7973096888724e-09,-1.20979615213683e-08 +4.868,-1.9742912364595e-06,-1.08809689087358e-06,1.26993985302692e-06,5.02009808722725e-10,2.74326479587916e-09,0.0799988267415403,-4.11627936597279e-09,3.42132745745311e-09,1.28686644673678e-09,9.24833126747412e-11,7.35357955083866e-10,-1.69314909315136e-09,-0.0215234978562856,-0.00850182258404567,0.0166532531217676,-4.28953747521588e-09,-2.06995878766804e-09,-0.0190271804900323 +4.87,-1.34704135502234e-08,1.36725919960834e-08,4.50032320784e-09,5.02248291567309e-10,2.74507092751231e-09,0.0799999931138675,-2.42940505004756e-05,-9.35640187896372e-06,1.90154458871668e-05,8.65973959207717e-11,7.35416935682213e-10,1.55611382876581e-05,-9.64224360101319e-09,6.14829367992214e-09,8.34510412169417e-09,-1.82189333063991e-09,1.66099772828897e-09,-1.85181731069964e-09 +4.872,-2.07146743846139e-06,-1.12552249838943e-06,1.34600163657558e-06,5.02356198306408e-10,2.74620646362189e-09,0.0799988889860934,-4.15484834037684e-09,3.4459206321728e-09,1.32024686322355e-09,8.51957393521823e-11,7.42001945997021e-10,-1.70055636239416e-09,0.0684529865834525,0.0413806903829671,-0.0434279057782212,5.84471707143004e-09,5.30782015557921e-09,0.0635656949299336 +4.874,-1.34870329435849e-08,1.36863756786121e-08,4.50560419529289e-09,5.02589074524717e-10,2.74803893529629e-09,0.0799999931070653,0.000249517895833304,0.000156166359652886,-0.000154696177225699,1.09976264206489e-10,7.56648216304527e-10,0.000269823918007364,6.00079881620759e-08,-5.66812222159828e-08,-3.53094289918353e-08,8.27463098040279e-09,-1.01728521440359e-08,3.16344173080004e-08 +4.876,-1.07339585512806e-06,-5.00857059777815e-07,7.27216927672719e-07,5.02796103363234e-10,2.74923305648711e-09,0.0799999682817655,-3.91481638772851e-09,3.21919574330884e-09,1.17900914725619e-09,1.18294263273797e-10,7.01310537420873e-10,-1.57401869316214e-09,-0.15840917509369,-0.0956802366663347,0.0988913715614311,-2.48629242193765e-09,-2.46165934858068e-08,-0.162373116588557 +4.878,-1.35026922091358e-08,1.36992524615853e-08,4.51032023188191e-09,5.03062251577813e-10,2.75084417744598e-09,0.0799999931007692,-0.000384118804541525,-0.000226554587012495,0.00024086930902007,1.00031094518738e-10,6.58181842361289e-10,-0.000379668548346937,-4.01762499139578e-08,4.38863355380566e-08,2.09699878989812e-08,-3.86886703229156e-09,8.17141493362948e-09,-2.6268050235072e-08 +4.88,-2.609871073294e-06,-1.4070754078277e-06,1.69069416375289e-06,5.03196227741309e-10,2.75186578385656e-09,0.0799984496075721,-4.07552138738432e-09,3.39474108546105e-09,1.26288909885211e-09,1.02818795144633e-10,7.33996197155387e-10,-1.67909089410242e-09,0.148591873598709,0.0846961106058238,-0.0946906254133868,4.05491612504027e-10,2.87755930194667e-08,0.124856053309641 +4.882,-1.35189942946853e-08,1.37128314259272e-08,4.51537178827732e-09,5.03473526758391e-10,2.7537801622346e-09,0.0799999930940528,0.000210248689853246,0.000112229855410763,-0.000137893192633435,1.01653060968754e-10,7.73284214439143e-10,0.000119755664891572,2.05105572285421e-08,-2.93627969163033e-08,-1.34805361318829e-08,1.02522157429636e-09,-6.51952450362912e-09,1.67305405641477e-08 +4.884,-1.76887631388092e-06,-9.58155986184595e-07,1.13912139321909e-06,5.03602839985184e-10,2.75495892071431e-09,0.0799989286302317,-3.99347915847015e-09,3.27728989779582e-09,1.20896695432457e-09,1.06919681441819e-10,7.07918099140868e-10,-1.61216873184582e-09,-0.0916975585194219,-0.0476838218263955,0.060984381697102,3.26691798613896e-09,-2.603342888481e-08,-0.0615608046240711 +4.886,-1.35349682113192e-08,1.37259405855183e-08,4.52020765609462e-09,5.03901205484159e-10,2.75661183463116e-09,0.0799999930876042,-0.000156541544224483,-7.85054318948406e-05,0.000106044334155,1.14720732913311e-10,6.69150498899891e-10,-0.00012648755360474,-7.78468001888654e-09,1.79574237426288e-08,3.79297288029123e-09,1.28326169136006e-09,4.29213956047584e-09,-1.14274908980892e-08 +4.888,-2.39504249077878e-06,-1.27217771376392e-06,1.56329872983904e-06,5.04061722916838e-10,2.75763552270991e-09,0.0799984226800172,-4.02461787854569e-09,3.34911959276633e-09,1.22413884584574e-09,1.12052728207258e-10,7.2508665738277e-10,-1.65787869543817e-09,0.0706717858462161,0.0343272692233291,-0.0489487584516875,-2.40996458900715e-09,2.22660431758631e-08,0.056663041441217 +4.89,-1.35510666828334e-08,1.37393370638894e-08,4.525104211478e-09,5.04349416396987e-10,2.75951218126069e-09,0.0799999930809726,0.000126145599160351,5.88036449984609e-05,-8.97506996517288e-05,1.05080874557283e-10,7.58214671603334e-10,0.000100164612160103,-2.98185955092041e-08,2.32678459830858e-08,1.72761110971812e-08,-4.94352822567002e-09,3.62730678822646e-09,-1.23520985105981e-08 +4.892,-1.89046009413732e-06,-1.03696313377005e-06,1.20429593123209e-06,5.04482046415067e-10,2.76066838139633e-09,0.0799988233384659,-4.14389226058252e-09,3.44219097669868e-09,1.29324329023447e-09,9.22786153045759e-11,7.39595884535677e-10,-1.70728708948057e-09,0.0143928697802299,0.0154666358574728,-0.00488126095360223,1.31231830958229e-09,-2.87660520399645e-09,0.0452022098475626 +4.894,-1.35676422518757e-08,1.37531058277962e-08,4.53027718463894e-09,5.04718530858206e-10,2.76247056479884e-09,0.0799999930741435,0.000183717078281277,0.000120670188428359,-0.00010927574346614,1.10330147795613e-10,7.46708250787347e-10,0.000280973451550374,4.91888973127324e-08,-4.90454031552431e-08,-2.82352266566709e-08,6.18732495794676e-09,-9.02359784112331e-09,2.82412981888139e-08 +4.896,-1.15559178101229e-06,-5.5428238005667e-07,7.67192957367574e-07,5.04923367006249e-10,2.76365521439947e-09,0.0799999472322721,-3.94713667133161e-09,3.24600936407773e-09,1.1803023836078e-09,1.1702791513636e-10,7.03501493171188e-10,-1.59432189672532e-09,-0.06536717804161,-0.0400150796412976,0.039847825986144,3.25954541135429e-09,-1.49793372151011e-08,-0.0781997085792604 +4.898,-1.35834307985611e-08,1.37660898652525e-08,4.53499839417337e-09,5.05186642518751e-10,2.76528457077152e-09,0.0799999930677662,-7.77516338851345e-05,-3.93901301368138e-05,5.01155604784184e-05,1.23368329441029e-10,6.86790901926949e-10,-3.18253827666335e-05,1.40209024947985e-08,-6.97488941621236e-09,-1.02157865500907e-08,3.11946649066809e-09,-1.3778041208333e-09,2.43208231340746e-09 +4.9,-1.46659831655287e-06,-7.11842900603943e-07,9.6765519928127e-07,5.05416840324013e-10,2.76640237800718e-09,0.079999819930741,-3.89105306135241e-09,3.21810980641288e-09,1.13943923740743e-09,1.29505781099034e-10,6.97990276687854e-10,-1.58459356747169e-09,-0.0444567191945198,-0.0327520926135202,0.0249349787098528,-4.92054313960136e-09,-1.52352089273851e-09,-0.0953674488502978 +4.902,-1.35989950108065e-08,1.37789623044782e-08,4.539556151123e-09,5.05704665643147e-10,2.76807653187827e-09,0.0799999930614278,-0.000255578510663234,-0.000170398500590909,0.000149855475317841,1.03686156882621e-10,6.80696818355994e-10,-0.000413295178167867,-6.40503817520923e-08,6.17600588727876e-08,3.75641358297423e-08,-8.6319840164553e-09,1.10614642446073e-08,-3.44845679790385e-08 +4.904,-2.48891235920569e-06,-1.3934369029675e-06,1.56707710055257e-06,5.05831584951544e-10,2.76912516528061e-09,0.0799981667500283,-4.14725458836075e-09,3.465150041904e-09,1.28969578072638e-09,9.49778450332166e-11,7.42236133666278e-10,-1.72253183938783e-09,0.154335219702798,0.0976463914257551,-0.0927991759820576,1.9025579722718e-09,2.61461859107536e-08,0.213501750323379 +4.906,-1.36155840291599e-08,1.37928229046458e-08,4.54471493424591e-09,5.0608457702328e-10,2.77104547641294e-09,0.0799999930545377,0.000361762368147892,0.000220187065112068,-0.000221341228610349,1.11296388771708e-10,7.85281561998997e-10,0.000440711823125556,3.30527705901813e-08,-3.77462817948323e-08,-1.71191186227449e-08,3.00497474125488e-09,-7.08417699505992e-09,2.29764124394032e-08 +4.908,-1.04186288661396e-06,-5.12688642519132e-07,6.81712186111072e-07,5.06276770506631e-10,2.7722662915286e-09,0.0799999295973208,-4.01504350600001e-09,3.31416491472466e-09,1.2212193062354e-09,1.06997743998237e-10,7.13899425686035e-10,-1.63062618963021e-09,-0.198320572926014,-0.117950661961031,0.123155162831232,-7.3079563234151e-09,-2.93150920204884e-08,-0.214765093787028 +4.91,-1.36316442031839e-08,1.38060795643047e-08,4.54959981147085e-09,5.06512567999273e-10,2.77390107411568e-09,0.0799999930480152,-0.000431519923556251,-0.000251615582732109,0.000271279422714636,8.20645634780438e-11,6.6802119391703e-10,-0.000418348552022653,-4.98772572724966e-08,5.32881030969893e-08,3.25384250794065e-08,-5.69162772467522e-09,1.09517429847526e-08,-2.84407913887365e-08 +4.912,-2.76794258083878e-06,-1.51915097344746e-06,1.76682987696949e-06,5.06605028760543e-10,2.77493837630427e-09,0.0799982562031128,-4.21455253508997e-09,3.52731732711259e-09,1.35137300655301e-09,8.42312330995391e-11,7.57706397625041e-10,-1.74438935518514e-09,0.169364072255987,0.0983452825183278,-0.106273941631047,4.84855211530963e-10,3.46077333457001e-08,0.146216276343559 +4.914,-1.36485024133243e-08,1.38201888336131e-08,4.55500530349706e-09,5.06849492931671e-10,2.77693189970618e-09,0.0799999930410376,0.00024593636546762,0.000141765547341159,-0.000153816343809506,8.40039843241675e-11,8.06452127299816e-10,0.000166516553351518,-1.68734384101543e-08,1.20394146039496e-08,1.37394436105272e-08,-2.79637424327866e-09,3.02318933771585e-09,-4.0280279111204e-09 +4.916,-1.78419711896818e-06,-9.52088784082761e-07,1.1515645017314e-06,5.0694104469784e-10,2.77816418481347e-09,0.0799989222693262,-4.2820462887306e-09,3.57547498552839e-09,1.40633078099512e-09,7.30457361264232e-11,7.69799154975906e-10,-1.76050146682963e-09,-0.0262411560516871,-0.0105091845130624,0.018227156289713,2.80027737110022e-09,-9.58651560907205e-09,0.0235858858494304 +4.918,-1.36656305984792e-08,1.38344907335552e-08,4.56063062662104e-09,5.07141675876177e-10,2.78001109632608e-09,0.0799999930339956,0.00014097174126086,9.97288092889041e-05,-8.0907718650646e-05,9.52050938085696e-11,7.68106064863523e-10,0.00026086009674925,6.04441626956253e-08,-5.77957820489335e-08,-3.54926591588497e-08,8.77900183105562e-09,-1.00366763510923e-08,3.3025665535556e-08 +4.92,-1.22031015392481e-06,-5.53173546927188e-07,8.27933627128852e-07,5.07321865073074e-10,2.78123660907292e-09,0.0799999657097132,-4.04026963794812e-09,3.34429185733268e-09,1.26436014435974e-09,1.08161743450642e-10,7.29652449571541e-10,-1.62839880468742e-09,-0.118796799615351,-0.0736489954972794,0.0723982796471635,-5.20417042798324e-10,-1.87068242841075e-08,-0.158387581192951 +4.922,-1.3681791677031e-08,1.38478679009846e-08,4.56568806719848e-09,5.0757432284998e-10,2.78292970612437e-09,0.079999993027482,-0.000334215457200492,-0.000194867172700181,0.000208685399937976,9.31234256373765e-11,6.93278767727101e-10,-0.000372690228022485,-3.67451295083428e-08,4.14490490539258e-08,1.84693840082163e-08,-2.87183471448497e-09,7.83314385573101e-09,-2.47388914908093e-08 +4.924,-2.55717198272692e-06,-1.332642237728e-06,1.66267522688085e-06,5.07694358775623e-10,2.78400972414383e-09,0.0799984749488011,-4.18725015598151e-09,3.51008805354841e-09,1.33823768039261e-09,9.66744045927007e-11,7.60985024994469e-10,-1.72735437065066e-09,0.130190728981893,0.0727457203039053,-0.0829479974199091,1.0074406586787e-09,2.55650535463776e-08,0.123477069174385 +4.926,-1.36985406776549e-08,1.38619082531988e-08,4.57104101792005e-09,5.0796102046835e-10,2.78597364622435e-09,0.0799999930205726,0.000186547458727136,9.61157085154729e-05,-0.000123106589741697,9.71531882720918e-11,7.95538981912623e-10,0.000121218048675111,-1.26053139283119e-08,6.13007908342924e-09,4.97713849308731e-09,-1.92554305832931e-09,5.13478148931507e-10,-3.34281213830394e-09 +4.928,-1.81098214781846e-06,-9.4817940366615e-07,1.17024886791411e-06,5.08082971528712e-10,2.78719188007148e-09,0.0799989598209958,-4.23767141169475e-09,3.53460836988212e-09,1.35814623436496e-09,8.89722323593843e-11,7.63038937590194e-10,-1.74072561920388e-09,-0.0659715652818435,-0.0334743835636639,0.0437003416669626,-2.43121495158688e-09,-1.11928695479155e-08,-0.0297135763502735 +4.93,-1.37154913633017e-08,1.38760466866783e-08,4.57647360285751e-09,5.08316909397788e-10,2.78902580197471e-09,0.0799999930136097,-7.73388024002085e-05,-3.77818257391679e-05,5.16947769261337e-05,8.74283284657453e-11,7.50767503720966e-10,2.36374327403062e-06,8.73162219846229e-10,-2.26468149808341e-09,-1.79500511684197e-09,8.18355799786936e-10,-2.70616862294693e-10,1.76508113690262e-09 +4.932,-2.12033735741933e-06,-1.09930670662284e-06,1.37702797561867e-06,5.08432684842575e-10,2.79019495008637e-09,0.0799989692759689,-4.23417876281537e-09,3.52554964388979e-09,1.35096621389759e-09,9.22456555585324e-11,7.61956470141015e-10,-1.73366529465627e-09,0.0318812238957167,0.0169108084133153,-0.020901531704636,2.51795112538518e-09,4.3953556072979e-09,0.00380079511613797 +4.934,-1.3732428078353e-08,1.38901488852539e-08,4.5818774677131e-09,5.08685892020022e-10,2.79207362785527e-09,0.0799999930066751,5.01860931826726e-05,2.98614079141007e-05,-3.19113498924197e-05,9.75001329672872e-11,7.6834892615016e-10,1.75669237385842e-05,6.59482234423538e-09,-5.61356516806645e-09,-5.77836389840504e-09,2.0552136381691e-09,-8.56953397090425e-10,3.25867804952694e-09 +4.936,-1.91959298468866e-06,-9.79861074966448e-07,1.24938257604901e-06,5.08822685374444e-10,2.79326834579097e-09,0.0799990395436638,-4.20779947343843e-09,3.50309538321752e-09,1.32785275830397e-09,1.00466510111208e-10,7.58528656552654e-10,-1.72063058245816e-09,-0.0162747532626596,-0.00912387669192533,0.0102873321243986,1.74946862551719e-09,-3.63554672482103e-09,-0.00334088574687016 +4.938,-1.37492592762467e-08,1.39041612667867e-08,4.58718887874632e-09,5.09087758060467e-10,2.79510774248148e-09,0.0799999929997925,-1.49129198679585e-05,-6.63409885359659e-06,9.2379786051703e-06,1.04498007469355e-10,7.53806739250877e-10,4.20338075110502e-06,7.30530002833053e-09,-6.11490025301133e-09,-7.22013594752206e-09,2.15756232324009e-09,-1.32359401221211e-09,2.90652918409399e-09 +4.94,-1.9792446641605e-06,-1.00639747038084e-06,1.28633449046969e-06,5.09240677404321e-10,2.79628357274797e-09,0.0799990563571868,-4.17857827332511e-09,3.47863578220547e-09,1.29897221451388e-09,1.09096759404169e-10,7.53234280503805e-10,-1.70900446572178e-09,0.0631787399615404,0.036086431846188,-0.039808421434684,8.23993651089562e-09,1.80194401071276e-09,0.0567360189497949 +4.942,-1.376597358934e-08,1.39180758099156e-08,4.59238476760437e-09,5.09524145098084e-10,2.7981206796035e-09,0.0799999929929565,0.000237802039978231,0.000137711628531172,-0.000149995707133583,1.37457753512941e-10,7.61014515293729e-10,0.00023114745655031,6.52127549007664e-08,-6.19977159886247e-08,-4.42621200107893e-08,9.66718025075794e-09,-1.24206200879549e-08,3.26700472229835e-08 +4.944,-1.02803650424768e-06,-4.55550956256212e-07,6.86351661935425e-07,5.09790508418373e-10,2.79932763080915e-09,0.079999980947013,-3.91772725372207e-09,3.230644918251e-09,1.12192373447074e-09,1.47765480407197e-10,7.03551800151991e-10,-1.57832427682986e-09,-0.154487203105115,-0.0911927811589058,0.0950330744169977,-2.06475461728902e-09,-2.53295648345176e-08,-0.154192559219923 +4.946,-1.37816444983549e-08,1.39309983895886e-08,4.59687246254226e-09,5.10115207019712e-10,2.80093488680411e-09,0.0799999929866432,-0.000380146772442159,-0.000227059496104412,0.000230136590534365,1.29198735043786e-10,6.5969625595567e-10,-0.000385622780329316,-4.26179274160504e-08,4.70227155822445e-08,2.06573039922994e-08,-4.38754935162156e-09,7.69436597765436e-09,-2.86012533100736e-08 +4.948,-2.54862359401649e-06,-1.36378894067396e-06,1.60689802407299e-06,5.10307303358548e-10,2.80196641583297e-09,0.0799984384558917,-4.08819896338629e-09,3.41873578058e-09,1.20455295043995e-09,1.30215283000708e-10,7.34329264062612e-10,-1.69272929007017e-09,0.145038633429286,0.0825757634887296,-0.0896644024939381,-7.1210398688131e-10,2.83202281070959e-08,0.124215367428514 +4.95,-1.37979972942084e-08,1.39446733327109e-08,4.60169067434402e-09,5.10636068151715e-10,2.80387220386036e-09,0.0799999929798723,0.000200007761275048,0.000103243557850544,-0.000128521019441427,1.26350319096261e-10,7.72977168384067e-10,0.000111238689384797,-2.28626254215423e-08,1.63996420612091e-08,1.38591395305176e-08,-4.37410524466925e-09,2.1566949615494e-09,-8.14712880502084e-09 +4.952,-1.74859254891638e-06,-9.5081470927183e-07,1.09281394630734e-06,5.10812704634933e-10,2.8050583245065e-09,0.0799988834106492,-4.17964946507245e-09,3.48433434882483e-09,1.25998950856201e-09,1.12718862022033e-10,7.42956043908809e-10,-1.72531780529025e-09,-0.0730241046831695,-0.0373294850308848,0.0475257980535223,-5.20373674706843e-09,-9.90787313308442e-09,-0.0270161735066504 +4.954,-1.38147158920687e-08,1.39586106701062e-08,4.60673063237826e-09,5.11086943599803e-10,2.80684402803599e-09,0.079999992972971,-9.20886574575977e-05,-4.60743822729791e-05,6.1582172772641e-05,1.05535372107989e-10,7.33345675851733e-10,3.17399535820737e-06,-9.78833984329085e-09,9.16801357034191e-09,1.01431450043987e-08,-1.74339709336256e-09,2.34577982034789e-09,-2.55611504175548e-09 +4.956,-2.11694717874682e-06,-1.13511223836377e-06,1.33914263739793e-06,5.11234846123365e-10,2.80799170720991e-09,0.0799988961066307,-4.21880282444562e-09,3.5210064031062e-09,1.30056208857961e-09,1.05745273648582e-10,7.52339163190201e-10,-1.73554226545727e-09,0.0358055874015865,0.0202858801618697,-0.0224599325561424,1.63497687616673e-10,7.67311561515512e-09,0.0053244939004703 +4.958,-1.38315911033665e-08,1.39726946957186e-08,4.61193288073258e-09,5.11509924694398e-10,2.80985338468875e-09,0.0799999929660289,5.11336921487642e-05,3.50691383745088e-05,-2.82575574519387e-05,1.06189362858456e-10,7.64038138312357e-10,2.44719709600909e-05,-2.52960629896934e-09,4.41660597003338e-09,6.04464395211475e-09,-2.532696274868e-10,1.93031354793538e-09,-2.0036056157171e-10 +4.96,-1.91241241015178e-06,-9.94835684865747e-07,1.22611240759019e-06,5.11659603574799e-10,2.81104785976316e-09,0.0799989939945145,-4.22892124964149e-09,3.53867282698633e-09,1.32474066438807e-09,1.04732195138635e-10,7.60060417381942e-10,-1.73634370770356e-09,-0.017698272380509,-0.00994854890655676,0.0110052159470983,-3.8554229254174e-10,-1.17657619762369e-09,-0.00308283252051369 +4.962,-1.38485067883651e-08,1.39868493870265e-08,4.61723184339013e-09,5.11928853474952e-10,2.81289362635828e-09,0.0799999929590835,-1.9659397373264e-05,-4.72505725171382e-06,1.57633063364495e-05,1.04647193688289e-10,7.59331833521863e-10,1.21406408780375e-05,6.49762362205203e-10,9.60169443756496e-10,2.2675004234621e-09,3.19189119573848e-10,9.87491338657372e-10,7.69349861691943e-10 +4.964,-1.99104999964485e-06,-1.0137359138726e-06,1.28916563293599e-06,5.12078192349552e-10,2.81408518709725e-09,0.079999042557078,-4.22632220019267e-09,3.54251350476136e-09,1.33381066608192e-09,1.06008951616931e-10,7.64010382736572e-10,-1.73326630825679e-09,0.00840099546764166,0.00370003392508007,-0.00590013912770118,6.68735899994868e-10,1.805847138534e-09,-0.00145178337147072 +4.966,-1.38654120771659e-08,1.40010194410456e-08,4.62256708605446e-09,5.1235288928142e-10,2.81594966788923e-09,0.0799999929521504,1.39445844973064e-05,1.00750784486081e-05,-7.83725017435791e-06,1.07322137288269e-10,7.66555222076e-10,6.33350739215402e-06,1.78421730491646e-09,-1.24032728512699e-09,-4.8637309450307e-10,4.71411104602685e-10,1.37043154644602e-10,9.19403442171701e-10 +4.968,-1.93527166165563e-06,-9.73435600078176e-07,1.25781663223856e-06,5.12507480898705e-10,2.81715140798555e-09,0.0799990678911076,-4.21918533097301e-09,3.53755219562085e-09,1.33186517370391e-09,1.07894596035341e-10,7.6455855535515e-10,-1.72958869448811e-09,-0.0042744347819294,-0.00275688286869496,0.00240222016714394,3.60388802128221e-10,-7.92334947694939e-10,-0.00114859682615772 +4.97,-1.38822888184897e-08,1.40151696498281e-08,4.62789454674928e-09,5.12784467665561e-10,2.81900790211065e-09,0.0799999929452321,-3.15315463040935e-06,-9.52453026170534e-07,1.77163049421677e-06,1.08763692496782e-10,7.6338588228522e-10,1.73912008752367e-06,2.05082261959882e-09,-2.3544534379654e-09,-2.12612046031751e-09,4.74013189804567e-10,-4.3194614556057e-10,8.49147141586453e-10 +4.972,-1.94788428017727e-06,-9.77245412182859e-07,1.26490315421543e-06,5.12942535668692e-10,2.82020495151469e-09,0.0799990748475879,-4.21098204049461e-09,3.52813438186899e-09,1.32336069186264e-09,1.0979064879456e-10,7.62830770772908e-10,-1.72619210592176e-09,0.00190692529377749,0.00068799134184805,-0.00145570776309893,5.07406616729253e-10,-2.21610924013671e-10,-0.00055267141470934 +4.974,-1.38991327466517e-08,1.40292821873556e-08,4.63318798951673e-09,5.1322363026074e-10,2.82205922519374e-09,0.0799999929383273,4.47454654470145e-06,1.79951234122197e-06,-4.05120055817959e-06,1.10793318963699e-10,7.62499438589165e-10,-4.71565571313944e-07,1.87323030327836e-09,-2.36095865060907e-09,-2.62311873603856e-09,4.3758399682134e-10,-5.93709109610838e-10,6.55725473823559e-10 +4.976,-1.92998609399846e-06,-9.70047362817972e-07,1.24869835198271e-06,5.13385708944547e-10,2.82325494926905e-09,0.0799990729613257,-4.2034891192815e-09,3.51869054726656e-09,1.31286821691848e-09,1.11540984781845e-10,7.60455934334465e-10,-1.72356920402647e-09,0.0550861116204367,0.0320971025903614,-0.0341744463548153,6.5104172053348e-09,1.21777588009338e-09,0.0570350766754268 +4.978,-1.39159467031288e-08,1.40433569495446e-08,4.6384394623844e-09,5.13669794199867e-10,2.82510104893108e-09,0.079999992931433,0.000224818993026424,0.000130187922702654,-0.000140748985977426,1.36834987785035e-10,7.67370542109538e-10,0.000227668741130368,6.14231972578236e-08,-5.98358168570499e-08,-4.05229235584475e-08,8.42555192281128e-09,-1.1788747061909e-08,3.12735948249986e-08 +4.98,-1.03071012189267e-06,-4.49295672007299e-07,6.85702408072947e-07,5.13933048895687e-10,2.82632443143749e-09,0.0799999836362902,-3.95779633025018e-09,3.27934727983833e-09,1.15077652268468e-09,1.45243192473094e-10,7.13300946086823e-10,-1.59847482472646e-09,-0.150039611261934,-0.0878838859810697,0.0918655502376183,-3.0591848498775e-09,-2.39088263076077e-08,-0.151752485790129 +4.982,-1.39317778884498e-08,1.4056474338664e-08,4.64304256847514e-09,5.14250766969759e-10,2.82795425271543e-09,0.0799999929250391,-0.000375339452021379,-0.000221347621221665,0.000226713214973089,1.24598248385524e-10,6.71735236879097e-10,-0.000379341202030217,-8.71881234746797e-08,7.20873014061521e-08,2.99033801193932e-08,-2.03439695644419e-09,1.48982388926007e-08,-4.09871789287398e-08 +4.984,-2.53206792997802e-06,-1.33468615689386e-06,1.5925552679652e-06,5.14431441889229e-10,2.829011372385e-09,0.0799984662714821,-4.30654882414886e-09,3.56769648546291e-09,1.27039004316224e-09,1.37105604647318e-10,7.7289390165722e-10,-1.7624235404414e-09,0.123100728882652,0.0781788331927682,-0.0704698596100173,1.01329535040426e-08,4.12287391726344e-08,0.141852881978113 +4.986,-1.39490040837464e-08,1.40707451246058e-08,4.64812412864779e-09,5.14799189388349e-10,2.83104582832205e-09,0.0799999929179894,0.000117063463509173,9.13677115493736e-05,-5.51662234669494e-05,1.6513006240169e-10,8.36650193569616e-10,0.000188070325882174,-1.02450491666366e-07,4.70973086916928e-08,-6.80445283522292e-10,1.65375525773446e-08,1.61624186256294e-08,-1.97472246886797e-08 +4.988,-2.06381407594127e-06,-9.69215310696325e-07,1.37189037409738e-06,5.15091962138836e-10,2.83235797315928e-09,0.0799992185527856,-4.71635079081437e-09,3.7560857202297e-09,1.26766826202815e-09,2.03255814956704e-10,8.37543576159744e-10,-1.84141243919613e-09,-0.0291275648101854,-0.0140615022507733,0.0179607237945117,2.26897493849168e-08,9.22005527528125e-10,-0.0279678529068495 +4.99,-1.39678694869097e-08,1.40857694674867e-08,4.6531948016959e-09,5.15612212648175e-10,2.83439600262669e-09,0.0799999929106238,5.53204268418572e-07,3.51217025462741e-05,1.66766717111054e-05,2.55889059941367e-10,8.40338215679729e-10,7.61989142547632e-05,2.10030560649147e-08,-2.71501571223105e-08,-5.6894810043726e-08,2.7243398509364e-08,-1.18481613404592e-09,1.84852133599107e-08 +4.992,-2.0616012588676e-06,-8.28728500511244e-07,1.43859706094179e-06,5.16115518378601e-10,2.835719326022e-09,0.0799995233484426,-4.63233856655472e-09,3.64748509174047e-09,1.04008902185327e-09,3.12229408994148e-10,8.32804311623561e-10,-1.76747158575649e-09,0.0145190542327039,-0.00126565922846573,-0.0149300589218091,2.79143028136665e-08,-4.36152849952133e-09,-0.0181613016873556 +4.994,-1.39863988411759e-08,1.41003594078537e-08,4.65735515778332e-09,5.16861130284152e-10,2.83772721987319e-09,0.0799999929035539,5.86294211992279e-05,3.00590656324118e-05,-4.30435639761244e-05,3.67546271196021e-10,8.22892101681646e-10,3.55370750534894e-06,6.00482662728102e-08,-4.70730225634296e-08,-7.61335439137108e-08,2.51608629764136e-08,-1.14669558571194e-08,2.40571451649391e-08 +4.996,-1.82708357407066e-06,-7.08492237981584e-07,1.26642280503728e-06,5.17585703463386e-10,2.83901089442873e-09,0.0799995375632726,-4.39214550146345e-09,3.45919300148673e-09,7.35554846198389e-10,4.12872860899814e-10,7.86936488195079e-10,-1.67124300509672e-09,-0.0125754720929616,-0.0120470607161885,0.00538623050132528,2.09376786741914e-08,-1.57495544383477e-08,-0.014794994142135 +4.998,-1.40039674231818e-08,1.41141961798597e-08,4.66029737716811e-09,5.18512621727751e-10,2.84087496582597e-09,0.0799999928968689,8.32753282737583e-06,-1.81291772323475e-05,-2.14986419708209e-05,4.51296985892796e-10,7.59893883928248e-10,-5.56262690631976e-05,5.39695783720774e-08,-3.80320774871318e-08,-6.67699402711902e-08,1.65540324504042e-08,-1.47820124196269e-08,1.61927762864163e-08 +5,-1.79377344276116e-06,-7.81008946910966e-07,1.180428237154e-06,5.19390891406957e-10,2.84205046996444e-09,0.0799993150581964,-4.17626718797516e-09,3.30706469153822e-09,4.68475085113658e-10,4.79088990701423e-10,7.27808438516577e-10,-1.60647189995107e-09,-0.00169454558794247,-0.004073275964785,2.31935293465574e-05,1.14968798370112e-08,-1.4296723527305e-08,-0.0086120199357217 +5.002,-1.40206724919337e-08,1.41274244386258e-08,4.66217127750856e-09,5.20428977690557e-10,2.84378619958003e-09,0.079999992890443,1.54935047560669e-06,-3.44222810914857e-05,-2.14058678534347e-05,4.97284505240836e-10,7.02706989819034e-10,-9.00743488060806e-05,3.11505920886662e-08,-1.5861877783643e-08,-4.0312805177373e-08,6.6444245938321e-09,-1.22623265708487e-08,5.0038098665432e-09 +5.004,-1.78757604085873e-06,-9.18698071276924e-07,1.09480476574025e-06,5.2138002942792e-10,2.84486129792372e-09,0.0799989547608012,-4.05166481962048e-09,3.24361718040364e-09,3.07223864404148e-10,5.05666689076755e-10,6.78759132233177e-10,-1.58645666048489e-09,-0.00398529630992027,-0.00167089555863486,0.00340826835569226,1.92857882444481e-09,-1.02261948908442e-08,0.00115884783192576 +5.006,-1.40368791512122e-08,1.41403989073474e-08,4.66340017296618e-09,5.22451644446864e-10,2.84650123610897e-09,0.0799999928840972,-1.43918347640762e-05,-4.11058633260259e-05,-7.77279443066411e-06,5.04998820538616e-10,6.61802210255653e-10,-8.5438957478377e-05,7.55439547700412e-09,7.45714254253707e-09,-7.8363964622754e-09,-2.09207651200042e-09,-6.30355143079443e-09,-4.35328856305284e-09 +5.008,-1.84514337991503e-06,-1.08312152458101e-06,1.0637135880176e-06,5.23400024710075e-10,2.84750850676474e-09,0.0799986130049712,-4.02144723771247e-09,3.27344575057378e-09,2.7587827855505e-10,4.97298383028754e-10,6.53544926510002e-10,-1.6038698147371e-09,0.000616974609857317,0.00322242212211102,0.0017860326980393,-5.7319600455244e-09,-3.06308797774278e-09,0.00813815656357715 +5.01,-1.4052964940163e-08,1.41534926903497e-08,4.6645036860804e-09,5.24440837978979e-10,2.84911541581501e-09,0.0799999928776817,-1.19239363246472e-05,-2.82161748375833e-05,-6.28663638507706e-07,4.82070980356521e-10,6.49549858344683e-10,-5.2886331224072e-05,-1.00489278354564e-08,2.48360360053726e-08,2.18651052124949e-08,-8.8943609422277e-09,1.56125112801603e-10,-1.01984393151763e-08 +5.012,-1.89283912521362e-06,-1.19598622393136e-06,1.06119893346357e-06,5.25328308631501e-10,2.85010670619812e-09,0.0799984014596463,-4.0616429490543e-09,3.37278989459528e-09,3.6333869940504e-10,4.61720939259839e-10,6.54169426961209e-10,-1.64466357199781e-09,0.00017492357237105,0.00382051113575181,0.00223938440902824,-1.15441510517299e-08,2.83670656412713e-09,0.00967490364298506 +5.014,-1.40692115119592e-08,1.41669838499281e-08,4.66595704087802e-09,5.26287721736018e-10,2.85173209352285e-09,0.0799999928711031,-1.12242420351629e-05,-1.29341302945743e-05,8.32887399760626e-06,4.35894376149596e-10,6.60896684601193e-10,-1.41867166521275e-05,-1.9952518370372e-08,3.31622750095742e-08,4.37896247041124e-08,-1.37277342271199e-08,5.30348334696756e-09,-1.24900090271271e-08 +5.016,-1.93773609335427e-06,-1.24772274510965e-06,1.09451442945399e-06,5.27071886136099e-10,2.85275029293652e-09,0.0799983447127797,-4.14145302253578e-09,3.50543899463357e-09,5.3849719822147e-10,4.06810002351366e-10,6.75383360349077e-10,-1.69462360810631e-09,0.000851653124976229,0.00374172354081633,0.00123624539142888,-1.54455441492527e-08,7.04471203590511e-09,0.00790655599151945 +5.018,-1.40857773240494e-08,1.41810056059066e-08,4.66811102967091e-09,5.27914961745424e-10,2.85443362696425e-09,0.0799999928643246,-7.81762953525836e-06,2.03276386868933e-06,1.32738555633212e-05,3.74112199552592e-10,6.8907553274481e-10,1.74395073139469e-05,-2.27822318299857e-08,3.26999712028299e-08,5.5951987834548e-08,-1.67509235649199e-08,8.20784412654493e-09,-1.19956128362828e-08 +5.02,-1.96900661149531e-06,-1.23959168963489e-06,1.14760985170728e-06,5.2856833493431e-10,2.8555065950675e-09,0.079998414470809,-4.23258194985573e-09,3.6362388794449e-09,7.62305149559687e-10,3.39806308091679e-10,7.0821473685526e-10,-1.74260605945145e-09,0.000649504299518512,0.00249662632928482,0.000433608508040904,-1.76217547498206e-08,8.83277825884316e-09,0.0049898779596126 +5.022,-1.41027076518488e-08,1.41955505614244e-08,4.67116025026915e-09,5.29274186977791e-10,2.85726648591167e-09,0.0799999928573542,-5.21961233718402e-06,1.20192691858297e-05,1.5008289595485e-05,3.03625180553302e-10,7.24406645780187e-10,3.73990191523995e-05,-2.0223406283177e-08,2.55507420778699e-08,5.89938254497711e-08,-1.8108344684838e-08,8.89305989963638e-09,-9.64506252652992e-09 +5.024,-1.98988506084404e-06,-1.19151461289158e-06,1.20764301008922e-06,5.29782835656523e-10,2.85840422165062e-09,0.0799985640668856,-4.31347557498843e-09,3.73844184775637e-09,9.98280451358745e-10,2.67372929352335e-10,7.43786976453802e-10,-1.78118630955757e-09,0.000858190454030721,0.00148271324731874,-0.000517767707615552,-1.81846725178127e-08,8.72826116933706e-09,0.00220433049938143 +5.026,-1.41199615541487e-08,1.42105043288154e-08,4.67515337207458e-09,5.303436786952e-10,2.86024163381748e-09,0.0799999928502294,-1.78685052106151e-06,1.7950122175104e-05,1.29372187650231e-05,2.30886490482059e-10,7.59319690457531e-10,4.62163411499243e-05,-1.43630766999764e-08,1.47308380769151e-08,5.48356932777316e-08,-1.79752046580825e-08,8.03784122589545e-09,-6.3256691550491e-09 +5.028,-1.99703246292829e-06,-1.11971412419115e-06,1.25939188514931e-06,5.30706381618451e-10,2.86144150041245e-09,0.0799987489322502,-4.37092788178834e-09,3.79736520006404e-09,1.2176232244697e-09,1.95472110719997e-10,7.75938341357387e-10,-1.80648898617777e-09,0.000767009956795746,0.000520985520350733,-0.00101874525525456,-1.73871333997027e-08,7.33137509038912e-09,8.45436568001188e-05 +5.03,-1.41374452656759e-08,1.42256937896157e-08,4.68002386497246e-09,5.3112556713808e-10,2.86334538718291e-09,0.0799999928430035,1.28118930612181e-06,2.00340642565072e-05,8.86223774400439e-06,1.61337956883241e-10,7.88645190819091e-10,4.65545157771248e-05,-7.29424116618355e-09,3.2686527098208e-09,4.61191414919627e-08,-1.65817880259861e-08,6.14048742413334e-09,-2.88744722586432e-09 +5.032,-1.9919077057038e-06,-1.03957786716513e-06,1.29484083612533e-06,5.31351733445984e-10,2.86459608117573e-09,0.0799989351503133,-4.40010484645308e-09,3.81043981090332e-09,1.40209979043753e-09,1.2914495861606e-10,8.00500291053918e-10,-1.81803877508122e-09,0.000642126136659556,-0.000146847855924949,-0.00119578930915222,-1.54962848109097e-08,5.24580379131008e-09,-0.00127372734148432 +5.034,-1.41550456850617e-08,1.42409355488593e-08,4.68563226413421e-09,5.31642146972544e-10,2.86654738834713e-09,0.0799999928357313,3.84969385275975e-06,1.94466728328075e-05,4.07908050739601e-06,9.93528176396086e-11,8.09628405984329e-10,4.14596064111881e-05,5.01172454233755e-08,-5.50111171895066e-08,9.12681388790306e-09,-1.09899069011868e-08,-6.35342473080808e-09,2.62879995550476e-08 +5.036,-1.97650893029276e-06,-9.61791175833893e-07,1.31115715815491e-06,5.31749144716542e-10,2.86783459479967e-09,0.079999100988739,-4.19963586475955e-09,3.59039534214527e-09,1.43860704598914e-09,8.51853310113076e-11,7.75086592130682e-10,-1.71288677686102e-09,-0.0179276880914894,-0.00986791858946055,0.0109311269575962,-7.79324521582028e-09,-1.48952031264299e-08,-0.0401869246777532 +5.038,-1.41718442285207e-08,1.42552971302279e-08,4.69138669231817e-09,5.31982888296589e-10,2.86964773471565e-09,0.0799999928288797,-6.78610585132059e-05,-2.00250015250392e-05,4.78035883377856e-05,6.8179836776324e-11,7.50047593478603e-10,-0.000119288092299843,-1.45174128797086e-08,1.36687536291616e-08,3.18287063373094e-08,-1.12518501460523e-08,7.73773406463929e-09,-1.52586276947905e-08 +5.04,-2.24795316434555e-06,-1.04189118193404e-06,1.50237151150603e-06,5.32021864063648e-10,2.87083478517358e-09,0.0799986238363698,-4.25770551627838e-09,3.64507035666191e-09,1.56592187133837e-09,4.01779304271033e-11,8.06037528389236e-10,-1.77392128764017e-09,0.0376518005393131,0.0146530955173415,-0.0271717330527941,-1.38261797844079e-08,2.24043873730678e-08,0.0636069556322612 +5.042,-1.41888750505859e-08,1.42698774116545e-08,4.69765037980352e-09,5.32143600018298e-10,2.87287188482921e-09,0.0799999928217841,8.274614364403e-05,3.85873805443206e-05,-6.0883343873379e-05,1.28751176386984e-11,8.39665142970864e-10,0.000135139730229174,-3.56216250070928e-08,1.49628573418323e-08,3.56954049650798e-08,-1.36197476907621e-08,5.89415669045412e-09,-1.30928254348336e-08 +5.044,-1.9169685897694e-06,-8.87541659756741e-07,1.25883813601249e-06,5.32073364534202e-10,2.87419344574547e-09,0.0799991643952907,-4.40019201630677e-09,3.70492178602924e-09,1.7087034911987e-09,-1.43010603359512e-11,8.29614155151055e-10,-1.82629258937951e-09,-0.0281902080208858,-0.00967973170975168,0.0211152277162595,-1.10636326489103e-08,-2.39391839680138e-09,-0.0257349545779433 +5.046,-1.42064758186511e-08,1.42846970987986e-08,4.70448519376832e-09,5.32086395776954e-10,2.87619034144981e-09,0.0799999928144789,-3.00146884395258e-05,-1.31546294690491e-07,2.35775669916683e-05,-3.13794129569479e-11,8.30089469383657e-10,3.2199911917389e-05,-5.99780641843532e-09,-5.99086752408163e-09,1.56253048695249e-08,-6.40026226461863e-09,2.22955334754573e-09,5.10008701835908e-10 +5.048,-2.03702734352749e-06,-8.88067844935503e-07,1.35314840397915e-06,5.31947846882375e-10,2.877513803623e-09,0.0799992931949383,-4.4241832419805e-09,3.68095831593292e-09,1.77120471067679e-09,-3.99021093944229e-11,8.38532368541237e-10,-1.82425255457217e-09,0.0146466296629602,0.00627620792142957,-0.0100709593258137,-2.89959029009349e-09,3.53363172051867e-09,-0.00026560600420623 +5.05,-1.4224172551619e-08,1.42994209320624e-08,4.71157001261102e-09,5.31926787339376e-10,2.87954447092398e-09,0.0799999928071819,2.85718302123087e-05,2.4973285391025e-05,-1.6706270311582e-05,-4.29777741173206e-11,8.4422399626573e-10,3.11374879005642e-05,7.42282754384015e-09,-1.20979615216639e-08,4.70977423629268e-10,-8.91647866649664e-10,5.81132363986618e-11,4.63865057486222e-09 +5.052,-1.92274002267824e-06,-7.88174703371392e-07,1.28632332273282e-06,5.31775935785905e-10,2.88089069960806e-09,0.0799994177448899,-4.39449193180514e-09,3.63256646984626e-09,1.77308862037131e-09,-4.3468700861022e-11,8.38764821486832e-10,-1.80569795227272e-09,-0.0075862276813075,-0.00503182702839485,0.00431482625410418,8.03176969374874e-10,-2.13110779019064e-09,-0.00536998744342896 +5.054,-1.42417505193462e-08,1.43139511979418e-08,4.71866236709251e-09,5.31752912535932e-10,2.88289953020993e-09,0.0799999927999591,-1.7730805129247e-06,4.84597727744338e-06,5.53034704836647e-07,-3.97650662398207e-11,8.35699565104967e-10,9.65753812684595e-06,1.06345054287997e-08,-1.19995159640015e-08,-1.00652992883902e-08,2.56348761662288e-09,-1.73428979506163e-09,4.81819445442644e-09 +5.056,-1.92983234472994e-06,-7.6879079426162e-07,1.28853546155216e-06,5.31616875520946e-10,2.88423349786848e-09,0.0799994563750425,-4.35195391008995e-09,3.58456840599026e-09,1.73282742321776e-09,-3.32147503945316e-11,8.31827662306586e-10,-1.78642517445502e-09,0.00257106492075185,-0.00073026298636646,-0.00237917144622557,3.87103543664445e-09,-1.90646110014489e-09,-0.00365324735220105 +5.058,-1.42591583349866e-08,1.43282894715657e-08,4.72559367678538e-09,5.31620053534354e-10,2.88622684085915e-09,0.0799999927928134,8.51117917008157e-06,1.92492533197786e-06,-8.96365108006458e-06,-2.42809244932447e-11,8.28073720704388e-10,-4.95545128195662e-06,8.5342974009592e-09,-8.09985759040191e-09,-1.62814640243074e-08,4.77569372936492e-09,-2.82239509545981e-09,3.33066907397389e-09 +5.06,-1.89578762804961e-06,-7.61091092933708e-07,1.2526808572319e-06,5.31519751822973e-10,2.8875457927513e-09,0.0799994365532373,-4.31781672048611e-09,3.55216897562865e-09,1.66770156712052e-09,-1.41119754770697e-11,8.20538081924746e-10,-1.77310249815912e-09,-0.00235752588327886,-0.00221031776648911,0.0012228783391721,5.48302722669234e-09,-3.34498054250631e-09,-0.00252305963708454 +5.062,-1.42764296018685e-08,1.43424981474682e-08,4.73226448305386e-09,5.31563605632446e-10,2.88950899318685e-09,0.079999992785721,-9.18924363034927e-07,-6.91634573397957e-06,-4.07213772337562e-06,-2.34881558647286e-12,8.14693798534361e-10,-1.50476898302959e-05,4.64174055071502e-09,-2.55351295644127e-09,-1.89011133132859e-08,6.1691103614431e-09,-3.01971989076175e-09,1.47104550753021e-09 +5.064,-1.89946332550175e-06,-7.88756475869623e-07,1.2363923063384e-06,5.31510356560627e-10,2.89080456794544e-09,0.079999376362478,-4.29924975828325e-09,3.54195492380288e-09,1.59209711386738e-09,1.05644659686999e-11,8.084592023617e-10,-1.767218316129e-09,0.000218738550872599,-0.000514874340644709,-0.000172819527568517,6.70687463899545e-09,-2.83236975544637e-09,-0.00137947598829929 +5.066,-1.42936266009017e-08,1.43566659671635e-08,4.73863287150933e-09,5.31605863496321e-10,2.8927428299963e-09,0.0799999927786521,-4.39701595446269e-08,-8.97584309655818e-06,-4.76341583364961e-06,2.4478682969506e-11,8.03364319512577e-10,-2.05655937834925e-05,7.93202309628741e-10,3.08824146791039e-09,-1.89280015273361e-08,7.09154956979101e-09,-2.59861576705756e-09,-2.93168267341923e-10 +5.068,-1.89963920613993e-06,-8.2465984825586e-07,1.2173386430038e-06,5.31608271292505e-10,2.89401802522349e-09,0.0799992941001029,-4.29607694904473e-09,3.55430788967453e-09,1.51638510775803e-09,3.89306642478671e-11,7.98064739293469e-10,-1.76839098919837e-09,-0.000693483214375593,-0.000432134862182546,0.000634860497722515,7.28757332257991e-09,-2.41646980199109e-09,-0.000476200989232597 +5.07,-1.43108109086978e-08,1.43708831987222e-08,4.74469841194036e-09,5.31761586153312e-10,2.89593508895347e-09,0.0799999927715785,-2.81790301704731e-06,-1.07043825452886e-05,-2.22397384275926e-06,5.36289762598289e-11,7.93698440304612e-10,-2.24703977404231e-05,-2.2621878331299e-09,7.65620206142269e-09,-1.73559083770676e-08,7.39816194417588e-09,-1.9307472287183e-09,-1.61155810928096e-09 +5.072,-1.91091081820811e-06,-8.67477378437009e-07,1.20844274763277e-06,5.31822787197544e-10,2.89719281898471e-09,0.0799992042185119,-4.30512570037725e-09,3.58493269792021e-09,1.44696147424977e-09,6.85233120245674e-11,7.90341750378596e-10,-1.77483722163549e-09,5.54406267532298e-05,0.000192029639586072,0.000244762738506097,7.36910532594648e-09,-1.60201713010862e-09,0.000193507295258159 +5.074,-1.43280314114994e-08,1.43852229295138e-08,4.75048625783736e-09,5.3203567940141e-10,2.89909645595499e-09,0.0799999927644792,-2.59614051003442e-06,-9.93626398694436e-06,-1.24492288873498e-06,8.31053975636116e-11,7.87290371784178e-10,-2.16963685593905e-05,-4.26611870805602e-09,1.04911739016374e-08,-1.48631107422463e-08,7.21991910701005e-09,-1.22254636973826e-09,-2.27075302995464e-09 +5.076,-1.92129538024825e-06,-9.07222434384791e-07,1.20346305607782e-06,5.32155208787799e-10,2.90034198047184e-09,0.0799991174330377,-4.32219017520948e-09,3.62689739352677e-09,1.38750903128078e-09,9.74029884526108e-11,7.85451564899643e-10,-1.78392023375531e-09,-4.67991570519498e-05,0.000303504797248697,0.000311183090580189,6.93238869087692e-09,-8.98153079643283e-10,0.000665333239889725 +5.078,-1.43453201722002e-08,1.43997305190879e-08,4.75603629396248e-09,5.32425291355221e-10,2.90223826221458e-09,0.0799999927573435,-2.78333713824224e-06,-8.72224479794944e-06,-1.9052641409003e-10,1.10834952327122e-10,7.83697759465604e-10,-1.90350355998313e-05,-5.21848189684831e-09,1.15671361380172e-08,-1.20365956784252e-08,6.54467799399835e-09,-5.47305256627213e-10,-2.5725949149732e-09 +5.08,-1.93242872880122e-06,-9.42111413576585e-07,1.20346229397217e-06,5.32598548597107e-10,2.90347677150971e-09,0.0799990412928953,-4.34306410279687e-09,3.67316593807883e-09,1.33936264856708e-09,1.23581700428601e-10,7.83262343873134e-10,-1.7942106134152e-09,0.000196264404413932,0.000502359558032584,0.000110369863855902,6.07109848504367e-09,-2.92300905745603e-10,0.000986040204349282 +5.082,-1.43626924286114e-08,1.44144231828403e-08,4.76139374455675e-09,5.32919618156935e-10,2.90537131159008e-09,0.0799999927501667,-1.99827952058659e-06,-6.71280656581932e-06,4.41288929009471e-07,1.35119346267294e-10,7.82528555842622e-10,-1.50908747824346e-05,-5.23978646905445e-09,1.08567668741945e-08,-9.0797595137694e-09,5.5055786318733e-09,-8.97719399252426e-11,-2.42167397236347e-09 +5.084,-1.94042184688357e-06,-9.68962639839865e-07,1.20522744968821e-06,5.33139025982177e-10,2.90660688573308e-09,0.0799989809293961,-4.36402324867309e-09,3.71659300557561e-09,1.303043610512e-09,1.45604014956097e-10,7.82903256113433e-10,-1.80389730930466e-09,0.000203712117378678,0.00054519021805731,4.29677779901599e-05,4.88107818053723e-09,1.05818132078026e-10,0.00118009728291345 +5.086,-1.43801485216061e-08,1.44292895548626e-08,4.7666059189988e-09,5.3350203421676e-10,2.90850292461453e-09,0.0799999927429511,-1.18343105107179e-06,-4.53204569358984e-06,6.1316004097013e-07,1.54643658989445e-10,7.82951828370934e-10,-1.03704856507803e-05,-4.55381175500806e-09,8.96678564753252e-09,-6.24175190692808e-09,4.21190859968069e-09,2.37223435383333e-10,-1.96977850707223e-09 +5.088,-1.94515557108785e-06,-9.87090822614223e-07,1.20768008985209e-06,5.33757600618134e-10,2.90973869304656e-09,0.0799989394474535,-4.38223849569312e-09,3.75246014816574e-09,1.27807660288429e-09,1.62451649354818e-10,7.83852149854966e-10,-1.81177642333294e-09,0.000255910308189791,0.00058250805004223,-4.68459201552119e-05,3.52452442230728e-09,3.79470760326464e-10,0.00125457427606392 +5.09,-1.43976774755888e-08,1.44442993954552e-08,4.77171822541034e-09,5.34151840814179e-10,2.91163833321395e-09,0.079999992735704,-1.5978981831274e-07,-2.20201349342117e-06,4.25776360349303e-07,1.68741756678673e-10,7.8446971141224e-10,-5.35218854652515e-06,-3.44093243457326e-09,6.3143934523458e-09,-3.53341488020043e-09,2.79247111544402e-09,3.96817995086094e-10,-1.54043444656647e-09 +5.092,-1.94579473036111e-06,-9.95898876587908e-07,1.20938319529348e-06,5.34432567644849e-10,2.91287657189221e-09,0.0799989180386994,-4.39600222543141e-09,3.77771772197513e-09,1.26394294336349e-09,1.73621533816595e-10,7.85439421835311e-10,-1.81793816111921e-09,0.000222994132816232,0.000550661693326947,-7.01576414151068e-05,2.0916428311684e-09,5.39932681941329e-10,0.00121349045308747 +5.094,-1.44152614844906e-08,1.44594102663431e-08,4.77677399718379e-09,5.34846326949445e-10,2.91478009090129e-09,0.0799999927284322,7.32186712952288e-07,6.33279886863639e-10,1.45145794688844e-07,1.77108328003348e-10,7.86629442140006e-10,-4.98226734174711e-07,-2.18152319150255e-09,3.37403716098537e-09,-1.04083408551615e-09,1.38257461036346e-09,6.31005664430293e-10,-7.20777604369462e-10 +5.096,-1.9428659835093e-06,-9.95896343468361e-07,1.20996377847224e-06,5.35141000956862e-10,2.91602308966077e-09,0.0799989160457924,-4.40472831819742e-09,3.79121387061907e-09,1.25977960702142e-09,1.79151832258048e-10,7.87963444493032e-10,-1.82082127153669e-09,0.000181172688938768,0.00048838084271141,-7.45433940269126e-05,7.07767178188702e-10,6.67434857338413e-10,0.00106879950636382 +5.098,-1.44328803977634e-08,1.44745751218256e-08,4.78181311561188e-09,5.35562934278477e-10,2.91793194467926e-09,0.0799999927211489,1.45687746870728e-06,1.95415665073229e-06,-1.53027781418774e-07,1.79939396716102e-10,7.89299181569359e-10,3.77697129128009e-06,-1.03102205568054e-09,6.85215772800245e-10,1.22666633787991e-09,7.45931094570423e-11,6.20597323486819e-10,-2.96637714290878e-10 +5.1,-1.93703847363447e-06,-9.88079716865431e-07,1.20935166734656e-06,5.35860758543727e-10,2.91918028638705e-09,0.0799989311536776,-4.40885240642015e-09,3.79395473371027e-09,1.26468627237294e-09,1.79450204695877e-10,7.90445833786979e-10,-1.82200782239385e-09,0.000111403068952983,0.000387602696900438,-5.16945910990997e-05,-5.3386114972187e-10,7.42027966892888e-10,0.000843500160344277 +5.102,-1.4450515807389e-08,1.44897509407604e-08,4.78687186070137e-09,5.36280735097261e-10,2.92109372801441e-09,0.0799999927138609,1.90248974451926e-06,3.50456743833421e-06,-3.59806145815195e-07,1.77803952117214e-10,7.92267293436931e-10,7.15097193265758e-06,-1.30537941811908e-10,-1.52612297778045e-09,3.17888076979837e-09,-1.08767161942774e-09,7.78023479019654e-10,1.76941794448531e-10 +5.104,-1.92942851465639e-06,-9.74061447112096e-07,1.2079124427633e-06,5.36571974352196e-10,2.92234935556079e-09,0.0799989597575653,-4.40937455818739e-09,3.78785024179915e-09,1.27740179545213e-09,1.75099518218166e-10,7.93557927703058e-10,-1.82130005521606e-09,4.19423155602149e-05,0.000268381713554116,-2.32950160896994e-05,-1.55257751100911e-09,8.17054757141093e-10,0.000569119420860566 +5.106,-1.44681533056218e-08,1.45049023417276e-08,4.79198146788318e-09,5.36981133170134e-10,2.92426795972522e-09,0.0799999927065757,2.0702590067601e-06,4.57809429255056e-06,-4.52986210173983e-07,1.71593642073179e-10,7.95535512465495e-10,9.42744961609959e-06,4.02564266888461e-10,-2.99933689017346e-09,4.74403502585559e-09,-1.95720176178011e-09,8.55218673612319e-10,3.96384314361727e-10 +5.108,-1.92114747862935e-06,-9.55749069941891e-07,1.20610049792261e-06,5.37258348920489e-10,2.92553149761066e-09,0.0799989974673638,-4.40776430111984e-09,3.77585289423845e-09,1.29637793555556e-09,1.67270711171045e-10,7.96978802397507e-10,-1.81971451795861e-09,-2.40343329547111e-05,0.000140292956072017,5.73216626072441e-06,-2.28896762654187e-09,8.41340885892911e-10,0.000280332296439224 +5.11,-1.44857843628263e-08,1.45200057533046e-08,4.7971669796254e-09,5.37650216014818e-10,2.92745587493481e-09,0.0799999926992968,1.97412167494125e-06,5.13926611683869e-06,-4.30057545131082e-07,1.6243777156701e-10,7.98900876009067e-10,1.05487788018566e-05,5.66983525856718e-10,-3.7045019827396e-09,5.88851883927656e-09,-2.58777374527968e-09,8.44376651976161e-10,4.926614670765e-10 +5.112,-1.91325099192959e-06,-9.35192005474539e-07,1.20438026774208e-06,5.37908100006756e-10,2.92872710111469e-09,0.079999039662479,-4.40549636701641e-09,3.76103488630749e-09,1.31993201091266e-09,1.56919616189927e-10,8.00356309005412e-10,-1.81774387209031e-09,-7.53993716964015e-05,1.8077013410187e-05,2.69761925471528e-05,-2.78206277460682e-09,8.80372164013891e-10,9.16373140505142e-06 +5.114,-1.45034063482943e-08,1.45350498928498e-08,4.80244670766905e-09,5.38277894479577e-10,2.93065730017084e-09,0.0799999926920259,1.67252418815567e-06,5.21157417047943e-06,-3.22152774942483e-07,1.51309520468584e-10,8.02422364665122e-10,1.05854337274768e-05,4.06304764383536e-10,-3.67414432232692e-09,6.54077486609584e-09,-2.88571250229548e-09,9.31980187423897e-10,3.41740524868257e-10 +5.116,-1.90656089517696e-06,-9.14345708792619e-07,1.20309165664231e-06,5.38513338088631e-10,2.93193679057335e-09,0.0799990820042139,-4.40387114795888e-09,3.74633830901818e-09,1.34609511037705e-09,1.45376766180744e-10,8.04084229755108e-10,-1.81637690999083e-09,-0.000109917599273688,-8.85532281180591e-05,3.88560501048644e-05,-2.9763518038988e-09,8.79504802364759e-10,-0.000219589034455259 +5.118,-1.45210218328862e-08,1.45500352460859e-08,4.80783108811056e-09,5.388594015443e-10,2.93387363708986e-09,0.0799999926847604,1.23285379106087e-06,4.85736125800716e-06,-1.66728574523008e-07,1.39404113252988e-10,8.05940383874581e-10,9.70707758965568e-06,-5.47522121548427e-12,-3.05181227490491e-09,6.7294260442592e-09,-2.9377542065593e-09,8.75167993675115e-10,1.89952220518669e-10 +5.12,-1.90162948001272e-06,-8.94916263760592e-07,1.20242474234422e-06,5.39070954541643e-10,2.93516055210885e-09,0.0799991208325243,-4.40389304884374e-09,3.73413105991857e-09,1.37301281455408e-09,1.33625749354508e-10,8.07584901729808e-10,-1.81561710110876e-09,-0.000125918405693662,-0.000171667139704828,4.08787673850198e-05,-2.84711490494756e-09,8.6302492929866e-10,-0.000390709219318195 +5.122,-1.45386374050815e-08,1.45649717703256e-08,4.81332313936877e-09,5.39393904541718e-10,2.93710397669678e-09,0.0799999926774979,7.29180168286281e-07,4.17069269918792e-06,-3.21350498294661e-09,1.28015653633199e-10,8.09392483591776e-10,8.14424071238307e-06,-5.79018169971516e-10,-1.94158925069426e-09,6.4685670014068e-09,-2.74519990074071e-09,8.69530142288544e-10,-1.80411241400795e-10 +5.124,-1.89871275933957e-06,-8.78233492963842e-07,1.20241188832429e-06,5.39583017156176e-10,2.93839812204322e-09,0.0799991534094871,-4.40620912152363e-09,3.72636470291579e-09,1.39888708255971e-09,1.22644949751547e-10,8.11063022298961e-10,-1.81633874607436e-09,-0.000125411749399037,-0.000227264988078749,3.50990918187361e-05,-2.57563068096309e-09,8.14018991056996e-10,-0.000498492443504535 +5.126,-1.45562622415676e-08,1.45798772291372e-08,4.81891868769901e-09,5.39884484340725e-10,2.94034822878597e-09,0.0799999926702325,2.27533170690077e-07,3.26163274687282e-06,1.37182862292014e-07,1.17713130909345e-10,8.12648559556004e-10,6.15027093836471e-06,-1.20736753952436e-09,-6.24500451144786e-10,5.82216566632478e-09,-2.35098399081076e-09,8.03610650291273e-10,-4.91794105540234e-10 +5.128,-1.89780262665681e-06,-8.6518696197635e-07,1.20296061977346e-06,5.40053869679813e-10,2.94164871628144e-09,0.0799991780105709,-4.41103859168172e-09,3.72386670111121e-09,1.42217574522501e-09,1.13241013788302e-10,8.14277464900127e-10,-1.81830592249652e-09,-0.000111337434443368,-0.000254134179845808,2.40019028957668e-05,-2.10682166156776e-09,7.45497413846326e-10,-0.00054485507772184 +5.13,-1.45739063959344e-08,1.45947726959417e-08,4.82460739067991e-09,5.40337448395878e-10,2.94360533864557e-09,0.0799999926629593,-2.17816567083344e-07,2.2450960274897e-06,2.3319047387507e-07,1.09285844263075e-10,8.15630549211389e-10,3.97085062747759e-06,-1.81321971301991e-09,8.08381139598486e-10,4.86633303090501e-09,-1.80281137241518e-09,7.1253766771229e-10,-8.70831184839434e-10 +5.132,-1.89867389292515e-06,-8.56206577866392e-07,1.20389338166896e-06,5.40491013056865e-10,2.94491123847829e-09,0.0799991938939734,-4.4182914705338e-09,3.7271002256696e-09,1.44164107734863e-09,1.06029768298643e-10,8.17127615570976e-10,-1.82178924723588e-09,-8.76571310112097e-05,-0.000253874681693868,1.03434105898206e-05,-1.5131125519265e-09,6.40112962590004e-10,-0.000536715412564992 +5.134,-1.45915795618165e-08,1.46096810968444e-08,4.83037395498931e-09,5.40761567469072e-10,2.94687384910786e-09,0.0799999926556722,-5.68445091128223e-07,1.22959730071412e-06,2.74564116234357e-07,1.03233394055368e-10,8.18191001061749e-10,1.82398897721738e-06,-2.32707733315967e-09,2.13024042870628e-09,3.75524264470082e-09,-1.22428109316474e-09,5.8503549231853e-10,-1.17961196376537e-09 +5.136,-1.90094767328966e-06,-8.51288188663535e-07,1.2049916381339e-06,5.40903946633087e-10,2.94818400248253e-09,0.0799992011899293,-4.42759977986644e-09,3.73562118738443e-09,1.45666204792743e-09,1.01132643925983e-10,8.1946775754025e-10,-1.82650769509094e-09,-5.83363324010391e-05,-0.000230200527476919,-3.56313437954667e-06,-8.91647866646545e-10,5.32560107170433e-10,-0.000483712736532032 +5.138,-1.4609289960936e-08,1.46246235815939e-08,4.83620060318102e-09,5.41166098044776e-10,2.95015172013802e-09,0.0799999926483661,-8.01790420732353e-07,3.08795190806544e-07,2.60311578716172e-07,9.96668025887824e-11,8.20321241490431e-10,-1.10861968910537e-07,-2.70589757173491e-09,3.195794323411e-09,2.54267093483212e-09,-5.89805981837727e-10,5.17814957533587e-10,-1.26201132867173e-09 +5.14,-1.90415483497259e-06,-8.50053007900309e-07,1.20603288444876e-06,5.41302613843442e-10,2.9514652874485e-09,0.0799992007464814,-4.43842337015338e-09,3.74840436467807e-09,1.46683273166676e-09,9.87734199986324e-11,8.21539017370384e-10,-1.83155574040563e-09,-2.71850700587197e-05,-0.000188490380855613,-1.59036733435423e-05,-3.16153353502234e-10,4.83987849751877e-10,-0.000396812976574584 +5.142,-1.46270436544166e-08,1.46396171990526e-08,4.84206793410769e-09,5.41561191724771e-10,2.9534378762075e-09,0.0799999926410399,-9.10530700967244e-07,-4.45166332615993e-07,1.96696885341996e-07,9.84021891747734e-11,8.22257192889439e-10,-1.69811387520905e-06,-2.91872645868598e-09,4.00374178276247e-09,1.33790548092854e-09,-2.12503625752334e-11,4.10695782983113e-10,-1.49186218944173e-09 +5.144,-1.90779695777646e-06,-8.51833673230773e-07,1.20681967199013e-06,5.41696222600141e-10,2.95475431622005e-09,0.0799991939540259,-4.45009827598813e-09,3.76441933180912e-09,1.47218435359047e-09,9.86884185483314e-11,8.23181800502317e-10,-1.8375231891634e-09,2.46171746177134e-06,-0.000135126609120877,-2.54497701124931e-05,2.4286128664227e-10,3.2699537526734e-10,-0.000287691218070643 +5.146,-1.46448440475205e-08,1.46546748763798e-08,4.84795667152205e-09,5.41955945398964e-10,2.95673060340951e-09,0.0799999926336898,-9.0068383112016e-07,-9.85672769099441e-07,9.48978048920351e-08,9.93736343213423e-11,8.23565174390508e-10,-2.84887874749149e-06,-2.97938756974296e-09,4.45910669478939e-09,3.42391045989224e-10,4.83120488054062e-10,2.98372437822316e-10,-1.51961776485364e-09 +5.148,-1.91139969310094e-06,-8.5577636430717e-07,1.2071992632097e-06,5.42093717137426e-10,2.95804857691762e-09,0.0799991825585109,-4.4620158262671e-09,3.78225575858828e-09,1.47355391777443e-09,1.00620900500547e-10,8.24375290253606e-10,-1.84360166022281e-09,2.78541104027732e-05,-7.68420188589749e-05,-3.14801938856839e-05,6.97358837337002e-10,2.83627288276423e-10,-0.000168385588458579 +5.15,-1.46626921108256e-08,1.46698038994142e-08,4.85385088719315e-09,5.42358429000966e-10,2.96002810457052e-09,0.0799999926263154,-7.89267389509055e-07,-1.29304084453538e-06,-3.10229706507147e-08,1.02163069670691e-10,8.24699683543614e-10,-3.52242110132588e-06,-2.88495356101451e-09,4.54757759248321e-09,-5.78530279156465e-10,8.69963823207952e-10,2.41126563206528e-10,-1.45196354949494e-09 +5.152,-1.91455676265898e-06,-8.60948527685312e-07,1.20707517132709e-06,5.42502369416109e-10,2.96134737565179e-09,0.0799991684688265,-4.47355564051116e-09,3.80044606895822e-09,1.4712397966578e-09,1.0410075579338e-10,8.25339796506432e-10,-1.84940951442079e-09,4.69881172274039e-05,-2.00194843342423e-05,-3.37358047313671e-05,9.97032317823564e-10,2.47198095372527e-10,-5.07430156922853e-05 +5.154,-1.46805863333876e-08,1.468500568369e-08,4.85973584637978e-09,5.4277483202414e-10,2.96332946375655e-09,0.0799999926189178,-6.0131492059946e-07,-1.37311878187234e-06,-1.65966189576168e-07,1.06151198941984e-10,8.25688475925104e-10,-3.725393164095e-06,-2.68827928642933e-09,4.39145247922422e-09,-1.22449793368684e-09,1.1080546202744e-09,1.92120624918622e-10,-1.35742111984917e-09 +5.156,-1.91696202234137e-06,-8.66441002812801e-07,1.20641130656879e-06,5.42926974211877e-10,2.96465012955549e-09,0.0799991535672538,-4.48430875765687e-09,3.81801187887511e-09,1.46634180492306e-09,1.08532974274477e-10,8.26108279006107e-10,-1.85483919890019e-09,5.87036791790113e-05,2.99296941397993e-05,-3.23576510637665e-05,1.21604115665358e-09,1.60895602351e-10,5.44923993083538e-05 +5.158,-1.46985235684183e-08,1.47002777312055e-08,4.86560121359947e-09,5.43208963921238e-10,2.96663389687257e-09,0.0799999926114984,-3.66500203883389e-07,-1.25340000531313e-06,-2.95396793831249e-07,1.11015363568599e-10,8.26332058334508e-10,-3.50742356686156e-06,-2.405736200777e-09,3.96427682368793e-09,-1.61199178997e-09,1.25984292443418e-09,1.48318857241883e-10,-1.19002030462304e-09 +5.16,-1.91842802315691e-06,-8.71454602834054e-07,1.20522971939346e-06,5.43371035666151e-10,2.96795545778883e-09,0.0799991395375596,-4.49393170245998e-09,3.83386898616986e-09,1.45989383776318e-09,1.13572345972214e-10,8.26701554435074e-10,-1.85959928011868e-09,6.27368765661611e-05,6.90462075534649e-05,-2.78340607940772e-05,1.27892488267035e-09,1.60028240704761e-10,0.000138761148404778 +5.162,-1.47164992952281e-08,1.47156132071502e-08,4.87144078895052e-09,5.43663253305127e-10,2.96994070309031e-09,0.07999999260406,-1.15552697618772e-07,-9.77215175099296e-07,-4.06733037007545e-07,1.1613106309928e-10,8.26972171297327e-10,-2.95237897324251e-06,-2.09565437894786e-09,3.3627614579682e-09,-1.74404761474123e-09,1.27719015918162e-09,1.5395670844705e-10,-1.02435421246112e-09 +5.164,-1.91889023394738e-06,-8.75363463534451e-07,1.20360278724543e-06,5.43835559918548e-10,2.97126334647402e-09,0.0799991277280437,-4.50231431997577e-09,3.84732003200174e-09,1.45291764730421e-09,1.1868110660894e-10,8.27317381268862e-10,-1.86369669696852e-09,5.96699389118008e-05,9.50834480595627e-05,-2.0925113421486e-05,1.22644949750888e-09,1.91253263180487e-10,0.000196591381195053 +5.166,-1.4734508552508e-08,1.47310024872782e-08,4.87725245953974e-09,5.44137977731562e-10,2.97324997261539e-09,0.0799999925966052,1.23127058028458e-07,-5.96881382861003e-07,-4.90433490693499e-07,1.21036861089316e-10,8.27737184350049e-10,-2.16601344846221e-06,-1.77982628660202e-09,2.75127143311294e-09,-1.67118922858853e-09,1.17137202715993e-09,1.74773390250578e-10,-8.3526935378624e-10 +5.168,-1.91839772571527e-06,-8.77750989065895e-07,1.20164105328266e-06,5.44319707362906e-10,2.97457429521142e-09,0.0799991190639899,-4.50943362512218e-09,3.85832511773419e-09,1.44623289038986e-09,1.2336659471758e-10,8.28016474829865e-10,-1.86703777438367e-09,5.07862624567729e-05,0.0001075277167653,-1.25677929435236e-05,1.11109038637011e-09,1.67400815477741e-10,0.000226037745812354 +5.17,-1.47525462870085e-08,1.47464357877491e-08,4.8830373911013e-09,5.44631444110433e-10,2.97656203851471e-09,0.0799999925891371,3.26272107855527e-07,-1.66770515799848e-07,-5.40704662467588e-07,1.25481222634796e-10,8.2840678761196e-10,-1.2618624652129e-06,-1.51528095601548e-09,2.08166817095795e-09,-1.43179738906465e-09,9.97465998679814e-10,2.16406753582144e-10,-6.25367812986e-10 +5.172,-1.91709263728385e-06,-8.78418071129095e-07,1.19947823463279e-06,5.44821632253445e-10,2.97788792236187e-09,0.07999911401654,-4.51549474894624e-09,3.86665179041802e-09,1.4405057008336e-09,1.27356458712299e-10,8.28882101844193e-10,-1.86953924563561e-09,3.78445719857121e-05,0.000107394601458323,-3.76394011441764e-06,9.07694058797693e-10,2.43728648328702e-10,0.000228545895750184 +5.174,-1.47706082660043e-08,1.47619023949108e-08,4.88879941390463e-09,5.45140869945282e-10,2.97987756692208e-09,0.0799999925816589,4.77650395798392e-07,2.62807890033493e-07,-5.5576042292526e-07,1.29111998869987e-10,8.29381702205274e-10,-3.4767888221206e-07,-1.29475423463289e-09,1.53826604253712e-09,-9.94647072958216e-10,7.93635990266454e-10,2.28549818005957e-10,-5.49907341988397e-10 +5.176,-1.91518203570065e-06,-8.7736683956896e-07,1.19725519294109e-06,5.45338080248925e-10,2.98120544917069e-09,0.0799991126258245,-4.52067376588477e-09,3.87280485458817e-09,1.43652711254177e-09,1.30531002673365e-10,8.29796301116217e-10,-1.87173887500357e-09,2.28148031066574e-05,9.68618913376266e-05,4.53409163510069e-06,6.49653941760624e-10,2.49366499717757e-10,0.000208315902722216 +5.178,-1.47886909610678e-08,1.47773936143292e-08,4.8945455223548e-09,5.45662993955975e-10,2.98319675212655e-09,0.079999992574172,5.68909608225012e-07,6.50255455383957e-07,-5.37624056384859e-07,1.3171061463703e-10,8.30379168204145e-10,4.85584728676711e-07,-1.16367419147777e-09,1.07205910793851e-09,-5.16730755486316e-10,5.42101086235509e-10,2.75821032634253e-10,-5.03937169667403e-10 +5.18,-1.91290639726775e-06,-8.74765817747425e-07,1.19510469671555e-06,5.45864922707473e-10,2.9845269658435e-09,0.0799991145681634,-4.52532846265068e-09,3.87709309101992e-09,1.43446018951982e-09,1.32699407018307e-10,8.30899585246754e-10,-1.87375462368223e-09,7.61780634229437e-06,7.88184417905587e-05,1.15238821090097e-05,4.34981911593775e-10,3.40005801245301e-10,0.000171349483213336 +5.182,-1.48067922749184e-08,1.47929019866933e-08,4.90028336311288e-09,5.46193791584049e-10,2.98652035046754e-09,0.0799999925666769,5.99380833594193e-07,9.65529222546227e-07,-4.91528527948815e-07,1.33450542283405e-10,8.31739191409127e-10,1.17098266153013e-06,-1.10447675336212e-09,7.87998139177857e-10,9.32413876299043e-12,3.00974523089342e-10,3.90746463009899e-10,-3.7296554743899e-10 +5.184,-1.91050887393338e-06,-8.7090370085724e-07,1.19313858260375e-06,5.46398724876607e-10,2.98785392260914e-09,0.0799991192520941,-4.52974636966413e-09,3.88024508357663e-09,1.43449748607487e-09,1.33903305110664e-10,8.32462571098794e-10,-1.87524648587199e-09,-6.09327518993478e-06,5.64096868175373e-05,1.66282404512094e-05,1.73038666736137e-10,3.40439482206679e-10,0.000124406165924555 +5.186,-1.48249112603971e-08,1.48084229670276e-08,4.90602135305718e-09,5.46729404804491e-10,2.98985020075193e-09,0.079999992559176,5.75007732834456e-07,1.19116796981635e-06,-4.25015566143985e-07,1.34142696950349e-10,8.33100949337953e-10,1.66860732522829e-06,-1.12464291326787e-09,6.30138302433164e-10,5.05671893167627e-10,7.19910242456008e-11,3.78603398585709e-10,-4.38885039318059e-10 +5.188,-1.90820884300204e-06,-8.66139028977975e-07,1.19143852033918e-06,5.46935295664408e-10,2.99118632640649e-09,0.0799991259265234,-4.5342449413172e-09,3.88276563678637e-09,1.43652017364754e-09,1.34191269207647e-10,8.33976984693137e-10,-1.87700202602926e-09,-1.70845822298624e-05,3.26442740026343e-05,1.95353509844563e-05,-2.38524478021231e-11,4.45823933279693e-10,7.40546322179921e-05 +5.19,-1.48430482401624e-08,1.48239540295747e-08,4.91176743375177e-09,5.47266169881322e-10,2.9931861086907e-09,0.079999992551668,5.06669403914999e-07,1.3217450658269e-06,-3.46874162206151e-07,1.34047287159141e-10,8.34884245071072e-10,1.9648258541003e-06,-1.20964436409361e-09,6.80878964536301e-10,9.69927263585247e-10,-1.14925430276012e-10,4.19803081232688e-10,-4.53630189072109e-10 +5.192,-1.90618216538638e-06,-8.60852048714666e-07,1.19005102369035e-06,5.47471484813045e-10,2.99452586338678e-09,0.0799991337858268,-4.53908351877358e-09,3.88548915264451e-09,1.44039988270188e-09,1.33731567486543e-10,8.35656197018067e-10,-1.87881654678555e-09,-2.46169671018948e-05,1.01000414629772e-05,2.02041311198599e-05,-1.95156391039994e-10,4.09828421245965e-10,2.59524207680865e-05 +5.194,-1.48612045742375e-08,1.48394959861853e-08,4.91752903328257e-09,5.47801096151268e-10,2.99652873347878e-09,0.0799999925441527,4.0820153550743e-07,1.36214523167881e-06,-2.6605763772672e-07,1.33266661594981e-10,8.36523558756056e-10,2.06863553717263e-06,-1.33671285820544e-09,7.74554031808042e-10,1.35048222596801e-09,-2.57606436189984e-10,4.57966997611502e-10,-5.31692745282622e-10 +5.196,-1.90454935924435e-06,-8.55403467787952e-07,1.18898679313945e-06,5.48004551459425e-10,2.9978719576218e-09,0.0799991420603689,-4.5444303702064e-09,3.88858736877174e-09,1.44580181160576e-09,1.32701141741783e-10,8.37488065008513e-10,-1.88094331776668e-09,-2.84476443053277e-05,-9.25677243198276e-06,1.88355316586947e-05,-3.00540842220315e-10,5.26488574912399e-10,-1.55971346950115e-05 +5.198,-1.48793822957183e-08,1.48550503356604e-08,4.923312240529e-09,5.48331900718235e-10,2.99987868573881e-09,0.0799999925366289,2.94410958286107e-07,1.32511814195087e-06,-1.90715511091933e-07,1.320644982261e-10,8.38629513055706e-10,2.00624699839258e-06,-1.49197060980963e-09,1.01307851018624e-09,1.59746348102036e-09,-3.49980461270953e-10,5.09141340245665e-10,-6.04551131482385e-10 +5.2,-1.9033717154112e-06,-8.50102995220148e-07,1.18822393109508e-06,5.48532809452329e-10,3.00122647567402e-09,0.0799991500853569,-4.55039825264564e-09,3.89263968281249e-09,1.45219166552984e-09,1.31301219896699e-10,8.39524630369496e-10,-1.88336152229261e-09,-2.87726350991263e-05,-2.41468338379331e-05,1.58204389259021e-05,-3.78169717755696e-10,4.831204881062e-10,-4.78184280365936e-05 +5.202,-1.48975838887289e-08,1.48706208943916e-08,4.92912100719112e-09,5.48857105597822e-10,3.00323678426029e-09,0.0799999925290955,1.79320417889614e-07,1.22853080659915e-06,-1.27433755388332e-07,1.30551819355077e-10,8.4056199500813e-10,1.81497328624622e-06,-4.40799740456216e-08,2.51877511900982e-08,7.83314385569266e-09,2.82499718062094e-09,7.05858982370302e-09,-1.23998034061776e-08 +5.204,-1.90265443373965e-06,-8.45188871993752e-07,1.18771419607352e-06,5.49055016729749e-10,3.00458872365406e-09,0.0799991573452501,-4.72671814882811e-09,3.99339068757287e-09,1.48352424095261e-09,1.42601208619182e-10,8.67758989664305e-10,-1.93296073591732e-09,-0.0147638065377665,0.00114715038943664,0.0138063804640147,1.01581069944417e-08,1.23560016384644e-08,0.0182667388810453 +5.206,-1.49164907613242e-08,1.48865944571419e-08,4.93505510415493e-09,5.49427510432299e-10,3.00670782021895e-09,0.0799999925213636,-5.88759057331832e-05,5.81713236434624e-06,5.50980881006768e-05,1.71184247332848e-10,8.89986001561993e-10,7.48819288104357e-05,-4.96008399286498e-08,1.70774852594753e-08,-1.61214357834736e-08,1.70119994480434e-08,9.21008061487802e-09,-5.27442672881474e-09 +5.208,-2.1381580566724e-06,-8.21920342536364e-07,1.40810654847626e-06,5.49739753719081e-10,3.0081486676603e-09,0.0799994568729653,-4.92512150854273e-09,4.06170062861078e-09,1.4190384978187e-09,2.10649206411363e-10,9.04599312123821e-10,-1.95405844283258e-09,0.0377484605090021,0.0108066099705997,-0.0281963715041373,1.98617164382103e-08,4.50117373934121e-09,-0.0125152911948839 +5.21,-1.49361912473583e-08,1.49028412596564e-08,4.9407312581462e-09,5.50270107257944e-10,3.01032621746744e-09,0.0799999925135474,9.21179363028085e-05,4.90435722467401e-05,-5.76873979158601e-05,2.50631113085681e-10,9.07990696519356e-10,2.48207640309056e-05,5.43372855393811e-08,-4.27852198117173e-08,-5.21759285083366e-08,1.71889412425735e-08,-7.85352685666621e-09,2.23909432662791e-08 +5.212,-1.76968631146121e-06,-6.25746053549425e-07,1.17735695681284e-06,5.50742278171423e-10,3.01178063044638e-09,0.0799995561560214,-4.70777236638523e-09,3.89055974936393e-09,1.21033478378538e-09,2.79404971381649e-10,8.7318520469716e-10,-1.86449466976747e-09,-0.0251677423444965,-0.016535946779395,0.0130690498627124,1.29805020898486e-08,-1.47941554840463e-08,-0.0173853599780257 +5.214,-1.49550223368239e-08,1.49184034986538e-08,4.94557259728134e-09,5.51387727143471e-10,3.01381895828623e-09,0.0799999925060894,-8.55303307518888e-06,-1.71002148708474e-05,-5.41119846500455e-06,3.02553121445081e-10,8.48814074583165e-10,-4.47206758812052e-05,5.20039740434403e-08,-3.58818877386263e-08,-4.568481010152e-08,9.5739388639315e-09,-1.15901212238215e-08,1.52378110128767e-08 +5.216,-1.80389844376197e-06,-6.94146913032823e-07,1.15571216295282e-06,5.51952490657204e-10,3.01517588674471e-09,0.0799993772733179,-4.49975647021144e-09,3.74703219840941e-09,1.02759554337928e-09,3.17700726837379e-10,8.26824719801869e-10,-1.80354342571596e-09,0.00352313943264549,-0.00176388484417681,-0.00324103726647496,5.54504359097788e-09,-1.00227985632801e-08,-0.00598043510286991 +5.218,-1.49730213627047e-08,1.49333916274474e-08,4.94968297945486e-09,5.5265853005082e-10,3.01712625716544e-09,0.0799999924988752,5.53952465539151e-06,-2.41557542475539e-05,-1.83753475309029e-05,3.2473329580899e-10,8.08722880330049e-10,-6.86424162926822e-05,2.3291590011104e-08,-1.23507974682939e-08,-2.34044554570671e-08,1.76551481765775e-09,-8.81196157713908e-09,3.03576608305953e-09 +5.22,-1.78174034514041e-06,-7.90769930023028e-07,1.08221077282922e-06,5.5325142384044e-10,3.01841077826603e-09,0.0799991027036527,-4.40659011016704e-09,3.69762900853624e-09,9.33977721551022e-10,3.2476278610801e-10,7.91576873493316e-10,-1.79140036138372e-09,-0.00545414965112327,-0.00160403455188276,0.00433028318758138,-1.33226762956791e-09,-7.09762110200241e-09,0.00342634971784188 +5.222,-1.49906477231454e-08,1.49481821434816e-08,4.95341889034107e-09,5.53957581195252e-10,3.02029256465941e-09,0.0799999924917096,-1.6277073949104e-05,-3.05718924550856e-05,-1.05421478057548e-06,3.19404225290718e-10,7.80332395922036e-10,-5.49370174213131e-05,-9.1072982513236e-10,8.69616878527704e-09,3.48245737854159e-10,-3.46944695193558e-09,-3.40179273634656e-09,-5.34208094436996e-09 +5.224,-1.84684864093683e-06,-9.13057499843384e-07,1.07799391370691e-06,5.54529040741603e-10,3.02153210784972e-09,0.0799988829555831,-4.41023302946757e-09,3.73241368367735e-09,9.35370704502439e-10,3.10884998300266e-10,7.77969702547928e-10,-1.8127686851612e-09,0.00227546014354996,0.00386609812262891,0.000358777546517426,-5.14518982973061e-09,-5.50774703579425e-10,0.00748967537034794 +5.226,-1.50082886552633e-08,1.49631117982163e-08,4.95716037315908e-09,5.55201121188453e-10,3.0234044434696e-09,0.0799999924844586,-7.17523337490515e-06,-1.51074999645717e-05,3.80895405494061e-07,2.98823465971798e-10,7.78129297107718e-10,-2.49783159399247e-05,-1.37855222026912e-08,2.12520973039847e-08,1.88553599816435e-08,-6.47008488454174e-09,1.49403059364184e-09,-8.92428492206208e-09 +5.228,-1.87554957443645e-06,-9.73487499701664e-07,1.07951749532889e-06,5.5572433460549e-10,3.02464462503815e-09,0.0799987830423193,-4.46537511827833e-09,3.81742207289328e-09,1.010792144429e-09,2.85004658762102e-10,7.83945824922495e-10,-1.84846582484945e-09,-0.000305989241539703,0.00259377176421048,0.0016932055809517,-7.50267903361461e-09,3.1112265541205e-09,0.00631634501126185 +5.23,-1.50261501557364e-08,1.49783814865079e-08,4.96120354173679e-09,5.56341139823502e-10,3.02654022676929e-09,0.0799999924770647,-8.3991903410641e-06,-4.73241290772866e-06,7.1537177293016e-06,2.68812749837336e-10,7.90574203324202e-10,2.87064105125546e-07,-1.78355594185034e-08,2.52415276182814e-08,3.01043912021575e-08,-8.30412127948514e-09,4.59745089225104e-09,-9.40046651642087e-09 +5.232,-1.90914633580071e-06,-9.92417151332581e-07,1.1081323662461e-06,5.56799585604839e-10,3.02780692185145e-09,0.0799987841905757,-4.53671735595235e-09,3.91838818336642e-09,1.13120970923765e-09,2.51788173644157e-10,8.02335628491501e-10,-1.88606769091514e-09,0.000934705231074844,0.00230590147887549,0.000337714849358558,-8.86747272831148e-09,5.55588561272984e-09,0.00375835208874743 +5.234,-1.50442970251602e-08,1.49940550392413e-08,4.96572838057374e-09,5.57348292518078e-10,3.02974956928326e-09,0.0799999924695204,-4.66036941676513e-06,4.49119300777228e-06,8.50457712673568e-06,2.33342858924094e-10,8.12797745775119e-10,1.53204724601136e-05,-1.69470557376518e-08,2.30557760381211e-08,3.48221885353921e-08,-9.34452168423202e-09,5.90326398870451e-09,-8.1245773996327e-09 +5.236,-1.92778781346777e-06,-9.74452379301494e-07,1.14215067475304e-06,5.57732957040535e-10,3.03105811283455e-09,0.0799988454724656,-4.60450557890295e-09,4.01061128751889e-09,1.2704984633792e-09,2.14410086907233e-10,8.25948684446317e-10,-1.91856600051366e-09,0.000244224215503945,0.000971362140895582,0.000119229620316867,-9.6775885916164e-09,5.91020288260654e-09,0.0016961877874465 +5.238,-1.50627150474758e-08,1.50100974843914e-08,4.97081037442726e-09,5.58205932865707e-10,3.03305336402104e-09,0.0799999924618462,-3.68347255474924e-06,8.37664157135504e-06,8.9814956080032e-06,1.94632504557624e-10,8.36438557305547e-10,2.21052236099004e-05,-1.37758728038563e-08,1.72687385227028e-08,3.44327431151686e-08,-9.80769285229196e-09,5.70854127861652e-09,-6.33174068742186e-09 +5.24,-1.94252170368676e-06,-9.4094581301607e-07,1.17807665718506e-06,5.58511487058766e-10,3.03440386706377e-09,0.07999893389336,-4.65960907011838e-09,4.07968624160971e-09,1.40822943583989e-09,1.75179315498061e-10,8.48782849560785e-10,-1.94389296326335e-09,0.000574183065893677,0.000489877095052761,-0.00049510599960073,-9.74654384976703e-09,5.4014952233704e-09,0.000489325240918217 +5.242,-1.50813534837563e-08,1.50264162293579e-08,4.97644329217062e-09,5.589066501277e-10,3.03644849541929e-09,0.0799999924540706,-1.38674029117479e-06,1.03361499515659e-05,7.0010716096005e-06,1.5564632915856e-10,8.58044538199027e-10,2.4062524573573e-05,-9.77820255295361e-09,1.00618298413081e-08,3.05890295731243e-08,-9.55442322482097e-09,4.77265796323408e-09,-4.19109191785196e-09 +5.244,-1.94806866485146e-06,-8.99601213209811e-07,1.20608094362346e-06,5.591340723754e-10,3.03783604521657e-09,0.0799990301434583,-4.69872188033019e-09,4.11993356097494e-09,1.53058555413238e-09,1.36961622598782e-10,8.6787348141372e-10,-1.96065733093476e-09,0.000403894719644228,6.35617695623705e-05,-0.000593556676032037,-9.11553818539573e-09,4.24009785610773e-09,-0.000139272558764752 +5.246,-1.51001483712776e-08,1.50428959636018e-08,4.98256563438715e-09,5.59454496618095e-10,3.03991998934494e-09,0.079999992446228,2.28838587402305e-07,1.05903970298154e-05,4.62684490547209e-06,1.19184176416973e-10,8.75004929623459e-10,2.3505434338514e-05,-5.73130952445383e-09,3.05614908403072e-09,2.46352417633006e-08,-8.55739090698597e-09,3.48766154849953e-09,-2.16753698334186e-09 +5.248,-1.94715331050185e-06,-8.57239625090545e-07,1.22458832324535e-06,5.59610809081068e-10,3.04133606493506e-09,0.0799991241651956,-4.72164711842801e-09,4.13215815731106e-09,1.62912652118559e-09,1.02732058970834e-10,8.81824127607719e-10,-1.96932747886813e-09,0.00040720598030671,-9.48041003334555e-05,-0.000646530880048121,-7.81926606796056e-09,3.00063793262012e-09,-0.000508876957064559 +5.25,-1.51190349597513e-08,1.5059424596231e-08,4.98908214047189e-09,5.59865424853978e-10,3.04344728585537e-09,0.0799999924383507,1.85766250862896e-06,1.02111806284816e-05,2.04072138527989e-06,8.79071121451344e-11,8.87007481353939e-10,2.1469926510256e-05,-2.12286785346443e-09,-2.84798226691437e-09,1.77217181900541e-08,-6.95450641519671e-09,2.31542215951111e-09,-3.62557206369901e-10 +5.252,-1.93972266046734e-06,-8.16394902576623e-07,1.23275120878646e-06,5.59962437529649e-10,3.04488409486048e-09,0.0799992100449017,-4.73013858984186e-09,4.1207662282434e-09,1.7000133939458e-09,7.491403331005e-11,8.91085816245763e-10,-1.97077770769361e-09,0.00025509060857539,-0.000253105387343866,-0.000524297072554063,-5.97482133213666e-09,1.84140896969972e-09,-0.000790247219225786 +5.254,-1.51379555141107e-08,1.5075907661144e-08,4.99588219404767e-09,5.60165080987218e-10,3.04701162912036e-09,0.0799999924304675,2.87802494293064e-06,9.19875907910603e-06,-5.64669049365966e-08,6.40078268165851e-11,8.94373117232738e-10,1.83089376333525e-05,7.25764933999292e-10,-6.89682685938592e-09,1.05759585118215e-08,-4.92444626742499e-09,1.22905158277901e-09,9.38485400394056e-10 +5.256,-1.92821056069561e-06,-7.79599866260194e-07,1.23252534116672e-06,5.60218468836915e-10,3.04846158732941e-09,0.0799992832806522,-4.72723553010587e-09,4.09317892080586e-09,1.74231722799309e-09,5.52162482403479e-11,8.96002022576879e-10,-1.96702376609203e-09,0.000134845195881946,-0.000377319085264049,-0.000394434177810897,-3.78906975239962e-09,7.70650904252516e-10,-0.00102189951986441 +5.258,-1.51568644562311e-08,1.50922803768272e-08,5.00285146295965e-09,5.6038594598018e-10,3.05059563721066e-09,0.0799999924225994,3.41740572645837e-06,7.68948273804999e-06,-1.63420361618001e-06,4.88515478069882e-11,8.97455720849748e-10,1.42213395538953e-05,2.60306099618274e-09,-9.03617458659042e-09,3.95408532295793e-09,-2.69532660080202e-09,3.17454396054031e-10,1.95503335753506e-09 +5.26,-1.91454093778978e-06,-7.48841935307998e-07,1.225988526702e-06,5.60413875028143e-10,3.05205141021281e-09,0.0799993401660104,-4.71682328612114e-09,4.0570342224595e-09,1.75813356928492e-09,4.44349418371409e-11,8.97271840161095e-10,-1.95920363266189e-09,-1.00091285088409e-05,-0.000498539827042575,-0.000244740815937901,-1.61112442831581e-09,-8.67361742969485e-12,-0.00118579043372671 +5.262,-1.51757317493756e-08,1.5108508513717e-08,5.00988399723679e-09,5.60563685747528e-10,3.05418472457131e-09,0.0799999924147626,3.377369212423e-06,5.69532342987947e-06,-2.61316687993172e-06,4.24070500937243e-11,8.97421026380029e-10,9.4781778189879e-06,3.4836500001514e-09,-9.27643378756077e-09,-1.82276069228508e-09,-5.39065320157325e-10,-3.46077333407574e-10,2.19962936742988e-09 +5.264,-1.90103146094009e-06,-7.26060641588477e-07,1.21553585918227e-06,5.60583503228518e-10,3.05564109431833e-09,0.0799993780787217,-4.70288868612053e-09,4.01992848730925e-09,1.75084252651578e-09,4.22786805565114e-11,8.95887530827465e-10,-1.95040511519217e-09,-0.000123119226077078,-0.000579353725583909,-0.000117389420233209,4.67074295909212e-10,-5.95010152210376e-10,-0.00126207836022271 +5.266,-1.51945433041201e-08,1.51245882276663e-08,5.01688736734285e-09,5.60732800469754e-10,3.05776827469462e-09,0.079999992406961,2.88489230811474e-06,3.37790852754409e-06,-3.08272456086451e-06,4.42753472773609e-11,8.95040985771188e-10,4.4298643780976e-06,3.43551142421576e-09,-7.80321987603584e-09,-6.332824889585e-09,1.39385031294501e-09,-8.20524204186751e-10,2.11983208775184e-09 +5.268,-1.88949189170763e-06,-7.12549007478303e-07,1.20320496093881e-06,5.60760604617627e-10,3.05922125826141e-09,0.0799993957981792,-4.68914664042367e-09,3.98871560780511e-09,1.72551122695744e-09,4.78540818082908e-11,8.92605434010718e-10,-1.94192578684116e-09,-0.000209695452517015,-0.000608624150209898,-8.30475120079021e-06,2.21394083621245e-09,-1.02261948913777e-09,-0.00124541269744951 +5.27,-1.52132998906818e-08,1.51405430900975e-08,5.02378941225068e-09,5.60924216796987e-10,3.06133869643066e-09,0.0799999923991933,2.04611049804659e-06,9.43411926704224e-07,-3.11594356566767e-06,5.31311106222117e-11,8.90950507814636e-10,-5.51786411700999e-07,2.655753221243e-09,-5.2917739632458e-09,-9.52818553214128e-09,2.94816254742523e-09,-1.08767161938791e-09,1.62023172645462e-09 +5.272,-1.88130744971544e-06,-7.08775359771485e-07,1.19074118667614e-06,5.60973129060116e-10,3.06278506029267e-09,0.0799993935910336,-4.67852362753869e-09,3.96754851195213e-09,1.68739848482887e-09,5.96467319979931e-11,8.88254747533166e-10,-1.93544485993534e-09,-0.000253066778578675,-0.000575314490925618,7.29451369098175e-05,3.58654078658579e-09,-1.19999496445777e-09,-0.00113841413639682 +5.274,-1.52320139851919e-08,1.51564132841453e-08,5.03053900618999e-09,5.61162803724979e-10,3.06489171542079e-09,0.0799999923914515,1.033843383732e-06,-1.35784603699799e-06,-2.82416301802844e-06,6.74772737685533e-11,8.86150527956806e-10,-5.10544295728777e-06,1.36728735998115e-09,-2.04957578708685e-09,-1.12906645839232e-08,4.09524844590893e-09,-1.18741821935542e-09,8.33534630314274e-10 +5.276,-1.87717207618052e-06,-7.14206743919477e-07,1.17944453460403e-06,5.6124303815519e-10,3.0663296624045e-09,0.0799993731692617,-4.67305447809877e-09,3.95935020880378e-09,1.64223582649318e-09,7.6027725781627e-11,8.83505074655745e-10,-1.93211072141409e-09,-0.000255103732951269,-0.00048486298006074,0.000126847029191305,4.44956571587577e-09,-1.21864324192263e-09,-0.000944688739560666 +5.278,-1.52507062031043e-08,1.51722506849805e-08,5.03710794949597e-09,5.61466914628106e-10,3.06842573571942e-09,0.0799999923837231,1.34284519268098e-08,-3.29729795724117e-06,-2.31677490126316e-06,8.52755366320583e-11,8.81275954989115e-10,-8.88419791553086e-06,-1.25875872484874e-10,1.35004854539883e-09,-1.18041427326275e-08,4.72928987638598e-09,-1.16356577146241e-09,-3.12250226749057e-11 +5.28,-1.87711836237281e-06,-7.27395935748443e-07,1.17017743499898e-06,5.61584140301719e-10,3.06985476622446e-09,0.0799993376324701,-4.67355798158871e-09,3.96475040298538e-09,1.59501925556267e-09,9.49448852871731e-11,8.78850811569895e-10,-1.93223562150479e-09,-0.000217901615154384,-0.000348802426178556,0.00015238000292986,4.87023615881069e-09,-1.09591155589966e-09,-0.000671552494169811 +5.282,-1.52694004350307e-08,1.51881096865925e-08,5.04348802651822e-09,5.61846694169255e-10,3.07194113896569e-09,0.0799999923759941,-8.5817800869063e-07,-4.69250766195524e-06,-1.70725488954378e-06,1.04756481267299e-10,8.76892308765517e-10,-1.15704078922098e-05,-1.59735506046354e-09,4.36109481838552e-09,-1.11605603232198e-08,4.93095148045879e-09,-9.2417393187542e-10,-8.77770078736931e-10 +5.284,-1.88055107440757e-06,-7.46165966396262e-07,1.1633484154408e-06,5.62003166226788e-10,3.07336233545952e-09,0.0799992913508385,-4.67994740183056e-09,3.98219478225892e-09,1.55037701426979e-09,1.14668691209006e-10,8.75154115842393e-10,-1.93574670181973e-09,-0.000152436625930433,-0.000185119898142964,0.000153431798299566,4.85505732838318e-09,-8.59989163263977e-10,-0.000337983937711398 +5.286,-1.5288120224638e-08,1.52040384657215e-08,5.0496895345753e-09,5.62305368934091e-10,3.07544175542906e-09,0.0799999923682512,-1.46792451241243e-06,-5.43298725452718e-06,-1.09352769634545e-06,1.24176710580834e-10,8.7345235211246e-10,-1.29223436430556e-05,-2.84212757521333e-09,6.70427255400251e-09,-9.69710423062427e-09,4.67941657645379e-09,-6.69169580809485e-10,-1.54390389372682e-09 +5.288,-1.88642277245722e-06,-7.67897915414373e-07,1.15897430465542e-06,5.62499873069111e-10,3.07685614486797e-09,0.0799992396614639,-4.69131591213142e-09,4.00901187247493e-09,1.51158859734729e-09,1.33386357514823e-10,8.72477437519155e-10,-1.94192231739464e-09,-7.22640285285711e-05,-1.3845896218056e-05,0.000135657366416544,4.44913203501939e-09,-5.44269490539367e-10,2.17382804458357e-05 +5.29,-1.53068854882865e-08,1.52200745132114e-08,5.05573588896469e-09,5.6283891436415e-10,3.07893166517914e-09,0.0799999923604835,-1.75698062652668e-06,-5.4883708393994e-06,-5.50898230679336e-07,1.41973238720909e-10,8.71275274150303e-10,-1.28353905212722e-05,-3.72629444635486e-09,8.15189929426136e-09,-7.56924904707421e-09,4.13384604324532e-09,-3.91180143881203e-10,-2.02008548766716e-09 +5.292,-1.89345069496333e-06,-7.89851398771968e-07,1.1567707117327e-06,5.63067766023995e-10,3.08034124596457e-09,0.0799991883199019,-4.70622108991683e-09,4.04161946965197e-09,1.481311601159e-09,1.49921741687803e-10,8.70912716943631e-10,-1.95000265934531e-09,7.55545561020738e-06,0.000144749712650405,0.000106445253869956,3.72488498378248e-09,-2.0903417890352e-10,0.000363050523672435 +5.294,-1.53257103726462e-08,1.523624099109e-08,5.06166113536932e-09,5.63438601330901e-10,3.08241531604692e-09,0.0799999923526835,-1.72675880408585e-06,-4.90937198879771e-06,-1.25117215199463e-07,1.56872778656041e-10,8.70439137434689e-10,-1.13831884265823e-05,-4.18382776366565e-09,8.64716284709983e-09,-5.18400426743993e-09,3.30638294522011e-09,-2.6020852091285e-11,-2.26207941278207e-09 +5.296,-1.90035773017967e-06,-8.09488886727161e-07,1.1562702428719e-06,5.63695257138619e-10,3.08382300251431e-09,0.0799991427871481,-4.7229564009715e-09,4.07620812104038e-09,1.46057558408924e-09,1.63147273468685e-10,8.70808633535265e-10,-1.95905097699644e-09,7.45050319181966e-05,0.000273248197939706,7.28130240563404e-05,2.84104337279035e-09,1.18394877283768e-10,0.000641803768984049 +5.298,-1.53446021982501e-08,1.52525458235742e-08,5.06750343770568e-09,5.64091190424776e-10,3.08589855058106e-09,0.0799999923448473,-1.4287386764131e-06,-3.81637919703901e-06,1.66134881025866e-07,1.68236952147201e-10,8.70912716943824e-10,-8.8159733506464e-06,-4.232616860904e-09,8.21261461591684e-09,-2.65282587571863e-09,2.30197805261216e-09,2.74953670893964e-10,-2.21437451697566e-09 +5.3,-1.90607268488532e-06,-8.24754403515315e-07,1.15693478239601e-06,5.64368204947208e-10,3.08730665338208e-09,0.0799991075232547,-4.73988686841511e-09,4.10905857950404e-09,1.44996428058636e-09,1.72355185679132e-10,8.71908448218841e-10,-1.96790847506434e-09,0.000120213852869648,0.000359320155660918,4.05797656761836e-05,1.79673984023324e-09,4.37583996766685e-10,0.000824847922603927 +5.302,-1.53635617457237e-08,1.52689820578922e-08,5.07330329482802e-09,5.64780611167492e-10,3.08938618437393e-09,0.0799999923369756,-9.47883264934451e-07,-2.37909857439518e-06,3.28453943730619e-07,1.75423911508135e-10,8.72663052930891e-10,-5.51658166023033e-06,-3.92101715705685e-09,7.04861516399089e-09,-2.66930574785406e-10,1.27849120180447e-09,5.36896915863229e-10,-2.03136119047801e-09 +5.304,-1.90986421794506e-06,-8.34270797812897e-07,1.15824859817093e-06,5.6506990059324e-10,3.09079730559381e-09,0.0799990854569281,-4.75557093704334e-09,4.13725304016001e-09,1.44889655828722e-09,1.77469150486351e-10,8.74056035882294e-10,-1.97603391982625e-09,0.000141360732906575,0.000397338144591347,1.36822562828366e-05,7.44630052072943e-10,6.66567495692681e-10,0.000896422036426761 +5.306,-1.53825840294719e-08,1.52855310700528e-08,5.07909888106117e-09,5.65490487769438e-10,3.09288240851746e-09,0.0799999923290715,-3.82440333308213e-07,-7.89745996029965e-07,3.83182968861959e-07,1.78402431716426e-10,8.75329322913661e-10,-1.93089351452368e-06,-3.37924133093891e-09,5.41146988307988e-09,1.89019806743079e-09,2.58040117041698e-10,7.50701584180449e-10,-1.74513181672295e-09 +5.308,-1.91139397927829e-06,-8.37429781797017e-07,1.15978133004638e-06,5.65783510320106e-10,3.09429862288546e-09,0.079999077733354,-4.7690879023671e-09,4.15889891969232e-09,1.45645735055694e-09,1.78501310954517e-10,8.77058842219016e-10,-1.98301444709315e-09,0.000139083014094415,0.000388531632648055,-5.83662805588634e-06,-2.12069944948022e-10,8.52616588393831e-10,0.000859314417365945 +5.31,-1.54016603810814e-08,1.53021666657316e-08,5.0849247104634e-09,5.66204493013256e-10,3.09639064388634e-09,0.0799999923211394,1.73891723069511e-07,7.64380534562429e-07,3.59836456638411e-07,1.77554151936634e-10,8.78739789267237e-10,1.50636415494049e-06,-2.7038917982262e-09,3.54317269991364e-09,3.61798264966494e-09,-6.72639027800096e-10,8.85576334534839e-10,-1.27068494626309e-09 +5.312,-1.91069841238602e-06,-8.34372259658767e-07,1.16122067587293e-06,5.66493726927852e-10,3.09781358204253e-09,0.0799990837588107,-4.77990346956e-09,4.17307161049198e-09,1.4709292811556e-09,1.75810754843317e-10,8.80601147557156e-10,-1.9880971868782e-09,0.000117839369555666,0.00033993334189198,-1.76252484829059e-05,-1.06642125684712e-09,9.80552444844879e-10,0.000731806618775833 +5.314,-1.54207799949596e-08,1.53188589521736e-08,5.09080842758802e-09,5.66907736032629e-10,3.09991304847657e-09,0.079999992313187,6.45249201292124e-07,2.1241139021302e-06,2.89335462706795e-07,1.73288466909246e-10,8.82661999046616e-10,4.43359063004349e-06,-2.0152065777335e-09,1.73212139053101e-09,4.94201034254177e-09,-1.42637637813168e-09,9.98333360375778e-10,-9.22005527371346e-10 +5.316,-1.90811741558085e-06,-8.25875804050247e-07,1.16237801772376e-06,5.67186880795489e-10,3.10134423003872e-09,0.0799991014931732,-4.78796429587094e-09,4.1800000960541e-09,1.49069732252577e-09,1.70105249330791e-10,8.84594480998658e-10,-1.99178520898768e-09,8.39485422365694e-05,0.000262444212629182,-2.26005705036252e-05,-1.7221467307852e-09,9.69710423021813e-10,0.000542150835509591 +5.318,-1.54399318521431e-08,1.53355789525578e-08,5.09677121687813e-09,5.67588157029952e-10,3.10345142640056e-09,0.0799999923052199,9.81043370238439e-07,3.17389075264705e-06,1.98933180692284e-07,1.66399879986105e-10,8.86540840738704e-10,6.6021939720821e-06,-1.42746058056019e-09,1.69569220008945e-10,5.77684601552001e-09,-1.96674274087926e-09,1.02392053174441e-09,-5.28223298545514e-10 +5.32,-1.90419324209989e-06,-8.13180241039657e-07,1.16317375044653e-06,5.67852480315434e-10,3.10489039340167e-09,0.0799991279019491,-4.79367413819318e-09,4.18067837293414e-09,1.51380470658785e-09,1.62238278367273e-10,8.88690163125636e-10,-1.99389810218187e-09,4.42366793153587e-05,0.000168634560309069,-2.24650482678135e-05,-2.15192447194047e-09,1.09070738556988e-09,0.000322297670323373 +5.322,-1.54591065486959e-08,1.53523016660495e-08,5.10282643570448e-09,5.68237110143421e-10,3.10700618705306e-09,0.0799999922972443,1.15799008749985e-06,3.84842899388325e-06,1.0907298762104e-07,1.57792182098344e-10,8.90903670280983e-10,7.89138465337545e-06,-9.96490216465392e-10,-9.74480912862103e-10,6.14829367964674e-09,-2.28549817960845e-09,1.00917538210017e-09,-3.17454395993052e-10 +5.324,-1.8995612817499e-06,-7.97786525064126e-07,1.16361004239701e-06,5.68483649043827e-10,3.10845400808279e-09,0.0799991594674877,-4.79766009905904e-09,4.17678044928269e-09,1.53839788130644e-09,1.5309628564884e-10,8.92726864654037e-10,-1.99516791976584e-09,4.93668799409334e-06,7.07652625731507e-05,-1.92129704073441e-05,-2.36703018297858e-09,9.65807295200426e-10,0.00010224360247289 +5.326,-1.54782971890921e-08,1.53690087878466e-08,5.1089800272297e-09,5.68849495286017e-10,3.11057709451168e-09,0.0799999922892636,1.17773683947623e-06,4.13149004417588e-06,3.22211059916552e-08,1.48324061366428e-10,8.94766899461785e-10,8.30035906326705e-06,-7.59483622092363e-10,-1.63757896109031e-09,6.10102246509583e-09,-2.40129097161239e-09,9.70144103989577e-10,-1.76941794660353e-10 +5.328,-1.89485033439199e-06,-7.8126056488742e-07,1.16373892682098e-06,5.69076945289293e-10,3.11203307568064e-09,0.0799991926689239,-4.80069803354741e-09,4.17023013343833e-09,1.56280197116682e-09,1.43491121762389e-10,8.96607441069995e-10,-1.99587568694448e-09,-2.90375591409827e-05,-2.06478029116637e-05,-1.47155662221663e-05,-2.35792288471376e-09,9.36750677077339e-10,-9.40459611224507e-05 +5.33,-1.54974999812263e-08,1.53856897083804e-08,5.11523123511437e-09,5.69423459773066e-10,3.11416352427596e-09,0.0799999922812801,1.06158660291231e-06,4.04889883252924e-06,-2.66411588970035e-08,1.38892369827574e-10,8.98513902170094e-10,7.92417521877729e-06,-7.41485865496359e-10,-1.75814224313388e-09,5.64630807378326e-09,-2.25080371008786e-09,8.72132227497572e-10,-1.00613961495927e-10 +5.332,-1.89060398798034e-06,-7.65064969557305e-07,1.16363236218539e-06,5.69632514768603e-10,3.11562713128932e-09,0.0799992243656248,-4.80366397700939e-09,4.16319756446579e-09,1.58538720346195e-09,1.34487906922039e-10,9.00095969979985e-10,-1.99627814279046e-09,-5.44354946319224e-05,-9.76385461199466e-05,-1.04386974324844e-05,-2.14585293979054e-09,8.33100949287801e-10,-0.000250674144636582 +5.334,-1.55167146371343e-08,1.54023424986383e-08,5.12157278392822e-09,5.69961411400755e-10,3.11776390815588e-09,0.079999992273295,8.43844624384599e-07,3.65834464804941e-06,-6.8395948626946e-08,1.30308958068411e-10,9.01846305967246e-10,6.92147864023085e-06,-8.83733191059602e-10,-1.4324479100567e-09,4.9593575774712e-09,-2.00187089126977e-09,8.48713460671602e-10,-2.01227923324129e-10 +5.336,-1.8872286094828e-06,-7.50431590965106e-07,1.16335877839088e-06,5.70153750600877e-10,3.11923451651319e-09,0.0799992520515394,-4.80719890977363e-09,4.15746777282557e-09,1.60522463377184e-09,1.26480423356959e-10,9.03490823822672e-10,-1.99708305448376e-09,-6.96812151165131e-05,-0.000155046026364789,-7.31563616109529e-06,-1.7767905202624e-09,7.46798456458245e-10,-0.000359856446724122 +5.338,-1.55359434327734e-08,1.54189723697296e-08,5.12799368246331e-09,5.70467333094182e-10,3.12137787145117e-09,0.0799999922653067,5.65119763918577e-07,3.03816054259032e-06,-9.76584932713239e-08,1.23201795987362e-10,9.04833499793078e-10,5.48205285333452e-06,-1.17646777709718e-09,-7.74120351385519e-10,3.99550184595448e-09,-1.54607229797135e-09,6.6700117646293e-10,-3.46077333346466e-10 +5.34,-1.88496813042713e-06,-7.38278948794746e-07,1.1629681444178e-06,5.70646557784826e-10,3.12285385051236e-09,0.0799992739797508,-4.81190478088202e-09,4.15437129142002e-09,1.62120664115566e-09,1.20296134165074e-10,9.06158828528523e-10,-1.99846736381715e-09,-7.46581974844584e-05,-0.000190391691128182,-5.75274875478533e-06,-1.31838984174892e-09,6.37077196502108e-10,-0.000420489231975562 +5.342,-1.5555191051897e-08,1.54355898548952e-08,5.13447850902793e-09,5.70948517630843e-10,3.12500250676528e-09,0.0799999922573128,2.6648697398071e-07,2.27659377807751e-06,-1.20669488290468e-07,1.17928236620366e-10,9.07381808579087e-10,3.80009592543209e-06,-1.54563861736234e-09,1.64798730448355e-10,2.94490994099512e-09,-1.02955838298555e-09,5.75928194074616e-10,-5.81132364563214e-10 +5.344,-1.88390218253121e-06,-7.29172573682435e-07,1.16248546646464e-06,5.71118270731308e-10,3.12648337774668e-09,0.0799992891801345,-4.81808733535147e-09,4.15503048634182e-09,1.63298628091964e-09,1.16177900633132e-10,9.08462541304822e-10,-2.0007918932754e-09,-7.03849468942579e-05,-0.000203550600853726,-5.71900209481964e-06,-7.567731163885e-10,5.18682319367555e-10,-0.000436053617692996 +5.346,-1.55744634012384e-08,1.54522099768406e-08,5.14101045415161e-09,5.71413229233375e-10,3.1286363569305e-09,0.0799999922493096,-1.50528135962907e-08,1.46239137466269e-06,-1.43545496669744e-07,1.14901144154812e-10,9.09456537856557e-10,2.0558814546603e-06,-1.92348307393915e-09,1.17484147387464e-09,1.87675396048173e-09,-4.85722573279954e-10,5.03937169720834e-10,-7.7889084060252e-10 +5.348,-1.88396239378559e-06,-7.23323008183785e-07,1.16191128447796e-06,5.71577875307927e-10,3.13012120389811e-09,0.0799992974036603,-4.82578126764723e-09,4.15972985223732e-09,1.64049329676156e-09,1.14235010340012e-10,9.10478289983705e-10,-2.00390745663781e-09,-5.86755689608308e-05,-0.00019633855695773,-6.867918126559e-06,-2.14672030158458e-10,4.47558656751431e-10,-0.000412658950413336 +5.35,-1.55937665263089e-08,1.54688488962496e-08,5.14757242733865e-09,5.71870169274735e-10,3.13227827009044e-09,0.079999992241294,-2.4975508943964e-07,6.77037146831685e-07,-1.71017169175983e-07,1.14042456034179e-10,9.11246772483563e-10,4.05245653006768e-07,-2.28235399356719e-09,2.1436845356693e-09,7.73903510811211e-10,4.38017677747555e-11,3.98119037787194e-10,-9.53230550160508e-10 +5.352,-1.88496141414335e-06,-7.20614859596458e-07,1.16122721580125e-06,5.72034045132064e-10,3.13376619098804e-09,0.0799992990246429,-4.8349106836215e-09,4.16830459037999e-09,1.64358891080481e-09,1.14410217411111e-10,9.12070766134854e-10,-2.00772037883845e-09,-4.18318799738868e-05,-0.000172073243674687,-8.6593377867625e-06,2.94035629184463e-10,3.72965547385668e-10,-0.000357733003809924 +5.354,-1.56131061690434e-08,1.54855221146111e-08,5.15414678298187e-09,5.7232781014438e-10,3.13592655315498e-09,0.0799999922332631,-4.17082609335169e-07,-1.12558278669862e-08,-2.05654520323029e-07,1.15218598550916e-10,9.12738634673105e-10,-1.02568636223277e-06,-2.55709082353851e-09,3.03229663577598e-09,-1.21647483844084e-10,5.19549681048704e-10,3.47378376013729e-10,-1.11282510972768e-09 +5.356,-1.88662974458069e-06,-7.20659882907926e-07,1.16040459771996e-06,5.72494919526267e-10,3.13741714552673e-09,0.0799992949218975,-4.84513904691565e-09,4.1804337769231e-09,1.64310232086943e-09,1.16488416135306e-10,9.13460279638909e-10,-2.01217167927736e-09,-2.23719635481716e-05,-0.000135123594605071,-1.04709960320333e-05,7.25981774689737e-10,2.53269627441895e-10,-0.000279424585899904 +5.358,-1.56324867252311e-08,1.55022438497188e-08,5.16071919226535e-09,5.72793763808921e-10,3.13958039427353e-09,0.0799999922252145,-5.06570463527866e-07,-5.51750206287332e-07,-2.47538504451167e-07,1.18122525649676e-10,9.13751713182873e-10,-2.14338470583251e-06,-2.74140519339875e-09,3.6234036606788e-09,-8.77770078753073e-10,9.19403442274171e-10,2.56305393626287e-10,-1.29670579840429e-09 +5.36,-1.8886560264348e-06,-7.22866883733075e-07,1.15941444370216e-06,5.72967409628866e-10,3.14107215237946e-09,0.0799992863483587,-4.85610466768925e-09,4.19492739156581e-09,1.63959124055442e-09,1.20166029904403e-10,9.14485501213414e-10,-2.01735850247098e-09,-2.78121200118179e-06,-9.04453950970558e-05,-1.17008995808601e-05,1.07422751250543e-09,2.73652628386114e-10,-0.000186423044536304 +5.362,-1.56519111439019e-08,1.5519023559285e-08,5.16727755722757e-09,5.73274427928538e-10,3.14323833627839e-09,0.079999992217145,-5.17695311532592e-07,-9.13531786675515e-07,-2.94342102774602e-07,1.22419435699697e-10,9.14846323696417e-10,-2.88907688397764e-06,-2.80212051451902e-09,4.02629318750914e-09,-1.45955296469098e-09,1.19479079407235e-09,2.21177243136273e-10,-1.23859256173549e-09 +5.364,-1.89072680768093e-06,-7.26521010879777e-07,1.15823707529106e-06,5.73457087371665e-10,3.14473153767425e-09,0.0799992747920511,-4.86731314974732e-09,4.21103256431585e-09,1.63375302869566e-09,1.24945193080692e-10,9.15370210185959e-10,-2.02231287271792e-09,1.47216507647823e-05,-4.31069086675402e-05,-1.18613083764462e-05,1.28629745742972e-09,2.40259201371967e-10,-8.77859226281895e-05 +5.366,-1.56713803965008e-08,1.55358676895423e-08,5.17381256934235e-09,5.73774208700861e-10,3.14689981711913e-09,0.0799999922090558,-4.58808708473456e-07,-1.0859594213457e-06,-3.41787336280392e-07,1.27564625529416e-10,9.15807360501905e-10,-3.24022057449044e-06,-2.77891858856798e-09,4.15292800172231e-09,-1.73624135892762e-09,1.36566105646968e-09,2.13370987595969e-10,-1.31665511837864e-09 +5.368,-1.89256204251483e-06,-7.3086484856516e-07,1.15686992594594e-06,5.73967345873783e-10,3.14839476711626e-09,0.0799992618311688,-4.87842882410159e-09,4.22764427632274e-09,1.62680806325994e-09,1.30407837306571e-10,9.16223694136343e-10,-2.02757949319144e-09,0.0735240974117096,0.0309299245872493,-0.0449339096412963,4.81299028410579e-09,-4.18979087530306e-09,0.046457960145584 +5.37,-1.56908941117972e-08,1.55527782666476e-08,5.18031980159539e-09,5.74295840050087e-10,3.15056471189568e-09,0.0799999922009454,0.000293637580938333,0.000122633738927638,-0.000180077425901446,1.46816586665837e-10,8.99048197000695e-10,0.000182591620007825,1.36045905444186e-07,-1.12490745885165e-07,-5.46895428250385e-08,1.24769986008908e-09,-2.609110844048e-08,-0.1329831440227 +5.372,-7.18011718761624e-07,-2.40329892854663e-07,4.36560222340232e-07,5.74554612220446e-10,3.15199095990426e-09,0.0799999921976488,-4.33424520232491e-09,3.77768129278213e-09,1.40804989195982e-09,1.35398636746927e-10,8.11859260374435e-10,-0.000531934603670233,-0.208355238338195,-0.0919564379221438,0.125093657667015,-7.22468959658095e-09,-1.84726366148538e-08,-0.0456483955366473 +5.374,-1.57082310926066e-08,1.55678889918187e-08,5.18595200116323e-09,5.74837434597075e-10,3.15381214893717e-09,0.0799978644625308,-0.000539783372414541,-0.000245192012760978,0.000320297204766672,1.1791782827951e-10,8.25157650541271e-10,-1.96213878478324e-09,-1.86821044745563e-07,1.58719391796445e-07,6.74258825856481e-08,-4.52762827222432e-10,3.38544296763394e-08,0.221268225969085 +5.376,-2.87714520842003e-06,-1.22109794389869e-06,1.71774904140706e-06,5.75026283533564e-10,3.15529159050643e-09,0.0799999921898003,-5.08152938130724e-09,4.41255885996798e-09,1.67775342230244e-09,1.33587585438037e-10,9.47276979079807e-10,0.000353138300206207,0.214434386857781,0.0983084372540692,-0.126173442605589,6.15306416929764e-09,4.17096912564413e-08,-4.63544133634334e-08 +5.378,-1.57285572101318e-08,1.55855392272586e-08,5.19266301485244e-09,5.75371784938827e-10,3.15760125685349e-09,0.0799992770157316,0.00031795417501649,0.000148041736255255,-0.000184396565655629,1.42530084956698e-10,9.91996415567018e-10,-2.14755643823696e-09,9.14957129158547e-08,-7.82260541065844e-08,-3.42018080523663e-08,2.14411821630781e-09,-1.67214332658131e-08,-0.0435869691589693 +5.38,-1.60532850835421e-06,-6.2893099887773e-07,9.80162778784627e-07,5.75596403873391e-10,3.15925957616869e-09,0.0799999921812101,-4.71554652964386e-09,4.09965464354168e-09,1.54094619009299e-09,1.42164058303267e-10,8.80391246016562e-10,0.000178790423570349,-0.153504783842479,-0.0689674330245268,0.0898473915952634,-2.17837900496578e-09,-4.95731927730442e-08,-0.131050372399396 +5.382,-1.57474193962504e-08,1.56019378458327e-08,5.19882679961281e-09,5.7594044117204e-10,3.16112282183756e-09,0.0799999921774259,-0.00029606496035336,-0.000127827995842821,0.000174993000725385,1.33816568936836e-10,7.93703644474864e-10,-0.000524203637153966,2.8743934316322e-08,-1.84643966785207e-08,-1.24145485559108e-08,1.3838756529523e-09,-4.13341236243169e-09,-0.0446980859252626 +5.384,-2.78958834976778e-06,-1.14024298224907e-06,1.68013478168624e-06,5.76131670149138e-10,3.16243439074659e-09,0.0799978953666615,-4.60057079237856e-09,4.02579705682759e-09,1.49128799586934e-09,1.47699560915077e-10,8.63857596566834e-10,-1.92013072108899e-09,0.108486260122828,0.0440581151587708,-0.0653820795537974,4.27739441089723e-09,2.61305733995517e-08,0.153581726236729 +5.386,-1.57658216794199e-08,1.56180410340601e-08,5.20479195159629e-09,5.76531239415701e-10,3.16457825222383e-09,0.0799999921697453,0.000137880080138002,4.84044647922813e-05,-8.65353174898343e-05,1.50926146580427e-10,8.98225938073082e-10,9.01232677930174e-05,-1.23837138460708e-07,1.01318693019016e-07,4.70092714755886e-08,-1.87957288621309e-09,2.25019655686861e-08,-5.28951882296031e-08 +5.388,-2.23806802921583e-06,-9.46625123079969e-07,1.33399351172694e-06,5.7673537473546e-10,3.16602729449889e-09,0.0799982558597326,-5.09591934622134e-09,4.43107182890361e-09,1.67932508177167e-09,1.40181269370225e-10,9.53865458841568e-10,-2.13171147400738e-09,-0.0212187868088869,-0.00249176036054834,0.0159701941313292,-2.44118961157673e-09,2.33198876875063e-08,0.0371622758668246 +5.39,-1.57862053568048e-08,1.56357653213757e-08,5.21150925192337e-09,5.77091964493182e-10,3.16839371405919e-09,0.0799999921612185,5.30049329024635e-05,3.84374233500891e-05,-2.26545409645245e-05,1.41161388134121e-10,9.91505488823097e-10,0.0002387723712603,6.09463651424139e-08,-5.55749023192334e-08,-2.13592164789219e-08,1.13624387675677e-09,-1.15237680509643e-08,3.26960680753219e-08 +5.392,-2.02604829760596e-06,-7.92875429679596e-07,1.24337534786884e-06,5.77300020287996e-10,3.16999331645418e-09,0.0799992109492177,-4.85213388565166e-09,4.20877221962665e-09,1.59388821585598e-09,1.44726244877253e-10,9.07770386637706e-10,-2.00092720170608e-09,-0.0492111404679662,-0.0241447144907667,0.0269084356235749,8.04044331123083e-10,-3.29406640852685e-08,-0.126698110637459 +5.394,-1.58056138923474e-08,1.56526004102542e-08,5.2178848047868e-09,5.77670869472691e-10,3.17202479560574e-09,0.0799999921532148,-0.000143839628969423,-5.81414346129886e-05,8.49792015297873e-05,1.44377565458614e-10,8.59742832482008e-10,-0.000268020071289595,-6.50900774254509e-08,6.13593377498917e-08,2.48694294325665e-08,1.11152406724042e-09,1.44428739801675e-08,-3.24514720652163e-08 +5.396,-2.60140681348359e-06,-1.02544116813152e-06,1.58329215398795e-06,5.77877530549831e-10,3.17343228778411e-09,0.0799981388689325,-5.11249419535343e-09,4.45420957062619e-09,1.69336593358623e-09,1.49172341146214e-10,9.65541882558369e-10,-2.13073308996693e-09,0.0847910291496557,0.0356597881696407,-0.0502259334721593,2.75170511376019e-09,4.07638332810622e-08,0.138015665259256 +5.398,-1.58260638691288e-08,1.56704172485367e-08,5.22465826852114e-09,5.78267558837275e-10,3.17588696313598e-09,0.0799999921446919,0.000195324487629162,8.44977180655587e-05,-0.000115924532358828,1.55384385913653e-10,1.02279816560624e-09,0.00028404258974737,-2.3129610205996e-08,1.59277972752993e-08,9.45511030571546e-09,-1.17527515505687e-10,3.76131417673227e-09,-6.01602101456799e-09 +5.4,-1.82010886296685e-06,-6.87450295869252e-07,1.11959402455258e-06,5.78499068093485e-10,3.17752348044653e-09,0.0799992750392915,-5.20501263617743e-09,4.51792075972739e-09,1.7311863748091e-09,1.48702231084191e-10,9.805871392653e-10,-2.15479717402521e-09,0.0129163722911826,0.00553826926030215,-0.00880061895754767,2.13240883285311e-09,-1.84292685278518e-08,-0.0261923147554433 +5.402,-1.58468839196735e-08,1.56884889315756e-08,5.23158301402038e-09,5.78862367761612e-10,3.17980931169304e-09,0.0799999921360727,0.000246989976793898,0.00010665079510677,-0.000151127008189023,1.63914021245067e-10,9.49081091494823e-10,0.000179273330725585,1.61163617173634e-07,-1.32960049220366e-07,-6.20293746921582e-08,1.32185928870287e-09,-2.97518086555613e-08,-0.13362158808944 +5.404,-8.32148955791367e-07,-2.6084711544222e-07,5.1508599179656e-07,5.79154724178466e-10,3.18131980481251e-09,0.0799999921326144,-4.56035816748296e-09,3.98608056284599e-09,1.48306887604049e-09,1.53989668239002e-10,8.61579904643068e-10,-0.000534488507154877,-0.188908895775095,-0.082370982168375,0.113405929299667,-6.9102709665627e-09,-1.92758135842379e-08,-0.0448188415824823 +5.406,-1.58651253523434e-08,1.5704433253827e-08,5.23751528952454e-09,5.79478326434568e-10,3.18325563131161e-09,0.0799978541820441,-0.000508645606306398,-0.000222833133566694,0.000302496709009594,1.36272937378819e-10,8.7197783715788e-10,-2.03560432399085e-09,-1.67403092256033e-07,1.43828091797329e-07,6.12383407870992e-08,-1.20866858189512e-09,3.03103896148191e-08,0.222059911384236 +5.408,-2.86673138101719e-06,-1.1521796497091e-06,1.72507282783507e-06,5.79699815927981e-10,3.18480771616114e-09,0.079999992124472,-5.22997053650717e-09,4.56139293003537e-09,1.72802223918892e-09,1.49154993911421e-10,9.82821463102358e-10,0.000353751138382168,0.203816713812488,0.0889562370015459,-0.120977413114992,4.65252836257735e-09,3.70957604912054e-08,-4.07018169169567e-08 +5.41,-1.58860452344894e-08,1.57226788255471e-08,5.2444273784813e-09,5.80074946410214e-10,3.18718691716402e-09,0.0799992691865976,0.000306621248943646,0.000132991814439529,-0.000181412943450427,1.5488305082913e-10,1.02036087912272e-09,-2.1984115916587e-09,1.79836614347306e-08,-1.95043634018963e-08,-4.31447412509386e-09,-6.49653941745179e-10,-3.50587614489533e-09,-0.0932937897994016 +5.412,-1.64024638524274e-06,-6.20212391951036e-07,9.99421054033445e-07,5.80319348131297e-10,3.18888915967763e-09,0.0799999921156783,-5.15803589076826e-09,4.48337547642779e-09,1.71076434268854e-09,1.46556378144441e-10,9.68797958522778e-10,-1.94240208153972e-05,-0.105910792439884,-0.0432315203097934,0.0634870642498525,-2.47198095327555e-09,-1.86595530694011e-08,2.27699803457935e-08 +5.414,-1.59066773780525e-08,1.57406123274528e-08,5.25127043585205e-09,5.80661171922792e-10,3.19106210899811e-09,0.0799991914905143,-0.000117021920815843,-3.99342667996249e-05,7.2535313548955e-05,1.44995127016029e-10,9.45722666845122e-10,-2.10733167027553e-09,1.03383230795881e-07,-8.18733102150389e-08,-3.99077472458014e-08,2.14975606759564e-09,-1.85459286817177e-08,0.0548943075552823 +5.416,-2.10833406850616e-06,-7.79949459149554e-07,1.2895623082293e-06,5.80899328639362e-10,3.19267205034501e-09,0.079999992107249,-4.74450296758469e-09,4.1558822355676e-09,1.55113335370532e-09,1.55155402414824e-10,8.94614243795899e-10,0.000200153209405757,0.00904857384983028,-0.00239597916333822,-0.00858755342573956,8.71698546686397e-10,-2.70946459712292e-08,-0.134743361996682 +5.418,-1.59256553899229e-08,1.57572358563951e-08,5.25747496926687e-09,5.81281793532451e-10,3.19464056597329e-09,0.0799999921033519,-8.08276254165177e-05,-4.95181834529789e-05,3.81850998459929e-05,1.48481921202775e-10,8.37344082960193e-10,-0.000538975555318459,-6.60244428576932e-08,5.81323184037022e-08,2.50997139740001e-08,-2.06605565988022e-09,1.24418704506271e-08,-0.0500388282840407 +5.42,-2.4316445701722e-06,-9.78022192961447e-07,1.44230270761325e-06,5.81493256324173e-10,3.19602142667685e-09,0.0799978362050277,-5.00860073901543e-09,4.38841150918238e-09,1.65153220960131e-09,1.46891179775304e-10,9.44381725598402e-10,-2.10373038433987e-09,0.0565174908686434,0.0282128288461365,-0.0302416667792939,-3.79470760378169e-10,4.09837094816435e-08,0.224809617565784 +5.422,-1.59456897928789e-08,1.57747895024318e-08,5.26408109810528e-09,5.81869358251552e-10,3.19841809287569e-09,0.079999992094937,0.000145242338058031,6.33331319315546e-05,-8.27815672711692e-05,1.46964038161263e-10,1.00127892088675e-09,0.00036026291494458,-4.28040849290055e-08,2.84455618779488e-08,1.90151713818238e-08,-2.25210475269454e-09,6.5459790365446e-09,-1.29176183637417e-08 +5.424,-1.85067521794001e-06,-7.24689665235201e-07,1.11117643852854e-06,5.82081112476818e-10,3.2000265423604e-09,0.0799992772566875,-5.17981707873147e-09,4.50219375669419e-09,1.72759289512861e-09,1.37882760764525e-10,9.70565641744583e-10,-2.15540085779485e-09,-0.047339093418248,-0.0172667611723353,0.0285235833153782,-2.36789754470018e-09,-9.55919371431458e-09,-0.093449927753509 +5.426,-1.59664090611938e-08,1.57927982774586e-08,5.27099146968579e-09,5.8242088929461e-10,3.20230035544267e-09,0.0799999920863154,-4.41140356149825e-05,-5.73391275779441e-06,3.13127659903565e-05,1.37492447982461e-10,9.63042146029486e-10,-1.3536796069498e-05,7.73903510691556e-09,-5.4075667552399e-09,-7.00394602466701e-11,9.52363188319133e-10,1.63497687664702e-10,4.71411104584838e-09 +5.428,-2.02713136039992e-06,-7.47625316266376e-07,1.23642750248995e-06,5.82631082268747e-10,3.20387871094452e-09,0.0799992231095032,-5.14886093830381e-09,4.48056348967323e-09,1.72731273728762e-09,1.41692213517801e-10,9.71219632495242e-10,-2.13654441361145e-09,0.0202449288685201,0.0061116701270163,-0.0133052480916582,1.91383367486378e-09,2.93645316390625e-09,0.00773753930111911 +5.43,-1.59870045049471e-08,1.58107205314173e-08,5.27790072063494e-09,5.82987658148681e-10,3.20618523397265e-09,0.0799999920777692,3.6865679859089e-05,1.87127677502681e-05,-2.19082263762705e-05,1.45147782681915e-10,9.7478795868511e-10,1.7413361134975e-05,1.44557759862492e-08,-9.50585096773059e-09,-4.55234808192701e-09,9.0509197358283e-10,-1.54433757454189e-09,5.43922545904265e-09 +5.432,-1.87966864096355e-06,-6.72774245265295e-07,1.14879459698486e-06,5.83211673399475e-10,3.20777786277926e-09,0.0799992927629478,-5.09103783435881e-09,4.44254008580231e-09,1.70910334495991e-09,1.45312581412133e-10,9.65042282197074e-10,-2.11478751177528e-09,-0.0116250931291225,-0.00576494149943477,0.00660452781093295,5.72458747152868e-11,-3.74396694197281e-09,-0.00523526970125962 +5.434,-1.60073686562845e-08,1.58284906917605e-08,5.28473713401478e-09,5.8356890847433e-10,3.21004540310144e-09,0.0799999920693101,-9.63469265740614e-06,-4.34699824747357e-06,4.50988486746428e-06,1.45376766180776e-10,9.59812090917217e-10,-3.52771767006582e-06,9.12572968552984e-09,-6.62534263537927e-09,-3.88101009653509e-09,1.73472348404201e-12,-1.7685505837052e-09,2.87703888479081e-09 +5.436,-1.91820741159317e-06,-6.90162238255188e-07,1.16683413645471e-06,5.83793180464198e-10,3.21161711114293e-09,0.0799992786520771,-5.05453491561669e-09,4.41603871526079e-09,1.69357930457378e-09,1.45319520306069e-10,9.57968079862254e-10,-2.10327935623612e-09,0.0775266534771422,0.0303343358110284,-0.0470967962140375,3.31982705214254e-09,-5.64435651001279e-09,0.045469767674146 +5.438,-1.6027586795947e-08,1.58461548466216e-08,5.29151145123308e-09,5.84150186555554e-10,3.21387727542088e-09,0.079999992060897,0.000300471921251129,0.000116990344996627,-0.000183877299988665,1.58656074389345e-10,9.37234664877169e-10,0.000178351353026498,1.46117818365902e-07,-1.23480219105461e-07,-5.67250239836539e-08,-5.9934696095792e-10,-2.83471163209838e-08,-0.132694727229618 +5.44,-7.16319726588519e-07,-2.22200858268629e-07,4.31324936499972e-07,5.84427804761756e-10,3.21536604980244e-09,0.0799999920574892,-4.47006364215302e-09,3.92211783883889e-09,1.46667920863913e-09,1.42922132462237e-10,8.44579614578306e-10,-0.000530781012197886,-0.210085051708226,-0.0878802160226361,0.125104579989314,-9.34495536507823e-09,-1.97155659852934e-08,-0.0445883442797943 +5.442,-1.60454670505156e-08,1.58618433179769e-08,5.29737816806763e-09,5.84721875085403e-10,3.2172555938792e-09,0.0799978689368482,-0.00053986828558187,-0.000234530519093957,0.000316541019968648,1.21276252929028e-10,8.58372400935986e-10,-2.02409269900472e-09,-1.90598838795421e-07,1.60727767900801e-07,7.18409706724628e-08,-2.22218077271884e-09,3.44802311703075e-08,0.222761081403024 +5.444,-2.87579286891576e-06,-1.16032293464435e-06,1.69748901637443e-06,5.84912909773472e-10,3.21879953940618e-09,0.0799999920493928,-5.23245899733462e-09,4.56502891044203e-09,1.75404309132895e-09,1.34033409371363e-10,9.8250053925952e-10,0.000360263313414112,0.214433066280466,0.0942744414122791,-0.124638407429586,4.74316766418284e-09,4.22717416625551e-08,-4.79590325784803e-08 +5.446,-1.60663968865049e-08,1.58801034336187e-08,5.30439434043295e-09,5.85258008722889e-10,3.22118559603624e-09,0.0799993099901018,0.000317863979539898,0.000142567246555118,-0.000182012609749642,1.40248923585757e-10,1.02745936758619e-09,-2.21592882931862e-09,5.69553085279014e-09,-1.00167270314102e-08,2.16883802574215e-09,-2.68882138783787e-10,-3.46944695249813e-10,-0.0924094597943424 +5.448,-1.60433695075603e-06,-5.90053948423819e-07,9.69438577375775e-07,5.85473905467815e-10,3.22290937687653e-09,0.0799999920405291,-5.20967687392346e-09,4.52496200231638e-09,1.76271844343192e-09,1.32957880816227e-10,9.81112760478521e-10,-9.3745257632994e-06,-0.0314618700122164,-0.0142638238711652,0.0168493117917101,1.47798440154002e-09,-2.25674513797942e-08,5.07979075469057e-08 +5.45,-1.60872355940006e-08,1.58982032816279e-08,5.31144521420668e-09,5.85789840246154e-10,3.22511004707815e-09,0.0799992724919988,0.000192016499491018,8.55119510704505e-05,-0.000114615362582794,1.46160861191918e-10,9.37189562067001e-10,-2.01273719913098e-09,1.42003162700596e-07,-1.14640501952308e-07,-5.38590439607384e-08,2.29764124393917e-09,-2.48546842828777e-08,-0.0630170849799458 +5.452,-8.3627095279204e-07,-2.48006144142054e-07,5.10977127044648e-07,5.86058548912582e-10,3.22665813512479e-09,0.0799999920324782,-4.64166422312113e-09,4.0663999945072e-09,1.54728226758899e-09,1.42148445791983e-10,8.81694023347021e-10,-0.000261442865683055,-0.171332050585479,-0.0726688169664901,0.101807053435553,-5.65129540387155e-09,-1.19093103435018e-08,-1.17848439339367e-08 +5.454,-1.61058022508931e-08,1.5914468881606e-08,5.31763434327703e-09,5.86358434029322e-10,3.22863682317154e-09,0.0799982267205361,-0.000493311702850823,-0.000205163316795478,0.000292612851159372,1.23555679576434e-10,8.89552320692999e-10,-2.05987657486672e-09,-1.61253822794344e-07,1.36598631711193e-07,6.09885406065551e-08,-1.31882352261897e-09,2.97704569329203e-08,0.133540015131805 +5.456,-2.80951776419555e-06,-1.06865941132406e-06,1.68142853168227e-06,5.86552771630888e-10,3.23021634440757e-09,0.0799999920242387,-5.28667951429858e-09,4.61279452135203e-09,1.79123643001524e-09,1.36873151701507e-10,1.00077585107872e-09,0.000272717194844227,0.196705339870843,0.0821842127450799,-0.115976580355813,5.20243570446129e-09,3.82853471148574e-08,-4.31208888042077e-08 +5.458,-1.61269489689503e-08,1.59329200596914e-08,5.3247992889971e-09,5.86905926636128e-10,3.23263992657585e-09,0.0799993175893154,0.000293509656632636,0.000123573534184878,-0.000171293470263933,1.44365422394282e-10,1.04269370915245e-09,-2.23236013008357e-09,9.9134242481375e-08,-8.54216870846816e-08,-3.74552819314621e-08,1.41943748422593e-09,-1.86040419180618e-08,-0.0260279203224873 +5.46,-1.63547913766514e-06,-5.74365274584598e-07,9.9625465062661e-07,5.87130233320465e-10,3.23438711924418e-09,0.0799999920153092,-4.89014254437313e-09,4.27110777301334e-09,1.64141530228941e-09,1.4255090163841e-10,9.26359683406477e-10,0.000168605513554289,-0.143256172441866,-0.0595815340402836,0.083289600126989,-2.89568716228229e-09,-5.10052070024659e-08,-0.125515957518154 +5.462,-1.61465095391278e-08,1.59500044907834e-08,5.33136495020625e-09,5.87476130242681e-10,3.23634536530948e-09,0.0799999920113696,-0.000279515033134763,-0.00011475260197623,0.000161864930243986,1.32782673745154e-10,8.38672881142605e-10,-0.000502066062432693,-6.69543630604696e-08,6.10709399715126e-08,2.50459375460565e-08,-3.53449908238106e-10,1.35343125595166e-08,-0.0421519183698218 +5.464,-2.75353927020432e-06,-1.03337568248957e-06,1.64371437160263e-06,5.87661364015446e-10,3.23774181076875e-09,0.0799979837510595,-5.15795999661504e-09,4.51539153289942e-09,1.74159905247365e-09,1.41137102005457e-10,9.80496933644549e-10,-2.15992501662019e-09,0.134612546425292,0.0546122171018603,-0.0783706169420017,3.88057641576748e-09,5.41775825591471e-08,0.210949962468523 +5.466,-1.61671413791142e-08,1.5968066056915e-08,5.33833134641615e-09,5.88040678650703e-10,3.24026735304406e-09,0.0799999920027299,0.000258935152566465,0.000103696266431236,-0.000151617537524056,1.48304979408226e-10,1.05538321137922e-09,0.000341733787441494,-3.73219250646322e-08,2.61557268901657e-08,1.47761577280359e-08,-6.67868538243383e-10,5.82433407064788e-09,-1.09912079439113e-08 +5.468,-1.71779865993857e-06,-6.18590616764669e-07,1.03724422150647e-06,5.88254583933079e-10,3.24196334361426e-09,0.0799993506862093,-5.30724769687355e-09,4.62001444046007e-09,1.80070368338578e-09,1.38465627852484e-10,1.00379426992714e-09,-2.20388984839583e-09,-0.0879661515716983,-0.0321019590077189,0.0528323060083616,-2.38871422642829e-09,-1.75545342152058e-08,-0.0896100710301628 +5.47,-1.61883703699017e-08,1.59865461146769e-08,5.34553416114969e-09,5.88594541162113e-10,3.24428253012377e-09,0.0799999919939144,-9.29294537202891e-05,-2.47115695996253e-05,5.97116865093675e-05,1.38750122502513e-10,9.85165074518402e-10,-1.67064966791178e-05,1.12296673696325e-07,-9.17885559228586e-08,-4.42198361262149e-08,2.77295547634062e-09,-2.03773629914817e-08,4.87058310351123e-08 +5.472,-2.08951647481977e-06,-7.17436895163182e-07,1.27609096754397e-06,5.88809584423089e-10,3.24590400391234e-09,0.0799992838602225,-4.8580610020882e-09,4.2528602167686e-09,1.6238243388809e-09,1.49557449757848e-10,9.22284817961202e-10,-2.00906652425536e-09,0.00141475970250487,-0.0059649690373732,-0.00431520047277,2.47891984717855e-09,-2.60672559925798e-08,-0.0647560547076967 +5.474,-1.62078026139101e-08,1.60035575555439e-08,5.35202945850521e-09,5.89192770961144e-10,3.24797166939561e-09,0.0799999919858781,-8.72704149102689e-05,-4.85714457491208e-05,4.24508846182855e-05,1.48665801891229e-10,8.80896050548072e-10,-0.000275730715509933,-7.46458016928717e-08,6.91200569005471e-08,2.63545695684391e-08,-3.99420080335451e-10,1.44394045332163e-08,-3.84891771233555e-08 +5.476,-2.4385981344608e-06,-9.11722678159643e-07,1.44589450601709e-06,5.89404247630654e-10,3.24942758811453e-09,0.0799981809373605,-5.15664420885965e-09,4.52934044437075e-09,1.72924261715465e-09,1.47959769436506e-10,9.80042436094061e-10,-2.16302323274877e-09,0.0588701656008667,0.0270174707810009,-0.0318865451271888,3.3523531172427e-10,3.82784082208552e-08,0.138290221006318 +5.478,-1.62284291907455e-08,1.60216749173214e-08,5.35894642897383e-09,5.8978461003889e-10,3.25189183913999e-09,0.079999991977226,0.000148210247493172,5.94984373748708e-05,-8.50952958904557e-05,1.50006743138126e-10,1.03400968343148e-09,0.000277430168515277,-4.08232475598667e-08,2.82425992312517e-08,1.59004753807039e-08,-1.15836160109147e-09,5.95096888428271e-09,-1.24397020461068e-08 +5.48,-1.84575714448805e-06,-6.73728928660133e-07,1.10551332245523e-06,5.90004274603206e-10,3.25356362684825e-09,0.0799992906580346,-5.31993719909914e-09,4.64231084129577e-09,1.79284451867747e-09,1.4332632303214e-10,1.00384631163119e-09,-2.2127820409332e-09,-0.0482953881851461,-0.0166361374593639,0.0289293101433806,-1.32316033129298e-09,-9.78774353227269e-09,-0.070735350694835 +5.482,-1.62497089395419e-08,1.60402441606866e-08,5.36611780704854e-09,5.90357915331019e-10,3.25590722438651e-09,0.0799999919683749,-4.49713052474343e-05,-7.04611246259223e-06,3.06219446830797e-05,1.44714101812953e-10,9.94858709302381e-10,-5.51123426409455e-06,1.10158084910556e-07,-9.06497099604063e-08,-4.28715223043318e-08,2.5140479975679e-09,-1.99549578249789e-08,4.81290354791263e-08 +5.484,-2.02564236547777e-06,-7.01913378510499e-07,1.22800110118754e-06,5.90583131010458e-10,3.25754306168546e-09,0.0799992686130975,-4.87930485945696e-09,4.27971200145419e-09,1.62135842946016e-09,1.5338251502241e-10,9.24026480331288e-10,-2.02026589901672e-09,0.074324298148423,0.0246691425221521,-0.0471534744739976,6.13962006234287e-09,-2.90397046687759e-08,0.0368727561426629 +5.486,-1.62692261589797e-08,1.60573630086924e-08,5.37260324076638e-09,5.90971445391109e-10,3.25960333030784e-09,0.0799999919602938,0.000252325887346225,9.16304576260055e-05,-0.00015799195321289,1.69272582062322e-10,8.7869989062729e-10,0.000141979790306541,4.28674023364277e-08,-2.67672169154228e-08,-1.95139043813487e-08,2.85795692658597e-10,-7.42591751983734e-09,8.48106307416081e-09 +5.488,-1.01633881609275e-06,-3.35391548006436e-07,5.96033288335907e-07,5.91260221338707e-10,3.26105786124797e-09,0.0799998365322587,-4.70783525011123e-09,4.17264313379249e-09,1.54330281193476e-09,1.54525697793045e-10,8.94322810251935e-10,-1.98634164672007e-09,-0.182193112928242,-0.0747479531760329,0.109256719162719,-1.12292987408574e-08,6.8855511570697e-09,-0.118523571730574 +5.49,-1.62880574999802e-08,1.60740535812276e-08,5.37877645201412e-09,5.91589548182281e-10,3.26318062154884e-09,0.0799999919523485,-0.000476446564366823,-0.00020736135507816,0.000279034923438035,1.24355387098887e-10,9.06242095255572e-10,-0.000332114496615807,-1.90371806860516e-07,1.48587739335058e-07,7.60110290682817e-08,-4.74230030244406e-09,3.29888026618389e-08,-7.43528502657065e-08 +5.492,-2.92212507355984e-06,-1.16483696831898e-06,1.71217298208792e-06,5.91757642887103e-10,3.264682829629e-09,0.0799985080742723,-5.46932247755321e-09,4.76699409113265e-09,1.84734692820785e-09,1.35556496583271e-10,1.02627802089928e-09,-2.28375304778286e-09,0.196225208045106,0.0885195935041691,-0.112569079387824,6.1175023380253e-09,4.65183447317437e-08,0.135207261694002 +5.494,-1.63099347898904e-08,1.60931215575921e-08,5.38616583972695e-09,5.92131774168614e-10,3.26728573363244e-09,0.0799999919432135,0.000308454267813514,0.000146717018938478,-0.000171241394113212,1.48825396450986e-10,1.09231547418253e-09,0.000208714550160143,9.94721882990916e-08,-8.456993785846e-08,-3.49414507745231e-08,3.01104627341854e-09,-1.66177835381731e-08,4.80691875194333e-08 +5.496,-1.68830800230564e-06,-5.77968892565006e-07,1.027207405635e-06,5.92352944472907e-10,3.26905209152573e-09,0.0799993429324729,-5.0714337243568e-09,4.42871433969877e-09,1.70758112510974e-09,1.47600681676946e-10,9.59806886746576e-10,-2.09147629770511e-09,-0.477420508811702,-0.183432515214127,0.282870727918463,-0.87877590088884,-1.28336390890337,-524.439458143132 +5.498,-1.63302205247878e-08,1.61108364149509e-08,5.39299616422739e-09,5.92722176895322e-10,3.27112496117943e-09,0.0799999919348476,-0.00160122776743351,-0.000587013041918114,0.000960241517560767,-0.00351510345473035,-0.00513345454329858,-2.0975491180226,-0.929187251879345,-0.338779300136117,0.559900055834043,-1.61449476929494,-2.36348457028765,-1048.63098900514 +5.5,-8.09321907203897e-06,-2.9260210602372e-06,4.86817347587765e-06,-1.40598214659754e-05,-2.05305491211005e-05,0.0716091464603834,-0.0037167540789507,-0.00135511277182998,0.00223960193091705,-0.00645797892957838,-0.00945393732134266,-4.19452395811159,-0.441996371399364,-0.155310264670423,0.270133631920494,-0.390704985228271,-0.609204478073449,-523.759880462586 +5.502,-1.48833465363259e-05,-5.40434025090436e-06,8.96380071983144e-06,-2.58313229961338e-05,-3.78124781604053e-05,0.063221896102403,-0.00336921325303077,-0.00120825410059974,0.00204077604524262,-0.00507792339564327,-0.00757027245559211,-4.19258863987271,0.240937962044759,0.100791706724377,-0.140409133834362,0.72720296189733,0.994621832654068,1.01451298760369 +5.504,-2.15700720841636e-05,-7.7590374626367e-06,1.30312776568491e-05,-3.43715150485507e-05,-5.08116389434723e-05,0.0548387919008907,-0.00275300223077155,-0.000951945944932424,0.00167796539557954,-0.00354916708198873,-0.00547544999072594,-4.19046590616117,0.46064048369121,0.176691542261491,-0.277410608863336,0.729038990610464,1.03626350470943,1.05614178967094 +5.506,-2.58953554594134e-05,-9.21212403063448e-06,1.56756623021503e-05,-4.00279913240903e-05,-5.97142781233115e-05,0.0464600324777565,-0.00152665131826572,-0.000501487931553697,0.000931133609789156,-0.00216176743320108,-0.00342521843675391,-4.18836407271403,0.575068683946525,0.204808171679595,-0.352894762956324,0.671217563084084,1.02274182393124,1.00683954696834 +5.508,-2.76766773572258e-05,-9.76498918885127e-06,1.67558120960053e-05,-4.30185847813541e-05,-6.45125126904865e-05,0.0380853356100364,-0.000452727494985705,-0.000132713258214134,0.000266386343754395,-0.000864296829652692,-0.00138448269500142,-4.1864385479733,0.282329659665286,0.0910984445351269,-0.178918323795839,0.637415867621004,1.01290576237729,0.899067950335885 +5.51,-2.7706265439356e-05,-9.74297706349096e-06,1.67412076771678e-05,-4.34851786427007e-05,-6.52522089033165e-05,0.0297142782858651,-0.000397332679604702,-0.000137094153413229,0.000215460314605877,0.000387896037282653,0.000626404612754788,-4.18476780091269,0.155761439680396,0.0433390313770526,-0.100592279872521,0.628624551818394,0.998723473081962,0.792722533765744 +5.512,-2.92660080756448e-05,-1.03133658025042e-05,1.76176533544289e-05,-4.14670006322233e-05,-6.20068942394671e-05,0.0213462644063838,0.000170318263735951,4.06428672940953e-05,-0.000135982775735734,0.00165020137762117,0.00261041119732688,-4.18326765783824,0.59444797011204,0.202445603037109,-0.358817779236594,0.653798538491491,1.00226118352916,0.71431628320676 +5.514,-2.70249923844121e-05,-9.58040559431456e-06,1.61972765742248e-05,-3.68843731322153e-05,-5.48105641140079e-05,0.0129812076545103,0.00198045920084372,0.000672688258735299,-0.00121981080234066,0.00300309019124891,0.00463544934687187,-4.18191053577986,0.82504542725109,0.293700822351572,-0.489333341878862,0.750779363531425,1.09528222950491,0.600904795452783 +5.516,-2.13441712722707e-05,-7.62261276756335e-06,1.27384101450668e-05,-2.9454639867229e-05,-4.34650968519816e-05,0.00461862226326621,0.00347049997273995,0.00121544615670025,-0.00209331614325096,0.00465331883174654,0.00699154011534604,-4.18086403865643,0.689136466369811,0.254702335727341,-0.401648159314589,1.09013724661666,1.55767754171801,59.7871730909364 +5.518,-1.31429924934539e-05,-4.71862096751408e-06,7.82401200122187e-06,-1.82710978052312e-05,-2.68444036526268e-05,-0.00374224850011358,0.00473700506632266,0.00169149760164455,-0.00282640343959884,0.00736363917771506,0.0108661595137432,-3.94276184341614,-0.0461160008383687,-0.00901868479502096,0.0343045261081133,-0.021388707042236,-0.0701242100541454,928.579936403477 +5.52,-2.39615100697797e-06,-8.56622360984396e-07,1.43279638667015e-06,-8.31563654740686e-11,-4.58797003860534e-10,-0.0111524251104001,0.00328603596938645,0.00117937141752017,-0.0019560980388185,0.00456776400357758,0.00671104327512943,-0.466544293042103,-1.03449038594531,-0.369336925395529,0.617050609429616,-1.84090464952611,-2.71651149249751,1675.69039093672 +5.522,1.15138409342765e-09,-1.13529743288668e-09,-3.80154052985124e-10,-4.17909188157872e-11,-2.30552106052218e-10,-0.0056084256722822,0.000599043522540961,0.000214149900062267,-0.000358201001880099,2.05796098071903e-08,1.13543751969506e-07,2.75999972033149,-0.82164942669003,-0.29470438153092,0.489070873890389,-1.14193590319318,-1.67773269927473,800.636003958489 +5.524,2.30831856111598e-11,-2.27607354215094e-11,-7.62085009084913e-12,-8.37926245316617e-13,-4.62199598256011e-12,-0.000112426229075356,-5.61737373305323e-07,5.53891396615795e-07,1.85456742844723e-07,2.03908053636481e-08,1.12478031229225e-07,2.7359997227915,-0.149900101541129,-0.0534001971936325,0.0895962080912856,-9.07205964550762e-08,-5.11271302807189e-07,-11.9999987884817 +5.526,-1.09556539979339e-09,1.08026815357626e-09,3.61672918393688e-10,3.97723026387964e-11,2.19360018864634e-10,0.00533557321888259,-5.56883623489054e-07,5.49111287760952e-07,1.83830485003861e-07,2.021672742137e-08,1.11498666758277e-07,2.71199972517757,2.43541744798167e-06,-2.39893220850969e-06,-8.14076196329356e-07,-8.8404923573734e-08,-4.9125650379833e-07,-11.9999988032133 +5.528,-2.2044513083453e-09,2.17368441562255e-09,7.27701089924676e-10,8.00289834401724e-11,4.41372671050599e-10,0.0107355726716361,-5.51995703513395e-07,5.44295667781755e-07,1.82200438059406e-07,2.00371856693532e-08,1.10513005214032e-07,2.68799972757864,2.44321745372943e-06,-2.40913849891267e-06,-8.11861426227569e-07,-9.10757573675948e-08,-4.92410288021045e-07,-11.9999987991059 +5.53,-3.30354821384722e-09,3.25745082470352e-09,1.09047467063139e-09,1.19921045316218e-10,6.6141203972081e-10,0.0160875721291984,-5.47110753674135e-07,5.39474733765301e-07,1.8058303929895e-07,1.98524243918996e-08,1.09529025606193e-07,2.66399972998114,2.43505486360943e-06,-2.4061698271573e-06,-8.02634692098229e-07,-9.34619677646532e-08,-4.90057701444057e-07,-11.9999988010674 +5.532,-4.3928943230416e-09,4.33158335068351e-09,1.4500332471204e-09,1.59438681007762e-10,8.79488773475323e-10,0.0213915715915595,-5.42255484058959e-07,5.34670988473127e-07,1.78989899291013e-07,1.96633377982946e-08,1.08552774408256e-07,2.63999973237438,-0.0248399680938439,-0.0198972050615754,0.00691750443051703,-0.0832608522459507,-0.0614233089969977,-859.699110103442 +5.534,-5.47257015008282e-09,5.3961347785958e-09,1.80643426779536e-09,1.98574396509388e-10,1.09562313735379e-09,0.0266475710586947,-9.99069831290386e-05,-7.90493455125276e-05,2.7850600761364e-05,-0.000333023556559374,-0.000245583706962358,-0.774796710432246,-0.0411858781864857,-0.0274397286947939,0.0150740551153274,-0.122889356358194,-0.104956271058203,-1704.34173338247 +5.536,-4.04020826839241e-07,-3.11865798699462e-07,1.12852436292589e-07,-1.33193478755664e-06,-9.81455339076065e-07,0.0182923847498302,-0.00016528576823002,-0.000109224243790715,6.04752103606075e-05,-0.000491537762095032,-0.000419716531458452,-4.17736720115625,0.00375383823123901,0.0133482110271684,0.00550303965558037,0.0403004365688807,0.00305715604742533,-850.526838361927 +5.538,-6.66615643070238e-07,-4.31500840384312e-07,2.43707275710252e-07,-1.96595247398384e-06,-1.67777050269664e-06,0.00993810225406785,-8.48916302040809e-05,-2.56565014038479e-05,4.9862759383688e-05,-0.000171821810283833,-0.000233355082772655,-4.17690406388033,0.0428301606003077,0.0326148320621783,-0.0130166525522086,0.138466195524954,0.105495392806773,0.225999748367814 +5.54,-7.43587347655527e-07,-4.14491804314842e-07,3.12303473827319e-07,-2.0192220286919e-06,-1.91487567016658e-06,0.00158476849431071,6.03487417119164e-06,2.12350844579843e-05,8.40860015177871e-06,6.23270200047244e-05,2.26503976859274e-06,-4.17646320216278,0.0411534502240712,0.013168013533617,-0.0226531536652306,0.0887985427017566,0.112567867625523,0.196489183751169 +5.542,-6.42476146385474e-07,-3.46560502552384e-07,2.77341676317364e-07,-1.71664439396497e-06,-1.66871034362227e-06,-0.00676775055458142,7.97221706921856e-05,2.70155527306141e-05,-4.07498552772247e-05,0.000183372360523154,0.000216916387729387,-4.17611810714533,0.0271348165108318,-0.0049103041180094,-0.0205290691241357,0.0358276867799513,0.0875457343390616,0.138398709790917 +5.544,-4.24698664886749e-07,-3.06429593392374e-07,1.49304052718402e-07,-1.2857325865992e-06,-1.04721011924894e-06,-0.0151197039342725,0.000114574140214531,1.59386798594448e-06,-7.37076763447733e-05,0.000205637767124546,0.000352447977124878,-4.17590960732361,0.00511028956209179,-0.0159592980571256,-0.00808391811016849,-0.0055884525847293,0.0377491874198636,0.0656924345616632 +5.546,-1.841795855273e-07,-3.40185030608606e-07,-1.74890290617624e-08,-8.94093325466694e-07,-2.58918435122601e-07,-0.0234713889838778,0.000100163328940555,-3.68216394978956e-05,-7.30855277179022e-05,0.000161018550184234,0.000367913137408858,-4.17585533740708,-0.0193770328019101,-0.0179057466425645,0.0105321813837523,-0.0317126734029264,-0.0271373148899052,-0.014745349057989 +5.548,-2.40453491245733e-08,-4.5371615138394e-07,-1.43038058153175e-07,-6.41658385862331e-07,4.24442430386335e-07,-0.031823125283899,3.70660090068988e-05,-7.00291185843056e-05,-3.15789508097686e-05,7.87870735128541e-05,0.00024389871756527,-4.17596858871985,-0.0411789751310349,-0.0122036342735844,0.0300255751934814,-0.0456423091869161,-0.0949679438290209,-0.104165801517742 +5.55,-3.5915549499721e-08,-6.20301504945797e-07,-1.43804832300823e-07,-5.78945031415312e-07,7.16676435138369e-07,-0.0401752633387553,-6.45525715835665e-05,-8.56361765922278e-05,4.70167730560102e-05,-2.155068656341e-05,-1.19586379071835e-05,-4.17627200061315,-0.0557776143909985,-0.00231739282157896,0.0449339009028254,-0.051704786566818,-0.151066038590692,-0.208920203021744 +5.552,-2.82255635458868e-07,-7.9626085775289e-07,4.5029034070887e-08,-7.27861132115981e-07,3.76607878757595e-07,-0.0485282132863534,-0.00018604444855712,-7.92986898706224e-05,0.000148156652801553,-0.000128032072754441,-0.000360365436797566,-4.17680426953193,-0.0595820293514562,0.00750435046319121,0.0505195452458316,-0.0517846361395267,-0.17871716418501,-0.337784775718626 +5.554,-7.80093343728284e-07,-9.37496264428322e-07,4.48821778905456e-07,-1.09107332243313e-06,-7.24785312052056e-07,-0.0568824804168849,-0.000302880688989418,-5.56187747394596e-05,0.000249094954039359,-0.00022868923112154,-0.000726827294647303,-4.17762313971603,-0.0461323117435785,0.0156064509262793,0.0405844569701219,-0.0432341209734108,-0.159167276174964,-0.498153208643492 +5.556,-1.49377839141641e-06,-1.0187359567107e-06,1.04140885022821e-06,-1.64261805660204e-06,-2.53070129983129e-06,-0.0652387058452157,-0.000370573695531414,-1.6872886165512e-05,0.000310494480682023,-0.000300968556648065,-0.000997034541497353,-4.17879688236651,-0.0740857953413273,0.000905311342604789,0.0597856806231478,-0.0173237762321002,-0.0698707742964889,-0.69801967849744 +5.558,-2.26238812585378e-06,-1.00498780909036e-06,1.69079970163341e-06,-2.29494754902526e-06,-4.71292347804103e-06,-0.0735976679463491,-0.000599223870354695,-5.19975293690408e-05,0.000488237676531924,-0.000297984336049933,-0.00100631039183323,-4.18041521843002,0.0365849882390391,0.0168791995053322,-0.029811646188335,0.0433992456412465,0.121171166433548,-0.94757752609354 +5.56,-3.89067387283545e-06,-1.22672607418689e-06,2.99435955635613e-06,-2.83455540080191e-06,-6.55594286716465e-06,-0.0819603667189377,-0.000224233742575241,5.06439118558243e-05,0.000191247895928669,-0.00012737157408306,-0.000512349875763108,-4.18258719247088,0.0876426239822206,0.0254072448895691,-0.0720840091297531,0.172877442745721,0.471482425970361,-1.22155339126748 +5.562,-3.15932309615484e-06,-8.02412161667043e-07,2.45579128534817e-06,-2.80443384535756e-06,-6.76232298109369e-06,-0.0903280167162345,-0.000248653374425773,4.96314501892469e-05,0.00019990164001288,0.000393525434933028,0.000879619312048427,-4.18530143199509,0.254856453717873,0.0361680651595895,-0.201741631277712,0.20707153260573,0.550464273450276,153.987597258552 +5.564,-4.88528737053844e-06,-1.02820027342992e-06,3.79396611640756e-06,-1.26045366106997e-06,-3.03746561897134e-06,-0.0987015724469162,0.000795192072296139,0.000195316172494166,-0.000615718629182088,0.000700914556339771,0.00168950721803775,-3.56663680343674,0.272031519392632,0.0320432391631854,-0.21455999379582,-0.0196535297463742,-0.0303429221332684,399.027439597727 +5.566,2.14451930293652e-08,-2.11474716904636e-08,-7.0832313799063e-09,-7.7561999878295e-10,-4.29410894342563e-09,-0.10459456392998,0.000839472703144637,0.000177804406841974,-0.000658338335170305,0.000314911315947539,0.000758247623515366,-2.58919167360436,-0.198685969347162,-0.0489397560332962,0.153892710613029,-0.175232702690278,-0.422399239876323,336.687299033034 +5.568,-1.52739655795951e-06,-3.16982646061947e-07,1.16061277572604e-06,-8.08397279672413e-10,-4.47512490953095e-09,-0.109058339141335,4.48194907402782e-07,-4.42851639040293e-07,-1.47786729902383e-07,-1.6254421419946e-08,-8.97414677292107e-08,-2.21988760730445,-0.49205827971157,-0.105308379988012,0.369224584925119,-0.0787318494938936,-0.189584089964986,98.3260159038514 +5.57,2.32379726589765e-08,-2.2918878246625e-08,-7.67437829951589e-09,-8.40637684462742e-10,-4.65307481434252e-09,-0.113474114359199,-0.00112876041570186,-0.000243429113110121,0.000818560004530337,-1.6082028070354e-08,-8.87363446611209e-08,-2.19588760998891,-0.00188754947934859,-0.000404753058760285,0.00136777439092706,1.07575406914871e-07,6.1136859463366e-07,11.999998538458 +5.572,-6.04243822076647e-06,-1.29069909850232e-06,4.43485279384703e-06,-8.72725391953821e-10,-4.83007028817539e-09,-0.117841889581289,-7.10200300999076e-06,-2.06186387408125e-06,5.32331083380525e-06,-1.58241197922866e-08,-8.72959933506763e-08,-2.17188761315063,0.661457178278368,0.1399330194045,-0.482351449765602,1.33659576463167e-07,7.39531699772071e-07,11.9999983965979 +5.574,-5.17003938098337e-09,-3.11663337429491e-08,1.36188650357028e-08,-9.03934163631881e-10,-5.00225878774518e-09,-0.1221616648118,0.00151706829741132,0.000316302964507818,-0.00111084579453186,-1.55473897645014e-08,-8.57782178620329e-08,-2.14788761640252,-0.734566902619907,-0.182390943789066,0.514535105776918,8.54507437040013e-08,4.70946198709874e-07,11.9999986823489 +5.576,2.5834968879479e-08,-2.54872404709117e-08,-8.53038428089148e-09,-9.34914951011834e-10,-5.17318315962356e-09,-0.1264334400469,-0.00294536961348995,-0.000731625639030427,0.00206346373394171,-1.54823168174705e-08,-8.54122085558366e-08,-2.12388761842123,-0.488240519488558,-0.107258516399734,0.35341107831003,9.5329126536228e-08,5.13628202465044e-07,11.99999863387 +5.578,-1.17866484933421e-05,-2.95766888986498e-06,8.26747380080345e-06,-9.6586343090177e-10,-5.34390762196857e-09,-0.130657215285486,-0.000435893780543133,-0.000112731101091167,0.000302798518708422,-1.51660732583564e-08,-8.37237050521725e-08,-2.09988762186703,1.47477801357203,0.36601392302891,-1.03316742631696,1.66406818879204e-07,8.8506979522663e-07,11.9999982319012 +5.58,-1.71774015329286e-06,-4.76411644835528e-07,1.20266369055266e-06,-9.95579244045253e-10,-5.50807797983222e-09,-0.134832990534368,0.00295374244079752,0.000732430053085054,-0.00206920597132567,-1.48166895419538e-08,-8.18719293749305e-08,-2.07588762549363,-0.686507497375438,-0.211620690333287,0.455349076793829,9.16671252801463e-08,4.8387509277624e-07,11.9999986536587 +5.582,2.83212698466706e-08,-2.79486775250914e-08,-9.35008449831631e-09,-1.02513018906958e-09,-5.67139533946825e-09,-0.13896076578746,-0.00318192377004458,-0.000959213862424219,0.00212419482588354,-1.47994047572359e-08,-8.17882046810678e-08,-2.0518876272524,-0.910868707544244,-0.235751698276434,0.632149677689897,8.36466312889294e-08,4.37008935987311e-07,11.9999987031916 +5.584,-1.44454352334726e-05,-4.31326709453284e-06,9.69944299408776e-06,-1.0547768630742e-09,-5.83523079855652e-09,-0.143040541043378,-0.000689732389379866,-0.000210576740020789,0.000459392739434201,-1.4482103016798e-08,-8.01238936309811e-08,-2.02788763068086,1.70023916736996,0.507488751303983,-1.13789725277371,1.74498436532899e-07,9.15076174552341e-07,11.9999981977095 +5.586,-2.7306082876731e-06,-8.70255637608341e-07,1.8282208732387e-06,-1.08305860113678e-09,-5.99189091399221e-09,-0.147072316310184,0.00361903289943602,0.00107074114279194,-0.00242739418521181,-1.41014110111042e-08,-7.8127899982858e-08,-2.00388763446156,-0.78291901315567,-0.272606449519093,0.503046549562306,9.05941988086287e-08,4.73421649101009e-07,11.999998653002 +5.588,3.06963642698888e-08,-3.03025233655552e-08,-1.01337467584006e-08,-1.11118250711861e-09,-6.14774239848792e-09,-0.151056091581224,-0.0038214084420022,-0.00130100253809704,0.00247157893768321,-1.41197262215635e-08,-7.82302070345772e-08,-1.97988763606885,-1.19130384292367,-0.365314892960291,0.792224122770283,7.62133411943477e-08,3.96740799939349e-07,11.9999987348298 +5.59,-1.80162420556802e-05,-6.07426578999593e-06,1.17145366239704e-05,-1.13953750602303e-09,-6.30481174213049e-09,-0.154991866854459,-0.00114618247225814,-0.000390518429049064,0.000741502305868974,-1.37965576463268e-08,-7.65409367831008e-08,-1.95588763952225,2.08342720626897,0.70285799168889,-1.35073334917094,1.86540886904694e-07,9.76514875909677e-07,11.9999981377461 +5.592,-4.55403352476319e-06,-1.59237623956199e-06,2.95587547671783e-06,-1.16636873770393e-09,-6.45390614562036e-09,-0.158879642139313,0.0045123003830746,0.00151042942865884,-0.00293135445900117,-1.33735626739447e-08,-7.43241475309381e-08,-1.93188764351786,-0.736048901496292,-0.274023917118068,0.46490772685069,9.26966836615307e-08,4.88655990667133e-07,11.999998632976 +5.594,3.29594766201868e-08,-3.25480753599061e-08,-1.08812120355739e-08,-1.19303175671881e-09,-6.60210833225428e-09,-0.162719417428531,-0.00409037807824364,-0.00148661409752146,0.00260113321327194,-1.34257709116807e-08,-7.4586312820432e-08,-1.90788764499034,-1.50033867810234,-0.512116431115034,0.969996861796256,6.63696528284066e-08,3.53383121372402e-07,11.9999987734423 +5.596,-2.09155458377359e-05,-7.53883262964716e-06,1.33604083298045e-05,-1.22007182135064e-09,-6.75225139690205e-09,-0.166511192719274,-0.00148905432933408,-0.000538036295801074,0.000948632988183422,-1.31080840626311e-08,-7.29106150454486e-08,-1.8838876484241,2.33090211654904,0.840257150656968,-1.48532952639792,1.92492723150773e-07,1.01608912256715e-06,11.9999981036644 +5.598,-5.92325784071548e-06,-2.18469325856396e-06,3.7836507406977e-06,-1.24546409296933e-09,-6.89375079243604e-09,-0.170254968022226,0.00523323038795151,0.00187441450510604,-0.00334018489231908,-1.26558000190777e-08,-7.05219563301639e-08,-1.85988765257569,0.744704813063085,0.268841583756095,-0.474375227504704,1.39520339726559e-07,7.45115774640198e-07,11.9999983775125 +5.6,1.73757140724262e-08,-4.11746092221499e-08,-3.3123947335012e-10,-1.27069502142696e-09,-7.03433922222274e-09,-0.173950743329577,0.00148976492291859,0.000537330039223428,-0.000948867921835605,-1.25500027037248e-08,-6.99301519468875e-08,-1.83588765491404,-3.30413178204525,-1.21098908889897,2.09821726463954,5.93622373409011e-09,5.41233724465627e-08,11.999999070829 +5.602,3.58018509595548e-08,-3.5373101670011e-08,-1.18209466451469e-08,-1.29566410378423e-09,-7.17347140022362e-09,-0.177598518641883,-0.00798329674023096,-0.00296954185049039,0.00505268416624003,-1.26320551241413e-08,-7.03054628403776e-08,-1.81188765629236,-1.47203000034401,-0.544092133987921,0.932886310182447,6.4826616296571e-08,3.6793484925088e-07,11.9999987564959 +5.604,-3.19158112468479e-05,-1.19193420111824e-05,2.02104054254845e-05,-1.32122324192352e-09,-7.31556107358422e-09,-0.181198293954746,-0.00439835507845678,-0.00163903849672802,0.00278267731889377,-1.22906962385385e-08,-6.84584125498842e-08,-1.78788765988807,3.77016685964541,1.40172830653313,-2.38624397711965,2.34305630453936e-07,1.25937281437007e-06,11.9999978680975 +5.606,-1.75576184628656e-05,-6.59152708858135e-06,1.11188883289287e-05,-1.34482688873838e-09,-7.44730505042313e-09,-0.184750069281435,0.00709737069834901,0.00263737137564153,-0.00449229174223754,-1.16948326023256e-08,-6.52679715828979e-08,-1.76388766481998,2.19934266265932,0.819354740753166,-1.39139328711745,1.81559628443326e-07,9.92294788008355e-07,11.9999981360667 +5.608,-3.52632845344869e-06,-1.3698565086151e-06,2.24123845653235e-06,-1.36800257233283e-09,-7.57663295991584e-09,-0.188253844614027,0.00439901557218149,0.00163838046628502,-0.00278289582957666,-1.15644577247651e-08,-6.44892333978503e-08,-1.73988766734379,-3.73722694142334,-1.39812593892028,2.36399569558174,-1.27415439316988e-08,-1.43999395777082e-08,11.999999138355 +5.61,3.84438258622943e-08,-3.80052234405515e-08,-1.26949893791695e-08,-1.39108471963745e-09,-7.70526198401456e-09,-0.191709619950811,-0.00785153706734601,-0.00295513238004021,0.00496369104009047,-1.17457987780524e-08,-6.53255713412087e-08,-1.71588766826655,-2.19143153310107,-0.820255169318391,1.38593255126988,3.6070105235352e-08,2.47437487162857e-07,11.9999988786639 +5.612,-3.49324767228293e-05,-1.31903860287746e-05,2.2096002616892e-05,-1.41498576744503e-09,-7.83793524528065e-09,-0.195117395287092,-0.00436671056022182,-0.00164264021098819,0.00276083437550224,-1.14201773038238e-08,-6.3499483449199e-08,-1.69188767182914,3.92928390662949,1.47809040907282,-2.48402001569128,2.32784277965456e-07,1.28266494648173e-06,11.9999978531926 +5.614,-1.74283984150231e-05,-6.60856606739257e-06,1.10306425126286e-05,-1.43676542885274e-09,-7.95925991781132e-09,-0.198477170638127,0.00786559855917023,0.00295722925625042,-0.00497238902267355,-1.08146616661907e-08,-6.01949115552824e-08,-1.66788767685379,2.18350790498367,0.821167590273839,-1.38046767650418,1.74728287394883e-07,9.86894593827364e-07,11.9999981476545 +5.616,-3.47008248614486e-06,-1.36146900377165e-06,2.20644652619562e-06,-1.4582444141098e-09,-8.0787148915018e-09,-0.201788945994508,0.00436732105971383,0.00164203015010754,-0.00276103633051511,-1.07212641542441e-08,-5.95519050738891e-08,-1.64388767923852,-4.35263838473005,-1.64015294935767,2.75319804523562,-3.77389092204759e-08,-1.18155485399074e-07,11.9999992410264 +5.618,4.08858238341858e-08,-4.04454669616916e-08,-1.35028094330747e-08,-1.47965048546972e-09,-8.19746753810691e-09,-0.205052721355082,-0.00954495497975193,-0.00360338254118101,0.00604040315827015,-1.09656173030726e-08,-6.06675334968787e-08,-1.61988767988968,-2.5870025913351,-0.974746033745261,1.63652000657724,1.82562298605888e-08,1.79379081030116e-07,11.9999989474632 +5.62,-4.16499024051484e-05,-1.57749991684941e-05,2.63680591592735e-05,-1.50210688332209e-09,-8.32138502548929e-09,-0.208268496714066,-0.00598068930562544,-0.00225695398487308,0.00378504369579313,-1.06482392348018e-08,-5.88343887497687e-08,-1.59588768344867,4.5740891761091,1.72630128133825,-2.89442057910858,2.48124437663475e-07,1.38717683173865e-06,11.9999977573959 +5.622,-2.38818713986649e-05,-9.068261406453e-06,1.51266719737378e-05,-1.52224344240892e-09,-8.43280509310596e-09,-0.211436272088875,0.00875140172468247,0.00330182258417124,-0.00553727915816288,-9.97311955241886e-09,-5.51188261699247e-08,-1.5718876888601,2.98555150816459,1.12646938285597,-1.88944396456773,1.95855484608757e-07,1.11781417455905e-06,11.9999980243398 +5.624,-6.64429550641457e-06,-2.56770883180768e-06,4.21894252661953e-06,-1.54199936153177e-09,-8.54186033016902e-09,-0.214556047469507,0.00596151672703427,0.00224892354655132,-0.00377273216247864,-9.86481729636669e-09,-5.4363132051532e-08,-1.54788769135131,-1.76985330263009,-0.667675587607576,1.11973468232286,4.19091844555697e-08,3.14260770181423e-07,11.9999988171209 +5.626,-3.58044905252042e-08,-7.25672202467331e-08,3.57433238215576e-08,-1.56170271159439e-09,-8.65025762131211e-09,-0.217627822854281,0.0016719885141613,0.000631120233740637,-0.00105834042887094,-9.80548281459656e-09,-5.38617830891989e-08,-1.52388769359161,-4.83223856021872,-1.83213694628554,3.06093111854215,-5.65571894878319e-08,-2.0158180680547e-07,11.9999993221497 +5.628,4.36585502298914e-08,-4.32278968454103e-08,-1.44191888637457e-08,-1.58122129279015e-09,-8.75730746252579e-09,-0.220651598243873,-0.0133674375138385,-0.00507962423859005,0.00847099231168862,-1.0091046054318e-08,-5.51694592787538e-08,-1.49988769406271,-2.87059484068632,-1.09027089629569,1.81889658350337,6.246739236994e-09,1.27557686635554e-07,11.9999989995597 +5.63,-5.35055545458733e-05,-2.03910641746047e-05,3.39197125705723e-05,-1.60206689581166e-09,-8.8709354584271e-09,-0.223627373630532,-0.00981039084858273,-0.00372996335144162,0.00621724590514175,-9.78049585764859e-09,-5.33515523426568e-08,-1.47588769759338,5.61241096974302,2.13136961554748,-3.55644686981206,2.78017192601459e-07,1.55274924862642e-06,11.99999760596 +5.632,-3.91979048440967e-05,-1.49630813026103e-05,2.48545644317005e-05,-1.62034327622074e-09,-8.97071367189639e-09,-0.226555149034246,0.0090822063651311,0.00344585422359895,-0.00575479516755807,-8.97897728391228e-09,-4.89584622842488e-08,-1.45188770363888,4.69235745597636,1.78334715596263,-2.9736557114981,2.48200765496297e-07,1.39577585600835e-06,11.9999977619857 +5.634,-1.71767290853449e-05,-6.60764728020735e-06,1.09005319003375e-05,-1.63798280494731e-09,-9.06676930756412e-09,-0.229434924445088,0.00895903897532479,0.0034034252724097,-0.00567737694085197,-8.78769279566329e-09,-4.77684489186227e-08,-1.42788770654543,-1.19412333619008,-0.45134279739992,0.756463520657927,5.9651936167916e-08,4.03873115503774e-07,11.999998733663 +5.636,-3.36174894279354e-06,-1.34938021296993e-06,2.14505666829012e-06,-1.65549404740339e-09,-9.1617874675709e-09,-0.232266699860428,0.00430571302037024,0.00164048303399907,-0.00272894108492602,-8.74036953924059e-09,-4.73429698222335e-08,-1.40388770870422,-5.69269874391707,-2.18614988790484,3.60931584785346,-8.29857016442844e-08,-3.50625778414113e-07,11.9999994658834 +5.638,4.61229961341847e-08,-4.57151442118109e-08,-1.52324393654091e-08,-1.67294428310427e-09,-9.25614118685303e-09,-0.235050475279904,-0.013811756000341,-0.00534117427920869,0.0087598864505603,-9.11963560224039e-09,-4.9170952032279e-08,-1.3798877086819,-3.64227289343258,-1.40352566699838,2.30951143226282,-1.69152886137645e-08,-8.49841030618253e-09,11.9999991339009 +5.64,-5.86087729441513e-05,-2.27140773298024e-05,3.71846024705275e-05,-1.69197258981235e-09,-9.3584712757e-09,-0.237786250695155,-0.0102633785533585,-0.00397361963399384,0.00650910464412426,-8.80803069369564e-09,-4.73769634634582e-08,-1.35588771216862,6.01912614863231,2.32424896011765,-3.81747902586432,2.90873228281804e-07,1.60548310757195e-06,11.9999975720594 +5.642,-4.10073912173042e-05,-1.5940193680189e-05,2.60211861371346e-05,-1.70817640587906e-09,-9.44564904070688e-09,-0.240474026128579,0.010264748594191,0.00395582156126295,-0.0065100296528987,-7.95614268911304e-09,-4.27490196019905e-08,-1.33188771839366,4.90781616315467,1.89896744558106,-3.11253131062316,2.55734669551488e-07,1.41640865702634e-06,11.9999977582177 +5.644,-1.75497785673828e-05,-6.89079108474877e-06,1.11444838589297e-05,-1.72379716056881e-09,-9.52946735410798e-09,-0.243113801568731,0.00936788609926241,0.00362225014833127,-0.00594102059836978,-7.78509201548957e-09,-4.17113288353523e-08,-1.30788772113575,-1.46630829522644,-0.561275346910592,0.92998064059482,5.36324457063453e-08,3.47962977873464e-07,11.9999987948873 +5.646,-3.5358468202587e-06,-1.45119308686548e-06,2.25710374365806e-06,-1.73931677394101e-09,-9.61249435604827e-09,-0.245705577013122,0.00439951541328587,0.00171072017362083,-0.00279010709051983,-7.74161290628768e-09,-4.13571676904968e-08,-1.28388772321411,-6.28952663440026,-2.47520419406641,3.98924466691057,-9.74723773912286e-08,-4.54363976995958e-07,11.999999563198 +5.648,4.82830857587158e-08,-4.79103902661926e-08,-1.59445031483463e-08,-1.75476361219395e-09,-9.69489602486995e-09,-0.248249352461586,-0.0157902204383359,-0.00627856662793329,0.0100159580692707,-8.17498152505444e-09,-4.35287847433359e-08,-1.25988772288296,-4.16132039856303,-1.64721636322006,2.63928064131663,-2.92890711679561e-08,-1.02095415452821e-07,11.9999992254502 +5.65,-6.66967285736092e-05,-2.65654595986015e-05,4.23209360207455e-05,-1.77201670004123e-09,-9.78660949502164e-09,-0.250745127904654,-0.0122457661809681,-0.00487814527926012,0.00776701547474789,-7.85876919095952e-09,-4.17655493523081e-08,-1.23588772631231,6.64131988986517,2.6347885765679,-4.21278992263365,3.11469600111181e-07,1.68737940286803e-06,11.9999975181356 +5.652,-4.89347816381193e-05,-1.95604915073089e-05,3.10521173958467e-05,-1.7861986889578e-09,-9.8619582222792e-09,-0.253192903366836,0.0107750591211278,0.00426058767833948,-0.00683520162126575,-6.92910312460958e-09,-3.6779267131863e-08,-1.21188773281041,5.71214539081927,2.27296146535916,-3.62298872994811,2.82324510991375e-07,1.52933395114265e-06,11.9999976741953 +5.654,-2.35964920891028e-05,-9.52310888524543e-06,1.49801295356855e-05,-1.79973311253967e-09,-9.93372656354907e-09,-0.255592678835895,0.0106028153823064,0.00421370058217551,-0.00672493944504295,-6.72947114699415e-09,-3.56482135477382e-08,-1.18788773561553,-1.22030547379824,-0.474882957651114,0.774333247174418,6.45213049658661e-08,3.76493974887192e-07,11.9999987785425 +5.656,-6.52352010889826e-06,-2.70568917860869e-06,4.15235961567784e-06,-1.81311657354577e-09,-1.00045510764701e-08,-0.257944454309298,0.00589383722593536,0.00236105584773523,-0.00373786863256842,-6.67101790474614e-09,-3.52732912323144e-08,-1.16388773769625,-2.23982876362055,-0.887454922486632,1.42067053024794,3.31054628159076e-08,2.05634120844223e-07,11.9999989425531 +5.658,-2.11431853587574e-08,-7.888549430346e-08,2.86550054101609e-08,-1.82641718415866e-09,-1.00748197284783e-08,-0.260248229786681,0.00164350032782322,0.000663880892228583,-0.00104225732405055,-6.5970492957305e-09,-3.48256770643612e-08,-1.13988773984531,-6.45072831038288,-2.64986947120016,4.09167616836188,-9.68287949824437e-08,-4.85177870104007e-07,11.9999995883495 +5.66,5.04812023953416e-08,-5.01656096940639e-08,-1.66696805248279e-08,-1.83950477072869e-09,-1.01438537847276e-08,-0.26250400526868,-0.019909076015599,-0.00823842203706661,0.0126288360408809,-7.05833308467596e-09,-3.72140027127307e-08,-1.11588773934284,-4.50071885477842,-1.86306020643175,2.85471085635964,-3.55687701518025e-08,-1.66399879988094e-07,11.9999992896514 +5.662,-7.96574472477461e-05,-3.30325736425663e-05,5.05439991689283e-05,-1.85465051649736e-09,-1.02236757393293e-08,-0.264711780744051,-0.0163593750912885,-0.00678835993349758,0.0103765861013868,-6.73932437633769e-09,-3.54912765843135e-08,-1.09188774268671,7.41781079808104,3.06047968281393,-4.70540149421251,3.34362745824493e-07,1.78400870465485e-06,11.9999974677871 +5.664,-6.53870191627513e-05,-2.72036053436814e-05,4.14896747250176e-05,-1.86646206823404e-09,-1.02858188910648e-08,-0.266871556239426,0.00976216717672186,0.00400349669418775,-0.00619276993596707,-5.72088210137814e-09,-3.00779678941121e-08,-1.0678877494717,7.13836611056182,2.95606849575493,-4.52771395067401,3.24913707050757e-07,1.73355947652601e-06,11.9999975222638 +5.666,-4.06087785408543e-05,-1.70185868658135e-05,2.57729194250572e-05,-1.87753404490287e-09,-1.03439876109057e-08,-0.268983331741939,0.012194089350962,0.00503591404952346,-0.00773426970131133,-5.43966954813452e-09,-2.85570386782087e-08,-1.04388775259765,-0.0993445138651762,-0.0253728943443717,0.0632767799916101,9.96772109293095e-08,5.43336209355976e-07,11.9999986416538 +5.668,-1.66106617588979e-05,-7.05994914558528e-06,1.05525959197689e-05,-1.88822074642658e-09,-1.04000470457777e-08,-0.271047107249817,0.00936478912126111,0.00390200511681026,-0.0059396628160006,-5.32217325766085e-09,-2.79046230566879e-08,-1.01988775490508,-2.0070896603406,-0.820982780177787,1.27295147216487,4.04919153759575e-08,2.28556756852313e-07,11.9999989379416 +5.67,-3.14962205581401e-06,-1.41056639857418e-06,2.01426816105743e-06,-1.89882273793351e-09,-1.04556061031325e-08,-0.273062882761559,0.00416573070960048,0.00175198292881268,-0.00264246381265239,-5.27770188663071e-09,-2.76428116507996e-08,-0.995887756845891,-7.47326132195658,-3.18710305179819,4.74337205850128,-1.26801347199705e-07,-6.58336232749029e-07,11.9999997515382 +5.672,5.22610795021528e-08,-5.20174303353382e-08,-1.72593308395141e-08,-1.9093315539731e-09,-1.05106182923809e-08,-0.2750306582772,-0.0205282561665619,-0.0088464070903811,0.0130338254180024,-5.82937864645962e-09,-3.05379679876837e-08,-0.971887755898934,-5.28364937475161,-2.26959488525268,3.35420088076336,-5.99156141364566e-08,-3.04296518536869e-07,11.9999994267211 +5.674,-8.52626467220709e-05,-3.67961947601025e-05,5.4149569833073e-05,-1.92214025251936e-09,-1.05777579750832e-08,-0.276950433785155,-0.0169688667894083,-0.00732639661219907,0.0107743397104026,-5.51736434317656e-09,-2.88599977249472e-08,-0.947887759139001,7.94202633126559,3.41352341887357,-5.04208346125217,3.43888112430366e-07,1.83494018590577e-06,11.9999974717512 +5.676,-6.78232060781388e-05,-2.93576038791349e-05,4.30800995107755e-05,-1.93140101134581e-09,-1.06260582832807e-08,-0.278822209313757,0.011239849158504,0.00480768658511471,-0.00713450842700853,-4.453826196738e-09,-2.31982072440599e-08,-0.923887766011923,7.4524845221022,3.21212344415694,-4.73153933528001,3.27534874222423e-07,1.7510715100132e-06,11.9999975561044 +5.678,-4.03032500880598e-05,-1.75654484196458e-05,2.5611536125042e-05,-1.93995555730631e-09,-1.06705508040594e-08,-0.280645984849202,0.0128410712989972,0.00552209716442728,-0.00815181763071541,-4.20722484628701e-09,-2.18557116848952e-08,-0.899887768914589,-0.48489421994419,-0.194264676089707,0.30717294234027,8.34870367285828e-08,4.61582161383099e-07,11.9999987424338 +5.68,-1.64589208821557e-05,-7.2692152214282e-06,1.04728289879175e-05,-1.94822991073096e-09,-1.07134811300202e-08,-0.282421760389415,0.00930027227872745,0.00403062788075597,-0.00590581665764759,-4.11987804982371e-09,-2.13518785985277e-08,-0.875887771042193,-2.17823295284499,-0.929540776698901,1.38229517410435,3.09596098759846e-08,1.8500305454367e-07,11.9999989979442 +5.682,-3.10216097314589e-06,-1.44293689662012e-06,1.98826949444897e-06,-1.9564350695056e-09,-1.07559583184536e-08,-0.284149535933371,0.00412813948761625,0.00180393405763126,-0.00262263693429741,-4.08338640678306e-09,-2.11156994667204e-08,-0.851887772922806,-7.95335120314763,-3.51797749014304,5.05845987102423,-1.43777351136138e-07,-7.42355829587223e-07,11.9999998296343 +5.684,5.36370683111576e-08,-5.34789909023559e-08,-1.77187492733655e-08,-1.96456345635809e-09,-1.07979439278871e-08,-0.285829311481106,-0.0225131325338666,-0.0100412820798178,0.0143280228264516,-4.69498745436832e-09,-2.43213019168769e-08,-0.827887771723651,-5.76593122862609,-2.56559327084562,3.6688755604955,-7.83192954936446e-08,-3.92613025425185e-07,11.9999995163022 +5.686,-9.31546911086024e-05,-4.16080652158868e-05,5.9300360800249e-05,-1.97521501932307e-09,-1.0853243526121e-08,-0.287461087020266,-0.0189355854268856,-0.0084584390257501,0.012052865307683,-4.39666358875761e-09,-2.2686151568421e-08,-0.803887774857603,8.46118075025582,3.74324346050888,-5.39576295055947,3.32232505395862e-07,1.85163516464161e-06,11.9999975411325 +5.688,-7.56887046392228e-05,-3.3887235093899e-05,4.81937424814533e-05,-1.98215011071312e-09,-1.08886885341608e-08,-0.289044862580536,0.0113315904671529,0.00493169176221609,-0.00725502897578392,-3.36605743278502e-09,-1.69147612583113e-08,-0.779887781559126,8.12571698038282,3.59236953156665,-5.18919000002657,2.72200664786132e-07,1.73998662700379e-06,11.9999976762461 +5.69,-4.78283292399857e-05,-2.18812981670202e-05,3.02802448971101e-05,-1.98867924905421e-09,-1.09209025711543e-08,-0.290580638146502,0.0135672824946493,0.00591103910051811,-0.0087038946924256,-3.30786092961296e-09,-1.5726205060405e-08,-0.755887784152613,-0.185763127576329,-0.0402933831523298,0.132417227157712,-3.27203542040613e-08,4.0795318512105e-07,11.9999988224523 +5.692,-2.14195746606194e-05,-1.02430786918239e-05,1.33781637117469e-05,-1.99538155443157e-09,-1.09515933544024e-08,-0.292068413717147,0.0105885379568475,0.00477051822960675,-0.00672536006715301,-3.49693884960128e-09,-1.52829485178269e-08,-0.731887786269311,-2.05003758623913,-0.841160032750486,1.33892733367497,-1.22879137421028e-07,1.56563997876496e-07,11.9999989763818 +5.694,-5.47417741260034e-06,-2.79922524859533e-06,3.37880462850104e-06,-2.00266700445262e-09,-1.09820343652256e-08,-0.293508189291579,0.00536713214969373,0.00254639896951653,-0.0033481853577263,-3.79937747929701e-09,-1.50999490688991e-08,-0.707887788247092,-2.30157489851232,-1.02109792630657,1.46903416976248,-1.43532755125603e-07,1.64581889784148e-07,11.9999989396231 +5.696,4.89539381531845e-08,-5.74828137589467e-08,-1.45777191568053e-08,-2.01057906434876e-09,-1.1011993150678e-08,-0.294899964870135,0.00138223836279925,0.000686126524380915,-0.000849223388103742,-4.07106987010363e-09,-1.46246209586904e-08,-0.683887790510824,-7.90621570574434,-3.98929621670084,4.88897174574089,-3.00958910570414e-07,-6.47249615014627e-07,11.9999996151204 +5.698,5.47760385972984e-08,-5.47191510713585e-08,-1.80889239143056e-08,-2.01895128393303e-09,-1.10405328490604e-08,-0.296243740453623,-0.0262577306732872,-0.0134107858972886,0.0162077016252395,-5.0032131215788e-09,-1.76889475289579e-08,-0.659887789786605,-6.06744894119035,-3.06294458364722,3.76627136977956,-2.33230101898355e-07,-3.46896122938845e-07,11.9999993845705 +5.7,-0.000104981968755007,-5.37006264029194e-05,6.48162287818083e-05,-2.03059191683508e-09,-1.10827489407939e-08,-0.297539516029282,-0.0228875574019649,-0.0115656518102094,0.0142158620910162,-5.00399027769715e-09,-1.60122054504459e-08,-0.635887792972537,8.89392008297824,4.60840474897389,-5.44355123355817,2.19964671477106e-07,1.93874603870936e-06,11.9999975032113 +5.702,-9.14954535692521e-05,-4.63173263919037e-05,5.68453594401441e-05,-2.03896724504382e-09,-1.11045816708621e-08,-0.298787291625513,0.00931794965862187,0.0050228330986049,-0.00556650330899084,-4.12335443567048e-09,-9.93396337412132e-09,-0.611887799773765,9.13321677965119,4.67214167818788,-5.63444318536768,2.54310461578477e-07,1.98206555335289e-06,11.9999974999048 +5.704,-6.77101701205239e-05,-3.3609294008502e-05,4.25502155458474e-05,-2.04708533457776e-09,-1.11224847942903e-08,-0.299987067228377,0.0136453097166359,0.00712291490254011,-0.00832191065045205,-3.98674843138336e-09,-8.08394323703519e-09,-0.587887802972923,0.998285693945291,0.421098107628,-0.680109495997176,4.94777829820283e-08,7.45226796939165e-07,11.9999985628804 +5.706,-3.69142147027025e-05,-1.782566678174e-05,2.35577168383322e-05,-2.05491423876936e-09,-1.11369174438103e-08,-0.301138842837405,0.0133110924344035,0.00670722552911709,-0.00828694129297984,-3.92544330374234e-09,-6.95305618636432e-09,-0.563887805522238,-1.24883527964214,-0.736211507246529,0.704535733979961,1.24501103868643e-08,3.8716599370891e-07,11.9999988884899 +5.708,-1.4465800382904e-05,-6.78039189203061e-06,9.40245037392429e-06,-2.06278710779273e-09,-1.11502970190358e-08,-0.302242618450466,0.00864996859806675,0.00417806887355367,-0.00550376771453189,-3.93694798983589e-09,-6.53527926219938e-09,-0.539887807418958,-2.42019923088391,-1.25649690035566,1.48294280015088,3.11382863916116e-09,1.7627219128756e-07,11.9999990921817 +5.71,-2.31434031043934e-06,-1.11339128752719e-06,1.54264598020704e-06,-2.0706620307287e-09,-1.11630585608591e-08,-0.30329839406708,0.00363029551086891,0.001681237927695,-0.00235517009237697,-3.9129879891857e-09,-6.24796742121416e-09,-0.515887809153516,-8.88376381204414,-3.90516737569188,5.87877421940932,-1.71735889398009e-07,-9.19993248249176e-07,12.0000000786805 +5.712,5.53816605700086e-08,-5.5440181251365e-08,-1.82299955825416e-08,-2.07843905974947e-09,-1.11752888887207e-08,-0.30430616968708,-0.0268850866501059,-0.0114426006292121,0.0180113291631028,-4.62389154742785e-09,-1.02152522551957e-08,-0.491887807104241,-6.70297168885626,-2.87337970361395,4.47472451034491,-8.59711607456981e-08,-5.99196040007096e-07,11.9999998111647 +5.714,-0.000109854686910875,-4.68837938043809e-05,7.35879626326263e-05,-2.08915759691841e-09,-1.12039195698799e-08,-0.305265945295497,-0.0231815912445591,-0.00981228088676207,0.0155437279490047,-4.25687263216853e-09,-8.64475158124281e-09,-0.467887809908852,9.5169418541357,4.07168237026167,-6.36965644451058,4.2515817255647e-07,2.03056148284585e-06,11.9999975022882 +5.716,-9.26709833176768e-05,-3.9304563728304e-05,6.21566818004432e-05,-2.09546655027815e-09,-1.12098678950456e-08,-0.306177720926715,0.0111826807664412,0.00484412885183636,-0.00746729661494235,-2.92325885720178e-09,-2.09300632381138e-09,-0.443887817095083,9.47044272484687,4.01299154870922,-6.3503808973008,4.39660460815754e-07,2.00629096669399e-06,11.9999975231505 +5.718,-6.51239638451151e-05,-2.75072783970376e-05,4.37187761728602e-05,-2.10085063234722e-09,-1.12122915951751e-08,-0.307041496563878,0.0147001796548242,0.00623968530807303,-0.00985779564019571,-2.49823078890571e-09,-6.19587714467752e-10,-0.419887819816255,0.490397030890307,0.170358322205696,-0.34048862796031,1.79431122737823e-07,5.20129078696145e-07,11.999998829074 +5.72,-3.38702646983866e-05,-1.43458224960147e-05,2.27254992396647e-05,-2.10545947343377e-09,-1.12123462459035e-08,-0.30785727220598,0.0131442688900022,0.00552556214065907,-0.00882925112678344,-2.20553436625057e-09,-1.24900090270316e-11,-0.395887821778793,-1.65629323959131,-0.710557900515156,1.11047529097129,1.23729151924157e-07,1.51996470965088e-07,11.9999991510763 +5.722,-1.25468882851004e-05,-5.40502983439883e-06,8.40177166572253e-06,-2.10967276981222e-09,-1.12123415552112e-08,-0.308625047850993,0.0080750066964582,0.00339745370601209,-0.00541589447631006,-2.00331418120902e-09,-1.16018306073316e-11,-0.371887823211944,-2.49841738887411,-1.04705805512345,1.68106321990702,1.05578740194778e-07,2.72698530423484e-09,11.9999992786122 +5.724,-1.57023791255012e-06,-7.5600767196482e-07,1.06192133442207e-06,-2.11347273015861e-09,-1.12123926532259e-08,-0.309344823498828,0.00315059933450462,0.00133732992016481,-0.00210499824715461,-1.78321940547141e-09,-1.58206781009102e-12,-0.347887824664339,-9.01357523426041,-3.98032188315341,5.93924240223118,-8.29631502387203e-08,-1.04259136046748e-06,12.000000164869 +5.726,5.55090529166802e-08,-5.57101537401739e-08,-1.82213228949735e-08,-2.11680564743411e-09,-1.12123478834825e-08,-0.31001659914965,-0.0279792942405795,-0.0125238338265998,0.0183410751326121,-2.33516678216387e-09,-4.18196727247679e-09,-0.323887822552473,-6.8390755682593,-3.06762010358209,4.48002255112455,-1.3907278106807e-08,-6.89229923134248e-07,11.9999998500055 +5.728,-0.000113487414874856,-5.08513429783586e-05,7.44262218648623e-05,-2.12281339728726e-09,-1.12291205223158e-08,-0.310640374789038,-0.0242057029385296,-0.0109331504941622,0.0158150919573416,-1.83884851789863e-09,-2.75850176034678e-09,-0.299887825264322,9.73225068491527,4.30343934936802,-6.40508648741416,4.81789955153488e-07,1.96642875593935e-06,11.9999975699711 +5.73,-9.67673027012124e-05,-4.37883121303939e-05,6.32421465064786e-05,-2.1241610415057e-09,-1.12233818905239e-08,-0.311216150450708,0.010949708499086,0.0046899235708742,-0.00727927081704745,-4.08006961549699e-10,3.68374775128147e-09,-0.275887832272584,9.75632061691521,4.36499310380146,-6.39198366193109,4.7938562841566e-07,1.96268695740171e-06,11.9999975787516 +5.732,-6.96885808785068e-05,-3.20916486948597e-05,4.53091385966692e-05,-2.12444542513346e-09,-1.12143855313107e-08,-0.311743926118128,0.0148195795291356,0.00652682192104559,-0.00975284269038558,7.86939957642205e-11,5.09224606926096e-09,-0.25188783494931,0.693802869070343,0.383314247355546,-0.417695441492168,2.03691230549219e-07,5.04896471853793e-07,11.9999988335713 +5.734,-3.74889845846764e-05,-1.76810244462144e-05,2.42307757449406e-05,-2.12384626552264e-09,-1.12030129062468e-08,-0.312223701790505,0.013724919975367,0.00622318056029621,-0.00895005258301594,4.06757960647087e-10,5.70333363869642e-09,-0.227887836938304,-1.51483574540641,-0.607179618306392,1.02256118358955,1.32713284806125e-07,1.55635920817404e-07,11.9999991304681 +5.736,-1.47889009770447e-05,-7.19892645367759e-06,9.50892826460936e-06,-2.12281839329087e-09,-1.11915721967559e-08,-0.312655477465881,0.00876023654751065,0.00409810344782029,-0.00566259795602784,6.09547134988662e-10,5.71478975253051e-09,-0.203887838427443,-2.5034731879073,-1.1093349833684,1.64207213204401,9.78956499197547e-08,8.28503932094687e-09,11.9999992493863 +5.738,-2.44803839462987e-06,-1.28861065493147e-06,1.58038392082671e-06,-2.12140807698269e-09,-1.11801537472367e-08,-0.313039253144215,0.00371102722373673,0.0017858406268221,-0.00238176405483918,7.98340560326149e-10,5.73647379598021e-09,-0.179887839940753,-9.26049808061301,-4.63488849711928,5.90696014049193,-1.01033764687807e-07,-1.01036193300676e-06,12.00000005725 +5.74,5.52079179039211e-08,-5.55639463883928e-08,-1.81279547484259e-08,-2.11962503104957e-09,-1.1168626301572e-08,-0.313375028825644,-0.0282817557749455,-0.0144414505406589,0.0179652426059425,2.05412076237388e-10,1.67334202050303e-09,-0.155887838198438,-7.07281374045821,-3.60266612071149,4.49726824542674,-4.55017967748374e-08,-6.65103389030192e-07,11.9999997715555 +5.742,-0.0001155750614944,-5.90544128175607e-05,7.34413543445889e-05,-2.12058642867774e-09,-1.11734603791547e-08,-0.313662804497008,-0.024580227738093,-0.0126248238560223,0.0156073089268658,6.1633337322682e-10,3.07606023985974e-09,-0.131887840854537,9.87363266530286,5.00145645246617,-6.27474459851113,4.29167118509698e-07,1.92515968444597e-06,11.9999976946946 +5.744,-9.82657030344572e-05,-5.05548593704719e-05,6.24111077527079e-05,-2.11715969755666e-09,-1.11563220606126e-08,-0.313902580189062,0.0112127748862616,0.00556437526920355,-0.00713373578809923,1.92208055027599e-09,9.37398075828605e-09,-0.107887847419665,9.89129838274555,5.05142744408735,-6.28078854820189,4.18307749549967e-07,1.92436344636999e-06,11.9999977083428 +5.746,-7.07239619493483e-05,-3.67969117407441e-05,4.49064111921887e-05,-2.11289810647664e-09,-1.11359644561215e-08,-0.314094355886687,0.0149849657928936,0.00758088592032939,-0.00951584526594458,2.28956437142688e-09,1.07735140253406e-08,-0.0838878500211599,0.653350091599543,0.390224603953218,-0.409705665373579,1.43253464646271e-07,5.11354847355059e-07,11.9999988542073 +5.748,-3.83258398628759e-05,-2.02313156891509e-05,2.43477266889253e-05,-2.10800144007095e-09,-1.11132280045112e-08,-0.314238131589147,0.01382617525266,0.00712527368501659,-0.00877255844959373,2.49509440886114e-09,1.14194001477065e-08,-0.0598878520028306,-1.52338680600147,-0.728921173220962,0.968124614971301,7.11358055795237e-08,1.80673184747098e-07,11.9999991233085 +5.75,-1.54192609387142e-05,-8.29581700068083e-06,9.81617739381768e-06,-2.10291772884119e-09,-1.10902868555307e-08,-0.314333907294698,0.00889141856888845,0.00466520122744586,-0.00564334680605981,2.57410759374494e-09,1.14962067643289e-08,-0.0358878535279312,-2.48943477757023,-1.26626669450171,1.57850778016423,3.43978318050056e-08,3.67258307092713e-08,11.9999992397034 +5.752,-2.76016558732606e-06,-1.57051077936954e-06,1.77433946468852e-06,-2.09770500969597e-09,-1.10672431774539e-08,-0.314381683003259,0.00386843614238021,0.0020602069070103,-0.00245852732893751,2.63268573608115e-09,1.15663034705436e-08,-0.0118878550440225,-9.35961332999718,-5.06277529320735,5.97797941922341,-1.65286187514652e-07,-9.89326676137797e-07,12.000000023437 +5.754,5.44836308083441e-08,-5.4989372638703e-08,-1.79319219334451e-08,-2.09238698589687e-09,-1.10440216416485e-08,-0.314381458714874,-0.0285470347511045,-0.0155858999453858,0.0182685708708365,1.91296284368626e-09,7.53890005977724e-09,0.0121121465658222,-7.1708620114413,-3.94314524058784,4.56920155654502,-1.31953475923505e-07,-6.93708979148578e-07,11.9999998316217 +5.756,-0.000116948304591757,-6.39141105609198e-05,7.48486229480427e-05,-2.09005315832123e-09,-1.10370875772148e-08,-0.314333234416996,-0.0248150119033882,-0.0137123740553428,0.0158182788972446,2.10487183238707e-09,8.79146755394896e-09,0.0361121442824698,9.98581571306445,5.35920344084774,-6.42869122724961,2.82652373728877e-07,1.82028524198323e-06,11.9999979512514 +5.758,-9.92055639827336e-05,-5.4904485594004e-05,6.32551836670381e-05,-2.08396749856732e-09,-1.10088557714327e-08,-0.314237010137745,0.0113962281011489,0.00585091381800277,-0.00744619403815912,3.04357233860164e-09,1.48200410277094e-08,0.0601121383708225,9.97321241511565,5.43298988451852,-6.39123915653541,2.11532180660495e-07,1.81253796693821e-06,11.9999979195457 +5.76,-7.13633921871661e-05,-4.05104552889113e-05,4.50638467954095e-05,-2.07787886896682e-09,-1.09778074131039e-08,-0.314092785863512,0.01507783775707,0.00801958548272884,-0.0097466777288942,2.95100055502895e-09,1.6041619421701e-08,0.0841121359606473,0.617886747617987,0.465529939605498,-0.340577686670295,-1.01680816544527e-07,4.4312817304345e-07,11.9999989047918 +5.762,-3.88942129544469e-05,-2.2826143663085e-05,2.42684727514569e-05,-2.0721634963472e-09,-1.09446892937459e-08,-0.313900561593902,0.0138677750916211,0.00771303357642497,-0.00880850478484045,2.63684907242349e-09,1.65925537198834e-08,0.108112133989995,-1.52772903277089,-0.699516840203707,1.03745896118076,-1.92550836386309e-07,1.61108973385284e-07,11.9999990918542 +5.764,-1.58922918206753e-05,-9.65832098320796e-06,9.82982765604379e-06,-2.06733147267713e-09,-1.09114371982244e-08,-0.313660337327552,0.00896692162598573,0.0052215181219137,-0.00559684188417071,2.18079720948363e-09,1.66860553152422e-08,0.13211213232807,-2.47033875884201,-1.32798926703162,1.58666248899628,-2.29529936723775e-07,6.70748179230547e-08,11.9999991530246 +5.766,-3.02652645050791e-06,-1.94007117543249e-06,1.88110521477658e-06,-2.06344030750927e-09,-1.0877945072485e-08,-0.31337211306459,0.0039864200562542,0.00240107650829906,-0.00246185482885602,1.71872932552849e-09,1.68608529915755e-08,0.156112130602088,-9.34810716939836,-5.59898500004611,5.86481534779778,-4.08504827187471e-07,-8.84075798680365e-07,11.9999998297658 +5.768,5.33884043397992e-08,-5.40149500127818e-08,-1.75916593792014e-08,-2.06045655537501e-09,-1.08439937862581e-08,-0.313035888805144,-0.0284255070516036,-0.0171744218782683,0.0178624195070178,5.46777900733924e-10,1.31497521205211e-08,0.180112131647128,-7.21271552521379,-4.31511190298557,4.54833368428684,-3.37955358142869e-07,-5.63753904670704e-07,11.9999996317327 +5.77,-0.000116728554656935,-7.06377586885132e-05,7.33307832428559e-05,-2.06125319590633e-09,-1.08253460640029e-08,-0.312651664538001,-0.0248644420446042,-0.0148593711036452,0.0157314799082934,3.66907892956861e-10,1.46058373728925e-08,0.204112129129024,9.89384720975688,6.06465700810154,-6.158356102152,1.38528077897634e-07,1.89396588690178e-06,11.999997939226 +5.772,-9.9404379774088e-05,-5.94914993646001e-05,6.29083279738013e-05,-2.05898892380318e-09,-1.07855704367665e-08,-0.312219440288628,0.0111498817874284,0.00708420615414063,-0.00677100490159293,1.10089021232452e-09,2.07256156681291e-08,0.228112123404037,9.93756658699841,6.01269581259002,-6.2394378886667,1.6792643664504e-07,1.90724866455784e-06,11.999997960352 +5.774,-7.21290275072263e-05,-4.23009340719538e-05,4.62467636364872e-05,-2.05684963505703e-09,-1.07424436013304e-08,-0.311739216044385,0.0148858243033851,0.00919141214671228,-0.00922627164637068,1.03861363953695e-09,2.2234832031123e-08,0.252112120970427,0.679726798567715,0.298139172287154,-0.504962763535314,-4.6525283625759e-08,5.81722170432911e-07,11.9999989152594 +5.776,-3.98610825605543e-05,-2.2725850777755e-05,2.60032413883227e-05,-2.05483446924504e-09,-1.06966311086421e-08,-0.311210991804746,0.0138687889816989,0.00827676284328912,-0.00879085595573397,9.14789077821507e-10,2.30525043498605e-08,0.276112119065069,-1.44138696705225,-0.993733041330529,0.82527335762623,-7.12381542645053e-08,2.61110577602737e-07,11.9999991657252 +5.778,-1.66538715804243e-05,-9.19388269879362e-06,1.10833398135474e-05,-2.05319047874575e-09,-1.06502335839309e-08,-0.310634767568125,0.00912027643517543,0.00521647998138971,-0.00592517821586539,7.53661022478895e-10,2.3279274341534e-08,0.300112117633333,-2.42308716384556,-1.49786266683989,1.50394084361425,-6.71181860089678e-08,8.66286209446097e-08,11.9999993181179 +5.78,-3.3799768198485e-06,-1.85993085219383e-06,2.30252852485846e-06,-2.05181982515512e-09,-1.06035140112759e-08,-0.310010543334213,0.00417644032631563,0.0022853121759289,-0.00277509258127628,6.46316333785606e-10,2.3399018833639e-08,0.324112116337546,-9.22719708920662,-4.74523238123525,6.27633606700291,-2.3304448648621e-07,-1.02400553314457e-06,12.000000197311 +5.782,5.18897248363848e-08,-5.26339950790433e-08,-1.70305115565483e-08,-2.05060521341061e-09,-1.05566375085964e-08,-0.309338319102775,-0.027788511921647,-0.0137644495435492,0.0191801660521435,-1.78516923465841e-10,1.91832522089562e-08,0.348112118422572,-7.00649639061692,-3.49749572529241,4.81452662785921,-1.41948952592266e-07,-7.15221284976108e-07,11.9999999801037 +5.784,-0.000114534024506424,-5.69177290263845e-05,7.9023192733424e-05,-2.05253389284898e-09,-1.05267810024401e-08,-0.308618094860523,-0.023849545236149,-0.0117046707252392,0.0164830139301584,7.85205234166054e-11,2.05381336937348e-08,0.372112116257955,9.97691799635215,4.99436025243986,-6.87400277576051,3.71397357312657e-07,1.92680420229979e-06,11.9999979580053 +5.786,-9.53462912197701e-05,-4.68713168960411e-05,6.59150252090845e-05,-2.05029113131694e-09,-1.04744849738214e-08,-0.307849870637743,0.0121191600637661,0.00621299146621248,-0.00831584505090165,1.30707250578495e-09,2.68904690181563e-08,0.396112110254598,9.75177181707474,4.81206983246541,-6.73635609991796,3.9142300511941e-07,1.87674528695617e-06,11.9999979929055 +5.788,-6.60573842513543e-05,-3.20657631615318e-05,4.57598125298136e-05,-2.04730560282584e-09,-1.04192191263675e-08,-0.307033646419504,0.0151575420321544,0.00754360860462461,-0.0104624104695164,1.64421254389442e-09,2.80451148415603e-08,0.420112108229583,0.268359276850205,0.0508392817448559,-0.206028936629632,1.43100808980383e-07,3.71617667195755e-07,11.9999991436245 +5.79,-3.47161230911594e-05,-1.6696882477546e-05,2.40653833310234e-05,-2.04371428114136e-09,-1.03623045144552e-08,-0.306169422204824,0.0131925971711668,0.00641634859319189,-0.00913996079742008,1.87947574170642e-09,2.83769396869391e-08,0.444112106829091,-1.73974668774866,-0.904354075279419,1.19521881372277,1.04345351803389e-07,3.69548142071763e-08,11.999999398331 +5.792,-1.32869955666928e-05,-6.40036878876704e-06,9.19996934013734e-06,-2.03978769985902e-09,-1.03057113676197e-08,-0.305257197992188,0.00819855528116047,0.00392619230350733,-0.00568153521462589,2.06159395110793e-09,2.8192934098389e-08,0.468112105822902,-2.46458412322912,-1.20724683828908,1.70897057602116,9.89781173686822e-08,-9.32847549222074e-08,11.9999994959503 +5.794,-1.92190196651384e-06,-9.92113263514893e-07,1.33924247251727e-06,-2.03546790533693e-09,-1.02495327780616e-08,-0.304296973781533,0.00333426067824925,0.00158736124003505,-0.00230407849333469,2.2753882111812e-09,2.80038006672503e-08,0.492112104812898,-8.79032556327579,-4.26938395718645,5.98444299148659,-6.92761820130192e-08,-1.08939419984754e-06,12.0000002508998 +5.796,5.00471463056595e-08,-5.09238286261482e-08,-1.63446332024364e-08,-2.03068614701429e-09,-1.01936961649507e-08,-0.303288749572936,-0.0269627469719466,-0.0131513435252404,0.0182562367513232,1.78448922305583e-09,2.38353572989984e-08,0.516112106826506,-6.56378665639928,-3.21123230045849,4.43994987801928,5.05671893259982e-09,-7.40189159963152e-07,11.9999999715647 +5.798,-0.000109772889854289,-5.35974873644707e-05,7.43641894778019e-05,-2.02832994844471e-09,-1.01541913488656e-08,-0.302232525354227,-0.022920885947345,-0.0112575679617975,0.0154557210187405,2.29561508691159e-09,2.5043044027398e-08,0.540112104699151,9.64357320057588,4.66114280409174,-6.56009193769204,4.7604108155398e-07,1.79344906980772e-06,11.9999980242582 +5.8,-9.16334966430642e-05,-4.50811956758113e-05,6.18065394417527e-05,-2.02150368666665e-09,-1.00935239888411e-08,-0.30112830115414,0.0116115458303526,0.00549322769112453,-0.00798413099944211,3.68865354927153e-09,3.10091535782285e-08,0.564112098923534,9.41719688272875,4.59017712862349,-6.37101349299589,4.71787539590751e-07,1.75089630294156e-06,11.9999980572486 +5.802,-6.33267065328728e-05,-3.16245765999701e-05,4.24276654800299e-05,-2.01357533424762e-09,-1.00301547345527e-08,-0.299976076958532,0.0147479015835742,0.00710314055269852,-0.0100283329532459,4.18276524527481e-09,3.2046629239165e-08,0.588112096928151,0.307713597885158,0.209204702468101,-0.16287887806772,2.10279710311161e-07,3.2142344341851e-07,11.9999991521764 +5.804,-3.26418903087607e-05,-1.6668633465014e-05,2.16932076287646e-05,-2.00477262568555e-09,-9.96533747188444e-09,-0.298775852766427,0.0128424002218934,0.00633004650099703,-0.00863564651171306,4.52977239051627e-09,3.22948473519027e-08,0.612112095532245,-1.73615043712609,-0.786361121230803,1.21055142934262,1.50005008414932e-07,6.8244021562736e-09,11.9999993872319 +5.806,-1.19571056453049e-05,-6.30439059598475e-06,7.8850794331814e-06,-1.99545624468556e-09,-9.90097534514511e-09,-0.297527628576404,0.00780329983507063,0.00395769606777565,-0.00518612723587596,4.78278527893447e-09,3.20739268477901e-08,0.636112094477074,-2.4602869892481,-1.19154391527623,1.66511782552377,1.26499505314929e-07,-9.4702024002318e-08,11.9999994551777 +5.808,-1.42869096848158e-06,-8.37849193913165e-07,9.48698685263039e-07,-1.98564148456981e-09,-9.83704176449329e-09,-0.296231404388519,0.00300125226490208,0.00156387083989264,-0.00197517520961871,5.03577041177593e-09,3.19160392558935e-08,0.66011209335295,-8.38694313552373,-4.57064292722082,5.45924255267078,-3.89965837402154e-08,-9.56389481500576e-07,12.0000000506418 +5.81,4.79034143047175e-08,-4.89072364134868e-08,-1.56214052943193e-08,-1.97531316303845e-09,-9.77331118812153e-09,-0.294887180202992,-0.025744472707028,-0.0143248756411097,0.0166508429748096,4.62679894397359e-09,2.82483689217873e-08,0.684112094679646,-6.20086369024029,-3.44772492397943,4.01449950183658,1.54147528078094e-08,-6.1893719316242e-07,11.9999998009336 +5.812,-0.000104406581796605,-5.81373517583583e-05,6.7552070584509e-05,-1.96713428879391e-09,-9.72404828880613e-09,-0.2934949560098,-0.0218022024960618,-0.0122270288560266,0.0140828227977294,5.09742942300718e-09,2.94402904832435e-08,0.70811209255669,9.21900106822465,5.08272169421427,-5.97000653310528,4.28379554051968e-07,1.66833213910616e-06,11.9999981846472 +5.814,-8.7160906569933e-05,-4.89570226605146e-05,5.63156697856171e-05,-1.95492344534642e-09,-9.65555002618856e-09,-0.292054731832765,0.0111315315658665,0.00600601113574514,-0.00722918315760889,6.34031716018127e-09,3.49216974782112e-08,0.73211208741823,9.00554769505226,5.01840930803418,-5.82000193405972,4.1215121593357e-07,1.63453452162013e-06,11.9999982206044 +5.816,-5.98804555331442e-05,-3.41133072153804e-05,3.86353379540766e-05,-1.94177302015319e-09,-9.5843614988933e-09,-0.290566507660127,0.0142199882841432,0.00784660837610788,-0.00919718493850691,6.74603428674128e-09,3.59784285697233e-08,0.756112085439102,0.295191648414969,0.235440377984032,-0.178234161936779,1.63738814173586e-07,3.44384243342804e-07,11.999999143789 +5.818,-3.02809534333537e-05,-1.75705891560796e-05,1.95269300315853e-05,-1.92793930819946e-09,-9.51163631190965e-09,-0.289030283491008,0.0123122981595265,0.00694777264768137,-0.00794211980535608,6.99527241687569e-09,3.62992344515826e-08,0.780112083993391,-1.72662495342748,-0.906393946754291,1.12121228531271,9.91116910768333e-08,4.95992136271251e-08,11.9999993544731 +5.82,-1.06312628950327e-05,-6.32221662465182e-06,6.8668587326487e-06,-1.91379193048569e-09,-9.43916456108695e-09,-0.287446059324153,0.00731348847043255,0.00422103258909031,-0.00471233579725557,7.14248105104865e-09,3.61768254242318e-08,0.804112082857,-2.41077972175532,-1.34471439894564,1.55542317059166,7.15157100210237e-08,-4.49813797300735e-08,11.9999994203827 +5.822,-1.02699955162669e-06,-6.8645879972018e-07,6.77586842565137e-07,-1.89936938399526e-09,-9.36692901021274e-09,-0.285813835159581,0.00266917927250627,0.00156891505189941,-0.00172042712299014,7.28133525695976e-09,3.61193089326623e-08,0.828112081674917,-7.88511073928078,-4.73261099889875,5.10853446533962,-8.15649631173498e-08,-8.27806573291187e-07,11.9999999315186 +5.824,4.54541949912457e-08,-4.6556417054866e-08,-1.48497593110974e-08,-1.88466658945785e-09,-9.29468732535632e-09,-0.284133610997454,-0.0242269544866871,-0.0147094114065026,0.0157218020641007,6.81622119857929e-09,3.28655991310674e-08,0.852112082583069,-5.74226432574742,-3.48149629181994,3.72794603607277,-3.38895578270795e-08,-5.16630141446874e-07,11.999999728212 +5.826,-9.79348174983859e-05,-5.95241044257372e-05,6.35647950989748e-05,-1.87210449920094e-09,-9.23546661368846e-09,-0.282405386829248,-0.020299878030486,-0.0123570701153819,0.0131913570213026,7.14577702565142e-09,3.40527883668746e-08,0.87611208058777,8.76984483825751,5.3099776283197,-5.68230911835494,3.39306707731013e-07,1.57284775481785e-06,11.9999983669698 +5.828,-8.11540579269618e-05,-4.9474836878588e-05,5.27505783259052e-05,-1.85608348135524e-09,-9.15847617188881e-09,-0.280629162675103,0.0108524248663469,0.00653049910677858,-0.00700743440932163,8.17344802950349e-09,3.91569901503396e-08,0.900112076050954,8.48103417620521,5.15407392008952,-5.5048009748242,3.22009779952138e-07,1.52891761751262e-06,11.9999984086731 +5.83,-5.45251180330032e-05,-3.34021079986258e-05,3.55350574616914e-05,-1.83941070708293e-09,-9.07883865308712e-09,-0.278804938525045,0.0136242586743311,0.0082592255649739,-0.00882784687799176,8.43381614545983e-09,4.01684588369244e-08,0.924112074222457,0.154209976153956,0.117527190348304,-0.113469853767852,9.3664659361438e-08,3.27737836867172e-07,11.9999992059895 +5.832,-2.66570232296433e-05,-1.6437934618696e-05,1.74391908139421e-05,-1.82234821677341e-09,-8.99780233654113e-09,-0.276932714378213,0.0114692647709626,0.00700060786817174,-0.00746131382439299,8.54810666694921e-09,4.04679414978081e-08,0.948112072874906,-1.77087590146945,-1.06092096694246,1.13824423532873,3.53467255460276e-08,4.93650259536298e-08,11.9999993936791 +5.834,-8.64805894914764e-06,-5.39967652593565e-06,5.68980216411608e-06,-1.80521828041513e-09,-8.91696688709587e-09,-0.275012490233545,0.00654075506845253,0.00401554169720358,-0.00427486993667633,8.57520304764396e-09,4.0365918940739e-08,0.972112071797179,-2.32414303011679,-1.41541482282007,1.50884082287347,1.40148309628911e-08,-3.20039134060509e-08,11.9999994506916 +5.836,-4.94002955830214e-07,-3.75767829879914e-07,3.39711067234849e-07,-1.78804740458283e-09,-8.83633866077815e-09,-0.273044266091024,0.00217269265049443,0.00133894857689083,-0.00142595053289842,8.60416599080078e-09,4.03399258441839e-08,0.996112070677678,-7.18243394224393,-4.4233624954961,4.74396958627208,-1.18925702618616e-07,-7.36060518089639e-07,11.9999999018069 +5.838,4.27116528291249e-08,-4.38822183729259e-08,-1.39999674769742e-08,-1.77080161645193e-09,-8.75560718371915e-09,-0.271028041950834,-0.02218898070052,-0.0136779082847789,0.0147010084084099,8.09950023716955e-09,3.74216768683807e-08,1.0201120714044,-5.10409806135746,-3.04954120208298,3.42572682398696,-3.15129866650725e-08,-5.33583593977944e-07,11.9999999651235 +5.84,-8.92499257579005e-05,-5.50874009689895e-05,5.9143744700868e-05,-1.75564940363415e-09,-8.68665195330465e-09,-0.268963817805407,-0.0182436995949331,-0.0108592162314397,0.0122769567630479,8.4781140441405e-09,3.82055914682723e-08,1.04411207053817,8.22127443522728,5.10899040478317,-5.42309967677257,3.48443496278078e-07,1.36578595655063e-06,11.9999988153898 +5.842,-7.29320867269116e-05,-4.34807471441367e-05,4.90938270847202e-05,-1.73688916027537e-09,-8.60278481784604e-09,-0.266851593668681,0.0106961170403928,0.00675805333435608,-0.00699139029868281,9.49327422228201e-09,4.28848206945839e-08,1.06811206666597,7.79753811258095,4.61229311713778,-5.26447535434769,2.74924180643703e-07,1.48487819262789e-06,11.9999983679553 +5.844,-4.64654575963244e-05,-2.80551876315621e-05,3.11781835061337e-05,-1.71767630674502e-09,-8.51511267052629e-09,-0.264691369538743,0.0129464528553942,0.00758995623711345,-0.0087809446543452,9.57781076671543e-09,4.41451042387846e-08,1.09211206400999,-0.123972568974752,-0.1627211953164,0.031267119627414,-7.2788997046734e-09,3.78185330276691e-07,11.9999989458097 +5.846,-2.11462753053407e-05,-1.31209221956863e-05,1.39700484673433e-05,-1.69857791720851e-09,-8.42620440089092e-09,-0.262483145412642,0.0102002267644939,0.00610716855309055,-0.00686632182017317,9.46415862346332e-09,4.43975620156905e-08,1.1161120624492,-1.9144324056348,-1.08118695486173,1.32260428676239,-2.88085527660786e-08,-3.99107830142496e-08,11.9999995330366 +5.848,-5.66455053835346e-06,-3.62651341920261e-06,3.71289622544402e-06,-1.67981967225117e-09,-8.33752242246355e-09,-0.260226921288946,0.00528872323285582,0.003265208417667,-0.00349052750729622,9.46257655565113e-09,4.39854611067276e-08,1.14011206214213,-2.19353972717573,-1.30269346129788,1.48370745441892,1.09773301554535e-08,-1.13157747063882e-07,11.9999996952917 +5.85,8.6176260849502e-09,-6.00885250168215e-08,7.93843815682926e-09,-1.6607276109859e-09,-8.25026255646399e-09,-0.257922697164073,0.00142606785578996,0.00089639470789844,-0.000931492002496821,9.50806794408514e-09,4.39449310274349e-08,1.16411206123037,-5.29988619218753,-3.16359435108252,3.5329239919536,-7.59826229707346e-08,-4.98750346575649e-07,11.9999998113478 +5.852,3.97208848069985e-08,-4.09345876084544e-08,-1.30717845436834e-08,-1.64178740047483e-09,-8.16174269835379e-09,-0.255570473044024,-0.0159108215358967,-0.00938916898666451,0.0106411684605197,9.15864606376816e-09,4.19904597204248e-08,1.18811206138753,-2.8208949436724,-1.72410936558879,1.86247975823528,-2.91815183123606e-08,-1.1423501033761e-07,11.9999995032822 +5.854,-6.36346685174947e-05,-3.76167644716707e-05,4.25726122802311e-05,-1.62409302673083e-09,-8.08230071758231e-09,-0.253170248918523,-0.00985751191889838,-0.00600004275445595,0.00651842703044347,9.39134187083571e-09,4.34879909860845e-08,1.2121120592435,6.92741690000291,4.05136742030881,-4.65121111246711,1.76091780045897e-07,1.39090475248282e-06,11.9999983553484 +5.856,-3.93903267907822e-05,-2.40411056054296e-05,2.60606363372273e-05,-1.60422203299149e-09,-7.98779073440947e-09,-0.250722024807051,0.0117988460641119,0.00681630069456894,-0.00796367598934666,9.86301318395167e-09,4.75540787303555e-08,1.23611205480892,4.71591330432074,2.86589708069014,-3.12092545375204,7.478045960187e-08,1.0813606954292e-06,11.9999985118858 +5.858,-1.64392842610418e-05,-1.03515616933919e-05,1.07179083228409e-05,-1.58464097399502e-09,-7.89208440266087e-09,-0.248225800699287,0.00900614129838668,0.00546354556830589,-0.0059652747845661,9.69046370924323e-09,4.78134337678018e-08,1.26011205329104,-1.91991733450346,-1.059518437692,1.32027804561383,-5.08447450803327e-08,-2.01384048299754e-08,11.9999995253666 +5.86,-3.36576159723143e-06,-2.18692333220361e-06,2.19953719896027e-06,-1.56546017815451e-09,-7.79653699933824e-09,-0.245681576593886,0.00411917672609723,0.00257822694380045,-0.00268256380689074,9.65963420363032e-09,4.74735251110355e-08,1.28411205291039,-6.83133767919302,-4.13018668263239,4.56564471693741,-1.17385268171886e-07,-7.64574167863863e-07,12.0000001075403 +5.862,3.74226433452751e-08,-3.86539181912449e-08,-1.23469047208502e-08,-1.5460024371805e-09,-7.70219030221675e-09,-0.243089352487646,-0.0183192094183824,-0.0110572011622219,0.0122973040831815,9.22092263655573e-09,4.47551370963466e-08,1.3081120537212,-5.04885012425648,-3.00702659475883,3.38873840017709,-6.38603753216702e-08,-4.60097238089011e-07,11.9999998092877 +5.864,-7.66425992707528e-05,-4.64157279810862e-05,5.13887535316809e-05,-1.52857648760829e-09,-7.61751645095288e-09,-0.240449128379002,-0.0160762237709265,-0.00944987943523356,0.0108723897938161,9.40419270234366e-09,4.56331361586797e-08,1.33211205214754,6.76020040481158,4.11068374448855,-4.52734788350579,2.35745450937731e-07,1.26787469411916e-06,11.9999986692685 +5.866,-6.42674724403679e-05,-3.78381716591297e-05,4.34772122705485e-05,-1.50838566637113e-09,-7.51965775758201e-09,-0.237760904279055,0.00872159220086696,0.00538553381573418,-0.00581208745084366,1.01639044403068e-08,4.98266358728238e-08,1.35611204839828,6.90892230132677,4.04229193251853,-4.68332439471329,2.03568065182924e-07,1.36736455491868e-06,11.9999984339776 +5.868,-4.17562304672811e-05,-2.4873592718147e-05,2.81404037283037e-05,-1.48792086984706e-09,-7.41820990746156e-09,-0.235024680185408,0.0115594654343837,0.00671928829484238,-0.00786090778503914,1.02184649630755e-08,5.1102594378355e-08,1.38011204588345,0.172899932557055,0.0483093740742999,-0.134319090957293,-5.21631349169911e-09,3.97008814714907e-07,11.9999990006186 +5.87,-1.80296107028383e-05,-1.09610184797632e-05,1.20335811303954e-05,-1.46751180651883e-09,-7.31524738006861e-09,-0.232240456095522,0.0094131919310951,0.00557877131203136,-0.00634936381467278,1.014303918634e-08,5.14146711316833e-08,1.40411204440075,-1.76086018410878,-0.996990966357591,1.21241528289661,-1.34336985985317e-08,-1.45352480080468e-08,11.9999995325662 +5.872,-4.10346274290485e-06,-2.55850747002406e-06,2.74294846961537e-06,-1.4473487131017e-09,-7.21255122293485e-09,-0.229408232007806,0.00451602469794932,0.00273132442941246,-0.00301124665345321,1.01647301686813e-08,5.10444533863229e-08,1.42811204401371,-6.19718420995892,-3.66085255152621,4.21174980120974,-7.70876418260029e-08,-7.00746752293957e-07,12.0000000643364 +5.874,3.44880889610599e-08,-3.57207621121125e-08,-1.14054834188249e-08,-1.4268528858441e-09,-7.1110695665233e-09,-0.226528007919466,-0.0153755449087433,-0.00906463889407512,0.0104976353901681,9.83468861903592e-09,4.86116841225072e-08,1.4521120446581,-4.33163240129567,-2.59049963702974,2.92105667696278,-4.87093004813881e-08,-3.23243168340257e-07,11.9999995999148 +5.876,-6.56056423778851e-05,-3.88170630463286e-05,4.47334900302923e-05,-1.40800995862556e-09,-7.0181044864448e-09,-0.223599783829173,-0.0128105049072353,-0.00763067411870767,0.0086729800543992,9.96989296675576e-09,4.97514807129617e-08,1.47611204241338,6.2051051894266,3.64601365069237,-4.24645829305302,1.94691485156418e-07,1.25202626044838e-06,11.9999985202929 +5.878,-5.12075315399745e-05,-3.05584172369394e-05,3.46805147341742e-05,-1.38697331397708e-09,-6.91206364367147e-09,-0.220623559749814,0.00944487584896032,0.00551941570869274,-0.00648819778204213,1.06134545596615e-08,5.36197891643001e-08,1.50011203873927,5.81850369783186,3.4630206545579,-3.94031864336523,1.90493454343411e-07,1.13751195962298e-06,11.9999987015762 +5.88,-2.7826138982048e-05,-1.67394002115601e-05,1.87806989021266e-05,-1.36555614038691e-09,-6.80362532978762e-09,-0.217599335674216,0.0104635098840896,0.0062214084995224,-0.00708829451905997,1.07318667841293e-08,5.43015285514531e-08,1.52411203721968,-0.665317431172172,-0.362795622776499,0.478277298653847,3.70987962566423e-08,1.66859581704244e-07,11.9999993617716 +5.882,-9.3534920036116e-06,-5.67278323884701e-06,6.32733665793112e-06,-1.34404584684056e-09,-6.69485752946564e-09,-0.214527111600934,0.00678360612427133,0.00406823321758658,-0.00457508858742653,1.07618497446881e-08,5.42872274911172e-08,1.54811203618636,-2.02932377958683,-1.20283918518937,1.37596537452262,4.00339483791884e-08,-8.55097242983109e-08,11.9999996437324 +5.884,-6.91714484959624e-07,-4.66467341211918e-07,4.80344552418466e-07,-1.32250874140816e-09,-6.58647641982313e-09,-0.21140688752947,0.00234621476574133,0.0014100517587644,-0.00158443302096887,1.08920025776461e-08,5.39594896542598e-08,1.57211203579461,-5.20879273829823,-3.08005422117046,3.55676153846307,-1.26201132871367e-08,-5.75142364286796e-07,11.9999999909864 +5.886,3.13670593526938e-08,-3.25762037900468e-08,-1.03954259436656e-08,-1.30047783652998e-09,-6.47901957084862e-09,-0.208238663457756,-0.0140515648289193,-0.00825198366709392,0.0096519575664242,1.07113692915396e-08,5.19866580339702e-08,1.5961120361503,-3.39999622424281,-1.97663287921203,2.33300667946108,2.40051034605722e-08,-2.69929911755955e-07,11.999999690998 +5.888,-5.68979738006306e-05,-3.3474402009584e-05,3.9088174818111e-05,-1.279663264242e-09,-6.37852978768727e-09,-0.20502243938487,-0.0112537701312284,-0.00649647975808287,0.00774759369687442,1.09880229914884e-08,5.28797700072361e-08,1.6201120345586,5.58540402400698,3.2697259883404,-3.84899891388387,2.39253061806126e-07,1.07312769781198e-06,11.9999987905435 +5.89,-4.49837134655559e-05,-2.60184952361187e-05,3.09799793615506e-05,-1.25652574456403e-09,-6.2675004908197e-09,-0.201758215319523,0.00829005126710616,0.00482692028626623,-0.00574403808910958,1.1668381538764e-08,5.62791688252177e-08,1.64411203131247,5.18511209176524,2.97429060351511,-3.58161912697794,1.83339454728386e-07,1.03262884354155e-06,10.8256048709644 +5.892,-2.37377687322023e-05,-1.41667208645169e-05,1.61120224616701e-05,-1.23298973808694e-09,-6.15341311238637e-09,-0.198445991259619,0.00948667823583488,0.00540068265597891,-0.00657888281103895,1.1721380810402e-08,5.70102853814028e-08,1.66341445404246,-0.599571578619801,-0.331149857022472,0.436532557100889,-4.28676191759534e-08,-2.1307608452299e-08,4.07157784209082 +5.894,-7.03700052221215e-06,-4.41576461220061e-06,4.66444811739186e-06,-1.20964022132242e-09,-6.03945934929406e-09,-0.195104557503352,0.00589176495262669,0.0035023208581762,-0.00399790786070583,1.14969110620601e-08,5.61939383914085e-08,1.66039834268083,-1.9300988857861,-1.07601580458851,1.35260831398206,-1.38035416429806e-07,-5.75589922943446e-07,-6.33366137986755 +5.896,-1.70708921698112e-07,-1.57437431813623e-07,1.20391018848531e-07,-1.18700209383871e-09,-5.92863735882077e-09,-0.191804397888896,0.00176628269269133,0.00109661943762536,-0.00116844955511132,1.11692391446828e-08,5.47079256896293e-08,1.63807980852299,-3.53432671366363,-2.13482997399336,2.38400787233822,-1.77687725644942e-07,-1.00329120012211e-06,-11.5796326331816 +5.898,2.81302485524021e-08,-2.92868616996733e-08,-9.35010305291861e-09,-1.16496326474369e-09,-5.82062764653557e-09,-0.188552238269261,-0.00824554190202628,-0.0050369990377963,0.00553812362864601,1.07861601594804e-08,5.21807735909205e-08,1.61407981214811,-1.30953123512927,-0.815842381160728,0.871197280732797,-9.44999287161736e-08,-7.01060737243292e-07,-11.9999985822084 +5.9,-3.31528765298069e-05,-2.03054335830011e-05,2.2272885533435e-05,-1.14385745320078e-09,-5.71991426445706e-09,-0.185348078640303,-0.00347184224782633,-0.00216675008701792,0.00231633956782025,1.07912394298181e-08,5.19036827406558e-08,1.59007981419415,3.99118131011919,2.43448148508497,-2.68245913819801,1.93014007560547e-08,1.38451750067557e-07,-11.9999992516199 +5.902,-1.38592387427545e-05,-8.69628720977234e-06,9.25600816822914e-06,-1.12179830702441e-09,-5.61301291557292e-09,-0.182191919012484,0.00771918333845226,0.00470092690254466,-0.00519171292414725,1.08633657625047e-08,5.27345805911908e-08,1.56607981514162,1.73579454578688,1.08350418037186,-1.15812885151402,-6.60201060481408e-08,-1.66157018696641e-07,-11.9999991277647 +5.904,-2.27614317600128e-06,-1.5017259728245e-06,1.50603383684833e-06,-1.10040399015077e-09,-5.50897594209232e-09,-0.179083759379738,0.00347133593532043,0.00216726663446905,-0.00231617583823532,1.05271590056256e-08,5.12390546658693e-08,1.5420798176831,-4.01130013126559,-2.52522290383515,2.67011249796758,-2.11072478940081e-07,-1.01399617869217e-06,-11.999998563904 +5.906,2.61049985256917e-08,-2.7220671897088e-08,-8.69518471113828e-09,-1.07968967100192e-09,-5.40805669690947e-09,-0.176023599741752,-0.00832601718660832,-0.00539996471279484,0.00548873706772189,1.00190758467444e-08,4.86785958764225e-08,1.51807982088601,-1.98195536346687,-1.26168773303856,1.31631791690868,-1.52680819376911e-07,-7.27911654565999e-07,-11.999998710302 +5.908,-3.55802119224383e-05,-2.31015848240063e-05,2.34609821077383e-05,-1.06032768676378e-09,-5.31426155858661e-09,-0.173011440096193,-0.00445648551854795,-0.00287948429768574,0.00294909582939999,9.91643572811785e-09,4.8327408047605e-08,1.49407982284189,4.05079727002017,2.63347333253967,-2.6654480027611,1.91227242379865e-08,9.09211941873357e-08,-11.999999102812 +5.91,-1.77998370756681e-05,-1.15451578626413e-05,1.17876881328902e-05,-1.04002392808944e-09,-5.21474706471903e-09,-0.170047280450384,0.00787717189347416,0.00513392861736504,-0.00517305494332371,1.00955667436964e-08,4.90422806531719e-08,1.47007982447476,2.22812524002655,1.43986237340006,-1.47450978011326,-8.27896778855056e-09,-1.72817489482855e-07,-11.9999989314426 +5.912,-4.07152434854507e-06,-2.56587035454836e-06,2.76876233444578e-06,-1.019945419789e-09,-5.11809243597394e-09,-0.167131120798294,0.00445601544155728,0.00287996519591386,-0.00294894329105238,9.88331985696365e-09,4.76361380896736e-08,1.44607982711612,-3.5018937005781,-2.27308308036634,2.30976266261459,-1.71557212880763e-07,-9.19576914618026e-07,-11.9999986481056 +5.914,2.42246905590715e-08,-2.52970789871299e-08,-8.08503131805027e-09,-1.00049064866159e-09,-5.02420251236035e-09,-0.16426296114192,-0.00613040290883671,-0.00395840370409931,0.00406599570713362,9.40933789217341e-09,4.53639729947002e-08,1.42207982988234,-1.83501291303024,-1.1851006599229,1.21600519425947,-1.54719986822886e-07,-6.66329838530376e-07,-11.9999988491075 +5.916,-2.85931359838947e-05,-1.83994851709474e-05,1.90327451629821e-05,-9.82308068220306e-10,-4.93663654399512e-09,-0.161442801478764,-0.00288403621056448,-0.00186043744377827,0.00191507748598607,9.26443990967204e-09,4.49708187355518e-08,1.39807983171969,3.23183805402722,2.08023911269362,-2.14722645273966,-3.00506147738238e-08,2.84425261146338e-08,-11.9999991974742 +5.918,-1.15119201517001e-05,-7.46704685410104e-06,7.65222491262707e-06,-9.63432889022897e-10,-4.84431923741813e-09,-0.158670641815041,0.00679694930727362,0.00436255274667611,-0.00452291010382599,9.2891354330781e-09,4.54777430991588e-08,1.37407983309244,1.44190928741855,0.930330314344669,-0.957503306824488,-6.91382714962946e-08,-2.27842918141037e-07,-11.9999990330941 +5.92,-1.40533875480318e-06,-9.49274184244842e-07,9.4110474768011e-07,-9.45151526487997e-10,-4.75472557159851e-09,-0.155946482146395,0.00288360093910909,0.0018608838136,-0.00191493574131147,8.98788682368689e-09,4.40594470629878e-08,1.35007983558731,-3.21764438215913,-2.06656723488409,2.14855164712666,-1.79195200345443e-07,-8.8696151118425e-07,-11.9999986511395 +5.922,2.24836047349464e-08,-2.35115997018753e-08,-7.51805261794969e-09,-9.27481341728154e-10,-4.66808144916619e-09,-0.153270322472692,-0.00607362822136151,-0.00390371619285933,0.00407129648467969,8.57235463169641e-09,4.19298970544222e-08,1.32607983848789,-1.35718186073705,-0.87276505200805,0.905987018391231,-1.28278464240265e-07,-6.21355397692011e-07,-11.9999988027781 +5.924,-2.56998516402519e-05,-1.65641389556839e-05,1.72262906864007e-05,-9.10862107961208e-10,-4.5870059833808e-09,-0.150642162792443,-0.00254512650383974,-0.00163017639443259,0.00170901233225386,8.47477296672577e-09,4.15740254722195e-08,1.3020798403762,3.06454864442523,1.9707099060517,-2.05350516032969,-1.52300047568623e-08,7.67788610700018e-09,-11.9999991634426 +5.926,-1.01580224106251e-05,-6.54421717743298e-06,6.82853127639826e-06,-8.93582249861247e-10,-4.5017853472773e-09,-0.148062003111186,0.00618456635634077,0.00397912343134835,-0.00414272415664001,8.51143461266895e-09,4.19606085988502e-08,1.27807984183411,1.27246300695222,0.815191198769944,-0.85447338349591,-5.77827716225918e-08,-2.44721777562484e-07,-11.9999990245421 +5.928,-9.61586214891577e-07,-6.4764523029226e-07,6.55394059842496e-07,-8.76816369510536e-10,-4.41916354898542e-09,-0.145529843425107,0.0025447255239686,0.00163058840064682,-0.0017088812017294,8.24364188023543e-09,4.05951383619696e-08,1.25407984427803,-2.837458994611,-1.8072641108128,1.90999113120861,-1.5904205036324e-07,-8.28516942554921e-07,-11.9999986964226 +5.93,2.08796852481374e-08,-2.18635748464036e-08,-6.9935305185842e-09,-8.60607682340309e-10,-4.33940479382944e-09,-0.143045683734075,-0.00516526962210196,-0.00324993301190206,0.00349724036819358,7.87526641121606e-09,3.86465408286308e-08,1.23007984704843,-1.09731804006448,-0.689102235184562,0.743697770074386,-1.05031434938664e-07,-6.00671422326015e-07,-11.9999987849468 +5.932,-2.16226647033017e-05,-1.36473772779019e-05,1.46443555326184e-05,-8.45315303865668e-10,-4.26457738567088e-09,-0.140609524036913,-0.00184454663628982,-0.00112582054009173,0.00126590987856847,7.82351614048073e-09,3.81924526726653e-08,1.20607984913824,2.62763012736563,1.65404928625178,-1.7788652213215,-2.74433253855784e-09,-7.05945718527308e-08,-11.9999990832464 +5.934,-7.35730685991198e-06,-4.52514573521384e-06,5.05664598375588e-06,-8.29313617778382e-10,-4.18663498313876e-09,-0.138221364337521,0.00534525088736174,0.00336626413310582,-0.0036182205170932,7.86428908106183e-09,3.83641625412199e-08,1.18207985071544,0.922181775475187,0.563004581002171,-0.632924982323854,-5.15351650238962e-08,-2.90705827463876e-07,-11.9999990146317 +5.936,-2.41661153857139e-07,-1.82320745480136e-07,1.71473464247174e-07,-8.13858147541424e-10,-4.11112073550601e-09,-0.135881204634052,0.00184418046561052,0.0011261977839167,-0.00126579005072666,7.61737548038516e-09,3.70296293628099e-08,1.15807985307972,-2.63091652431116,-1.66834714977767,1.76151291270629,-1.49158463358826e-07,-7.90557723453395e-07,-11.9999987534758 +5.938,1.94150025292772e-08,-2.03545995475229e-08,-6.514219150211e-09,-7.98844115856845e-10,-4.03851646568754e-09,-0.133589044925203,-0.00517841520988174,-0.00330712446600411,0.00342783113373119,7.26765522762659e-09,3.52019316474067e-08,1.13407985570154,-0.990172947992589,-0.624623304933048,0.662699877408785,-1.23986758360623e-07,-5.32640771768448e-07,-11.999998955895 +5.94,-2.09553219933864e-05,-1.34108186094981e-05,1.38827979991735e-05,-7.84787526630915e-10,-3.97031300891637e-09,-0.131344885211245,-0.00211651132636028,-0.00137229543581577,0.00138500945890878,7.12142844694262e-09,3.48990662757359e-08,1.11007985725613,2.57433518300083,1.64320037943157,-1.70485211970679,-4.73805022989511e-08,-1.66828356665149e-08,-11.9999992699202 +5.942,-8.44663030291279e-06,-5.50953634281121e-06,5.53352361648551e-06,-7.70358402069071e-10,-3.89892020058458e-09,-0.129148725496178,0.00511892552212275,0.0032656770517229,-0.00339157734509674,7.07813321843076e-09,3.51352003047406e-08,1.08607985862185,1.05817196155803,0.686234069360066,-0.692477245621407,-8.11720482492674e-08,-2.45431279464531e-07,-11.9999990990834 +5.944,-4.79619904897657e-07,-3.48110402607904e-07,3.16488618787997e-07,-7.56474993757195e-10,-3.82977220769742e-09,-0.127000565776758,0.00211617651987136,0.00137264084162419,-0.00138489952357654,6.79674025394558e-09,3.39173411578779e-08,1.06207986085981,-2.25619648416137,-1.45822665505447,1.48905376758641,-1.54824070231323e-07,-7.11972147906255e-07,-11.9999988212132 +5.946,1.8075776571716e-08,-1.89729763150348e-08,-6.0744778200561e-09,-7.43171441053292e-10,-3.76325083595308e-09,-0.124900406052739,-0.00390586041452176,-0.00256722956849433,0.00256463772524823,6.45883693750554e-09,3.22873117131159e-08,1.03807986333701,-0.777720101334607,-0.505355048573874,0.510556822731122,-1.11235673450413e-07,-5.03133992803655e-07,-11.9999989312739 +5.948,-1.61030615629864e-05,-1.06170286765864e-05,1.05750395197821e-05,-7.3063964600717e-10,-3.70062296084495e-09,-0.12284824632341,-0.000994703885467417,-0.00064877935267153,0.000657327767348173,6.35179756014388e-09,3.1904805186663e-08,1.01407986513471,1.98397848852105,1.30424545051148,-1.30245999967699,-3.82515200066679e-08,-1.17066946412764e-07,-11.9999991417771 +5.95,-3.9607397652984e-06,-2.61409038700144e-06,2.62323659157293e-06,-7.17764250812714e-10,-3.63563161520641e-09,-0.1208440865922,0.00403005353956334,0.00264975223355218,-0.00264520227346033,6.30583085747885e-09,3.18190439274648e-08,0.990079866769891,-0.151078176450691,-0.0853339606802742,0.111661949524457,-8.66086716230225e-08,-4.1678813178346e-07,-11.9999989761384 +5.952,1.71525952651422e-08,-1.80197423788053e-08,-5.76957405809542e-09,-7.05416322577257e-10,-3.5733467851351e-09,-0.11888792685633,-0.00159901659127012,-0.000990115195392589,0.00110397556544595,6.00536287365183e-09,3.02376526595294e-08,0.966079869230157,-1.07272847867796,-0.703337901958631,0.705803314674624,-1.06160739921441e-07,-5.43621571371212e-07,-11.9999989103735 +5.954,-1.03568061303782e-05,-6.57455116857136e-06,7.03913885335625e-06,-6.93742799318109e-10,-3.51468100456831e-09,-0.11697976711528,-0.000260860375148024,-0.000163599374282032,0.000178010985237857,5.88118789779314e-09,2.96445576419802e-08,0.942079871128403,1.04807326935731,0.657367129475427,-0.716283010540683,-5.20954807073812e-08,-2.42881235958351e-07,-11.9999990828504 +5.956,-1.02628890532707e-06,-6.72417239507006e-07,7.06274366893411e-07,-6.81891570986082e-10,-3.45476855456717e-09,-0.115119607371816,0.00259327648615958,0.00163935332250942,-0.0017611564767171,5.79698095082228e-09,2.92661277156959e-08,0.91807987289875,-0.340840446531109,-0.194256691440483,0.245004613862966,-7.95353366497339e-08,-4.58701653048306e-07,-11.9999989313952 +5.958,1.62998142613432e-08,-1.7137878532969e-08,-5.48705351294254e-09,-6.70554875514817e-10,-3.39761649370551e-09,-0.113307447623684,-0.00162422216127261,-0.000940626140044052,0.00115802944068983,5.56304655119416e-09,2.78097510297867e-08,0.894079875402817,-0.666653894527636,-0.420864037748577,0.453087989929232,-8.09578099000576e-08,-5.06484611194221e-07,-11.9999989018993 +5.96,-7.52317755041681e-06,-4.4349217996828e-06,5.33839212965223e-06,-6.59639384781308e-10,-3.34352955044803e-09,-0.111543287870206,-7.33390919506639e-05,-4.41028284847066e-05,5.1195482999629e-05,5.47314971122208e-09,2.72401892709192e-08,0.870079877291158,0.877224032434225,0.511318625932895,-0.623483640348262,-5.15672574089334e-08,-2.53359833114908e-07,-11.9999991153136 +5.962,-2.7705655354128e-07,-1.93549192471776e-07,1.99294878485551e-07,-6.48662276669931e-10,-3.28865573662185e-09,-0.10982712811452,0.0018846739684639,0.0011046483636873,-0.00133590512070294,5.35677752155845e-09,2.67963116973272e-08,0.846079878941567,-0.639333728448082,-0.411485207968835,0.428831780885623,-1.00547174753111e-07,-4.6597621594787e-07,-11.9999990172457 +5.964,1.55183234396353e-08,-1.6328344933092e-08,-5.22835316013603e-09,-6.38212274695071e-10,-3.23634430365871e-09,-0.108158968354439,-0.00263067400574328,-0.00169004366036023,0.00176652260654231,5.07096101220959e-09,2.53762844071275e-08,0.82207988122217,-0.556219827327865,-0.330966030568186,0.391041255421723,-9.93771037679858e-08,-4.66316221746265e-07,-11.9999989928002 +5.966,-1.07997525765156e-05,-6.95372383391346e-06,7.26538530465559e-06,-6.28378432621091e-10,-3.18715059899333e-09,-0.106538808589631,-0.000340205340847811,-0.000219215758585588,0.000228259900984126,4.95926910648647e-09,2.49310468103419e-08,0.798079882970361,1.33357827388315,0.856144409481897,-0.896029214513083,-4.40975381207966e-08,-2.07162412223264e-07,-11.9999991066046 +5.968,-1.34530303995146e-06,-8.93191379275349e-07,9.07811250776269e-07,-6.18375198269128e-10,-3.13662011641735e-09,-0.104966648822558,0.00270363908978872,0.00173453397756698,-0.00181759425150962,4.89457085972643e-09,2.45476347582346e-08,0.774079884795756,-0.4113248888779,-0.263311427381179,0.27866370798595,-7.93982934957336e-08,-4.57411018785209e-07,-11.9999989571562 +5.97,1.48037826381078e-08,-1.55879236463097e-08,-4.99170138210103e-09,-6.08800149182187e-10,-3.0889600599604e-09,-0.103442489050448,-0.00198550489635923,-0.00127246146811019,0.0013429147329278,4.64167593250357e-09,2.31014027352013e-08,0.750079887141742,-0.727004562373858,-0.466793934346824,0.488532955970457,-9.35870304865927e-08,-4.78635360513659e-07,-11.9999989968799 +5.972,-9.28732262538926e-06,-5.98303725171667e-06,6.27947018248809e-06,-5.99808494539111e-10,-3.04421450547654e-09,-0.101966329273991,-0.00020437915970704,-0.000132641759820528,0.000136537572372425,4.52022273778002e-09,2.26330933161797e-08,0.726079888808231,1.07771861832575,0.691122953193274,-0.728494129397883,-5.68893890326636e-08,-2.14172429789766e-07,-11.9999991634242 +5.974,-8.02712856190144e-07,-5.4615496292848e-07,5.4115858810766e-07,-5.90719258231065e-10,-2.99842768669567e-09,-0.100538169495215,0.00232536957694424,0.00149203034466322,-0.00157106178466405,4.41411837637289e-09,2.22447130160421e-08,0.70207989048804,-0.382773773227496,-0.254824182986558,0.253773182385122,-9.2168026682762e-08,-4.28195673362001e-07,-11.9999990262957 +5.976,1.41556823866906e-08,-1.49158730644583e-08,-4.7769561674349e-09,-5.82152021033622e-10,-2.95523565341238e-09,-0.0991580097120387,-0.00173547425261686,-0.00115193849176665,0.0011516303019128,4.15155063104901e-09,2.09203106227319e-08,0.678079892703054,-0.603949389656111,-0.387904524814203,0.407833068943571,-9.50546065472631e-08,-4.61497159932724e-07,-11.9999989998007 +5.978,-7.74460986665681e-06,-5.15390892999457e-06,5.14767979575836e-06,-5.74113055706871e-10,-2.91474644420475e-09,-0.0978258499244032,-9.04279816799326e-05,-5.95877545934226e-05,6.02704911100498e-05,4.03389995018388e-09,2.03987243763115e-08,0.654079894488842,0.91875498336259,0.609209458750558,-0.609924028771551,-5.53142601169526e-08,-2.46902324975147e-07,-11.999999114089 +5.98,-3.4755624433308e-07,-2.53266891438175e-07,2.36305008272791e-07,-5.66016421232884e-10,-2.87364075590713e-09,-0.096541690134083,0.00193954568083392,0.00128489934323586,-0.00128806581317367,3.93029359058117e-09,1.99327013228312e-08,0.630079896246692,-0.39389062669491,-0.25615203124276,0.267736915792689,-8.52347706301583e-08,-4.30397904814782e-07,-11.9999990148635 +5.982,1.35728566797236e-08,-1.43115570505614e-08,-4.58345693690743e-09,-5.58391881344544e-10,-2.83501563891342e-09,-0.0953055303394161,-0.00166599048845975,-0.00108419587956458,0.00113121815428092,3.6929608676632e-09,1.86771327570521e-08,0.606079898429383,-0.498484162103458,-0.330010453594797,0.33126885826693,-8.63211412070137e-08,-4.43598283105353e-07,-11.9999990092548 +5.984,-7.01151819817135e-06,-4.59005040969601e-06,4.76117762539599e-06,-5.51244577762233e-10,-2.79893222487893e-09,-0.0941173705403658,-5.43909675796974e-05,-3.51424711431858e-05,3.70096198939018e-05,3.58500902575316e-09,1.815830819041e-08,0.582079900209678,0.855533482797001,0.557066178757834,-0.580653859991194,-5.24341854659489e-08,-2.52175016980309e-07,-11.9999991148561 +5.986,-2.03991013639042e-07,-1.54881441623289e-07,1.43455022638683e-07,-5.44051845241533e-10,-2.76238240615179e-09,-0.0929772107385777,0.00175614344272788,0.00114406883546651,-0.0011913972856836,3.48322412579943e-09,1.7668432689131e-08,0.558079901969963,-0.358450296731892,-0.230274588831589,0.246633428685285,-8.17280271238761e-08,-4.24229228136255e-07,-11.9999990230453 +5.988,1.30555727409498e-08,-1.37750678294579e-08,-4.41151733893141e-09,-5.37311681259034e-10,-2.72825849412239e-09,-0.0918850509324857,-0.00148819215450743,-0.000956240826469644,0.00102354333463515,3.25809691725762e-09,1.64613912778648e-08,0.534079904117492,-0.444477139219907,-0.28948082090787,0.301586428047842,-8.35386447515525e-08,-4.35244722206813e-07,-11.9999990196541 +5.99,-6.15675963166942e-06,-3.97984474750229e-06,4.23762836117975e-06,-5.31019457572501e-10,-2.69653684104032e-09,-0.0908408911221075,-2.17651141519472e-05,-1.38544481650975e-05,1.49484265079078e-05,3.14906954679318e-09,1.59274538003036e-08,0.510079905891342,0.75763326468789,0.486968834498855,-0.521003953992428,-4.98650599976524e-08,-2.71609991441524e-07,-11.9999990928183 +5.992,-7.40048838668295e-08,-6.91928604898417e-08,5.53821886926931e-08,-5.24715403071863e-10,-2.66454867892119e-09,-0.0898447313089205,0.0015423409042438,0.000991634511525561,-0.00106047248133433,3.05863667726703e-09,1.53749513120988e-08,0.486079907746224,-0.379717922437376,-0.241276573549435,0.262658161241006,-7.44200708004488e-08,-4.36561377326944e-07,-11.9999989987284 +5.994,1.26039853051013e-08,-1.3306701400484e-08,-4.26156415711532e-09,-5.18784910863435e-10,-2.63503703579193e-09,-0.0888965714911228,-0.00154063680390128,-0.000978960742362729,0.00106558107147182,2.85138926359142e-09,1.4181208290996e-08,0.462079909896433,-0.392355620032706,-0.252256545758225,0.269727276969122,-8.09920706891638e-08,-4.21197798861832e-07,-11.9999990476072 +5.996,-6.23655209947265e-06,-3.9850358299412e-06,4.31770647458043e-06,-5.13309846017496e-10,-2.6078238457572e-09,-0.0879964116693346,-2.70815758872012e-05,-1.73916715074504e-05,1.84366265422779e-05,2.73466839451034e-09,1.36901601166513e-08,0.43807991155579,0.77570722874532,0.492998367606353,-0.536510242091339,-5.89589141396033e-08,-2.47403660057811e-07,-11.9999991595163 +5.998,-9.57223182437156e-08,-8.28733874302934e-08,6.94849420120047e-08,-5.07846237285392e-10,-2.58027639532532e-09,-0.0871442518448994,0.00156219211108035,0.000993032728062905,-0.00108045989689378,2.61555360703298e-09,1.31915936507646e-08,0.414079913258363,-0.299538993586367,-0.200037582235225,0.200289047665952,-8.58080967390598e-08,-4.06011162189963e-07,-11.999999059543 +6,1.22163448480414e-08,-1.29049176900153e-08,-4.13311299421459e-09,-5.02847631589365e-10,-2.55505747115414e-09,-0.0863400920163013,-0.00122523755023254,-0.000817542000448264,0.000819592817205998,2.39143600755413e-09,1.20661154678916e-08,0.390079915317623,-0.390704183100766,-0.248338547781445,0.27021491334534,-8.67418116502823e-08,-4.20653963052086e-07,-11.9999990455355 +6.002,-4.99667251917333e-06,-3.35304138922299e-06,3.34785621083564e-06,-4.98280493255177e-10,-2.53201193345376e-09,-0.0855839321836291,-6.24621322546578e-07,-3.21463062766222e-07,3.99756487461056e-07,2.26858636043189e-09,1.15089777985565e-08,0.366079917076226,0.619344632610778,0.413165022171551,-0.414390808921649,-6.04507763292211e-08,-2.77158504480898e-07,-11.9999991211004 +6.004,9.71785955785481e-09,-1.41907699410804e-08,-2.53408704437019e-09,-4.93773286147636e-10,-2.50902155995991e-09,-0.0848757723479962,0.00125214098021085,0.000835118088238125,-0.000837970418480782,2.14963290223722e-09,1.09574814499679e-08,0.342079918833216,-0.282625062517202,-0.186708895765115,0.191557468031452,-8.08138278517294e-08,-4.02709549734341e-07,-11.9999990542794 +6.006,1.18914016706412e-08,-1.25690362701159e-08,-4.02546308786444e-09,-4.89681961646227e-10,-2.48818200765388e-09,-0.0842156125082961,-0.00113112487139148,-0.000747157046123311,0.000766629628613355,1.94533104902494e-09,9.89813959961892e-09,0.318079920859103,-0.313046600707391,-0.208767814931666,0.209496364538377,-8.04621126669996e-08,-4.05924859697185e-07,-11.999999053135 +6.008,-4.51478162600757e-06,-3.00281895443399e-06,3.06398442740871e-06,-4.85991961951537e-10,-2.46942900156144e-09,-0.08360345266456,-4.54226185744222e-08,4.68285115545804e-08,1.50396726322793e-08,1.82778445156926e-09,9.33378201117932e-09,0.294079922620682,0.463606901011305,0.307038397964274,-0.313495475075556,-6.09863722024175e-08,-2.96397021510291e-07,-11.9999991122381 +6.01,1.17097111963435e-08,-1.23817222238976e-08,-3.96530439733533e-09,-4.8237082383995e-10,-2.45084687960917e-09,-0.0830392928178135,0.000723302732653534,0.000480996545733652,-0.000487352271688731,1.70138556021529e-09,8.71255151357788e-09,0.270079924410157,1.74029280569856e-06,-1.82437875570704e-06,-5.81067746003455e-07,-7.17390556682373e-08,-3.61054502268525e-07,-11.9999990792804 +6.012,-1.62157069539311e-06,-1.07883277149917e-06,1.11457534065357e-06,-4.79186419710675e-10,-2.43457879550713e-09,-0.0825231329669192,-3.84614473516272e-08,3.95309965317514e-08,1.27154016482653e-08,1.54082822889628e-09,7.88956400210506e-09,0.246079926303555,-0.249364674445512,-0.164236843738585,0.169557617245053,-7.74861945439684e-08,-3.95725986701083e-07,-11.9999990623607 +6.014,1.1555865406937e-08,-1.22235982377705e-08,-3.91444279074227e-09,-4.76207510924365e-10,-2.41928862360075e-09,-0.0820549731125992,-0.000274155965128623,-0.000175950829220761,0.000190878197291557,1.39144078203939e-09,7.12964756677338e-09,0.222079928160708,1.73084870004092e-06,-1.81807737267657e-06,-5.8056229094936e-07,-7.12802213086861e-08,-3.59972468499588e-07,-11.9999990831485 +6.016,-2.71819455590749e-06,-1.78263608838214e-06,1.87808812981971e-06,-4.73620656582519e-10,-2.40606020524003e-09,-0.0816348132542765,-3.15380525514643e-08,3.2258687041046e-08,1.03931524844681e-08,1.25570734366157e-09,6.44967412810686e-09,0.198079929970966,0.114720284392698,0.074044581939793,-0.0793592577828725,-6.83615490605021e-08,-3.42995597202695e-07,-11.9999990941196 +6.018,1.14297131967311e-08,-1.20945634896064e-08,-3.8728701808044e-09,-4.71184681549719e-10,-2.39348992708832e-09,-0.0812626533927154,0.000184725172442118,0.000120227498538378,-0.000126558833839898,1.11799458579741e-09,5.75766517796274e-09,0.174079931784235,1.72070279032402e-06,-1.81114758607409e-06,-5.79210724522164e-07,-7.10694524064786e-08,-3.58828852048687e-07,-11.9999990872357 +6.02,-1.97929386613893e-06,-1.30172609422857e-06,1.37185279446006e-06,-4.69148678239328e-10,-2.38302954452818e-09,-0.0809384935271395,-2.46552413901674e-08,2.50140966967488e-08,8.07630958637916e-09,9.71429534035619e-10,5.01435871991195e-09,0.150079933622018,-0.0610200551964644,-0.0398996381606906,0.0418377730487302,-7.2462435357572e-08,-3.66809013718452e-07,-11.999999084548 +6.022,1.13310922311705e-08,-1.19945071028194e-08,-3.84056494245888e-09,-4.67298963413576e-10,-2.37343249220867e-09,-0.0806623336582273,-5.93550483437666e-05,-3.93710541044022e-05,4.07922583550411e-05,8.28144844367087e-10,4.29042912308877e-09,0.126079935446038,1.71091439626803e-06,-1.80402611252196e-06,-5.77151390914977e-07,-7.08964137396578e-08,-3.57445410076118e-07,-11.99999909113 +6.024,-2.21671405951397e-06,-1.45921031064616e-06,1.53502182788021e-06,-4.6583609886186e-10,-2.36586782803583e-09,-0.0804341737853554,-1.7811583805096e-08,1.77979922466617e-08,5.7677040227195e-09,6.87843879077019e-10,3.58457707960764e-09,0.102079937257503,0.0279932866847226,0.0180494490438867,-0.0194286174197444,-7.01296659633602e-08,-3.52720890689733e-07,-11.9999990951551 +6.026,1.12598458959501e-08,-1.19233151338327e-08,-3.817494126368e-09,-4.64547587897268e-10,-2.35909418389024e-09,-0.0802540139091973,5.26180983951116e-05,3.28267420711367e-05,-3.69222113239282e-05,5.47626180513677e-10,2.87954556033e-09,0.0780799390654226,1.70164148613891e-06,-1.7968651740147e-06,-5.74678108919616e-07,-7.07246761155968e-08,-3.5594357322711e-07,-11.9999990947712 +6.028,-2.0062416659335e-06,-1.3279033423616e-06,1.38733298258448e-06,-4.63645594139805e-10,-2.35434964579451e-09,-0.0801218540290937,-1.10050178605396e-08,1.06105315506021e-08,3.46899158704078e-09,4.04945174614601e-10,2.16080278669904e-09,0.0540799408784128,-0.0159586419321286,-0.0103916102289925,0.0110483475961716,-7.10360589794817e-08,-3.57472731970904e-07,-11.9999990953372 +6.03,1.12158258245079e-08,-1.18808730076303e-08,-3.80361816001984e-09,-4.6292780719881e-10,-2.35045097274345e-09,-0.0800376941456836,-1.12164693334098e-05,-8.73969884483779e-06,7.27117906076321e-06,2.63481944595718e-10,1.44965463244622e-09,0.0300799426840684,1.57572717894545e-06,-1.66575043689088e-06,-5.3221077718483e-07,-6.57304072282292e-08,-3.29931394704672e-07,-11.1637274781456 +6.032,-2.05110754326714e-06,-1.36286213774095e-06,1.41641769882753e-06,-4.62591666361423e-10,-2.34855102726472e-09,-0.0800015342583574,-4.70210914475851e-09,3.94752980303935e-09,1.3401484783017e-09,1.42023545701713e-10,8.41077207880496e-10,0.00942503096583551,0.00619560183159349,0.0041075979085111,-0.00417052571860919,-4.42835872138815e-08,-2.20511976734086e-07,-7.48933093973589 +6.034,1.11970173879289e-08,-1.18650828884181e-08,-3.79825756610663e-09,-4.62359713016003e-10,-2.34708666391192e-09,-0.0799999940218203,1.35659379929614e-05,7.69069278920478e-06,-9.4109238136717e-06,8.63475957402119e-11,5.67606725509976e-10,0.000122618925128118,3.36287367310775e-07,-3.54007188147072e-07,-1.1169515833081e-07,-1.47442821840695e-08,-7.02151010945372e-08,-2.35625806848782 +6.036,-1.99684379129528e-06,-1.33209936658413e-06,1.37877400357284e-06,-4.62246275978462e-10,-2.34628060036268e-09,-0.0800010437826569,-3.35695967551526e-09,2.53150105045091e-09,8.9336784497841e-10,8.30464169654284e-11,5.60216803502315e-10,-1.30811680931749e-09,-0.00386436362504654,-0.00246636181573277,0.00277239430327858,-1.43808576157998e-09,-2.39738784376845e-09,-0.0356912437078916 +6.038,1.11835895492268e-08,-1.18549568842163e-08,-3.79468409472672e-09,-4.62027527348141e-10,-2.34484579669791e-09,-0.0799999940270527,-1.89151650722648e-06,-2.17475447372741e-06,1.67865339944386e-06,8.05952526938913e-11,5.58017174134901e-10,-2.01460497034645e-05,3.84582773594647e-09,-2.27508983860352e-09,1.36327581173316e-09,-1.1401470045814e-09,-5.9587751396708e-10,1.36175792856946e-09 +6.04,-2.00440985732419e-06,-1.34079838447904e-06,1.38548861717061e-06,-4.61923894967686e-10,-2.34404853166614e-09,-0.0800011243668557,-3.34157636457148e-09,2.52240069109649e-09,8.98820948225342e-10,7.84858289471033e-11,5.57833293446447e-10,-1.30266977760322e-09,0.00136650900507304,0.00097985211350999,-0.000840802281531447,-1.04083408559056e-09,-2.12503626116858e-11,0.00690798746330712 +6.042,1.11702232437685e-08,-1.1844867281452e-08,-3.79108881093382e-09,-4.61713584032353e-10,-2.34261446352413e-09,-0.0799999940322634,3.57451951306509e-06,1.74465398031212e-06,-1.68455572668156e-06,7.64319163515296e-11,5.57932172684454e-10,7.48590014976097e-06,2.18911260665053e-09,-9.33281230215418e-10,2.05868308506512e-09,-1.08940634291755e-09,-2.13370987576065e-10,7.5980888254998e-10 +6.044,-1.99011177927193e-06,-1.33381976855779e-06,1.37875039426388e-06,-4.6161816730228e-10,-2.3418168029754e-09,-0.0800010944232551,-3.33281991414487e-09,2.51866756617563e-09,9.07055680565603e-10,7.41282035754326e-11,5.56979809496143e-10,-1.29963054207301e-09,-0.00100403218351106,-0.000585920462755392,0.000762284835947774,-1.07249278901841e-09,-3.08347097823901e-10,-0.00159365318858032 +6.046,1.1156891964112e-08,-1.18347926111873e-08,-3.78746058821156e-09,-4.61417071218051e-10,-2.34038654428614e-09,-0.0799999940374619,-4.41609220979598e-07,-5.99027870709711e-07,1.36458361710988e-06,7.21419451954554e-11,5.56698784293158e-10,1.11128739543899e-06,1.2026512596448e-09,-2.38090796938049e-10,2.21524187887324e-09,-9.44556932665466e-10,-5.33427468553768e-11,5.09141340127181e-10 +6.048,-1.99187821615585e-06,-1.33621588004063e-06,1.38420872873232e-06,-4.61329599521498e-10,-2.33959000783823e-09,-0.0800010899781055,-3.32800930910629e-09,2.51771520298788e-09,9.15916648081095e-10,7.03499758447712e-11,5.56766438508721e-10,-1.29759397671251e-09,0.000355082347422802,0.000290817986879665,-0.000223307682024615,-8.47846098887668e-10,7.02563007461526e-11,0.000263919803546113 +6.05,1.11435799268755e-08,-1.18247217503753e-08,-3.78379692161923e-09,-4.61135671314672e-10,-2.33815947853211e-09,-0.0799999940426523,9.78720168711451e-07,5.64244076808821e-07,4.71352889011514e-07,6.87505607999051e-11,5.56979809496143e-10,2.16696660962332e-06,7.82306077741496e-10,-8.63024930695266e-11,1.89084858876343e-09,-7.57206797267611e-10,5.11743425103942e-11,3.43475248315334e-10 +6.052,-1.987963335481e-06,-1.33395890373339e-06,1.38609414028837e-06,-4.61054597278299e-10,-2.33736208860025e-09,-0.0800010813102391,-3.32488008479533e-09,2.5173699930156e-09,9.2348004243615e-10,6.73211486557004e-11,5.56971135878763e-10,-1.29622007571924e-09,-0.000221180116485376,-0.000120775501578875,0.000129394056667285,-6.39245600893637e-10,2.42861286945885e-11,-0.000109161388261882 +6.054,1.11302804065364e-08,-1.18146522704032e-08,-3.78010300144949e-09,-4.60866386720049e-10,-2.33593159398859e-09,-0.0799999940478372,9.39997027698501e-08,8.11420704932653e-08,9.88929115680712e-07,6.61935783963303e-11,5.57076954010921e-10,1.73032105657575e-06,7.46202145028666e-10,-3.13117587274158e-10,1.23967676407148e-09,-4.96998275863726e-10,6.50521306582962e-12,4.45823933254227e-10 +6.056,-1.98758733666992e-06,-1.33363433545142e-06,1.39004985675109e-06,-4.60789822964713e-10,-2.3351337807842e-09,-0.0800010743889548,-3.32189527621521e-09,2.51611752266651e-09,9.28438749492435e-10,6.53331555522457e-11,5.56997156731026e-10,-1.29443677998623e-09,0.000118207402579387,7.41571166452912e-05,-0.000141125310873221,-3.5561831257892e-10,-5.42101086551971e-11,-6.05070975962923e-05 +6.058,1.11169928254315e-08,-1.18045878003126e-08,-3.77638924645152e-09,-4.6060505409784e-10,-2.33370360536167e-09,-0.0799999940530149,5.66829313087345e-07,3.77770537074398e-07,4.2442787218789e-07,6.47711051460148e-11,5.56860113576301e-10,1.4882926661906e-06,9.2292709951254e-10,-7.13838710503963e-10,4.46257614143388e-10,-2.42427605771331e-10,-8.58688120917324e-11,5.42101086314449e-10 +6.06,-1.98532001941757e-06,-1.33212325330312e-06,1.39174756823984e-06,-4.60530738544129e-10,-2.3329063403299e-09,-0.0800010684357842,-3.31820356781716e-09,2.51326216782449e-09,9.30223779949009e-10,6.43634451291603e-11,5.56653681482659e-10,-1.29226837564097e-09,-3.85162823943564e-05,-5.00985099759e-05,-4.82439619937005e-05,-1.31405303301648e-10,-1.22298005025435e-10,-0.000100962663576649 +6.062,1.11037200111602e-08,-1.17945347516413e-08,-3.77266835133172e-09,-4.60347600317323e-10,-2.33147699063574e-09,-0.079999994058184,4.12764183509902e-07,1.77376497170775e-07,2.31452024213067e-07,6.42454839328081e-11,5.56370921556199e-10,1.08444201188397e-06,1.1487664116731e-09,-1.12583553576969e-09,-3.53016227309724e-10,-9.10729824530879e-12,-2.0860049795537e-10,6.21031004328111e-10 +6.064,-1.98366896268353e-06,-1.33141374731444e-06,1.39267337633669e-06,-4.60273756608398e-10,-2.33068085664367e-09,-0.0800010640980161,-3.31360850217047e-09,2.50875882568141e-09,9.2881171503977e-10,6.4327015936179e-11,5.55819279490838e-10,-1.28978425162366e-09,3.13110569915022e-05,-1.30029923460604e-05,-9.54419223774804e-05,9.67108337821407e-11,-2.81025203139138e-10,-0.000108458395910231 +6.066,1.10904655771515e-08,-1.17844997163385e-08,-3.76895310447156e-09,-4.60090292253579e-10,-2.32925371351778e-09,-0.0799999940633432,5.38008411475897e-07,1.25364527786539e-07,-1.50315665296813e-07,6.46323272679366e-11,5.55246820743642e-10,6.50608428243087e-07,1.34793435112619e-09,-1.46584133733931e-09,-1.04278564954788e-09,1.73906028463066e-10,-3.22224885693468e-10,7.22512327815759e-10 +6.068,-1.98151692903763e-06,-1.33091228920329e-06,1.39207211367551e-06,-4.60015227299326e-10,-2.3284598693607e-09,-0.0800010614955824,-3.30821676476597e-09,2.50289546033205e-09,9.24640572441578e-10,6.50226400500314e-11,5.54530379948064e-10,-1.28689420231239e-09,-2.19353335950564e-05,-4.72060546034754e-05,-4.32147087212147e-05,2.58473797924134e-10,-3.07479736086068e-10,-0.000103539327285482 +6.07,1.10772327100925e-08,-1.17744881344972e-08,-3.7652545421818e-09,-4.59830201693379e-10,-2.32703559199798e-09,-0.0799999940684907,4.50267077095661e-07,-6.34596906273835e-08,-3.23174500181691e-07,6.56662224596333e-11,5.54016901799298e-10,2.36451119101115e-07,1.46280557093418e-09,-1.68398281416591e-09,-1.49901792362747e-09,3.24826970880338e-10,-3.71230823828343e-10,7.3725747721888e-10 +6.072,-1.97971586072924e-06,-1.3311661279658e-06,1.39077941567478e-06,-4.59752562409488e-10,-2.3262438017535e-09,-0.0800010605497779,-3.30236554248223e-09,2.49615952907539e-09,9.18644500747069e-10,6.63219479335526e-11,5.53045456652751e-10,-1.28394517240352e-09,-1.3939220491866e-05,-3.41806574363743e-05,-2.69576019492999e-05,3.60388802130535e-10,-4.07226336016309e-10,-8.51823316744401e-05 +6.074,1.10640232479225e-08,-1.17645034963809e-08,-3.76157996417881e-09,-4.59564913901644e-10,-2.32482341017137e-09,-0.0799999940736265,3.94510195128203e-07,-2.00182320372866e-07,-4.31004907978879e-07,6.71077776681553e-11,5.52387996455233e-10,-1.04278207596608e-07,1.47673756921683e-09,-1.7243151352592e-09,-1.77071898815392e-09,4.05925293374802e-10,-4.22838847299957e-10,7.4246164778918e-10 +6.076,-1.97813781994873e-06,-1.33196685724729e-06,1.38905539604287e-06,-4.59484131298815e-10,-2.32403424976768e-09,-0.0800010609668908,-3.29645859220536e-09,2.48926226853435e-09,9.11561624794453e-10,6.7945649107052e-11,5.51354101263551e-10,-1.28097532581236e-09,-3.14310995849903e-05,-3.50576516601586e-05,7.89527579596709e-06,4.24139889880053e-10,-4.44956571557396e-10,-5.98637693236038e-05 +6.078,1.10508374135537e-08,-1.17545464473068e-08,-3.75793371767963e-09,-4.59293131305216e-10,-2.32261799376632e-09,-0.0799999940787504,2.68785796788228e-07,-3.40412927013516e-07,-3.99423804795007e-07,6.88043372276757e-11,5.50608170169003e-10,-3.4373328489105e-07,1.40740283992078e-09,-1.67314079244178e-09,-1.83468691622977e-09,4.3281350726008e-10,-3.9595063336117e-10,7.10369263341547e-10 +6.08,-1.97706267676158e-06,-1.33332850895534e-06,1.38745770082369e-06,-4.59208913949904e-10,-2.32183181708701e-09,-0.0800010623418239,-3.29082898084568e-09,2.48256970536459e-09,9.04222877129534e-10,6.96769031360921e-11,5.49770298730106e-10,-1.278133848759e-09,-2.8551377462373e-05,-2.24707314387484e-05,2.46935959094057e-05,4.36716635073342e-10,-3.80338122138459e-10,-3.28674778365765e-05 +6.082,1.10376740976303e-08,-1.17446161684853e-08,-3.75431682617111e-09,-4.59014423692672e-10,-2.3204189125714e-09,-0.0799999940838629,1.54580286938748e-07,-4.30295852768499e-07,-3.00649421157395e-07,7.05512037679688e-11,5.49086817680449e-10,-4.75203196237342e-07,1.27962961425837e-09,-1.52699033986604e-09,-1.73775924210956e-09,4.28476698562307e-10,-3.86409654304267e-10,6.68735900059863e-10 +6.084,-1.97644435561382e-06,-1.33504969236642e-06,1.38625510313906e-06,-4.58926709134833e-10,-2.31963546981628e-09,-0.0800010642426367,-3.28571046238865e-09,2.47646174400512e-09,8.97271840161095e-10,7.13908099303415e-11,5.48224660112889e-10,-1.27545890515876e-09,-2.83843822469505e-05,-1.36785678270485e-05,3.71558114137082e-05,4.19369400321308e-10,-3.96384314230231e-10,-8.52332093795178e-06 +6.086,1.10245312557808e-08,-1.17347103215093e-08,-3.75072773881047e-09,-4.5872886045295e-10,-2.31822601393095e-09,-0.0799999940889648,4.10427579509338e-08,-4.85010124076699e-07,-1.52026175502545e-07,7.22286813692543e-11,5.47501280423528e-10,-5.09296479989153e-07,1.12794972996313e-09,-1.35568639633871e-09,-1.56580477745411e-09,3.96817995133745e-10,-3.41740524737096e-10,5.86336534809501e-10 +6.088,-1.97628018458202e-06,-1.33698973286273e-06,1.38564699843705e-06,-4.58637794409356e-10,-2.31744546469459e-09,-0.0800010662798226,-3.28119866346879e-09,2.47103899841977e-09,8.9100862105128e-10,7.29780819108763e-11,5.46857698013941e-10,-1.27311355901952e-09,-2.11324377051245e-05,-3.06176741943301e-06,3.7909079521345e-05,3.6212352560615e-10,-3.04010289195316e-10,1.04655659139146e-05 +6.09,1.10114064611269e-08,-1.17248261655156e-08,-3.74716370432626e-09,-4.58436948125307e-10,-2.31603858313889e-09,-0.0799999940940572,-4.34869928695548e-08,-4.9725719375443e-07,-3.89857417182294e-10,7.36771754716787e-11,5.46285239266747e-10,-4.67434216333499e-07,9.8228716845384e-10,-1.16053000556536e-09,-1.33205078916486e-09,3.39138439549337e-10,-2.87096735304451e-10,5.62917768025031e-10 +6.092,-1.9764541325535e-06,-1.33897876163774e-06,1.38564543900738e-06,-4.58343085707469e-10,-2.31526032373752e-09,-0.0800010681495595,-3.27726951479498e-09,2.4663968783975e-09,8.85680417894619e-10,7.43346356690738e-11,5.45709311072723e-10,-1.27086188794742e-09,-1.42288705774439e-05,4.37295382194072e-06,3.3070694620274e-05,3.26995375225718e-10,-2.6888213874608e-10,2.29618893343459e-05 +6.094,1.09982973830677e-08,-1.1714960578002e-08,-3.74362098265468e-09,-4.58139609582631e-10,-2.3138557458946e-09,-0.0799999940991407,-1.00402475179337e-07,-4.79765378466665e-07,1.31892921063929e-07,7.49851569725817e-11,5.45209710711763e-10,-3.75586658996105e-07,8.67686998458368e-10,-1.04603825587733e-09,-1.13515967454339e-09,2.93601948313265e-10,-2.48065457034441e-10,5.04804531438789e-10 +6.096,-1.97685574245422e-06,-1.34089782315161e-06,1.38617301069163e-06,-4.58043145079579e-10,-2.31307948489468e-09,-0.0800010696519061,-3.27379876680114e-09,2.462212725374e-09,8.81139779196446e-10,7.55090434623268e-11,5.44717049244585e-10,-1.26884266982166e-09,-6.48637339585725e-06,9.89617849475486e-06,2.35451235331484e-05,2.63244287475319e-10,-2.41560244060041e-10,2.91270193728196e-05 +6.098,1.09852021880005e-08,-1.17051117271005e-08,-3.7400964235379e-09,-4.57837573408781e-10,-2.31167687769762e-09,-0.0799999941042161,-1.26347968762763e-07,-4.4018066448765e-07,2.26073415196512e-07,7.60381341224829e-11,5.44243469735523e-10,-2.59078581504839e-07,7.89299181751028e-10,-9.58001039744673e-10,-9.30895985344779e-10,2.35488711859609e-10,-2.32452945811084e-10,5.04804531579608e-10 +6.1,-1.97736113432927e-06,-1.34265854580956e-06,1.38707730435242e-06,-4.57738992543089e-10,-2.31090251101573e-09,-0.0800010706882204,-3.27064157007414e-09,2.45838072121502e-09,8.77416195255067e-10,7.64509983097653e-11,5.43787237461341e-10,-1.26682345169534e-09,-5.29949077250006e-07,1.24947686745458e-05,1.31435695660668e-05,1.91686944099655e-10,-1.90819582327235e-10,3.00069942851666e-05 +6.102,1.09721196217202e-08,-1.16952782042157e-08,-3.73658675875688e-09,-4.57531769415542e-10,-2.30950172874778e-09,-0.0799999941092834,-1.28467765071763e-07,-3.90201589789461e-07,2.78647693460785e-07,7.68048818988816e-11,5.43480191406214e-10,-1.39050604364159e-07,7.55146812954774e-10,-9.39352762105163e-10,-7.72168787195639e-10,1.76941794553916e-10,-1.56558793676732e-10,4.15466272426181e-10 +6.104,-1.97787500538955e-06,-1.34421935216872e-06,1.38819189512626e-06,-4.57431773015493e-10,-2.30872859025011e-09,-0.0800010712444229,-3.26762098282232e-09,2.4546233101666e-09,8.74327520106285e-10,7.71587654879809e-11,5.43161002286634e-10,-1.26516158660564e-09,3.69266639835988e-06,1.29763088295648e-05,3.60282593687816e-06,1.66967134558505e-10,-1.97758476291518e-10,2.70932278348478e-05 +6.106,1.09590491377889e-08,-1.1685459710975e-08,-3.73308944867645e-09,-4.5722313435359e-10,-2.30732908473863e-09,-0.079999994114344,-1.13697099478325e-07,-3.38296354471208e-07,2.93058997208296e-07,7.74727504371155e-11,5.42689157501048e-10,-3.06776930247797e-08,7.46039515068448e-10,-9.15066633713838e-10,-6.68952740471923e-10,1.43114686763773e-10,-2.33753988417989e-10,4.72712147273834e-10 +6.108,-1.97832979378747e-06,-1.3455725375866e-06,1.3893641311151e-06,-4.57121882013745e-10,-2.3065578336201e-09,-0.0800010713671336,-3.26463682476205e-09,2.45096304363174e-09,8.71651709144397e-10,7.77312242350361e-11,5.42225986332962e-10,-1.26327073801654e-09,5.69212336769673e-06,1.16665253846272e-05,-3.43449053917293e-06,1.1449174941877e-10,-2.07733136218111e-10,2.19418563179845e-05 +6.11,1.09459905904899e-08,-1.16756558588005e-08,-3.72960284183987e-09,-4.5691220945665e-10,-2.3051601807933e-09,-0.0799999941193971,-9.0928606007536e-08,-2.91630252932694e-07,2.79321035051603e-07,7.79307174347907e-11,5.41858224956175e-10,5.70897322471682e-08,7.70379853478508e-10,-9.55398954258364e-10,-5.9934696090174e-10,8.8037216410156e-11,-1.61762964104766e-10,4.81385764513513e-10 +6.112,-1.9786935082115e-06,-1.34673905859833e-06,1.3904814152553e-06,-4.56810159144005e-10,-2.30439040072028e-09,-0.0800010711387747,-3.26155530534813e-09,2.44714144781471e-09,8.6925432130079e-10,7.80833731006766e-11,5.41578934476543e-10,-1.26134519495849e-09,5.91937322726323e-06,9.32480525088716e-06,-7.55612131026091e-06,8.19656842355769e-11,-1.57426155474975e-10,1.59043212627465e-05 +6.114,1.09329443692685e-08,-1.16658672930092e-08,-3.72612582455467e-09,-4.56599875964248e-10,-2.30299386505539e-09,-0.0799999941244425,-6.72511130984857e-08,-2.5433103192915e-07,2.49096549810562e-07,7.82585801717329e-11,5.41228520334275e-10,1.20707017298147e-07,7.95750184676696e-10,-1.02695629791392e-09,-5.55762033664191e-10,6.76542155587484e-11,-1.95156391077406e-10,4.9179410550937e-10 +6.116,-1.97896251266389e-06,-1.34775638272605e-06,1.39147780145454e-06,-4.56497124823319e-10,-2.30222548663894e-09,-0.0800010706559466,-3.25837230460943e-09,2.44303362262305e-09,8.67031273166133e-10,7.83539899629117e-11,5.40798308912233e-10,-1.25937801853645e-09,4.80121996846897e-06,6.48690823278039e-06,-8.86646984130104e-06,4.72712147247119e-11,-1.80844922340525e-10,9.98610135555912e-06 +6.118,1.09199108800501e-08,-1.16560951585187e-08,-3.72265769946201e-09,-4.56286460004396e-10,-2.30083067181974e-09,-0.07999999412948,-4.80462332246076e-08,-2.28383398998025e-07,2.13630670445354e-07,7.84476650306318e-11,5.40505140644913e-10,1.60651422720388e-07,8.37817228607423e-10,-1.07769695931526e-09,-5.18248638400074e-10,4.11996825588061e-11,-1.70436581484755e-10,4.42354486304238e-10 +6.12,-1.97915469759679e-06,-1.34866991632204e-06,1.39233232413633e-06,-4.56183334163196e-10,-2.30006346607636e-09,-0.0800010700133409,-3.255021035695e-09,2.43872283478579e-09,8.64958278612533e-10,7.85187886931469e-11,5.40116562586294e-10,-1.25760860059124e-09,2.9816225985613e-06,3.66135030281535e-06,-8.02741467049802e-06,2.55871712663051e-11,-1.94722710208403e-10,4.8155264498106e-06 +6.122,1.09068907959073e-08,-1.16463402671796e-08,-3.71919786634756e-09,-4.55972384849623e-10,-2.2986702055694e-09,-0.0799999941345104,-3.61197428303637e-08,-2.13737997786765e-07,1.81521011763366e-07,7.8550013715697e-11,5.3972624980408e-10,1.79913528519628e-07,8.59609692635672e-10,-1.0638191717779e-09,-4.84638371148917e-10,1.30104260654657e-11,-2.11202583230112e-10,5.16947595910772e-10 +6.124,-1.97929917656811e-06,-1.34952486831319e-06,1.39305840818338e-06,-4.55869134108333e-10,-2.29790456107715e-09,-0.0800010692936868,-3.25158259692445e-09,2.43446755809868e-09,8.63019725127937e-10,7.85708303974087e-11,5.39271752253374e-10,-1.25554081020759e-09,9.89629710642584e-07,1.16367289067422e-06,-5.86025997692909e-06,6.07153217028023e-12,-2.27248775323003e-10,6.92302118420192e-07 +6.126,1.08938844655196e-08,-1.16366023969472e-08,-3.71574578744704e-09,-4.55658101528034e-10,-2.29651311856038e-09,-0.0799999941395326,-3.2161223987793e-08,-2.09083306224068e-07,1.58079971855647e-07,7.85742998443781e-11,5.38817254702787e-10,1.82682736993309e-07,8.86497906152442e-10,-1.14882062183073e-09,-4.80084721928787e-10,-5.20417042357214e-12,-1.89952220589548e-10,4.76181594086048e-10 +6.128,-1.97942782146406e-06,-1.35036120153809e-06,1.3936907280708e-06,-4.55554836908956e-10,-2.29574929205834e-09,-0.0800010685629559,-3.24803660529984e-09,2.42987227561136e-09,8.61099386240222e-10,7.85500137157144e-11,5.38511943371016e-10,-1.25363608383125e-09,-7.42993340461674e-07,-8.11548744860715e-07,-3.19839033730884e-06,-1.60461921571493e-11,-1.7130394328261e-10,-2.32615315899257e-06 +6.13,1.08808923190984e-08,-1.16268829078447e-08,-3.71230138990208e-09,-4.55343901473171e-10,-2.2943590707869e-09,-0.0799999941445471,-3.51331973496393e-08,-2.1232950120351e-07,1.45286410506413e-07,7.85101150757495e-11,5.38132038929657e-10,1.7337812435734e-07,8.86660536838768e-10,-1.12149872735361e-09,-4.41703965118289e-10,-2.21177243230574e-11,-2.12069944968023e-10,5.08273978530682e-10 +6.132,-1.97956835425346e-06,-1.3512105195429e-06,1.39427187371283e-06,-4.55240796448653e-10,-2.29359676390262e-09,-0.0800010678694434,-3.24448996315249e-09,2.42538628070194e-09,8.59332570379749e-10,7.84615428184222e-11,5.37663663591143e-10,-1.25160298791713e-09,-1.9681328507061e-06,-2.20016843287054e-06,-7.02230591376457e-07,-1.8648277362393e-11,-2.1510571099127e-10,-4.32788874181892e-06 +6.134,1.08679143592458e-08,-1.16171813627219e-08,-3.70886405962056e-09,-4.55030055301897e-10,-2.29220841613254e-09,-0.0799999941495535,-4.30057287524646e-08,-2.21130174934994e-07,1.42477488140906e-07,7.84355219663e-11,5.37271616085692e-10,1.56066569390063e-07,8.92406807992902e-10,-1.13017234446449e-09,-4.23706208959716e-10,-3.20923843012253e-11,-2.07299455349421e-10,4.57966997588496e-10 +6.136,-1.97974037716847e-06,-1.35209504024264e-06,1.39484178366539e-06,-4.54927054360788e-10,-2.29144767743827e-09,-0.0800010672451771,-3.24092033592052e-09,2.42086559132408e-09,8.5763774554391e-10,7.83331732812173e-11,5.36834465769746e-10,-1.24977111992677e-09,-2.59149375136002e-06,-3.01805672466175e-06,1.19691778189309e-06,-4.20670442967914e-11,-1.9038590151828e-10,-5.46763329057652e-06 +6.138,1.08549506779021e-08,-1.16074979003566e-08,-3.70543350863839e-09,-4.54716722608772e-10,-2.29006107826946e-09,-0.0799999941545526,-5.33717037579036e-08,-2.33202401833639e-07,1.47265159268478e-07,7.82672537891128e-11,5.36510072479619e-10,1.34196036227759e-07,8.85251074014124e-10,-1.08723793870266e-09,-4.00070601694695e-10,-3.07913417029276e-11,-1.64365049378563e-10,5.01335084626569e-10 +6.14,-1.9799538639835e-06,-1.35302784984997e-06,1.39543084430246e-06,-4.54613985345631e-10,-2.28930163714836e-09,-0.080001066708393,-3.23737933162446e-09,2.41651663956927e-09,8.56037463137131e-10,7.82100079144056e-11,5.36177005572231e-10,-1.24776577958827e-09,-2.65348160111441e-06,-3.33659488928235e-06,2.3129529975406e-06,-4.25007251570876e-11,-1.83013326685754e-10,-5.91074411637003e-06 +6.142,1.08420011605756e-08,-1.15978318337984e-08,-3.70200935878584e-09,-4.54403882577115e-10,-2.28791637024717e-09,-0.0799999941595437,-6.39856301623624e-08,-2.4654878139077e-07,1.56516971258642e-07,7.80972508884845e-11,5.35778019172876e-10,1.10553059762276e-07,8.72186437476459e-10,-1.08940634277955e-09,-3.7665183467402e-10,-6.07153216548619e-11,-2.28116137061248e-10,4.71844785396519e-10 +6.144,-1.98020980650415e-06,-1.35401404497554e-06,1.3960569121875e-06,-4.54301596342077e-10,-2.28715852507166e-09,-0.0800010662661807,-3.23389058587456e-09,2.41215901419816e-09,8.54530855798435e-10,7.79671466277862e-11,5.35264541023987e-10,-1.24587840044668e-09,-2.27801366095274e-06,-3.25170814753711e-06,2.66071604852817e-06,-5.59448321002614e-11,-2.15539391890168e-10,-5.80598243094105e-06 +6.146,1.08290655982321e-08,-1.15881831977416e-08,-3.69859123536265e-09,-4.54092013990604e-10,-2.28577531208307e-09,-0.0799999941645272,-7.30976848061723e-08,-2.59555613980917e-07,1.67159835452753e-07,7.78734715600834e-11,5.34915861605315e-10,8.73291300385145e-08,8.6161546665372e-10,-1.04625509658242e-09,-3.58220397836632e-10,-5.204170428363e-11,-1.8561541195924e-10,4.57966997727049e-10 +6.148,-1.98050219724338e-06,-1.35505226743146e-06,1.39672555152931e-06,-4.53990102455837e-10,-2.28501886162524e-09,-0.0800010659168642,-3.23044412400794e-09,2.40797399381183e-09,8.53097974207089e-10,7.77589798106517e-11,5.3452207937615e-10,-1.24404653245577e-09,-1.62931967179802e-06,-2.86721753109281e-06,2.39329649847204e-06,-4.20670442967529e-11,-1.98192157160003e-10,-5.27776173459372e-06 +6.15,1.08161438217361e-08,-1.15785513017663e-08,-3.69517884346582e-09,-4.53780978071361e-10,-2.28363722376557e-09,-0.0799999941695034,-7.96149634933651e-08,-2.7102448410529e-07,1.76733021446642e-07,7.77052033828964e-11,5.34123092976675e-10,6.62180831001372e-08,8.50556604135595e-10,-1.04408669196983e-09,-3.54317269920919e-10,-4.076600168114e-11,-1.66967134533074e-10,4.28476698497205e-10 +6.152,-1.98082065709735e-06,-1.35613636536788e-06,1.3974324836151e-06,-4.53679281642305e-10,-2.28288236925334e-09,-0.0800010656519919,-3.2270418975914e-09,2.40379764704395e-09,8.51680705127405e-10,7.75959158039271e-11,5.33854210838017e-10,-1.24233262566178e-09,-8.71689114124057e-07,-2.28229588007834e-06,1.73097387119367e-06,-5.46437894889683e-11,-1.73906028437071e-10,-4.43221848111804e-06 +6.154,1.08032356541457e-08,-1.15689361111782e-08,-3.69177212064531e-09,-4.53470594408145e-10,-2.28150180692221e-09,-0.0799999941744727,-8.3101719949861e-08,-2.80153667625602e-07,1.83656916931416e-07,7.74866282249405e-11,5.33427468862927e-10,4.8489209175667e-08,8.46328216021259e-10,-9.93562870999105e-10,-3.30681662655342e-10,-6.24500451394726e-11,-2.16840434526748e-10,4.70110062058681e-10 +6.156,-1.98115306397715e-06,-1.35725698003838e-06,1.39816711128282e-06,-4.53369335129405e-10,-2.28074865937788e-09,-0.080001065458035,-3.22365658472731e-09,2.39982339555995e-09,8.50357978476784e-10,7.73461156233692e-11,5.3298684909991e-10,-1.24045218541355e-09,-1.42844666212381e-07,-1.58676544124788e-06,9.00749527039263e-07,-5.76795555805166e-11,-1.89084858911048e-10,-3.36658739080924e-06 +6.158,1.07903410278068e-08,-1.15593368175959e-08,-3.6883706887314e-09,-4.53161209945652e-10,-2.27936985952581e-09,-0.0799999941794345,-8.36730986147106e-08,-2.86500729390594e-07,1.87259915039574e-07,7.72559100026185e-11,5.32671129427283e-10,3.50228596124285e-08,8.39660372302427e-10,-1.01134378636129e-09,-3.59521440349004e-10,-3.72965547292062e-11,-1.91686944065844e-10,4.20670442855518e-10 +6.16,-1.98148775637161e-06,-1.35840298295595e-06,1.39891615094298e-06,-4.53060311489395e-10,-2.27861797486018e-09,-0.0800010653179436,-3.2202979432381e-09,2.3957780204145e-09,8.48919892715388e-10,7.71969294044524e-11,5.32220101323647e-10,-1.23876950364213e-09,4.60636899713186e-07,-8.58502505212686e-07,9.31745999903478e-08,-4.25007251571519e-11,-1.99059518838789e-10,-2.17834517784863e-06 +6.162,1.07774598360338e-08,-1.15497537055143e-08,-3.68497500916054e-09,-4.52852422228034e-10,-2.27724097912052e-09,-0.0799999941843896,-8.1830551015858e-08,-2.89934739411445e-07,1.87632613439535e-07,7.70859071019899e-11,5.31874891351928e-10,2.6309478901035e-08,8.35052513427098e-10,-9.79901923625373e-10,-3.19189119626839e-10,-5.7245874711519e-11,-1.79110198924145e-10,4.84855211604279e-10 +6.164,-1.98181507857567e-06,-1.35956272191359e-06,1.39966668139674e-06,-4.52751967860987e-10,-2.27649047529477e-09,-0.0800010652127057,-3.2169577331844e-09,2.39185841272e-09,8.4764313623688e-10,7.69679459056063e-11,5.3150366052795e-10,-1.23683008279571e-09,8.8645209879533e-07,-1.63049912097452e-07,-5.60535342110948e-07,-5.29090660215615e-11,-1.86482773697006e-10,-9.66704147288412e-07 +6.166,1.07645920051011e-08,-1.15401862718634e-08,-3.68158443661559e-09,-4.52544550444411e-10,-2.27511496447841e-09,-0.0799999941893369,-7.82847426206763e-08,-2.90586939059834e-07,1.85390472071091e-07,7.68742708379036e-11,5.31128960257139e-10,2.24426623118809e-08,8.40310893606332e-10,-9.7621563597318e-10,-3.59521440349159e-10,-4.38017677641443e-11,-1.80411241472099e-10,4.08527378523888e-10 +6.168,-1.98212821754615e-06,-1.36072506966983e-06,1.40040824328502e-06,-4.52444470777635e-10,-2.27436595945374e-09,-0.080001065122935,-3.21359648960997e-09,2.38795355017611e-09,8.46205050475484e-10,7.67927388345497e-11,5.30782015562062e-10,-1.23519597328161e-09,1.12170792402409e-06,4.47058189063166e-07,-9.93988528628559e-07,-4.07660016811943e-11,-2.17274115336651e-10,1.69536260031973e-07 +6.17,1.07517376191427e-08,-1.15306344576627e-08,-3.67819961641369e-09,-4.52237379489073e-10,-2.27299183641616e-09,-0.0799999941942777,-7.37979109245805e-08,-2.88798706303582e-07,1.81414517956577e-07,7.67112068311788e-11,5.30259863795793e-10,2.31208073520087e-08,8.41557726461702e-10,-9.98116520122718e-10,-3.36970035255449e-10,-5.81132364494849e-11,-2.04697370194728e-10,4.76181594224187e-10 +6.172,-1.98242340918985e-06,-1.36188026449505e-06,1.40113390135685e-06,-4.52137625950311e-10,-2.27224491999856e-09,-0.0800010650304518,-3.21023025870412e-09,2.38396108409562e-09,8.44857170334462e-10,7.65602858887518e-11,5.29963226081283e-10,-1.23329124690472e-09,1.18306335865384e-06,9.32678630523885e-07,-1.19700473492505e-06,-4.77048955936123e-11,-1.56558793736306e-10,1.14051129651417e-06 +6.174,1.07388966981078e-08,-1.15210986133263e-08,-3.67482018773235e-09,-4.51931138345518e-10,-2.27087198351184e-09,-0.0799999941992109,-6.90656574899646e-08,-2.85067991781486e-07,1.76626499016877e-07,7.65203872488044e-11,5.29633628620848e-10,2.76828525380659e-08,8.50990285005623e-10,-9.831545298775e-10,-3.74700270764109e-10,-3.07913416943391e-11,-1.8865117798304e-10,4.38885039353686e-10 +6.176,-1.98269967181981e-06,-1.36302053646217e-06,1.40184040735292e-06,-4.51831544401315e-10,-2.27012638548407e-09,-0.0800010649197204,-3.2068262975641e-09,2.38002846597611e-09,8.43358369251405e-10,7.64371205219745e-11,5.29208621369351e-10,-1.2315357067473e-09,1.10586398978709e-06,1.26932709133665e-06,-1.20044902836725e-06,-4.68375338471364e-11,-1.9645743362503e-10,1.87448927907647e-06 +6.178,1.07260693929176e-08,-1.15115784994624e-08,-3.67144675425535e-09,-4.5162538986343e-10,-2.26875514902636e-09,-0.079999994204137,-6.46422015308167e-08,-2.7999068341614e-07,1.71824702903408e-07,7.63330371134158e-11,5.28847798886348e-10,3.5180809654371e-08,8.48008729387578e-10,-9.95514434908338e-10,-3.4932994002163e-10,-4.6837533855615e-11,-1.99059518897725e-10,4.19803081254779e-10 +6.18,-1.98295824062594e-06,-1.36414049919584e-06,1.40252770616453e-06,-4.51526212252862e-10,-2.26801099428853e-09,-0.0800010647789972,-3.20343426264655e-09,2.37604640823648e-09,8.41961049491319e-10,7.6249770386552e-11,5.2841238329376e-10,-1.22985649442228e-09,9.33322050290696e-07,1.44755193076796e-06,-1.05798182715542e-06,-3.46944695237651e-11,-2.0166160411162e-10,2.32695980539629e-06 +6.182,1.0713255655867e-08,-1.15020743138294e-08,-3.66807891005738e-09,-4.51320390781884e-10,-2.26664149949318e-09,-0.0799999942090564,-6.09089133296535e-08,-2.74200475693068e-07,1.67592775594786e-07,7.61942592353208e-11,5.28041152469901e-10,4.44886488759572e-08,8.50231343485297e-10,-1.02738997851532e-09,-3.35452152120294e-10,-3.90312782052474e-11,-1.93855348411073e-10,5.0046772275101e-10 +6.184,-1.98320187627925e-06,-1.36523730109861e-06,1.40319807726691e-06,-4.51221435215921e-10,-2.26589882967865e-09,-0.0800010646010426,-3.20003333727261e-09,2.37193684832242e-09,8.40619240882838e-10,7.6093645273731e-11,5.27636961900116e-10,-1.22785462353128e-09,7.08760198965091e-07,1.47291228691402e-06,-8.30132186940042e-07,-6.2883725999943e-11,-1.82579645817266e-10,2.48537301850451e-06 +6.186,1.07004555225179e-08,-1.14925865664361e-08,-3.66471643309385e-09,-4.51016016200789e-10,-2.26453095164558e-09,-0.0799999942139678,-5.80738725337934e-08,-2.68308826545412e-07,1.64272246847026e-07,7.5942724331321e-11,5.27310833886632e-10,5.44301409499741e-08,8.54080261553084e-10,-9.77516678844664e-10,-3.79253919982078e-10,-5.63785129734691e-11,-1.64365049378082e-10,4.18068357778596e-10 +6.188,-1.98343417176939e-06,-1.36631053640479e-06,1.4038551662543e-06,-4.50917664318595e-10,-2.2637895863431e-09,-0.080001064383322,-3.1966170162264e-09,2.36802678160704e-09,8.39102225202909e-10,7.58681312218372e-11,5.26979501702603e-10,-1.22618235010016e-09,4.69829362050377e-07,1.36461154877437e-06,-5.72090985704428e-07,-3.16587034407834e-11,-1.94722710207636e-10,2.37011625603057e-06 +6.19,1.0687669054453e-08,-1.14831144593097e-08,-3.66136002419304e-09,-4.50712543675902e-10,-2.26242303363877e-09,-0.0799999942188726,-5.61945550855917e-08,-2.62850380350314e-07,1.61983882904208e-07,7.58160895175579e-11,5.26531943045801e-10,6.39106059740974e-08,8.54242891523906e-10,-1.02110160591542e-09,-3.51281503838735e-10,-3.59955121223077e-11,-2.35055030965621e-10,4.23272528070258e-10 +6.192,-1.98365894998973e-06,-1.36736193792619e-06,1.40450310178591e-06,-4.50614399960525e-10,-2.26168345857092e-09,-0.0800010641276796,-3.1932000446603e-09,2.36394237518337e-09,8.37697099187554e-10,7.57241491733479e-11,5.26039281578741e-10,-1.22448925998788e-09,2.45556992705247e-07,1.15256697413811e-06,-3.26399280858272e-07,-4.03323208122614e-11,-1.96023752756191e-10,2.03015208811008e-06 +6.194,1.06748962542744e-08,-1.1473658689809e-08,-3.65800923579629e-09,-4.50409647079208e-10,-2.26031887651246e-09,-0.0799999942237705,-5.52123271147708e-08,-2.58240112453762e-07,1.60678285780775e-07,7.56547602343088e-11,5.25747848034777e-10,7.20312143265369e-08,8.56411296223514e-10,-1.02327001052304e-09,-3.6364140869813e-10,-5.1608023414513e-11,-1.61329283295045e-10,5.08273978529193e-10 +6.196,-1.98387979929819e-06,-1.36839489837601e-06,1.40514581492904e-06,-4.50311780919588e-10,-2.25958046717878e-09,-0.0800010638395547,-3.18977439947541e-09,2.35984929514128e-09,8.36242533552762e-10,7.55177170796899e-11,5.25393964445561e-10,-1.22245616407377e-09,5.59863570465109e-08,8.73951735647348e-07,-1.20690350083897e-07,-4.85722573315392e-11,-1.82145965006702e-10,1.53533609436717e-06 +6.198,1.06621371566765e-08,-1.14642192926284e-08,-3.65466426566208e-09,-4.5010757621089e-10,-2.25821730065467e-09,-0.0799999942286604,-5.49883816865848e-08,-2.54744305511172e-07,1.6019552438044e-07,7.54604712049827e-11,5.2501926417475e-10,7.81725587040062e-08,8.47900308815281e-10,-1.0083080202805e-09,-3.53449908183861e-10,-3.51281503843388e-11,-1.92120624935252e-10,4.38017677616266e-10 +6.2,-1.98409975282494e-06,-1.36941387559805e-06,1.40578659702656e-06,-4.50009939034768e-10,-2.25748039012208e-09,-0.0800010635268645,-3.18638279824015e-09,2.35581606306016e-09,8.34828733920026e-10,7.53772044781525e-11,5.2462548194582e-10,-1.2207040933633e-09,-8.7790614624763e-08,5.68591397909071e-07,3.19082867855803e-08,-5.85469173100425e-11,-1.96457433625289e-10,9.65222693443236e-07 +6.202,1.06493916254835e-08,-1.14547960283762e-08,-3.6513249507264e-09,-4.49806067392977e-10,-2.25611879872689e-09,-0.0799999942335432,-5.53395441450838e-08,-2.52469939919536e-07,1.60323157527582e-07,7.52262835357425e-11,5.24233434440249e-10,8.20334494777787e-08,8.54134471660881e-10,-1.02413737226051e-09,-3.51064663497141e-10,-5.63785129734303e-11,-1.9732479542149e-10,4.23272528206113e-10 +6.204,-1.98432111100152e-06,-1.37042375535773e-06,1.40642788965667e-06,-4.49709033900625e-10,-2.25538345638432e-09,-0.0800010631987307,-3.1829662603535e-09,2.35171951357112e-09,8.33424475266038e-10,7.51516904262588e-11,5.23836182764134e-10,-1.21901100325048e-09,-1.81827589006502e-07,2.74216196638545e-07,1.29606828732596e-07,-3.33934269167212e-11,-1.83013326744613e-10,3.99176351690641e-07 +6.206,1.06366597604421e-08,-1.14453891503219e-08,-3.64799125282533e-09,-4.49505460631272e-10,-2.25402345399583e-09,-0.0799999942384192,-5.60668545011099e-08,-2.51373075132982e-07,1.60841584842512e-07,7.50927098280756e-11,5.2350138113327e-10,8.36301548845415e-08,8.44864542732632e-10,-1.01286166940546e-09,-3.52148865577034e-10,-3.90312782053056e-11,-1.63931368450735e-10,4.86589934943818e-10 +6.208,-1.98454537841952e-06,-1.37142924765826e-06,1.40707125599604e-06,-4.49408663061313e-10,-2.25328945085979e-09,-0.0800010628642101,-3.17958680218257e-09,2.3476680668935e-09,8.3201587980373e-10,7.49955653134376e-11,5.23180457290331e-10,-1.2170646435107e-09,-2.27797219025075e-07,2.28497776116194e-08,1.78075436350152e-07,-4.51028103712402e-11,-1.8518173103149e-10,-9.41711986122551e-08 +6.21,1.06239414132334e-08,-1.14359984780543e-08,-3.64466318930612e-09,-4.49205478370018e-10,-2.25193073216667e-09,-0.0799999942432875,-5.69780433772101e-08,-2.51281676022536e-07,1.61553886587913e-07,7.49122985865907e-11,5.22760654209144e-10,8.32534700900925e-08,8.45027173411691e-10,-1.00939222271429e-09,-3.63424568263322e-10,-4.98732999384972e-11,-2.10768902360208e-10,4.14598910826021e-10 +6.212,-1.98477329059303e-06,-1.37243437436235e-06,1.40771747154239e-06,-4.49109013866966e-10,-2.25119840824295e-09,-0.0800010625311962,-3.17620669348893e-09,2.34363049800264e-09,8.30562181530677e-10,7.47960721136836e-11,5.2233738168089e-10,-1.2154062478674e-09,-2.31433741525433e-07,-1.62489596416843e-07,1.87205069145809e-07,-4.38017677725615e-11,-1.9385534846939e-10,-4.64172103535963e-07 +6.214,1.06112365864594e-08,-1.14266239560623e-08,-3.64134094058e-09,-4.48906294081564e-10,-2.24984138263995e-09,-0.0799999942481491,-5.79037783433119e-08,-2.51931634408203e-07,1.62302706864496e-07,7.47370915155004e-11,5.21985232815267e-10,8.13967816759484e-08,8.38738800458503e-10,-9.95514434646108e-10,-3.48896259059733e-10,-3.20923843014185e-11,-1.92120624935433e-10,4.84855211468048e-10 +6.216,-1.9850049057064e-06,-1.37344210089999e-06,1.40836668236985e-06,-4.48810065500904e-10,-2.24911046731169e-09,-0.0800010622056091,-3.17285173828709e-09,2.33964844026406e-09,8.29166596494438e-10,7.46677025764779e-11,5.21568899181148e-10,-1.21346682702153e-09,-2.00920985581537e-07,-2.69280474668622e-07,1.67842302565443e-07,-4.07660016813171e-11,-1.81712284079639e-10,-6.8176627537449e-07 +6.218,1.05985451795063e-08,-1.14172653623013e-08,-3.63802427419402e-09,-4.48607623271258e-10,-2.24775510704323e-09,-0.079999994253003,-5.8707462285638e-08,-2.53008756306877e-07,1.62974076074758e-07,7.45740275087752e-11,5.21258383678948e-10,7.86697165744508e-08,8.37220917769485e-10,-9.98767041423521e-10,-3.62990887394173e-10,-4.94396190694836e-11,-1.75207071102628e-10,4.05925293445929e-10 +6.22,-1.98523973555555e-06,-1.37445413592521e-06,1.40901857867415e-06,-4.48511769390869e-10,-2.24702543377697e-09,-0.0800010618909302,-3.16950285461601e-09,2.33565337209836e-09,8.27714632944861e-10,7.44699441002e-11,5.20868070896738e-10,-1.21184312584774e-09,-1.45840371026423e-07,-2.9570508366916e-07,1.30204874650793e-07,-4.38017677725421e-11,-1.90819582386327e-10,-7.40995806385075e-07 +6.222,1.05858671680878e-08,-1.14079227488129e-08,-3.63471341566224e-09,-4.48309743494857e-10,-2.24567163475964e-09,-0.0799999942578503,-5.92908237697437e-08,-2.54191576641554e-07,1.63494895573361e-07,7.4398820437685e-11,5.20495105349403e-10,7.57057333489101e-08,8.33046739053265e-10,-9.96598636819007e-10,-3.54967791225806e-10,-3.55618312533911e-11,-1.77375475389709e-10,4.61436444542571e-10 +6.224,-1.98547689885063e-06,-1.37547090223178e-06,1.40967255825644e-06,-4.48214174109118e-10,-2.24494345335557e-09,-0.0800010615881073,-3.1661706676598e-09,2.33166697755108e-09,8.26294761779958e-10,7.43276967751864e-11,5.20158568995179e-10,-1.20999738006957e-09,-7.61029152056062e-08,-2.49524359522142e-07,8.27996525600749e-08,-3.77302355983735e-11,-1.78676517996757e-10,-6.55499092501561e-07 +6.226,1.05732024854172e-08,-1.13985960809027e-08,-3.63140823661512e-09,-4.48012432707756e-10,-2.24359100048366e-09,-0.0799999942626903,-5.95952354305661e-08,-2.55189674079643e-07,1.63826094183601e-07,7.42478994952915e-11,5.19780399277416e-10,7.30837369789042e-08,8.32829898970504e-10,-1.00071860533358e-09,-3.52582546538156e-10,-4.46691295105274e-11,-2.05131051063128e-10,4.33680869061355e-10 +6.228,-1.98571527979235e-06,-1.3764916609281e-06,1.41032786263318e-06,-4.47917182511137e-10,-2.24286433175847e-09,-0.0800010612957723,-3.16283934806392e-09,2.32766410312975e-09,8.24884431593805e-10,7.41490202571443e-11,5.19338044790926e-10,-1.20826265659333e-09,-1.22129953388744e-09,-1.45962885861002e-07,3.21836741193916e-08,-3.51281503926462e-11,-2.12937306704977e-10,-4.55376188150462e-07 +6.23,1.05605511280249e-08,-1.13892854244901e-08,-3.62810869888874e-09,-4.47715836626728e-10,-2.24151364830449e-09,-0.0799999942675234,-5.96001206287017e-08,-2.55773525623087e-07,1.63954828880079e-07,7.41073868937209e-11,5.18928650050596e-10,7.12622322263021e-08,8.28601510146488e-10,-9.76866157280187e-10,-3.77085515544663e-10,-2.99239799564833e-11,-1.97758476232538e-10,4.7011006192266e-10 +6.232,-1.98595368027486e-06,-1.37751475503059e-06,1.4109836819487e-06,-4.47620752963562e-10,-2.24078861715826e-09,-0.0800010610107234,-3.15952494202333e-09,2.32375663850063e-09,8.23376089531626e-10,7.40293243373184e-11,5.18547010885996e-10,-1.20638221634564e-09,7.04389888398318e-08,-4.87956031168984e-09,-1.68016642174762e-08,-4.46691295022976e-11,-1.5265566585718e-10,-1.79972356458248e-07 +6.234,1.05479130282568e-08,-1.13799903979361e-08,-3.62481519453062e-09,-4.47419719329378e-10,-2.23943946026095e-09,-0.0799999942723489,-5.93183646733424e-08,-2.55793043864333e-07,1.63887622223209e-07,7.39287103757117e-11,5.18318027387167e-10,7.05423428004692e-08,8.2762572854216e-10,-9.83154530138901e-10,-3.44993131330601e-10,-4.7704895593471e-11,-1.65232411115579e-10,4.24139889943274e-10 +6.236,-1.98619095373356e-06,-1.37853792720605e-06,1.41163923243759e-06,-4.47325038122059e-10,-2.23871534504871e-09,-0.080001060728554,-3.15621443910916e-09,2.31982402038007e-09,8.21996117006304e-10,7.38385047549445e-11,5.17886081241534e-10,-1.20468565678586e-09,1.32006222362606e-07,1.52171027529016e-07,-6.06791093157128e-08,-3.25260651786619e-11,-2.21610924084757e-10,1.27647892252332e-07 +6.238,1.05352881705004e-08,-1.13707111018546e-08,-3.62152721006259e-09,-4.47124365310358e-10,-2.23736791593598e-09,-0.0799999942771677,-5.87903397838919e-08,-2.55184359754217e-07,1.63644905785946e-07,7.37986061149971e-11,5.17431583690828e-10,7.10529343694786e-08,8.25132063194845e-10,-9.87491338570957e-10,-3.63424568171502e-10,-2.94902990875085e-11,-1.75207071044893e-10,4.51895465425061e-10 +6.24,-1.98642611509269e-06,-1.37955866464506e-06,1.41229381206073e-06,-4.47029843697599e-10,-2.23664561871395e-09,-0.0800010604443423,-3.15291391085638e-09,2.31587405502579e-09,8.20542418733618e-10,7.37205435585945e-11,5.17185252957354e-10,-1.20287807492416e-09,1.78724710808954e-07,3.0487157935667e-07,-9.70855340474562e-08,-3.38271077774576e-11,-1.53956708464266e-10,4.26875548801982e-07 +6.242,1.05226765148569e-08,-1.13614476056345e-08,-3.61824504038766e-09,-4.46829483136124e-10,-2.23529917492415e-09,-0.0799999942819792,-5.80754409406562e-08,-2.53964873436791e-07,1.63256563649756e-07,7.36632976838873e-11,5.16815756856971e-10,7.27604365646864e-08,8.23505760286404e-10,-9.77950359710556e-10,-3.61689844786725e-10,-3.81639164755814e-11,-2.07299455407944e-10,4.17200996039211e-10 +6.244,-1.98665841685645e-06,-1.38057452413881e-06,1.41294683831533e-06,-4.46735190506864e-10,-2.23457835568652e-09,-0.0800010601533005,-3.14961988781524e-09,2.31196225358695e-09,8.19095659354471e-10,7.35678878926922e-11,5.16356055135723e-10,-1.20120927094001e-09,2.07832286540074e-07,4.36203590623134e-07,-1.2445925367603e-07,-4.16333634275229e-11,-2.04697370193881e-10,6.83880035930147e-07 +6.246,1.05100780353057e-08,-1.13521997566202e-08,-3.61496865775024e-09,-4.46535211584553e-10,-2.23323375070361e-09,-0.079999994286784,-5.72441117944958e-08,-2.52220059074298e-07,1.62758726635052e-07,7.34967642301771e-11,5.15996967376196e-10,7.54959567084072e-08,8.23451549827907e-10,-9.8163664683995e-10,-3.56051993398757e-10,-3.33934269084688e-11,-1.73906028438014e-10,4.64038529757104e-10 +6.248,-1.98688739330363e-06,-1.38158340437511e-06,1.41359787322187e-06,-4.46441203449943e-10,-2.23251436781702e-09,-0.0800010598513167,-3.14632608161593e-09,2.30803570699959e-09,8.17671451380876e-10,7.34343141850583e-11,5.1566043102197e-10,-1.19935311682098e-09,2.18822410275384e-07,5.34043078842528e-07,-1.41917077039355e-07,-2.6888213873569e-11,-1.7303866670009e-10,8.75074318566978e-07 +6.25,1.04974927309792e-08,-1.13429676137922e-08,-3.61169797194472e-09,-4.46241474327813e-10,-2.23117110897952e-09,-0.0799999942915814,-5.63688221533943e-08,-2.50083886758928e-07,1.62191058326895e-07,7.33892113746829e-11,5.15304812709395e-10,7.89962539826748e-08,8.20253153768534e-10,-9.67975699723171e-10,-3.64291930000509e-10,-3.51281503926087e-11,-1.74339709364278e-10,4.11129463873085e-10 +6.252,-1.98711286859225e-06,-1.38258373992214e-06,1.41424663745518e-06,-4.46147646604445e-10,-2.23045314856618e-09,-0.0800010595353317,-3.14304506900085e-09,2.3041638042007e-09,8.16214283660874e-10,7.32938015834879e-11,5.14963072184513e-10,-1.19770859896548e-09,2.13125469966269e-07,5.92094949472417e-07,-1.49418671888756e-07,-5.0740661676384e-11,-1.84314369351105e-10,9.87833079219961e-07 +6.254,1.04849205507032e-08,-1.13337509585754e-08,-3.60843311481007e-09,-4.45948299121479e-10,-2.22911125669079e-09,-0.0799999942963723,-5.55163202735292e-08,-2.47715506961038e-07,1.6159338363934e-07,7.31862487279773e-11,5.14567555231991e-10,8.29475862995551e-08,8.19223161355627e-10,-9.85756615095911e-10,-3.46077333412072e-10,-4.11996825503797e-11,-2.12069944909577e-10,4.74446870613171e-10 +6.256,-1.98733493387334e-06,-1.38357460194999e-06,1.41489301098974e-06,-4.45854901609533e-10,-2.22839487834525e-09,-0.0800010592035413,-3.13976817635543e-09,2.30022077774031e-09,8.14829974327226e-10,7.31290028532863e-11,5.14114792404875e-10,-1.19581081148303e-09,1.93660083626104e-07,6.09436546353519e-07,-1.47486189918611e-07,-2.42861286596164e-11,-1.94289029280886e-10,1.02092813370408e-06 +6.258,1.04723614779978e-08,-1.13245500754644e-08,-3.60517379491276e-09,-4.45655783110066e-10,-2.22705479752117e-09,-0.0799999943011555,-5.47416799390248e-08,-2.45277760775624e-07,1.61003438879665e-07,7.30891042133389e-11,5.13790399114867e-10,8.70312988343709e-08,8.21283145832085e-10,-9.7686615753714e-10,-3.64508770434852e-10,-2.86229373576756e-11,-1.53523027652502e-10,4.16333634300809e-10 +6.26,-1.9875539005931e-06,-1.38455571299309e-06,1.41553702474526e-06,-4.45562545192679e-10,-2.22633971674879e-09,-0.0800010588554161,-3.1364830437721e-09,2.29631331311016e-09,8.13371939245486e-10,7.30145111038556e-11,5.13500700294265e-10,-1.19414547694583e-09,1.64598640709867e-07,5.90176562148156e-07,-1.37509144704807e-07,-3.94649590825198e-11,-1.61329283294311e-10,9.82345281503262e-07 +6.262,1.04598155458227e-08,-1.1315364822212e-08,-3.60192030715578e-09,-4.45363725065651e-10,-2.22500079471999e-09,-0.0799999943059321,-5.40832853761853e-08,-2.42917054527031e-07,1.60453402300846e-07,7.29312443770088e-11,5.1314508198169e-10,9.09606799603844e-08,8.15645294186736e-10,-9.75565114675065e-10,-3.43908929067256e-10,-4.03323208124076e-11,-1.9168694406693e-10,4.44956571521775e-10 +6.264,-1.9877702337346e-06,-1.3855273812112e-06,1.41617883835446e-06,-4.45270820215171e-10,-2.22428713642087e-09,-0.0800010584915734,-3.13322046259535e-09,2.29241105265146e-09,8.11996303529217e-10,7.2853181820606e-11,5.12733952517997e-10,-1.19236565065974e-09,1.30446922791901e-07,5.41853454453183e-07,-1.21352797593512e-07,-4.16333634194058e-11,-2.05564731874814e-10,8.87508816443641e-07 +6.266,1.04472826639723e-08,-1.13061951780014e-08,-3.59867232194166e-09,-4.45072312338368e-10,-2.22294985890992e-09,-0.0799999943107015,-5.35614976850177e-08,-2.40749640709219e-07,1.59967991110472e-07,7.27647109233312e-11,5.12322823054191e-10,9.45107152261586e-08,8.15265823774376e-10,-9.65373614508275e-10,-3.68628738690142e-10,-4.11996825584927e-11,-1.94722710206852e-10,4.39752401226292e-10 +6.268,-1.98798447972534e-06,-1.38649037977404e-06,1.4168187103189e-06,-4.44979761371478e-10,-2.22223784512865e-09,-0.0800010581135306,-3.12995939930026e-09,2.28854955819343e-09,8.10521788574457e-10,7.2688383090372e-11,5.1195506167717e-10,-1.19060664105484e-09,9.58295942628614e-08,4.74520813281081e-07,-1.01470047650912e-07,-3.85975973445154e-11,-1.75640751971066e-10,7.5564641349182e-07 +6.27,1.04347628263751e-08,-1.12970409797686e-08,-3.59543023478737e-09,-4.44781558806007e-10,-2.22090203866321e-09,-0.079999994315464,-5.31781793079662e-08,-2.38851557456094e-07,1.59562110919869e-07,7.26103205339531e-11,5.11620260046306e-10,9.75333008801262e-08,8.1607897505604e-10,-9.71228305985537e-10,-3.41957365156938e-10,-4.42354486333744e-11,-1.66099772796352e-10,4.30211421976181e-10 +6.272,-1.98819719244257e-06,-1.38744578600386e-06,1.41745695876258e-06,-4.44689320089342e-10,-2.22019136408846e-09,-0.0800010577233974,-3.12669508340003e-09,2.28466464496949e-09,8.09153959113829e-10,7.25114412958385e-11,5.11290662585984e-10,-1.18888579536693e-09,6.46312430628338e-08,3.98558356443797e-07,-8.02686909906845e-08,-2.77555756116027e-11,-1.61762964106472e-10,6.07508834910007e-07 +6.274,1.04222560460415e-08,-1.12879023211887e-08,-3.59219361895091e-09,-4.44491513040823e-10,-2.21885687601286e-09,-0.0799999943202195,-5.29196543357149e-08,-2.37257324030319e-07,1.59241036155906e-07,7.24992982315067e-11,5.10973208189881e-10,9.9963336219766e-08,8.12067427365233e-10,-9.86840817523077e-10,-3.39572120467372e-10,-2.51534904056893e-11,-1.90819582385852e-10,4.38885039488096e-10 +6.276,-1.98840887105992e-06,-1.38839481529998e-06,1.4180939229072e-06,-4.44399322896416e-10,-2.2181474712557e-09,-0.080001057323544,-3.12344681369057e-09,2.2807172816994e-09,8.0779567063196e-10,7.24108273342158e-11,5.10527384256441e-10,-1.18713025520898e-09,4.00156795749151e-08,3.24129828892848e-07,-6.03063606085543e-08,-4.25007251654466e-11,-2.0556473193156e-10,4.62428706432436e-07 +6.278,1.04097622587868e-08,-1.12787794520619e-08,-3.58896243626838e-09,-4.44201869731486e-10,-2.21681476647584e-09,-0.079999994324968,-5.27595916174153e-08,-2.35960804714748e-07,1.58999810713472e-07,7.23292953308449e-11,5.10150949262154e-10,1.01813051045496e-07,8.09085871043923e-10,-9.6537361425453e-10,-3.56702514702894e-10,-4.51028103713788e-11,-1.79977560604243e-10,4.31946145452364e-10 +6.28,-1.98861990942639e-06,-1.38933865851884e-06,1.41872992215006e-06,-4.44110005715093e-10,-2.21610686745866e-09,-0.0800010569162918,-3.1202104702064e-09,2.27685578724238e-09,8.06368860573148e-10,7.22304160927302e-11,5.09807474014024e-10,-1.18540247062717e-09,2.38203011973446e-08,2.59335521794195e-07,-4.36285122524349e-08,-4.25007251574266e-11,-1.76508113652354e-10,3.36281349994257e-07 +6.282,1.03972814169059e-08,-1.12696720289129e-08,-3.58573696082609e-09,-4.43912948067116e-10,-2.21477553657978e-09,-0.0799999943297096,-5.26643104126259e-08,-2.34923462627571e-07,1.58825296664462e-07,7.21592924302152e-11,5.09444916807545e-10,1.03158176445473e-07,8.1017007356297e-10,-9.63422050596974e-10,-3.41090003508697e-10,-3.94649590824801e-11,-1.77809156315922e-10,4.44089209915872e-10 +6.284,-1.98883056666804e-06,-1.39027835236935e-06,1.41936522333672e-06,-4.43821368545372e-10,-2.21406908779143e-09,-0.0800010565036591,-3.11696978991215e-09,2.27300209903999e-09,8.05004500559113e-10,7.20725562564003e-11,5.09096237388761e-10,-1.18362611378751e-09,1.67186143430791e-08,2.1015437655281e-07,-3.17304776292062e-08,-3.72965547375006e-11,-1.73906028494935e-10,2.40266140310914e-07 +6.286,1.03848135377463e-08,-1.12605800205168e-08,-3.58251694282385e-09,-4.4362465784209e-10,-2.21273915163023e-09,-0.0799999943344441,-5.25974359552536e-08,-2.3408284512136e-07,1.58698374753945e-07,7.20101062112652e-11,5.08749292693565e-10,1.04119241006717e-07,8.07134307133863e-10,-9.64506252516955e-10,-3.4846257819216e-10,-2.99239799565996e-11,-1.86482773639258e-10,4.35415592404472e-10 +6.288,-1.98904095641186e-06,-1.39121468374984e-06,1.42000001683573e-06,-4.43533328120527e-10,-2.21203409062065e-09,-0.0800010560871821,-3.11374125268361e-09,2.26914407402992e-09,8.03610650246344e-10,7.19528603365739e-11,5.08350306294203e-10,-1.18188445141789e-09,1.82403462964384e-08,1.79710630044771e-07,-2.54234567338076e-08,-3.7730235598506e-11,-1.67834496272547e-10,1.8062894930364e-07 +6.29,1.03723585727356e-08,-1.12515034442207e-08,-3.57930250022287e-09,-4.43336846400744e-10,-2.21070575040505e-09,-0.0799999943391717,-5.25244745700678e-08,-2.33364002601181e-07,1.5859668092701e-07,7.18591852688712e-11,5.08077954708475e-10,1.04841756803931e-07,8.06537996284833e-10,-9.70577784934965e-10,-3.42824726984519e-10,-4.4669129510395e-11,-1.63497687639008e-10,4.23272528203942e-10 +6.292,-1.98925105431014e-06,-1.39214813976024e-06,1.42063440355944e-06,-4.43245891379451e-10,-2.21000177880182e-09,-0.0800010556678151,-3.11051510069847e-09,2.26526176289018e-09,8.02239351338406e-10,7.17741838185324e-11,5.07696315543647e-10,-1.18019136130507e-09,2.69973930393185e-08,1.68536408800141e-07,-2.4787463757031e-08,-3.12250225715631e-11,-1.99493199765486e-10,1.57980399589616e-07 +6.294,1.03599165123328e-08,-1.12424423971691e-08,-3.57609354281752e-09,-4.4304974966547e-10,-2.20867496514288e-09,-0.0799999943438924,-5.24164849979105e-08,-2.3268985696598e-07,1.58497531071982e-07,7.17342851785849e-11,5.07279981909413e-10,1.0547367840229e-07,7.99978572795769e-10,-9.48893741233579e-10,-3.44993131240362e-10,-3.38271077775664e-11,-1.89084858853301e-10,4.25007251548768e-10 +6.296,-1.98946072025013e-06,-1.3930788991881e-06,1.42126839368373e-06,-4.42958954238737e-10,-2.20797265887418e-09,-0.0800010552459204,-3.10731518640729e-09,2.26146618792525e-09,8.00859378813445e-10,7.16388753874221e-11,5.06939976108234e-10,-1.17849133229888e-09,4.09444071500369e-08,1.74880292525992e-07,-2.9215345411872e-08,-4.55364912404186e-11,-1.7043658148659e-10,1.69094772911945e-07 +6.298,1.03474872515871e-08,-1.12333965324174e-08,-3.57289010530226e-09,-4.4276319416392e-10,-2.20664720523844e-09,-0.0799999943486064,-5.22527073693104e-08,-2.31990335795876e-07,1.58380669690334e-07,7.15521392136232e-11,5.06598235583467e-10,1.06150057493937e-07,8.04206961613575e-10,-9.70577784934552e-10,-3.48028897412294e-10,-3.81639164754651e-11,-1.81712284136715e-10,4.54497550771372e-10 +6.3,-1.98966973107961e-06,-1.39400686053129e-06,1.42190191636249e-06,-4.42672745681882e-10,-2.20594626593185e-09,-0.0800010548213202,-3.10409835856083e-09,2.25758387678551e-09,7.99467263223796e-10,7.14862197215202e-11,5.06213126971687e-10,-1.17667334209579e-09,5.77307299216588e-08,1.95259390266613e-07,-3.75775799453934e-08,-3.38271077855118e-11,-1.73472347625785e-10,2.07178892091709e-07 +6.302,1.03350708581529e-08,-1.12243661969103e-08,-3.56969223624937e-09,-4.42477249285034e-10,-2.20462235273056e-09,-0.0799999943533131,-5.20217844496237e-08,-2.3120929823481e-07,1.58230359370553e-07,7.14168307824812e-11,5.05904346192963e-10,1.06978773062304e-07,7.98731740297721e-10,-9.61904167303817e-10,-3.48679418626967e-10,-4.20670442884682e-11,-1.72604985831601e-10,4.24139889810986e-10 +6.304,-1.9898778182174e-06,-1.39493169772423e-06,1.42253483779997e-06,-4.42387078358752e-10,-2.20392264854707e-09,-0.0800010543934051,-3.10090343159964e-09,2.25373626011629e-09,7.98072545549288e-10,7.13179515443664e-11,5.05522707028361e-10,-1.17497678253655e-09,7.50426196848432e-08,2.2504545968525e-07,-4.8426757387027e-08,-3.72965547295473e-11,-1.94722710150346e-10,2.63307604892352e-07 +6.306,1.03226672444265e-08,-1.12153512518698e-08,-3.56649994606717e-09,-4.42191977478856e-10,-2.20260026190244e-09,-0.079999994358013,-5.17216139708844e-08,-2.30309116396069e-07,1.58036652341004e-07,7.1267644563563e-11,5.05125455352362e-10,1.08032003481873e-07,7.98460690099091e-10,-9.34799113242113e-10,-3.27212215700415e-10,-3.16587034405352e-11,-1.74773390232703e-10,4.1720099603766e-10 +6.308,-1.99008470467329e-06,-1.39585293418981e-06,1.42316698440934e-06,-4.42102007780498e-10,-2.20190214672566e-09,-0.0800010539612771,-3.09770958883925e-09,2.24999706366333e-09,7.96763696686486e-10,7.11913167306042e-11,5.0482361346743e-10,-1.1733079785524e-09,9.08160265767552e-08,2.59445676760683e-07,-6.02465126485669e-08,-3.29597460475074e-11,-1.41813644189109e-10,3.28308560886871e-07 +6.31,1.03102764060711e-08,-1.12063512636151e-08,-3.56331289128042e-09,-4.41907212211934e-10,-2.20058096744857e-09,-0.0799999943627062,-5.13583498645773e-08,-2.29271333689026e-07,1.5779566629041e-07,7.1135805579373e-11,5.04558200775606e-10,1.09345237725421e-07,7.95885709595361e-10,-9.76649316850032e-10,-3.42607886461204e-10,-3.2526065170613e-11,-1.77809156259608e-10,4.34548230667053e-10 +6.312,-1.99029013807275e-06,-1.39677001952457e-06,1.4237981670745e-06,-4.41817464558181e-10,-2.19988391392256e-09,-0.0800010535238961,-3.09452604600086e-09,2.24609046639593e-09,7.95393265140641e-10,7.10612124699218e-11,5.04112376842392e-10,-1.17156978562973e-09,1.03458935209482e-07,2.9361669344596e-07,-7.14677882758556e-08,-4.90059381924082e-11,-2.11636264041199e-10,3.93092676471192e-07 +6.314,1.02978983018871e-08,-1.11973669017496e-08,-3.56013131821986e-09,-4.41622967362054e-10,-2.1985645179412e-09,-0.0799999943673925,-5.09445141237395e-08,-2.28096866915242e-07,1.57509795137307e-07,7.09397818266034e-11,5.03711655719441e-10,1.10917608431306e-07,7.92687313530192e-10,-9.18969761523409e-10,-3.47161535673996e-10,-4.29344060343727e-11,-1.786765180536e-10,4.38885039487166e-10 +6.316,-1.99049391612924e-06,-1.39768240699223e-06,1.42442820625505e-06,-4.41533705430874e-10,-2.19786906729968e-09,-0.0800010530802257,-3.09135529674674e-09,2.24241458734983e-09,7.94004618997945e-10,7.08894748457843e-11,5.03397670770177e-10,-1.16981424547178e-09,1.12076553552789e-07,3.23798496708427e-07,-8.10330535398581e-08,-2.12503625846491e-11,-1.65232411114716e-10,4.50192834394029e-07 +6.318,1.02855328807001e-08,-1.11883972434001e-08,-3.55695529974387e-09,-4.41339409462671e-10,-2.19655092725812e-09,-0.0799999943720718,-5.04962079095283e-08,-2.26801672928409e-07,1.57185662923147e-07,7.08547803762648e-11,5.03050726074982e-10,1.12718379768882e-07,7.96834386496699e-10,-9.72963029463995e-10,-3.41306843854377e-10,-3.42607886466058e-11,-1.91253263198504e-10,4.23272528073412e-10 +6.32,-1.99069590096088e-06,-1.39858961368394e-06,1.42505694890674e-06,-4.41250286309369e-10,-2.19585686439538e-09,-0.0800010526293522,-3.08816795920076e-09,2.23852273523198e-09,7.92639391622528e-10,7.07524316911978e-11,5.02632657717383e-10,-1.16812115535949e-09,1.16171774888066e-07,3.4700367578103e-07,-8.79105815833645e-08,-4.16333634195189e-11,-1.65232411058918e-10,4.94160268267021e-07 +6.322,1.02731802088633e-08,-1.11794431524592e-08,-3.55378474217738e-09,-4.41056399735906e-10,-2.19454039662725e-09,-0.0799999943767443,-5.0031520809976e-08,-2.25413658225285e-07,1.56834020596814e-07,7.06882469225867e-11,5.02389796430746e-10,1.1469502084195e-07,7.89651547446922e-10,-9.37184358020754e-10,-3.40656322638927e-10,-4.64038529863073e-11,-1.45283091140939e-10,4.19803081251212e-10 +6.324,-1.99089602704412e-06,-1.39949126831684e-06,1.42568428498913e-06,-4.40967533321679e-10,-2.19384730520966e-09,-0.0800010521705721,-3.08500935301097e-09,2.23477399779989e-09,7.91276766331972e-10,7.05668162792526e-11,5.0205152535282e-10,-1.16644194303448e-09,1.16120790286434e-07,3.61757498969161e-07,-9.18343092629934e-08,-3.72965547374166e-11,-1.91686944123281e-10,5.21971355021037e-07 +6.326,1.02608401714513e-08,-1.1170504056468e-08,-3.55061963511205e-09,-4.40774132470789e-10,-2.19253219052584e-09,-0.07999999438141,-4.95670376488303e-08,-2.23966628229408e-07,1.56466683359762e-07,7.0539060703637e-11,5.01623048654253e-10,1.16782906262034e-07,7.89055235909323e-10,-9.44556932545292e-10,-3.32199545605655e-10,-2.21177243147856e-11,-1.973247953645e-10,4.38885039357408e-10 +6.328,-1.99109429519471e-06,-1.40038713482976e-06,1.42631015172257e-06,-4.40685377078864e-10,-2.19184081301504e-09,-0.0800010517034404,-3.08185313206733e-09,2.23099577006971e-09,7.8994796814955e-10,7.04783453819935e-11,5.01262226171361e-10,-1.16468640287705e-09,1.12449248044053e-07,3.67598963409291e-07,-9.26730480462712e-08,-4.29344060265178e-11,-1.82579645818739e-10,5.32937409487505e-07 +6.33,1.0248512758923e-08,-1.11615800733877e-08,-3.54745984323945e-09,-4.40492219089261e-10,-2.19052714162116e-09,-0.0799999943860688,-4.91172406566541e-08,-2.22496232375771e-07,1.56095991167577e-07,7.0367323079531e-11,5.00892730070978e-10,1.18914655899984e-07,7.91982582117456e-10,-9.44990613662237e-10,-3.38704758728324e-10,-4.25007251653462e-11,-1.65232411114623e-10,4.12864187347097e-10 +6.332,-1.99129076415734e-06,-1.40127711975926e-06,1.42693453568724e-06,-4.40403907786546e-10,-2.18983724209476e-09,-0.0800010512277818,-3.07868520173886e-09,2.22721580761506e-09,7.88593149114636e-10,7.03083424813321e-11,5.00601296526903e-10,-1.16303494612766e-09,1.0622880071517e-07,3.65270314007855e-07,-9.08921375750506e-08,-2.68882138815408e-11,-1.72171305018467e-10,5.28250186642093e-07 +6.334,1.02361980181161e-08,-1.11526712101573e-08,-3.54430547064299e-09,-4.40210985719336e-10,-2.18852473643505e-09,-0.0799999943907209,-4.86923254537934e-08,-2.21035151119739e-07,1.55732422617277e-07,7.02597702240048e-11,5.00204044850904e-10,1.21027656646553e-07,7.84718427219795e-10,-9.46508496456179e-10,-3.37403716033688e-10,-3.77302355985913e-11,-1.99493199709548e-10,4.1459891069389e-10 +6.336,-1.99148553345916e-06,-1.40216126036374e-06,1.4275574653777e-06,-4.4012286870565e-10,-2.18783642591536e-09,-0.0800010507436712,-3.07554632802998e-09,2.22342977362924e-09,7.87243534250501e-10,7.01574215389377e-11,4.99803323728065e-10,-1.16137655048489e-09,9.85246498074858e-08,3.56225465779641e-07,-8.69456416499384e-08,-4.11996825505601e-11,-1.65232411059073e-10,5.10897747725452e-07 +6.338,1.02238958328039e-08,-1.11437774910628e-08,-3.54115649650599e-09,-4.3993035603318e-10,-2.18652552314014e-09,-0.0799999943953664,-4.82982268545635e-08,-2.19610249256621e-07,1.55384640050677e-07,7.00949714938026e-11,4.99543115206668e-10,1.23071247637454e-07,7.87184987503793e-10,-9.34582272805961e-10,-3.32199545693281e-10,-3.72965547373958e-11,-1.3877787810587e-10,4.2674197515481e-10 +6.34,-1.99167872636657e-06,-1.40303970136077e-06,1.42817900393791e-06,-4.39842488819675e-10,-2.18583825345453e-09,-0.0800010502513862,-3.07239758807997e-09,2.21969144453801e-09,7.85914736067728e-10,7.00082353199882e-11,4.99248212215641e-10,-1.15966958258427e-09,9.05185486054893e-08,3.42644749391402e-07,-8.17577342718348e-08,-3.94649590823551e-11,-1.69569219804424e-10,4.84748526034802e-07 +6.342,1.02116062424516e-08,-1.11348987252846e-08,-3.53801283756172e-09,-4.396503230919e-10,-2.18452853029127e-09,-0.0799999944000051,-4.79361526601415e-08,-2.18239670259055e-07,1.5505760911359e-07,6.99371116574731e-11,4.9886483832745e-10,1.25010241741594e-07,7.81628451028626e-10,-9.45857975153102e-10,-3.38054237337335e-10,-2.73218947427478e-11,-2.0513105100655e-10,4.37150315881741e-10 +6.344,-1.99187047097722e-06,-1.40391266004181e-06,1.42879923437436e-06,-4.39562740373045e-10,-2.18384279410122e-09,-0.0800010497513452,-3.06927107427585e-09,2.2159080126374e-09,7.84562519118379e-10,6.98989477410172e-11,4.98427688011615e-10,-1.15792098132074e-09,8.31055330862497e-08,3.2665298416351e-07,-7.59711304196375e-08,-2.51534903977858e-11,-1.8518173103286e-10,4.54011828139695e-07 +6.346,1.01993291581545e-08,-1.11260350932341e-08,-3.53487458748525e-09,-4.39370727300936e-10,-2.18253481953923e-09,-0.0799999944046368,-4.76037305277965e-08,-2.16933058322401e-07,1.54753724591911e-07,6.9836497695882e-11,4.98124111403319e-10,1.26826289054152e-07,7.84149221420523e-10,-9.28077059770634e-10,-3.25911173092709e-10,-4.03323208203426e-11,-1.55691431996594e-10,4.25007251678626e-10 +6.348,-1.99206088589933e-06,-1.4047803922751e-06,1.42941824927273e-06,-4.39283394382262e-10,-2.18185029765561e-09,-0.0800010492440401,-3.06613447739017e-09,2.21219570439832e-09,7.83258874426008e-10,6.97376184577358e-11,4.97804922283629e-10,-1.15622095231403e-09,7.71570849772302e-08,3.10516369573562e-07,-7.04831158801196e-08,-5.03069808071927e-11,-1.65232411114405e-10,4.22935124415129e-07 +6.35,1.0187064620245e-08,-1.11171863104165e-08,-3.53174155198754e-09,-4.39091776827105e-10,-2.18054359985009e-09,-0.0799999944092617,-4.72951021878876e-08,-2.15690992844107e-07,1.5447179212839e-07,6.96352697726532e-11,4.97463181758861e-10,1.28518029551813e-07,7.80218988204601e-10,-9.40003283422094e-10,-3.40656322551455e-10,-5.03069807994541e-11,-1.71303943225058e-10,4.34548230667983e-10 +6.352,-1.99225006630808e-06,-1.40564315624647e-06,1.43003613644124e-06,-4.39004853303171e-10,-2.17986044492857e-09,-0.080001048729968,-3.06301360143735e-09,2.20843569126463e-09,7.81896249135802e-10,6.9536390534538e-11,4.97119706510728e-10,-1.15448275939136e-09,7.30254615431968e-08,2.96059834622187e-07,-6.57319251027163e-08,-2.9923979956742e-11,-1.5829351715532e-10,3.94926279186359e-07 +6.354,1.01748125658392e-08,-1.11083525676514e-08,-3.528613966991e-09,-4.38813631264967e-10,-2.17855512102405e-09,-0.0799999944138796,-4.70030003417148e-08,-2.14506753505618e-07,1.5420886442798e-07,6.95155738528262e-11,4.9683000769024e-10,1.30097734668558e-07,7.8095082501138e-10,-9.43039049750522e-10,-3.28079577437525e-10,-2.51534904055245e-11,-1.70436581542321e-10,4.18068357774511e-10 +6.356,-1.99243807830944e-06,-1.40650118326049e-06,1.43065297189895e-06,-4.3872679100776e-10,-2.17787312489781e-09,-0.080001048209577,-3.05988979813731e-09,2.20466353506563e-09,7.80583930826052e-10,6.94357765729159e-11,4.96437960184559e-10,-1.15281048596026e-09,7.10057013212754e-08,2.84615863874927e-07,-6.23182061595402e-08,-3.90312782133286e-11,-1.91253263253977e-10,3.72731359658456e-07 +6.358,1.01625730066467e-08,-1.10995339135112e-08,-3.5254916312677e-09,-4.38535888158675e-10,-2.17656936918331e-09,-0.0799999944184908,-4.67189775364297e-08,-2.13368290050118e-07,1.53959591603341e-07,6.93594487399729e-11,4.96064994637224e-10,1.31588660107192e-07,7.78104793968669e-10,-9.12898229110373e-10,-3.41523684289598e-10,-3.38271077776924e-11,-1.95590071888834e-10,4.06792655052564e-10 +6.36,-1.99262495421959e-06,-1.4073546564207e-06,1.43126881026537e-06,-4.384493532128e-10,-2.17588886491926e-09,-0.0800010476832224,-3.05677737896143e-09,2.20101194214919e-09,7.79217836088894e-10,6.93004681418051e-11,4.95655599897004e-10,-1.15118331534005e-09,7.09407576059728e-08,2.77107546966402e-07,-6.03089626764042e-08,-3.38271077777031e-11,-1.68701858011233e-10,3.57754624543289e-07 +6.362,1.01503458971308e-08,-1.10907298657426e-08,-3.52237475992334e-09,-4.38258686286108e-10,-2.17458674678372e-09,-0.0799999944230956,-4.64352145060058e-08,-2.12259859862253e-07,1.53718355752636e-07,6.92241403088621e-11,4.95390187205179e-10,1.33019678605365e-07,7.73551145183753e-10,-9.47809539309045e-10,-3.10515502243103e-10,-4.07660016893046e-11,-1.3227266507075e-10,4.2674197515419e-10 +6.364,-1.99281069507761e-06,-1.40820369586014e-06,1.43188368368838e-06,-4.38172456651564e-10,-2.17390730417044e-09,-0.0800010471511437,-3.0536831743807e-09,2.19722070399195e-09,7.77975774079922e-10,6.91374041350479e-11,4.95126509236721e-10,-1.14947634743943e-09,7.25360255826528e-08,2.73637232676214e-07,-5.97352029037846e-08,-3.64291929993475e-11,-1.68268177197209e-10,3.50641390915211e-07 +6.366,1.01381311644333e-08,-1.10819409829266e-08,-3.51926285682702e-09,-4.37982136669568e-10,-2.17260624074678e-09,-0.0799999944276935,-4.61450704036752e-08,-2.11165310931548e-07,1.53479414941021e-07,6.90784235368647e-11,4.9471711449639e-10,1.34422244169026e-07,7.77129012013845e-10,-9.23740250835641e-10,-3.36970035165314e-10,-3.46944695156969e-11,-2.03830008399774e-10,4.23272528074549e-10 +6.368,-1.99299527535923e-06,-1.40904835710387e-06,1.43249760134814e-06,-4.37896142957417e-10,-2.17192843571246e-09,-0.0800010466134547,-3.05057465833264e-09,2.19352574298861e-09,7.7662789393926e-10,6.89986262569851e-11,4.94311189203122e-10,-1.14778325732713e-09,7.54219820253235e-08,2.74028629637096e-07,-6.05604975804473e-08,-3.72965547296765e-11,-1.94289029281998e-10,3.50722922933575e-07 +6.37,1.01259288658e-08,-1.10731668799546e-08,-3.51615634525126e-09,-4.3770614216454e-10,-2.17062899598996e-09,-0.0799999944322846,-4.58433824755739e-08,-2.10069196413e-07,1.53237172950699e-07,6.8929237317946e-11,4.93939958379263e-10,1.3582513586076e-07,7.73740880563627e-10,-9.24607612817439e-10,-3.39572120465562e-10,-3.90312782133082e-11,-1.54824070258373e-10,3.78169717826627e-10 +6.372,-1.99317864888913e-06,-1.40988863388952e-06,1.43311055003995e-06,-4.37620426008145e-10,-2.16995267587894e-09,-0.0800010460701542,-3.04747969481039e-09,2.18982731253734e-09,7.75269605457398e-10,6.88425011441319e-11,4.93691892922088e-10,-1.14627057845583e-09,7.89662660373046e-08,2.77624060904751e-07,-6.23257955746947e-08,-3.68628738683255e-11,-1.335737076776e-10,3.5697139687889e-07 +6.374,1.01137389470207e-08,-1.10644075707045e-08,-3.51305526682943e-09,-4.37430772159964e-10,-2.16865422841828e-09,-0.0799999944368697,-4.55275174114246e-08,-2.0895870016938e-07,1.529878697684e-07,6.87817858224727e-11,4.93405663548552e-10,1.37253021448276e-07,7.65229893171025e-10,-9.21788686925581e-10,-3.12033385198306e-10,-3.6862873860687e-11,-1.84748050164135e-10,4.74446870616066e-10 +6.376,-1.99336075895878e-06,-1.4107244686902e-06,1.43372250151902e-06,-4.37345298864855e-10,-2.16797905322474e-09,-0.0800010455211421,-3.0444187752377e-09,2.18614015778964e-09,7.74021471916605e-10,6.86950496486891e-11,4.92952900721432e-10,-1.14437279097336e-09,8.27248968086783e-08,2.83400906897057e-07,-6.47843324040499e-08,-3.68628738606952e-11,-1.80411241474233e-10,3.67364125238781e-07 +6.378,1.01015612719198e-08,-1.10556630100733e-08,-3.50995918094177e-09,-4.37155991961369e-10,-2.16668241681539e-09,-0.0799999944414472,-4.519661782419e-08,-2.07825096541792e-07,1.52728732438784e-07,6.86343343270299e-11,4.92684018582655e-10,1.38722477949231e-07,7.77508483112705e-10,-9.35666474976379e-10,-3.27645896568066e-10,-2.94902990954185e-11,-1.62630325900192e-10,3.92047505634236e-10 +6.38,-1.99354154543007e-06,-1.41155576907637e-06,1.43433341644877e-06,-4.37070761527547e-10,-2.16600831715041e-09,-0.0800010449662522,-3.04130874130525e-09,2.18239749188973e-09,7.72710888330333e-10,6.85770884523075e-11,4.92302379417831e-10,-1.14280460095083e-09,8.62399886770925e-08,2.90472724010322e-07,-6.75427595882267e-08,-3.64291929993152e-11,-1.7824283718392e-10,3.80183731710768e-07 +6.382,1.00893960369546e-08,-1.10469334201058e-08,-3.50686833738845e-09,-4.3688168360756e-10,-2.16471320729772e-09,-0.0799999944460184,-4.48516578694816e-08,-2.06663205645751e-07,1.52458561400431e-07,6.84886175550327e-11,4.91971047233919e-10,1.40243212876074e-07,7.65067262845566e-10,-9.08344579987175e-10,-3.35235311689622e-10,-5.03069807995187e-11,-1.53523027596607e-10,4.24139889812899e-10 +6.384,-1.99372095206155e-06,-1.41238242189895e-06,1.43494325069438e-06,-4.36796807057327e-10,-2.16404043296148e-09,-0.0800010444052793,-3.03824847225387e-09,2.17876411356978e-09,7.71369947083574e-10,6.83758605291094e-11,4.91688287307444e-10,-1.14110804139157e-09,8.90842304413205e-08,2.97670742210569e-07,-7.01840929039238e-08,-3.07913416947919e-11,-1.66099772797526e-10,3.93457835764599e-07 +6.386,1.00772430430655e-08,-1.10382183636515e-08,-3.50378285760011e-09,-4.36608180165443e-10,-2.16274645414849e-09,-0.0799999944505828,-4.44953209477163e-08,-2.05472522676909e-07,1.52177825028815e-07,6.83654521882535e-11,4.91306648142729e-10,1.41817044219133e-07,7.67181457419365e-10,-9.22005527602646e-10,-3.23742768746988e-10,-2.25514051914944e-11,-1.91253263253735e-10,4.1112946386988e-10 +6.388,-1.99389893334534e-06,-1.41320431198966e-06,1.43555196199449e-06,-4.36523345248574e-10,-2.16207520636891e-09,-0.0800010438380111,-3.03517974642419e-09,2.17507609145937e-09,7.70074976008586e-10,6.82856549083434e-11,4.9092327425443e-10,-1.13946352353609e-09,9.11236689427959e-08,3.04229514855553e-07,-7.25042855699213e-08,-4.29344060342113e-11,-1.67834496327983e-10,4.05337222112257e-07 +6.39,1.00651023240798e-08,-1.10295180592856e-08,-3.50070255769608e-09,-4.3633503754581e-10,-2.16078276105147e-09,-0.0799999944551407,-4.41308262719451e-08,-2.04255604617486e-07,1.51887807886536e-07,6.81937145641166e-11,4.90635310157417e-10,1.43438393107582e-07,7.64037270782118e-10,-9.16367676063981e-10,-3.20056481274982e-10,-3.85975973366927e-11,-1.57859836286652e-10,4.33680868930926e-10 +6.392,-1.99407545665043e-06,-1.41402133440813e-06,1.43615951322604e-06,-4.36250570390317e-10,-2.16011266512828e-09,-0.0800010432642576,-3.03212359734106e-09,2.17141062075512e-09,7.68794750083486e-10,6.81312645189966e-11,4.90291834909283e-10,-1.13772880006037e-09,9.21705745556697e-08,3.09413302260025e-07,-7.42190597090794e-08,-2.81892564808457e-11,-1.7347234757048e-10,4.1486605818181e-07 +6.394,1.00529738296905e-08,-1.10208324168026e-08,-3.49762737869574e-09,-4.36062512487734e-10,-2.15882159371183e-09,-0.0799999944596916,-4.37621439737225e-08,-2.03017951408446e-07,1.51590931647699e-07,6.80809575381933e-11,4.89941420767136e-10,1.45097857340309e-07,7.66368305789691e-10,-9.26559176726672e-10,-3.26128013526327e-10,-3.07913417023722e-11,-1.68701858065957e-10,3.93782229109903e-10 +6.396,-1.99425050522633e-06,-1.41483340621376e-06,1.43676587695263e-06,-4.35978246560165e-10,-2.15815289944521e-09,-0.0800010426838661,-3.02905812411791e-09,2.16770438404821e-09,7.67490238029381e-10,6.80080991521871e-11,4.89617027477019e-10,-1.13615367114393e-09,9.23295185989928e-08,3.12842416913638e-07,-7.52961061640446e-08,-4.29344060341952e-11,-1.73906028493849e-10,4.20856058328152e-07 +6.398,1.0040857597194e-08,-1.10121615992664e-08,-3.49455741774363e-09,-4.35790480091125e-10,-2.15686312560193e-09,-0.0799999944642362,-4.33928258993264e-08,-2.01766581740792e-07,1.51289747223043e-07,6.79092199140565e-11,4.8924579665316e-10,1.46781281573622e-07,7.60486508667435e-10,-8.93599430442201e-10,-3.16803874757655e-10,-4.55364912406153e-11,-1.93855348413219e-10,4.1459891069539e-10 +6.4,-1.99442407652992e-06,-1.41564047254072e-06,1.43737103594152e-06,-4.35706609680508e-10,-2.1561959162586e-09,-0.080001042096741,-3.02601617808324e-09,2.16412998632644e-09,7.6622302253035e-10,6.78259531872247e-11,4.88841606083366e-10,-1.13449527550115e-09,9.16823312123848e-08,3.14397596487521e-07,-7.56345940655097e-08,-3.33934269087897e-11,-1.60895602369725e-10,4.23539675561887e-07 +6.402,1.00287535324817e-08,-1.10035050793211e-08,-3.49149252565351e-09,-4.35519176278376e-10,-2.15490775917759e-09,-0.0799999944687742,-4.30260965744769e-08,-2.00508991354842e-07,1.50987208846781e-07,6.77756462064213e-11,4.88602214243681e-10,1.48475440275869e-07,7.60649139161705e-10,-9.2937810225478e-10,-3.30898503042638e-10,-2.42861286636812e-11,-1.29236898960312e-10,4.37150315946255e-10 +6.404,-1.99459618091622e-06,-1.41644250850614e-06,1.43797498477691e-06,-4.35435507095683e-10,-2.15424150740162e-09,-0.0800010415028392,-3.02297358152659e-09,2.16041247391742e-09,7.6489942851818e-10,6.77288086725699e-11,4.88324658487525e-10,-1.13274667423736e-09,9.04504878138388e-08,3.14115920785364e-07,-7.53962864447593e-08,-3.51281503922953e-11,-1.71303943279819e-10,4.22595118612727e-07 +6.406,1.00166616381556e-08,-1.09948634294255e-08,-3.48843292793943e-09,-4.35248261043686e-10,-2.15295446054364e-09,-0.0799999944733052,-4.26642946232216e-08,-1.992525276717e-07,1.50685623701002e-07,6.76351336048522e-11,4.87916998470562e-10,1.5016582075032e-07,7.61516501067132e-10,-9.07260378055606e-10,-3.09864980938767e-10,-4.72712147241173e-11,-1.7433970936274e-10,3.98986399537435e-10 +6.408,-1.99476683809471e-06,-1.41723951861683e-06,1.43857772727171e-06,-4.35164966561263e-10,-2.15228983940774e-09,-0.080001040902176,-3.01992751552232e-09,2.1567834324052e-09,7.63659968594425e-10,6.75397238136734e-11,4.87627299650074e-10,-1.13115072863921e-09,8.88636224043767e-08,3.12362982690704e-07,-7.46022167568854e-08,-3.46944695157809e-11,-1.46584133692959e-10,4.18873269411601e-07 +6.41,1.00045819280935e-08,-1.09862362956958e-08,-3.48537828806506e-09,-4.34978102148431e-10,-2.15100395134504e-09,-0.0799999944778298,-4.23088401336041e-08,-1.98003075740938e-07,1.50387214833975e-07,6.7496355726789e-11,4.8733066193579e-10,1.51841313827966e-07,7.58128368943068e-10,-9.12898229113264e-10,-3.37403716035159e-10,-2.77555756118838e-11,-1.7390602843963e-10,3.96384314197982e-10 +6.412,-1.99493607345525e-06,-1.41803153091979e-06,1.43917927613105e-06,-4.34894981138356e-10,-2.15034051676e-09,-0.0800010402948107,-3.01689500204655e-09,2.15313183948875e-09,7.62310353730284e-10,6.74287015112259e-11,4.86931675536315e-10,-1.12956519138242e-09,8.71849521854353e-08,3.09474668125255e-07,-7.3538180761527e-08,-3.29597460473047e-11,-1.77375475445687e-10,4.1304026170686e-07 +6.414,9.99251434808529e-09,-1.09776237683379e-08,-3.48232904665013e-09,-4.34708387342386e-10,-2.1490562246429e-09,-0.0799999944823481,-4.19601003248624e-08,-1.96765177068437e-07,1.50093062110928e-07,6.73645167425998e-11,4.86621160034007e-10,1.53493474874794e-07,7.52517623035193e-10,-8.96201515895842e-10,-3.00107161386244e-10,-3.68628738682447e-11,-1.87350135432487e-10,4.44089209912672e-10 +6.416,-1.99510391385655e-06,-1.41881859162807e-06,1.43977964837949e-06,-4.34625523071386e-10,-2.14839403211986e-09,-0.0800010396808368,-3.01388493155441e-09,2.14954703342516e-09,7.61109925084739e-10,6.72812500157529e-11,4.86182274994585e-10,-1.12778883454277e-09,8.55783542965124e-08,3.05962937266655e-07,-7.22679294795575e-08,-3.81639164677502e-11,-1.67834496273725e-10,4.05999886496557e-07 +6.418,9.98045880835907e-09,-1.09690255802042e-08,-3.4792846069498e-09,-4.34439262342323e-10,-2.14711149554292e-09,-0.0799999944868592,-4.16177869076763e-08,-1.9554132531937e-07,1.4980399039301e-07,6.72118610767288e-11,4.85949822048913e-10,1.5511747442078e-07,7.5869757508383e-10,-9.15283473893146e-10,-3.28079577351938e-10,-4.51028103716699e-11,-1.37043154575222e-10,3.99853761150143e-10 +6.42,-1.99527038500418e-06,-1.41960075692935e-06,1.44037886434106e-06,-4.34356675627079e-10,-2.14645023283166e-09,-0.0800010390603669,-3.01085014125407e-09,2.14588589952959e-09,7.59797606775331e-10,6.71008387742663e-11,4.85634102376285e-10,-1.12618941949817e-09,8.42925176296401e-08,3.02348424085809e-07,-7.1074439744731e-08,-3.8597597344217e-11,-1.86049092825494e-10,3.98724456221181e-07 +6.422,9.96841540779406e-09,-1.09604420366061e-08,-3.47624541652269e-09,-4.34170858987226e-10,-2.14516895913341e-09,-0.079999994491364,-4.12806168371578e-08,-1.94331931623027e-07,1.49519692634031e-07,6.70574706873519e-11,4.85205625677611e-10,1.56712372245664e-07,7.52111047220201e-10,-9.057424950133e-10,-3.1333442789041e-10,-2.12503625844358e-11,-1.63931368506725e-10,4.05925293441031e-10 +6.424,-1.99543550747153e-06,-1.42037808465584e-06,1.4409769431116e-06,-4.34088445744329e-10,-2.14450941032895e-09,-0.0800010384335174,-3.00784169706519e-09,2.14226292954954e-09,7.5854426906377e-10,6.70158373239285e-11,4.84978376902258e-10,-1.12456571832441e-09,8.33442472999288e-08,2.9895790703036e-07,-6.99577114904587e-08,-2.73218947429126e-11,-1.3877787805122e-10,3.91815052633682e-07 +6.426,9.95638404100579e-09,-1.09518729848879e-08,-3.47321123944644e-09,-4.3390279563793e-10,-2.14322904562581e-09,-0.0799999944958622,-4.0947239847958e-08,-1.93136099994905e-07,1.49239861788069e-07,6.69481831083803e-11,4.84650514165406e-10,1.58279632456199e-07,7.51243685148405e-10,-8.88178419581316e-10,-3.28079577352067e-10,-4.42354486336976e-11,-1.83880688426653e-10,3.93782228984378e-10 +6.428,-1.99559929643092e-06,-1.42115062905582e-06,1.44157390255875e-06,-4.33820653011896e-10,-2.14257080827229e-09,-0.0800010378003989,-3.0048367223246e-09,2.13871021587121e-09,7.57231950754361e-10,6.68388955293937e-11,4.84242854148551e-10,-1.12299058940847e-09,8.28850876844441e-08,2.96220079725919e-07,-6.91851090389311e-08,-4.25007251651458e-11,-1.91686944122342e-10,3.86132965870624e-07 +6.43,9.9443646941165e-09,-1.09433181440244e-08,-3.47018231164342e-09,-4.33635440055813e-10,-2.14129207420921e-09,-0.0799999945003542,-4.06156994972203e-08,-1.91951219676002e-07,1.48963121351914e-07,6.67781802077197e-11,4.83883766388916e-10,1.59824164319682e-07,7.5265314830603e-10,-9.10079303702931e-10,-3.01625044427439e-10,-3.03576608333001e-11,-1.50487261567829e-10,4.30211422104497e-10 +6.432,-1.99576175922891e-06,-1.42191843393452e-06,1.44216975504416e-06,-4.33553540291065e-10,-2.14063527320674e-09,-0.0800010371611022,-3.00182610973137e-09,2.1350698986564e-09,7.56025450576652e-10,6.67174648860605e-11,4.8364090510228e-10,-1.12126974372005e-09,8.27913312970519e-08,2.94191754280246e-07,-6.86482121065573e-08,-3.51281503848235e-11,-1.41379963265236e-10,3.8184126000872e-07 +6.434,9.93235738967757e-09,-1.09347778644298e-08,-3.46715820984111e-09,-4.33368570196269e-10,-2.1393575105888e-09,-0.0799999945048393,-4.0284534172032e-08,-1.90774452658881e-07,1.48688528503488e-07,6.66376676061804e-11,4.83318246535855e-10,1.61351529359717e-07,7.4826212917438e-10,-9.01839366955048e-10,-3.222248856208e-10,-3.68628738608115e-11,-1.76941794522848e-10,4.0245584636447e-10 +6.436,-1.9959228973656e-06,-1.42268153174516e-06,1.44276450915817e-06,-4.3328698962064e-10,-2.13870200022059e-09,-0.0800010365156961,-2.99883306121468e-09,2.13146254118858e-09,7.54736551034168e-10,6.65700133906173e-11,4.82933137924188e-10,-1.11965992033459e-09,8.31272713446867e-08,2.93121863597692e-07,-6.85178910219503e-08,-2.99239799642997e-11,-1.62196645030655e-10,3.79317237333345e-07 +6.438,9.92036205743271e-09,-1.0926252014265e-08,-3.46413926363698e-09,-4.33102290142706e-10,-2.13742577803711e-09,-0.0799999945093179,-3.99520250866533e-08,-1.8960196520449e-07,1.484144569394e-07,6.65179716863232e-11,4.82669459955733e-10,1.6286879830905e-07,7.47232137443396e-10,-8.98153079805178e-10,-3.10732342676187e-10,-3.72965547371872e-11,-1.68701858065506e-10,4.06792655178606e-10 +6.44,-1.99608270546594e-06,-1.42343993960597e-06,1.44335816698593e-06,-4.33020917733895e-10,-2.13677132238077e-09,-0.0800010358642209,-2.9958441326649e-09,2.12786992886936e-09,7.53493621663464e-10,6.64208271716685e-11,4.82258330491926e-10,-1.11803274971388e-09,8.37004619237716e-08,2.9281568488306e-07,-6.86148186796845e-08,-3.77302355988013e-11,-1.86482773640732e-10,3.78180993474581e-07 +6.442,9.90837868090205e-09,-1.09177405345495e-08,-3.46112528915032e-09,-4.32836606834019e-10,-2.13549674471514e-09,-0.07999999451379,-3.96172232389582e-08,-1.88430702464958e-07,1.48139997664681e-07,6.6367050743928e-11,4.8192352886117e-10,1.64381522282948e-07,7.47584502816886e-10,-8.98803600872502e-10,-3.24826970834894e-10,-3.51281503848507e-11,-1.43982048479337e-10,4.21537804600372e-10 +6.444,-1.9962411743589e-06,-1.42419366241583e-06,1.44395072697659e-06,-4.32755449530919e-10,-2.13484362826533e-09,-0.0800010352066948,-2.99285379465363e-09,2.12427471446587e-09,7.52194313780124e-10,6.62803145701291e-11,4.81682402298009e-10,-1.11634659849548e-09,8.44814940681918e-08,2.9328969809386e-07,-6.90213945108195e-08,-4.16333634271283e-11,-1.43982048532819e-10,3.78592990281959e-07 +6.446,9.89640726572344e-09,-1.09092434356917e-08,-3.4581165118952e-09,-4.32571485575739e-10,-2.13357001510595e-09,-0.0799999945182554,-3.92792972626855e-08,-1.87257543672582e-07,1.47863912086638e-07,6.62005172902195e-11,4.81347600667039e-10,1.65895894244076e-07,7.43410324784972e-10,-8.83407930258963e-10,-3.0119136355816e-10,-3.0791341702262e-11,-1.69135538934448e-10,4.02455846488509e-10 +6.448,-1.99639829154795e-06,-1.42494269259053e-06,1.44454218262494e-06,-4.32490647461758e-10,-2.13291823786266e-09,-0.0800010345431112,-2.98988015335449e-09,2.12074108274483e-09,7.50989548325891e-10,6.61571492033201e-11,4.81005860142271e-10,-1.11473677510952e-09,8.52829092046607e-08,2.94249000155218e-07,-6.95298853132886e-08,-2.12503625770429e-11,-1.59594559763146e-10,3.79857603714278e-07 +6.45,9.88444774511002e-09,-1.09007604713607e-08,-3.4551125537019e-09,-4.32306856978926e-10,-2.13164599166538e-09,-0.0799999945227144,-3.89381656258668e-08,-1.86080547671961e-07,1.47585792545385e-07,6.61155158399113e-11,4.80709222427986e-10,1.67415324658933e-07,7.43383219398918e-10,-9.04224611735344e-10,-3.1832175780011e-10,-3.33934269088866e-11,-1.7173762409502e-10,3.86843335081039e-10 +6.452,-1.99655404421045e-06,-1.42568701478121e-06,1.44513252579512e-06,-4.32226185398399e-10,-2.13099540097295e-09,-0.08000103387345,-2.9869066204769e-09,2.11712418429789e-09,7.49716261294691e-10,6.60235754956846e-11,4.80318909645891e-10,-1.1131894017692e-09,8.60689286790003e-08,2.95533562909904e-07,-7.01752024627523e-08,-4.68375338550431e-11,-1.71737624148399e-10,3.8184733152272e-07 +6.454,9.87250011862811e-09,-1.08922919746235e-08,-3.45211368865672e-09,-4.32042762676943e-10,-2.12972471602679e-09,-0.0799999945271671,-3.85938899111508e-08,-1.84898413420322e-07,1.47305091735534e-07,6.59281657044912e-11,4.80022271931392e-10,1.68942713985024e-07,7.42949538861252e-10,-8.78420600265117e-10,-3.10298661806908e-10,-4.03323208201172e-11,-1.54824070257563e-10,4.13731549082202e-10 +6.456,-1.9967084197701e-06,-1.42642660843489e-06,1.44572174616206e-06,-4.31962472735581e-10,-2.12907531188522e-09,-0.0800010331976791,-2.98393482232145e-09,2.11361050189683e-09,7.48475066647463e-10,6.58622462124041e-11,4.79699613364861e-10,-1.11153447557287e-09,8.67282049107288e-08,2.96925244797913e-07,-7.0796233450778e-08,-3.0357660825933e-11,-1.58293517156215e-10,3.83887366349137e-07 +6.458,9.86056437933883e-09,-1.08838375326159e-08,-3.44911978839013e-09,-4.31779313692093e-10,-2.12780591757333e-09,-0.0799999945316133,-3.82469770915079e-08,-1.8371071244113e-07,1.4702190680173e-07,6.58067350611874e-11,4.79389097862767e-10,1.70478263450421e-07,7.40537188696454e-10,-8.97936239135341e-10,-3.10732342592866e-10,-3.07913416949405e-11,-1.66533453667193e-10,4.21537804600734e-10 +6.46,-1.99686140767846e-06,-1.42716145128466e-06,1.44630983378927e-06,-4.31699245795336e-10,-2.12715775549377e-09,-0.080001032515766,-2.98097267356667e-09,2.11001875694029e-09,7.47232137277092e-10,6.57390808456243e-11,4.79033479550192e-10,-1.10984832435447e-09,8.7195523156392e-08,2.98150610113718e-07,-7.13381177129273e-08,-2.90566182262659e-11,-1.76074432838264e-10,3.85851073305109e-07 +6.462,9.84864048864456e-09,-1.08753974575881e-08,-3.44613085984102e-09,-4.31516357368711e-10,-2.12588978365513e-09,-0.0799999945360527,-3.78981949988823e-08,-1.82518110000675e-07,1.46736554330879e-07,6.56905085882824e-11,4.78684800131415e-10,1.72021667743641e-07,7.38179049302109e-10,-8.78637440699201e-10,-3.10081821372256e-10,-4.42354486410484e-11,-1.50487261567544e-10,3.97251676060218e-10 +6.464,-1.99701300045846e-06,-1.42789152372466e-06,1.44689678000659e-06,-4.31436483760983e-10,-2.12524301629324e-09,-0.0800010318276794,-2.97801995736946e-09,2.10650420717749e-09,7.45991809991603e-10,6.55621390510601e-11,4.78431530503922e-10,-1.10825931765023e-09,8.74890979954187e-08,2.99173229582477e-07,-7.18023730668841e-08,-4.85722573237036e-11,-1.37910516313593e-10,3.87262270871822e-07 +6.466,9.83672840881508e-09,-1.08669714407594e-08,-3.44314689260106e-09,-4.31254108812507e-10,-2.12397605753312e-09,-0.0799999945404857,-3.75482386069006e-08,-1.81321417082345e-07,1.46449344838611e-07,6.54962195589875e-11,4.7813315806616e-10,1.73570716827129e-07,7.39669826958775e-10,-9.10512984336588e-10,-3.06829214772073e-10,-2.34187669220512e-11,-1.72604985833164e-10,3.93782228985309e-10 +6.468,-1.99716319341289e-06,-1.42861680939299e-06,1.44748257738594e-06,-4.31174498882747e-10,-2.12333048366098e-09,-0.0800010311333965,-2.97506127806162e-09,2.10286215524015e-09,7.44764493132515e-10,6.54684639833719e-11,4.77741110560589e-10,-1.10668418873429e-09,8.75472383411067e-08,2.99817462533565e-07,-7.20829646053918e-08,-2.51534904052983e-11,-1.71737624148244e-10,3.87984783180389e-07 +6.47,9.82482816370284e-09,-1.08585599921385e-08,-3.44016783462853e-09,-4.30992234956573e-10,-2.12206509309087e-09,-0.0799999945449124,-3.71980496535362e-08,-1.80122147232211e-07,1.4616101298019e-07,6.53956055973664e-11,4.77446207569567e-10,1.7512265595985e-07,7.32703828330644e-10,-8.5391763116612e-10,-3.13768108758577e-10,-4.25007251650556e-11,-1.58727198078356e-10,4.17200996033742e-10 +6.472,-1.9973119856115e-06,-1.42933729798192e-06,1.44806722143787e-06,-4.30912916460358e-10,-2.1214206988307e-09,-0.0800010304329059,-2.9721304627483e-09,2.09944648471548e-09,7.4350942069748e-10,6.52984610827117e-11,4.77106201768276e-10,-1.10501538475015e-09,8.74727807527625e-08,3.00032351384087e-07,-7.22184898607105e-08,-3.64291929918835e-11,-1.61762964108324e-10,3.88053304777039e-07 +6.474,9.81293964185184e-09,-1.08501622061996e-08,-3.43719379694574e-09,-4.30731041112242e-10,-2.1201566682838e-09,-0.0799999945493325,-3.68481585305251e-08,-1.78922017826675e-07,1.45872139020747e-07,6.52498888253988e-11,4.76799155713134e-10,1.76674869178958e-07,7.37907998428796e-10,-9.03574090433093e-10,-2.96204033481817e-10,-2.81892564810073e-11,-1.63931368453382e-10,3.73832909011728e-10 +6.476,-1.99745937824562e-06,-1.43005298605323e-06,1.44865070999395e-06,-4.30651916905056e-10,-2.11951350220785e-09,-0.0800010297262064,-2.96917883075459e-09,2.09583218835375e-09,7.42324604563553e-10,6.51857040567877e-11,4.76450476294462e-10,-1.1035200531141e-09,8.72275613305096e-08,2.99902463983748e-07,-7.22152372704086e-08,-3.33934269161761e-11,-1.68701858065207e-10,3.87252729873348e-07 +6.478,9.80106292652883e-09,-1.08417788774462e-08,-3.43422449852748e-09,-4.30470298296015e-10,-2.11825086637862e-09,-0.0799999945537466,-3.64992482852031e-08,-1.7772240797074e-07,1.45583278071665e-07,6.51163151177341e-11,4.76124348280873e-10,1.78223880098451e-07,7.33381454688241e-10,-8.69096461580502e-10,-3.24176449614308e-10,-4.20670442960453e-11,-1.48752538091413e-10,4.43221848173236e-10 +6.48,-1.99760537523876e-06,-1.43076387568511e-06,1.44923304310624e-06,-4.30391451644585e-10,-2.11760900481472e-09,-0.0800010290133109,-2.96624530493583e-09,2.09235580250743e-09,7.41027898765096e-10,6.50174358796035e-11,4.75855466142097e-10,-1.10174716572141e-09,8.69259091769989e-08,2.99402646762446e-07,-7.20922887278597e-08,-3.77302355988789e-11,-1.6002824063245e-10,3.85960360903452e-07 +6.482,9.78919794530908e-09,-1.08334094542362e-08,-3.43126038693242e-09,-4.30210228552497e-10,-2.11634744451406e-09,-0.0799999945581536,-3.61515446484951e-08,-1.7652479738369e-07,1.45294908916754e-07,6.49653941753386e-11,4.75484235318343e-10,1.79767721542065e-07,7.31592520774378e-10,-8.78854280900835e-10,-2.90132501316052e-10,-2.03830008391237e-11,-1.61762964108463e-10,3.67761376846016e-10 +6.484,-1.99774998141736e-06,-1.43146997487464e-06,1.4498142227419e-06,-4.30131590067884e-10,-2.11570706787345e-09,-0.08000102829424,-2.96331893485274e-09,2.08884038538382e-09,7.39867368759832e-10,6.4935903876247e-11,4.75208414285663e-10,-1.10027612021403e-09,8.65647072272698e-08,2.98648258910485e-07,-7.18650399686626e-08,-3.07913417021945e-11,-1.45716772008434e-10,3.84067777571282e-07 +6.486,9.77734466956967e-09,-1.08250540926946e-08,-3.42830091745738e-09,-4.29950484936992e-10,-2.11444661085691e-09,-0.0799999945625547,-3.58052858195861e-08,-1.75330204348048e-07,1.45007448756879e-07,6.48422288085298e-11,4.7490136823031e-10,1.8130399265235e-07,7.3037279365918e-10,-8.84708972863878e-10,-3.12033385282316e-10,-4.98732999379271e-11,-1.66967134589115e-10,4.11129463867514e-10 +6.488,-1.99789320256064e-06,-1.43217129569204e-06,1.45039425253693e-06,-4.2987222115265e-10,-2.11380746240053e-09,-0.080001027569024,-2.9603974436781e-09,2.08530154949237e-09,7.38619235218702e-10,6.47364106764952e-11,4.74540545747306e-10,-1.09863160235856e-09,8.62455181036938e-08,2.97752491056049e-07,-7.16275996767721e-08,-3.4260788646945e-11,-1.67400815405403e-10,3.81906312140267e-07 +6.49,9.76550307979496e-09,-1.08167128864967e-08,-3.42534644051651e-09,-4.29691539294286e-10,-2.11254844867392e-09,-0.0799999945669492,-3.54603037471713e-08,-1.74139194383824e-07,1.44720938358172e-07,6.4705185653942e-11,4.74231764968688e-10,1.82831617900912e-07,7.2958674675559e-10,-8.76685876556277e-10,-3.01625044344555e-10,-2.60208521360619e-11,-1.67834496274434e-10,3.93782228985826e-10 +6.492,-1.99803504377562e-06,-1.43286785246957e-06,1.45097313629036e-06,-4.29613400410034e-10,-2.11191053534066e-09,-0.0800010268376976,-2.95747909669108e-09,2.08179480598614e-09,7.37412735041324e-10,6.4632327267951e-11,4.73869207762209e-10,-1.09705647344261e-09,8.5962758181066e-08,2.9680207945105e-07,-7.13450566067055e-08,-3.33934269161438e-11,-1.50053580698325e-10,3.79704948029034e-07 +6.494,9.75367316340819e-09,-1.08083857072727e-08,-3.42239678957634e-09,-4.29433009985214e-10,-2.11065297184287e-09,-0.0799999945713374,-3.5116452714447e-08,-1.7295198606602e-07,1.44435558131745e-07,6.45716119462775e-11,4.73631550645895e-10,1.84350437693028e-07,7.3113173517961e-10,-8.71481706359143e-10,-3.09648140502719e-10,-3.77302356060747e-11,-1.44415729401342e-10,4.11129463867307e-10 +6.496,-1.99817550958648e-06,-1.43355966041384e-06,1.45155087852289e-06,-4.29355113962249e-10,-2.11001600913807e-09,-0.0800010261002958,-2.95455456975036e-09,2.07830887916071e-09,7.36174142479313e-10,6.44814063255267e-11,4.73291544844603e-10,-1.09541195558714e-09,8.57734022677231e-08,2.95883543351251e-07,-7.1154453848726e-08,-4.25007251578469e-11,-1.67400815405454e-10,3.77529604810537e-07 +6.498,9.74185494512919e-09,-1.08000724717561e-08,-3.41945209300643e-09,-4.29175084359912e-10,-2.1087598056635e-09,-0.0799999945757191,-3.47733591053761e-08,-1.71768451892614e-07,1.4415094031635e-07,6.44016090456461e-11,4.72961947384273e-10,1.8586055611227e-07,7.20533658615748e-10,-8.71048025259662e-10,-2.95553512178739e-10,-3.7730235598926e-11,-1.73472347571463e-10,3.998537611519e-10 +6.5,-1.9983146030229e-06,-1.43424673422141e-06,1.45212748228415e-06,-4.29097507526066e-10,-2.10812416134853e-09,-0.0800010253568536,-2.9516724351159e-09,2.07482468705967e-09,7.34991928430598e-10,6.4330485383131e-11,4.72597655454317e-10,-1.09381254054254e-09,8.56474450842149e-08,2.95091858944039e-07,-7.0918748312451e-08,-2.64545330122229e-11,-1.48752538091265e-10,3.75515590834384e-07 +6.502,9.73004825538873e-09,-1.07917731730078e-08,-3.4165121252927e-09,-4.28917762418379e-10,-2.10686941504168e-09,-0.0799999945800943,-3.44307693250393e-08,-1.70588084456838e-07,1.438672653231e-07,6.42957909135972e-11,4.72366937231908e-10,1.87362618475607e-07,7.27770708444595e-10,-8.69746982882856e-10,-3.0444397007466e-10,-2.55871712742223e-11,-1.32272665069428e-10,3.94649590845374e-10 +6.504,-1.9984523261002e-06,-1.43492908655923e-06,1.45270295134545e-06,-4.28840324362412e-10,-2.10623469359961e-09,-0.0800010246074031,-2.94876135228212e-09,2.07134569912814e-09,7.33774152550299e-10,6.42281366980341e-11,4.7206856479404e-10,-1.09223394217915e-09,8.56542755540609e-08,2.94461070101083e-07,-7.08500098787318e-08,-3.59955121229475e-11,-1.74773390178458e-10,3.73918777895463e-07 +6.506,9.7182532099796e-09,-1.07834877902113e-08,-3.4135770286825e-09,-4.28660849871587e-10,-2.1049811407825e-09,-0.0799999945844633,-3.4088152222823e-08,-1.69410240176434e-07,1.43583865283586e-07,6.41518088651054e-11,4.71667843671194e-10,1.88858293587189e-07,7.26605190781978e-10,-8.81673206550435e-10,-3.06178693469253e-10,-4.16333634198872e-11,-1.69569219750566e-10,4.11129463745958e-10 +6.508,-1.99858867870909e-06,-1.43560672751994e-06,1.45327728680658e-06,-4.28583717126951e-10,-2.10434802222492e-09,-0.0800010238519699,-2.94585493151899e-09,2.06781900630194e-09,7.32549437776423e-10,6.40616032443546e-11,4.71390287915038e-10,-1.09058942432417e-09,8.57037422819831e-08,2.93984888525799e-07,-7.07830062004227e-08,-3.59955121300802e-11,-1.40512601580296e-10,3.72547478966816e-07 +6.51,9.70646979025352e-09,-1.07752165141861e-08,-3.4106468309314e-09,-4.2840460345861e-10,-2.10309557963084e-09,-0.0799999945888256,-3.37453372536951e-08,-1.68234300622331e-07,1.43300733258784e-07,6.40078268165851e-11,4.71105793264873e-10,1.90348483503056e-07,7.20208398291096e-10,-8.58471280288698e-10,-2.95336671825654e-10,-2.86229373571684e-11,-1.60028240685002e-10,3.63424568277588e-10 +6.512,-1.99872366005811e-06,-1.43627966472243e-06,1.45385048973962e-06,-4.28327685819685e-10,-2.10246359905186e-09,-0.080001023090576,-2.94297409792583e-09,2.06438512118078e-09,7.3136809108912e-10,6.39471114949259e-11,4.70750174952297e-10,-1.08913572605106e-09,8.58414901642312e-08,2.93747881912154e-07,-7.08385173357299e-08,-3.07913416950371e-11,-1.60895602370697e-10,3.71582105373488e-07 +6.514,9.69469789386182e-09,-1.07669589737014e-08,-3.40772135856704e-09,-4.2814881501263e-10,-2.10121257893103e-09,-0.0799999945931822,-3.34019712930381e-08,-1.67059309094682e-07,1.43017379189441e-07,6.38846614498049e-11,4.7046221085539e-10,1.91834811924551e-07,7.22132856820785e-10,-8.69530142218906e-10,-3.01841884779414e-10,-3.77302355989519e-11,-1.53089346728836e-10,4.19803081126049e-10 +6.516,-1.99885726794328e-06,-1.43694790195881e-06,1.45442255925637e-06,-4.28072147173886e-10,-2.10058175020844e-09,-0.0800010223232367,-2.94008556649854e-09,2.06090700061191e-09,7.30160723550002e-10,6.37961905525301e-11,4.70137817565382e-10,-1.08745651372656e-09,8.59997023699794e-08,2.93620813436146e-07,-7.09016179180596e-08,-4.51028103789433e-11,-1.62630325898926e-10,3.70883879153195e-07 +6.518,9.68293755159583e-09,-1.07587153456989e-08,-3.40480071567284e-09,-4.2789363025042e-10,-2.09933202766077e-09,-0.079999994597532,-3.30579724835583e-08,-1.65884825840938e-07,1.42733772717769e-07,6.37042502082892e-11,4.69811689551794e-10,1.93318347441163e-07,7.18012888891606e-10,-8.53050269425857e-10,-2.96637714432507e-10,-3.20923843091055e-11,-1.50920942436047e-10,3.89445420417082e-10 +6.52,-1.99898949983322e-06,-1.43761144126217e-06,1.45499349434725e-06,-4.27817330173053e-10,-2.09870250345023e-09,-0.0800010215499634,-2.93721351494298e-09,2.0574947995342e-09,7.28974172692272e-10,6.36678210152937e-11,4.69534133795638e-10,-1.08589873204489e-09,8.61922024620157e-08,2.93601080938132e-07,-7.10521051637426e-08,-1.90819582322078e-11,-1.55257751073851e-10,3.70415503836059e-07 +6.522,9.67118869753605e-09,-1.07504853665008e-08,-3.40188481898207e-09,-4.27638958966359e-10,-2.09745389112559e-09,-0.0799999946018756,-3.27132036737102e-08,-1.64710421517185e-07,1.42449564297114e-07,6.36279223753603e-11,4.69190658547499e-10,1.94800009456508e-07,7.20316818182182e-10,-8.78854280902696e-10,-3.10732342593951e-10,-3.68628738609828e-11,-1.76074432785635e-10,3.93782228986549e-10 +6.524,-1.99912035264791e-06,-1.43827028294824e-06,1.45556329260443e-06,-4.27562818483551e-10,-2.09682574081604e-09,-0.0800010207707633,-2.93433224767025e-09,2.05397938241059e-09,7.27731243321897e-10,6.35203695198497e-11,4.68829836064495e-10,-1.08432360312894e-09,8.63607416933774e-08,2.93712536939806e-07,-7.11889314937418e-08,-3.72965547370339e-11,-1.54824070256977e-10,3.70094579971453e-07 +6.526,9.65945136854537e-09,-1.07422694489712e-08,-3.39897389400878e-09,-4.27384877488279e-10,-2.09557857178133e-09,-0.0799999946062129,-3.23677607069367e-08,-1.63535571369426e-07,1.42164808571139e-07,6.34787361564122e-11,4.68571362266471e-10,1.96280387776393e-07,7.1619685025228e-10,-8.636754507158e-10,-2.84494650100515e-10,-2.64545330121653e-11,-1.37910516366145e-10,4.05057931700665e-10 +6.528,-1.99924982369074e-06,-1.43892442523372e-06,1.45613195183872e-06,-4.27308903538925e-10,-2.09495145536698e-09,-0.0800010199856418,-2.93146746026924e-09,2.05052468060773e-09,7.26593264721494e-10,6.34145513878011e-11,4.68278193999031e-10,-1.08270337140214e-09,8.65128281495119e-08,2.93794719446264e-07,-7.13565491338096e-08,-4.42354486338849e-11,-1.50487261514993e-10,3.6984824925958e-07 +6.53,9.6477254987043e-09,-1.07340673502487e-08,-3.3960675209499e-09,-4.27131219282728e-10,-2.09370545900534e-09,-0.0799999946105437,-3.20217093943386e-08,-1.62360392491641e-07,1.41879382374603e-07,6.33017943618766e-11,4.67969413220411e-10,1.97759780773432e-07,7.16657635850353e-10,-8.45894534859546e-10,-2.97505076089756e-10,-4.07660016819439e-11,-1.50487261515026e-10,3.87710696820785e-10 +6.532,-1.99937791052832e-06,-1.43957386680368e-06,1.45669946936822e-06,-4.27055696361478e-10,-2.0930795777141e-09,-0.0800010191946026,-2.92860082972584e-09,2.04714110246829e-09,7.25403244417135e-10,6.32514873810733e-11,4.67676244952971e-10,-1.08115252861486e-09,8.66313314505391e-08,2.93915933267239e-07,-7.14792808355004e-08,-1.64798730252938e-11,-1.63497687636785e-10,3.69480487860799e-07 +6.534,9.63601109538539e-09,-1.07258787858389e-08,-3.39316590797223e-09,-4.26878213333204e-10,-2.09183475402552e-09,-0.0799999946148683,-3.16751840685365e-08,-1.61184728758572e-07,1.41593465251262e-07,6.32358748697755e-11,4.67315422469864e-10,1.99237702724875e-07,7.15031332916651e-10,-8.7451747244024e-10,-2.98155597473728e-10,-3.46944695230381e-11,-1.80844922396489e-10,3.74700270870919e-10 +6.536,-1.99950461126459e-06,-1.44021860571872e-06,1.45726584322922e-06,-4.26802752861999e-10,-2.09121031602422e-09,-0.0800010183976518,-2.92574070439417e-09,2.04364303257853e-09,7.2421062202724e-10,6.31127095029811e-11,4.66952865263385e-10,-1.07965372753137e-09,8.66967088380035e-08,2.93923739504922e-07,-7.16150229317566e-08,-5.16080234067984e-11,-1.52221984991021e-10,3.69168237657156e-07 +6.538,9.62430813256782e-09,-1.07177042137085e-08,-3.39026906548412e-09,-4.26625762495192e-10,-2.08996694256447e-09,-0.0799999946191869,-3.13283972331844e-08,-1.60009033800552e-07,1.41307005159534e-07,6.30294427761482e-11,4.667065345299e-10,2.00714375675504e-07,7.10775839064929e-10,-8.40039843128538e-10,-3.03576608255805e-10,-3.20923843020751e-11,-1.38344197183264e-10,4.31946145458405e-10 +6.54,-1.99962992485352e-06,-1.44085864185392e-06,1.45783107124986e-06,-4.26550635090894e-10,-2.0893434898861e-09,-0.0800010175947943,-2.92289760103791e-09,2.04028287320601e-09,7.22996315594217e-10,6.29843399657729e-11,4.66399488474652e-10,-1.07792594294954e-09,8.67406190294859e-08,2.93908127011471e-07,-7.17212747603661e-08,-2.68882138811396e-11,-1.46584133745932e-10,3.68614860846121e-07 +6.542,9.61261654216367e-09,-1.07095430822157e-08,-3.38737708022174e-09,-4.26373825135329e-10,-2.08810134461057e-09,-0.0799999946234986,-3.09814347570665e-08,-1.58833401292506e-07,1.41020120060493e-07,6.29218899206237e-11,4.66120197994916e-10,2.02188835118888e-07,7.15275278405047e-10,-8.73433270267342e-10,-2.86229373576234e-10,-2.68882138811304e-11,-1.47885176352882e-10,3.64291930014904e-10 +6.544,-1.99975385059255e-06,-1.44149397545909e-06,1.4583951517301e-06,-4.26298947531212e-10,-2.08747900909412e-09,-0.080001016786039,-2.92003649992429e-09,2.03678914012494e-09,7.21851398099912e-10,6.28767871102483e-11,4.6580794776924e-10,-1.07646877522948e-09,8.67041356229231e-08,2.9375655553005e-07,-7.17297315216386e-08,-2.47198095291771e-11,-1.59594559763999e-10,3.67891481179003e-07 +6.546,9.60093639616397e-09,-1.07013959256552e-08,-3.38448967462934e-09,-4.26122317986888e-10,-2.08623811281949e-09,-0.0799999946278045,-3.06346182145748e-08,-1.57658375070386e-07,1.40733201134406e-07,6.2823010682507e-11,4.6548181975586e-10,2.03660401043604e-07,7.07414812330533e-10,-8.50448183984813e-10,-2.97938756959009e-10,-4.33680868959417e-11,-1.62630325847007e-10,3.8597597334517e-10 +6.548,-1.99987638906541e-06,-1.44212460895937e-06,1.45895808453464e-06,-4.26047655488482e-10,-2.08561708181509e-09,-0.0800010159713974,-2.91720684067497e-09,2.03338734738901e-09,7.20659643072076e-10,6.27033147626646e-11,4.65157426465852e-10,-1.0749248713361e-09,8.6691829931686e-08,2.93562700199185e-07,-7.17778701137433e-08,-3.77302356059829e-11,-1.56558793732748e-10,3.6708049793146e-07 +6.55,9.58926756880127e-09,-1.06932623762657e-08,-3.38160703605705e-09,-4.25871504727837e-10,-2.08437748311363e-09,-0.0799999946321042,-3.02878508948481e-08,-1.56484124269589e-07,1.40446089653951e-07,6.26720897400831e-11,4.64855584580929e-10,2.0512872303533e-07,7.10260843357095e-10,-8.43509290306331e-10,-2.80591522279206e-10,-2.68882138811142e-11,-1.64365049374582e-10,4.08527378652101e-10 +6.552,-1.99999754046899e-06,-1.44275054545645e-06,1.45951986889326e-06,-4.25796967129521e-10,-2.08375765947677e-09,-0.0800010151508825,-2.91436579730154e-09,2.03001331022778e-09,7.19537276982959e-10,6.25957619071401e-11,4.64499966268354e-10,-1.07329076182149e-09,8.6619486538346e-08,2.93308129511643e-07,-7.17672449168397e-08,-3.85975973370029e-11,-1.4875253803921e-10,3.66123797957148e-07 +6.554,9.57761010561206e-09,-1.06851423230248e-08,-3.37872888694912e-09,-4.25621121680209e-10,-2.08251948324856e-09,-0.0799999946363974,-2.99413729486947e-08,-1.55310891751543e-07,1.40159020674284e-07,6.2517699350735e-11,4.64260574428772e-10,2.06593218227158e-07,7.1015242281637e-10,-8.5673655658554e-10,-3.10298661725474e-10,-3.77302355990294e-11,-1.2750217545855e-10,3.95516952463199e-10 +6.556,-2.00011730596078e-06,-1.44337178902346e-06,1.46008050497595e-06,-4.25546896332119e-10,-2.08190061717906e-09,-0.0800010143245096,-2.91152518761027e-09,2.02658636400144e-09,7.18296082336058e-10,6.2444840964744e-11,4.6398995756652e-10,-1.07170869401164e-09,8.65545699366104e-08,2.92936681864659e-07,-7.17381883141907e-08,-3.1225022571053e-11,-1.47885176352798e-10,3.64964135290596e-07 +6.558,9.56596400486162e-09,-1.06770359775687e-08,-3.37585570261978e-09,-4.2537134231635e-10,-2.08066352341829e-09,-0.0799999946406842,-2.95951546689483e-08,-1.54139145024084e-07,1.39872067921027e-07,6.23927992604508e-11,4.63669033723361e-10,2.08053074768321e-07,7.05056672928752e-10,-8.43292449871524e-10,-2.81892564886034e-10,-2.90566182260721e-11,-1.65232411112505e-10,3.69496100442472e-10 +6.56,-2.00023568657946e-06,-1.44398834560355e-06,1.46063999324764e-06,-4.25297325135077e-10,-2.08004594104416e-09,-0.0800010134922973,-2.90870496091856e-09,2.02321319420195e-09,7.17168512076513e-10,6.23286144918397e-11,4.6332902792207e-10,-1.07023070960987e-09,8.64844220527459e-08,2.92574558321871e-07,-7.16776898174255e-08,-3.33934269090892e-11,-1.63497687585076e-10,3.63859116459426e-07 +6.562,9.55432918501795e-09,-1.06689431247919e-08,-3.37298702857147e-09,-4.25122027858382e-10,-2.0788102073066e-09,-0.0799999946449651,-2.92492169807372e-08,-1.52968846790797e-07,1.39585357161758e-07,6.22592255528145e-11,4.63015042973021e-10,2.09508511234159e-07,7.05110882714622e-10,-8.56736556585954e-10,-3.01191363476724e-10,-3.46944695160826e-11,-1.6609977279909e-10,3.85975973345532e-10 +6.564,-2.00035268344738e-06,-1.44460022099072e-06,1.46119833467628e-06,-4.25048288232865e-10,-2.07819388087227e-09,-0.0800010126542633,-2.9058845173877e-09,2.01978624797561e-09,7.15963746622607e-10,6.21898366137754e-11,4.62664628830873e-10,-1.06868680571649e-09,8.64340608651014e-08,2.92178607705525e-07,-7.16696667368631e-08,-3.85975973439423e-11,-1.51354623304674e-10,3.62624860683083e-07 +6.566,9.5427056469484e-09,-1.06608639798e-08,-3.37012317358498e-09,-4.24873268511927e-10,-2.07695954879128e-09,-0.0799999946492399,-2.89034807372769e-08,-1.51800132359975e-07,1.3929867849481e-07,6.21048351634387e-11,4.62409624479802e-10,2.10959010676891e-07,7.0448746678799e-10,-8.36353555967308e-10,-2.80374681844451e-10,-3.59955121299624e-11,-1.34007388544862e-10,4.10262102127716e-10 +6.568,-2.00046829737033e-06,-1.44520742152016e-06,1.46175552939026e-06,-4.24799868892212e-10,-2.07634424237435e-09,-0.0800010118104272,-2.90306656752055e-09,2.01644083375174e-09,7.14842247895229e-10,6.20458545652555e-11,4.62128599276694e-10,-1.06704575730797e-09,8.63868709623145e-08,2.91785692821297e-07,-7.15948567714807e-08,-2.68882138741931e-11,-1.45283091087386e-10,3.61496423085305e-07 +6.57,9.53109338067831e-09,-1.0652798216465e-08,-3.3672638045934e-09,-4.24625085093666e-10,-2.07511103439417e-09,-0.079999994653508,-2.85579332534276e-08,-1.50632989588689e-07,1.39012299067724e-07,6.19972823079419e-11,4.61828492115452e-10,2.12404996369232e-07,7.03809840107949e-10,-8.60856524841709e-10,-2.91867224793477e-10,-2.55871712672195e-11,-1.5308934672934e-10,3.82506526393785e-10 +6.572,-2.00058252910335e-06,-1.44580995347851e-06,1.46231157858653e-06,-4.2455187976298e-10,-2.07449692840589e-09,-0.0800010109608073,-2.90025132816012e-09,2.01299740765237e-09,7.13674778996055e-10,6.19435058801867e-11,4.61516241889776e-10,-1.0655157312024e-09,8.6373399753512e-08,2.91427255599867e-07,-7.15837979247692e-08,-2.94902990950469e-11,-1.47017814614667e-10,3.60324617353778e-07 +6.574,9.51949237536567e-09,-1.06447462268344e-08,-3.36440910547742e-09,-4.24377311070145e-10,-2.07326496942661e-09,-0.0799999946577701,-2.82124396544136e-08,-1.4946728056629e-07,1.38725963876025e-07,6.18793211115618e-11,4.61240420856994e-10,2.13846294838647e-07,7.00692759183878e-10,-8.29414662062987e-10,-2.96204033562582e-10,-4.20670442958676e-11,-1.60461921553441e-10,3.7470027087004e-10 +6.576,-2.00069537886196e-06,-1.44640782260078e-06,1.46286648244204e-06,-4.24304362478534e-10,-2.07265196672246e-09,-0.0800010101054221,-2.89744855712338e-09,2.00967974900412e-09,7.12489962861804e-10,6.17752377030032e-11,4.60874394203563e-10,-1.06401693011892e-09,8.63689274163988e-08,2.91108500144495e-07,-7.15697032811055e-08,-4.51028103719604e-11,-1.71303943227113e-10,3.59245619375384e-07 +6.578,9.50790258113718e-09,-1.06367075078384e-08,-3.36155914562597e-09,-4.24130210119333e-10,-2.0714214718498e-09,-0.0799999946620262,-2.78669639447479e-08,-1.48302846565712e-07,1.38439685062901e-07,6.16989098700739e-11,4.60555205084085e-10,2.15283277316149e-07,7.00231972939057e-10,-8.42425087909867e-10,-2.78423117854784e-10,-3.38271077781264e-11,-1.33140026755657e-10,4.05057931581589e-10 +6.58,-2.00080684671774e-06,-1.44700103398704e-06,1.46342024118229e-06,-4.24057566839053e-10,-2.07080974590212e-09,-0.080001009244289,-2.89464762923163e-09,2.00631004865248e-09,7.11376270390385e-10,6.16399292718907e-11,4.6034183409654e-10,-1.06239669839259e-09,8.63787394491734e-08,2.90795599414044e-07,-7.15664506899763e-08,-2.42861286670998e-11,-1.40512601579689e-10,3.58215193606831e-07 +6.582,9.49632399062025e-09,-1.06286822676438e-08,-3.35871364054441e-09,-4.23883650402246e-10,-2.06958010451341e-09,-0.0799999946662758,-2.75214489869513e-08,-1.47139664168056e-07,1.38153419260141e-07,6.16017653554055e-11,4.59993154677766e-10,2.16716138090576e-07,6.97873833535105e-10,-8.39606162483936e-10,-2.92084065307034e-10,-3.59955121299301e-11,-1.56992474601423e-10,3.83373888249768e-10 +6.584,-2.00091693251369e-06,-1.44758959264371e-06,1.46397285485933e-06,-4.23811159777632e-10,-2.06896977328341e-09,-0.0800010083774244,-2.89185613389748e-09,2.00295162400254e-09,7.10207934129157e-10,6.14959472233709e-11,4.59713864198134e-10,-1.06086320283959e-09,8.64131357600199e-08,2.90543847653197e-07,-7.15801116219945e-08,-3.12250225641637e-11,-1.49186218908462e-10,3.57264565165978e-07 +6.586,9.48475656608466e-09,-1.06206704611478e-08,-3.35587280880789e-09,-4.23637666613352e-10,-2.06774124905662e-09,-0.0799999946705192,-2.71757964439112e-08,-1.45977488777443e-07,1.37867098813653e-07,6.14768652651488e-11,4.59396409802133e-10,2.1814519635124e-07,6.99283296038546e-10,-8.50881864855669e-10,-2.89915660883261e-10,-2.29850860532863e-11,-1.75207071048176e-10,3.72098185538233e-10 +6.588,-2.00102563569947e-06,-1.44817350259882e-06,1.46452432325458e-06,-4.23565252316571e-10,-2.06713218764421e-09,-0.0800010075048436,-2.88905900071333e-09,1.99954809654312e-09,7.09048271485624e-10,6.14040068791578e-11,4.59013035913942e-10,-1.05937481009744e-09,8.64488602246401e-08,2.90307925276728e-07,-7.16178418729256e-08,-4.11996825578626e-11,-1.574261554704e-10,3.56431897873368e-07 +6.59,9.47320033008181e-09,-1.06126722687616e-08,-3.35303661572195e-09,-4.23392050585836e-10,-2.06590519691296e-09,-0.0799999946747567,-2.68300010030126e-08,-1.44816257076336e-07,1.37580627446161e-07,6.13120665349174e-11,4.58766705180251e-10,2.19570923942733e-07,6.9489227756046e-10,-8.28764140758669e-10,-2.74086309243622e-10,-3.85975973438821e-11,-1.25333771164785e-10,3.88578058677491e-10 +6.592,-2.00113295570348e-06,-1.44875276762713e-06,1.46507464576437e-06,-4.23320004050431e-10,-2.06529712082348e-09,-0.0800010066265599,-2.88627943160309e-09,1.99623303998009e-09,7.0795192624865e-10,6.12496164897823e-11,4.58511700829282e-10,-1.05782049786273e-09,8.64836360063247e-08,2.90132284508647e-07,-7.16471153162872e-08,-3.1658703433174e-11,-1.37043154576704e-10,3.55533311137105e-07 +6.594,9.4616552123554e-09,-1.06046873366017e-08,-3.35020480801695e-09,-4.23147052119877e-10,-2.06407115010965e-09,-0.079999994678988,-2.64840664589873e-08,-1.43655727938301e-07,1.37294038984896e-07,6.11854317211847e-11,4.58218532561944e-10,2.20993057187282e-07,6.98768300006822e-10,-8.25945214888809e-10,-3.02926086953218e-10,-3.16587034331843e-11,-1.51788304122552e-10,3.66026653372468e-10 +6.596,-2.00123889196931e-06,-1.44932739053888e-06,1.46562382192031e-06,-4.23075262323547e-10,-2.06346424669324e-09,-0.0800010057425877,-2.88348435840306e-09,1.99292925912053e-09,7.06740221900837e-10,6.11229816760495e-11,4.57904547612792e-10,-1.05635639124924e-09,8.65436737045859e-08,2.89960763740972e-07,-7.17275631327415e-08,-2.55871712740535e-11,-1.50487261566427e-10,3.54769165421492e-07 +6.598,9.45012127492179e-09,-1.05967156195652e-08,-3.34737784712935e-09,-4.22902560193172e-10,-2.0622395319192e-09,-0.0799999946832134,-2.6137891764169e-08,-1.42495884883338e-07,1.37007128732365e-07,6.10830830360885e-11,4.57616583515679e-10,2.22412133848968e-07,6.90040472838278e-10,-8.48930301166587e-10,-2.72351585767542e-10,-2.34187669290738e-11,-1.71737624147082e-10,4.31078783838815e-10 +6.6,-2.00134344353637e-06,-1.44989737407841e-06,1.46617185043524e-06,-4.22830929991402e-10,-2.06163378035917e-09,-0.0800010048529392,-2.88072419651171e-09,1.98953353791587e-09,7.05650815557767e-10,6.10293066083332e-11,4.57217597116204e-10,-1.05463207611389e-09,8.65385508463991e-08,2.89739586481905e-07,-7.17188895001388e-08,-4.11996825510583e-11,-1.60028240633458e-10,3.53966855838457e-07 +6.602,9.43859837813574e-09,-1.05887574854135e-08,-3.34455524386712e-09,-4.22658442966739e-10,-2.06041066153073e-09,-0.0799999946874319,-2.57917375607834e-08,-1.4133692653741e-07,1.36720253174364e-07,6.09182843058842e-11,4.56976470553145e-10,2.23828001272322e-07,6.94919382294911e-10,-8.19656842288806e-10,-2.87313575669554e-10,-5.29090660139186e-11,-1.07119174616208e-10,3.6255720642067e-10 +6.604,-2.00144661048661e-06,-1.45046272178456e-06,1.46671873144794e-06,-4.22587256854179e-10,-2.05980587447696e-09,-0.0800010039576272,-2.87794451898253e-09,1.98625491054671e-09,7.04501561255089e-10,6.08176703442776e-11,4.56789120417739e-10,-1.0531818472882e-09,8.66066116406606e-08,2.89615770609562e-07,-7.18173350725968e-08,-2.55871712740405e-11,-1.41813644186465e-10,3.53216587910334e-07 +6.606,9.42708660005981e-09,-1.05808124657714e-08,-3.3417372376221e-09,-4.22415172285362e-10,-2.05858350504906e-09,-0.0799999946916447,-2.54453111142208e-08,-1.40178463454972e-07,1.36432983834074e-07,6.08159356207881e-11,4.56409215976399e-10,2.25240867623963e-07,6.90853624467332e-10,-8.40690364655388e-10,-2.83627288361235e-10,-1.90819582391161e-11,-1.92987986727731e-10,3.76434994345345e-10 +6.608,-2.00154839173107e-06,-1.45102343563838e-06,1.46726446338327e-06,-4.22343993111696e-10,-2.05798023761306e-09,-0.0800010030566637,-2.87518110448466e-09,1.98289214908809e-09,7.03367052101643e-10,6.07413425113211e-11,4.56017168470828e-10,-1.05167610731082e-09,8.65886680918611e-08,2.8939047338249e-07,-7.18182024191715e-08,-4.07660016820771e-11,-1.5135462325364e-10,3.52341419941626e-07 +6.61,9.41558587564187e-09,-1.0572880897175e-08,-3.33892376941369e-09,-4.22172206915317e-10,-2.05675943637518e-09,-0.0799999946958514,-2.50989564418533e-08,-1.39020901561442e-07,1.36145711024397e-07,6.06528716140598e-11,4.55803797483384e-10,2.2665023330373e-07,6.90690993822424e-10,-8.28330459669002e-10,-2.81458883938261e-10,-3.81639164681271e-11,-1.136243876512e-10,3.72965547276738e-10 +6.612,-2.00164878755684e-06,-1.45157951924463e-06,1.46780904622737e-06,-4.22101381625239e-10,-2.05615702242312e-09,-0.0800010021500628,-2.87241834050937e-09,1.97957882724941e-09,7.02241216565891e-10,6.05886868454486e-11,4.55562670920223e-10,-1.05018424512171e-09,8.66196220666908e-08,2.89204424305188e-07,-7.18756651494368e-08,-2.34187669290531e-11,-1.37910516365452e-10,3.51527834606311e-07 +6.614,9.40409620227983e-09,-1.0564962581866e-08,-3.33611480454743e-09,-4.21929852167935e-10,-2.0549371856915e-09,-0.0799999947000521,-2.47524779535865e-08,-1.37864083864221e-07,1.358582083638e-07,6.05591965463436e-11,4.55252155417922e-10,2.28056344642155e-07,6.89444161642791e-10,-8.29631502495623e-10,-2.85795692706102e-10,-3.16587034399336e-11,-1.6523241111204e-10,4.08527378650705e-10 +6.616,-2.00174779746865e-06,-1.45213097558008e-06,1.46835247906082e-06,-4.21859144839054e-10,-2.05433601380145e-09,-0.0800010012378374,-2.8696605638628e-09,1.97626030123943e-09,7.01098033795066e-10,6.04620520316889e-11,4.54901741275775e-10,-1.04855013560711e-09,8.66046329688898e-08,2.88980861801851e-07,-7.18873745178092e-08,-3.38271077781868e-11,-1.52221984991693e-10,3.50676085404847e-07 +6.618,9.39261756002438e-09,-1.05570575406611e-08,-3.33331041241225e-09,-4.21688003959808e-10,-2.05311757872639e-09,-0.0799999947042463,-2.44060594217109e-08,-1.36708160417013e-07,1.35570658865728e-07,6.04238881152308e-11,4.54643267477956e-10,2.29459048983774e-07,6.87086021599323e-10,-8.21391565765507e-10,-2.78639958289902e-10,-2.29850860533413e-11,-1.3487475023197e-10,3.573530359931e-10 +6.62,-2.00184542170634e-06,-1.45267780822175e-06,1.46889476169629e-06,-4.21617449286593e-10,-2.05251744073154e-09,-0.0800010003200012,-2.8669122197764e-09,1.97297473497637e-09,6.99983473961906e-10,6.03701116874755e-11,4.54362242274847e-10,-1.04712072346314e-09,8.66003232679825e-08,2.88751227796963e-07,-7.19177321937028e-08,-4.38017677717699e-11,-1.46150452876291e-10,3.49732395808516e-07 +6.622,9.38114991114528e-09,-1.05491656417211e-08,-3.3305104785164e-09,-4.21446523513058e-10,-2.05130012975729e-09,-0.0799999947084348,-2.40596581286391e-08,-1.35553155505826e-07,1.35282987936954e-07,6.02486810441437e-11,4.54058665666451e-10,2.30857978567008e-07,6.87221547188886e-10,-8.22258927722309e-10,-2.8449465009899e-10,-4.03323208198005e-11,-1.53956708518128e-10,3.99853761270719e-10 +6.624,-2.00194166033885e-06,-1.45322002084378e-06,1.46943589364804e-06,-4.21376454562417e-10,-2.05070120606887e-09,-0.0800009993965693,-2.86416333358765e-09,1.96968569926548e-09,6.9884549536151e-10,6.02087824041963e-11,4.53746415440775e-10,-1.04552130841806e-09,8.65858491662896e-08,2.88476924632212e-07,-7.19136122104098e-08,-1.90819582323985e-11,-1.45283091087851e-10,3.48807788221373e-07 +6.626,9.36969325781092e-09,-1.05412868989241e-08,-3.32771509653496e-09,-4.21205688383441e-10,-2.04948514409553e-09,-0.0799999947126169,-2.37133147319739e-08,-1.34399247807297e-07,1.34995333488112e-07,6.01723532112141e-11,4.53477533302099e-10,2.32253209719894e-07,6.84267095951067e-10,-8.30498864014697e-10,-2.7690523481408e-10,-3.12250225642482e-11,-1.5048726151584e-10,3.62557206421187e-10 +6.628,-2.00203651359778e-06,-1.45375761783501e-06,1.46997587498199e-06,-4.21135765149572e-10,-2.04888729593566e-09,-0.0800009984675564,-2.86142626520384e-09,1.96636370380942e-09,6.97737874422254e-10,6.00838823139393e-11,4.53144466394711e-10,-1.04407107959237e-09,8.65660353742387e-08,2.88206741465809e-07,-7.19240205662768e-08,-4.38017677717538e-11,-1.63931368504978e-10,3.47851088198667e-07 +6.63,9.35824755275011e-09,-1.05334214441088e-08,-3.32492414503727e-09,-4.20965352854186e-10,-2.04767256622995e-09,-0.0799999947167932,-2.33670505904769e-08,-1.33246420841434e-07,1.34707637405847e-07,5.99971461401271e-11,4.52821807828079e-10,2.33644614072688e-07,6.86137345016193e-10,-8.27246257715432e-10,-2.74303149677498e-10,-4.33680869027467e-11,-1.43548367662203e-10,3.96384314318559e-10 +6.632,-2.00212998180014e-06,-1.45429060351837e-06,1.47051470553161e-06,-4.20895776565011e-10,-2.04707600870435e-09,-0.080000997532978,-2.85868171582378e-09,1.96305471877856e-09,6.96640661823544e-10,5.99104099663283e-11,4.52570272924063e-10,-1.0424855423351e-09,8.65590151625594e-08,2.87922897322198e-07,-7.19365972964996e-08,-2.47198095293419e-11,-1.35308431101063e-10,3.46879643077983e-07 +6.634,9.34681282588681e-09,-1.05255692252337e-08,-3.32213758238997e-09,-4.2072571121432e-10,-2.04586228513826e-09,-0.0799999947209631,-2.30208145298267e-08,-1.32094729252145e-07,1.34419891016661e-07,5.98982669020098e-11,4.52280574103675e-10,2.35032132645e-07,6.81231329868314e-10,-8.13585310124335e-10,-2.82326245676612e-10,-1.64798730184566e-11,-1.47017814563938e-10,3.55618312517485e-10 +6.636,-2.00222206505826e-06,-1.45481898243538e-06,1.47105238509568e-06,-4.20656183497403e-10,-2.04526688640794e-09,-0.0800009965928494,-2.8559567905043e-09,1.95980037753806e-09,6.95511356840838e-10,5.98444904742545e-11,4.51982201665807e-10,-1.04106306908503e-09,8.65401771523869e-08,2.87652714155549e-07,-7.19311763005755e-08,-3.20923843088961e-11,-1.45716772007155e-10,3.45873503435895e-07 +6.638,9.3353889987248e-09,-1.05177300237236e-08,-3.31935553696261e-09,-4.20486333252423e-10,-2.04405435633159e-09,-0.0799999947251274,-2.26746538212172e-08,-1.30944118395523e-07,1.34132166311459e-07,5.97698973647742e-11,4.51697707015646e-10,2.36415626658744e-07,6.82640793009618e-10,-8.16837916859158e-10,-2.84494650098758e-10,-4.55364912477045e-11,-1.55691431993975e-10,4.00721123008345e-10 +6.64,-2.00231276367355e-06,-1.45534275890896e-06,1.47158891376092e-06,-4.20417103907944e-10,-2.04346009557987e-09,-0.0800009956471869,-2.85322622733226e-09,1.95653302587062e-09,6.94373378240443e-10,5.96623445092636e-11,4.51359435937831e-10,-1.03946018459299e-09,8.65310427465474e-08,2.87382964640426e-07,-7.19313931261047e-08,-3.7296554730182e-11,-1.46584133694963e-10,3.44891649974666e-07 +6.642,9.32397609381547e-09,-1.05099038916201e-08,-3.31657804344965e-09,-4.20247683874386e-10,-2.04224891858784e-09,-0.0799999947292852,-2.23285296502309e-08,-1.29794586536961e-07,1.33844440738954e-07,5.96207111458534e-11,4.51111370480866e-10,2.37795193258643e-07,6.79848972098809e-10,-8.16404235773211e-10,-2.71701064386382e-10,-1.99493199704235e-11,-1.30971622411228e-10,3.87710696823163e-10 +6.644,-2.00240207779215e-06,-1.45586193725511e-06,1.47212429152388e-06,-4.20178621063361e-10,-2.04165565009795e-09,-0.0800009946960062,-2.85050683144387e-09,1.95326740892753e-09,6.93286573982897e-10,5.9582547229382e-11,4.50835549448186e-10,-1.0379093418057e-09,8.65145628760239e-08,2.87071798631399e-07,-7.19407172796669e-08,-2.90566182259202e-11,-1.35308431151228e-10,3.43910663822674e-07 +6.646,9.31257406648969e-09,-1.05020908219844e-08,-3.31380489715372e-09,-4.20009353685469e-10,-2.04044557639005e-09,-0.0799999947334368,-2.19824713987269e-08,-1.28646299342435e-07,1.33556677869836e-07,5.95044846729498e-11,4.50570136756262e-10,2.39170835913933e-07,6.80038707795343e-10,-8.23559970328258e-10,-2.68231617511322e-10,-3.8163916474791e-11,-1.54824070255922e-10,3.40005801349009e-10 +6.648,-2.00249000767774e-06,-1.45637652245248e-06,1.47265851823536e-06,-4.19940603124669e-10,-2.03985336955093e-09,-0.0800009937393228,-2.84778667661269e-09,1.94997316904622e-09,6.92213647512852e-10,5.94298915634828e-11,4.50216253167162e-10,-1.03654931860031e-09,8.65175715345923e-08,2.86810939574355e-07,-7.19418014669937e-08,-3.07913416952859e-11,-1.63497687585812e-10,3.42932279808703e-07 +6.65,9.30118291978324e-09,-1.04942909293082e-08,-3.31103604256366e-09,-4.19771634119215e-10,-2.03864471137738e-09,-0.079999994737583,-2.16364011125885e-08,-1.27499055584138e-07,1.33268910663968e-07,5.93813193061686e-11,4.49916146005918e-10,2.40542565033168e-07,6.7686741612468e-10,-8.11850586649081e-10,-2.88614618277287e-10,-3.29597460402672e-11,-1.32272665018263e-10,3.84241249871416e-10 +6.652,-2.00257655328219e-06,-1.45688651867482e-06,1.47319159387801e-06,-4.19703077847444e-10,-2.0380537049669e-09,-0.0800009927771526,-2.84507920694819e-09,1.94672576669962e-09,6.91059189039743e-10,5.92980525793217e-11,4.49687162507089e-10,-1.03501235360082e-09,8.65195231009241e-08,2.86548345822391e-07,-7.1955462429173e-08,-3.81639164747865e-11,-1.34007388544181e-10,3.41969508252917e-07 +6.654,9.28980260295545e-09,-1.04865040262414e-08,-3.30827180580751e-09,-4.19534441908898e-10,-2.03684596272735e-09,-0.0799999947417231,-2.12903230201848e-08,-1.26352862200848e-07,1.32981088814251e-07,5.92286636402695e-11,4.49380116451742e-10,2.4191044306618e-07,6.78249774210432e-10,-8.06212735568078e-10,-2.6888213881471e-10,-2.81892564879061e-11,-1.60028240683787e-10,3.80771803034252e-10 +6.656,-2.00266171457427e-06,-1.45739193012362e-06,1.47372351823327e-06,-4.19466163192883e-10,-2.0362561845011e-09,-0.0800009918095108,-2.84236620785135e-09,1.94350091575735e-09,6.89983660484484e-10,5.91852955533701e-11,4.49047049544354e-10,-1.03348926638868e-09,8.65168125931104e-08,2.86292474095598e-07,-7.19673886382974e-08,-2.64545330053572e-11,-1.5265566586101e-10,3.41039696496558e-07 +6.658,9.27843313812404e-09,-1.04787300225784e-08,-3.30551187116557e-09,-4.19297700726684e-10,-2.03504977452917e-09,-0.079999994745857,-2.09442557698123e-08,-1.25207692304466e-07,1.32693219259698e-07,5.91228455082481e-11,4.48769493788297e-10,2.43274601852166e-07,6.75566373518111e-10,-8.32884108795613e-10,-2.74736830469574e-10,-3.64291929922373e-11,-1.33573707625323e-10,3.98986399417376e-10 +6.66,-2.00274549159735e-06,-1.45789276089284e-06,1.47425429111031e-06,-4.1922967181085e-10,-2.03446110652594e-09,-0.0800009908364124,-2.83966394235728e-09,1.94016937932217e-09,6.88884713162606e-10,5.90395787814012e-11,4.48512754713853e-10,-1.03189332079101e-09,8.65165957538763e-08,2.86022724602162e-07,-7.1995794742611e-08,-3.51281503885374e-11,-1.29236898960299e-10,3.4011422150878e-07 +6.662,9.26707448235461e-09,-1.04709693450611e-08,-3.30275633231292e-09,-4.19061542411558e-10,-2.03325572351032e-09,-0.0799999947499846,-2.05981893867969e-08,-1.24063601406057e-07,1.32405236080727e-07,5.89823329066939e-11,4.48252546192456e-10,2.44635058738201e-07,6.73479284651335e-10,-7.83227649511252e-10,-2.73002107070086e-10,-3.16587034398534e-11,-1.50920942434879e-10,3.42607886562739e-10 +6.664,-2.0028278843549e-06,-1.45838901529846e-06,1.47478391205463e-06,-4.18993742479223e-10,-2.03266809634117e-09,-0.0800009898578721,-2.83697002521867e-09,1.93703646872412e-09,6.87792704734325e-10,5.89129439676418e-11,4.47909070944113e-10,-1.03052288924476e-09,8.65354066626747e-08,2.85786585375754e-07,-7.20001315586237e-08,-2.81892564878931e-11,-1.57426155469745e-10,3.39155786774569e-07 +6.666,9.25572660225374e-09,-1.04632211991862e-08,-3.30000516149398e-09,-4.18825890635688e-10,-2.03146408722654e-09,-0.0799999947541067,-2.02520477601461e-08,-1.22920455064554e-07,1.32117235554493e-07,5.88695758807423e-11,4.47622841570577e-10,2.45991681885299e-07,6.75376638137983e-10,-8.24861012719449e-10,-2.77338915683633e-10,-2.64545330053766e-11,-1.38777878053275e-10,3.86843335085606e-10 +6.668,-2.00290889254594e-06,-1.45888069711872e-06,1.47531238099685e-06,-4.187582641757e-10,-2.03087760497489e-09,-0.0800009888739054,-2.83426851866612e-09,1.93373702467325e-09,6.86683349071591e-10,5.88071258356202e-11,4.473539594319e-10,-1.02897551590442e-09,8.65225588647009e-08,2.85532882053804e-07,-7.20361270560887e-08,-3.03576608263307e-11,-1.4268100587428e-10,3.38326588980444e-07 +6.67,9.24438952817908e-09,-1.04554862510875e-08,-3.29725842809769e-09,-4.18590662132345e-10,-2.02967467138881e-09,-0.0799999947582226,-1.99059575246874e-08,-1.21778323536339e-07,1.31829091046268e-07,5.8748145237437e-11,4.4705211754708e-10,2.47344988241221e-07,6.72882973456158e-10,-8.07730618609013e-10,-2.68665298380014e-10,-3.773023560576e-11,-1.38777878102975e-10,3.85108611723969e-10 +6.672,-2.00298851637604e-06,-1.45936781041286e-06,1.47583969736104e-06,-4.18523271594751e-10,-2.0290893965047e-09,-0.0800009878845255,-2.83157698677229e-09,1.93050610219881e-09,6.85608687878071e-10,5.86562048931972e-11,4.46798847919488e-10,-1.02743508145752e-09,8.65306361730777e-08,2.85308452217562e-07,-7.20326576237652e-08,-4.42354486406607e-11,-1.37476835495949e-10,3.37297897931639e-07 +6.674,9.23306322023199e-09,-1.04477642266787e-08,-3.29451599334618e-09,-4.18356037312773e-10,-2.02788747599714e-09,-0.0799999947623324,-1.9559834979995e-08,-1.20637089727469e-07,1.31540960415773e-07,5.85712034428744e-11,4.46502210205096e-10,2.48694179832948e-07,6.68410639180178e-10,-8.00791724490687e-10,-2.77555756118234e-10,-2.86229373503603e-11,-1.5135462325417e-10,3.70363462064035e-10 +6.676,-2.00306675571596e-06,-1.45985035877177e-06,1.4763658612027e-06,-4.18288986780979e-10,-2.02730338766388e-09,-0.0800009868897487,-2.82890334421557e-09,1.92730293530085e-09,6.84498464853598e-10,5.85417131437958e-11,4.46193429426472e-10,-1.02595362760927e-09,8.65336448319526e-08,2.8505279733196e-07,-7.20860003560627e-08,-1.51788304115482e-11,-1.34441069363441e-10,3.3647650639346e-07 +6.678,9.22174760685512e-09,-1.04400550149375e-08,-3.29177799948677e-09,-4.18121870460197e-10,-2.02610270227943e-09,-0.0799999947664362,-1.92137004006672e-08,-1.19496878538141e-07,1.31252616414349e-07,5.85104881212282e-11,4.45964445927643e-10,2.50040085858521e-07,6.70497728676379e-10,-7.98406479925326e-10,-2.62160085344997e-10,-3.81639164747413e-11,-1.44415729399849e-10,3.50414142204222e-10 +6.68,-2.00314361051756e-06,-1.46032834628593e-06,1.47689087166836e-06,-4.18054944828494e-10,-2.02551952988017e-09,-0.0800009858895884,-2.82622135330087e-09,1.92410930938115e-09,6.83449824512218e-10,5.83890574778968e-11,4.45615766508872e-10,-1.02455197104045e-09,8.65247543762531e-08,2.84806466611572e-07,-7.20721225828105e-08,-4.55364912476302e-11,-1.46150452875768e-10,3.35493785516491e-07 +6.682,9.21044272144192e-09,-1.04323585777e-08,-3.28904420018872e-09,-4.17888314230286e-10,-2.0243202392134e-09,-0.0799999947705344,-1.88676013831622e-08,-1.18357652671695e-07,1.30964327924018e-07,5.83283421562376e-11,4.4537984411614e-10,2.51382061000588e-07,6.71066934502974e-10,-8.15536874036799e-10,-2.73435787862893e-10,-2.29850860534493e-11,-1.32706345887486e-10,3.76434994230108e-10 +6.684,-2.0032190809231e-06,-1.46080177689661e-06,1.47741472898005e-06,-4.17821631459869e-10,-2.02373801050371e-09,-0.0800009848840602,-2.82353708556286e-09,1.920847161885e-09,6.82356081360766e-10,5.8297117133683e-11,4.45084941125322e-10,-1.02304623106353e-09,-7.00256256247036e-05,-4.83950724546911e-05,5.45977555700876e-05,-1.82145964945241e-11,-1.35308431101494e-10,-3.79302370762058e-05 +6.686,9.19914857309967e-09,-1.04246751890524e-08,-3.28631477586327e-09,-4.17655125761751e-10,-2.02253989944889e-09,-0.0799999947746266,-2.98970103881946e-07,-3.11937942490438e-07,3.49355350204344e-07,5.82554837702595e-11,4.44838610391734e-10,9.96611126957812e-08,4.78268683494368e-10,-7.4809949912158e-10,-2.82109405318603e-10,-8.23993651412515e-12,-1.09721259880244e-10,3.63424568273946e-10 +6.688,-2.00441496133862e-06,-1.46204952866658e-06,1.47881215038087e-06,-4.17588609524788e-10,-2.02195865606214e-09,-0.0800009844854157,-2.82162401082888e-09,1.91785476388851e-09,6.81227643739492e-10,5.82641573876265e-11,4.44646056085801e-10,-1.02159253279044e-09,0.000130440328839879,0.000104632584714542,-8.39117189361394e-05,1.821459649452e-11,-1.2359904768802e-10,0.000115576269041319 +6.69,9.18786207705635e-09,-1.04170037699969e-08,-3.28358986528832e-09,-4.17422069132201e-10,-2.02076131522455e-09,-0.0799999947787129,2.2279121147763e-07,1.06592396367776e-07,1.37084744597489e-08,5.83283421562376e-11,4.44344214200981e-10,5.61966188861111e-07,6.36643515526873e-10,-8.2139156576853e-10,-3.74700270773182e-10,3.33934269157874e-11,-1.50920942385292e-10,3.92914867252041e-10 +6.692,-2.00352379649271e-06,-1.4616231590811e-06,1.47886698427871e-06,-4.17355296156163e-10,-2.02018127920534e-09,-0.0800009822375509,-2.81907743676677e-09,1.91456919762544e-09,6.79728842656399e-10,5.83977310952897e-11,4.4404237231626e-10,-1.02002087332143e-09,-5.38944994318483e-05,-3.88670133404127e-05,3.04070989307839e-05,4.16333634266888e-11,-1.40078920660495e-10,-4.24161226974865e-05 +6.694,9.17658576730929e-09,-1.04093454932064e-08,-3.28087094991769e-09,-4.17188478207819e-10,-2.01898514573529e-09,-0.079999994782793,7.21321375026031e-09,-4.88756569938574e-08,1.35336870182871e-07,5.84948756099444e-11,4.4378389851834e-10,3.92301698071183e-07,7.40374558692561e-10,-8.8384161111647e-10,-4.43872369453303e-10,3.90312782062351e-11,-1.43548367661731e-10,4.01588484745234e-10 +6.696,-2.00349494363771e-06,-1.46181866170908e-06,1.47940833175944e-06,-4.17121316653724e-10,-2.01840614361126e-09,-0.0800009806683442,-2.816115938532e-09,1.91103383118097e-09,6.77953353178586e-10,5.85538562081146e-11,4.43468178845613e-10,-1.01841451938245e-09,1.96305837253962e-05,3.98587326339199e-06,-2.68945163448707e-05,4.46691295031472e-11,-1.74773390229252e-10,-3.09851606178506e-05 +6.698,9.16532130355516e-09,-1.04017013578817e-08,-3.27815913650498e-09,-4.16954262782987e-10,-2.0172112730199e-09,-0.0799999947868667,8.57355486518539e-08,-3.29321639402876e-08,2.77588048033763e-08,5.8673552127957e-11,4.43084804957422e-10,2.68361055599767e-07,7.52382097439998e-10,-8.56086035288476e-10,-4.56449114578761e-10,4.94396190685905e-11,-1.98192157105732e-10,3.99853761156102e-10 +6.7,-2.0031520014431e-06,-1.46195039036484e-06,1.47951936697865e-06,-4.16886622445212e-10,-2.01663380439143e-09,-0.0800009795948999,-2.81310641014224e-09,1.90760948703982e-09,6.76127556720271e-10,5.8751614684389e-11,4.4267541021719e-10,-1.01681510433782e-09,-2.36159183300473e-05,-2.72797554944854e-05,9.4339367047483e-06,3.55618312607887e-11,-1.5135462325441e-10,-2.78161296079961e-05 +6.702,9.15406887791459e-09,-1.03940709199335e-08,-3.2754546262781e-09,-4.16719256324249e-10,-2.01544057137903e-09,-0.0799999947909339,-8.72812466832475e-09,-1.42051185918217e-07,6.54945516223654e-08,5.88157994530001e-11,4.42479386464405e-10,1.57096537167795e-07,7.27635183165441e-10,-8.40256683782134e-10,-4.37367156418182e-10,1.8214596494495e-11,-1.32272665067803e-10,3.98986399531113e-10 +6.704,-2.00318691394178e-06,-1.46251859510851e-06,1.47978134518514e-06,-4.166513592474e-10,-2.01486388684557e-09,-0.0800009789665138,-2.81019586940958e-09,1.90424846030469e-09,6.74378088094598e-10,5.88244730703669e-11,4.42146319556919e-10,-1.0152191587397e-09,-4.5747111068865e-07,-5.75733341208943e-06,-8.52545031102662e-07,9.54097911460465e-12,-1.83013326740077e-10,-1.21472302702712e-05 +6.706,9.14282809443695e-09,-1.03864539260923e-08,-3.27275711392572e-09,-4.16483958431968e-10,-2.01367198610081e-09,-0.0799999947949948,-1.05580091110796e-08,-1.65080519566578e-07,6.20843714979544e-08,5.88539633694585e-11,4.41747333157445e-10,1.08507616086705e-07,6.91639670726814e-10,-7.89516021898287e-10,-3.69496100345614e-10,7.37257477616732e-12,-1.83013326691015e-10,3.58220397732871e-10 +6.708,-2.00322914597822e-06,-1.46317891718678e-06,1.48002968267114e-06,-4.16415943393922e-10,-2.01309689751294e-09,-0.0800009785324833,-2.80742931072667e-09,1.9010903962171e-09,6.72900103693216e-10,5.88539633694716e-11,4.41414266250155e-10,-1.01378627714877e-09,-8.37685319331101e-06,-6.28510373087643e-06,1.05214450433407e-05,-6.07153216265278e-12,-1.69569219752246e-10,5.16784531840485e-07 +6.71,9.13159837719404e-09,-1.03788495645074e-08,-3.27006551351094e-09,-4.1624854257849e-10,-2.01190632903581e-09,-0.07999999479905,-4.40654218843199e-08,-1.90220934490081e-07,1.04170151671313e-07,5.88296772408079e-11,4.41069056278436e-10,1.10574754214067e-07,6.57162041953669e-10,-7.66747776487299e-10,-3.17454396141117e-10,-1.90819582390137e-11,-1.5005358069649e-10,3.94649590841015e-10 +6.712,-2.00340540766576e-06,-1.46393980092474e-06,1.48044636327782e-06,-4.16180624684959e-10,-2.01133262128783e-09,-0.0800009780901843,-2.80480066255886e-09,1.89802340511115e-09,6.71630286108651e-10,5.87776355365156e-11,4.40814051927369e-10,-1.0122076787854e-09,-2.08519237030892e-07,3.13449895380666e-06,7.16223521462316e-06,-3.25260651778217e-11,-1.15359111176924e-10,8.63166916414164e-06 +6.714,9.12037917454381e-09,-1.0371257470887e-08,-3.26737899236651e-09,-4.16013432036344e-10,-2.0101430728281e-09,-0.0799999948030988,-4.48994988324436e-08,-1.77682938674853e-07,1.32819092529809e-07,5.86995729800966e-11,4.40607619833728e-10,1.45101430870637e-07,6.48867895022576e-10,-7.45714254130084e-10,-2.5153490397936e-10,-3.72965547302369e-11,-1.22298005031898e-10,3.05311331715739e-10 +6.716,-2.00358500566109e-06,-1.46465053267944e-06,1.48097763964794e-06,-4.15945826393038e-10,-2.0095701908085e-09,-0.0800009775097786,-2.80220519097877e-09,1.89504054809463e-09,6.70624146492734e-10,5.86284493175946e-11,4.40324859907241e-10,-1.01098643345854e-09,-8.36345505656864e-07,4.28428646725095e-06,7.48099629120161e-06,-4.55364912411424e-11,-1.56558793682483e-10,1.22321579948511e-05 +6.718,9.10917035377989e-09,-1.03636773086946e-08,-3.26469649578054e-09,-4.15778918239074e-10,-2.00838177338847e-09,-0.0799999948071427,-4.82448808550707e-08,-1.60545792805851e-07,1.62743077694612e-07,5.85174270151321e-11,4.39981384658998e-10,1.94030062850036e-07,6.30897244324894e-10,-7.29451221753483e-10,-1.96457433691592e-10,-5.76795555794857e-11,-1.53523027648392e-10,3.63424568273223e-10 +6.72,-2.00377798518451e-06,-1.46529271585066e-06,1.48162861195872e-06,-4.15711756684978e-10,-2.00781026526986e-09,-0.0800009767336583,-2.79968160200147e-09,1.89212274320761e-09,6.69838316757967e-10,5.83977310952767e-11,4.39710767796648e-10,-1.00953273518545e-09,2.07859196435039e-06,6.57378817180887e-06,3.35099114254632e-06,-5.55111512344957e-11,-1.22731685949747e-10,1.26498438460107e-05 +6.722,9.09797162737189e-09,-1.03561088177218e-08,-3.26201714251351e-09,-4.15545327314693e-10,-2.00662293031728e-09,-0.0799999948111809,-3.99305129976682e-08,-1.34250640118612e-07,1.76147042264798e-07,5.82953824101941e-11,4.39490457915199e-10,2.44629438234085e-07,6.34204060639918e-10,-7.49400541516948e-10,-1.63714528008121e-10,-6.41847686078987e-11,-1.27068494590885e-10,3.20923842999684e-10 +6.724,-2.0039377072365e-06,-1.46582971841114e-06,1.48233320012778e-06,-4.15478575155337e-10,-2.0060523034382e-09,-0.0800009757551406,-2.79714478575891e-09,1.88912514104154e-09,6.69183458645935e-10,5.81409920208451e-11,4.39202493818284e-10,-1.00824903981345e-09,2.20022584136205e-06,6.0169454054537e-06,5.81221485880719e-07,-7.41594285947887e-11,-1.2923689893591e-10,1.10806468167795e-05 +6.726,9.08678304822885e-09,-1.03485523171576e-08,-3.25934040867892e-09,-4.15312763346609e-10,-2.00486612034201e-09,-0.0799999948152139,-3.11296096322209e-08,-1.101828584968e-07,1.78471928208321e-07,5.7998744695815e-11,4.38973510319455e-10,2.88952025501198e-07,6.36589305730134e-10,-7.49400541726805e-10,-1.45933612453711e-10,-7.24247051252595e-11,-1.2186432421176e-10,4.05057931696567e-10 +6.728,-2.00406222567503e-06,-1.46627044984513e-06,1.48304708784061e-06,-4.15246580176554e-10,-2.00429640939692e-09,-0.0800009745993325,-2.79459842853599e-09,1.88612753887464e-09,6.6859972419612e-10,5.78512932003441e-11,4.38715036521437e-10,-1.00662880808666e-09,2.7692322176695e-06,5.38903969192974e-06,-2.32874743795015e-06,-6.98226199112705e-11,-1.14058068569812e-10,8.40185386539611e-06 +6.73,9.07560465451471e-09,-1.03410078070021e-08,-3.25666600978214e-09,-4.15081358173808e-10,-2.00311126019592e-09,-0.0799999948192404,-2.00526807615417e-08,-8.86266997290786e-08,1.69156938456519e-07,5.77194542161698e-11,4.38517278045176e-10,3.22559440962786e-07,6.43501094269394e-10,-7.7477087235352e-10,-1.42247324992963e-10,-7.41594285947965e-11,-1.15792791997089e-10,3.40005801235581e-10 +6.732,-2.00414243639807e-06,-1.46662495664404e-06,1.48372371559444e-06,-4.15015702359689e-10,-2.00254234028474e-09,-0.0800009733090947,-2.79202442415891e-09,1.88302845538522e-09,6.68030734896148e-10,5.75546554859648e-11,4.38251865353449e-10,-1.00526878488172e-09,2.25960328464656e-06,3.85047289191568e-06,-3.73853877542161e-06,-8.02309607607405e-11,-1.19262238949094e-10,5.23632612966193e-06 +6.734,9.06443655681807e-09,-1.03334756931805e-08,-3.25399388684255e-09,-4.14851139551864e-10,-2.00135825273451e-09,-0.0799999948232614,-1.10142676229564e-08,-7.32248081614176e-08,1.54202783354835e-07,5.73985303731269e-11,4.3804022908938e-10,3.43504745481431e-07,6.48434214464229e-10,-7.84311851680532e-10,-1.53956708530027e-10,-8.50014503260588e-11,-1.13190706831823e-10,3.37403716133257e-10 +6.736,-2.00418649346857e-06,-1.46691785587669e-06,1.48434052672786e-06,-4.14786108238197e-10,-2.00079017936838e-09,-0.0800009719350757,-2.78943068730105e-09,1.8798912079785e-09,6.67414908062028e-10,5.72146496846606e-11,4.37799102526122e-10,-1.00391917001719e-09,1.66821851471678e-06,2.27960163766772e-06,-4.21023545888673e-06,-8.02309607670946e-11,-1.40512601578404e-10,2.06426282315641e-06 +6.738,9.05327883406887e-09,-1.03259561283486e-08,-3.25132422721031e-09,-4.14622280953125e-10,-1.9996070563244e-09,-0.0799999948272771,-4.34139356408854e-09,-6.41064016107457e-08,1.37361841519286e-07,5.70776065300585e-11,4.37478178683066e-10,3.51761796774058e-07,6.58788344901645e-10,-8.08597980135271e-10,-1.59811400187329e-10,-6.59194920839415e-11,-1.4571677195775e-10,3.90312782039058e-10 +6.74,-2.00420385904282e-06,-1.46717428148313e-06,1.48488997409393e-06,-4.14557797812076e-10,-1.99904026665365e-09,-0.0800009705280285,-2.78679553392144e-09,1.87665681605796e-09,6.66775662461279e-10,5.69509717163249e-11,4.37216235438291e-10,-1.00235791888903e-09,7.79394046046822e-07,6.23969842805014e-07,-3.65292778663912e-06,-6.76542155599428e-11,-1.16660153735181e-10,-7.34011809647216e-07 +6.742,9.04213165193318e-09,-1.03184495010844e-08,-3.24865712456046e-09,-4.1439447706626e-10,-1.99785819138265e-09,-0.0799999948312866,-1.22381737990159e-09,-6.16105222395259e-08,1.22750130372731e-07,5.68069896678188e-11,4.37011538068125e-10,3.48825749535469e-07,6.60360438361261e-10,-8.01659086439992e-10,-1.78676518062621e-10,-7.06899816492163e-11,-1.25333771163585e-10,3.59087759582867e-10 +6.744,-2.00420875431234e-06,-1.46742072357209e-06,1.48538097461542e-06,-4.14330569853405e-10,-1.99729222050138e-09,-0.0800009691327255,-2.784154092168e-09,1.8734501797122e-09,6.66060956389028e-10,5.6668211789728e-11,4.36714900353636e-10,-1.0009215678507e-09,7.61137030206932e-10,-7.48926094747713e-07,-2.57486523422903e-06,-6.46184494832744e-11,-1.45283091137288e-10,-2.88641853476086e-06 +6.746,9.03099503556451e-09,-1.03109557003656e-08,-3.2459928807349e-09,-4.14167804219101e-10,-1.99611133178124e-09,-0.0799999948352902,-1.22077283178077e-09,-6.46062266185171e-08,1.12450669435814e-07,5.65485158698856e-11,4.36430405703576e-10,3.37280075396424e-07,6.64995402339434e-10,-8.14018990998111e-10,-2.05998412735258e-10,-6.76542155599504e-11,-1.27068494591066e-10,3.71230823803471e-10 +6.748,-2.00421363740367e-06,-1.46767914847856e-06,1.48583077729317e-06,-4.14104375789925e-10,-1.99554649887856e-09,-0.0800009677836052,-2.78149411055864e-09,1.87019410374821e-09,6.65236962738087e-10,5.63975949274882e-11,4.36206626375272e-10,-9.99436644555484e-10,-6.29836162608364e-07,-1.76719251212107e-06,-1.2626891719654e-06,-6.59194920839949e-11,-1.28369537198077e-10,-4.24773497624152e-06 +6.75,9.01986905912228e-09,-1.03034749239506e-08,-3.24333193288395e-09,-4.13942213839391e-10,-1.99436650527574e-09,-0.079999994839288,-3.74011748221395e-09,-7.16749966670006e-08,1.07399912747953e-07,5.62848379015497e-11,4.35916927554784e-10,3.2028913549146e-07,6.63341994335389e-10,-8.04911692957035e-10,-2.23128807134454e-10,-5.55111512343885e-11,-1.52221985041177e-10,3.7643499434243e-10 +6.752,-2.0042285978736e-06,-1.46796584846523e-06,1.48626037694416e-06,-4.13879236438319e-10,-1.99380283116835e-09,-0.0800009665024487,-2.7788407425813e-09,1.86697445697638e-09,6.6434444750955e-10,5.61755503225507e-11,4.35597738435107e-10,-9.97930904578114e-10,-9.78575808709751e-07,-2.31958658010006e-06,-6.27609943241826e-08,-4.25007251645467e-11,-1.5222198504113e-10,-4.80102329421532e-06 +6.754,9.00875369615195e-09,-1.02960070261227e-08,-3.24067455509391e-09,-4.13717511638101e-10,-1.99262411432199e-09,-0.0799999948432797,-7.65442071705339e-09,-8.09533429874019e-08,1.07148868770656e-07,5.61148350008915e-11,4.35308039614619e-10,3.01085042314597e-07,6.6101095935586e-10,-8.01225405363197e-10,-2.32886626612999e-10,-4.38017677652962e-11,-1.31405303281059e-10,3.47812056877941e-10 +6.756,-2.00425921555647e-06,-1.46828966183718e-06,1.48668897241924e-06,-4.13654777098316e-10,-1.99206159900989e-09,-0.0800009652981085,-2.77619669874388e-09,1.86376955535493e-09,6.63412901003097e-10,5.60003432514895e-11,4.35072117221983e-10,-9.96539656350602e-10,-1.06259342687733e-06,-2.43307414147191e-06,8.42164012144237e-07,-5.55111512281539e-11,-1.07119174617436e-10,-4.63717085562129e-06 +6.758,8.99764890935698e-09,-1.02885519479012e-08,-3.2380209034899e-09,-4.13493510265095e-10,-1.99088382585311e-09,-0.0799999948472659,-1.19047944245623e-08,-9.06856395532885e-08,1.10517524819232e-07,5.58927903959789e-11,4.3487956291615e-10,2.82536358892114e-07,6.52743918098929e-10,-7.84962372982938e-10,-2.43294967542584e-10,-4.33680869025285e-11,-1.20996962473539e-10,3.76434994342275e-10 +6.76,-2.00430683473416e-06,-1.46865240439539e-06,1.48713104251852e-06,-4.13431205936732e-10,-1.99032208075822e-09,-0.0800009641679631,-2.77358572307148e-09,1.860629705863e-09,6.62439721132927e-10,5.58268709038794e-11,4.34588129372089e-10,-9.95033916373233e-10,-9.10595112767027e-07,-2.16647316405586e-06,1.34918725496669e-06,-3.42607886536384e-11,-1.54390389386036e-10,-3.91961203079309e-06 +6.762,8.98655456646469e-09,-1.02811094290778e-08,-3.23537114460537e-09,-4.13270202781479e-10,-1.98914547333562e-09,-0.079999994851246,-1.55471748756308e-08,-9.93515322095129e-08,1.159142738391e-07,5.57557472413643e-11,4.34262001358605e-10,2.6685791076894e-07,6.5122603474949e-10,-7.68482499754449e-10,-2.49149659200383e-10,-4.20670442893374e-11,-1.60461921503732e-10,3.42607886450218e-10 +6.764,-2.00436902343367e-06,-1.46904981052423e-06,1.48759469961388e-06,-4.13208182947766e-10,-1.98858503275279e-09,-0.0800009631005315,-2.77098081893248e-09,1.85755577586398e-09,6.61443122496126e-10,5.5658602726722e-11,4.33946281686074e-10,-9.93663484827432e-10,-6.05443836342684e-07,-1.63327793130973e-06,1.46842412362246e-06,-3.90312782063902e-11,-1.33573707626137e-10,-2.84616514382966e-06 +6.766,8.97547064318896e-09,-1.02736792059743e-08,-3.23272537211539e-09,-4.13047568370573e-10,-1.98740968820887e-09,-0.0799999948552207,-1.79689502210012e-08,-1.05884643934751e-07,1.21787970333589e-07,5.55996221285388e-11,4.33727706528101e-10,2.55473250193622e-07,6.44775032130953e-10,-7.71735106478303e-10,-2.55004351005325e-10,-2.73218947497251e-11,-1.2490009029441e-10,3.54750950892407e-10 +6.768,-2.00444089923455e-06,-1.46947334909997e-06,1.48808185149521e-06,-4.12985784459252e-10,-1.98685012192668e-09,-0.0800009620786385,-2.76840171880396e-09,1.85446883543806e-09,6.60423105092104e-10,5.55493151477231e-11,4.33446681324896e-10,-9.92244481023863e-10,-2.2991127773194e-07,-9.53315117812617e-07,1.27194110278301e-06,-2.68882138807217e-11,-1.50053580696043e-10,-1.61485581852409e-06 +6.77,8.96439703631374e-09,-1.02662613306326e-08,-3.23008367969502e-09,-4.12825371109982e-10,-1.98567590148357e-09,-0.0799999948591896,-1.88885953319291e-08,-1.09697904406002e-07,1.26875734744722e-07,5.54920692730159e-11,4.33127492205317e-10,2.49013826919525e-07,6.42443997152565e-10,-7.58290999333396e-10,-2.46981254855542e-10,-2.90566182195273e-11,-1.4831885717196e-10,3.81639164659796e-10 +6.772,-2.00451645361588e-06,-1.46991214071759e-06,1.48858935443419e-06,-4.1276381618216e-10,-1.98511761195785e-09,-0.0800009610825831,-2.76583194281535e-09,1.85143567144073e-09,6.59435180072682e-10,5.5433088674845e-11,4.32853405896209e-10,-9.90717924365223e-10,1.34972870552788e-07,-2.44521200168973e-07,8.73362797020341e-07,-3.16587034335025e-11,-1.14491749390442e-10,-3.9990146609451e-07 +6.774,8.95333370854248e-09,-1.02588555879468e-08,-3.22744593897473e-09,-4.12603638755282e-10,-1.98394448785999e-09,-0.0799999948631525,-1.8348703849718e-08,-1.10675989206678e-07,1.30369185932803e-07,5.53654344592819e-11,4.32669525207755e-10,2.47414221055147e-07,6.38540869638954e-10,-7.55905754759651e-10,-2.75170511413428e-10,-3.03576608326719e-11,-1.20129600735421e-10,3.30464822228574e-10 +6.776,-2.00458984843128e-06,-1.47035484467442e-06,1.48911083117792e-06,-4.12542354444323e-10,-1.98338693385702e-09,-0.0800009600929263,-2.76327777933679e-09,1.84841204842169e-09,6.58334498027028e-10,5.53116580315143e-11,4.32372887493267e-10,-9.89396065076309e-10,4.30295610341864e-07,3.97967899959886e-07,3.91966190400499e-07,-1.9081958238814e-11,-1.50053580695978e-10,6.63693058830503e-07 +6.778,8.94228059742513e-09,-1.02514619397531e-08,-3.22481260098262e-09,-4.12382392123156e-10,-1.98221499631002e-09,-0.0799999948671101,-1.66275214083504e-08,-1.09084117606838e-07,1.31937050694405e-07,5.52891066263266e-11,4.32069310884971e-10,2.5006899329047e-07,6.38784814820737e-10,-7.35522753711565e-10,-2.46764414421148e-10,-3.03576608265227e-11,-1.46584133696036e-10,3.55618312520353e-10 +6.78,-2.00465635851691e-06,-1.47079118114485e-06,1.4896385793807e-06,-4.12321198017818e-10,-1.98165865661348e-09,-0.0800009590926503,-2.76072264007751e-09,1.84546995740685e-09,6.57347440369344e-10,5.51902273882082e-11,4.31786550958483e-10,-9.87973591826228e-10,6.20613152881635e-07,9.06344443934698e-07,-6.76494450662251e-08,-4.20670442893791e-11,-1.29670579805318e-10,1.48618183733219e-06 +6.782,8.93123770686483e-09,-1.02440800599235e-08,-3.22218321122114e-09,-4.12161631213603e-10,-1.98048785010618e-09,-0.079999994871062,-1.41450687968241e-08,-1.054587398311e-07,1.3166645291414e-07,5.51208384491691e-11,4.3155062856575e-10,2.56013720639798e-07,6.3740245735743e-10,-7.59158361276797e-10,-2.73218947502825e-10,-1.69135538938389e-11,-1.31838984198214e-10,3.72965547389855e-10 +6.784,-2.0047129387921e-06,-1.47121301610417e-06,1.49016524519235e-06,-4.12100714664021e-10,-1.97993245409922e-09,-0.0800009580685954,-2.75817303024808e-09,1.84243332396174e-09,6.56254564579333e-10,5.51225731726329e-11,4.3125919502169e-10,-9.86481729636669e-10,6.96011960089482e-07,1.24420330809563e-06,-4.31063604957033e-07,-1.12757025969063e-11,-1.33573707674136e-10,2.02271359382643e-06 +6.786,8.92020501474383e-09,-1.02367103266277e-08,-3.21955819296282e-09,-4.11941140920913e-10,-1.9787628133261e-09,-0.0799999948750079,-1.13610209564659e-08,-1.00481926598717e-07,1.29942198494312e-07,5.50757356387815e-11,4.31016333735053e-10,2.64104575015104e-07,6.36643515530389e-10,-7.54821552382115e-10,-2.45463371814295e-10,-3.12250225645223e-11,-1.23165366770403e-10,3.55618312520457e-10 +6.788,-2.00475838287592e-06,-1.47161494381057e-06,1.49068501398633e-06,-4.11880411721466e-10,-1.97820838876428e-09,-0.0800009570121771,-2.75562645618596e-09,1.83941403775221e-09,6.55272711092075e-10,5.49976730823747e-11,4.30766533554608e-10,-9.85059256386587e-10,6.66785745540925e-07,1.40336223544175e-06,-6.58473059057678e-07,-3.16587034335268e-11,-1.34007388495312e-10,2.26885610994781e-06 +6.79,8.90918250891909e-09,-1.02293526704766e-08,-3.21693710211846e-09,-4.11721150228583e-10,-1.97703974719188e-09,-0.0799999948789482,-8.69387797430245e-09,-9.48684776569502e-08,1.27308306258081e-07,5.49491008250474e-11,4.30480304181072e-10,2.73179999454895e-07,6.39597966756507e-10,-7.49183701289619e-10,-2.62810606646859e-10,-3.03576608326461e-11,-1.51788304171885e-10,3.19189119634413e-10 +6.792,-2.00479315838782e-06,-1.4719944177212e-06,1.49119424721136e-06,-4.11660615318166e-10,-1.97648646754756e-09,-0.0800009559194571,-2.75306806431893e-09,1.83641730294705e-09,6.54221468665488e-10,5.48762424390442e-11,4.30159380337921e-10,-9.83782499908049e-10,5.57553162710428e-07,1.39897663766426e-06,-7.42732915108534e-07,-1.43114686798557e-11,-1.40946282446985e-10,2.25205271096694e-06 +6.794,8.89817023666181e-09,-1.02220070012649e-08,-3.21432021624379e-09,-4.11501645258827e-10,-1.97531910967053e-09,-0.0799999948828833,-6.46366532346049e-09,-8.92725711062925e-08,1.24337374597647e-07,5.4891854950328e-11,4.29916519051284e-10,2.82188210298763e-07,6.3970638666797e-10,-7.62627808024372e-10,-2.61509563967182e-10,-1.47451495427574e-11,-1.11455983307638e-10,3.97251675944102e-10 +6.796,-2.00481901304912e-06,-1.47235150800562e-06,1.49169159670975e-06,-4.11441047898364e-10,-1.97476680147135e-09,-0.0800009547907043,-2.75050923877226e-09,1.83336679171495e-09,6.53175430409619e-10,5.48172618408731e-11,4.2971355640469e-10,-9.82193493204272e-10,3.99801556877778e-07,1.26272104751056e-06,-7.02011365698494e-07,-4.59701721103483e-11,-1.3053794154341e-10,2.02285584118224e-06 +6.798,8.88716819970672e-09,-1.0214673534098e-08,-3.21170751452216e-09,-4.11282376211464e-10,-1.97360025544491e-09,-0.0799999948868121,-4.86445909594955e-09,-8.42216869162508e-08,1.21529329134853e-07,5.47079742618866e-11,4.2939436728511e-10,2.90279633663491e-07,6.37294037139665e-10,-7.65880414745485e-10,-2.52402265790894e-10,-4.1199682557491e-11,-1.608956024207e-10,3.56485674367764e-10 +6.8,-2.0048384708855e-06,-1.47268839475329e-06,1.49217771402629e-06,-4.11222216001317e-10,-1.97304922400221e-09,-0.0800009536295857,-2.7479600626237e-09,1.83030327005597e-09,6.52165821346456e-10,5.46524631106432e-11,4.29069973995007e-10,-9.80767550506802e-10,2.25631633602811e-07,1.03543584297372e-06,-5.7027321233967e-07,-2.90566182256407e-11,-1.27935856377095e-10,1.64490469854467e-06 +6.802,8.87617635945623e-09,-1.02073523210178e-08,-3.20909885123677e-09,-4.11063766359021e-10,-1.97188397554893e-09,-0.0799999948907351,-3.96193256153821e-09,-8.00799435443555e-08,1.19248236285494e-07,5.4591747788984e-11,4.28882623859602e-10,2.96859252457671e-07,3.39958909545967e-08,-2.56014827392331e-08,-1.30002345693685e-08,2.26554885962874e-09,-5.68815827770411e-09,1.53332208041045e-08 +6.804,-2.00485431861575e-06,-1.47300871452746e-06,1.49265470697144e-06,-4.11003849010161e-10,-1.97133369350677e-09,-0.0800009524421487,-2.6119764988053e-09,1.72789733909903e-09,6.00164883068976e-10,6.37146585491592e-11,4.06317340884188e-10,-9.19434667290377e-10,-0.0211057446167676,-0.0133881260953815,0.0164544467348393,3.65723076823194e-09,-1.09595492403311e-08,-0.0209629166629578 +6.806,8.86572845346101e-09,-1.02004407316614e-08,-3.20669819170449e-09,-4.10808907724824e-10,-1.97025870618539e-09,-0.0799999948944129,-8.44269403996228e-05,-5.36325843250644e-05,6.59370351756356e-05,6.92206708619102e-11,3.85044426898282e-10,-8.35548073993645e-05,-1.7564590190152e-08,1.60366511735717e-08,2.4906292306004e-09,6.64399091295578e-10,3.42260941807968e-09,-1.09816669646201e-08 +6.808,-2.3425620802142e-06,-1.6875390518277e-06,1.75640284767395e-06,-4.10726966326713e-10,-1.96979351579918e-09,-0.0800012866613783,-2.6822348595659e-09,1.79204394379331e-09,6.10127399991376e-10,6.63722549143412e-11,4.20007778556506e-10,-9.63361335148852e-10,0.0459198460586142,0.0289768238472907,-0.0372809358150117,-1.94635974004939e-09,1.4466292747015e-08,0.0346101053840638 +6.81,8.85499951402274e-09,-1.01932725558862e-08,-3.20425768210453e-09,-4.10543418705167e-10,-1.96857867507116e-09,-0.0799999948982663,9.92524438348546e-05,6.22747110641114e-05,-8.3186708084428e-05,6.14352319017117e-11,4.42909597886349e-10,5.48856141369064e-05,-2.15619622852371e-08,1.13886764603217e-08,9.60819965260039e-09,-3.47942161193679e-09,2.2594773274831e-09,-7.32313515388956e-09 +6.812,-1.94555230487474e-06,-1.43844020757122e-06,1.4236560153362e-06,-4.10481225399106e-10,-1.96802187740763e-09,-0.0800010671189218,-2.76848270870686e-09,1.8375986496346e-09,6.48560198601782e-10,5.24545684665925e-11,4.29045687866439e-10,-9.92653875764414e-10,-0.0369674403296698,-0.0251287595894326,0.030078054209404,-3.58393870136546e-09,-4.67551344860293e-09,-0.014099254392469 +6.814,8.84392558318792e-09,-1.01859221612877e-08,-3.20166344131012e-09,-4.10333600431301e-10,-1.9668624923197e-09,-0.0799999949022369,-4.86173174838084e-05,-3.8240327293608e-05,3.71255087531746e-05,4.70994770962515e-11,4.24207544091939e-10,-1.51140343296347e-06,-5.35617557235921e-09,2.5708601912956e-09,5.36051238116682e-09,-1.69352379342527e-09,8.68229099702577e-10,-7.99707522370182e-10 +6.816,-2.14002157480995e-06,-1.59140151674564e-06,1.57215805034888e-06,-4.10292827490721e-10,-1.96632504723127e-09,-0.0800010731645355,-2.78990741099629e-09,1.84788209039978e-09,6.70002248126447e-10,4.56804732928921e-11,4.32518604265249e-10,-9.95852705853894e-10,0.0804689855048341,0.0603960674009474,-0.0575555217597972,3.43258407808572e-09,7.61370133603695e-09,0.0610485019654358 +6.818,8.83276595354393e-09,-1.01785306329261e-08,-3.19898343231761e-09,-4.10150878538129e-10,-1.96513241790264e-09,-0.0799999949062203,0.000273258624535564,0.000203343942310209,-0.00019309657828604,6.08298134085959e-11,4.5466234943609e-10,0.000242682604428807,4.71082591336884e-08,-3.1853209306218e-08,-1.70813883870374e-08,3.97945565389332e-09,-6.71251249026824e-09,1.98374303094775e-08 +6.82,-1.04698707666757e-06,-7.78025747504713e-07,7.99771737204635e-07,-4.10049508237087e-10,-1.96450639783352e-09,-0.0800001024341178,-2.60147437446152e-09,1.7204692531749e-09,6.0167669457829e-10,6.15982959084672e-11,4.05668554304173e-10,-9.16502984615975e-10,-0.176505688016394,-0.128929121687871,0.126906961992103,-3.697563089042e-09,-2.42106681924504e-08,-0.141278682119443 +6.822,8.82236005604609e-09,-1.01716487559134e-08,-3.1965767255393e-09,-4.09904485354495e-10,-1.96350974368542e-09,-0.0799999949098864,-0.000432764127529933,-0.000312372544441219,0.000314531269682318,4.60395610524295e-11,3.57819676666299e-10,-0.000322432124048901,-4.06495312669312e-08,3.01078606489579e-08,1.4699179373656e-08,-2.7386946877018e-09,6.63705201906473e-09,-1.86656246014596e-08 +6.824,-2.77804358678711e-06,-2.02751592526945e-06,2.05789681593377e-06,-4.09865349992877e-10,-1.96307511912686e-09,-0.080001392162614,-2.76407249952923e-09,1.84090069577071e-09,6.60473412072908e-10,5.06435171576612e-11,4.32216762380429e-10,-9.91165483021805e-10,0.170536010683897,0.122226890188237,-0.124806806114746,1.37737043992272e-09,2.86120953318662e-08,0.102923581596701 +6.826,8.81130376604797e-09,-1.01642851531303e-08,-3.19393483189101e-09,-4.09701911285865e-10,-1.9617808766359e-09,-0.079999994913851,0.00024937991520573,0.000176535016311785,-0.000184695954776722,5.1549042812121e-11,4.72268057993777e-10,8.92622023379486e-05,-8.14970378523819e-09,3.36753194784217e-09,5.74431995029936e-09,-2.03092750949703e-09,9.32413868361534e-10,-1.63757896137709e-09 +6.828,-1.78052392596408e-06,-1.32137586002223e-06,1.3191129968268e-06,-4.09659153821629e-10,-1.96118604689488e-09,-0.0800010351138046,-2.79667131467018e-09,1.85437082356208e-09,6.83450691874108e-10,4.25198071196722e-11,4.35946417853876e-10,-9.97715798867315e-10,-0.0908626693112707,-0.0649094732245232,0.0681338144590706,-3.18798806797422e-09,-1.30394826880253e-08,-0.0226975590492812 +6.83,8.80011708078929e-09,-1.0156867669836e-08,-3.19120102912351e-09,-4.09531832057386e-10,-1.96003709096448e-09,-0.0799999949178419,-0.000114070762039313,-8.31028765862796e-05,8.78393030595309e-05,3.87970905402256e-11,4.20110127241681e-10,-1.52803385916628e-06,1.3154624960319e-09,-9.95514434879129e-10,1.42767742069097e-09,-2.61943244874858e-10,1.11455983307301e-10,1.34788014088934e-09 +6.832,-2.23680697412128e-06,-1.65378736636732e-06,1.67047020906488e-06,-4.09503965459468e-10,-1.95950560638591e-09,-0.0800010412259401,-2.79140946468606e-09,1.85038876582257e-09,6.89161401556871e-10,4.14720341401729e-11,4.36392241787105e-10,-9.92324278303758e-10,0.0456098735902957,0.0337824923627635,-0.0339911185576424,1.32142560782288e-09,6.31482713339984e-09,0.00422326319401892 +6.834,8.78895144293054e-09,-1.01494661147727e-08,-3.18844438351729e-09,-4.09365943920825e-10,-1.95829152199734e-09,-0.0799999949218112,6.836873232189e-05,5.20270928647895e-05,-4.81251711710541e-05,4.40827929715177e-11,4.45369435775284e-10,1.53650189169113e-05,4.89213704253417e-09,-2.91195019475888e-09,-1.50227053015764e-09,6.78276879109232e-10,-4.05925293354345e-10,2.08687234154501e-09 +6.836,-1.96333204483369e-06,-1.44567899490813e-06,1.47796952438065e-06,-4.09327634287582e-10,-1.95772412864281e-09,-0.0800009797658644,-2.77184091651592e-09,1.83874096504353e-09,6.8315231943624e-10,4.41851416566101e-11,4.34768540613687e-10,-9.83976788937577e-10,-0.0237954534503257,-0.0175106712283379,0.0173852871166077,3.46944695197884e-10,-3.92567922611166e-09,-0.00212726397174446 +6.838,8.77786407926448e-09,-1.01421111509126e-08,-3.18571177423954e-09,-4.09189203354199e-10,-1.95655244783488e-09,-0.0799999949257471,-2.68130814794022e-05,-1.80155920485542e-05,2.14159772953688e-05,4.54705717523091e-11,4.29666718870839e-10,6.85596302993439e-06,3.84446435191543e-08,-2.81289748439349e-08,-1.57059695110974e-08,3.21747836706552e-09,-6.30051566477189e-09,1.69170233377804e-08 +6.84,-2.07058437075129e-06,-1.51774136310234e-06,1.56363343356211e-06,-4.09145752000573e-10,-1.95600546176733e-09,-0.0800009523420123,-2.61806234243932e-09,1.7262250656678e-09,6.20328441391857e-10,5.70550551248708e-11,4.09566477954602e-10,-9.16308695586463e-10,-0.00933774522905793,-0.00506937835654352,0.00737443648268666,4.83987849797169e-09,-9.95991483734246e-09,-0.0214529772375347 +6.842,8.76739182989472e-09,-1.01352062506499e-08,-3.18323046047397e-09,-4.08960983133699e-10,-1.95491418192306e-09,-0.0799999949294123,-6.41640623956381e-05,-3.82931054747306e-05,5.09137232261188e-05,6.4830085744198e-11,3.89827059521464e-10,-7.89559459202139e-05,-1.42476633791031e-08,1.32368074835368e-08,-8.87527898362207e-10,1.58597093791496e-09,2.64155017306642e-09,-9.68843061338134e-09 +6.844,-2.32724062033387e-06,-1.67091378500128e-06,1.76728832646661e-06,-4.08886431657596e-10,-1.95444615352924e-09,-0.080001268165796,-2.67505299595573e-09,1.77917229560196e-09,6.16778329798408e-10,6.33989388765313e-11,4.20132678646869e-10,-9.55062418039992e-10,0.0389754614422593,0.0236664682243984,-0.0327657589320333,-1.21604115665641e-09,1.26947063972227e-08,0.0333326255312657 +6.846,8.7566916179109e-09,-1.01280895614675e-08,-3.18076334715478e-09,-4.08707387378193e-10,-1.95323365120847e-09,-0.0799999949332326,9.17377833733821e-05,5.63727674228527e-05,-8.0149312502e-05,5.99659211175729e-11,4.4060588511035e-10,5.43745562048341e-05,-1.90154424323144e-08,8.9305732946643e-09,6.25909914172456e-09,-2.69922972862343e-09,1.51788304145638e-09,-6.42715047844101e-09 +6.848,-1.96028948684038e-06,-1.4454227153099e-06,1.44669107645864e-06,-4.08646567973125e-10,-1.9526837299888e-09,-0.0800010506675711,-2.75111476568498e-09,1.81489458878061e-09,6.41814726365303e-10,5.26020199620388e-11,4.26204210812694e-10,-9.80771019953753e-10,-0.033661788367056,-0.0227859714217544,0.0278472404634314,-2.82890030845187e-09,-4.88584867011204e-09,-0.0141615362847859 +6.85,8.74568715884816e-09,-1.01208299831124e-08,-3.17819608824932e-09,-4.08496979298345e-10,-1.95152883436522e-09,-0.0799999949371556,-4.29093700948569e-05,-3.47711182641752e-05,3.12396493517379e-05,4.86503198837641e-11,4.21062490429899e-10,-2.27158893431586e-06,-3.86653599777913e-09,9.41087485818177e-10,2.8080836267731e-09,-1.1423154089278e-09,2.45029691005388e-10,-3.45209971773837e-10 +6.852,-2.13192696721983e-06,-1.58450718836661e-06,1.57164967386561e-06,-4.0845196669359e-10,-1.95099948002708e-09,-0.0800010597539269,-2.7665809096761e-09,1.81865893872388e-09,6.53047060872397e-10,4.80327583263271e-11,4.27184329576716e-10,-9.82151859840849e-10,0.0179216109696397,0.0142308654994655,-0.0124500818972892,-6.93889390363884e-11,2.5986157670372e-09,0.00403846628967912 +6.854,8.73462083520946e-09,-1.01135553473575e-08,-3.17558390000583e-09,-4.0830484826504e-10,-1.94982009704692e-09,-0.0799999949410843,2.87770737836939e-05,2.21523437336804e-05,-1.85606782374135e-05,4.83727641276186e-11,4.31456953498047e-10,1.38822762243988e-05,2.38153138718095e-09,-1.10436833299472e-09,5.98696439610243e-10,5.0740661669655e-11,3.68628738407944e-11,1.31665511832093e-09 +6.856,-2.01681867208507e-06,-1.4958978134319e-06,1.49740696091596e-06,-4.0825847563708e-10,-1.94927365221309e-09,-0.080001004224822,-2.75705478412738e-09,1.8142414653919e-09,6.55441846630838e-10,4.82357209730057e-11,4.27331781072079e-10,-9.76885239367566e-10,-0.00921900057909748,-0.00653717621679703,0.00685585076838758,1.58293517180163e-10,-1.46063716679609e-09,-0.00125328862826034 +6.858,8.72359261607294e-09,-1.01062983814959e-08,-3.17296213261931e-09,-4.08111905381148e-10,-1.94811076992263e-09,-0.0799999949449918,-8.09892853270013e-06,-3.9963611335107e-06,8.86272483613988e-06,4.90059381963393e-11,4.25614404830862e-10,8.8691217113569e-06,4.24164284409901e-09,-2.04111900982048e-09,-8.016590862994e-10,5.03503488904944e-10,-2.48065457040965e-10,1.74599917851638e-09 +6.86,-2.04921438621587e-06,-1.51188325796595e-06,1.53285786026053e-06,-4.08062451884295e-10,-1.94757119459377e-09,-0.0800009687483351,-2.74008821275098e-09,1.80607698935262e-09,6.5223521028564e-10,5.02497349286257e-11,4.26339519243915e-10,-9.699012426535e-10,0.0652452775658976,0.0476164596122981,-0.0478564501779126,4.47775497236884e-09,4.57836893399642e-09,0.0532039607344573 +6.862,8.71263226322194e-09,-1.00990740735385e-08,-3.17035319177816e-09,-4.07910906441433e-10,-1.94640541184565e-09,-0.0799999949488714,0.000252882181730862,0.000186469477315661,-0.000182563075875489,6.69169580858127e-11,4.43927880566846e-10,0.000221684964649163,4.89252193447553e-08,-3.33437704531539e-08,-2.03994807157855e-08,4.71281000335719e-09,-7.43502481806025e-09,1.98643185234643e-08 +6.864,-1.03768565929254e-06,-7.66005348703386e-07,8.02605556758651e-07,-4.07794784051951e-10,-1.9457954830715e-09,-0.0800000820084765,-2.54438733537198e-09,1.67270190754002e-09,5.70637287422507e-10,6.91009749420524e-11,3.96599419971677e-10,-8.90443968559651e-10,-0.0913513227154297,-0.0664326534338632,0.0664255104048562,1.06642125685279e-09,-1.6672427327634e-08,-0.0635116808042952 +6.866,8.70245471388045e-09,-1.00923832659083e-08,-3.16807064262847e-09,-4.07634502541665e-10,-1.94481901416577e-09,-0.0799999949524332,-0.000112523109130898,-7.9261136419822e-05,8.3138965743965e-05,7.11826431132243e-11,3.77238171256302e-10,-3.23617585680466e-05,3.29190884606792e-09,-1.71629203895172e-09,-5.89415669046849e-09,1.43938680419559e-09,-8.73866951001298e-10,-7.17308157365857e-10 +6.868,-1.48777809581618e-06,-1.08304989438271e-06,1.13516141973455e-06,-4.07510053479498e-10,-1.94428653038647e-09,-0.0800002114555108,-2.53121969998771e-09,1.66583673938421e-09,5.4706066066063e-10,7.48585221588354e-11,3.93103952167672e-10,-8.93313201189115e-10,-0.0387320540731389,-0.0303175040487099,0.0248296564546027,-3.53363172056158e-09,-1.32316033128066e-09,-0.0720755179966541 +6.87,8.6923298350805e-09,-1.00857199189508e-08,-3.16588239998583e-09,-4.0733506845303e-10,-1.9432465983571e-09,-0.0799999949560064,-0.000267451325423437,-0.000200531152614648,0.000182457591562365,5.70481162309796e-11,3.7194552993118e-10,-0.000320663830554631,-5.45158536367755e-08,3.52398232122038e-08,2.03240202445139e-08,-5.41060252157581e-09,7.49530645880496e-09,-2.24022189687148e-08 +6.872,-2.55758339750981e-06,-1.88517450484121e-06,1.86499178598393e-06,-4.07281861014575e-10,-1.94279874826675e-09,-0.080001494110833,-2.74928311453479e-09,1.80679603223301e-09,6.28356741638677e-10,5.32161120725346e-11,4.23085178002888e-10,-9.82922077063965e-10,0.105631541821325,0.0769385975071144,-0.0737673737309155,-2.01531499821877e-09,1.98456702460186e-08,0.10433085184148 +6.874,8.68133270262236e-09,-1.00784927348219e-08,-3.16336897301928e-09,-4.0712220400474e-10,-1.94155425764508e-09,-0.0799999949599381,0.000155074841861912,0.000107223237413844,-0.00011261190336133,4.89868562381036e-11,4.51328210915263e-10,9.66595768113368e-05,2.10015381819778e-08,-1.85511328519956e-08,-2.64371857735377e-09,-1.03779831950017e-09,-3.81769268973246e-09,1.22454130168657e-08 +6.876,-1.93728403006209e-06,-1.45628155518579e-06,1.41454417253856e-06,-4.07085913589622e-10,-1.94099343542309e-09,-0.0800011074725258,-2.66527696180687e-09,1.73259150082502e-09,6.1778186732926e-10,4.90649187945334e-11,4.07814407243957e-10,-9.33940424996496e-10,-0.078069389710493,-0.0533220054206729,0.0596086692406204,3.89879101228591e-10,-1.83069705228312e-08,-0.0440760130832442 +6.878,8.67067159477514e-09,-1.00715623688186e-08,-3.16089784554996e-09,-4.06925944329561e-10,-1.93992300001611e-09,-0.0799999949636739,-0.000157202716980025,-0.000106064784268824,0.000125822773601125,5.05463726430178e-11,3.78100328823946e-10,-7.96444755216207e-05,-1.6553192193546e-08,1.65479609181156e-08,6.77040888626867e-09,5.72458747045106e-11,4.18762247098536e-09,-9.52883605348876e-09 +6.88,-2.56609489798212e-06,-1.88054069226104e-06,1.917835266943e-06,-4.0688372809905e-10,-1.93948103410779e-09,-0.0800014260504279,-2.73148973058104e-09,1.79878334449748e-09,6.44863502874332e-10,4.92939022933514e-11,4.24564897127896e-10,-9.72055769210447e-10,0.0780847427977668,0.0536836600247116,-0.0610771207500852,-9.08995101414448e-10,1.93256868840943e-08,0.0402468011955574 +6.882,8.65974563585281e-09,-1.00643672354406e-08,-3.15831839153846e-09,-4.06728768720388e-10,-1.9382247404276e-09,-0.0799999949675621,0.000155136254211077,0.000108669855830046,-0.000118485709399243,4.69103922373596e-11,4.55403076360332e-10,8.1342729260627e-05,-1.47529558015963e-08,8.80458900242011e-09,9.34820797164031e-09,-2.64762170520686e-09,2.29156971178893e-09,-4.46864767417019e-09 +6.884,-1.94554988113774e-06,-1.44586126894081e-06,1.44389242934598e-06,-4.06696086530101e-10,-1.93765942180235e-09,-0.0800011006795108,-2.79050155378744e-09,1.83400170050716e-09,6.82256334760898e-10,3.87034154725228e-11,4.33731175975053e-10,-9.8993035990713e-10,-0.0552117064102714,-0.0392109827651874,0.043061228083722,-2.92647850397091e-09,-7.52826620484672e-09,-0.0182956496150988 +6.886,8.64858362963766e-09,-1.00570312286385e-08,-3.15558936619942e-09,-4.06573955058498e-10,-1.9364898157237e-09,-0.0799999949715218,-6.57105714299844e-05,-4.81740752306862e-05,5.37592029356261e-05,3.52044782214772e-11,4.25290011540949e-10,8.16013080023971e-06,1.26895022283196e-09,-9.65156774048394e-10,2.63938176866082e-09,-5.56846235790704e-10,2.72785266573278e-10,1.6323747909491e-09 +6.888,-2.20839216685765e-06,-1.63855756986353e-06,1.65892924108846e-06,-4.06555268617215e-10,-1.93595826175619e-09,-0.0800010680389876,-2.78542575289611e-09,1.83014107341097e-09,6.9281386183554e-10,3.64760305293602e-11,4.34822317041346e-10,-9.83400860743334e-10,0.0282836341325427,0.0213495326077218,-0.0212907660752832,8.62591248427321e-10,3.86713230879682e-09,0.00293574718874978 +6.89,8.63744192662608e-09,-1.00497106643449e-08,-3.15281811075208e-09,-4.0642805093638e-10,-1.93475052645553e-09,-0.0799999949754554,4.74239651001989e-05,3.72240552002107e-05,-3.14038613655164e-05,3.86548432151869e-11,4.40758540776138e-10,1.99031195552402e-05,6.42552417508066e-09,-3.82528210486175e-09,-1.7071847407572e-09,7.7672243637064e-10,-5.21718085375888e-10,2.86576318225908e-09 +6.892,-2.01869630645684e-06,-1.48966134906267e-06,1.53331379562638e-06,-4.06400649244354e-10,-1.93419522759308e-09,-0.0800009884265094,-2.75972365619578e-09,1.81483994499152e-09,6.8598512287251e-10,3.95829202748431e-11,4.32735444699842e-10,-9.71937808014297e-10,-0.0149871076161093,-0.0111048470234895,0.0106547132789752,7.76288755501938e-10,-2.94469310044681e-09,-0.00233591059862977 +6.894,8.6264030320013e-09,-1.00424513045649e-08,-3.15007417026059e-09,-4.06269719255281e-10,-1.93301958467673e-09,-0.0799999949793432,-1.25244653642319e-05,-7.19533289374265e-06,1.12149917503799e-05,4.17599982371943e-11,4.28979768374352e-10,1.05594771607221e-05,7.04872358413319e-09,-4.87023615890567e-09,-4.15271116109205e-09,1.24769986009412e-09,-1.06685493774975e-09,2.76167977380904e-09 +6.896,-2.06879416791376e-06,-1.51844268063764e-06,1.57817376262789e-06,-4.06233609251405e-10,-1.93247930851959e-09,-0.0800009461886008,-2.73152876185925e-09,1.7953590003559e-09,6.69374278228144e-10,4.45737197152191e-11,4.28468024948844e-10,-9.60891088919062e-10,0.00685303056403074,0.00464056651547472,-0.00584160552764245,1.43158054854722e-09,-1.74339709359444e-10,-0.00129017161017183 +6.898,8.61547691695386e-09,-1.00352698685635e-08,-3.14739667314767e-09,-4.0609142437642e-10,-1.93130571257694e-09,-0.0799999949831867,1.48876568918941e-05,1.13669331681583e-05,-1.21514303601925e-05,4.74863204313838e-11,4.28282409536914e-10,5.39879072003419e-06,5.75274962200217e-09,-4.809520837046e-09,-5.0601883793872e-09,1.22905158273204e-09,-1.26895022265325e-09,2.16927170665566e-09 +6.9,-2.00924354034617e-06,-1.472974947965e-06,1.52956804118712e-06,-4.0604366396968e-10,-1.93076617888144e-09,-0.0800009245934379,-2.70851776337124e-09,1.77612091700771e-09,6.49133524710593e-10,4.94899260461478e-11,4.2339222405823e-10,-9.52214002092438e-10,-0.00420627865261528,-0.0033104279252746,0.00282091729033972,1.03562991516102e-09,-1.84921522536791e-09,-0.000950640968722015 +6.902,8.60464284590037e-09,-1.00281653848955e-08,-3.14480013904883e-09,-4.05893464672236e-10,-1.9296121436807e-09,-0.0799999949869956,-1.93745771856512e-06,-1.87477853293864e-06,-8.67761198834845e-07,5.16288400920274e-11,4.20885548635443e-10,1.59622684514655e-06,4.1072559851228e-09,-4.06814339169868e-09,-4.78284946373857e-09,1.01134378649173e-09,-1.23382207231201e-09,1.48839274244095e-09 +6.904,-2.01699337122043e-06,-1.48047406209675e-06,1.52609699639178e-06,-4.05837148609312e-10,-1.9290826366869e-09,-0.0800009182085305,-2.69208873943075e-09,1.75984834344092e-09,6.3000212685564e-10,5.35353011921143e-11,4.18456935768982e-10,-9.46260431122675e-10,0.00154534283497885,0.00101676101262384,-0.0012437076475025,9.0509197358783e-10,-8.98153079710156e-10,-0.000443656392005987 +6.906,8.59387449094265e-09,-1.00211259915217e-08,-3.14228013054141e-09,-4.05679323467467e-10,-1.92793831593763e-09,-0.0799999949907806,4.24391362135097e-06,2.19226551755717e-06,-5.8425917888454e-06,5.52492079863791e-11,4.17292936316602e-10,-1.78398722877595e-07,2.73725811967044e-09,-3.07414683976771e-09,-3.79882757191972e-09,6.99093560821624e-10,-9.76215636082717e-10,1.02608893598774e-09 +6.908,-2.00001771673503e-06,-1.47170500002652e-06,1.50272662923639e-06,-4.05616151777366e-10,-1.92741346494163e-09,-0.0800009189221254,-2.68113970695207e-09,1.74755175608185e-09,6.1480681656796e-10,5.63316754354011e-11,4.14552073224651e-10,-9.42156075378723e-10,-0.00122029001690236,-0.000880326062697726,0.00105860238348671,5.13044468023322e-10,-1.0373646386112e-09,-0.00014048014140848 +6.91,8.58314993211484e-09,-1.00141357844974e-08,-3.13982090327514e-09,-4.05453996765726e-10,-1.92628010764473e-09,-0.0799999949945493,-6.37246446257949e-07,-1.32903873323335e-06,-1.60818225489901e-06,5.73013858584722e-11,4.13143477762158e-10,-7.40319288511452e-07,1.73662082977905e-09,-2.01184555126458e-09,-2.44921270764531e-09,4.05057931640674e-10,-6.84782092141998e-10,6.11490025281995e-10 +6.912,-2.00256670252006e-06,-1.47702115495946e-06,1.4962939002168e-06,-4.05386946233932e-10,-1.92576089103058e-09,-0.0800009218834025,-2.67419322363295e-09,1.73950437387679e-09,6.0500996573738e-10,5.79519071619636e-11,4.11812944856083e-10,-9.39710115277596e-10,0.000321765645811718,0.00029150411273202,-6.06693081100637e-07,2.59341159655351e-10,-5.00034041973246e-10,1.87730647000361e-05 +6.914,8.57245315922031e-09,-1.00071777670019e-08,-3.13740086341219e-09,-4.05222189137078e-10,-1.9246328558653e-09,-0.0799999949983081,6.49816136988783e-07,-1.63022282305396e-07,-1.61060902722342e-06,5.83387504970935e-11,4.11143341594265e-10,-6.65227029711316e-07,1.02299895999686e-09,-1.12214924861879e-09,-1.11499351421742e-09,1.19695919839155e-10,-3.66460334322872e-10,3.97251676050757e-10 +6.916,-1.9999674379721e-06,-1.47767324408868e-06,1.48985146410791e-06,-4.05153591231944e-10,-1.9241163176642e-09,-0.0800009245443107,-2.67010122779297e-09,1.73501577688232e-09,6.0054999168051e-10,5.84306908413203e-11,4.10347103518792e-10,-9.38121108573392e-10,-0.000344975277808992,-0.000187557791780238,0.000497243883221164,-1.25767451975928e-11,-2.90566182203296e-10,8.22565245084024e-05 +6.918,8.56177275430914e-09,-1.00002377038944e-08,-3.13499866344547e-09,-4.04988466373712e-10,-1.92299146745123e-09,-0.0799999950020606,-7.30084974247339e-07,-9.13253449426433e-07,3.78366505661462e-07,5.82884435163031e-11,4.09981076865452e-10,-3.3620093167767e-07,5.33129313117428e-10,-4.62737487120601e-10,1.58293517516358e-11,-1.31405303302028e-10,-8.97719398590493e-11,2.10768902279145e-10 +6.92,-2.00288777786909e-06,-1.48132625788638e-06,1.49136493013055e-06,-4.04920437457879e-10,-1.92247639335674e-09,-0.0800009258891144,-2.6679687105405e-09,1.73316482693383e-09,6.00613309087516e-10,5.79050696281122e-11,4.09988015759356e-10,-9.37278032964276e-10,9.09462280604717e-05,0.000119165819356374,0.000115334971174226,-2.22478285797262e-10,-1.34441069615692e-11,9.82672164126693e-05 +6.922,8.55110087946698e-09,-9.99330504458662e-09,-3.13259621020912e-09,-4.047568460952e-10,-1.92135151538819e-09,-0.0799999950058097,-3.66300062005492e-07,-4.3659017200099e-07,8.39706390358314e-07,5.73985303731142e-11,4.09927300437605e-10,5.68679339729642e-08,2.17301220568448e-10,-1.0842021734475e-10,7.9341914979138e-10,-2.82759926587371e-10,3.20923842828069e-11,1.8388068850553e-10 +6.924,-2.00435297811712e-06,-1.48307261857439e-06,1.49472375569198e-06,-4.04690843336386e-10,-1.92083668415499e-09,-0.0800009256616427,-2.66709950565822e-09,1.73273114606445e-09,6.03786985686682e-10,5.67740299217626e-11,4.10116385296487e-10,-9.36542510210254e-10,-5.47743731610835e-05,-3.18592613230898e-06,0.000144584580202533,-3.48245737799158e-10,9.8011876415439e-11,9.17556013807527e-05 +6.926,8.54043248144434e-09,-9.98637412000236e-09,-3.13018106226637e-09,-4.04529749975513e-10,-1.91971104984701e-09,-0.0799999950095559,-5.8539755464985e-07,-4.49333876530227e-07,1.41804471116851e-06,5.60055474219174e-11,4.10319347943267e-10,4.23890339496016e-07,9.20487642959641e-11,3.404394831226e-11,1.15380795199283e-09,-3.9074646296071e-10,1.81712284131377e-10,1.7520707102172e-10 +6.928,-2.00669456833572e-06,-1.48486995408051e-06,1.50039593453666e-06,-4.04466821146698e-10,-1.91919540676322e-09,-0.0800009239660813,-2.66673131060104e-09,1.7328673218577e-09,6.08402217494653e-10,5.52110440699199e-11,4.10843234433012e-10,-9.35841681926167e-10,7.06184582653363e-05,7.47005916325564e-05,-2.36890240497371e-05,-4.15899953368547e-10,1.63931368457027e-10,7.31348679533269e-05 +6.93,8.52976555620194e-09,-9.97944265071493e-09,-3.12774745339639e-09,-4.04308905799233e-10,-1.91806767690927e-09,-0.0799999950132992,-3.02923721588536e-07,-1.50531510000035e-07,1.32328861496957e-06,5.43419476084434e-11,4.10975073417095e-10,7.16429811309291e-07,1.04869455281611e-10,-4.20670443886443e-11,1.20866858185279e-09,-4.20236762058352e-10,1.52221984994123e-10,1.63064006793707e-10 +6.932,-2.00790626322207e-06,-1.48547208012051e-06,1.50568908899654e-06,-4.04249453356265e-10,-1.91755150646955e-09,-0.0800009211003621,-2.66631183277991e-09,1.73269905368015e-09,6.13236891822064e-10,5.35300970216863e-11,4.11452122372989e-10,-9.35189425898992e-10,3.20887103238623e-05,3.55333401591467e-05,-5.15576771813145e-05,-3.96817995126678e-10,1.54824070253751e-10,4.73530555045573e-05 +6.934,8.51910030887082e-09,-9.97251185450021e-09,-3.1252945058291e-09,-4.04094785411147e-10,-1.91642186841978e-09,-0.07999999501704,-1.74568880293073e-07,-8.39814936343201e-09,1.11705790624429e-06,5.27546756279365e-11,4.1159436969811e-10,9.05842033327542e-07,2.22830651352146e-10,-2.59124319127904e-10,1.01372903130823e-09,-3.67761376904193e-10,1.06685493795436e-10,2.70616862200558e-10 +6.936,-2.00860453874324e-06,-1.48550567271796e-06,1.51015732062151e-06,-4.04038434653753e-10,-1.91590512899076e-09,-0.0800009174769939,-2.6654205101745e-09,1.73166255640364e-09,6.17291807947297e-10,5.20590515140697e-11,4.11878864348171e-10,-9.3410695845019e-10,5.40155382987218e-05,4.29736977339977e-05,-0.000101281166396398,-3.39138439556393e-10,8.80372163829689e-11,1.88680650963831e-05 +6.938,8.50843862683012e-09,-9.9655852042746e-09,-3.12282533859731e-09,-4.0388654920509e-10,-1.91477435296239e-09,-0.0799999950207764,4.14932729017904e-08,1.6349664157254e-07,7.11933240658745e-07,5.13981218697111e-11,4.11946518563642e-10,9.81314293713066e-07,3.93673808977405e-10,-5.2041704288904e-10,6.45317133028946e-10,-3.08780778726692e-10,1.38777877849491e-11,3.15719672679546e-10 +6.94,-2.00843856565163e-06,-1.48485168615167e-06,1.51300505358415e-06,-4.03832842166274e-10,-1.9142573429165e-09,-0.0800009135517367,-2.66384581493859e-09,1.72958088823208e-09,6.19873076479413e-10,5.08239283991628e-11,4.1193437549931e-10,-9.32844079759472e-10,2.87650723553046e-05,1.7859960689199e-05,-9.36323412466542e-05,-2.62376925738639e-10,-1.9081958212879e-11,-7.50585357750621e-06 +6.942,8.49778324357037e-09,-9.95866688072167e-09,-3.12034584629139e-09,-4.03683253491494e-10,-1.91312661546039e-09,-0.0799999950245078,1.56553562323022e-07,2.34936484329344e-07,3.37403875672086e-07,5.03486141667564e-11,4.11870190730791e-10,9.51290879403038e-07,5.57415441781313e-10,-7.10369263316628e-10,2.89048299219099e-10,-2.27682456219184e-10,-4.42354486145497e-11,3.28730098645891e-10 +6.944,-2.00781235140234e-06,-1.48391194021436e-06,1.51435466908684e-06,-4.03631447709607e-10,-1.91260986215358e-09,-0.0800009097465732,-2.66161615317147e-09,1.72673941117881e-09,6.21029269676289e-10,4.99131985742862e-11,4.11757433704852e-10,-9.31529159364888e-10,1.91707265567719e-05,6.1382758684844e-06,-8.06039336838557e-05,-1.75640751945447e-10,-6.07153216820458e-11,-2.77063823273499e-05 +6.946,8.48713677895768e-09,-9.95175992307695e-09,-3.11786172921269e-09,-4.03483600697196e-10,-1.91147958572557e-09,-0.0799999950282339,2.33236468550101e-07,2.59489587803279e-07,1.49881409366986e-08,4.96460511589747e-11,4.11627329444063e-10,8.4046535009365e-07,6.87953383643939e-10,-9.11597186721456e-10,-4.33680869338726e-11,-1.30104260701002e-10,-1.10588621616347e-10,4.23272528189941e-10 +6.948,-2.00687940552814e-06,-1.48287398186314e-06,1.51441462165058e-06,-4.03432863504971e-10,-1.9109633528358e-09,-0.0800009063847118,-2.65886433963689e-09,1.72309302243193e-09,6.20855797328554e-10,4.93927815314821e-11,4.11315079218387e-10,-9.29836069252128e-10,5.94432841721194e-07,-1.01268650583153e-05,-5.01340219338777e-05,-1.01047642472893e-10,-1.51354623256122e-10,-3.94664526753385e-05 +6.95,8.47650132159913e-09,-9.94486755098722e-09,-3.11537830602338e-09,-4.03286029571071e-10,-1.9098343254087e-09,-0.0799999950319533,2.35614199916986e-07,2.18982127570013e-07,-1.85547946798835e-07,4.92418605890831e-11,4.11021910951038e-10,6.82599539392279e-07,3.371668179014e-08,-2.46048841022958e-08,-1.23301976267769e-08,2.0868723416033e-09,-5.57843701785081e-09,1.47312717579467e-08 +6.952,-2.00593694872847e-06,-1.48199805335286e-06,1.51367242986339e-06,-4.03235896062615e-10,-1.909319265192e-09,-0.0800009036543137,-2.52399761247635e-09,1.62467348602276e-09,5.71535006821452e-10,5.77402708978944e-11,3.89001331146986e-10,-8.70910982220348e-10,-0.0215845876199349,-0.0137309803813559,0.0169985710886996,3.36883299034422e-09,-1.07782706371357e-08,-0.019709809753049 +6.954,8.46640533114923e-09,-9.93836885704313e-09,-3.11309216599609e-09,-4.03055068487479e-10,-1.90827832008411e-09,-0.0799999950354369,-8.61027362798133e-05,-5.47049393978477e-05,6.7808736407992e-05,6.27171925504585e-11,3.679088284025e-10,-7.81566394727952e-05,-1.81810946504825e-08,1.5547242312914e-08,2.36529545946211e-09,6.21464685265348e-10,3.32763330777017e-09,-1.06893660589183e-08 +6.956,-2.35034789384777e-06,-1.70081781094428e-06,1.78490737549539e-06,-4.02985027292413e-10,-1.90784762987839e-09,-0.0800012162808716,-2.59672199107829e-09,1.68686245527442e-09,5.80996188659301e-10,6.02261296389561e-11,4.02311864378068e-10,-9.13668446456026e-10,0.0471276698810723,0.0300262892759133,-0.0386199393426434,-1.72431513511746e-09,1.43557041254665e-08,0.0324783040322974 +6.958,8.45601844318492e-09,-9.93162140722204e-09,-3.11076818124145e-09,-4.02814163968923e-10,-1.9066690726266e-09,-0.0799999950390916,0.000102407943244497,6.54002177058191e-05,-8.66710209625988e-05,5.58199320099878e-11,4.25331644904372e-10,5.17565766564089e-05,-2.0452715042567e-08,1.02821397230794e-08,8.72630960550101e-09,-3.23178983574216e-09,2.14498557806812e-09,-6.77669725895561e-09 +6.96,-1.94071612086982e-06,-1.43921694012103e-06,1.43822329164503e-06,-4.02761747564373e-10,-1.90614630329877e-09,-0.0800010092545649,-2.67853285124854e-09,1.72799101416673e-09,6.15901427081301e-10,4.72989702959888e-11,4.1089180669034e-10,-9.40775235491846e-10,-0.038115375422792,-0.0262928988806929,0.0312347685986094,-3.38054237381289e-09,-4.91056847964495e-09,-0.0134432346331232 +6.962,8.44530431177992e-09,-9.92470944316537e-09,-3.10830457553313e-09,-4.02624968087739e-10,-1.90502550539984e-09,-0.0799999950428547,-5.00535584466544e-05,-3.97713778169409e-05,3.82680534318251e-05,4.22977625147378e-11,4.05689370985795e-10,-2.01636187607801e-06,-4.73425010117116e-09,2.0801502880343e-09,4.6863554703161e-09,-1.54043444666968e-09,7.5070158420599e-10,-6.28837259989255e-10 +6.964,-2.14093035465646e-06,-1.59830245138881e-06,1.59129550537235e-06,-4.02592556514314e-10,-1.90452354581483e-09,-0.0800010173200124,-2.69746985165323e-09,1.73631161531887e-09,6.34646848962568e-10,4.11372325093094e-11,4.13894613027164e-10,-9.43290584531803e-10,0.0204117870695991,0.0160938929268865,-0.0144733560576943,-3.31765864778217e-10,3.33457220171893e-09,0.00392483157692763 +6.966,8.43451443237331e-09,-9.91776419670409e-09,-3.10576598813728e-09,-4.02460419157702e-10,-1.90336992694773e-09,-0.0799999950466278,3.15935898317511e-05,2.46041938906121e-05,-1.96253707989585e-05,4.09706990556247e-11,4.19027659792672e-10,1.36829644316343e-05,1.85349782382329e-09,-3.98119037640355e-10,1.75120334903419e-09,-1.90819582355208e-10,2.83627288345245e-10,1.12670289759484e-09 +6.968,-2.01455599532947e-06,-1.49988567582637e-06,1.51279402217652e-06,-4.02428673718092e-10,-1.90284743517566e-09,-0.0800009625881547,-2.69005586035794e-09,1.73471913916831e-09,6.41651662358704e-10,4.03739541798887e-11,4.15029122180545e-10,-9.38783772941424e-10,-0.0103490507494552,-0.00743046117387052,0.00763262958283707,-1.6479873024053e-11,-1.42854478249017e-09,-0.00118231881923801 +6.97,8.42375420893188e-09,-9.91082532014742e-09,-3.10319938148784e-09,-4.02298923340982e-10,-1.90170981045901e-09,-0.079999995050383,-9.80261316606516e-06,-5.11765080486668e-06,1.09051475323864e-05,4.09047795635285e-11,4.13313480662712e-10,8.95368915468275e-06,3.97709751431409e-09,-1.69005434656632e-09,-3.80771803012435e-10,4.53630188965592e-10,-1.15792792044458e-10,1.66620189872744e-09 +6.972,-2.05376644799374e-06,-1.52035627904584e-06,1.55641461230607e-06,-4.02265054599837e-10,-1.90119418125301e-09,-0.0800009267733981,-2.67414747030068e-09,1.72795892178204e-09,6.40128575146654e-10,4.21884749357512e-11,4.14565951012367e-10,-9.32118965346514e-10,0.00499826770673295,0.00346475892420954,-0.00419769603126592,6.66133814777364e-10,4.61002763763778e-10,-0.000851961266291391 +6.974,8.41305761905067e-09,-9.90391348446029e-09,-3.10063886718726e-09,-4.02130169441239e-10,-1.90005154665496e-09,-0.0799999950541115,1.01904576608689e-05,8.74138489197303e-06,-5.88563659267914e-06,4.35693148226383e-11,4.15157491717767e-10,5.5458440895168e-06,3.75949813800015e-09,-2.25492367823996e-09,-1.65492619604669e-09,5.88504939227604e-10,-4.41053443744198e-10,1.44936146412721e-09 +6.976,-2.01300461735027e-06,-1.48539073947795e-06,1.53287206593536e-06,-4.02090777340547e-10,-1.89953355128614e-09,-0.0800009045900217,-2.65910947774868e-09,1.71893922706908e-09,6.33508870362468e-10,4.45424946926614e-11,4.1280173723739e-10,-9.26321519490005e-10,-0.00289487373813127,-0.00236547564500547,0.00175890659047243,5.34294830598436e-10,-9.03790931006957e-10,-0.000786284076910755 +6.978,8.40242118113968e-09,-9.89703772755202e-09,-3.09810483170581e-09,-4.01951999462469e-10,-1.89840033970601e-09,-0.0799999950578167,-1.38903729165493e-06,-7.20517688047792e-07,1.14998976920981e-06,4.57064941450318e-11,4.1154232799374e-10,2.40070778187413e-06,2.84025732635288e-09,-2.33016730920071e-09,-2.29742440353145e-09,5.71591385331757e-10,-5.82433407081999e-10,1.12930498291209e-09 +6.98,-2.01856076651689e-06,-1.48827281023015e-06,1.5374720250122e-06,-4.01907951363967e-10,-1.89788738197416e-09,-0.0800008949871906,-2.64774844844327e-09,1.70961855783228e-09,6.24319172748341e-10,4.68288602339887e-11,4.10472003609062e-10,-9.21804299558356e-10,0.00116289414960072,0.000697513487289997,-0.00115641070005418,5.49907341887184e-10,-4.35849273316325e-10,-0.0004267359261094 +6.982,8.39183018734591e-09,-9.89019925332069e-09,-3.09560755501481e-09,-4.01764684021533e-10,-1.89675845169157e-09,-0.079999995061504,3.26253930674846e-06,2.06953626111251e-06,-3.47565303100744e-06,4.79061235125808e-11,4.09798930900474e-10,6.93764077436342e-07,2.01816102877233e-09,-2.16298333401416e-09,-2.34231037340354e-09,4.73579508944372e-10,-6.13224748735147e-10,8.48279779701674e-10 +6.984,-2.00551060928989e-06,-1.4799946651857e-06,1.52356941288817e-06,-4.01716326869916e-10,-1.89624818625056e-09,-0.0800008922121343,-2.63967580432818e-09,1.70096662449622e-09,6.14949931254728e-10,4.87231782697659e-11,4.08019104614122e-10,-9.1841118043955e-10,-0.000831915021679882,-0.000653847021881332,0.000545198143792597,4.16767315100769e-10,-7.1644079560117e-10,-0.000177047591865025 +6.986,8.38127148412859e-09,-9.8833953868227e-09,-3.09314775528979e-09,-4.01569791308454e-10,-1.89512637527312e-09,-0.0799999950651776,-6.51207799707006e-08,-5.4585182641253e-07,-1.29486045583729e-06,4.95731927729837e-11,4.0693316771807e-10,-1.44262900236819e-08,1.4818062143365e-09,-1.80085980859247e-09,-2.09988276770358e-09,3.72965547332225e-10,-5.87203896640663e-10,5.91540705358923e-10 +6.988,-2.00577109240978e-06,-1.48217807249135e-06,1.51838997106482e-06,-4.01518034098824e-10,-1.89462045357969e-09,-0.0800008922698395,-2.63374857947083e-09,1.69376318526185e-09,6.06550400183913e-10,5.0215040459095e-11,4.05670289027559e-10,-9.16045017618114e-10,0.000241859147049073,0.000190620493348251,-0.00013491246986769,3.07913416988634e-10,-4.67074295884162e-10,-3.92997457493445e-05 +6.99,8.37073648981071e-09,-9.87662033408165e-09,-3.09072155368906e-09,-4.01368931146617e-10,-1.893503694117e-09,-0.0799999950688418,9.02315808225698e-07,2.16630146980558e-07,-1.83451033530811e-06,5.08048464409383e-11,4.05064870534533e-10,-1.71625273021078e-07,1.13757202428013e-09,-1.41423331369636e-09,-1.56493741573227e-09,2.48065457067527e-10,-4.11563144653067e-10,4.92661467126673e-10 +6.992,-2.00216182917688e-06,-1.48131155190342e-06,1.51105192972359e-06,-4.01314814713061e-10,-1.89300019409755e-09,-0.0800008929563406,-2.62919829137371e-09,1.68810625200707e-09,6.00290650520984e-10,5.1207302287365e-11,4.04024036448947e-10,-9.14074371749608e-10,-0.000258399776673563,-0.000155353140724954,0.000307057004822576,1.95590071913565e-10,-4.13731549042951e-10,1.58499923255768e-05 +6.994,8.36021969664522e-09,-9.86986790907363e-09,-3.08832039108697e-09,-4.01164101937468e-10,-1.89188759797121e-09,-0.0799999950724981,-1.3128329846844e-07,-4.04782415919191e-07,-6.06282316017935e-07,5.15872067285925e-11,4.03409944338361e-10,-1.08225303718778e-07,8.81727416919528e-10,-1.03996672394155e-09,-9.46725337047453e-10,1.47017814586158e-10,-2.96204033545405e-10,3.65159291743794e-10 +6.996,-2.00268696237075e-06,-1.4829306815671e-06,1.50862680045952e-06,-4.01108465886146e-10,-1.8913865543202e-09,-0.0800008933892418,-2.62567138170604e-09,1.6839463851113e-09,5.96503749172794e-10,5.17953735457097e-11,4.02839220314765e-10,-9.12613734582632e-10,3.67480366611681e-05,5.84669526334843e-05,9.38737971904408e-05,5.94142790550683e-11,-2.22478285771641e-10,3.2960650701846e-05 +6.998,8.34971701111839e-09,-9.86313212353318e-09,-3.08593437609028e-09,-4.00956920443285e-10,-1.89027624108995e-09,-0.0799999950761485,1.57088481762494e-08,-1.70914605385227e-07,-2.3078712725613e-07,5.18248638448128e-11,4.02520031195275e-10,2.36172990886211e-08,6.70253782885029e-10,-7.36390115458868e-10,-4.02022165524582e-10,-7.80625563902236e-12,-1.53089346732623e-10,3.45209971668784e-10 +7,-2.00262412697804e-06,-1.48361433998864e-06,1.50770365195049e-06,-4.00901166430767e-10,-1.88977647419541e-09,-0.0800008932947726,-2.6229903665745e-09,1.68100082464947e-09,5.94895660510696e-10,5.17641485231536e-11,4.02226862927835e-10,-9.11232894695957e-10,-7.4115555056057e-05,-3.12571962670415e-05,0.000154365560264837,-4.29344060333016e-11,-1.30104260720596e-10,3.74614922415959e-05 +7.002,8.33922504965209e-09,-9.85640812023458e-09,-3.08355479344824e-09,-4.00749863849192e-10,-1.88866733363824e-09,-0.0799999950797935,-2.80753372047946e-07,-2.95943390453379e-07,3.86675113803149e-07,5.16531262206796e-11,4.01999614152392e-10,1.73463268054988e-07,5.0144350491997e-10,-5.23452808969208e-10,3.38271077485084e-11,-8.50014503257185e-11,-1.04083408580918e-10,2.82759926634749e-10 +7.004,-2.00374714046624e-06,-1.48479811355046e-06,1.50925035240571e-06,-4.00694553925884e-10,-1.88816847573881e-09,-0.0800008926009195,-2.62098459255482e-09,1.67890701341359e-09,5.9503096894169e-10,5.14241427218507e-11,4.01810529293511e-10,-9.10101854989418e-10,1.83193826590426e-05,2.88686071575452e-05,4.91841305097016e-05,-1.2663481374344e-10,-4.03323207941482e-11,3.78390790922818e-05 +7.006,8.32874111128187e-09,-9.84969249218093e-09,-3.08117466957247e-09,-4.00544167278305e-10,-1.88706009152106e-09,-0.0799999950834339,-2.07475841411767e-07,-1.80468961823186e-07,5.83411635841977e-07,5.11465869657058e-11,4.01838284869216e-10,3.24819584424132e-07,3.9950139536116e-10,-4.328135071631e-10,2.90783022693706e-10,-1.50053580669172e-10,3.8163916493802e-11,2.48065457014227e-10 +7.008,-2.00457704383188e-06,-1.48551998939775e-06,1.51158399894907e-06,-4.00489967578022e-10,-1.88656112259933e-09,-0.0800008913016412,-2.61938658697337e-09,1.67717575938494e-09,5.96194101032465e-10,5.08239283991741e-11,4.01963184959486e-10,-9.09109593161361e-10,-4.86566977018978e-07,9.81198195610823e-06,2.74682609556856e-05,-1.80844922373421e-10,-3.90312784325627e-12,3.43987512085683e-05 +7.01,8.31826356493398e-09,-9.84298378914339e-09,-3.07878989316834e-09,-4.00340871564708e-10,-1.88545223878123e-09,-0.0799999950870703,-2.09422109319843e-07,-1.41221033998757e-07,6.93284679664708e-07,5.04232072762122e-11,4.01822672357843e-10,4.6241458925839e-07,3.64400350317714e-10,-4.42137646032597e-10,4.05491612476394e-10,-1.99493199740109e-10,-2.12503626030215e-11,2.94035629228468e-10 +7.012,-2.00541473226916e-06,-1.48608487353374e-06,1.51435713766773e-06,-4.00288274748917e-10,-1.8849538319099e-09,-0.0800008894519828,-2.6179289855721e-09,1.67540720880081e-09,5.9781606748237e-10,5.00259556002136e-11,4.01878183509074e-10,-9.07933450644447e-10,2.63462845832203e-05,2.56684957577251e-05,-2.17257275537567e-05,-2.03830008424476e-10,-2.16840432266274e-12,2.63882925927418e-05 +7.014,8.30779184899169e-09,-9.83628216030819e-09,-3.07639862889841e-09,-4.00140767742307e-10,-1.88384472604719e-09,-0.079999995090702,-1.0403697098695e-07,-3.85470509678452e-08,6.06381769449671e-07,4.96078872425142e-11,4.01813998740552e-10,5.67967759629369e-07,3.88035957387331e-10,-4.7249530667628e-10,3.64075089553889e-10,-1.94722710175663e-10,1.82145965200665e-11,2.55004350918238e-10 +7.016,-2.00583088015311e-06,-1.48623906173762e-06,1.51678266474553e-06,-4.00089843199947e-10,-1.88334657591493e-09,-0.0800008871801118,-2.61637684174255e-09,1.6735172275741e-09,5.99272367840586e-10,4.9247064759511e-11,4.01951041895154e-10,-9.06913433240775e-10,1.86131587031369e-05,1.67025241294021e-05,-3.51076685084831e-05,-1.68701858041497e-10,-4.33680891302277e-13,1.48149582878916e-05 +7.018,8.29732634162472e-09,-9.82958809139789e-09,-3.07400153942705e-09,-3.99943779483269e-10,-1.88223692187961e-09,-0.0799999950943297,-2.95843361744105e-08,2.82630455497558e-08,4.65951095415754e-07,4.89330798103483e-11,4.01812264016987e-10,6.27227592780929e-07,4.49618641074859e-10,-5.64869331957684e-10,2.48499137900356e-10,-1.61329283268541e-10,-5.72458747295363e-11,3.2439329005793e-10 +7.02,-2.00594921749781e-06,-1.48612600955542e-06,1.51864646912719e-06,-3.99894110880705e-10,-1.88173932685887e-09,-0.0800008846712014,-2.61457836717825e-09,1.67125775024627e-09,6.00266364392187e-10,4.86017476264368e-11,4.01722058396236e-10,-9.05615860080543e-10,1.93862769262161e-05,1.42015910750014e-05,-4.48763801726583e-05,-1.54390389359221e-10,-3.85975973181716e-11,2.17520879784033e-06 +7.022,8.28686802815601e-09,-9.8229030603969e-09,-3.07160047396948e-09,-3.99749372492764e-10,-1.88063003364602e-09,-0.0799999950979522,4.79607715304625e-08,8.50694098497678e-08,2.86445574725101e-07,4.83155182529113e-11,4.01657873627714e-10,6.35928427972291e-07,5.25404372641467e-10,-6.75891634234842e-10,7.41594286313624e-11,-1.33140026778551e-10,-5.81132364229343e-11,3.2612801343345e-10 +7.024,-2.00575737441169e-06,-1.48578573191602e-06,1.51979225142609e-06,-3.99700848807694e-10,-1.88013269536436e-09,-0.0800008821274877,-2.61247674968769e-09,1.66855418370933e-09,6.00563002106713e-10,4.80691875193226e-11,4.01489605450544e-10,-9.04311348026809e-10,1.03072741585293e-05,4.91762641891906e-06,-3.86881722405105e-05,-1.1232334507218e-10,-7.71951947032715e-11,-8.82329452559702e-06 +7.026,8.27641812115726e-09,-9.81622884366207e-09,-3.06919822196106e-09,-3.99557095742686e-10,-1.87902407522422e-09,-0.0799999951015694,8.91898681645753e-08,1.04739915525442e-07,1.31692885763076e-07,4.78662248726227e-11,4.01349092848901e-10,6.00635249869907e-07,5.84059710462839e-10,-7.33571189996151e-10,-7.54604712383284e-11,-9.58434720503655e-11,-9.88792381529362e-11,3.5735303610133e-10 +7.028,-2.00540061493903e-06,-1.48536677225392e-06,1.52031902296915e-06,-3.99509383908203e-10,-1.87852729899296e-09,-0.0800008797249467,-2.61014051084583e-09,1.66561989894935e-09,6.00261160221759e-10,4.76858136311211e-11,4.01094088497933e-10,-9.02881935882404e-10,4.38167866790582e-06,-1.28832144604658e-06,-2.88519531616636e-05,-7.54604712023331e-11,-1.27068494593018e-10,-1.62962690216872e-05 +7.03,8.26597755911387e-09,-9.80956636406627e-09,-3.06679717732017e-09,-3.99366352488162e-10,-1.87741969887023e-09,-0.0799999951051809,1.06716582836201e-07,9.9586629741255e-08,1.62850731164084e-08,4.75643829878133e-11,4.00840818870529e-10,5.35450173783151e-07,6.27427797072674e-10,-7.85396053656252e-10,-1.96457433621075e-10,-5.117434253868e-11,-1.35308431103962e-10,3.14852310839755e-10 +7.032,-2.00497374860768e-06,-1.48496842573495e-06,1.52038416326161e-06,-3.99319126376252e-10,-1.87692393571748e-09,-0.080000877583146,-2.60763079965754e-09,1.66247831473472e-09,5.99475330487275e-10,4.74811162609664e-11,4.00552854773517e-10,-9.01622526639045e-10,-2.13707328743688e-06,-6.9719586007266e-06,-1.53421392343903e-05,-3.29597460461996e-11,-1.2316536681661e-10,-1.95556921351056e-05 +7.034,8.25554703591524e-09,-9.80291645080733e-09,-3.06439927599822e-09,-3.99176428023118e-10,-1.87581748745114e-09,-0.0799999951087874,9.8168289686454e-08,7.16987953383516e-08,-4.50834838211461e-08,4.74325440036285e-11,4.00348157403263e-10,4.57227405242737e-07,6.5277102314379e-10,-7.89516022096035e-10,-2.88831458783374e-10,-3.1658703439205e-11,-1.27935856375493e-10,4.01588484738579e-10 +7.036,-2.00458107544894e-06,-1.4846816305536e-06,1.52020382932633e-06,-3.99129396200237e-10,-1.87532254308787e-09,-0.0800008757542364,-2.60501971556497e-09,1.65932025064634e-09,5.98320004652142e-10,4.73544814472096e-11,4.00041111348015e-10,-9.0001617270009e-10,-5.61132191330304e-06,-9.49003983035812e-06,-3.47430612925276e-06,-2.12503625780833e-11,-1.50053580649759e-10,-1.89607721884112e-05 +7.038,8.24512695705298e-09,-9.79627916980474e-09,-3.06200599597961e-09,-3.98987010097329e-10,-1.87421732300574e-09,-0.0799999951123875,7.57230020332393e-08,3.37386360169149e-08,-5.89807083381587e-08,4.73475425533162e-11,3.99747943080663e-10,3.81384316489084e-07,6.48474871746258e-10,-7.59808882385901e-10,-3.47378376031203e-10,8.67361740617059e-13,-1.53523027601773e-10,3.33934269075657e-10 +7.04,-2.0042781834408e-06,-1.48454667600953e-06,1.51996790649297e-06,-3.98940006030024e-10,-1.87372355131554e-09,-0.0800008742286991,-2.60242581607798e-09,1.65628101511679e-09,5.96930491148017e-10,4.7357950894172e-11,3.99427019237608e-10,-8.98680435623788e-10,-7.29204026263845e-06,-9.94759851748369e-06,5.7621151773634e-06,-3.46944695458256e-12,-1.45716772004247e-10,-1.55246874383941e-05 +7.042,8.23471725378867e-09,-9.78965404574428e-09,-3.05961827401502e-09,-3.98797578293753e-10,-1.87261961492879e-09,-0.0799999951159822,4.65548409826887e-08,-6.05175805301549e-09,-3.59322476287076e-08,4.73336647654979e-11,3.99165075992647e-10,3.19285566735514e-07,6.38324029195112e-10,-7.53737350403707e-10,-3.32416386117132e-10,-4.33680869257009e-12,-1.49619899825136e-10,2.98372437917815e-10 +7.044,-2.00409196407687e-06,-1.48457088304174e-06,1.51982417750246e-06,-3.98750671370962e-10,-1.87212689101157e-09,-0.0800008729515568,-2.5998725199612e-09,1.65326606571518e-09,5.95600825603548e-10,4.73406036594018e-11,3.98828539638307e-10,-8.97486945872116e-10,-6.81829508759804e-06,-8.34901115257002e-06,1.09630522975698e-05,6.93889390653501e-12,-1.46584133697884e-10,-1.05037012074028e-05 +7.046,8.22431776370883e-09,-9.78304098148142e-09,-3.0572358707126e-09,-3.98608215879115e-10,-1.87102430077024e-09,-0.0799999951195722,1.92816606322935e-08,-3.94478026632993e-08,7.91996156157636e-09,4.7361420341124e-11,3.98578739457855e-10,2.77270761905898e-07,6.09728196607363e-10,-6.93238868995594e-10,-3.30898503009577e-10,-5.20417042530405e-12,-1.25333771117211e-10,3.85975973355122e-10 +7.048,-2.00401483743434e-06,-1.48472867425239e-06,1.51985585734871e-06,-3.98561225689598e-10,-1.87053257605374e-09,-0.0800008718424738,-2.59743360717477e-09,1.6504931102392e-09,5.9427723159151e-10,4.73197869777006e-11,3.98327204553838e-10,-8.95943041978696e-10,-5.18686614113027e-06,-5.69907163995356e-06,1.25361971237826e-05,-4.33680869257106e-12,-1.30971622458378e-10,-5.08357592134285e-06 +7.05,8.21392802928013e-09,-9.77643900904046e-09,-3.05485876178624e-09,-3.98418936731204e-10,-1.86943099195203e-09,-0.0799999951231559,-1.46580393222529e-09,-6.2244089223111e-08,5.80647500567012e-08,4.73440731063537e-11,3.98054852968022e-10,2.56936458220529e-07,5.90930841730138e-10,-6.70470623556519e-10,-2.91433543997029e-10,6.0715321632912e-12,-1.48752538087096e-10,2.94902990965707e-10 +7.052,-2.00402070065007e-06,-1.48497765060929e-06,1.52008811634893e-06,-3.98371849397172e-10,-1.86894035664187e-09,-0.080000870814728,-2.59506988380785e-09,1.64781122774497e-09,5.93111497415522e-10,4.73440731063537e-11,3.9773219440149e-10,-8.94763430014833e-10,-2.90936742199888e-06,-2.60653651440802e-06,1.1143040049708e-05,3.03576608558763e-12,-1.39645239794029e-10,-1.91852610173131e-07 +7.054,8.2035477497449e-09,-9.76984776412948e-09,-3.05248631579658e-09,-3.98229560438779e-10,-1.86784006317442e-09,-0.079999995126735,-1.31032736202221e-08,-7.26702352807442e-08,1.02636910255538e-07,4.73562161706961e-11,3.97496272008845e-10,2.56169047779837e-07,5.75386092794191e-10,-6.50954984268965e-10,-2.65629532226072e-10,-6.93889390128105e-12,-1.10588621571471e-10,3.09648140412263e-10 +7.056,-2.00407311374455e-06,-1.48526833155041e-06,1.52049866398996e-06,-3.98182424532489e-10,-1.86735037155383e-09,-0.0800008697900518,-2.59276833943668e-09,1.6452074078079e-09,5.92048979286618e-10,4.73163175307486e-11,3.97289839915204e-10,-8.93524837453184e-10,-6.88273927867932e-07,2.41986552328025e-07,7.97639927197764e-06,-2.03830008453567e-11,-1.23165366816416e-10,3.57808574434591e-06 +7.058,8.19317667638715e-09,-9.76326693449825e-09,-3.05011811987943e-09,-3.98040295168656e-10,-1.86625090381476e-09,-0.0799999951303091,-1.58563693316935e-08,-7.17022890714323e-08,1.34542507343445e-07,4.72746841673147e-11,3.9700361054158e-10,2.70481390757219e-07,5.59001087750133e-10,-6.20814164056379e-10,-2.21827764523364e-10,-8.23993651351424e-12,-1.1839487725744e-10,3.00974523131521e-10 +7.06,-2.00413653922188e-06,-1.4855551407067e-06,1.52103683401933e-06,-3.9799332579582e-10,-1.86576235711167e-09,-0.0800008687081262,-2.59053233508568e-09,1.64272415115167e-09,5.91161668228524e-10,4.72833577846945e-11,3.96816260406174e-10,-8.92320939360658e-10,1.09587013942448e-06,2.46186101018499e-06,4.1333878594221e-06,-3.03576608033536e-12,-9.36750676807134e-11,5.96276066718139e-06 +7.062,8.18281454704681e-09,-9.75669603789364e-09,-3.04775347320652e-09,-3.97851161737517e-10,-1.86466363877313e-09,-0.0799999951338784,-1.14728887739951e-08,-6.18548450306912e-08,1.51076058781135e-07,4.72625411029933e-11,3.96628910270857e-10,2.94332433425947e-07,5.57103733660859e-10,-6.27319376909037e-10,-2.23128807064739e-10,-2.60208521370329e-11,-1.11889664178506e-10,3.33066907338082e-10 +7.064,-2.00418243077698e-06,-1.48580256008682e-06,1.52164113825445e-06,-3.97804275631408e-10,-1.86417584147058e-09,-0.0800008675307965,-2.58830392015103e-09,1.64021487364403e-09,5.90269153000265e-10,4.71792743761464e-11,3.9636870174946e-10,-8.90988671731306e-10,2.19807921593059e-06,3.82844884267218e-06,5.60589118520021e-07,-2.73218947492582e-11,-1.17093834650458e-10,6.97296300559733e-06 +7.066,8.1724613313662e-09,-9.75013517839907e-09,-3.04539239659452e-09,-3.97662444640012e-10,-1.86307816396614e-09,-0.0799999951374423,-2.68057191027374e-09,-4.65410496600042e-08,1.53318415255215e-07,4.71532535239963e-11,3.96160534932255e-10,3.22224285448333e-07,5.57415442072667e-10,-6.37294037077898e-10,-1.88651178045208e-10,-1.43114686794243e-11,-1.14058068567447e-10,3.19189119629121e-10 +7.068,-2.00419315306462e-06,-1.48598872428546e-06,1.52225441191547e-06,-3.97615662617312e-10,-1.86259119933085e-09,-0.0800008662418993,-2.58607425838274e-09,1.63766569749572e-09,5.89514548288084e-10,4.71220285014287e-11,3.9591246947519e-10,-8.89711915252789e-10,2.60011154588279e-06,4.33419034169287e-06,-2.14356071954173e-06,-2.34187669230686e-11,-9.3241386811758e-11,6.81447953622804e-06 +7.07,8.16211703433267e-09,-9.74358451560908e-09,-3.04303433840136e-09,-3.97473956526007e-10,-1.86149451408824e-09,-0.0799999951410012,7.71987427325859e-09,-2.92042882932307e-08,1.44744172377047e-07,4.7059578456304e-11,3.95787569385008e-10,3.49482203593248e-07,3.31753938555305e-08,-2.33782177643502e-08,-1.16955056750055e-08,2.01401395561213e-09,-5.3854490311492e-09,1.41822317778021e-08 +7.072,-2.00416227356752e-06,-1.48610554143863e-06,1.52283338860498e-06,-3.97427424303487e-10,-1.86100804905331e-09,-0.0800008648439705,-2.45337268296063e-09,1.54415282643833e-09,5.42732525588068e-10,5.51780843238764e-11,3.74370673350596e-10,-8.32982988141587e-10,-0.0219711704574267,-0.0139851989260087,0.0174441051024616,3.17974813146287e-09,-1.05809458417425e-08,-0.0186838147618259 +7.074,8.15230354360083e-09,-9.73740790430333e-09,-3.04086340829901e-09,-3.97253244188711e-10,-1.85999703139483e-09,-0.0799999951443331,-8.78769619554241e-05,-5.59699999923217e-05,6.99211645822156e-05,5.97785709821541e-11,3.53463786018043e-10,-7.43857768437023e-05,-1.89645526928515e-08,1.55875746337349e-08,2.66171633342119e-09,5.66820895772232e-10,3.38878231029914e-09,-1.05956909912177e-08 +7.076,-2.35567012138926e-06,-1.70998554140794e-06,1.80251804693388e-06,-3.97188310019558e-10,-1.85959419390924e-09,-0.0800011623870779,-2.52923089373205e-09,1.60650312497328e-09,5.53379390921753e-10,5.74453679069655e-11,3.87925802591794e-10,-8.75365752106463e-10,0.0481803080020956,0.0309439746257158,-0.0396576507334183,-1.60245081093025e-09,1.44229246601598e-08,0.0309546353601628 +7.078,8.1421866200259e-09,-9.73098189180344e-09,-3.03864989073532e-09,-3.97023462717083e-10,-1.85844532818447e-09,-0.0799999951478346,0.00010484427005298,6.78058985105553e-05,-8.87094383514753e-05,5.33687677384324e-11,4.11155484658688e-10,4.94327645969627e-05,-1.98787519649764e-08,9.79424874545635e-09,8.54741624703933e-09,-3.10949183068592e-09,2.16233281282711e-09,-6.41414005247425e-09 +7.08,-1.93629304117739e-06,-1.43876194736575e-06,1.44768029352801e-06,-3.96974834948605e-10,-1.85794957197061e-09,-0.0800009646560195,-2.60874590159195e-09,1.6456801199551e-09,5.87569055909907e-10,4.50074005842232e-11,3.96575133843102e-10,-9.01022312316357e-10,-0.0390460759075714,-0.0272005753047327,0.0321111239814025,-3.33413852083038e-09,-4.99123312127709e-09,-0.0129000687874886 +7.082,8.13175163641953e-09,-9.72439917132362e-09,-3.03629961451168e-09,-3.96843433114746e-10,-1.85685902764909e-09,-0.0799999951514387,-5.13400335772884e-05,-4.09964027083635e-05,3.97350575741207e-05,4.00322136551123e-11,3.91190552173582e-10,-2.1675105529859e-06,-4.47955745833101e-09,1.9389871651813e-09,4.63409692560389e-09,-1.52135248843382e-09,7.74120351132462e-10,-5.61183044428338e-10 +7.084,-2.14165317548656e-06,-1.60274755819922e-06,1.60662052382451e-06,-3.96814706093984e-10,-1.85638480976191e-09,-0.0800009733260617,-2.62666413142527e-09,1.65343606861582e-09,6.06105443612325e-10,3.89219906304873e-11,3.99671615247632e-10,-9.0326704449407e-10,0.020884798208835,0.0164690281093527,-0.0149843826745504,-3.26561694350412e-10,3.41783892856501e-09,0.00377628064495554 +7.086,8.12124497989383e-09,-9.71778542704915e-09,-3.03387519273723e-09,-3.96687745152224e-10,-1.8552603411881e-09,-0.0799999951550517,3.21991592580609e-05,2.48797097290545e-05,-2.02024731240877e-05,3.87259668777105e-11,4.04861907887844e-10,1.29376120268379e-05,1.88674217294105e-09,-4.43438688454855e-10,1.77332107335132e-09,-2.1900883883996e-10,2.73652628357589e-10,1.11802928021716e-09 +7.088,-2.01285653845433e-06,-1.50322871928302e-06,1.52581063132817e-06,-3.96659802226473e-10,-1.85476536213036e-09,-0.0800009215756136,-2.61911716273351e-09,1.65166231386201e-09,6.13198727905729e-10,3.80459552751275e-11,4.00766225761062e-10,-8.98794927373202e-10,-0.0105789515898721,-0.00759830299482433,0.0078676424858555,-7.54604712071401e-11,-1.47278023112678e-09,-0.00105114240488912 +7.09,8.1107685112429e-09,-9.71117877779371e-09,-3.03142239782561e-09,-3.96535561331124e-10,-1.85365727628506e-09,-0.0799999951586469,-1.01166471014226e-05,-5.51350225023944e-06,1.12680968193308e-05,3.8424124992882e-11,3.98970786963337e-10,8.73304240728192e-06,3.91940440620668e-09,-1.71217207088042e-09,-2.79941000969718e-10,3.78603398629742e-10,-1.37043154624383e-10,1.60028240663813e-09 +7.092,-2.05332312686003e-06,-1.52528272828398e-06,1.5708830186055e-06,-3.96506105726502e-10,-1.85316947898251e-09,-0.080000886643444,-2.60343954510868e-09,1.64481362557848e-09,6.1207896390185e-10,3.95603688696467e-11,4.00218053142564e-10,-8.92393797746649e-10,0.00513765506960444,0.0036153893600684,-0.00435042611418689,6.07153216594013e-10,4.97431956758498e-10,-0.000786903531050722 +7.094,8.10035475306246e-09,-9.70459952329139e-09,-3.02897408197e-09,-3.96377319855645e-10,-1.85205640407249e-09,-0.0799999951622165,1.04339731769974e-05,8.94805519003576e-06,-6.13360763741867e-06,4.08527378592583e-11,4.00960514790371e-10,5.58542828307868e-06,3.68395635163624e-09,-2.20591774004821e-09,-1.52742402056396e-09,5.42101086245067e-10,-3.93348548155618e-10,1.46323925193723e-09 +7.096,-2.01158723415204e-06,-1.48949050752384e-06,1.54634858805583e-06,-3.96342694775065e-10,-1.85156563692335e-09,-0.0800008643017308,-2.58870371970214e-09,1.63598995461829e-09,6.05969267819595e-10,4.17287732146267e-11,3.98644658949942e-10,-8.86540840738901e-10,-0.00296070932119663,-0.0023952547491013,0.00182155795482064,4.81385764581295e-10,-8.99887803185221e-10,-0.000738661521705906 +7.098,8.08999993818366e-09,-9.69805556347292e-09,-3.02655020489873e-09,-3.96210404762787e-10,-1.85046182543669e-09,-0.0799999951657626,-1.40886410778782e-06,-6.32963806368388e-07,1.15262418186311e-06,4.27782809175833e-11,3.97360963577631e-10,2.63078219625538e-06,2.76269621343478e-09,-2.30284541444948e-09,-2.14628662068546e-09,5.16080234100669e-10,-5.74193470570321e-10,1.09634523686631e-09 +7.1,-2.0172226905832e-06,-1.49202236274931e-06,1.55095908478328e-06,-3.96171581651394e-10,-1.84997619306904e-09,-0.0800008537786021,-2.5776529348484e-09,1.62677857296049e-09,5.97384121336852e-10,4.37930941510296e-11,3.96347885067661e-10,-8.82155459791435e-10,0.00119489182571589,0.00073680146727737,-0.0011953065152253,5.06972935856597e-10,-4.08961059439476e-10,-0.00041238779231719 +7.102,8.07968932644426e-09,-9.69154844918108e-09,-3.02416066841338e-09,-3.96035232386183e-10,-1.84887643389642e-09,-0.0799999951692913,3.37070319507626e-06,2.31424206274142e-06,-3.62860187903864e-06,4.48061726610099e-11,3.95725119339873e-10,9.81231026986437e-07,1.94696960362542e-09,-2.09641332062814e-09,-2.23670908180491e-09,4.36282954210693e-10,-6.06719535701022e-10,7.70217223284906e-10 +7.104,-2.00373987780289e-06,-1.48276539449835e-06,1.53644467726713e-06,-3.9599235696075e-10,-1.84839329259168e-09,-0.0800008498536779,-2.5698650564339e-09,1.61839291967798e-09,5.88437285009634e-10,4.55382259678722e-11,3.93921006924857e-10,-8.79074590898296e-10,0.0603086943923501,0.0440616792268722,-0.0447634772805704,3.92914867308497e-09,3.75741104894379e-09,0.0487503295986887 +7.106,8.06940986621853e-09,-9.68507487750236e-09,-3.02180691927334e-09,-3.95853079482311e-10,-1.84730074986872e-09,-0.0799999951728076,0.00024460548076445,0.000178560958970211,-0.000182682511001301,6.05227673533481e-11,4.10754763535646e-10,0.00019598254942172,4.47299532484118e-08,-2.99625775580235e-08,-1.90049798815268e-08,4.10045261633673e-09,-7.18782672273015e-09,1.74348382953498e-08 +7.108,-1.02531795474498e-06,-7.68521558617424e-07,8.05714633261845e-07,-3.95750265891337e-10,-1.84675027353753e-09,-0.0800000659234803,-2.39094524344023e-09,1.49854260944587e-09,5.12417365483518e-10,6.19400364332209e-11,3.65169700033933e-10,-8.09335237716889e-10,-0.167418259910119,-0.121366551872891,0.12355372422194,-3.27212215655789e-09,-2.31785077242413e-08,-0.119403611957894 +7.11,8.05984608524477e-09,-9.67908070706458e-09,-3.01975724981141e-09,-3.95605319336578e-10,-1.84584007106858e-09,-0.0799999951760449,-0.000425067558876099,-0.000306905248521407,0.000311532385886513,4.7434278727115e-11,3.18040732638671e-10,-0.00028163189840991,-4.26448698404058e-08,2.76881382405896e-08,1.20003833259697e-08,-2.58126853225062e-09,6.01385261036418e-09,-1.82250048386613e-08 +7.112,-2.72558819024919e-06,-1.99614255270292e-06,2.05184417680776e-06,-3.95560528776429e-10,-1.84547811060698e-09,-0.0800011924510739,-2.56152472280183e-09,1.60929516240822e-09,5.60418898787391e-10,5.16149623042196e-11,3.89225110475387e-10,-8.82235257071526e-10,0.166372735556607,0.119003018290092,-0.123701773106317,1.13581019589318e-09,2.73843447917522e-08,0.0867511966923753 +7.114,8.04959998635356e-09,-9.67264352641495e-09,-3.01751557421626e-09,-3.95398859487361e-10,-1.84428317062668e-09,-0.0799999951795738,0.000240423383350254,0.00016910682463891,-0.0001832747065387,5.19775195106873e-11,4.27578111805667e-10,6.53728883595532e-05,-9.75066381788673e-09,3.75480896366163e-09,5.51642065357391e-09,-2.19269047363706e-09,9.67975699573237e-10,-2.29156971171586e-09 +7.116,-1.76389465684807e-06,-1.3197152541472e-06,1.31874535065288e-06,-3.95352618698386e-10,-1.84376779815976e-09,-0.0800009309595205,-2.60052737807338e-09,1.62431439826287e-09,5.82484581401689e-10,4.28442004096704e-11,3.9309701327368e-10,-8.9140153591839e-10,-0.0885835359594516,-0.0635423076803229,0.067810682083381,-3.40266009812562e-09,-1.2431462109695e-08,-0.0169692784008459 +7.118,8.03919787684126e-09,-9.6661462688219e-09,-3.01518563589065e-09,-3.95227482685723e-10,-1.84271078257359e-09,-0.0799999951831395,-0.000113910760487592,-8.506240608241e-05,8.79680217948542e-05,3.83668791181833e-11,3.77852263366882e-10,-2.50422524383814e-06,-5.10103569771776e-10,5.09141340289463e-10,2.87899044885097e-09,-7.22512327742121e-10,4.31078783802153e-10,4.64905891512411e-10 +7.12,-2.21953769879838e-06,-1.65996487847681e-06,1.67061743783226e-06,-3.95199151181913e-10,-1.84225638910629e-09,-0.0800009409764214,-2.60256779235247e-09,1.62635096362403e-09,5.94000543197092e-10,3.99541510987022e-11,3.94821328408889e-10,-8.89541912352341e-10,0.0447926321350381,0.0337486297462842,-0.0332717654933381,7.38992200763988e-10,6.5975870599878e-09,0.00372030825850785 +7.122,8.02878760567186e-09,-9.6596408649674e-09,-3.01280963371786e-09,-3.95067666081328e-10,-1.84113149725995e-09,-0.0799999951866976,6.52597680525407e-05,4.99321129027119e-05,-4.51190401784837e-05,4.13228479212389e-11,4.0424261160683e-10,1.23770077901916e-05,3.21899625025324e-09,-9.81202966189434e-10,8.37220917560126e-10,1.03649727687373e-10,1.17093834606488e-10,1.42334061208803e-09 +7.124,-1.95849862658819e-06,-1.46023642686594e-06,1.4901412771183e-06,-3.95033859790228e-10,-1.84063941865986e-09,-0.0800008914683903,-2.58969180735146e-09,1.62242615175927e-09,5.97349426867333e-10,4.03687500094518e-11,3.95289703747315e-10,-8.83848549903988e-10,-0.0231869018860367,-0.0171374014608084,0.0172885623965737,-2.13370987542852e-10,-3.32936803124604e-09,-0.00143207052292968 +7.126,8.01842883844245e-09,-9.65315116036036e-09,-3.01042023601039e-09,-3.9490619108129e-10,-1.83955033844496e-09,-0.079999995190233,-2.74878394916165e-05,-1.86174929405293e-05,2.40352094078188e-05,4.04693639710674e-11,3.90925139481844e-10,6.64872569847226e-06,3.74812756772086e-09,-1.69374063376719e-09,-4.89842541495892e-10,3.70797142992365e-10,-1.83880688431629e-10,1.45803508150976e-09 +7.128,-2.06844998455464e-06,-1.53470639862804e-06,1.58628211474957e-06,-3.94871982334344e-10,-1.83907571810193e-09,-0.0800008648734875,-2.57469929708057e-09,1.6156511892242e-09,5.95390056701349e-10,4.18519385814211e-11,3.94554180993588e-10,-8.7801640957795e-10,0.0114434353955249,0.00820941224244814,-0.00917403065212,6.42715047847159e-10,1.37476835468992e-09,-0.000666673911388728 +7.13,8.00813004125413e-09,-9.64668855560347e-09,-3.00803867578359e-09,-3.94738783326964e-10,-1.83797212172099e-09,-0.0799999951937451,1.82859020904782e-05,1.42201560292597e-05,-1.26609132006572e-05,4.30402241624557e-11,3.96424212900604e-10,3.98203005291764e-06,2.97960441056692e-09,-1.94093872927277e-09,-1.28434589355909e-09,3.96384314258289e-10,-3.7816971778477e-10,1.17440779328476e-09 +7.132,-1.99530637619272e-06,-1.477825774511e-06,1.53563846194693e-06,-3.94699821437694e-10,-1.83749002125033e-09,-0.0800008489453673,-2.56278087943831e-09,1.60788743430711e-09,5.90252673127112e-10,4.34374758384544e-11,3.93041502122449e-10,-8.7331877840481e-10,-0.00614714892378175,-0.00468469266026995,0.00434185289414494,2.33320307521268e-10,-1.29106794697373e-09,-0.000550857008445094 +7.134,7.99787891773637e-09,-9.64025700586624e-09,-3.00567766509108e-09,-3.94565033423611e-10,-1.8363999557125e-09,-0.0799999951972384,-6.30269360465154e-06,-4.51861461182223e-06,4.70649837592454e-06,4.39735053925409e-11,3.91259941112708e-10,1.77860201913702e-06,2.08647931817084e-09,-1.92532621781095e-09,-1.6447346956281e-09,3.13551268285288e-10,-4.96998275845645e-10,8.66494376202121e-10 +7.136,-2.02051715061133e-06,-1.49590023295829e-06,1.55446445545063e-06,-3.94523927416124e-10,-1.83592498148588e-09,-0.0800008418309592,-2.55443496216562e-09,1.60018612943586e-09,5.83673734344601e-10,4.46916809115954e-11,3.91053509019067e-10,-8.69852800900002e-10,0.00288216203296167,0.00203149485536656,-0.00241395771275803,3.51281503882862e-10,-7.54604712267129e-11,-0.000256155132695544 +7.138,7.98766117788771e-09,-9.63385626134849e-09,-3.0033429701537e-09,-3.94386266699964e-10,-1.83483574167642e-09,-0.0799999952007178,5.22595452719388e-06,3.60736480964312e-06,-4.94933247510654e-06,4.53786314080722e-11,3.90958099227801e-10,7.53981488354953e-07,1.48493684810479e-09,-1.74643285952807e-09,-1.65579355785191e-09,2.58040117049011e-10,-4.48426018561616e-10,6.5832755918136e-10 +7.14,-1.99961333250255e-06,-1.48147077371971e-06,1.5346671255502e-06,-3.94342412890492e-10,-1.83436114908897e-09,-0.0800008388150332,-2.5484952147732e-09,1.59320039799775e-09,5.77050560113192e-10,4.57238413797916e-11,3.8925980494482e-10,-8.67219490663276e-10,-0.00165284652071466,-0.00122166280260343,0.00122368673397308,1.89084858883991e-10,-6.75674793871268e-10,-9.71678649000076e-05 +7.142,7.97746719702862e-09,-9.6274834597565e-09,-3.00103476791325e-09,-3.94203371334445e-10,-1.83327870245664e-09,-0.0799999952041866,-1.3854315556655e-06,-1.27928640077116e-06,-5.45855392136756e-08,4.61349708436083e-11,3.88255400052316e-10,3.6531002875488e-07,1.14436184039008e-09,-1.49988528532836e-09,-1.41857012244829e-09,1.92120624967012e-10,-4.44956571566542e-10,4.83120488011488e-10 +7.144,-2.00515505872521e-06,-1.4865879193228e-06,1.53444878339334e-06,-3.94157873007117e-10,-1.83280812748876e-09,-0.0800008373537931,-2.54391776741164e-09,1.58720085685644e-09,5.713762796234e-10,4.64923238796595e-11,3.87479978658554e-10,-8.65287008711231e-10,0.00070006188288026,0.000532551753997732,-0.00047883910747094,1.71737624119143e-10,-2.76254713570857e-10,-2.55370499052867e-05 +7.146,7.96729152595897e-09,-9.62113465632908e-09,-2.99874926279475e-09,-3.94017402038926e-10,-1.83172878254201e-09,-0.0799999952076478,1.41481597585523e-06,8.50920615219535e-07,-1.96994196909722e-06,4.68219213400848e-11,3.87150381198033e-10,2.63161829133744e-07,9.41710902107526e-10,-1.18503297461446e-09,-1.03411203214817e-09,1.20996962446774e-10,-3.1138286395927e-10,3.94649590832682e-10 +7.148,-1.99949579482179e-06,-1.48318423686192e-06,1.52656901551695e-06,-3.93970585321757e-10,-1.83125952596397e-09,-0.0800008363011458,-2.54015092380321e-09,1.58246072495798e-09,5.67239831494807e-10,4.69763117294467e-11,3.86234447202717e-10,-8.637084103479e-10,-0.000464998958175148,-0.00032022527728446,0.000451656099889856,6.46184494827348e-11,-3.60822482981681e-10,-4.04743252800581e-06 +7.15,7.95713092226376e-09,-9.61480481342925e-09,-2.99648030346877e-09,-3.93829496792009e-10,-1.8301838447532e-09,-0.0799999952111026,-4.45179856845571e-07,-4.2998049391845e-07,-1.63317569537598e-07,4.70803951380157e-11,3.85707091266106e-10,2.46972099021719e-07,7.71979051723145e-10,-9.23306570001024e-10,-6.1669419567839e-10,2.94902990942214e-11,-2.34187669235479e-10,3.74700270763133e-10 +7.152,-2.00127651424917e-06,-1.48490415883759e-06,1.5259157452388e-06,-3.93782263741205e-10,-1.8297166975989e-09,-0.0800008353132574,-2.53706300759632e-09,1.57876749867798e-09,5.64773054712093e-10,4.70942729258235e-11,3.85297696525775e-10,-8.62209609264847e-10,0.000159750473591725,0.000130611639342591,-2.4691434227083e-05,-4.77048956154915e-12,-1.53956708514362e-10,2.25420983961127e-06 +7.154,7.94698267023337e-09,-9.60848974343453e-09,-2.99422121124993e-09,-3.93641119700305e-10,-1.82864265396709e-09,-0.0799999952145515,1.93822037521259e-07,9.24660634518578e-08,-2.62083306445919e-07,4.70613131797695e-11,3.85091264432048e-10,2.55988938380163e-07,6.20244957965403e-10,-6.86950496574316e-10,-2.19008838873377e-10,-3.81639164740963e-11,-1.02782365972992e-10,3.20056481365506e-10 +7.156,-2.00050122609909e-06,-1.48453429458378e-06,1.52486741201302e-06,-3.93594018488486e-10,-1.82817633254118e-09,-0.0800008342893017,-2.53458202776446e-09,1.57601969669168e-09,5.638970193566e-10,4.69416172599271e-11,3.84886567061883e-10,-8.60929383339385e-10,-0.000126214336155833,-8.63993045944286e-05,0.000171410651081032,-7.84962372853374e-11,-9.88792381092895e-11,7.57380096140546e-06 +7.158,7.93684434212232e-09,-9.60218566464777e-09,-2.9919656231725e-09,-3.93453353231266e-10,-1.82710310769885e-09,-0.0799999952179952,-3.11035307102129e-07,-2.53131154925895e-07,4.23559297878287e-07,4.67473282306281e-11,3.84695747479611e-10,2.86284142225788e-07,4.90980953669494e-10,-5.13694989236266e-10,7.11236625463605e-11,-1.11889664197923e-10,-6.93889390177283e-11,2.662800535147e-10 +7.16,-2.00174536732749e-06,-1.48554681920349e-06,1.52656164920453e-06,-3.93407029175563e-10,-1.82663754955126e-09,-0.0800008331441651,-2.53261810394978e-09,1.57396491673473e-09,5.64181514006785e-10,4.64940586031355e-11,3.84609011305812e-10,-8.59864263125326e-10,4.9260927056792e-05,3.90238182480241e-05,9.0647027644234e-06,-1.34007388521803e-10,-4.5970172134742e-11,1.32418086912063e-05 +7.162,7.92671386970652e-09,-9.59588980498083e-09,-2.98970889711647e-09,-3.93267376996853e-10,-1.82556467165362e-09,-0.0799999952214346,-1.13991598874983e-07,-9.7035881933816e-08,4.59818108935976e-07,4.6211298676541e-11,3.84511866791072e-10,3.39251376990608e-07,4.13067475330292e-10,-4.51461784710233e-10,2.21177243155663e-10,-1.45716771984599e-10,-2.16840434710463e-11,2.59341159706222e-10 +7.164,-2.00220133372299e-06,-1.48593496273122e-06,1.52840092164028e-06,-3.93222183980857e-10,-1.82509950208409e-09,-0.0800008317871596,-2.53096583404846e-09,1.57215906959589e-09,5.65066222979408e-10,4.5911191515197e-11,3.84522275131928e-10,-8.58826898486501e-10,-1.69974950997986e-05,-1.04222362077492e-05,3.19810642812173e-05,-1.53089346752388e-10,-2.7321894725293e-11,1.64415547149376e-05 +7.166,7.91659000637032e-09,-9.58960116870244e-09,-2.98744863222455e-09,-3.93083732230792e-10,-1.8240265825531e-09,-0.0799999952248699,-1.81981579274185e-07,-1.38724826764818e-07,5.8774236606086e-07,4.55989412895314e-11,3.84402579212171e-10,4.05017595850366e-07,3.90488964807336e-10,-4.31946145431057e-10,2.8557885226412e-10,-1.56992474573387e-10,-3.03576608082588e-11,2.70616862204745e-10 +7.168,-2.00292926004009e-06,-1.48648986203828e-06,1.53075189110452e-06,-3.93039788215699e-10,-1.82356189176724e-09,-0.0800008301670892,-2.52940387818923e-09,1.57043128501417e-09,5.66208538388464e-10,4.52832216169036e-11,3.84400844488695e-10,-8.57744431037683e-10,3.05705683613748e-05,2.45970268892474e-05,-2.60219135735847e-05,-1.52221985016998e-10,-8.67361737988499e-12,1.53499365995769e-05 +7.17,7.90647239085757e-09,-9.58331944356239e-09,-2.985183798071e-09,-3.92902599344325e-10,-1.82248897917514e-09,-0.0799999952283009,-5.96993058286987e-08,-4.03367192078385e-08,4.83654711766532e-07,4.49900533494634e-11,3.84367884742651e-10,4.66417342248666e-07,4.09367635416673e-10,-4.76615275111793e-10,2.29417179666499e-10,-1.431146867706e-10,-1.82145965190972e-11,2.84494650107816e-10 +7.172,-2.00316805726341e-06,-1.48665120891511e-06,1.53268650995159e-06,-3.92859828002301e-10,-1.82202442022827e-09,-0.0800008283014198,-2.52776640764756e-09,1.56852482391372e-09,5.6712620710713e-10,4.47107628698212e-11,3.84327986102619e-10,-8.56606452437251e-10,1.08356515898592e-05,9.92171622637985e-06,-2.51865297281679e-05,-1.38777878080611e-10,-4.94396190866721e-11,1.04645805909238e-05 +7.174,7.89636132522697e-09,-9.57704534426673e-09,-2.98291529324257e-09,-3.92723756292845e-10,-1.82095166723073e-09,-0.0799999952317273,-1.63566994692571e-08,-6.49854302314717e-10,3.82908592853849e-07,4.44349418371409e-11,3.84170126266305e-10,5.08275664612366e-07,4.56665954910533e-10,-5.31259064430829e-10,1.26634813777803e-10,-1.29236898957791e-10,-5.11743425199843e-11,2.7061686220484e-10 +7.176,-2.00323348406128e-06,-1.48665380833232e-06,1.534218144323e-06,-3.92682088234952e-10,-1.82048773972321e-09,-0.0800008262683172,-2.52593974382792e-09,1.566399787656e-09,5.67632746362241e-10,4.419381527399e-11,3.84123288732539e-10,-8.55523984988432e-10,1.81435804965202e-05,1.45697828801726e-05,-3.74252948510132e-05,-1.04083408556166e-10,-3.68628738431855e-11,3.73424034752617e-06 +7.178,7.88625756625166e-09,-9.57077974511611e-09,-2.98064476225712e-09,-3.92546981031749e-10,-1.8194151740758e-09,-0.0799999952351494,5.62176225168159e-08,5.76292772183692e-08,2.33207413449813e-07,4.40186082029163e-11,3.84022674770932e-10,5.23212626002469e-07,5.09846071751572e-10,-5.87637577574062e-10,-2.45029691296855e-11,-8.63024929322984e-11,-7.5026790357318e-11,3.1745439615125e-10 +7.18,-2.00300861357122e-06,-1.48642329122345e-06,1.5351509739768e-06,-3.92506013802141e-10,-1.81895164902413e-09,-0.0800008241754667,-2.52390035954092e-09,1.5640492373457e-09,5.67534734485723e-10,4.38486053022608e-11,3.83823181571109e-10,-8.54254167403827e-10,7.40116377472227e-06,5.65785461016208e-06,-2.94937169305406e-05,-7.37257477314407e-11,-1.0755285553185e-10,-2.69557119683752e-06 +7.182,7.8761619648135e-09,-9.56452354816673e-09,-2.97837462331918e-09,-3.9237158661054e-10,-1.81787988134952e-09,-0.0799999952385665,8.58222776157083e-08,8.02606956590201e-08,1.15232545727638e-07,4.37237052119905e-11,3.83592463348805e-10,5.12430341215118e-07,5.57754254967949e-10,-6.53773909921935e-10,-9.47592698437379e-11,-5.63785129668133e-11,-1.05384451144279e-10,2.9837243782057e-10 +7.184,-2.00266532446075e-06,-1.48610224844081e-06,1.53561190415971e-06,-3.92331118981293e-10,-1.81741727917073e-09,-0.0800008221257453,-2.52166934252104e-09,1.56143414170601e-09,5.67155697406348e-10,4.36230912503936e-11,3.83401643766532e-10,-8.53060677652545e-10,4.49325543136015e-06,2.5555848669945e-06,-2.30565922257329e-05,-4.81385764559399e-11,-8.45677694326046e-11,-7.32420374347044e-06 +7.186,7.86607528744342e-09,-9.5582778115999e-09,-2.97610600052955e-09,-3.92197094245539e-10,-1.81634627477445e-09,-0.0799999952419787,1.03795299341147e-07,9.04830351269969e-08,2.30061768247162e-08,4.35311509061668e-11,3.83254192271074e-10,4.83133526241239e-07,5.89562036483267e-10,-6.91504145697926e-10,-2.25514051908468e-10,-3.72965547359224e-11,-1.24032728553629e-10,3.40005801338822e-10 +7.188,-2.00225014326339e-06,-1.4857403163003e-06,1.53570392886701e-06,-3.92156994377668e-10,-1.81588426240165e-09,-0.0800008201932112,-2.51931109437511e-09,1.55866812512322e-09,5.66253641198714e-10,4.34739050314499e-11,3.82905512852318e-10,-8.5170065444719e-10,-1.56025195476743e-06,-2.54436575975349e-06,-1.18420852551052e-05,-1.99493199761447e-11,-1.47017814610266e-10,-9.54203469713227e-06 +7.19,7.85599804306591e-09,-9.55204313909941e-09,-2.97384098596476e-09,-3.92023198625413e-10,-1.81481465272304e-09,-0.0799999952453855,9.75542915220765e-08,8.03055720879818e-08,-2.43621641957099e-08,4.34513536262622e-11,3.82666121012633e-10,4.44965387452706e-07,6.0612322438816e-10,-7.06032454636041e-10,-2.63677968317038e-10,-1.51788304123833e-11,-1.05384451144331e-10,3.27862736912327e-10 +7.192,-2.0018599260973e-06,-1.48541909401195e-06,1.53560648021023e-06,-3.91983188963163e-10,-1.8143535979176e-09,-0.0800008184133496,-2.51688660147756e-09,1.55584399530468e-09,5.65198929325446e-10,4.34131897098004e-11,3.8248397504774e-10,-8.5038920349954e-10,-3.87482110470577e-06,-4.49046095446146e-06,-3.05269871881045e-06,-1.3010426067417e-11,-1.15792792000242e-10,-9.48992273650487e-06 +7.194,7.84593049666001e-09,-9.54581976311819e-09,-2.97158019024746e-09,-3.91849545866574e-10,-1.81328471682285e-09,-0.0799999952487871,8.20550071032551e-08,6.2343728270138e-08,-3.65729590709503e-08,4.33993119219925e-11,3.82202949844632e-10,4.07005696506691e-07,6.0320943132912e-10,-6.94106230911582e-10,-2.97721916595882e-10,-3.0357660853702e-12,-1.4571677200329e-10,3.26128013530851e-10 +7.196,-2.00153170606889e-06,-1.48516971909887e-06,1.53546018837394e-06,-3.91809591715475e-10,-1.81282478611822e-09,-0.0800008167853269,-2.51447376375224e-09,1.55306757038103e-09,5.64008041659062e-10,4.34010466454589e-11,3.81901107959727e-10,-8.49084691445417e-10,-5.53424375825536e-06,-5.58126808658742e-06,4.22374960527936e-06,-4.33680869235037e-12,-1.39645239837314e-10,-7.76043205393683e-06 +7.198,7.835872601605e-09,-9.53960749283667e-09,-2.96932415808082e-09,-3.91675941679992e-10,-1.81175711239101e-09,-0.0799999952521834,5.99180320702312e-08,4.00186559237858e-08,-1.9677960649831e-08,4.33819646872231e-11,3.81644368885283e-10,3.7596396829094e-07,5.92611354813871e-10,-6.75241112937766e-10,-2.96637714360749e-10,-1.43114686743982e-11,-1.33140026760021e-10,3.07913416938751e-10 +7.2,-2.00129203394061e-06,-1.48500964447518e-06,1.53538147653134e-06,-3.91636063856726e-10,-1.81129820864268e-09,-0.080000815281471,-2.51210331833299e-09,1.55036660592928e-09,5.62821490801619e-10,4.33438007707613e-11,3.81368547852687e-10,-8.47853037777662e-10,-5.19562818874661e-06,-4.93586638575125e-06,8.13094014860752e-06,2.40722482950029e-21,-1.14925430262305e-10,-5.11010157797887e-06 +7.202,7.82582418833166e-09,-9.53340602641295e-09,-2.96707287211762e-09,-3.91502566476909e-10,-1.8102316381996e-09,-0.0799999952555748,3.91355193152471e-08,2.0275190380783e-08,1.28457999445955e-08,4.33819646872328e-11,3.81184667164234e-10,3.55523561979027e-07,5.78516726850553e-10,-6.65483293557703e-10,-2.78639958360006e-10,8.67361735581274e-13,-1.02782365972795e-10,3.26128013530696e-10 +7.204,-2.00113549186334e-06,-1.48492854371365e-06,1.53543285973112e-06,-3.91462535997977e-10,-1.80977346997402e-09,-0.0800008138593767,-2.50978925142558e-09,1.54770467275505e-09,5.61706930968179e-10,4.33472702177036e-11,3.80957418388796e-10,-8.46548525723539e-10,-4.16035912317993e-06,-3.63700280829635e-06,9.43298304051094e-06,-8.23993651329614e-12,-1.43114686789215e-10,-2.24900653657804e-06 +7.206,7.81578503132596e-09,-9.52721520772193e-09,-2.96482604439374e-09,-3.91329177396038e-10,-1.80870780852604e-09,-0.079999995258961,2.24940828225255e-08,5.72717914759593e-09,5.05777321066435e-08,4.33490049411796e-11,3.80612208417077e-10,3.46527535832714e-07,5.61901328278429e-10,-6.46401335149914e-10,-2.38524477915636e-10,-3.03576608055185e-12,-1.54390389340787e-10,2.93168267393105e-10 +7.208,-2.00104551553205e-06,-1.48490563499706e-06,1.53563517065955e-06,-3.91289139978213e-10,-1.80825102114035e-09,-0.0800008124732666,-2.50754164611247e-09,1.54511906741445e-09,5.60752833056517e-10,4.33351271533814e-11,3.80339856831433e-10,-8.45375852653967e-10,-2.52420525074394e-06,-1.8727788417273e-06,8.43427693138688e-06,-1.17093834604391e-11,-8.76035355157194e-11,2.7844393459529e-07 +7.21,7.80575486474151e-09,-9.52103473145227e-09,-2.96258303306152e-09,-3.91155836887425e-10,-1.80718644909872e-09,-0.0799999952623425,1.23972618195508e-08,-1.76393621931245e-09,8.43148398321873e-08,4.33021674073378e-11,3.80261794275014e-10,3.47641311571095e-07,5.50747598707558e-10,-6.16260514926545e-10,-2.44379169709356e-10,-1.86482773691567e-11,-8.41340886059904e-11,3.07046055294819e-10 +7.212,-2.00099592648478e-06,-1.48491269074194e-06,1.53597243001888e-06,-3.91115931308583e-10,-1.80672997396325e-09,-0.0800008110827014,-2.50533865571764e-09,1.54265402535474e-09,5.59775316377679e-10,4.32605340439048e-11,3.80003320477009e-10,-8.44147668432787e-10,-9.47781024670167e-07,-2.20591990854188e-07,6.15154173259307e-06,-1.82145965001568e-11,-1.20563281601468e-10,2.14008151475896e-06 +7.214,7.79573351011864e-09,-9.51486411535085e-09,-2.96034393179601e-09,-3.90982794751249e-10,-1.80566643581681e-09,-0.0799999952657191,8.60613772086975e-09,-2.6463041827293e-09,1.08921006762562e-07,4.32293090213372e-11,3.79779541148608e-10,3.56201637630131e-07,5.3528416494412e-10,-6.28837259955961e-10,-1.8279648624999e-10,-1.64798730193787e-11,-1.23599047642253e-10,3.29597460388717e-10 +7.216,-2.00096150193389e-06,-1.48492327595867e-06,1.53640811404593e-06,-3.90943014072498e-10,-1.80521085579866e-09,-0.0800008096578948,-2.50319751905786e-09,1.54013867631492e-09,5.59044130432679e-10,4.31946145518273e-11,3.7950892428644e-10,-8.42829278591232e-10,3.65527513856506e-07,1.10969436764595e-06,3.34906191321717e-06,-2.38524477922862e-11,-9.67108337646504e-11,3.20798249078097e-06 +7.218,7.78572072004241e-09,-9.50870356064559e-09,-2.95810775527428e-09,-3.90810016293042e-10,-1.80414840011967e-09,-0.0799999952690904,1.00682477762956e-08,1.79247328785401e-09,1.2231725441543e-07,4.31338992301681e-11,3.79392697813549e-10,3.69033567593254e-07,5.36896915953847e-10,-6.06502695373864e-10,-1.95373231512903e-10,-2.5587171273055e-11,-8.50014503439272e-11,2.63677968395265e-10 +7.22,-2.00092122894279e-06,-1.48491610606552e-06,1.53689738306359e-06,-3.90770478475577e-10,-1.8036932850074e-09,-0.0800008081817605,-2.50104993139405e-09,1.53771266553343e-09,5.58262637506628e-10,4.3092265866735e-11,3.79168918485064e-10,-8.41774566717651e-10,1.1996562868525e-06,1.93106533367906e-06,7.53060374468463e-07,-1.86482773691413e-11,-1.16226472911474e-10,3.52056925276937e-06 +7.222,7.77571652031683e-09,-9.50255270998346e-09,-2.95587470472425e-09,-3.90637647229575e-10,-1.80263172444572e-09,-0.0799999952724575,1.48668729237061e-08,9.51673462257112e-09,1.25329495913304e-07,4.30593061206915e-11,3.78927791921903e-10,3.83115844604333e-07,5.33061550490835e-10,-6.23849929962786e-10,-1.7672495408415e-10,-2.81892564822321e-11,-1.12757025917438e-10,3.32199545602837e-10 +7.224,-2.00086176145109e-06,-1.48487803912703e-06,1.53739870104724e-06,-3.90598241251094e-10,-1.80217757383971e-09,-0.0800008066492972,-2.49891768519208e-09,1.53521726581357e-09,5.57555737690291e-10,4.29795088408061e-11,3.78717890381394e-10,-8.4044576853524e-10,1.55871765961132e-06,2.24667181560159e-06,-1.2182980318953e-06,-3.38271077791636e-11,-9.62771528957078e-11,3.22808620114556e-06 +7.226,7.76572084957607e-09,-9.4964118409202e-09,-2.95364448177349e-09,-3.90465729194212e-10,-1.8011168528842e-09,-0.0799999952758193,2.11017435621507e-08,1.85034218849765e-08,1.20456303785723e-07,4.29239976895748e-11,3.78542683310321e-10,3.96028189408914e-07,5.32424581992034e-10,-6.1300790840852e-10,-1.80844922401544e-10,-3.07913417009731e-11,-7.63278329640035e-11,2.8102520315488e-10 +7.228,-2.00077735447684e-06,-1.48480402543949e-06,1.53788052626239e-06,-3.90426545260336e-10,-1.80066340310647e-09,-0.0800008050651844,-2.49678798686412e-09,1.53276523417994e-09,5.56832358000685e-10,4.28563434740022e-11,3.78412579049538e-10,-8.39321667722621e-10,1.50427318713226e-06,2.124243706282e-06,-2.36744456504683e-06,-2.68882138800173e-11,-9.36750677237397e-11,2.53634266365008e-06 +7.23,7.75573369762861e-09,-9.49028077998348e-09,-2.95141715234148e-09,-3.90294303820315e-10,-1.799603202568e-09,-0.0799999952791766,2.71188363106805e-08,2.70003967101054e-08,1.10986525525535e-07,4.28164448340548e-11,3.78167983039426e-10,4.06173560063515e-07,5.35866923612348e-10,-6.29704621694518e-10,-1.75640751911742e-10,-2.55871712682785e-11,-1.3574211197418e-10,3.31332183864978e-10 +7.232,-2.0006688791316e-06,-1.48469602385265e-06,1.53832447236449e-06,-3.90255279481e-10,-1.79915073117431e-09,-0.0800008034404902,-2.49464451916967e-09,1.53024641569316e-09,5.56129794993038e-10,4.27539947889291e-11,3.77869610601642e-10,-8.3799633898716e-10,1.17511924670365e-06,1.7027340908795e-06,-2.72502484986169e-06,-3.38271077791798e-11,-1.19695919821423e-10,1.65823865058217e-06 +7.234,7.74575511955193e-09,-9.48415979432071e-09,-2.94919263316151e-09,-3.9012328784116e-10,-1.79809172412559e-09,-0.0799999952825286,3.18193132974945e-08,3.38113330736227e-08,1.00086426126089e-07,4.26811364029381e-11,3.7768919936014e-10,4.12806514665843e-07,5.42941343064834e-10,-6.32957228381997e-10,-1.8539857152588e-10,-2.9490299093979e-11,-7.37257477499863e-11,2.94902990962593e-10 +7.236,-2.00054160187841e-06,-1.48456077852036e-06,1.53872481806899e-06,-3.90084554935388e-10,-1.79763997437687e-09,-0.0800008017892641,-2.49247275379741e-09,1.52771458677963e-09,5.55388200706934e-10,4.26360335925532e-11,3.77574707610642e-10,-8.3681672702331e-10,7.13285835017198e-07,1.12965669804353e-06,-2.45608481469984e-06,-2.0383000845092e-11,-8.89045781647653e-11,7.77412856288965e-07 +7.238,7.73578522853674e-09,-9.47804893597359e-09,-2.94697108035868e-09,-3.8995274370679e-10,-1.79658142529515e-09,-0.0799999952858758,3.46724566375636e-08,3.83299598657973e-08,9.02620868672887e-08,4.25996043995577e-11,3.77333581047481e-10,4.15916166090999e-07,5.40407020209941e-10,-6.38161398640162e-10,-1.95156391016556e-10,-2.25514051853324e-11,-1.14491749393518e-10,3.05311331725458e-10 +7.24,-2.00040291205186e-06,-1.48440745868089e-06,1.53908586641646e-06,-3.8991415651779e-10,-1.79613064005268e-09,-0.0800008001255994,-2.49031112571657e-09,1.52516194118507e-09,5.54607575142868e-10,4.25458279718119e-11,3.77116740613068e-10,-8.35595481696408e-10,2.48776273563472e-07,5.42775243155851e-07,-1.79808056464486e-06,-2.2551405185339e-11,-1.02782365930699e-10,2.81085918660749e-08 +7.242,7.72582398403387e-09,-9.47194828820885e-09,-2.94475265005811e-09,-3.89782560394902e-10,-1.7950729583327e-09,-0.0799999952892182,3.56675617318174e-08,4.05010608384204e-08,8.306976460871e-08,4.25093987788163e-11,3.76922451583758e-10,4.16028600458464e-07,5.42385689451229e-10,-6.35776154030149e-10,-1.84964890656808e-10,-2.8189256486985e-11,-1.04517089448526e-10,3.19189119626116e-10 +7.244,-2.00026024180493e-06,-1.48424545443754e-06,1.5394181454749e-06,-3.89744118922675e-10,-1.79462295024635e-09,-0.080000798461485,-2.48814158295876e-09,1.52261883656895e-09,5.53867715580241e-10,4.24330709458639e-11,3.76698672255273e-10,-8.34318725217904e-10,-1.27804193553921e-07,4.40060314554525e-08,-9.89538312405839e-07,-3.29597460459112e-11,-1.0625181292448e-10,-5.12398283548311e-07 +7.246,7.71587141770204e-09,-9.46585781286258e-09,-2.94253717919579e-09,-3.89612828111119e-10,-1.79356616364368e-09,-0.0799999952925555,3.51563449576017e-08,4.06770849642423e-08,7.91116113590862e-08,4.23775597946327e-11,3.7649744433206e-10,4.1397900732427e-07,5.48213275852042e-10,-6.54641271662198e-10,-2.06648934045005e-10,-2.42861286613187e-11,-1.11455983310598e-10,2.89698820441824e-10 +7.248,-2.0001196164251e-06,-1.48408274609768e-06,1.53973459192033e-06,-3.89574608683496e-10,-1.79311696046902e-09,-0.080000796805569,-2.48594872985535e-09,1.5200002714823e-09,5.53041119844061e-10,4.23359264312186e-11,3.76252848322031e-10,-8.33159929936137e-10,-3.67485054429026e-07,-3.05534026895955e-07,-2.27695249803249e-07,-2.47198095303215e-11,-1.22731685904486e-10,-8.18807695234758e-07 +7.25,7.70592762278262e-09,-9.45977781177665e-09,-2.94032501471642e-09,-3.89443484405394e-10,-1.79206115225039e-09,-0.0799999952958881,3.36864047398857e-08,3.94549488566586e-08,7.82008303598733e-08,4.22786805565114e-11,3.76006517588442e-10,4.10703776543332e-07,5.36842705844189e-10,-6.16911036228641e-10,-2.04046848892478e-10,-2.47198095350197e-11,-1.12323345090384e-10,3.20923843101938e-10 +7.252,-1.99998487080614e-06,-1.48392492630225e-06,1.54004739524177e-06,-3.8940549396127e-10,-1.79161293439867e-09,-0.0800007951627539,-2.48380135903198e-09,1.51753262733739e-09,5.52224932448491e-10,4.22370471930786e-11,3.7580355494167e-10,-8.31876234563729e-10,-4.61642117763718e-07,-4.86022680436931e-07,3.57166770113569e-07,-1.7347234762112e-11,-8.3700407736732e-11,-9.07627271973636e-07 +7.254,7.69599241734649e-09,-9.4537076812673e-09,-2.93811611498662e-09,-3.89274536216622e-10,-1.79055793803062e-09,-0.0799999952992156,3.18398362688307e-08,3.75108581349106e-08,7.96294974403277e-08,4.22092916174629e-11,3.75671715957495e-10,4.07073267455437e-07,5.4200621841477e-10,-6.46835016020614e-10,-1.96891114492714e-10,-2.64545330063024e-11,-9.62771528958545e-11,3.07046055201719e-10 +7.256,-1.99985751146107e-06,-1.48377488286972e-06,1.54036591323153e-06,-3.892366567948e-10,-1.79011024753484e-09,-0.0800007935344608,-2.48163333415832e-09,1.51494528727331e-09,5.5143736799052e-10,4.21312290610534e-11,3.75418446330086e-10,-8.30648050342922e-10,-4.31125025001222e-07,-5.10259369477491e-07,7.05486016832202e-07,-3.12250225652466e-11,-1.18394877214596e-10,-8.22054230220419e-07 +7.258,7.68606588400986e-09,-9.44764790011821e-09,-2.93591036551466e-09,-3.89106011300377e-10,-1.7890562642453e-09,-0.0799999953025382,3.0115336168826e-08,3.54698206570009e-08,8.24514415076562e-08,4.2084391527202e-11,3.75198136448637e-10,4.03785050534555e-07,5.40013997198503e-10,-6.17127876662879e-10,-1.94289029340004e-10,-2.25514051900371e-11,-9.93129190205178e-11,3.05311331818041e-10 +7.26,-1.99973705011639e-06,-1.48363300358709e-06,1.54069571899756e-06,-3.89068319228691e-10,-1.78860945498904e-09,-0.0800007919193206,-2.47947327816953e-09,1.51247677576666e-09,5.5066021187316e-10,4.20410234402932e-11,3.75021194654004e-10,-8.2942680501565e-10,-3.14251608677726e-07,-4.13022480801539e-07,8.1849327662277e-07,-1.43114686791416e-11,-8.8470897295616e-11,-6.18514788020064e-07 +7.262,7.67614799089718e-09,-9.44159799301514e-09,-2.93370772466717e-09,-3.88937847206616e-10,-1.78755617946669e-09,-0.0799999953058559,2.88583297341149e-08,3.38177307337946e-08,8.57254146141477e-08,4.20271456524854e-11,3.74844252859454e-10,4.01310991382475e-07,5.3410509508299e-10,-6.35776153861522e-10,-2.04263689265692e-10,-1.99493199713998e-11,-1.16226472869624e-10,2.69749500468351e-10 +7.264,-1.99962161679746e-06,-1.48349773266415e-06,1.54103862065602e-06,-3.88900210646081e-10,-1.78711007797761e-09,-0.0800007903140767,-2.47733685778919e-09,1.50993367115121e-09,5.49843157116097e-10,4.19612261604076e-11,3.74556288762526e-10,-8.28347807013776e-10,-1.54774793240623e-07,-2.39239184017089e-07,7.40328154687979e-07,-3.03576608272678e-11,-1.27068494594532e-10,-3.54824676562791e-07 +7.266,7.66623864346602e-09,-9.43555825833053e-09,-2.9315083520387e-09,-3.88770002301975e-10,-1.78605795431164e-09,-0.0799999953091693,2.82392305611525e-08,3.28607739977263e-08,8.86867272328993e-08,4.19057150091763e-11,3.74335978881076e-10,3.99891692676224e-07,5.36815600789463e-10,-6.14308951014106e-10,-1.90169061084481e-10,-2.12503625830447e-11,-1.01047642496443e-10,3.34801630909495e-10 +7.268,-1.99950865987521e-06,-1.48336628956816e-06,1.54139336756495e-06,-3.88732587786045e-10,-1.78561273406208e-09,-0.0800007887145099,-2.47518959538604e-09,1.50747643534715e-09,5.49082480871759e-10,4.18762247100754e-11,3.7415209819254e-10,-8.27008600490139e-10,7.75254697520693e-09,-3.41415264133845e-08,5.37189867236784e-07,-2.08166817140426e-11,-9.67108338064532e-11,-8.11130676736474e-08 +7.27,7.65633788508448e-09,-9.42952835258914e-09,-2.92931202211522e-09,-3.88602497403134e-10,-1.78456134591887e-09,-0.0799999953124774,2.82702407490533e-08,3.27242078920728e-08,9.08354867018467e-08,4.18224482823202e-11,3.73949135545851e-10,3.99567240405529e-07,5.30825383511428e-10,-6.11923706067102e-10,-1.91036422761474e-10,-2.86229373512925e-11,-9.15066633370093e-11,3.09648140415943e-10 +7.272,-1.99939557891222e-06,-1.48323539273659e-06,1.54175670951176e-06,-3.88565297992916e-10,-1.7841169375199e-09,-0.0800007871162409,-2.47306629385199e-09,1.50502874052288e-09,5.48318335180713e-10,4.17617329606703e-11,3.73786071539192e-10,-8.25770007928475e-10,1.43796595726072e-07,1.63869568957829e-07,2.79066049787664e-07,-2.42861286613596e-11,-9.54097911579908e-11,1.63973001865458e-07 +7.274,7.64644561990907e-09,-9.42350823762705e-09,-2.92711874877449e-09,-3.88435450471292e-10,-1.78306620163271e-09,-0.0799999953157804,2.88454271319575e-08,3.3379686167904e-08,9.19517509009972e-08,4.17253037676747e-11,3.73567496381219e-10,4.00223132412991e-07,5.35419690492181e-10,-6.17995238400299e-10,-1.95373231512334e-10,-1.82145965000752e-11,-1.1319070682823e-10,2.84494650106059e-10 +7.276,-1.99928019720369e-06,-1.48310187399192e-06,1.54212451651536e-06,-3.88398396777845e-10,-1.78262266753437e-09,-0.0800007855153484,-2.47092461509002e-09,1.50255675956928e-09,5.47536842254664e-10,4.168887457467e-11,3.73333308711879e-10,-8.24632029328051e-10,2.36431981304787e-07,3.27474592579939e-07,2.60980473292248e-08,-1.60461921550972e-11,-9.97465998893865e-11,3.56112708743598e-07 +7.278,7.63656192144871e-09,-9.41749801058878e-09,-2.92492860140547e-09,-3.88268694972993e-10,-1.78157286839786e-09,-0.079999995319079,2.97911550571768e-08,3.46895845382239e-08,9.20561430903141e-08,4.16611189990543e-11,3.73168509981661e-10,4.01647583247965e-07,5.28562111476675e-10,-6.27319376916704e-10,-1.95373231451493e-10,-2.60208521373373e-11,-1.10588621572804e-10,3.03576608250154e-10 +7.28,-1.99916103258346e-06,-1.48296311565377e-06,1.54249274108773e-06,-3.88231752301849e-10,-1.78112999349445e-09,-0.0800007839087581,-2.46881036664411e-09,1.50004748206162e-09,5.46755349328858e-10,4.15847911661206e-11,3.72890954225588e-10,-8.2341772289505e-10,2.80738052164577e-07,4.41380439144349e-07,-1.79327256164468e-07,-3.64291929932083e-11,-1.03216046799926e-10,4.83774478832391e-07 +7.282,7.62668667998213e-09,-9.41149782066053e-09,-2.92274158000816e-09,-3.88102355808329e-10,-1.78008130458096e-09,-0.0799999953223726,3.0914107265835e-08,3.64551062948011e-08,9.13388340656563e-08,4.15154022270815e-11,3.72755645794461e-10,4.03582681163295e-07,5.34904694459837e-10,-6.03466929288682e-10,-1.89301699346311e-10,-2.60208521419604e-11,-8.28330459985812e-11,2.83627288367915e-10 +7.284,-1.9990373761544e-06,-1.48281729522859e-06,1.54285809642399e-06,-3.8806569069294e-10,-1.77963897091127e-09,-0.0800007822944273,-2.46667074786627e-09,1.49763361434446e-09,5.45998142531473e-10,4.14807077575528e-11,3.72559622041593e-10,-8.22283213741578e-10,2.81454221906115e-07,5.01500967487552e-07,-3.14864453959123e-07,-1.51788304170992e-11,-1.29670579849931e-10,5.46360699715479e-07 +7.286,7.61681999699067e-09,-9.40550728620315e-09,-2.92055758743803e-09,-3.87936432977298e-10,-1.77859106609279e-09,-0.0799999953256618,3.20399241534596e-08,3.84611101647515e-08,9.00793762498197e-08,4.14546869054131e-11,3.72236963475062e-10,4.05768123962157e-07,5.29836049029656e-10,-6.24934132137547e-10,-1.8800065667867e-10,-1.47451495435006e-11,-1.18394877214737e-10,3.24393289962028e-10 +7.288,-1.99890921645778e-06,-1.48266345078793e-06,1.54321841392899e-06,-3.87899871945319e-10,-1.77815002305737e-09,-0.0800007806713548,-2.46455140367016e-09,1.49513387781591e-09,5.45246139904758e-10,4.14217271593788e-11,3.72086042532734e-10,-8.2098564058173e-10,2.49348881388197e-07,5.12363372217632e-07,-3.76331995075663e-07,-2.2551405185402e-11,-7.02563007564148e-11,5.51544053506885e-07 +7.29,7.60696179137599e-09,-9.39952675069189e-09,-2.91837660287841e-09,-3.87770746068661e-10,-1.77710272192266e-09,-0.0799999953289457,3.30373196790122e-08,4.05105636536218e-08,8.85740482695172e-08,4.13644812846715e-11,3.71955938272036e-10,4.07974300176184e-07,5.30960909057214e-10,-6.03900610157417e-10,-1.82579645876823e-10,-3.81639164737897e-11,-8.54351312125208e-11,2.93168267485633e-10 +7.292,-1.99877706717907e-06,-1.48250140853332e-06,1.54357271012207e-06,-3.8773441402018e-10,-1.77666219930428e-09,-0.0800007790394576,-2.46242756003393e-09,1.49271827537528e-09,5.44515821321251e-10,4.12690714934836e-11,3.71744302007884e-10,-8.19812967511788e-10,1.97942397605513e-07,4.8427993386044e-07,-3.73218816967338e-07,-2.5153490403955e-11,-9.93129190202889e-11,5.11289795201422e-07 +7.294,7.59711208113585e-09,-9.39355587759039e-09,-2.91619853959313e-09,-3.87605669782687e-10,-1.77561574471463e-09,-0.079999995332225,3.38290892694344e-08,4.24476833890638e-08,8.70811730016477e-08,4.12638673230557e-11,3.71558686595955e-10,4.1001945935699e-07,5.31421694707122e-10,-6.10622663460946e-10,-1.99059518838124e-10,-1.34441069365295e-11,-1.26201132856671e-10,2.93168267394578e-10 +7.296,-1.99864175082199e-06,-1.48233161779976e-06,1.54392103481407e-06,-3.87569358550888e-10,-1.7751759645579e-09,-0.0800007773993798,-2.4603018732551e-09,1.49027578472144e-09,5.43719583245898e-10,4.12152950657375e-11,3.71239497476457e-10,-8.18640294442209e-10,1.40268588304584e-07,4.3018540119256e-07,-3.23151878515405e-07,-2.25514051854117e-11,-1.20996962428781e-10,4.40589405260145e-07 +7.298,7.58727087364283e-09,-9.3875947744515e-09,-2.91402366126015e-09,-3.87440808602424e-10,-1.77413078672473e-09,-0.0799999953354995,3.43901636226527e-08,4.41684249938339e-08,8.57885654875862e-08,4.11736617023141e-11,3.7107469874624e-10,4.11781816978031e-07,5.30757621149666e-10,-6.32740387945276e-10,-1.80194401097277e-10,-2.25514051899854e-11,-7.89299181775554e-11,3.11382863983289e-10 +7.3,-1.9985041901675e-06,-1.48215494409978e-06,1.54426418907602e-06,-3.87404663904078e-10,-1.77369166576291e-09,-0.0800007757522525,-2.4581788427705e-09,1.48774482316966e-09,5.42998805641509e-10,4.11250894449776e-11,3.70923777803747e-10,-8.17394762986276e-10,8.70284882551425e-08,3.63262154729169e-07,-2.46526106824896e-07,-3.55618312598034e-11,-9.97465998892443e-11,3.53744811198255e-07 +7.302,7.57743815827175e-09,-9.38164379515882e-09,-2.91185166603758e-09,-3.87276308244644e-10,-1.77264709161351e-09,-0.0799999953387691,3.47382775756733e-08,4.56214736127507e-08,8.48024610602865e-08,4.10314143772748e-11,3.70675712346683e-10,4.13196796222824e-07,5.30594990550809e-10,-6.01298524777882e-10,-1.94072188844743e-10,-2.90566182203287e-11,-1.18394877214828e-10,2.89698820442755e-10 +7.304,-1.9983652370572e-06,-1.48197245820533e-06,1.54460339892026e-06,-3.87240538246569e-10,-1.77220896291352e-09,-0.0800007740994653,-2.4560564628083e-09,1.48533962907054e-09,5.4222251688613e-10,4.10088629720962e-11,3.70450198294888e-10,-8.16235967704505e-10,4.54562331805103e-08,2.95068873851046e-07,-1.62469213425324e-07,-1.0408340853584e-11,-9.75781955031429e-11,2.63809807355641e-07 +7.306,7.56761393242052e-09,-9.37570243664254e-09,-2.90968277597003e-09,-3.87112272792756e-10,-1.77116529082033e-09,-0.0799999953420341,3.49201025083953e-08,4.68017491081548e-08,8.41525842065853e-08,4.09897810138605e-11,3.7028539956467e-10,4.14252035452246e-07,3.2484526678968e-08,-2.16168229150984e-08,-1.06986901976826e-08,1.82015860716639e-09,-5.15126136193368e-09,1.32480831860801e-08 +7.308,-1.99822555664716e-06,-1.4817852512089e-06,1.54494000925709e-06,-3.87076579122514e-10,-1.77072782131527e-09,-0.0800007724424572,-2.32611835609244e-09,1.39887233741016e-09,4.99427756095405e-10,4.8289497400761e-11,3.49845152847156e-10,-7.6324363496019e-10,-0.02273393503299,-0.014411427452654,0.0183250826546512,2.80938466934153e-09,-1.02708640204079e-08,-0.0167118148946021 +7.31,7.55830945899615e-09,-9.3701069472929e-09,-2.90768506494565e-09,-3.86919114803153e-10,-1.76976591020894e-09,-0.079999995345087,-9.09008200294618e-05,-5.75989080615143e-05,7.33844832028195e-05,5.22273196912279e-11,3.29201943483034e-10,-6.64330075429634e-05,1.19704322407945e-08,-5.9208280638657e-09,-7.78457159841817e-09,2.36356073602108e-09,-1.6961258786169e-09,2.70443389900548e-09 +7.312,-2.36182883676505e-06,-1.71218088345498e-06,1.8384779420684e-06,-3.86867669843749e-10,-1.76941101354133e-09,-0.0800010381744874,-2.27823662712926e-09,1.3751890251547e-09,4.68289469701729e-10,5.77437403448463e-11,3.43060649332687e-10,-7.52425899364167e-10,0.028937928270161,0.0189851552584364,-0.0249294028001088,1.54086812753964e-09,4.48122441933635e-09,0.0101672969305882 +7.314,7.54919651248763e-09,-9.36460619119228e-09,-2.90581190706685e-09,-3.86688139841773e-10,-1.76839366761161e-09,-0.0799999953480967,2.48508930511695e-05,1.83417129722231e-05,-2.63331279976049e-05,5.83907922013858e-11,3.47126841160377e-10,-2.57638198206151e-05,-3.89849285664778e-08,2.42494826301689e-08,1.06130382260001e-08,-2.29980964827945e-09,5.52552795183607e-09,-1.62300728411972e-08 +7.316,-2.26242526456038e-06,-1.6388140315661e-06,1.73314543007799e-06,-3.86634106674943e-10,-1.76802250617669e-09,-0.0800011412297667,-2.43417634139515e-09,1.47218695567536e-09,5.10741622605724e-10,4.85445017517295e-11,3.65162761140029e-10,-8.17346190728949e-10,0.00579336581906673,0.00132405861166502,-0.00449514214045685,-4.505510547983e-09,8.67014793291088e-09,0.0175886172909162 +7.318,7.53945980712205e-09,-9.35871744336958e-09,-2.90376894057642e-09,-3.86493961834766e-10,-1.76693301656705e-09,-0.0799999953513661,4.8024356327439e-05,2.36379474188837e-05,-4.43136965594343e-05,4.03687500094518e-11,3.81807432892025e-10,4.45906493430576e-05,9.13669368014462e-09,-1.02856091698537e-08,1.45196354942094e-09,-2.31932528737829e-09,-2.20266513360128e-09,6.54511167481509e-09 +7.32,-2.07032783925061e-06,-1.54426224189055e-06,1.55589064384024e-06,-3.86472631674906e-10,-1.76649527644512e-09,-0.0800009628671693,-2.39762956667457e-09,1.43104451899594e-09,5.16549476803409e-10,3.92672006022153e-11,3.56352100605623e-10,-7.91165744029685e-10,-0.0397643047361151,-0.0250119088929982,0.0341525334510375,-4.35849273337028e-10,-1.15944580325413e-08,-0.0272744151421888 +7.322,7.52986928885535e-09,-9.3529932652936e-09,-2.90170274266921e-09,-3.86336893032357e-10,-1.76550760816463e-09,-0.0799999953545308,-0.000111032862617004,-7.6409688153098e-05,9.22964372447007e-05,3.86253529161038e-11,3.35429600761864e-10,-6.45070112256856e-05,-2.2869374579701e-08,1.72121431689969e-08,8.60119267473333e-09,-9.85756615225999e-10,4.43872369413586e-09,-1.01307850996606e-08 +7.324,-2.51445928971857e-06,-1.84990099450291e-06,1.925076392819e-06,-3.86318130263241e-10,-1.76515355804208e-09,-0.0800012208952142,-2.48910706499336e-09,1.49989309167192e-09,5.50954247502338e-10,3.53241741413118e-11,3.74106995382164e-10,-8.31688884428323e-10,0.0612915846521524,0.0423632765585799,-0.0490852604165721,-1.58380253356861e-09,1.6507194916504e-08,0.0333495400565947 +7.326,7.51991286059538e-09,-9.34699369292691e-09,-2.8994989256792e-09,-3.86195596335792e-10,-1.7640111801831e-09,-0.0799999953578575,0.000134133475991633,9.30434180812408e-05,-0.00010404460442161,3.22901427818287e-11,4.01458380427888e-10,6.88911490007083e-05,-1.36447114459225e-08,7.67354929606666e-09,9.15673786797414e-09,-2.58387061746549e-09,2.30197805264199e-09,-3.68108321606895e-09 +7.328,-1.97792538575198e-06,-1.47772732217791e-06,1.50889797513251e-06,-3.86188969692114e-10,-1.76354772452036e-09,-0.0800009453306182,-2.54368591077706e-09,1.53058728885619e-09,5.87581198974239e-10,2.49886916714487e-11,3.83314907592733e-10,-8.46413217292601e-10,-0.0471851256208581,-0.0336043810805353,0.0380706694678408,-2.55784976532657e-09,-6.24890764131654e-09,-0.0149914360005743 +7.33,7.50973811695227e-09,-9.34087134377148e-09,-2.8971486008833e-09,-3.86095641569106e-10,-1.76247792055273e-09,-0.0799999953612432,-5.46070264917783e-05,-4.13741062408855e-05,4.82380734497368e-05,2.20587437205235e-11,3.76462749862624e-10,8.92540499841764e-06,2.44572970830684e-09,-8.18355799877038e-10,2.67581096166159e-09,-4.34981911602571e-10,3.11816544785553e-10,1.77202003075729e-09 +7.332,-2.19635349171907e-06,-1.64322374714143e-06,1.70185026893144e-06,-3.86100734717232e-10,-1.76204187352091e-09,-0.0800009096289982,-2.53390299194383e-09,1.52731386565668e-09,5.98284442820884e-10,2.32487640250386e-11,3.84562173771875e-10,-8.39325137169573e-10,0.0847216916539124,0.0627955248680826,-0.0649152171279067,4.17894885362597e-09,7.85569526093831e-09,0.0497171467484537 +7.334,7.49960250498449e-09,-9.33476208830886e-09,-2.89475546311202e-09,-3.86002646513006e-10,-1.76093967185764e-09,-0.0799999953646005,0.000284279740123909,0.000209807993231473,-0.000211422795061919,3.87745391350293e-11,4.07885530906381e-10,0.000207793991992255,4.86726408958548e-08,-2.89518842926645e-08,-1.69434778707012e-08,4.25180723962044e-09,-6.87254073092976e-09,1.835684382274e-08 +7.336,-1.0592345312233e-06,-8.03991774215446e-07,8.56159088683667e-07,-3.85945636560692e-10,-1.76041033139729e-09,-0.0800000784530302,-2.33921242836039e-09,1.41150632848601e-09,5.30510531338072e-10,4.02559929835222e-11,3.57072010848153e-10,-7.65897761878604e-10,-0.178902029740148,-0.129319431664267,0.135489211058683,-2.64371857738708e-09,-2.52220119789477e-08,-0.115993470252443 +7.338,7.49024565527105e-09,-9.32911606299491e-09,-2.89263342098667e-09,-3.85841622541072e-10,-1.75951138381425e-09,-0.0799999953676641,-0.000431328378836604,-0.000307469733425539,0.000330534049172751,2.81996648254821e-11,3.06997482990601e-10,-0.000256179889017466,-3.58937868575553e-08,2.28740637541518e-08,8.68445940157942e-09,-1.27328703136921e-09,5.23452808874018e-09,-1.49463774689736e-08 +7.34,-2.78454804656953e-06,-2.03387070791747e-06,2.17829528537453e-06,-3.8583283790139e-10,-1.75918234146533e-09,-0.0800011031725863,-2.4827875757906e-09,1.50300258350261e-09,5.65248368944385e-10,3.51628448580459e-11,3.78010123203112e-10,-8.25683271754492e-10,0.171235201735781,0.121680091143176,-0.132799962071744,2.57259491487146e-09,2.74554684542617e-08,0.0802573186815082 +7.342,7.48031450496789e-09,-9.3231040526609e-09,-2.89037242751089e-09,-3.8570097116164e-10,-1.75799934332144e-09,-0.0799999953709668,0.000253612428106598,0.000179250631147217,-0.000200665799114283,3.84900444849691e-11,4.16819356807661e-10,6.48493857086024e-05,-4.14306176185674e-09,-3.1658703353183e-11,1.08441901295139e-09,-8.56519716261595e-10,-3.25260651535847e-11,-3.59087759573042e-10 +7.344,-1.77009833414303e-06,-1.31686818332852e-06,1.37563208891731e-06,-3.8567887772345e-10,-1.7575150640381e-09,-0.0800008437750435,-2.49935982283802e-09,1.5028759486892e-09,5.69586044996192e-10,3.17367659929992e-11,3.77880018942497e-10,-8.27119622792785e-10,-0.091866853895064,-0.0660261589016103,0.0723150155904902,-2.21090507013079e-09,-1.40660053049379e-08,-0.0161676714308112 +7.346,7.47031706567654e-09,-9.31709254886615e-09,-2.88809408333091e-09,-3.85574024097668e-10,-1.75648782324567e-09,-0.0799999953742753,-0.000113854987473618,-8.48540044591946e-05,8.85942632476461e-05,2.96464242044469e-11,3.60555335587915e-10,1.78699985364814e-07,2.89322060247065e-09,-2.57064335104655e-09,-1.69287327215049e-09,3.71664504726269e-10,-6.62230686975118e-10,1.51528095631166e-09 +7.348,-2.22551828403745e-06,-1.65628420116526e-06,1.73000914190785e-06,-3.85560292026632e-10,-1.75607284269574e-09,-0.0800008430602435,-2.48778694042814e-09,1.49259337528501e-09,5.6281455190759e-10,3.32234240119041e-11,3.75231096194597e-10,-8.21058498967539e-10,0.0457551021605677,0.034212692016008,-0.035391824020284,1.70783526209714e-09,5.78530279236134e-09,0.00283274764582777 +7.35,7.46036591791482e-09,-9.31112217536501e-09,-2.88584282512327e-09,-3.8544113040162e-10,-1.75498689886089e-09,-0.0799999953775595,6.91654211686737e-05,5.19967636048527e-05,-5.29730328335056e-05,3.64777652528362e-11,3.83696546757363e-10,1.15096905686772e-05,5.14331958086158e-09,-3.22853722914446e-09,-2.99760216645667e-09,9.33281230077365e-10,-7.95370713714533e-10,1.9238083348127e-09 +7.352,-1.94885659936272e-06,-1.44829714674582e-06,1.51811701057381e-06,-3.85414380965621e-10,-1.75453805650871e-09,-0.0800007970214812,-2.46721366210469e-09,1.47967922636843e-09,5.50824143241762e-10,3.6956548932214e-11,3.72049613339739e-10,-8.13363265628287e-10,-0.0240900509230307,-0.0177115833156521,0.0185570567618973,4.68809019384861e-10,-4.30168053953313e-09,-0.00136937669190062 +7.354,7.45049706326641e-09,-9.30520345845953e-09,-2.88363952855031e-09,-3.85293304205891e-10,-1.75349870040753e-09,-0.079999995380813,-2.71947825234383e-05,-1.8849569657748e-05,2.12551942140755e-05,3.83530013303755e-11,3.66489824599232e-10,6.03218380107528e-06,4.78264617593212e-09,-3.07002687169208e-09,-3.20295005798725e-09,9.34582272680451e-10,-8.49580822380298e-10,1.67921232479069e-09 +7.356,-2.05763572945646e-06,-1.52369542537681e-06,1.6031377874301e-06,-3.85260968960299e-10,-1.75307209721032e-09,-0.080000772892746,-2.44808307740097e-09,1.46739911888166e-09,5.38012343009815e-10,4.06948780229354e-11,3.68651290050218e-10,-8.06646416329125e-10,0.0115494344239654,0.0083370878731478,-0.00917440539293778,1.06989070380633e-09,8.63892291015906e-10,-0.000656209473044921 +7.358,7.4407047309568e-09,-9.299333861984e-09,-2.88148747917827e-09,-3.851305246938e-10,-1.75202409524733e-09,-0.0799999953840396,1.90029551724283e-05,1.44987818348469e-05,-1.54424273576797e-05,4.26325641456012e-11,3.69945393763296e-10,3.40734590889531e-06,3.43415617110338e-09,-2.52662474267877e-09,-2.70638546292844e-09,6.79144240847178e-10,-7.20343923378906e-10,1.19002030447531e-09 +7.36,-1.98162390876674e-06,-1.46570029803741e-06,1.54136807799937e-06,-3.85090438703717e-10,-1.75159231563526e-09,-0.0800007592633624,-2.43434645271655e-09,1.45729261991095e-09,5.271868011581e-10,4.34114549863244e-11,3.65769914356702e-10,-8.01886335111223e-10,-0.0064339830994977,-0.00483929821844453,0.00490349100408018,3.95516952525166e-10,-1.55344487271703e-09,-0.000497053931000555 +7.362,7.43096734514594e-09,-9.29350469150436e-09,-2.87937873197364e-09,-3.84956878873854e-10,-1.7505610155899e-09,-0.0799999953872471,-6.73297722555964e-06,-4.85841103892907e-06,4.17153665863886e-06,4.42146319557017e-11,3.63731614272429e-10,1.4191301848933e-06,2.10980321768323e-09,-1.89258331237161e-09,-1.87371819451871e-09,3.7686867515355e-10,-5.55978874070868e-10,7.70217223378222e-10 +7.364,-2.00855581766897e-06,-1.48513394219313e-06,1.55805422463393e-06,-3.84913580175894e-10,-1.75013738917817e-09,-0.0800007535868417,-2.42590723984582e-09,1.44972228666146e-09,5.19691928380026e-10,4.49189296869384e-11,3.63545998860419e-10,-7.98805466217711e-10,0.00288120841525596,0.00205185345688948,-0.00220169190301061,2.81458883974719e-10,-2.60208521598376e-11,-0.000218144279549889 +7.366,7.42126371618655e-09,-9.28770580235772e-09,-2.87729996426012e-09,-3.84777203155107e-10,-1.74910683159446e-09,-0.0799999953904423,4.7918564354655e-06,3.34900278862978e-06,-4.63523095340455e-06,4.53404674916007e-11,3.6362753086379e-10,5.4655306669365e-07,3.29769848579672e-08,-2.18902587028363e-08,-1.1304759212043e-08,1.90255797228005e-09,-5.32690211383559e-09,1.3208184546043e-08 +7.368,-1.98938839192711e-06,-1.47173793103861e-06,1.53951330082031e-06,-3.84732218305928e-10,-1.74868287905472e-09,-0.0800007514006294,-2.29399930041394e-09,1.36216125185011e-09,4.74472891531849e-10,5.25291615760595e-11,3.42238390405074e-10,-7.45972728033533e-10,-0.0246904248657338,-0.0157864991918598,0.0199279533716734,2.71961272946575e-09,-1.0632987545982e-08,-0.016324672871309 +7.37,7.4120877189849e-09,-9.28225715735032e-09,-2.87540207269399e-09,-3.84567086508802e-10,-1.74773787803284e-09,-0.0799999953934262,-9.39698430274587e-05,-5.97969939788025e-05,7.50765825332802e-05,5.62189184094626e-11,3.21095580679866e-10,-6.4752138418535e-05,-2.00504353787174e-08,1.4650390275852e-08,2.63873124736889e-09,4.22405166397436e-10,3.26258117742438e-09,-1.00856822892877e-08 +7.372,-2.3652677640369e-06,-1.71092590695379e-06,1.83981963095339e-06,-3.8450734263229e-10,-1.747398496732e-09,-0.0800010104091831,-2.3742010419288e-09,1.42076281295351e-09,4.85027816521323e-10,5.4218782241649e-11,3.5528871511477e-10,-7.86315457190679e-10,0.0515266503073592,0.0333378284147385,-0.0426188457810487,-1.41510067553088e-09,1.45317785582366e-08,0.0270220962507079 +7.374,7.40259091481718e-09,-9.2765741060985e-09,-2.8734619614279e-09,-3.84350211379836e-10,-1.74631672317238e-09,-0.0799999953965715,0.000112136758202001,7.35543196801664e-05,-9.53988005909336e-05,5.05585157073384e-11,3.79222694912819e-10,4.33362465843086e-05,-1.82125229612334e-08,8.31040965218023e-09,7.97365645735432e-09,-2.96594346304833e-09,2.10942374680752e-09,-5.55111512316942e-09 +7.376,-1.91672073122885e-06,-1.41670862823309e-06,1.45822442858962e-06,-3.8430510856946e-10,-1.74588160595235e-09,-0.0800008370641967,-2.44705113377374e-09,1.45400445156223e-09,5.16922442350744e-10,4.23550083894544e-11,3.63726410102001e-10,-8.08519917683359e-10,-0.0418265064105238,-0.0294391425664116,0.0347115619912907,-3.31245447737564e-09,-5.36983651986634e-09,-0.0114673884164461 +7.378,7.39280271028209e-09,-9.27075808829225e-09,-2.8713942716585e-09,-3.84180791346278e-10,-1.74486181753197e-09,-0.0799999953998056,-5.51692674400756e-05,-4.42022505854671e-05,4.34474473742139e-05,3.73086977978373e-11,3.57743348833356e-10,-2.53330708147065e-06,2.79037996052707e-08,-1.89249657612496e-08,-5.51815537711093e-09,1.92987986700068e-10,-4.202367620574e-09,1.2255821357821e-08 +7.38,-2.13739780098913e-06,-1.59351763057494e-06,1.63201421808645e-06,-3.84155873778269e-10,-1.74445063255702e-09,-0.0800008471974251,-2.33543593535267e-09,1.37830458851724e-09,4.94849820842303e-10,4.31269603362546e-11,3.46916939619707e-10,-7.59496632252081e-10,-0.000311251518994354,0.00299894739814147,0.00189096314561343,2.24473217791141e-09,-6.3820476681371e-09,-0.0133431199639582 +7.382,7.38346096654068e-09,-9.26524486993818e-09,-2.86941487237513e-09,-3.84008283504933e-10,-1.74347414977349e-09,-0.0799999954028436,-5.64142735160532e-05,-3.22064609928999e-05,5.10112999566685e-05,4.6287626509484e-11,3.32215158160805e-10,-5.59057869373096e-05,-1.89478830847195e-08,1.51614831801138e-08,5.20633883230286e-09,3.98986399498612e-11,3.77085515592383e-09,-9.36924149379288e-09 +7.384,-2.36305489505336e-06,-1.72234347454656e-06,1.83605941791315e-06,-3.83970723272231e-10,-1.74312177192437e-09,-0.0800010708205728,-2.41122746769156e-09,1.43895052123771e-09,5.15675176171516e-10,4.3286554896054e-11,3.62000360243404e-10,-7.96973598227256e-10,0.0384646724207201,0.0243159628038285,-0.0327903094843796,-1.62413485438107e-09,1.2887260703053e-08,0.0271302626492943 +7.386,7.37381605666991e-09,-9.25948906785323e-09,-2.86735217167045e-09,-3.83835137285349e-10,-1.74202614833252e-09,-0.0799999954060314,9.74444161668105e-05,6.50573902224035e-05,-8.01499379808354e-05,3.97910870919604e-11,3.83764200973011e-10,5.26152636598556e-05,-1.49818444324497e-08,7.55190181215066e-09,8.15580242227634e-09,-2.63504496001117e-09,2.13240883282439e-09,-4.37670732984522e-09 +7.388,-1.97327723038617e-06,-1.46211391365697e-06,1.51545966598984e-06,-3.83811558923863e-10,-1.74158671512048e-09,-0.0800008603595182,-2.47115484542135e-09,1.46915812848631e-09,5.48298385860618e-10,3.27463750560105e-11,3.70529995574701e-10,-8.14480427546635e-10,-0.0349950050913586,-0.0247286221955066,0.0290689490061391,-2.68795402602767e-09,-4.52415882536782e-09,-0.012626250014275 +7.39,7.36393143728822e-09,-9.25361243533929e-09,-2.865158978127e-09,-3.83704151785125e-10,-1.74054402835022e-09,-0.0799999954092894,-4.25356041986397e-05,-3.38570985596341e-05,3.61258580437341e-05,2.90392709878485e-11,3.65667565671538e-10,2.11026360275011e-06,3.08758146002149e-08,-2.02175515911246e-08,-6.79924866406066e-09,7.641456911696e-10,-4.51852097403001e-09,1.32255317808019e-08 +7.392,-2.14341964718074e-06,-1.59754230789552e-06,1.6599630981648e-06,-3.83695401839912e-10,-1.74012404485779e-09,-0.0800008519184638,-2.34765158702047e-09,1.3882879221218e-09,5.21101391204372e-10,3.58029578206893e-11,3.52455911678579e-10,-7.61578300423422e-10,-0.00408426082453961,0.000105047060241244,0.00432718646895623,2.77208811461316e-09,-7.2923438121188e-09,-0.0137957315458585 +7.394,7.35454083094014e-09,-9.2480592836508e-09,-2.86307457256219e-09,-3.83560939953842e-10,-1.73913420470351e-09,-0.0799999954123357,-5.88726474967964e-05,-3.34369103186691e-05,5.34346039195572e-05,4.01276234462999e-11,3.36498190423066e-10,-5.3072662580678e-05,-1.68676243761117e-08,1.37047491410087e-08,3.10450450066607e-09,6.59628601738192e-10,3.26952007132772e-09,-8.65973959203393e-09 +7.396,-2.3789102371679e-06,-1.73128994917018e-06,1.873701513843e-06,-3.83534891346127e-10,-1.7387780520961e-09,-0.0800010642091141,-2.41512208452491e-09,1.44310691868583e-09,5.33519409207035e-10,3.84414722276417e-11,3.65533991963888e-10,-7.96217258791554e-10,0.0401707594478015,0.025401268366906,-0.0348921951141092,-9.584347204792e-10,1.26457004589804e-08,0.0265370270280713 +7.398,7.34488034260204e-09,-9.24228685597606e-09,-2.86094049492536e-09,-3.83407174064931e-10,-1.73767206873565e-09,-0.0799999954155206,0.000101810390294428,6.81681631489663e-05,-8.61341765368951e-05,3.62938845643827e-11,3.87080992258993e-10,5.30754455316192e-05,-1.35577177741036e-08,6.13962006243103e-09,5.79722901630959e-09,-2.03222855210469e-09,1.59551191704995e-09,-3.89965837404007e-09 +7.4,-1.97166867599015e-06,-1.45861729657429e-06,1.52916480769538e-06,-3.83389715807869e-10,-1.73722972812707e-09,-0.080000851907332,-2.46935295562133e-09,1.46766539893555e-09,5.56708325272276e-10,3.03125580192221e-11,3.71916039632089e-10,-8.11815892287716e-10,-0.0361622452932501,-0.0255834047627209,0.0302073588037793,-2.14932238673372e-09,-5.23062496091873e-09,-0.0127175997345975 +7.402,7.33500293077956e-09,-9.23641619438031e-09,-2.85871366162427e-09,-3.83285923832855e-10,-1.73618440457712e-09,-0.0799999954187678,-4.28385908785569e-05,-3.4165455901906e-05,3.46952586782089e-05,2.76965950174488e-11,3.66158492415321e-10,2.20504659323464e-06,4.04813987522872e-11,-8.57170237648508e-10,1.27241966959808e-09,-5.18248638449754e-10,-1.17093834834855e-11,8.23126289396064e-10 +7.404,-2.14302303950436e-06,-1.5952791201819e-06,1.6679458424082e-06,-3.83278929427799e-10,-1.7357650941574e-09,-0.0800008430871456,-2.46919103002633e-09,1.46423671798496e-09,5.61798003950668e-10,2.82395634654233e-11,3.71869202098155e-10,-8.08523387130132e-10,0.0793979353604126,0.0587017492360122,-0.0604061135679705,3.75524264461842e-09,6.95884322385908e-09,0.0479097224384095 +7.406,7.32512616665945e-09,-9.23055924750837e-09,-2.85646646960847e-09,-3.83172965578993e-10,-1.73469692776873e-09,-0.0799999954220019,0.000274753150563129,0.000200641541042169,-0.0002069291955937,4.27175655959241e-11,3.9399386531076e-10,0.000193843936346894,4.56913288670121e-08,-2.74762851359154e-08,-1.64180734979168e-08,3.83850937146924e-09,-6.75978370499196e-09,1.70098310436457e-08 +7.408,-1.04401043725172e-06,-7.92712956013131e-07,8.4022906003331e-07,-3.83108059165416e-10,-1.73418911869616e-09,-0.0800000677114002,-2.28642571455826e-09,1.35433157744129e-09,4.96125709958993e-10,4.3593600951302e-11,3.44830067278184e-10,-7.40484062955541e-10,-0.176331652541004,-0.126747747292085,0.133702220936399,-2.91693752485327e-09,-2.46187618901774e-08,-0.109982715325668 +7.41,7.31598046380122e-09,-9.22514192119861e-09,-2.85448196676863e-09,-3.82998591175188e-10,-1.73331760749962e-09,-0.0799999954249638,-0.000430573459600811,-0.000306349448126116,0.000327879688151839,3.10498154965123e-11,2.95518817750062e-10,-0.000246086924955729,-3.74062624407027e-08,2.33099130274942e-08,9.40024967585627e-09,-1.57296051184439e-09,5.39715841461369e-09,-1.52031165434196e-08 +7.412,-2.76630427565477e-06,-2.01811074851746e-06,2.15174781264052e-06,-3.8298385990343e-10,-1.73300704342516e-09,-0.0800010520591,-2.43605076432105e-09,1.44757122955125e-09,5.33726708662414e-10,3.73017589039251e-11,3.66418700936636e-10,-8.01296529129213e-10,0.224380995535485,0.160042328670198,-0.171866512778376,5.33687677383973e-09,3.10697648164592e-08,0.122509697103056 +7.414,7.30623626074393e-09,-9.2193516362804e-09,-2.85234705993398e-09,-3.82849384139572e-10,-1.73185193269587e-09,-0.079999995428169,0.000466950522541231,0.000333819866554748,-0.00035958636296174,5.23973225918736e-11,4.19797877015912e-10,0.000243951863456549,3.61684152678406e-08,-2.39662890227117e-08,-1.25333771139028e-08,2.11983208764572e-09,-5.94056054346223e-09,1.44190215322747e-08 +7.416,-8.98502185489635e-07,-6.82831282298318e-07,7.13402360793397e-07,-3.82774270613062e-10,-1.7313278519171e-09,-0.0800000762516462,-2.29137710324967e-09,1.35170607346039e-09,4.83593200206798e-10,4.5781087254509e-11,3.42656458762784e-10,-7.43620443000108e-10,-0.161287389017948,-0.115730763588288,0.1245714591825,-1.97411531565913e-09,-2.61539921664158e-08,-0.0673530457205597 +7.418,7.29707075233094e-09,-9.21394481198656e-09,-2.85041268713315e-09,-3.82666259790554e-10,-1.73048130686082e-09,-0.0799999954311435,-0.000178199033530491,-0.000129103187798352,0.000138699473768206,4.45008613292379e-11,3.15181908350261e-10,-2.54603194256603e-05,7.27797813462363e-10,-2.37873956718361e-10,-2.91541964184036e-09,8.22258927610464e-10,-3.27862736978639e-10,-6.61797006043866e-10 +7.42,-1.61129831961152e-06,-1.19924403349167e-06,1.26820025586616e-06,-3.82596267167745e-10,-1.7300671242837e-09,-0.0800001780929239,-2.28846591199582e-09,1.35075457763352e-09,4.71931521639438e-10,4.90701229649504e-11,3.4134500781487e-10,-7.46267631024283e-10,-0.0122518453352493,-0.00842023823126623,0.00591812405634356,-2.28159505178046e-09,2.52662474274217e-09,-0.0570121892672981 +7.422,7.28791688868295e-09,-9.20854179367603e-09,-2.84852496104659e-09,-3.82469979298694e-10,-1.72911592682956e-09,-0.0799999954341286,-0.000227206414871494,-0.000162784140723421,0.000162371969993583,3.53744811221151e-11,3.25288407321231e-10,-0.000253509076494878,-4.72179668412988e-08,2.76207008654466e-08,1.6096932814484e-08,-3.90572990615905e-09,6.77713093979133e-09,-1.74348382953463e-08 +7.424,-2.5201239790976e-06,-1.85038059638543e-06,1.91768813584056e-06,-3.82454769243257e-10,-1.72876597065441e-09,-0.0800011921292299,-2.47733777936104e-09,1.46123738109532e-09,5.36319252897381e-10,3.34472033403125e-11,3.68453531574038e-10,-8.16006984205676e-10,0.0914054131700931,0.0643534606914169,-0.0664625572166654,-9.82287168270119e-10,1.67955926944292e-08,0.0820077147925575 +7.426,7.27800753756551e-09,-9.20269684415165e-09,-2.84637968403501e-09,-3.82336190485333e-10,-1.72764211270326e-09,-0.0799999954373926,0.000138415237808838,9.46297020422184e-05,-0.00010347825887305,3.1445332449035e-11,3.9247077809894e-10,7.45217826753157e-05,-5.49453332225042e-09,2.10421957636036e-09,6.11988758281302e-09,-1.98669206086288e-09,1.01004274388772e-09,-3.92047505570853e-10 +7.428,-1.96646302786231e-06,-1.47186178821659e-06,1.50377510034841e-06,-3.82328987913461e-10,-1.72719608754202e-09,-0.0800008940420992,-2.49931591265004e-09,1.46965425940076e-09,5.6079880322863e-10,2.55004350968619e-11,3.72493702549589e-10,-8.17575174227959e-10,-0.0482663222638072,-0.0337136387847676,0.038037010132976,-1.925109377467e-09,-6.95450641521279e-09,-0.0164506784505441 +7.43,7.26801027391491e-09,-9.19681822711405e-09,-2.84413648882209e-09,-3.82234188744945e-10,-1.72615213789307e-09,-0.0799999954406629,-5.46500512463694e-05,-4.02248530968371e-05,4.86697816588376e-05,2.37448949391679e-11,3.64652752438092e-10,8.71906887314657e-06,5.25072335884917e-09,-1.89084858889588e-09,1.21322223097989e-09,7.02563007756295e-11,-3.77302356231708e-11,2.43034758988834e-09 +7.432,-2.18506323284781e-06,-1.63276120060396e-06,1.69845422698378e-06,-3.82234008333704e-10,-1.72573747653226e-09,-0.0800008591658237,-2.47831301921464e-09,1.46209086504518e-09,5.6565169215255e-10,2.57814602999644e-11,3.72342781607096e-10,-8.07853783868405e-10,0.0243711127721,0.0185787324808393,-0.0190823964039071,1.16746889933371e-09,3.13594636371731e-09,0.0023233901634214 +7.434,7.25809702183805e-09,-9.19096986365386e-09,-2.84187388205348e-09,-3.82131062903746e-10,-1.72466276676664e-09,-0.0799999954438943,4.28343998420416e-05,3.40900768265286e-05,-2.76598039567993e-05,2.84147705365032e-11,3.77196537892963e-10,1.80126295268332e-05,7.96219101921754e-09,-3.4577375684104e-09,-1.79999244672943e-09,9.67108337858714e-10,-6.1149002526129e-10,2.8952534813611e-09 +7.436,-2.01372563347966e-06,-1.49640089329786e-06,1.5878150111566e-06,-3.82120349251558e-10,-1.72422869038069e-09,-0.0800007871153056,-2.44646425513777e-09,1.44825991477154e-09,5.58451722365633e-10,2.96498936513989e-11,3.69896821506051e-10,-7.96272769942962e-10,0.0485464470597287,0.0347232383156903,-0.0379438672073047,4.07920225375788e-09,2.13240883282354e-09,0.0412122345442776 +7.438,7.2483111648175e-09,-9.18517682399478e-09,-2.83964007516402e-09,-3.8201246332914e-10,-1.72318317948061e-09,-0.0799999954470794,0.000237020188080935,0.000172983030089274,-0.000179435272786001,4.47315795515329e-11,3.85726173224256e-10,0.000182861567703925,4.78414508531118e-08,-2.84813405499647e-08,-1.81352328987575e-08,4.36846739337597e-09,-7.14272391235344e-09,1.73836639528039e-08 +7.44,-1.06564488115582e-06,-8.04468772940686e-07,8.7007392001251e-07,-3.81941422933352e-10,-1.72268578568779e-09,-0.0800000556690348,-2.2550984517253e-09,1.33433455257166e-09,4.85910790770595e-10,4.71237632249047e-11,3.41325925856634e-10,-7.26738114131738e-10,-0.162873804985863,-0.116589809040665,0.123996716387026,-2.37873956643071e-09,-2.29902902270992e-08,-0.105172092225252 +7.442,7.2392907710106e-09,-9.17983948578449e-09,-2.83769643200094e-09,-3.8182396827624e-10,-1.72181787577719e-09,-0.0799999954499864,-0.000414475031862592,-0.000293376206073439,0.000316551592762157,3.5216621285809e-11,2.93765012315849e-10,-0.000237826801197131,-3.77811524471544e-08,2.24651026948476e-08,8.33621366383536e-09,-1.52048512669139e-09,5.12133738197261e-09,-1.52204637782642e-08 +7.444,-2.723545008606e-06,-1.97797359723431e-06,2.136280291061e-06,-3.81800556448209e-10,-1.72151072563853e-09,-0.0800010069762395,-2.40622306151391e-09,1.42419496335105e-09,5.19255645425933e-10,4.10418227181398e-11,3.61811275384523e-10,-7.87619969244788e-10,0.163550340114904,0.115195911461733,-0.127062863416686,1.98972782694344e-09,2.6301009981006e-08,0.0728748383305297 +7.446,7.22966587876454e-09,-9.17414270593109e-09,-2.83561940941923e-09,-3.81659800985368e-10,-1.72037063067565e-09,-0.0799999954531369,0.000239726328596954,0.000167407439773443,-0.000191699860904531,4.31755325935819e-11,3.98969052239861e-10,5.36725521249555e-05,-6.11380249798361e-09,7.77372957592921e-10,2.06952510681104e-09,-1.33140026781418e-09,2.13370987525013e-10,-1.06165076725385e-09 +7.448,-1.76463969421808e-06,-1.30834383814046e-06,1.36948084744279e-06,-3.81627854317834e-10,-1.71991484942957e-09,-0.080000792286031,-2.43067827150584e-09,1.42730445518142e-09,5.27533745853178e-10,3.57162216468825e-11,3.62664759334623e-10,-7.91866572313804e-10,-0.0875331273017869,-0.0624979183500965,0.0693385999990505,-2.64848906694519e-09,-1.31106063505415e-08,-0.01358197313384 +7.45,7.21994316567852e-09,-9.16843348811036e-09,-2.83350927443582e-09,-3.8151693609878e-10,-1.71891997163831e-09,-0.0799999954563043,-0.000110406180610233,-8.25842336269707e-05,8.56545390917018e-05,3.25815763258e-11,3.46526626837689e-10,-6.55340410410449e-07,1.23170787791746e-09,-1.50530629619999e-09,5.20417045721836e-12,-1.8908485887953e-10,-2.80591522219182e-10,9.73179869979255e-10 +7.452,-2.20626441665896e-06,-1.63868077264831e-06,1.71209900380956e-06,-3.81497528012531e-10,-1.71852874292222e-09,-0.0800007949073927,-2.42575143999417e-09,1.42128322999662e-09,5.27554562535007e-10,3.49598822113644e-11,3.61542393245746e-10,-7.87973852833888e-10,0.043852641073826,0.0328270918850727,-0.033611446516014,1.10718725854039e-09,5.89372300961196e-09,0.00272119128792717 +7.454,7.21024015991854e-09,-9.16274835519038e-09,-2.83139905618568e-09,-3.81377096569935e-10,-1.71747380206533e-09,-0.0799999954594562,6.50043836850515e-05,4.87241339133055e-05,-4.87912469723393e-05,3.7010325359961e-11,3.70101518876134e-10,1.0229424741297e-05,3.97356030471167e-09,-2.14758766333773e-09,-1.11586087595111e-09,3.94649590782694e-10,-4.18502038599378e-10,1.48318857200356e-09 +7.456,-1.94624688191873e-06,-1.44378423699507e-06,1.51693401592018e-06,-3.81349486711091e-10,-1.71704833684672e-09,-0.0800007539896937,-2.40985719877532e-09,1.41269287934327e-09,5.23091119031202e-10,3.65384805744954e-11,3.59868385091348e-10,-7.82041098545873e-10,-0.022904366792395,-0.0167587251166207,0.0177402557097514,-1.34441069367653e-11,-3.75827841068321e-09,-0.00107648248214658 +7.458,7.20060073112344e-09,-9.157097583673e-09,-2.82930669170955e-09,-3.81230942647637e-10,-1.71603432852496e-09,-0.0799999954625844,-2.66130834845388e-05,-1.83107665531846e-05,2.21697758666744e-05,3.6956548932214e-11,3.550684052334e-10,5.92349481271025e-06,3.55396999805527e-08,-2.21224948081897e-08,-1.13717629063049e-08,2.207869304052e-09,-5.37243860508138e-09,1.37962558044032e-08 +7.46,-2.05269921585687e-06,-1.5170273032078e-06,1.60561311938687e-06,-3.81201660515362e-10,-1.71562806322578e-09,-0.0800007302957145,-2.26769839885313e-09,1.32420290011052e-09,4.77604067405987e-10,4.53699577907024e-11,3.38378630671025e-10,-7.26856075328266e-10,-0.011761371728287,-0.00636443361293795,0.00976910496854624,3.286867306105e-09,-8.83754874838353e-09,-0.0161208091797527 +7.462,7.19152993752803e-09,-9.15180077207256e-09,-2.82739627543993e-09,-3.81049462816474e-10,-1.71468081400228e-09,-0.0799999954654918,-7.36585703976814e-05,-4.37685010049336e-05,6.12461957408551e-05,5.01040181566325e-11,3.1971821023987e-10,-5.85597419062934e-05,-1.81056816131368e-08,1.33805726914361e-08,1.58423621440894e-09,8.25728374562257e-10,2.95293303696207e-09,-9.20270804001455e-09 +7.464,-2.34733349744763e-06,-1.69210130722755e-06,1.85059790235031e-06,-3.81001244442736e-10,-1.71434919038482e-09,-0.0800009645346821,-2.34012112530568e-09,1.37772519087627e-09,4.83941012263624e-10,4.86728712889518e-11,3.50190362818875e-10,-7.63666907488328e-10,0.0445587981169476,0.0280337095796202,-0.0380218774912993,-1.04603825601123e-09,1.31921383539524e-08,0.0253655490223237 +7.466,7.18216945302681e-09,-9.14628987130905e-09,-2.82546051139088e-09,-3.80854771331318e-10,-1.713280052551e-09,-0.0799999954685465,0.000104576622070129,6.83663373135599e-05,-9.08413142243592e-05,4.59198651325871e-11,3.72486763655685e-10,4.29024541830128e-05,-1.62719298214939e-08,6.94279703180623e-09,6.34995528384138e-09,-2.46981254891982e-09,1.77982628637203e-09,-4.84508266844669e-09 +7.468,-1.92902700916716e-06,-1.41863595797334e-06,1.48723264545292e-06,-3.80817564982205e-10,-1.7128592433302e-09,-0.0800007929248654,-2.40520884459165e-09,1.40549637900349e-09,5.09340833398986e-10,3.87936210932736e-11,3.57309667964362e-10,-7.83047238162113e-10,-0.0385613015643449,-0.0271292977642223,0.0323946106938059,-2.82412981889279e-09,-5.25838053657537e-09,-0.0112784023726202 +7.47,7.17254861764844e-09,-9.14066788579304e-09,-2.82342314805728e-09,-3.80699596846945e-10,-1.71185081387915e-09,-0.0799999954716787,-4.96685841872337e-05,-4.01508537433173e-05,3.87371285508501e-05,3.46233458570172e-11,3.51453241509386e-10,-2.21115530746305e-06,2.86393020302853e-08,-1.92246392417177e-08,-6.64897824301139e-09,4.6837533851148e-10,-4.46517822718314e-09,1.21933713126817e-08 +7.472,-2.12770134591612e-06,-1.57923937294663e-06,1.64218115965634e-06,-3.80679071598777e-10,-1.71145343036416e-09,-0.0800008017694866,-2.2906516364705e-09,1.32859782203661e-09,4.82744920426938e-10,4.06671224473197e-11,3.39448955055628e-10,-7.34273752911381e-10,-0.00248686876919145,0.00139907031576055,0.00346925895433482,2.3726680342692e-09,-6.8647344752897e-09,-0.0128465800098427 +7.474,7.16338601110256e-09,-9.13535349450489e-09,-2.82149216837557e-09,-3.80536928357156e-10,-1.71049301805892e-09,-0.0799999954746158,-5.96160592640006e-05,-3.45545724802745e-05,5.2614164368191e-05,4.41140179940951e-11,3.23994303608224e-10,-5.35974753468397e-05,-1.88310399718452e-08,1.43648114237719e-08,4.07486544509721e-09,2.68448457909727e-10,3.48462578238803e-09,-9.10556352544504e-09 +7.476,-2.3661655829721e-06,-1.71745766286771e-06,1.85263781712908e-06,-3.80502615526801e-10,-1.71015745314973e-09,-0.080001016159388,-2.36597579635787e-09,1.38605706773169e-09,4.99044382207325e-10,4.17409162789585e-11,3.53387458185178e-10,-7.70696007013157e-10,0.040111839753058,0.0254389611522196,-0.034191657957838,-1.31058358610292e-09,1.2790983550097e-08,0.0259231812595907 +7.478,7.15392210791713e-09,-9.12980926623397e-09,-2.81949599084674e-09,-3.8036996469204e-10,-1.70907946822618e-09,-0.0799999954776985,0.000100831299748214,6.72012721285928e-05,-8.41524674631461e-05,3.88716836496839e-11,3.75158237808606e-10,5.00952496915119e-05,-1.42643600922796e-08,6.79751394053665e-09,7.11128204930312e-09,-2.377438523828e-09,1.89475171661563e-09,-4.09221267978558e-09 +7.48,-1.9628403839792e-06,-1.44865257435331e-06,1.51602794727645e-06,-3.80347128792202e-10,-1.7086568201985e-09,-0.0800008157783892,-2.423033236727e-09,1.41324712349384e-09,5.27489510404541e-10,3.22311621836455e-11,3.60966465051642e-10,-7.87064857732301e-10,-0.0362263019599649,-0.025585050050354,0.0302615334130158,-2.51838480624717e-09,-4.86936879704606e-09,-0.0120936714783123 +7.482,7.14422997497022e-09,-9.12415627773999e-09,-2.81738603280512e-09,-3.80241040043305e-10,-1.70763560236598e-09,-0.0799999954808468,-4.40739080916622e-05,-3.51389280728348e-05,3.68936661889307e-05,2.87981444246941e-11,3.5568076262042e-10,1.7205637782571e-06,3.08977561416901e-08,-1.9776498147365e-08,-6.98334619295139e-09,8.04911692855204e-10,-4.54020501748127e-09,1.2875117638659e-08 +7.484,-2.13913601634582e-06,-1.58920828664463e-06,1.66360261203216e-06,-3.80231936214503e-10,-1.70723409714801e-09,-0.0800008088961341,-2.29944221216025e-09,1.33414113090439e-09,4.99556125632738e-10,3.54508089550659e-11,3.42805644981718e-10,-7.35564387177671e-10,-0.00384787237799689,0.00032461865422475,0.00422904791177461,2.70660230339121e-09,-7.19650034010952e-09,-0.0131875013808375 +7.486,7.13503220612158e-09,-9.11881971321638e-09,-2.81538780830259e-09,-3.80099236807485e-10,-1.70626437978605e-09,-0.0799999954837891,-5.94653976036481e-05,-3.38404534559359e-05,5.38098578360272e-05,3.96245536382578e-11,3.26894761259985e-10,-5.10294417450872e-05,-1.71864611299841e-08,1.35069906647473e-08,3.04487338117988e-09,6.53557069572148e-10,3.23829504875996e-09,-8.53570686350115e-09 +7.488,-2.37699760676044e-06,-1.72457010046839e-06,1.87884204337629e-06,-3.8007343799995e-10,-1.70592651810297e-09,-0.0800010130139011,-2.36818805668019e-09,1.38816909356339e-09,5.11735619157459e-10,3.80650372333548e-11,3.5575882517676e-10,-7.69707214631679e-10,0.0406386308472979,0.0257016726456173,-0.0352517406287827,-9.02923569243727e-10,1.26235827347014e-08,0.0254512097725186 +7.49,7.12555945389486e-09,-9.11326703684212e-09,-2.81334086582596e-09,-3.79946976658552e-10,-1.70484134448534e-09,-0.0799999954868679,0.000103089125785562,6.89662371265449e-05,-8.71971046791194e-05,3.60128593612825e-11,3.77389092198796e-10,5.07753973449987e-05,-1.317037977172e-08,5.935356373133e-09,5.7508251633273e-09,-1.99753408258562e-09,1.59117510835982e-09,-3.74787006989145e-09 +7.492,-1.96464110361824e-06,-1.44870515196224e-06,1.53005362465986e-06,-3.79929386562505e-10,-1.70441696173418e-09,-0.0800008099123117,-2.42086957576707e-09,1.41191051905591e-09,5.34738919810766e-10,3.00749009030132e-11,3.62123525610198e-10,-7.84698694911243e-10,-0.0366976556005229,-0.025961152094835,0.0307351731034275,-2.17230747279395e-09,-5.26445206874155e-09,-0.0121981117099546 +7.494,7.11587597559179e-09,-9.1076193947659e-09,-2.81120191014672e-09,-3.7982667705494e-10,-1.7033928503829e-09,-0.0799999954900067,-4.37014966165136e-05,-3.48783712527836e-05,3.5743587734577e-05,2.73236294701076e-11,3.56331283923832e-10,1.98295050518582e-06,6.73154025186031e-11,-7.20560763912109e-10,1.51875040318767e-09,-5.87637577488682e-10,5.42101086041712e-11,7.94503352040767e-10 +7.496,-2.13944709008432e-06,-1.58821863697339e-06,1.67302797559818e-06,-3.79820092044625e-10,-1.70299163659848e-09,-0.0800008019805097,-2.42060031415699e-09,1.40902827600027e-09,5.40813921423517e-10,2.77243505930582e-11,3.62340366044615e-10,-7.8152068150308e-10,0.0190571386431061,0.0148178468512246,-0.0146072551064442,4.20670442925892e-10,2.46851150633477e-09,0.00255024424668248 +7.498,7.10619357433516e-09,-9.1019832816619e-09,-2.80903865446103e-09,-3.79715779652567e-10,-1.70194348891872e-09,-0.0799999954931328,3.25270579559196e-05,2.43930161521215e-05,-2.26854326912063e-05,2.90063112418114e-11,3.66205329949172e-10,1.21839274919169e-05,4.31814685991469e-09,-2.23258911350438e-09,-1.00592277560225e-09,4.30645102912876e-10,-4.43221848092064e-10,1.76334641328742e-09 +7.5,-2.00933885826065e-06,-1.49064657236492e-06,1.58228624483336e-06,-3.79704066799658e-10,-1.70152681527869e-09,-0.0800007532447997,-2.40332772671734e-09,1.40009791954625e-09,5.36790230321108e-10,2.94469310047095e-11,3.60567478652247e-10,-7.74467295849931e-10,-0.0100272615163916,-0.00716147712898035,0.00760652067071293,4.49727061145377e-10,-2.00534033824951e-09,-0.00103233031324768 +7.502,7.09658026342829e-09,-9.09638288998371e-09,-2.80689149353974e-09,-3.79597991928549e-10,-1.70050121900411e-09,-0.0799999954962306,-7.58198810964251e-06,-4.25289236379669e-06,7.74064999164211e-06,3.08052194863927e-11,3.58183968596175e-10,8.05460623892661e-06,5.01844659591596e-09,-2.7256842617057e-09,-2.32583050044519e-09,7.90600224174617e-10,-6.83047368685734e-10,1.74079500818534e-09 +7.504,-2.03966681069923e-06,-1.50765814182011e-06,1.61324884479994e-06,-3.79580845921712e-10,-1.7000940794043e-09,-0.0800007210263748,-2.38325394033367e-09,1.38919518249943e-09,5.27486908319327e-10,3.26093319014084e-11,3.57835289177504e-10,-7.67504115817189e-10,0.00456676531771015,0.00325720168545238,-0.00399995377943973,9.1159718662752e-10,-7.32920668401466e-11,-0.000737687853510467 +7.506,7.08704724766696e-09,-9.09082610925371e-09,-2.80478154590647e-09,-3.79467554600943e-10,-1.6990698778474e-09,-0.0799999954993006,1.06850731612001e-05,8.77591437801431e-06,-8.25916512611859e-06,3.44516082329032e-11,3.57890800328814e-10,5.10385482488441e-06,4.0511214173607e-09,-2.64155017296715e-09,-2.71440855900603e-09,7.61109925086803e-10,-7.48966860733281e-10,1.44155520849444e-09 +7.508,-1.99692651805443e-06,-1.47255448430805e-06,1.58021218429547e-06,-3.7944303948878e-10,-1.69866251620299e-09,-0.0800007006109555,-2.36704945466423e-09,1.37862898180756e-09,5.16629274083304e-10,3.56537716017552e-11,3.54839421734571e-10,-7.61737894983212e-10,-0.00287927514895207,-0.00224023431467809,0.00196920535932299,6.14959472231865e-10,-1.12236608897685e-09,-0.000620853804131632 +7.51,7.0775790498483e-09,-9.08531159332648e-09,-2.80271502881013e-09,-3.79324939514536e-10,-1.69765052016047e-09,-0.0799999955023476,-8.32027434606883e-07,-1.85022880697085e-07,-3.82343688827515e-07,3.69114461218304e-11,3.53401335972908e-10,2.62043960835816e-06,2.7552558760139e-09,-2.23801012452058e-09,-2.51469851889098e-09,5.82867087926097e-10,-6.96057794755236e-10,9.3241386837959e-10 +7.512,-2.00025462779286e-06,-1.47329457583084e-06,1.57868280954016e-06,-3.79295393704293e-10,-1.69724891085909e-09,-0.080000690129197,-2.35602843116017e-09,1.36967694130947e-09,5.06570480007739e-10,3.79852399534599e-11,3.5205519055555e-10,-7.58008239509693e-10,0.00100352558234151,0.000648549109381879,-0.000908320126362056,4.99600361083368e-10,-4.5406386981731e-10,-0.00034589649026958 +7.514,7.06815493612366e-09,-9.07983288556125e-09,-2.8006887468901e-09,-3.79172998554722e-10,-1.69624229939824e-09,-0.0799999955053796,3.18207489475959e-06,2.40917355683072e-06,-4.01562419427614e-06,3.89098475661641e-11,3.51585080493638e-10,1.23685364727968e-06,1.72848931335451e-09,-1.75120334892294e-09,-1.93573455872794e-09,3.60822483005364e-10,-5.42534767092329e-10,6.70470623423105e-10 +7.516,-1.98752632821382e-06,-1.46365788160352e-06,1.56262031276305e-06,-3.79139754314028e-10,-1.69584257053712e-09,-0.0800006851817824,-2.34911447390676e-09,1.36267212791378e-09,4.98827541772828e-10,3.94285298854812e-11,3.49885051487181e-10,-7.55326357016001e-10,-0.000847467141093399,-0.00064723962214116,0.000710224334855721,2.46330733586546e-10,-6.05852174004418e-10,-0.000157224240571254 +7.518,7.05875847822803e-09,-9.07438219704959e-09,-2.79869343672301e-09,-3.7901528443518e-10,-1.69484275919229e-09,-0.0799999955084009,-2.07793669613629e-07,-1.79784931733631e-07,-1.17472685485357e-06,3.98951705005101e-11,3.49161671797621e-10,6.07956684994736e-07,1.09074804323204e-09,-1.30082576662349e-09,-1.263529211842e-09,1.74773390202435e-10,-3.71664504747363e-10,4.11996825586347e-10 +7.52,-1.98835750289228e-06,-1.46437702133045e-06,1.55792140534364e-06,-3.78980173632026e-10,-1.69444592384993e-09,-0.0800006827499557,-2.34475148173383e-09,1.35746882484729e-09,4.93773424925459e-10,4.0127623446291e-11,3.48398393468191e-10,-7.53678369713655e-10,0.00020585737303836,0.00014894954171971,-2.92608014641718e-05,8.37004077180962e-11,-2.81458883957857e-10,-5.44865593615435e-05 +7.522,7.0493794723011e-09,-9.0689523217502e-09,-2.79671834302331e-09,-3.78854773941395e-10,-1.69344916561842e-09,-0.0799999955114157,6.15635822539902e-07,4.16013235145275e-07,-1.29177006071027e-06,4.02299721313826e-11,3.48035836261789e-10,3.90010447548537e-07,7.18893802863675e-10,-9.07260377860697e-10,-5.72458747045061e-10,2.60208521619339e-12,-2.22044604905746e-10,3.33934269083774e-10 +7.524,-1.98589495960212e-06,-1.46271296838987e-06,1.5527543251008e-06,-3.78819253743501e-10,-1.69305378050488e-09,-0.0800006811899139,-2.34187590652237e-09,1.35383978333585e-09,4.91483589937279e-10,4.01380317871558e-11,3.47510215048568e-10,-7.5234263263732e-10,-0.000241250714053827,-0.000171098784229282,0.000337464228653413,-6.80878964343235e-11,-1.89952220638778e-10,-1.12661728904556e-05 +7.526,7.04001196867501e-09,-9.06353696261686e-09,-2.79475240866356e-09,-3.78694221814246e-10,-1.69205912475823e-09,-0.079999995514425,-3.49367033675297e-07,-2.68381901771778e-07,5.80868539032321e-08,3.99576205456453e-11,3.47276027379234e-10,3.4494575598672e-07,3.18391485595191e-08,-2.01195397148842e-08,-9.68626220901062e-09,1.56038376663856e-09,-4.94569663002805e-09,1.23616394898497e-08 +7.528,-1.98729242773682e-06,-1.46378649599696e-06,1.55298667251641e-06,-3.78659423261318e-10,-1.69166467639537e-09,-0.0800006798101309,-2.21451931228428e-09,1.2733616244763e-09,4.52738541101232e-10,4.63795668537107e-11,3.27727428528454e-10,-7.02896074677916e-10,-0.0234299330782096,-0.0146999994819936,0.0191703056844593,2.34534613952286e-09,-1.00093544563669e-08,-0.0149339496359479 +7.53,7.03115389142587e-09,-9.05844351611895e-09,-2.79294145449915e-09,-3.78508703546832e-10,-1.69074821504411e-09,-0.0799999955172366,-9.40690993465242e-05,-5.90683798297529e-05,7.67393095917489e-05,4.93390051037378e-11,3.07238609553762e-10,-5.93908527878116e-05,-2.08875817576662e-08,1.465320920165e-08,3.279928412229e-09,2.65412691827085e-10,3.39572120424353e-09,-9.85756615227941e-09 +7.532,-2.36356882512287e-06,-1.70006001531595e-06,1.85994391088337e-06,-3.78462067240903e-10,-1.69043572195715e-09,-0.080000917373542,-2.29806963931494e-09,1.33197446128289e-09,4.65858254750147e-10,4.74412176210189e-11,3.41310313345426e-10,-7.42326339287029e-10,0.0520597532230237,0.0335329654974536,-0.0435190613793039,-1.30581309654428e-09,1.45556310060353e-08,0.0248380629718316 +7.534,7.02196161286861e-09,-9.05311561827382e-09,-2.79107802148015e-09,-3.78318938676347e-10,-1.68938297379073e-09,-0.0799999955202059,0.000114169913545548,7.50634821600467e-05,-9.73369359254477e-05,4.41157527175612e-11,3.65461133577897e-10,3.9961399099504e-05,-1.73831082990187e-08,7.75876758666509e-09,7.72537415980062e-09,-2.81415515890538e-09,2.13370987543205e-09,-5.12437314799312e-09 +7.536,-1.90688917094063e-06,-1.39980608667573e-06,1.47059616718154e-06,-3.78285604230033e-10,-1.68897387742284e-09,-0.0800007575279456,-2.36760207251102e-09,1.36300953162956e-09,4.96759751389353e-10,3.61845969853962e-11,3.49845152847156e-10,-7.62823831879004e-10,-0.0425695623016776,-0.0299701726511104,0.0355560513076497,-3.17844708885605e-09,-5.46177686409268e-09,-0.0106370061005839 +7.538,7.01249120457857e-09,-9.0476635801473e-09,-2.7890909824746e-09,-3.78174200288406e-10,-1.68798359317934e-09,-0.0799999955232572,-5.61083356611819e-05,-4.48172084444081e-05,4.48872693051668e-05,3.14019643621356e-11,3.43614026121524e-10,-2.58662530283644e-06,-3.4488471108086e-09,1.32879818267422e-09,4.32596666824571e-09,-1.46627501806771e-09,7.50267903379555e-10,-3.20923843098138e-10 +7.54,-2.13132251358533e-06,-1.57907492045334e-06,1.65014524440218e-06,-3.78159996372585e-10,-1.68759942131835e-09,-0.0800007678744468,-2.38139746095425e-09,1.36832472436025e-09,5.14063618062334e-10,3.0319496913126e-11,3.52846224460673e-10,-7.64107527251396e-10,0.0225391731948172,0.0174504146961536,-0.0167742521279432,-3.75567632550721e-10,3.65246027865009e-09,0.00301848660129458 +7.542,7.00296561473475e-09,-9.04219028124986e-09,-2.78703472800235e-09,-3.78052922300753e-10,-1.6865722082815e-09,-0.0799999955263136,3.40483571180768e-05,2.49844503401986e-05,-2.22097392065984e-05,2.98996938319329e-11,3.58223867236123e-10,9.48732110234057e-06,1.93032710055207e-09,-3.87493856522221e-10,1.85550359796274e-09,-3.60822483004779e-10,2.46764414438054e-10,1.02001740391656e-09 +7.544,-1.99512908511301e-06,-1.47913711909253e-06,1.56130628757578e-06,-3.78040397597257e-10,-1.68616652584941e-09,-0.0800007299251624,-2.37367615255204e-09,1.36677474893417e-09,5.21485632454186e-10,2.88762069811067e-11,3.53833282118426e-10,-7.60027457635729e-10,-0.0113705308878072,-0.00804830270701092,0.00875384669808042,-2.61509564001843e-10,-1.59768032135475e-09,-0.000594708447417852 +7.546,6.99347091012454e-09,-9.03672318225412e-09,-2.78494878547253e-09,-3.77937417472829e-10,-1.68515687515303e-09,-0.0799999955293537,-1.14337664331573e-05,-7.2087604878487e-06,1.28056475857272e-05,2.88536555759254e-11,3.51833145950703e-10,7.10848731266889e-06,3.59013220614749e-09,-1.3320507890401e-09,8.69530142622984e-11,1.97324795394009e-10,-1.2273168590574e-10,1.31925720343845e-09 +7.548,-2.04086415084564e-06,-1.50797216104392e-06,1.61252887791868e-06,-3.77924982974953e-10,-1.68475919326561e-09,-0.0800007014912132,-2.35931562372746e-09,1.36144654577801e-09,5.21833444511235e-10,2.96655061626826e-11,3.53342355374803e-10,-7.54750428821976e-10,0.00561666712739438,0.00406508564483638,-0.00485530936658146,4.45390252455442e-10,5.87637577467601e-10,-0.000547557183622598 +7.55,6.98403364762963e-09,-9.03127739607101e-09,-2.78286145169448e-09,-3.77818755448178e-10,-1.68374350573153e-09,-0.0799999955323727,1.10329020764178e-05,9.05158209149502e-06,-6.6155898805965e-06,3.0635216585747e-11,3.54183696260573e-10,4.91825857817874e-06,3.2663758851773e-09,-1.6668524200544e-09,-1.00397121175031e-09,3.83807569058136e-10,-3.3610267349005e-10,1.22124532712931e-09 +7.552,-1.99673254253996e-06,-1.47176583267794e-06,1.5860665183963e-06,-3.7780244210861e-10,-1.68334245848056e-09,-0.0800006818181789,-2.34625012018674e-09,1.35477913609779e-09,5.17817559664233e-10,3.12007364389154e-11,3.51997944680842e-10,-7.49865447513458e-10,-0.00315319942613275,-0.00242795878476044,0.00203790704905863,3.37837396948184e-10,-8.24861012807311e-10,-0.000536466294130404 +7.554,6.97464864714888e-09,-9.02585827952662e-09,-2.78079018145583e-09,-3.77693952502423e-10,-1.6823355139528e-09,-0.0799999955353722,-1.57989562811463e-06,-6.60253047547816e-07,1.53603831563892e-06,3.19865661735399e-11,3.50884252209343e-10,2.77239340165689e-06,2.38201250161168e-09,-1.70479949594138e-09,-1.60440237481566e-09,4.01588484690451e-10,-4.73145828053236e-10,8.63892290995005e-10 +7.556,-2.00305212505242e-06,-1.47440684486813e-06,1.59221067165885e-06,-3.77674495843916e-10,-1.68193892147173e-09,-0.0800006707286053,-2.3367220701803e-09,1.34795993811402e-09,5.11399950164971e-10,3.2807090377677e-11,3.5010536136863e-10,-7.46409878349479e-10,0.00131582728202671,0.000879209836879315,-0.00134227236617276,4.11563144673722e-10,-2.77122075306764e-10,-0.000319788613992331 +7.558,6.96530175886816e-09,-9.02046643977417e-09,-2.77874458165517e-09,-3.77562724140912e-10,-1.68093509250733e-09,-0.0799999955383578,3.68341349999163e-06,2.85658629996906e-06,-3.83305114905154e-06,3.36328187522346e-11,3.49775763908116e-10,1.4932389456877e-06,1.62771272168186e-09,-1.58878986363473e-09,-1.74621601903316e-09,3.59955121263286e-10,-4.8485521155485e-10,6.27969898344893e-10 +7.56,-1.98831847105245e-06,-1.46298049966825e-06,1.57687846706264e-06,-3.77539964568907e-10,-1.68053981841609e-09,-0.0800006647556495,-2.33021121929357e-09,1.34160477865948e-09,5.04415086088838e-10,3.42469108627303e-11,3.4816594052241e-10,-7.43897998756099e-10,-0.000913756135846719,-0.000692502672393187,0.000613509851211386,3.26561694354499e-10,-5.98045918323589e-10,-0.000158935174916691 +7.562,6.95598091399099e-09,-9.01510002065953e-09,-2.77672692131081e-09,-3.77425736497461e-10,-1.67954242874524e-09,-0.0799999955413334,2.83889566043482e-08,8.65756103959987e-08,-1.37901174420572e-06,3.49390655296527e-11,3.47383580234822e-10,8.57498246020866e-07,1.17056565165843e-09,-1.3546021942292e-09,-1.62630325870062e-09,3.0270924655992e-10,-4.49727061127753e-10,4.71844785424514e-10 +7.564,-1.98820491522603e-06,-1.46263419722667e-06,1.57136242008582e-06,-3.77400208306788e-10,-1.67915028409515e-09,-0.0800006613256565,-2.32552895668694e-09,1.33618636988257e-09,4.97909873054036e-10,3.54577478489698e-11,3.46367032277899e-10,-7.42010619614401e-10,0.000270530544485752,0.000197756953174139,-0.000184113119498362,2.61943244870559e-10,-3.69062419533351e-10,-7.2066521153483e-05 +7.566,6.94667879816424e-09,-9.00975527518e-09,-2.7747352818186e-09,-3.77283905506065e-10,-1.67815696061613e-09,-0.0799999955443015,1.11051113454724e-06,8.77603423092467e-07,-2.11546422219909e-06,3.59868385091348e-11,3.45907330556689e-10,5.69232161406966e-07,9.11475214010242e-10,-1.10176624775373e-09,-1.26526393531792e-09,2.29850860564908e-10,-3.41740524786586e-10,3.63424568258253e-10 +7.568,-1.98376287068784e-06,-1.4591237835343e-06,1.56290056319702e-06,-3.77256260952752e-10,-1.67776665477293e-09,-0.0800006590487279,-2.3218830558309e-09,1.33177930489155e-09,4.92848817312764e-10,3.63771512912296e-11,3.45000070178753e-10,-7.40556921341368e-10,-0.000288013794921992,-0.000206134555171634,0.000328499171874684,1.72171304992695e-10,-3.36536354320296e-10,-3.74663754881504e-05 +7.57,6.93739126594092e-09,-9.00442815796043e-09,-2.77276388654935e-09,-3.771383969009e-10,-1.67677696033541e-09,-0.0799999955472637,-4.15440451408602e-08,5.3065202405839e-08,-8.01467534700206e-07,3.66755237291057e-11,3.44561185139407e-10,4.19366659454347e-07,7.41763692440888e-10,-8.68662780521656e-10,-8.35703034524674e-10,1.1405806854752e-10,-2.64979010936358e-10,3.17454396062716e-10 +7.572,-1.98392904686841e-06,-1.45891152272468e-06,1.55969469305822e-06,-3.77109558857835e-10,-1.67638841003237e-09,-0.0800006573712612,-2.31891600106113e-09,1.32830465376947e-09,4.89506005174665e-10,3.68333835654196e-11,3.43940154135007e-10,-7.39287103757117e-10,3.80139682007323e-05,2.4876892646544e-05,8.88044581447588e-05,8.19656842378678e-11,-2.14672030171256e-10,-2.32384510939997e-05 +7.574,6.92811560193667e-09,-8.99911493934535e-09,-2.77080586252865e-09,-3.76991063366638e-10,-1.67540119971887e-09,-0.0799999955502209,1.10511827662052e-07,1.52572772992004e-07,-4.4624970212121e-07,3.70033864660571e-11,3.43702497018722e-10,3.26412855078359e-07,5.93390625393455e-10,-6.24934132294194e-10,-4.08527378619608e-10,4.55364912423359e-11,-1.34874750276259e-10,2.68014777079384e-10 +7.576,-1.98348699955776e-06,-1.45830123163271e-06,1.55790969424974e-06,-3.76961545311971e-10,-1.6750136000443e-09,-0.0800006560656098,-2.31654243855956e-09,1.32580491724029e-09,4.87871895660187e-10,3.7015529530389e-11,3.43400655133902e-10,-7.382150446488e-10,-8.67064547466366e-05,-7.10035710782456e-05,0.00016996577431071,-2.60208521375974e-11,-1.361757928451e-10,-1.16945411687648e-05 +7.578,6.91884943218243e-09,-8.99381171967639e-09,-2.76885437494601e-09,-3.76843001248517e-10,-1.67402759709834e-09,-0.0799999955531737,-2.36313991324533e-07,-1.3144151132101e-07,2.33613395121705e-07,3.68993030575067e-11,3.43157793847342e-10,2.79634690403294e-07,4.72576621803648e-10,-4.9352882884194e-10,-4.29344060033664e-11,-6.11490025261406e-11,-7.19910242339944e-11,2.7408630916342e-10 +7.58,-1.98443225552306e-06,-1.45882699767799e-06,1.55884414783022e-06,-3.76813948099741e-10,-1.67364096886891e-09,-0.080000654947071,-2.31465213207234e-09,1.32383080192492e-09,4.87700158036173e-10,3.67709335202844e-11,3.43112691036966e-10,-7.37118699412146e-10,1.50815323364702e-05,3.18576567037051e-06,5.8453359340336e-05,-8.45677694559175e-11,-2.51534904207175e-11,1.0640828495956e-06 +7.582,6.90959082365415e-09,-8.98851639646869e-09,-2.76690357431386e-09,-3.76695917514436e-10,-1.67265514633419e-09,-0.0799999955561222,-1.75987861978659e-07,-1.18698448639529e-07,4.67426832483023e-07,3.65610319796831e-11,3.43057179885659e-10,2.83891021801676e-07,3.82743695806494e-10,-3.95300112161635e-10,1.80194401039981e-10,-1.24032728534355e-10,-7.37257479195161e-12,1.8127860328045e-10 +7.584,-1.98513620697097e-06,-1.45930179147255e-06,1.56071385516016e-06,-3.76667703971822e-10,-1.67226874014936e-09,-0.0800006538115069,-2.31312115728912e-09,1.32224960147627e-09,4.88420935640333e-10,3.6274802606147e-11,3.43083200737799e-10,-7.36393584999024e-10,-5.65908347202365e-06,-7.97345067576163e-06,4.0725591302108e-05,-1.48752538062982e-10,-1.86482773476976e-11,1.22015340539729e-05 +7.586,6.90033833902499e-09,-8.98322739806279e-09,-2.7649498905713e-09,-3.76550818304011e-10,-1.67128281353124e-09,-0.0799999955590678,-1.98624195866756e-07,-1.50592251342579e-07,6.30329197691473e-07,3.59660218274311e-11,3.42982586776268e-10,3.32697158017573e-07,3.39538238976187e-10,-3.70146621613231e-10,2.94469310074237e-10,-1.44849410242082e-10,-9.10729822982824e-12,2.91433543923294e-10 +7.588,-1.98593070375444e-06,-1.45990416047792e-06,1.56323517195092e-06,-3.76523839884513e-10,-1.67089680980226e-09,-0.0800006524807183,-2.31176300433321e-09,1.32076901498982e-09,4.8959881288063e-10,3.56954049651787e-11,3.43046771544879e-10,-7.35227850823331e-10,2.53683004439871e-05,1.95975069939514e-05,-1.27228993400052e-05,-1.48752538067008e-10,1.60461921337362e-11,1.83995110813832e-05 +7.59,6.89109128700766e-09,-8.97794432200283e-09,-2.76299149531978e-09,-3.7640803668415e-10,-1.66991062644506e-09,-0.0799999955620087,-9.71509940908186e-08,-7.22022233667826e-08,5.79437600331458e-07,3.53710116751631e-11,3.43046771544803e-10,4.06295202343098e-07,3.4390892924068e-10,-3.89011739561013e-10,2.97071395233801e-10,-1.58293517184829e-10,6.93889388485545e-12,2.12503625847925e-10 +7.592,-1.9863193077308e-06,-1.46019296937139e-06,1.56555292235225e-06,-3.76382355837812e-10,-1.66952462271608e-09,-0.0800006508555375,-2.31038736861625e-09,1.31921296803158e-09,4.90787098461565e-10,3.50622308964393e-11,3.43074527120419e-10,-7.34377836319939e-10,1.8669671081182e-05,1.85015113039021e-05,-2.82309846072842e-05,-1.40946282421151e-10,-8.67361736083206e-12,1.86149507267145e-05 +7.594,6.88184973753319e-09,-8.9726674701307e-09,-2.76102834692593e-09,-3.76267787760565e-10,-1.66853832833658e-09,-0.0799999955649462,-2.24723097660824e-08,1.80382184883385e-09,4.66513661902308e-07,3.48072265454785e-11,3.4301207707536e-10,4.80755005249964e-07,3.77939324673119e-10,-4.25874613279148e-10,2.15539391917413e-10,-1.30971622434331e-10,-5.20417040887999e-12,2.63677968307765e-10 +7.596,-1.98640919696986e-06,-1.46018575408399e-06,1.56741897699986e-06,-3.7624312693163e-10,-1.66815257440778e-09,-0.0800006489325175,-2.30887561131756e-09,1.31750946957846e-09,4.91649256029235e-10,3.4538344406702e-11,3.43053710438783e-10,-7.33323124446708e-10,2.15469376892099e-05,2.22326662288606e-05,-4.20948265394525e-05,-1.33140026783152e-10,-1.86482773857908e-11,1.40948051840794e-05 +7.598,6.87261423508792e-09,-8.96739743225239e-09,-2.75906174990181e-09,-3.76129634382938e-10,-1.66716611349482e-09,-0.0799999955678795,6.37154409907478e-08,9.07344867642666e-08,2.98134355744517e-07,3.42746664383459e-11,3.42937483965817e-10,5.37134225986275e-07,4.25244420967611e-10,-5.12177106355197e-10,8.91214185509757e-11,-1.11022302464408e-10,-6.46184494991669e-11,2.70616862293039e-10 +7.6,-1.9861543352059e-06,-1.45982281613694e-06,1.56861151442284e-06,-3.76106028265877e-10,-1.66678082447191e-09,-0.0800006467839806,-2.30717463363369e-09,1.31546076115304e-09,4.92005741703439e-10,3.40942551968444e-11,3.42795236640787e-10,-7.32240656997536e-10,1.31390547313711e-05,1.57374896534635e-05,-3.87811727175891e-05,-7.9363599024035e-11,-3.94649590594428e-11,7.20746465984951e-06 +7.602,6.86338553655338e-09,-8.96213558920778e-09,-2.757093726935e-09,-3.75993257362151e-10,-1.66579493254826e-09,-0.0799999955708084,1.16271659916238e-07,1.53684445378127e-07,1.43009664874143e-07,3.39572120422497e-11,3.42779624129579e-10,5.65964084625677e-07,4.708690033825e-10,-5.33644309224477e-10,-1.99493199464127e-11,-7.11236625131731e-11,-3.90312781904573e-11,2.68882138735799e-10 +7.604,-1.98568924856624e-06,-1.45920807835542e-06,1.56918355308233e-06,-3.75970199417708e-10,-1.6654097059754e-09,-0.0800006445201242,-2.30529115762016e-09,1.31332618391614e-09,4.91925944423653e-10,3.38097605467917e-11,3.42639111528025e-10,-7.31165128442593e-10,7.60384145242136e-06,1.00181874514769e-05,-3.14080575783494e-05,-5.72458747091199e-11,-9.19403442457931e-11,2.79129150317585e-07 +7.606,6.85416437192291e-09,-8.95688228447211e-09,-2.75512602315731e-09,-3.75858018319963e-10,-1.66442437610215e-09,-0.0799999955737331,1.4668702572592e-07,1.93757195184031e-07,1.73774345607594e-08,3.37282285434133e-11,3.42411862752596e-10,5.67080601226947e-07,5.04194667915074e-10,-5.64218810634237e-10,-1.43765208098859e-10,-3.77302356043638e-11,-1.1362438769548e-10,2.86229373576699e-10 +7.608,-1.98510250046333e-06,-1.45843304957469e-06,1.56925306282057e-06,-3.75835286503534e-10,-1.66404005852439e-09,-0.0800006422518018,-2.3032743789485e-09,1.3110693086736e-09,4.91350883591258e-10,3.36588396043742e-11,3.42184613977243e-10,-7.30020210948286e-10,7.01923775730377e-07,2.7924797890818e-06,-1.9109026860863e-05,-2.3418766923815e-11,-9.88792381116676e-11,-5.07610620200842e-06 +7.61,6.84495127440711e-09,-8.95163800723742e-09,-2.75316061962294e-09,-3.75723382961546e-10,-1.66305563764624e-09,-0.0799999955766532,1.49494720828842e-07,2.04927114340359e-07,-5.90586728827012e-08,3.3634553475718e-11,3.42016345800149e-10,5.46776176418911e-07,5.25546674193873e-10,-5.93925950014885e-10,-2.04914210572538e-10,-1.25767451989656e-11,-9.2807705945783e-11,2.75821032639863e-10 +7.612,-1.98450452158002e-06,-1.45761334111733e-06,1.56901682812904e-06,-3.75700748289631e-10,-1.66267199314118e-09,-0.0800006400646971,-2.30117219225172e-09,1.30869360487355e-09,4.90531226748968e-10,3.36085326235784e-11,3.4181338315346e-10,-7.28916926817727e-10,-3.44278296464606e-06,-2.28704555295139e-06,-7.57268054686292e-06,-1.0408340857728e-11,-1.00613961625639e-10,-8.12369442551846e-06 +7.614,6.8357465856381e-09,-8.94640323281792e-09,-2.75119849471595e-09,-3.75588948831052e-10,-1.66168838411362e-09,-0.0799999955795689,1.35723588970259e-07,1.95778932128554e-07,-8.93493950701496e-08,3.35929201122871e-11,3.41613889953646e-10,5.14281398716841e-07,5.29781839185522e-10,-5.86119694518183e-10,-2.46113893181376e-10,8.67361736122303e-13,-1.04083408577557e-10,3.00107161384382e-10 +7.616,-1.98396162722414e-06,-1.45683022538881e-06,1.56865943054876e-06,-3.75566376609182e-10,-1.66130553758137e-09,-0.0800006380075715,-2.29905306489498e-09,1.30634912609547e-09,4.89546771176242e-10,3.36120020705229e-11,3.41397049519149e-10,-7.27716498172189e-10,-6.03275746414592e-06,-5.69230426682465e-06,2.17021821520061e-06,1.1275702595714e-11,-1.14925430264503e-10,-8.86579264860939e-06 +7.618,6.82655037337852e-09,-8.94117783631354e-09,-2.74924030763124e-09,-3.75454500822769e-10,-1.66032279591555e-09,-0.0799999955824797,1.11592559113673e-07,1.73009715061253e-07,-8.06685222093462e-08,3.363802292267e-11,3.41154188232588e-10,4.78818228122399e-07,5.23466361275623e-10,-5.70507183089454e-10,-2.7213474526675e-10,2.6020852158315e-12,-1.16660153740518e-10,2.6194324483215e-10 +7.62,-1.98351525698768e-06,-1.45613818652857e-06,1.56833675645993e-06,-3.75431824517491e-10,-1.65994092082844e-09,-0.0800006360922986,-2.29695919944988e-09,1.30406709736311e-09,4.88458232195175e-10,3.36224104113862e-11,3.40930408904187e-10,-7.26668725192861e-10,-6.44505584020963e-06,-6.80819593410891e-06,8.33938473832509e-06,6.93889390204037e-12,-1.01481323363589e-10,-7.77857118996908e-06 +7.622,6.81736253658072e-09,-8.93596156792409e-09,-2.74728647470246e-09,-3.75320011181124e-10,-1.65895907427993e-09,-0.0799999955853864,8.58123357528371e-08,1.45776931324821e-07,-4.73109832560495e-08,3.36657784982781e-11,3.40748262939134e-10,4.47703943362526e-07,5.12861509030966e-10,-5.47738937611994e-10,-2.48932818829734e-10,9.54097911600375e-12,-1.09287579005435e-10,2.66280053602709e-10 +7.624,-1.98317200764467e-06,-1.45555507880327e-06,1.5681475125269e-06,-3.75297161403498e-10,-1.65857792777668e-09,-0.0800006343014829,-2.29490775341375e-09,1.30187614161267e-09,4.87462500919856e-10,3.36605743278502e-11,3.40493258588166e-10,-7.2560360497845e-10,-5.57819551860999e-06,-6.31464238536628e-06,1.10884934047235e-05,1.86923431391357e-21,-1.0538445114667e-10,-5.55282816253346e-06 +7.626,6.80818290556707e-09,-8.93075406335764e-09,-2.74533662469878e-09,-3.75185368883812e-10,-1.65759710124558e-09,-0.0799999955882888,6.34995536783947e-08,1.20518361783353e-07,-2.95700963715039e-09,3.36657784982856e-11,3.40326725134547e-10,4.2549263071239e-07,4.97343865182504e-10,-5.43185288343074e-10,-2.28766658367428e-10,1.86923431391398e-21,-1.04517089408731e-10,2.62810606570268e-10 +7.628,-1.98291800942996e-06,-1.45507300535613e-06,1.56813568448835e-06,-3.75162498289505e-10,-1.65721662087615e-09,-0.0800006325995123,-2.29291837795302e-09,1.29970340045929e-09,4.86547434286387e-10,3.36605743278577e-11,3.40075190230531e-10,-7.24552362552169e-10,-3.84046601757935e-06,-4.65751504204861e-06,1.08074003305621e-05,4.77048955706751e-12,-1.16226472909342e-10,-2.89184821924556e-06 +7.63,6.79901123205526e-09,-8.9255552497558e-09,-2.74339043496163e-09,-3.75050726586501e-10,-1.65623680048466e-09,-0.079999995591187,4.8137689608079e-08,1.0188830161516e-07,4.02725916850932e-08,3.36848604565139e-11,3.3986181924291e-10,4.13925237835409e-07,4.87179470070011e-10,-5.07406616795227e-10,-1.98408997591812e-10,3.03576608108984e-12,-9.19403442456176e-11,2.80157841410419e-10 +7.632,-1.98272545867152e-06,-1.45466545214967e-06,1.56829677485509e-06,-3.75027758847679e-10,-1.65585717359917e-09,-0.0800006309438114,-2.29096966007274e-09,1.29767377399211e-09,4.85753798296019e-10,3.3672717392182e-11,3.39707428853548e-10,-7.23431731186527e-10,-1.91540955595018e-06,-2.54176909554027e-06,8.52870161646924e-06,-1.17093834609745e-11,-6.28837259852951e-11,-3.79827246021261e-07 +7.634,6.78984735341497e-09,-8.92036455465983e-09,-2.74144741976845e-09,-3.74916035716932e-10,-1.65487797076924e-09,-0.0799999955940807,4.04760513842774e-08,9.17212252329981e-08,7.43873981509739e-08,3.363802292267e-11,3.39610284338969e-10,4.12405928851324e-07,4.74263911435923e-10,-5.19766521417643e-10,-1.70870262356773e-10,-1.17093834609771e-11,-8.06646416140862e-11,2.50667542238558e-10 +7.636,-1.98256355446599e-06,-1.45429856724874e-06,1.5685943244477e-06,-3.74893206755988e-10,-1.65449873246182e-09,-0.0800006292941877,-2.289072604427e-09,1.29559470790644e-09,4.85070317246592e-10,3.36258798583381e-11,3.39384770287092e-10,-7.22429061017573e-10,-1.93169394056914e-07,-4.65153089662201e-07,5.25808368199573e-06,-6.938893905774e-12,-9.97465998875087e-11,1.58561531957633e-06 +7.638,6.78069106299726e-09,-8.91518217582821e-09,-2.73950713849946e-09,-3.74781532197499e-10,-1.65352043168809e-09,-0.0799999955969705,3.97033738080498e-08,8.98606128743495e-08,9.54197328789545e-08,3.36102673470469e-11,3.39211297939419e-10,4.18748390129628e-07,4.72739252385015e-10,-5.0372032940857e-10,-1.61762964161728e-10,-1.73472347616305e-11,-8.58688120796736e-11,2.47198095366734e-10 +7.64,-1.98240474097076e-06,-1.45393912479724e-06,1.56897600337921e-06,-3.747587656866e-10,-1.65314188727006e-09,-0.0800006276191941,-2.28718164741746e-09,1.29357982658881e-09,4.84423265389945e-10,3.35564909192916e-11,3.39041295038773e-10,-7.21440268636106e-10,1.03353589386068e-06,1.1788770914367e-06,1.93540712970482e-06,-2.03830008408624e-11,-8.50014503040357e-11,2.80816168931712e-06 +7.642,6.77154233640759e-09,-8.91000785652185e-09,-2.7375694454379e-09,-3.74647306233822e-10,-1.65216426650794e-09,-0.0799999955998562,4.3837517383493e-08,9.45761212400968e-08,1.03161361397775e-07,3.35287353436834e-11,3.38871292138203e-10,4.29981036886898e-07,4.66647391174418e-10,-5.07406616651514e-10,-1.2685165415396e-10,-1.82145964958973e-11,-8.28330459590833e-11,2.87964096972167e-10 +7.644,-1.98222939090122e-06,-1.45356082031228e-06,1.5693886488248e-06,-3.74624650745226e-10,-1.65178640210151e-09,-0.08000062589927,-2.28531505785276e-09,1.2915502001222e-09,4.83915858773329e-10,3.3483632533308e-11,3.38709962854937e-10,-7.20288412248217e-10,1.68686608057318e-06,2.20990782096894e-06,-7.95347294974163e-07,-2.64545330105071e-11,-8.10983225207301e-11,3.2702208996077e-06 +7.646,6.76240107617618e-09,-8.90484165572136e-09,-2.73563378200281e-09,-3.74513371703689e-10,-1.65080942665652e-09,-0.0799999956027374,5.0584981705785e-08,1.03415752523972e-07,9.99799722178784e-08,3.34229172116414e-11,3.3854689884812e-10,4.43061920485327e-07,4.67636725910549e-10,-5.26488575030557e-10,-1.42464165491411e-10,-2.29850860585464e-11,-7.89299181757413e-11,2.57606436222464e-10 +7.648,-1.9820270509744e-06,-1.45314715730219e-06,1.56978856871368e-06,-3.74490959076379e-10,-1.65043221450611e-09,-0.0800006241270223,-2.28344451094912e-09,1.28944424582208e-09,4.83346002111364e-10,3.33916921890738e-11,3.38394243182234e-10,-7.19257986503327e-10,1.80711409649584e-06,2.59812484027529e-06,-2.58197846783048e-06,-2.21177243168487e-11,-7.93635990071375e-11,3.08699073250612e-06 +7.65,6.75326729813238e-09,-8.89968387873807e-09,-2.73370039799437e-09,-3.74379804934932e-10,-1.64945584968379e-09,-0.0799999956056144,5.78134380917692e-08,1.13808251885074e-07,8.96520583465553e-08,3.3334446314374e-11,3.38229444452091e-10,4.55409883415353e-07,4.73864111885233e-10,-5.14562350990126e-10,-1.30104260671469e-10,-2.99239799587534e-11,-8.15320033521393e-11,2.46330733548848e-10 +7.652,-1.98179579722203e-06,-1.45269192429465e-06,1.57014717694706e-06,-3.74357621291121e-10,-1.64907929672831e-09,-0.0800006223053827,-2.28154905450158e-09,1.28738599641812e-09,4.82825585068678e-10,3.32719962692388e-11,3.38068115168825e-10,-7.18272663569132e-10,1.53308055404998e-06,2.44483600030854e-06,-3.36158227990321e-06,-2.64545330104958e-11,-7.80625564377316e-11,2.45105671867444e-06 +7.654,6.74414110191437e-09,-8.8945343347524e-09,-2.73176909565409e-09,-3.74246716949855e-10,-1.64810357722311e-09,-0.0799999956084875,6.39457603079684e-08,1.23587595886307e-07,7.62057292269439e-08,3.3228628182332e-11,3.3791719422634e-10,4.6521411029005e-07,4.7098420011789e-10,-5.37764277624198e-10,-1.45716772008815e-10,-2.2551405189541e-11,-8.37004077346253e-11,2.96637714431835e-10 +7.656,-1.9815400141808e-06,-1.4521975739111e-06,1.57045199986397e-06,-3.74224706778392e-10,-1.6477276279514e-09,-0.0800006204445263,-2.27966511770111e-09,1.28523493930762e-09,4.82242717980643e-10,3.31817906484807e-11,3.37733313537887e-10,-7.17086112711404e-10,1.0342970986548e-06,1.91877156525264e-06,-3.27661313879589e-06,-2.55871712688133e-11,-8.153200335216e-11,1.57967736116677e-06 +7.658,6.73502244144357e-09,-8.88939339499517e-09,-2.72984012478217e-09,-3.74113989787261e-10,-1.64675264396896e-09,-0.0799999956113558,6.80829487025881e-08,1.31262682147318e-07,6.30992766717589e-08,3.31262794972568e-11,3.37591066212932e-10,4.71532819734718e-07,4.76113831393347e-10,-5.21284404459795e-10,-1.3617579283744e-10,-2.64545330068091e-11,-6.37510877234139e-11,2.43728648334986e-10 +7.66,-1.98126768238599e-06,-1.45167252318251e-06,1.57070439697066e-06,-3.74092201660403e-10,-1.64637726368655e-09,-0.080000618558395,-2.27776066237553e-09,1.28314980168978e-09,4.81698014809293e-10,3.30759725164534e-11,3.37478309186993e-10,-7.16111198118065e-10,4.75837116016598e-07,1.21144478996242e-06,-2.59203010618064e-06,-2.03830008445667e-11,-8.7169854686572e-11,6.71943403669969e-07 +7.662,6.72591139879407e-09,-8.88426079578841e-09,-2.72791333272293e-09,-3.73981685897196e-10,-1.64540273073221e-09,-0.0799999956142203,6.99862971666543e-08,1.36108461307168e-07,5.27311562470375e-08,3.30447474938785e-11,3.37242386794185e-10,4.74220593349397e-07,4.77113330524015e-10,-5.51425224997203e-10,-1.49619899829711e-10,-2.68882138794712e-11,-1.11889664219219e-10,2.75821032720012e-10 +7.664,-1.98098773719732e-06,-1.45112808933728e-06,1.57091532159565e-06,-3.73960022670428e-10,-1.64502829413937e-09,-0.0800006166615126,-2.27585220905344e-09,1.28094410078979e-09,4.81099535209974e-10,3.29684196609355e-11,3.37030750530116e-10,-7.15007913987184e-10,-1.48774662526732e-08,4.94804284358668e-07,-1.60740106120978e-06,-2.90566182207778e-11,-8.58688120421274e-11,-1.1847380712725e-07 +7.666,6.71680798995785e-09,-8.87913701938525e-09,-2.72598893458209e-09,-3.73849812218552e-10,-1.64405460773009e-09,-0.0799999956170803,6.99267873016436e-08,1.38087678444602e-07,4.63015520021976e-08,3.29285210209954e-11,3.36898911546017e-10,4.73746698120888e-07,4.78475359250499e-10,-5.2757277706047e-10,-1.54824070204245e-10,-1.73472347579411e-11,-7.15573433653491e-11,2.78423117854655e-10 +7.668,-1.98070803004812e-06,-1.45057573862351e-06,1.57110052780365e-06,-3.73828308586344e-10,-1.64368069849319e-09,-0.0800006147665259,-2.27393830761644e-09,1.27883380968155e-09,4.80480238929157e-10,3.28990307219038e-11,3.36744521156655e-10,-7.13894221515766e-10,-3.59557066605836e-07,-1.02956922509064e-07,-5.92165422602447e-07,-1.90819582375726e-11,-7.06899816647647e-11,-6.96449842267573e-07 +7.67,6.70771223672739e-09,-8.87402168414653e-09,-2.72406701362637e-09,-3.73718216095664e-10,-1.64270762964547e-09,-0.0799999956199359,6.84885590352204e-08,1.37675850754566e-07,4.39328903117881e-08,3.28521931880451e-11,3.36616151619358e-10,4.70960898751818e-07,4.73311846656531e-10,-5.47088416307055e-10,-1.63064006768452e-10,-2.94902990934264e-11,-8.67361738175068e-11,2.60208521436093e-10 +7.672,-1.98043407581197e-06,-1.45002503522049e-06,1.5712762593649e-06,-3.73696899813591e-10,-1.64233423388671e-09,-0.0800006128826823,-2.27204506022981e-09,1.27664545601632e-09,4.79827982902083e-10,3.27810695255301e-11,3.36397576461385e-10,-7.12853387430021e-10,-5.30423710457118e-07,-5.0821543153625e-07,2.55603914772413e-07,-2.29850860548694e-11,-1.0711917462288e-10,-1.02464477872038e-06 +7.674,6.69862405648647e-09,-8.86891510232246e-09,-2.72214770169477e-09,-3.73587091817562e-10,-1.64136203933962e-09,-0.0799999956227873,6.63668641933917e-08,1.35642989028421e-07,4.49553059708779e-08,3.27602528438256e-11,3.36187674920866e-10,4.66862319636936e-07,4.75856333377795e-10,-5.27572777060677e-10,-1.50487261514406e-10,-1.60461921509681e-11,-9.15066633391234e-11,2.55004350929069e-10 +7.676,-1.9801686083552e-06,-1.44948246326437e-06,1.57145608058878e-06,-3.73565858802216e-10,-1.64098948318703e-09,-0.080000611015233,-2.2701416348963e-09,1.27453516490808e-09,4.79226033856026e-10,3.27168847569262e-11,3.36031549808028e-10,-7.11833370026305e-10,-5.40464188296039e-07,-6.99542420518212e-07,8.24651544967429e-07,-1.47451495458061e-11,-6.54858112181317e-11,-1.1139492106518e-06 +7.678,6.68954348994688e-09,-8.86381696166283e-09,-2.72023079755934e-09,-3.73456224278534e-10,-1.64001791314039e-09,-0.0799999956256346,6.42050074402078e-08,1.32844819346348e-07,4.82539121507472e-08,3.27012722456424e-11,3.35925731675994e-10,4.6240652279433e-07,4.74368943774603e-10,-5.2670541546424e-10,-1.57426155471486e-10,-1.47451495476204e-11,-8.2833045996552e-11,2.55004351008091e-10 +7.68,-1.97991178832544e-06,-1.44895108398699e-06,1.57164909623739e-06,-3.73435053713234e-10,-1.63964578026032e-09,-0.0800006091656069,-2.2682441591212e-09,1.27242834324623e-09,4.7859632923414e-10,3.26579041587357e-11,3.35700217624042e-10,-7.10813352622273e-10,-4.29673420598936e-07,-6.97580881954822e-07,1.08571767027928e-06,-2.68882138794486e-11,-9.10729825074096e-11,-1.00879547773371e-06 +7.682,6.6804705133104e-09,-8.85872724828984e-09,-2.71831641224241e-09,-3.73325592661899e-10,-1.63867511226989e-09,-0.0799999956284779,6.24863137578118e-08,1.30054495818529e-07,5.25967828318649e-08,3.25937193901246e-11,3.35561439745964e-10,4.58371340883394e-07,4.72383498294154e-10,-5.16080234032422e-10,-1.61979804542769e-10,-2.64545330068323e-11,-8.23993650902646e-11,2.91433543924651e-10 +7.684,-1.97966184307041e-06,-1.44843086600371e-06,1.57185948336871e-06,-3.73304678835673e-10,-1.63830353450134e-09,-0.0800006073321215,-2.26635462512802e-09,1.2703640223101e-09,4.77948410015969e-10,3.25520860267084e-11,3.35370620163681e-10,-7.09647618446574e-10,-2.49843457144588e-07,-5.49814100490715e-07,1.0733840032116e-06,-1.21430643300311e-11,-9.49761102911291e-11,-7.71686534092582e-07 +7.686,6.67140509480989e-09,-8.8536457922006e-09,-2.71640461860234e-09,-3.73195384317793e-10,-1.63733362978924e-09,-0.0799999956313165,6.14869399292336e-08,1.27855239416566e-07,5.68903188447108e-08,3.25451471328045e-11,3.351815353048e-10,4.55284594747024e-07,4.69981313107619e-10,-5.2757277720197e-10,-1.52438825478e-10,-1.5178830416605e-11,-9.36750677213565e-11,2.58473797959941e-10 +7.688,-1.97941589531069e-06,-1.44791944504605e-06,1.57208704464409e-06,-3.73174498247142e-10,-1.63696280836012e-09,-0.0800006055109831,-2.26447469987559e-09,1.26825373120129e-09,4.77338654714057e-10,3.2491370705042e-11,3.34995919892796e-10,-7.08613723254735e-10,-5.18039658513346e-08,-3.15654620504455e-07,8.61515069349708e-07,-1.77809156305649e-11,-7.80625564375462e-11,-4.68621669272487e-07 +7.69,6.66234719601038e-09,-8.8485727772758e-09,-2.71449526398349e-09,-3.73065418834972e-10,-1.63599364610967e-09,-0.0799999956341509,6.12797240658282e-08,1.26592620934548e-07,6.033637912211e-08,3.24740234702822e-11,3.34869285079049e-10,4.53410108069934e-07,4.6908006980007e-10,-5.1174342534279e-10,-1.54390389335423e-10,-1.51788304129924e-11,-7.5460471186397e-11,2.39391839645456e-10 +7.692,-1.97917077641443e-06,-1.44741307456231e-06,1.57232839016058e-06,-3.73044602153261e-10,-1.6356233312198e-09,-0.0800006036973427,-2.26259837959639e-09,1.26620675749992e-09,4.76721093156715e-10,3.243065538339e-11,3.3469407800805e-10,-7.07656155896153e-10,1.23674918101927e-07,-5.34489986921752e-08,5.39221878956967e-07,-2.86229373518223e-11,-8.84708972562412e-11,-1.58656074364234e-07 +7.694,6.653296802492e-09,-8.8435079502458e-09,-2.71258837961086e-09,-3.72935696213439e-10,-1.63465486979764e-09,-0.0799999956369816,6.17744237382359e-08,1.2637882493978e-07,6.24932666379376e-08,3.23595317208749e-11,3.34515401490024e-10,4.52775483772477e-07,4.68975037966074e-10,-5.13478148959398e-10,-1.52872506346917e-10,-1.90819582375451e-11,-9.23740251143479e-11,2.68014777077711e-10 +7.696,-1.97892367871948e-06,-1.44690755926255e-06,1.57257836322713e-06,-3.72915164026377e-10,-1.63428526961384e-09,-0.0800006018862408,-2.26072247944453e-09,1.26415284490408e-09,4.76109603131327e-10,3.23543275504398e-11,3.34324581907593e-10,-7.06584096787842e-10,2.50510658220804e-07,1.8895995878414e-07,1.90665625645444e-07,-9.97465998866044e-12,-8.15320033894607e-11,1.13020703881682e-07 +7.698,6.64425391257422e-09,-8.83845133886618e-09,-2.71068394119833e-09,-3.72806278903237e-10,-1.63331757147001e-09,-0.0799999956398079,6.27764663711192e-08,1.27134664774916e-07,6.32559291405195e-08,3.23196330809203e-11,3.34189273476467e-10,4.53227566588004e-07,4.7061828163249e-10,-5.10008701867021e-10,-1.58727198025468e-10,-2.12503625789202e-11,-6.4618449461569e-11,2.64545330047246e-10 +7.7,-1.97867257285399e-06,-1.44639902060345e-06,1.5728313869437e-06,-3.72785885494054e-10,-1.63294851251994e-09,-0.0800006000733305,-2.258840006318e-09,1.26211281009661e-09,4.75474694339225e-10,3.22693261001241e-11,3.34066108109746e-10,-7.05525915467653e-10,3.18016646413303e-07,3.78825876924874e-07,-1.18045764132392e-07,-1.69135538889824e-11,-6.28837259856322e-11,3.17810014441565e-07 +7.702,6.63521855254895e-09,-8.8334028876258e-09,-2.70878204242098e-09,-3.72677201598837e-10,-1.63198130703757e-09,-0.07999999564263,6.40485329567723e-08,1.28649968282616e-07,6.278374608399e-08,3.22519788653644e-11,3.33937738572524e-10,4.5449880664577e-07,4.64672110593815e-10,-5.11526585048718e-10,-1.3921155897352e-10,-1.77809156305543e-11,-9.88792381492229e-11,2.61943244911637e-10 +7.704,-1.97841637872216e-06,-1.44588442073032e-06,1.57308252192803e-06,-3.72656877578592e-10,-1.63161276156565e-09,-0.0800005982553353,-2.25698131787562e-09,1.26006670375642e-09,4.74917848103331e-10,3.21982024376019e-11,3.3367059115715e-10,-7.04478142488006e-10,3.28664368937268e-07,4.99925188044948e-07,-3.45264181831415e-07,-2.47198095344552e-11,-1.10154940743036e-10,4.43358023879597e-07 +7.706,6.62619062727745e-09,-8.82836262081077e-09,-2.70688237102856e-09,-3.72548408789086e-10,-1.63064662467294e-09,-0.0799999956454479,6.53631904325215e-08,1.30649669034796e-07,6.14026893566642e-08,3.21530996272265e-11,3.33497118809552e-10,4.56272238741289e-07,4.69364672870761e-10,-5.16297074467643e-10,-1.57859836287531e-10,-1.77809156269734e-11,-7.4159428579492e-11,2.43728648335656e-10 +7.708,-1.97815492596043e-06,-1.44536182205418e-06,1.57332813268546e-06,-3.72528265180083e-10,-1.63027877309041e-09,-0.0800005964302463,-2.25510385918414e-09,1.25800151545855e-09,4.74286408758181e-10,3.2127078775094e-11,3.33373953442832e-10,-7.03503227894664e-10,2.94221329296988e-07,5.50471994383451e-07,-4.74159990781514e-07,-1.25767451990496e-11,-8.50014503043647e-11,4.91188686971748e-07 +7.71,6.61717021184071e-09,-8.82333061474894e-09,-2.70498522539353e-09,-3.72419900473986e-10,-1.62931312885917e-09,-0.0799999956482619,6.65400757497093e-08,1.32851557012329e-07,5.95060493935383e-08,3.21027926464303e-11,3.33157113008334e-10,4.58236993489176e-07,4.703201262859e-10,-5.07189776358568e-10,-1.46367293311874e-10,-1.77809156305462e-11,-8.50014503413681e-11,2.71484224029407e-10 +7.712,-1.97788876565744e-06,-1.44483041582613e-06,1.57356615688303e-06,-3.72399854009497e-10,-1.62894614463838e-09,-0.0800005945972984,-2.253222578679e-09,1.25597275635311e-09,4.73700939584934e-10,3.20559551125718e-11,3.33033947641466e-10,-7.02417290998546e-10,2.31140129412198e-07,5.39894734814246e-07,-5.0848886733498e-07,-2.29850860584689e-11,-6.54858112366124e-11,4.72591583896556e-07 +7.714,6.60815732152599e-09,-8.81830672372352e-09,-2.70309042163519e-09,-3.72291676653536e-10,-1.6279809930686e-09,-0.0799999956510716,6.74646362673582e-08,1.35011135951586e-07,5.74720939241982e-08,3.20108523021964e-11,3.32895169763388e-10,4.60127359824762e-07,4.6584101581039e-10,-5.15212872295364e-10,-1.53523027597641e-10,-2.34187669239071e-11,-8.54351311733659e-11,2.75821032641326e-10 +7.716,-1.97761890711237e-06,-1.44429037128233e-06,1.57379604525873e-06,-3.72271810600289e-10,-1.62761456395932e-09,-0.0800005927567889,-2.25135921461576e-09,1.25391190486393e-09,4.73086847474543e-10,3.19622800448762e-11,3.32692207116773e-10,-7.01314006867981e-10,1.5663930927452e-07,4.84027097923777e-07,-4.66518317029618e-07,-1.77809156269903e-11,-8.67361737803805e-11,4.05037982346252e-07 +7.718,6.59915188466753e-09,-8.81329107610407e-09,-2.70119807424529e-09,-3.72163827533356e-10,-1.62665022424013e-09,-0.0799999956538769,6.80911935044562e-08,1.36947244343281e-07,5.56060206560799e-08,3.19397286396885e-11,3.32548225068266e-10,4.61747511754147e-07,4.70472592216199e-10,-5.13261308524229e-10,-1.46367293311796e-10,-1.38777878095899e-11,-7.80625564374214e-11,2.41993924937695e-10 +7.72,-1.97734654233835e-06,-1.44374258230495e-06,1.57401846934135e-06,-3.7214405168573e-10,-1.62628437105905e-09,-0.0800005909097989,-2.24947732424689e-09,1.25185885962983e-09,4.72501378301296e-10,3.19067688936378e-11,3.32379956891023e-10,-7.0034603116823e-10,8.55671497432154e-08,4.01538394540567e-07,-3.73831608033397e-07,-2.03830008444959e-11,-7.67615138304087e-11,3.07851834276776e-07 +7.722,6.59015397537054e-09,-8.80828364066555e-09,-2.69930806873209e-09,-3.72036200457782e-10,-1.62532070441257e-09,-0.0799999956566782,6.84334621034291e-08,1.38553397921444e-07,5.41106942239461e-08,3.18581966363105e-11,3.32241179012945e-10,4.62978919091254e-07,4.67158999076524e-10,-5.14345510557634e-10,-1.48102016735292e-10,-2.64545330068743e-11,-9.32413868153123e-11,2.49800180501781e-10 +7.724,-1.97707280848993e-06,-1.44318836871327e-06,1.57423491211825e-06,-3.72016618899185e-10,-1.624955406343e-09,-0.0800005890578832,-2.24760868825058e-09,1.2498014775876e-09,4.71908970234355e-10,3.18009507616103e-11,3.32006991343762e-10,-6.99346830446223e-10,2.85338362676346e-08,3.10107408509888e-07,-2.57354467594724e-07,-2.12503625789524e-11,-9.8445557243264e-11,1.99765551348812e-07 +7.726,6.58116354061754e-09,-8.8032844347552e-09,-2.69742043285115e-09,-3.71908996654735e-10,-1.62399267644719e-09,-0.0799999956594756,6.85475974484997e-08,1.39793827555483e-07,5.30812763535674e-08,3.17731951859947e-11,3.31847396783972e-10,4.63777981296649e-07,4.65746148370313e-10,-5.11526585048045e-10,-1.53306187215653e-10,-1.82145964995211e-11,-6.24500451535896e-11,2.83627288361039e-10 +7.728,-1.97679861810014e-06,-1.44262919340304e-06,1.57444723722366e-06,-3.71889526118441e-10,-1.62362801675586e-09,-0.0800005872027713,-2.2457457036571e-09,1.24775537124741e-09,4.71295745485492e-10,3.17280923756123e-11,3.31757191163147e-10,-6.98212321292779e-10,-8.67834043939868e-09,2.24358509193736e-07,-1.40585893623896e-07,-2.03830008444862e-11,-6.80878964504997e-11,9.6420267577715e-08 +7.73,6.57218055780291e-09,-8.79829341327021e-09,-2.69553524986921e-09,-3.71782084285233e-10,-1.62266564768254e-09,-0.0799999956622685,6.85128840867421e-08,1.40691261592258e-07,5.25189327790717e-08,3.16916631826167e-11,3.3157504519817e-10,4.6416366236696e-07,4.67521529178156e-10,-5.17814957509846e-10,-1.37910516314007e-10,-2.12503625789557e-11,-1.01047642457233e-10,2.46330733549931e-10 +7.732,-1.97652456656379e-06,-1.44206642835668e-06,1.57465731295478e-06,-3.7176275946571e-10,-1.62230171657507e-09,-0.0800005853461166,-2.24387561754039e-09,1.24568411141737e-09,4.70744103420236e-10,3.16430909252964e-11,3.31353000593318e-10,-6.97226998358579e-10,-2.48571406746781e-08,1.54514205257879e-07,-4.09845768405225e-08,-2.12503625789605e-11,-9.15066633393819e-11,9.1654115110928e-09 +7.734,6.56320505533275e-09,-8.79331067682454e-09,-2.69365227345553e-09,-3.71655511921531e-10,-1.62134023568017e-09,-0.0799999956650574,6.84134555240434e-08,1.4130931841329e-07,5.23549944717096e-08,3.16066617323009e-11,3.31209018544812e-10,4.64200324013004e-07,4.64296027964406e-10,-5.09358180702816e-10,-1.60895602422974e-10,-1.73472347615245e-11,-7.28583860094258e-11,2.63677968387174e-10 +7.736,-1.9762509127417e-06,-1.44150119108302e-06,1.57486673293267e-06,-3.71636332818781e-10,-1.62097688050089e-09,-0.0800005834893153,-2.24201843342853e-09,1.24364667869456e-09,4.70100521010544e-10,3.15737019862503e-11,3.31061567049281e-10,-6.9617228648503e-10,-2.23046983752738e-08,1.06213648979241e-07,3.10886299313703e-08,-1.77809156305132e-11,-7.32920668783908e-11,-5.47513423745422e-08 +7.738,6.55423698159904e-09,-8.78833609010976e-09,-2.69177187137148e-09,-3.71529217113586e-10,-1.62001598941197e-09,-0.0799999956678421,6.83242367305423e-08,1.41734173009207e-07,5.24793489914351e-08,3.15355380697788e-11,3.30915850277299e-10,4.63981318643506e-07,4.65332796042658e-10,-5.17164436206562e-10,-1.35958952403585e-10,-2.29850860549388e-11,-7.97972798765453e-11,2.44596010074109e-10 +7.74,-1.97597761579478e-06,-1.44093425439099e-06,1.57507665032863e-06,-3.71510190666502e-10,-1.61965321709978e-09,-0.08000058163339,-2.24015710224436e-09,1.24157802094973e-09,4.6955668520093e-10,3.14817616420306e-11,3.30742377929774e-10,-6.95193902444734e-10,-5.71414524475855e-09,8.0755714623294e-08,7.20723394189035e-08,-1.95156391029932e-11,-8.71698546494911e-11,-9.29542900727476e-08 +7.742,6.54527635319006e-09,-8.78336977802596e-09,-2.68989364463068e-09,-3.71403290067018e-10,-1.61869301990025e-09,-0.0799999956706229,6.83013801495632e-08,1.420571958677e-07,5.27676383491107e-08,3.14574755133669e-11,3.30567170858701e-10,4.63609501483215e-07,4.64302804227778e-10,-5.06539255054146e-10,-1.48752538091084e-10,-2.03830008444762e-11,-7.67615138303352e-11,2.79290479670838e-10 +7.744,-1.97570441027418e-06,-1.44036602560751e-06,1.57528772088203e-06,-3.71384360764448e-10,-1.61833094841635e-09,-0.080000579778952,-2.23829989102745e-09,1.23955186392952e-09,4.68961675048566e-10,3.14002296386527e-11,3.30435331874453e-10,-6.94076740526051e-10,1.93529613412272e-08,7.631547303031e-08,8.36409934338812e-08,-2.29850860584333e-11,-8.1532003389241e-11,-1.06074871134733e-07 +7.746,6.53632315362595e-09,-8.77841157057024e-09,-2.68801779793049e-09,-3.71277689148464e-10,-1.61737127857275e-09,-0.0799999956733992,6.83787919949281e-08,1.42362457759821e-07,5.31022023228463e-08,3.13655351691331e-11,3.30241042845144e-10,4.63185201998676e-07,4.63550638721842e-10,-5.05238212309429e-10,-1.50920942383935e-10,-1.60461921510421e-11,-1.07552855492223e-10,2.51534903978119e-10 +7.748,-1.9754308951062e-06,-1.43979657577648e-06,1.57550012969132e-06,-3.71258898623772e-10,-1.61700998424497e-09,-0.0800005779262112,-2.23644568847256e-09,1.23753091108028e-09,4.6835799127903e-10,3.13360448700485e-11,3.30005120452484e-10,-6.93070600910138e-10,4.72740709192731e-08,8.86463211942495e-08,7.13942793802657e-08,-1.82145964960201e-11,-8.45677694355514e-11,-9.80387645808759e-08 +7.75,6.52737737087206e-09,-8.77346144692592e-09,-2.68614436596537e-09,-3.71152344968984e-10,-1.61605125809094e-09,-0.0799999956761714,6.85678882786052e-08,1.42717043044598e-07,5.33877794403673e-08,3.12926767831491e-11,3.29902771767402e-10,4.62793046940353e-07,4.64645005538262e-10,-5.07189776357431e-10,-1.37259995062659e-10,-2.4719809534409e-11,-6.24500451534862e-11,2.32452945819356e-10 +7.752,-1.97515662355308e-06,-1.4392257076043e-06,1.57571368080908e-06,-3.71133727916639e-10,-1.6156903731579e-09,-0.080000576075039,-2.23458710845041e-09,1.23550215197485e-09,4.67808951298779e-10,3.12371656319109e-11,3.2975532027187e-10,-6.92140789126861e-10,7.34631133014337e-08,1.12551244358208e-07,4.25805224383524e-08,-1.86482773684837e-11,-7.89299181752373e-11,-7.39564659769999e-08 +7.754,6.51843902243826e-09,-8.76851943831802e-09,-2.68427313016018e-09,-3.71027396306456e-10,-1.61473223680986e-09,-0.07999999567894,6.8861740731811e-08,1.43167248022031e-07,5.35581015301207e-08,3.12180836736751e-11,3.29587052094701e-10,4.62497221076445e-07,4.60091356165462e-10,-5.05455052744133e-10,-1.54390389335966e-10,-1.43114686750751e-11,-8.37004076975702e-11,2.89698820449708e-10 +7.756,-1.97488117659016e-06,-1.43865303861221e-06,1.5759279132152e-06,-3.71008855581945e-10,-1.61437202494952e-09,-0.0800005742250502,-2.23274674302575e-09,1.23348033176387e-09,4.67191389741435e-10,3.11799197572106e-11,3.2942051864108e-10,-6.90981993845062e-10,9.45745726508603e-08,1.42418195300458e-07,5.03091492374233e-09,-2.29850860549649e-11,-7.24247051037512e-11,-3.99810392869042e-08 +7.758,6.50950803546615e-09,-8.76358551699097e-09,-2.68240436460121e-09,-3.70902676627427e-10,-1.61341455473529e-09,-0.0799999956817039,6.92400390224144e-08,1.43736920803233e-07,5.35782251898157e-08,3.11261433294553e-11,3.29297353274286e-10,4.62337296919297e-07,4.63831853908691e-10,-5.11526585047115e-10,-1.42681005925035e-10,-2.4286128665405e-11,-7.45931094852864e-11,2.43728648413103e-10 +7.76,-1.97460421643407e-06,-1.438078090929e-06,1.57614222611596e-06,-3.70884351008627e-10,-1.61305483553642e-09,-0.080000572375701,-2.23089141561011e-09,1.23143422542368e-09,4.66620665717735e-10,3.1082775242549e-11,3.29122146203139e-10,-6.9000707925141e-10,1.08813813126482e-07,1.73360024244591e-07,-3.43561984446881e-08,-1.8648277368474e-11,-8.58688120791179e-11,-2.13457726285167e-09 +7.762,6.50058446980371e-09,-8.75865978008927e-09,-2.68053788193834e-09,-3.70778345526457e-10,-1.61209806615048e-09,-0.079999995684464,6.96752942749204e-08,1.44430360900211e-07,5.34408003960369e-08,3.10515502199814e-11,3.28953878025969e-10,4.62328758610246e-07,4.59542478815848e-10,-4.93528828847052e-10,-1.5460722977054e-10,-1.56125112820657e-11,-9.49761102914699e-11,2.47198095288384e-10 +7.764,-1.97432551525697e-06,-1.43750036948539e-06,1.57635598931755e-06,-3.70760144807747e-10,-1.61173902002432e-09,-0.0800005705263859,-2.22905324569485e-09,1.2294601101083e-09,4.66002236798653e-10,3.10203251974207e-11,3.28742241761973e-10,-6.89018286870256e-10,1.15723430191361e-07,2.01289722745204e-07,-7.00938872886704e-08,-1.51788304130765e-11,-6.8955258151836e-11,3.43258408065573e-08 +7.766,6.49166825682094e-09,-8.75374193964884e-09,-2.67867387299114e-09,-3.70654264225667e-10,-1.61078309718343e-09,-0.07999999568722,7.01381879956858e-08,1.45235519791192e-07,5.31604248468823e-08,3.09908348983291e-11,3.28678056993362e-10,4.62466061973472e-07,4.62479989324666e-10,-4.97215116370098e-10,-1.3270634593809e-10,-1.99493199754561e-11,-5.98479599394432e-11,2.64545330124723e-10 +7.768,-1.97404496250498e-06,-1.43691942740623e-06,1.57656863101693e-06,-3.70636181468154e-10,-1.61042430779634e-09,-0.0800005686765217,-2.22720332573755e-09,1.22747124964282e-09,4.65471411414901e-10,3.09405279175189e-11,3.28502849922215e-10,-6.87960105549757e-10,1.15926917990663e-07,2.23460356113751e-07,-9.84611697758964e-08,-2.38524477963958e-11,-1.06251812921804e-10,6.52663686727304e-08 +7.77,6.48275944351798e-09,-8.74883205465027e-09,-2.67681198734548e-09,-3.70530502113997e-10,-1.60946908578374e-09,-0.0799999956899719,7.06018956676485e-08,1.46129361215647e-07,5.27665801677787e-08,3.08954251071435e-11,3.28253049741675e-10,4.62727127448163e-07,4.58875016853619e-10,-4.96781435364715e-10,-1.53523027598107e-10,-2.42861286619568e-11,-1.07119174623332e-10,2.41993924860558e-10 +7.772,-1.97376255492231e-06,-1.43633490996137e-06,1.5767796973376e-06,-3.70512599767725e-10,-1.60911129559738e-09,-0.0800005668256132,-2.22536782567014e-09,1.22548412390136e-09,4.64857319304508e-10,3.0843383402871e-11,3.28074373223722e-10,-6.86992129850315e-10,1.1086808825995e-07,2.38413021971645e-07,-1.17657836595659e-07,-1.30104260681133e-11,-7.15573433658274e-11,8.79730316629104e-08 +7.774,6.4738579722153e-09,-8.74393011815466e-09,-2.67495255806827e-09,-3.70407128580386e-10,-1.60815678829085e-09,-0.0799999956927198,7.10453680206882e-08,1.47083013303533e-07,5.22959488213961e-08,3.0843383402871e-11,3.27966820368211e-10,4.63079019574815e-07,4.6396060291626e-10,-5.15863393736644e-10,-1.37910516365956e-10,-1.12757025955614e-11,-6.28837260223771e-11,2.74086309242468e-10 +7.776,-1.97347837345023e-06,-1.43574657790815e-06,1.57698888113289e-06,-3.70389226234114e-10,-1.6077994283159e-09,-0.0800005649732971,-2.22351198325847e-09,1.22342067032641e-09,4.64305677239044e-10,3.07982805924888e-11,3.27822838319632e-10,-6.85895784613345e-10,1.02256887035975e-07,2.45651155658773e-07,-1.27284467690935e-07,-2.42861286653819e-11,-7.89299181751339e-11,1.01196828668856e-07 +7.778,6.46496392428227e-09,-8.73903643547336e-09,-2.67309533535931e-09,-3.70283935458016e-10,-1.60684549693757e-09,-0.0799999956954634,7.14543955688322e-08,1.48065617926169e-07,5.17868109506323e-08,3.07462388882095e-11,3.27651100695511e-10,4.6348380688949e-07,4.5548349693302e-10,-4.97431956668413e-10,-1.43114686742312e-10,-2.38524477929724e-11,-8.28330459596853e-11,2.35922392694769e-10 +7.78,-1.97319255586795e-06,-1.43515431543645e-06,1.57719602837669e-06,-3.70266241278561e-10,-1.60648882391312e-09,-0.0800005631193619,-2.22169004927074e-09,1.22143094249974e-09,4.63733218492075e-10,3.07028708013169e-11,3.27491506135794e-10,-6.84952095042566e-10,9.19963957890096e-08,2.45971212156583e-07,-1.28288438896936e-07,-1.51788304130943e-11,-7.89299181387813e-11,1.0482587023208e-07 +7.782,6.45607716408519e-09,-8.73415071170336e-09,-2.67124040248534e-09,-3.7016112397481e-10,-1.60553553091303e-09,-0.0799999956982032,7.18223811519881e-08,1.49049502774795e-07,5.12736571950446e-08,3.06855235665571e-11,3.27335381022956e-10,4.63903110370418e-07,4.61668531760782e-10,-4.92010945941753e-10,-1.55474591560159e-10,-1.34441069405246e-11,-8.06646416511025e-11,2.73218947504376e-10 +7.784,-1.97290526634335e-06,-1.43455811742535e-06,1.57740112300547e-06,-3.70143499184294e-10,-1.60517948238903e-09,-0.0800005612637494,-2.2198433751437e-09,1.21946289871597e-09,4.63111320125834e-10,3.06490943735548e-11,3.27168847569189e-10,-6.83859219252548e-10,8.16906712726494e-08,2.40474523965918e-07,-1.22366960317354e-07,-2.08166817134206e-11,-7.45931094851536e-11,1.00214975181401e-07 +7.786,6.44719779058461e-09,-8.72927286010849e-09,-2.66938795720484e-09,-3.70038527597316e-10,-1.60422685552275e-09,-0.0799999957009387,7.21491438370788e-08,1.50011400870659e-07,5.07841893537751e-08,3.06022568397034e-11,3.27037008585015e-10,4.64303970271144e-07,4.59256181680297e-10,-5.06322414483052e-10,-1.45933612390851e-10,-1.99493199720315e-11,-8.50014503047078e-11,2.37657116170875e-10 +7.788,-1.972616669768e-06,-1.43395807182187e-06,1.57760425976289e-06,-3.70021090156936e-10,-1.60387133435469e-09,-0.0800005594065336,-2.21800635041698e-09,1.21743760905804e-09,4.62527585676271e-10,3.05692970936667e-11,3.2682884176797e-10,-6.82908590787865e-10,7.26293093225942e-08,2.30975178228171e-07,-1.11582618142461e-07,-2.12503625790219e-11,-8.89045781256749e-11,8.89600893208472e-08 +7.79,6.43832576518294e-09,-8.72440310967226e-09,-2.66753784686213e-09,-3.69916250408941e-10,-1.60291954015568e-09,-0.0799999957036703,7.24396610743691e-08,1.50935301583571e-07,5.03378588812053e-08,3.05172553893874e-11,3.26681390272512e-10,4.64659810628427e-07,4.58719163038236e-10,-4.90493062900015e-10,-1.30537941592925e-10,-2.51534904033612e-11,-6.93889390572133e-11,2.4806545710258e-10 +7.792,-1.9723269111237e-06,-1.43335433061553e-06,1.57780561119841e-06,-3.69899021135378e-10,-1.6025646087936e-09,-0.0800005575478943,-2.21617147376482e-09,1.21547563680644e-09,4.62005433909899e-10,3.04686831320532e-11,3.26551286011742e-10,-6.81916328959455e-10,6.57193534442381e-08,2.19201176299042e-07,-9.82356557238639e-08,-1.69135538924635e-11,-7.24247051401569e-11,7.36320726354953e-08 +7.794,6.42946107928788e-09,-8.71954120712504e-09,-2.66568982512649e-09,-3.69794375676413e-10,-1.60161333501163e-09,-0.079999995706398,7.27025384881461e-08,1.51812106288768e-07,4.99449162583098e-08,3.04496011738175e-11,3.26391691451952e-10,4.64954338918969e-07,4.56996297777229e-10,-4.99817201448346e-10,-1.42247325004453e-10,-1.51788304131055e-11,-8.80372163876927e-11,2.68014777000569e-10 +7.796,-1.97203610096975e-06,-1.43274708219038e-06,1.57800539086345e-06,-3.69777222730683e-10,-1.60125904202779e-09,-0.080000555688077,-2.21434348857371e-09,1.21347636800064e-09,4.61436444609882e-10,3.04079678104008e-11,3.26199137146191e-10,-6.80844269851452e-10,6.13437760643877e-08,2.06996529300709e-07,-8.43099461744971e-08,-1.95156391030529e-11,-8.19656842217927e-11,5.64982089149161e-08 +7.798,6.42060370533359e-09,-8.71468730165303e-09,-2.66384407934805e-09,-3.69672743805172e-10,-1.60030853846305e-09,-0.0799999957091213,7.29479135924036e-08,1.5264009240597e-07,4.96076764736119e-08,3.03715386174053e-11,3.26063828715065e-10,4.65180331754629e-07,4.55273433008598e-10,-5.00034042017682e-10,-1.48752538090631e-10,-1.82145964994435e-11,-8.50014503409675e-11,2.45463371888511e-10 +7.8,-1.97174430931538e-06,-1.43213652182075e-06,1.57820382156934e-06,-3.69655736576213e-10,-1.59995478671293e-09,-0.0800005538273556,-2.21252239484168e-09,1.21147623183257e-09,4.60841434457519e-10,3.0335109424403e-11,3.25859131344827e-10,-6.79862416363898e-10,5.95574801322712e-08,1.95746630701573e-07,-7.15536570993951e-08,-1.86482773684336e-11,-7.28583860091123e-11,3.9791954427855e-08 +7.802,6.41175361575422e-09,-8.7098413967257e-09,-2.66200071361022e-09,-3.69551403367474e-10,-1.59900510193767e-09,-0.0799999957118408,7.31861435129327e-08,1.53423078928777e-07,4.93214618452143e-08,3.02969455079315e-11,3.25772395171028e-10,4.6533949957234e-07,4.60233657701842e-10,-4.86373094509734e-10,-1.46584133694459e-10,-2.47198095309865e-11,-6.07153216410998e-11,2.68014777000672e-10 +7.804,-1.97145156474133e-06,-1.43152282950504e-06,1.57840110741672e-06,-3.69534548794181e-10,-1.59865169713225e-09,-0.0800005519659976,-2.21068146021087e-09,1.20953073945453e-09,4.60255097922741e-10,3.02362301862791e-11,3.25616270058262e-10,-6.78790357255895e-10,6.00601433726293e-08,1.86617431585887e-07,-6.11552908980583e-08,-1.82145964960783e-11,-1.05818132016528e-10,2.52523696656317e-08 +7.806,6.40291088991338e-09,-8.70500327376789e-09,-2.66015969321853e-09,-3.69430458446729e-10,-1.59770263685743e-09,-0.079999995714556,7.34263840864232e-08,1.5416954865512e-07,4.90768406816221e-08,3.02240871219472e-11,3.25349122642962e-10,4.65440509051003e-07,4.55978164420507e-10,-5.07406616790325e-10,-1.36609473758715e-10,-6.93889390558497e-12,-8.97719398998784e-11,2.27248775390649e-10 +7.808,-1.97115785920498e-06,-1.43090615131042e-06,1.57859741477945e-06,-3.69413652445694e-10,-1.59735030064168e-09,-0.0800005501042356,-2.20885754755319e-09,1.20750111298737e-09,4.59708660027706e-10,3.02084746106567e-11,3.25257182298663e-10,-6.77881362154333e-10,0.0610147174613091,0.0428584485184348,-0.0475527303534279,2.87573784229823e-09,4.7691885163101e-09,0.0331154713711502 +7.81,6.39407545972317e-09,-8.70017326931594e-09,-2.65832085857842e-09,-3.69309624548286e-10,-1.59640160812824e-09,-0.0799999957172675,0.00024413229622935,0.000171587963622413,-0.000190161844573051,4.17270384911414e-11,3.44425876708205e-10,0.000132927325993667,3.89695938820046e-08,-2.17569018356341e-08,-1.28441094565412e-08,2.7126738355604e-09,-5.83734449664389e-09,1.33677791058396e-08 +7.812,-9.94628674287471e-07,-7.44554296820688e-07,8.17950036487158e-07,-3.69246744291729e-10,-1.59597259713484e-09,-0.0800000183949316,-2.05297917202516e-09,1.12047350564483e-09,4.08332222201536e-10,4.10591699528996e-11,3.01907804312085e-10,-6.24410245730969e-10,-0.167163937909753,-0.116105841348597,0.129969540127208,-3.44299241894341e-09,-2.2425637735676e-08,-0.0786863792040615 +7.814,6.38586354303507e-09,-8.69569137529336e-09,-2.65668752968962e-09,-3.69145387868475e-10,-1.59519397691099e-09,-0.0799999957197651,-0.000424523455409586,-0.000292835401771924,0.000329716315935724,2.79550688153693e-11,2.5472332576551e-10,-0.000181818190822545,-4.05702642296917e-08,2.23735960313486e-08,1.04759950714012e-08,-2.10075012941019e-09,5.74497047154943e-09,-1.47069856292967e-08 +7.816,-2.69272249592563e-06,-1.91589590390825e-06,2.13681530022991e-06,-3.69134924016468e-10,-1.59495370383178e-09,-0.0800007456676949,-2.2152602289439e-09,1.20996788977021e-09,4.50236202487136e-10,3.26561694352597e-11,3.2488768619828e-10,-6.83238188248149e-10,0.166310467875787,0.114370446940752,-0.130598213338975,1.44632569809379e-09,2.7136713015554e-08,0.0538390963304694 +7.818,6.37700250211929e-09,-8.69085150373428e-09,-2.65488658487967e-09,-3.69014763190734e-10,-1.5938944261662e-09,-0.0799999957224981,0.000240718416093635,0.000164646385991135,-0.000192676537420235,3.37403716077451e-11,3.63270177827739e-10,3.35381944993569e-05,2.335960506233e-08,-1.539436980662e-08,-4.29647636910054e-09,-2.76254713547492e-10,-3.69019051425362e-09,9.60516388644564e-09 +7.82,-1.72984883155098e-06,-1.25731035994364e-06,1.36610915054888e-06,-3.68999962530037e-10,-1.59350062312047e-09,-0.0800006115149169,-2.12182180869457e-09,1.14839041054372e-09,4.33050297010732e-10,3.15511505810696e-11,3.10126924141264e-10,-6.44817532702362e-10,-0.115539607270987,-0.0788754754377399,0.0934570796771237,-9.2157184661101e-10,-2.27188060031151e-08,-0.0216435245108144 +7.822,6.36851521488451e-09,-8.6862579420921e-09,-2.65315438369162e-09,-3.68888558588409e-10,-1.59265391846963e-09,-0.0799999957250773,-0.000221440012990264,-0.00015085551575979,0.000181151781288218,3.00540842213015e-11,2.72394953815288e-10,-5.30359035438913e-05,-2.18297737741014e-08,1.42006632147169e-08,4.84573318968266e-09,-1.24900090272082e-10,3.59911753176566e-09,-8.93209117776875e-09 +7.824,-2.61560888351194e-06,-1.86073242298274e-06,2.09071627570168e-06,-3.68879746193151e-10,-1.59241104330521e-09,-0.0800008236585311,-2.20914090379097e-09,1.20519306340259e-09,4.5243322976946e-10,3.10515502199814e-11,3.24523394268325e-10,-6.80545897413433e-10,0.104909811065806,0.071465142933853,-0.0858849483623392,1.47885176325321e-10,2.19763443553921e-08,0.0241739380830625 +7.826,6.35967865126935e-09,-8.68143716983849e-09,-2.65134465077255e-09,-3.68764352387529e-10,-1.59135582489256e-09,-0.0799999957277995,0.000198199231273005,0.000135005055975654,-0.000162388012161177,3.06456249266028e-11,3.60300331236867e-10,4.36598487883695e-05,-1.29031679819038e-08,5.81262468719615e-09,6.48179426801245e-09,-2.1068216615721e-09,1.89128226970171e-09,-3.41393580076013e-09 +7.828,-1.82281195841984e-06,-1.32071219908006e-06,1.4411642270569e-06,-3.68757163693445e-10,-1.59096984198026e-09,-0.0800006490191359,-2.26075357571859e-09,1.22844356215137e-09,4.78360406841513e-10,2.2624263573692e-11,3.32088523347133e-10,-6.94201640616475e-10,-0.0722828905833681,-0.0509224533692557,0.0594631079113515,-2.96767818652627e-09,-1.01429281640186e-08,-0.0104464012284227 +7.83,6.35063563696647e-09,-8.67652339558989e-09,-2.64943120914518e-09,-3.68673855333235e-10,-1.59002747079917e-09,-0.0799999957305763,-9.09323310604356e-05,-6.86847575013464e-05,7.5464419484203e-05,1.87749121804991e-11,3.19728618580796e-10,1.87424387468347e-06,3.08338534353035e-08,-1.77603157875532e-08,-6.30853876085071e-09,8.06646416327958e-10,-4.33290556213949e-09,1.17596904436853e-08 +7.832,-2.18654128266154e-06,-1.59545122908542e-06,1.74302190499367e-06,-3.68682064044723e-10,-1.58969092750594e-09,-0.0800006415221604,-2.13741816197739e-09,1.15740229900117e-09,4.53126251798113e-10,2.58508492390035e-11,3.14756901098577e-10,-6.47162878841739e-10,0.0134167490123114,0.0129030053772602,-0.00945844074959032,2.81502252063969e-09,-4.27826177264459e-09,-0.0109471125254977 +7.834,6.34208596431856e-09,-8.67189378639388e-09,-2.64761870413799e-09,-3.68570451936279e-10,-1.58876844319478e-09,-0.079999995733165,-3.72653350111841e-05,-1.70727359922998e-05,3.76306564858375e-05,3.00350022630591e-11,3.02615571490216e-10,-4.19142062273123e-05,-1.77978046188161e-08,1.25947429569593e-08,2.6591142482631e-09,7.37257477291577e-10,3.08390465943523e-09,-7.84095011145107e-09 +7.836,-2.33560262270629e-06,-1.66374217305462e-06,1.89354453093704e-06,-3.68561924035671e-10,-1.58848046521998e-09,-0.0800008091789853,-2.20860938045266e-09,1.20778127082901e-09,4.63762708791167e-10,2.87998791481701e-11,3.27092519736319e-10,-6.78526679287547e-10,0.0332726003139181,0.0200406979312378,-0.0301311641837242,-6.18862600053195e-10,1.108965350107e-08,0.0212054687386022 +7.838,6.33325152679675e-09,-8.66706266131057e-09,-2.64576365330282e-09,-3.68455252419686e-10,-1.58746007311583e-09,-0.0799999957358791,9.58250662444737e-05,6.30900557326425e-05,-8.28940002490461e-05,2.75595518628466e-11,3.46974185494491e-10,4.29076687270871e-05,-1.11828237369943e-08,4.6401684577364e-09,4.52849563401169e-09,-1.540434446669e-09,1.38951350423926e-09,-2.98719382559439e-09 +7.84,-1.95230235772844e-06,-1.41138195012408e-06,1.56196852994089e-06,-3.68451685828219e-10,-1.587092568478e-09,-0.0800006375483104,-2.25334067540064e-09,1.22634194465995e-09,4.81876691327211e-10,2.26381413614948e-11,3.32650573753275e-10,-6.90475454589923e-10,-0.0338138092260971,-0.0236501863574798,0.0289732847694074,-1.73906028466789e-09,-4.93832405525512e-09,-0.010262637849777 +7.842,6.32423816409515e-09,-8.66215729353192e-09,-2.64383614653751e-09,-3.6836469985424e-10,-1.58612947082082e-09,-0.079999995738641,-3.94301706599299e-05,-3.15106896972873e-05,3.29991388285965e-05,2.06033107241742e-11,3.27220889273469e-10,1.85711732797446e-06,7.30587939738373e-10,-9.58217879974598e-10,7.74337191615918e-10,-3.33500588255284e-10,-6.24500451167016e-11,8.76902717067947e-10 +7.844,-2.11002304036818e-06,-1.53742470891324e-06,1.69396508525529e-06,-3.68369272585323e-10,-1.58578368492091e-09,-0.0800006301198411,-2.25041832364168e-09,1.22250907314006e-09,4.84974040093675e-10,2.13041390084735e-11,3.32400773572808e-10,-6.86967843721651e-10,0.0778652617338155,0.0559163884318351,-0.0611697543451256,3.3948538424885e-09,6.97272101170847e-09,0.0370056074125865 +7.846,6.31523649080059e-09,-8.65726725723936e-09,-2.64189625037714e-09,-3.68279483298206e-10,-1.58479986772653e-09,-0.0799999957413889,0.000272030876275298,0.000192154864030028,-0.000211679878551879,3.41827260941268e-11,3.55111773320299e-10,0.000149879546978304,4.2517581117207e-08,-2.30707380283869e-08,-1.3832684997466e-08,3.20663634534194e-09,-6.2337288109411e-09,1.44797368540165e-08 +7.848,-1.0218995352671e-06,-7.68805252793214e-07,8.47245571047872e-07,-3.68232541680946e-10,-1.58436323782762e-09,-0.0800000306016532,-2.08034799917287e-09,1.13022612102652e-09,4.29643300103818e-10,3.41306843898399e-11,3.07465858329047e-10,-6.29048896305591e-10,-0.175013537461497,-0.121707715459632,0.137128068052552,-2.91737120572524e-09,-2.4257505726336e-08,-0.0834783889617948 +7.85,6.30691509880389e-09,-8.65274635275526e-09,-2.64017767717672e-09,-3.68142960560647e-10,-1.58357000429321e-09,-0.0799999957439051,-0.00042802327357077,-0.000294675997808554,0.00033683239365839,2.25132412712245e-11,2.58081750414945e-10,-0.000184034008868912,-3.62027311138835e-08,2.01804718769699e-08,8.15298349668033e-09,-1.26244500964022e-09,5.07927033767715e-09,-1.31865005026726e-08 +7.852,-2.73399262955038e-06,-1.94750924402756e-06,2.19457514568158e-06,-3.68142488715861e-10,-1.58333091082596e-09,-0.0800007667376887,-2.22515892362842e-09,1.21094800853441e-09,4.62255234090543e-10,2.90809043512784e-11,3.27782939679758e-10,-6.81794898316288e-10,0.169348684065466,0.116641291672644,-0.134695056638716,2.37657116209e-09,2.70647219913414e-08,0.0559509478956243 +7.854,6.29801446310938e-09,-8.64790256072112e-09,-2.63832865624036e-09,-3.68026636943242e-10,-1.58225887253449e-09,-0.0799999957466322,0.000249371462691018,0.00017188916888197,-0.000201947832896414,3.20195259195834e-11,3.66340638380298e-10,3.97697827135601e-05,-3.77792449275881e-09,4.08961059394317e-10,1.9617554108696e-09,-9.82720849142474e-10,3.0964814044367e-10,-4.37150315908308e-10 +7.856,-1.73650677878641e-06,-1.25995256849976e-06,1.38678381409602e-06,-3.68014410612183e-10,-1.58186554827244e-09,-0.0800006076585578,-2.24027062159946e-09,1.21258385277198e-09,4.7010225573402e-10,2.51500209547089e-11,3.29021532241532e-10,-6.83543499579921e-10,-0.0906956164251482,-0.0636938216559556,0.0734593639487406,-2.38090797077941e-09,-1.35351799213263e-08,-0.00941031713316841 +7.858,6.28905338062298e-09,-8.64305222531003e-09,-2.63644824721743e-09,-3.67926036859423e-10,-1.58094278640553e-09,-0.0799999957493664,-0.000113411003009615,-8.28861177418806e-05,9.18896228985813e-05,2.24958940364647e-11,3.12199918694987e-10,2.12851418088221e-06,2.30196534700268e-09,-1.51484727532942e-09,-1.65882932364182e-10,1.82145964991527e-11,-2.86229373517917e-10,1.14751957932071e-09 +7.86,-2.19015079082493e-06,-1.59149703946732e-06,1.75434230569038e-06,-3.67924427036037e-10,-1.58061674859766e-09,-0.0800005991445011,-2.23106276021144e-09,1.20652446367067e-09,4.69438724004563e-10,2.52228793407056e-11,3.2787661474746e-10,-6.78953421262637e-10,0.0451312831535329,0.0329867239645442,-0.0359089875731574,1.23989360445594e-09,6.11967074239586e-09,0.0015759601184819 +7.862,6.28012912958214e-09,-8.63822612745535e-09,-2.63457049232141e-09,-3.6782514534206e-10,-1.57963127994654e-09,-0.0799999957520822,6.71141296044963e-05,4.90607781162817e-05,-5.17463273940326e-05,2.7455468454288e-11,3.36678601664568e-10,8.43235465480911e-06,4.18854234891255e-09,-2.03743272260178e-09,-1.28543009572487e-09,4.76181594154232e-10,-4.82253126339752e-10,1.4432899320504e-09 +7.864,-1.92169427240697e-06,-1.39525392700221e-06,1.54735699611427e-06,-3.6781460516222e-10,-1.579270034191e-09,-0.0800005654150825,-2.2143085908158e-09,1.19837473278026e-09,4.64297003621664e-10,2.71276057173223e-11,3.25947602242102e-10,-6.73180261534436e-10,-0.0235293184319786,-0.0168470171793025,0.0186852759870627,5.98479599196624e-11,-3.95603688698292e-09,-0.000763986303040384 +7.866,6.27127189521887e-09,-8.63343262852423e-09,-2.63271330430692e-09,-3.67716634919191e-10,-1.57832748953757e-09,-0.079999995754775,-2.70031441234286e-05,-1.83272906009356e-05,2.29947765542265e-05,2.76948602939666e-11,3.20854454116634e-10,5.37640944264723e-06,3.42308125779321e-08,-1.93811980352843e-08,-1.01869467722135e-08,1.97715108174607e-09,-5.10572487065063e-09,1.2163881013512e-08 +7.868,-2.0297068489007e-06,-1.46856308940596e-06,1.63933610233119e-06,-3.67703825721044e-10,-1.57798661637454e-09,-0.0800005439094447,-2.07738534050405e-09,1.12084994063911e-09,4.23549216532806e-10,3.50362100443074e-11,3.05524702759497e-10,-6.24524737480383e-10,-0.0127873620955329,-0.00671300765735315,0.0107873748492924,2.79117007284883e-09,-8.48279779751064e-09,-0.0128167956855327 +7.87,6.26296235385686e-09,-8.62894922876167e-09,-2.63101910744079e-09,-3.67576490079013e-10,-1.57710539072653e-09,-0.0799999957572731,-7.81525925055546e-05,-4.51793212303453e-05,6.61442759513912e-05,3.88595405853607e-11,2.86923262926595e-10,-4.58907732994779e-05,-1.94774269072743e-08,1.23403891271678e-08,1.38365881250249e-09,7.99273841554368e-10,2.79594056238865e-09,-8.47759362706397e-09 +7.872,-2.34231721892288e-06,-1.64928037432732e-06,1.90391320613673e-06,-3.67548387558703e-10,-1.57683892332283e-09,-0.0800007274725379,-2.15529504813314e-09,1.17021149714778e-09,4.29083851782815e-10,3.82333054105246e-11,3.1670846500905e-10,-6.58435111988635e-10,0.0478019888108975,0.0297238091024083,-0.0415957581211021,-5.65086172301475e-10,1.32125213547585e-08,0.0201437268063773 +7.874,6.25434117366432e-09,-8.62426838277308e-09,-2.62930277203366e-09,-3.67423556857371e-10,-1.57583855686649e-09,-0.0799999957599068,0.000113055362738057,7.37159151793011e-05,-0.000100238756533036,3.65991958961546e-11,3.39773348345635e-10,3.46841339260401e-05,-1.41169450194925e-08,5.20243570451936e-09,4.93615565091581e-09,-1.99319727389523e-09,1.60505289616512e-09,-3.82766734977939e-09 +7.876,-1.8900957679706e-06,-1.35441671361008e-06,1.50295818000454e-06,-3.67401990775118e-10,-1.57547982992945e-09,-0.0800005887360022,-2.21176282821112e-09,1.19102123996586e-09,4.48828474386481e-10,3.02605163149428e-11,3.23128676593711e-10,-6.73745781387754e-10,-0.0415775249469181,-0.028919286014942,0.0355899503392427,-2.48108825151434e-09,-5.83994658185835e-09,-0.0091204284680125 +7.878,6.24549412235148e-09,-8.61950429781322e-09,-2.62750745813611e-09,-3.67302514792112e-10,-1.57454604216012e-09,-0.0799999957626018,-5.32547370495975e-05,-4.1961228880454e-05,4.21210448239192e-05,2.66748428900983e-11,3.16413562018204e-10,-1.79757994600591e-06,2.83520663816035e-08,-1.72199494247843e-08,-6.19795013925554e-09,4.33247188123527e-10,-4.27826177264572e-09,1.08472258953204e-08 +7.88,-2.10311471616897e-06,-1.52226162913188e-06,1.6714423593002e-06,-3.67295291403558e-10,-1.57421417568138e-09,-0.080000595926322,-2.09835456268472e-09,1.12214144226673e-09,4.24036673829461e-10,3.19935050674367e-11,3.0601562950313e-10,-6.30356877806478e-10,-0.00252125852540552,0.00146315791839406,0.00351714772280111,2.00490665735826e-09,-6.44059458544901e-09,-0.0103587976070147 +7.882,6.23710070410074e-09,-8.61501573204415e-09,-2.6258113114408e-09,-3.67174540771842e-10,-1.57332197964211e-09,-0.0799999957651232,-6.33397711512207e-05,-3.61085972068771e-05,5.61896357151252e-05,3.46944695195323e-11,2.90651183676406e-10,-4.32327703740694e-05,-1.98959001469653e-08,1.30479394650563e-08,3.55748416838298e-09,2.70616862254158e-10,3.28469890177906e-09,-8.35095881338732e-09 +7.884,-2.35647380077388e-06,-1.66669601795941e-06,1.89620090216072e-06,-3.6715651352548e-10,-1.57305157094667e-09,-0.0800007688574035,-2.17793816327259e-09,1.17433320012696e-09,4.38266610502995e-10,3.30759725164534e-11,3.19154425110248e-10,-6.63760713060031e-10,0.0428873746740117,0.0267927243761388,-0.0370672034225599,-8.77770078842532e-10,1.26769254815884e-08,0.0208180958583015 +7.886,6.22838895144765e-09,-8.61031839924364e-09,-2.62405824499878e-09,-3.67042236881776e-10,-1.57204536194167e-09,-0.0799999957677782,0.000108209727544807,7.10623002976663e-05,-9.2079177975098e-05,3.11833892041625e-11,3.41358885602754e-10,4.00396130591274e-05,-1.22053609580093e-08,5.1538634470619e-09,5.76838923846753e-09,-1.97671740087741e-09,1.69309011253564e-09,-3.22398358006605e-09 +7.888,-1.9236348905947e-06,-1.38244681676877e-06,1.52788419026037e-06,-3.67031779968663e-10,-1.57168613540426e-09,-0.0800006086989513,-2.22675960710462e-09,1.19494865391521e-09,4.61340167456862e-10,2.51691029129447e-11,3.2592678556039e-10,-6.76656647380294e-10,0.0246107467557927,0.0173413390797657,-0.0163388346829939,6.27969898301732e-10,-1.18828558123333e-10,0.025788405252385 +7.89,6.21948191301923e-09,-8.60553860462798e-09,-2.62221288432896e-09,-3.66941560470124e-10,-1.57074165479942e-09,-0.0799999957704849,0.000206652714567989,0.000140427656616737,-0.000157434516707081,3.36952687973697e-11,3.4088357137026e-10,0.000143193234068679,3.80857324715983e-08,-2.08947442680742e-08,-1.00663834906333e-08,1.89475171663706e-09,-5.41797509632646e-09,1.33226762954643e-08 +7.892,-1.09702403232265e-06,-8.20736190301763e-07,8.98146123431975e-07,-3.66896998893473e-10,-1.57032260111878e-09,-0.080000035926015,-2.07441667721821e-09,1.1113696768429e-09,4.21074633494325e-10,3.27481097794938e-11,3.04254885175082e-10,-6.2336594219843e-10,-0.1529396991395,-0.104613752102227,0.118939881930454,-3.39311911900951e-09,-2.04016491200798e-08,-0.081840397273349 +7.894,6.21118424631036e-09,-8.60109312592061e-09,-2.62052858579498e-09,-3.66810568031006e-10,-1.56952463525872e-09,-0.0799999957729783,-0.000405106081989942,-0.000278027351792126,0.000318325011014684,2.01227923213332e-11,2.5927697488995e-10,-0.000184168355024681,-3.69105062327853e-08,2.07371012721995e-08,1.03816694823943e-08,-1.88954754620955e-09,5.54114046312201e-09,-1.30824170940445e-08 +7.896,-2.71744836028224e-06,-1.93284559747015e-06,2.17144616749057e-06,-3.66816507724188e-10,-1.56928549321922e-09,-0.0800007725994351,-2.22205870214933e-09,1.19431808193169e-09,4.62601311423897e-10,2.51899195946564e-11,3.26419447027567e-10,-6.75695610574603e-10,0.160638507185979,0.110254023379142,-0.126868890813054,1.79673984024146e-09,2.60668223117453e-08,0.0565830265697429 +7.898,6.20229601150176e-09,-8.59631585359288e-09,-2.61867818054928e-09,-3.66709808352628e-10,-1.56821895747061e-09,-0.0799999957756811,0.000237447946754046,0.000162988741724493,-0.000189150552237588,2.73097516822998e-11,3.63544264136943e-10,4.21637512543158e-05,-2.95926365547351e-09,6.74156910917792e-10,3.11317811810055e-09,-1.16399945237904e-09,5.19549681073181e-10,-1.05818132072081e-10 +7.9,-1.76765657326595e-06,-1.2808906305721e-06,1.41484395854014e-06,-3.66707268717459e-10,-1.56783131616267e-09,-0.0800006039444301,-2.23389575677123e-09,1.19701470957536e-09,4.75054023896301e-10,2.05339217851397e-11,3.2849764575186e-10,-6.76118883102891e-10,-0.0204929349513112,-0.0143412255150723,0.018120840446867,5.9067334357175e-10,-7.16484163663461e-09,0.0251789033060913 +7.902,6.19336042847468e-09,-8.59152779475458e-09,-2.6167779644537e-09,-3.66627672665487e-10,-1.56690496688761e-09,-0.0799999957783856,0.00015547620694881,0.00010562383966421,-0.000116667190450128,2.96724450565866e-11,3.34884897590408e-10,0.00014287936447867,4.12963355783602e-08,-2.20377101984413e-08,-1.20595807645826e-08,2.67017311039616e-09,-5.90976920180222e-09,1.40859546249692e-08 +7.904,-1.14575174547078e-06,-8.58395271915308e-07,9.48175196739676e-07,-3.66588578937233e-10,-1.56649177657231e-09,-0.0800000324269722,-2.0687104144578e-09,1.1088638687816e-09,4.26815700837976e-10,3.12146142267232e-11,3.04858568944654e-10,-6.1977506460302e-10,-0.134029380948621,-0.091230278900124,0.104197530278695,-2.34924926734271e-09,-1.80849259179417e-08,-0.0805783903845804 +7.906,6.18508558681685e-09,-8.58709233927946e-09,-2.61507070165035e-09,-3.6650281420858e-10,-1.56568553261183e-09,-0.0799999957808647,-0.000380641316845733,-0.000259297275936327,0.000300122930664699,2.02754479872147e-11,2.62545193918632e-10,-0.000179434197059688,-3.56139849820259e-08,1.99352253455525e-08,8.72153911593158e-09,-1.37650307818586e-09,5.18595583144958e-09,-1.27745036771276e-08 +7.908,-2.66831701285388e-06,-1.89558437566073e-06,2.14866691939861e-06,-3.66507477145284e-10,-1.56544159579663e-09,-0.0800007501637604,-2.21116635438592e-09,1.18860477016382e-09,4.61701857301706e-10,2.57086019139791e-11,3.25602392270455e-10,-6.70873079311536e-10,0.150970934495571,0.103060309751988,-0.120161733961674,1.9715132304492e-09,2.44604683730309e-08,0.0549074853119246 +7.91,6.1762409213993e-09,-8.5823379201988e-09,-2.61322389422114e-09,-3.66399979800924e-10,-1.56438312304275e-09,-0.0799999957835482,0.000223242421136486,0.000152943963071579,-0.000180524005181946,2.81615009090106e-11,3.60387067410745e-10,4.01957441879863e-05,-2.82135070366757e-09,2.70400021751895e-10,2.0250728177428e-09,-9.10729824889249e-10,2.81892564828155e-10,-1.37043154564908e-10 +7.912,-1.77534732830804e-06,-1.28380852337448e-06,1.4265708986709e-06,-3.66394831141648e-10,-1.56400004752699e-09,-0.0800005893807836,-2.22245175720059e-09,1.18968637025083e-09,4.69802148572676e-10,2.20656826144225e-11,3.26729962529767e-10,-6.71421251929796e-10,-0.0156606524852344,-0.0109600832192526,0.0145910594691738,8.41774566715994e-10,-6.69169580859904e-09,0.0249323473073678 +7.914,6.1673511143705e-09,-8.5775791747178e-09,-2.61134468562685e-09,-3.66311717070467e-10,-1.56307620319263e-09,-0.0799999957862339,0.000160599811195542,0.000109103630194564,-0.000122159767305244,3.15285991758749e-11,3.33620284176346e-10,0.000139925133417469,4.08951089882509e-08,-2.2094088711278e-08,-1.25873703820961e-08,2.74997039029345e-09,-6.01471997206244e-09,1.38760530843012e-08 +7.916,-1.1329480835258e-06,-8.47394002596175e-07,9.37931829449873e-07,-3.66268716744944e-10,-1.56266556639029e-09,-0.08000002968025,-2.05887132124757e-09,1.10131001540571e-09,4.19452667044286e-10,3.30655641755976e-11,3.02671082641515e-10,-6.15917039592585e-10,-0.135900857193587,-0.0923985756240563,0.105792896918088,-2.34881558647136e-09,-1.83889362070777e-08,-0.0792127348601706 +7.918,6.15911562908551e-09,-8.57317393465618e-09,-2.60966687495867e-09,-3.66179454813764e-10,-1.56186551886206e-09,-0.0799999957886975,-0.000383003617578745,-0.00026049067230162,0.000301011820367061,2.21333368299905e-11,2.60064539348044e-10,-0.000176925806023179,-3.59298154039824e-08,1.98194325534083e-08,8.5109870539879e-09,-1.3791051634034e-09,5.1447561488614e-09,-1.27935856352947e-08 +7.92,-2.66496255384061e-06,-1.88935669180254e-06,2.14197911091799e-06,-3.66180183397624e-10,-1.56162530823289e-09,-0.0800007373834741,-2.20259058286348e-09,1.18058774561933e-09,4.53496615260234e-10,2.75491435219846e-11,3.23250107236958e-10,-6.67091382133758e-10,0.151713814118866,0.103383634117733,-0.120495024655526,1.94809446352029e-09,2.45077395877114e-08,0.0539681720857615 +7.922,6.15030526675405e-09,-8.5684515836737e-09,-2.60785288849763e-09,-3.66069258239676e-10,-1.56057251843311e-09,-0.0799999957913659,0.000223851638896789,0.000153043864169356,-0.000180968278255097,2.99257146840726e-11,3.580954976989e-10,3.89468823198914e-05,-3.05859319749373e-09,3.14201789651818e-10,2.14498557807049e-09,-9.68843061331516e-10,3.08780778741815e-10,-2.24646690176039e-10 +7.924,-1.76955599825335e-06,-1.27718123512505e-06,1.41810599789752e-06,-3.66060480538888e-10,-1.5601929262421e-09,-0.0800005815959448,-2.21482495565346e-09,1.18184455277794e-09,4.62076557572517e-10,2.36737712766581e-11,3.24485230351925e-10,-6.67989968894463e-10,-0.0159888335984033,-0.0111750762519488,0.014911532105002,7.33788030340012e-10,-6.6483277216627e-09,0.0248430936456302 +7.926,6.14144596693144e-09,-8.56372420546259e-09,-2.60600458226734e-09,-3.6597456315457e-10,-1.5592745775117e-09,-0.0799999957940379,0.000159896304503182,0.000108343559161566,-0.000121322149835095,3.28608668054323e-11,3.31502186812252e-10,0.000138319256902401,4.06273432391453e-08,-2.1881368245168e-08,-1.21781924822518e-08,2.62116717219964e-09,-5.90803447832601e-09,1.37936537192666e-08 +7.928,-1.1299707802407e-06,-8.4380699847883e-07,9.3281739855719e-07,-3.65929037071666e-10,-1.55886691749485e-09,-0.0800000283189172,-2.0523155826969e-09,1.09431907979728e-09,4.13363787643515e-10,3.41584399654555e-11,3.00853092438624e-10,-6.12815354017402e-10,-0.135840802992115,-0.0921811323453668,0.105642598457095,-2.46937886805426e-09,-1.82835517559409e-08,-0.0783703704917883 +7.93,6.13323670460065e-09,-8.5593469291434e-09,-2.60435112711677e-09,-3.65837929394708e-10,-1.55807116514195e-09,-0.0799999957964891,-0.000383466907465338,-0.000260380970219942,0.00030124824399333,2.29833513332141e-11,2.58367979788481e-10,-0.000175162225064787,-3.60431509536521e-08,1.98651858852091e-08,8.92146599653716e-09,-1.50053580671804e-09,5.23062496095575e-09,-1.28118002318607e-08 +7.932,-2.66383841010222e-06,-1.88533087935872e-06,2.13781037453065e-06,-3.65837103666333e-10,-1.5578334455757e-09,-0.0800007289678174,-2.19648818651152e-09,1.17377982333812e-09,4.49049651629668e-10,2.81562967385827e-11,3.21775592282449e-10,-6.64062554944851e-10,0.151796228796768,0.103245334451109,-0.120366349556758,1.8153881176114e-09,2.45966441658949e-08,0.0533505411758082 +7.934,6.12445075185461e-09,-8.55465180985004e-09,-2.60255492851025e-09,-3.65725304207754e-10,-1.55678406277282e-09,-0.0799999957991454,0.000223718007721667,0.000152600367584448,-0.000180217154233649,3.0244903803659e-11,3.5675455645205e-10,3.82399396384223e-05,-3.16562216300479e-09,4.10045261634115e-10,2.5617528931493e-09,-1.10198308811451e-09,3.85975973404934e-10,-2.32452945780944e-10 +7.936,-1.76896637921565e-06,-1.27492940902099e-06,1.41694175759613e-06,-3.65716124051119e-10,-1.55640642734989e-09,-0.0800005760080589,-2.20915067516354e-09,1.17542000438466e-09,4.59296663202264e-10,2.37483643861251e-11,3.23319496176069e-10,-6.64992366727974e-10,-0.0159785937508284,-0.0111467680346479,0.0148059067233137,6.07153216590203e-10,-6.56896412267496e-09,0.024727373172486 +7.938,6.11561414915395e-09,-8.54995012983251e-09,-2.60071774185744e-09,-3.65630310750209e-10,-1.55549078478812e-09,-0.0799999958018053,0.00015980363271836,0.000108013295445861,-0.000120993527340401,3.26735166700195e-11,3.30478699961353e-10,0.000137149432328355,4.04473021510323e-08,-2.16864286945499e-08,-1.17768208379949e-08,2.50103757148768e-09,-5.80568579324204e-09,1.3749418270626e-08 +7.94,-1.12975184834214e-06,-8.42876227237499e-07,9.32967648234473e-07,-3.65585429984439e-10,-1.55508451255004e-09,-0.0800000274103296,-2.04736146655939e-09,1.08867428960645e-09,4.12189379850279e-10,3.3752514672077e-11,3.00096753003098e-10,-6.09994693645464e-10,-0.135864833885829,-0.0920616710952384,0.105726011754858,-2.55784976532598e-09,-1.82154638594761e-08,-0.0776876007413308 +7.942,6.10742470328772e-09,-8.54559543267408e-09,-2.59906898433804e-09,-3.65495300691521e-10,-1.5542903977761e-09,-0.0799999958042453,-0.000383655702825015,-0.000260233388935134,0.000301910519679079,2.24421176087144e-11,2.5761684452344e-10,-0.000173600970637003,-3.60749426412692e-08,1.98359124265561e-08,9.1166223875865e-09,-1.5681900222815e-09,5.25664581309654e-09,-1.27909835501517e-08 +7.944,-2.66437465964203e-06,-1.88380978297792e-06,2.14060972695065e-06,-3.65495661514004e-10,-1.55405404517195e-09,-0.0800007218142121,-2.19166123712445e-09,1.16801793931267e-09,4.48655869400621e-10,2.74797545829516e-11,3.21123336255482e-10,-6.61158627846065e-10,0.151880323275528,0.103185568479212,-0.120578351033902,1.76334641332918e-09,2.46343744014633e-08,0.0528483439770589 +7.946,6.09865805833922e-09,-8.54092336091683e-09,-2.59727436086044e-09,-3.65385381673189e-10,-1.55300590443108e-09,-0.07999999580689,0.00022386559027703,0.000152508884981671,-0.000180402884456477,2.94955032620303e-11,3.56154342129282e-10,3.779240527121e-05,-3.16550781343388e-09,4.30645102846312e-10,2.66865522733032e-09,-1.12973866373117e-09,4.28476698548349e-10,-2.10768902294426e-10 +7.948,-1.76891229853381e-06,-1.27377424305117e-06,1.41899818912467e-06,-3.65377679500956e-10,-1.55262942780343e-09,-0.080000570644591,-2.20432326837819e-09,1.16974051972405e-09,4.59330490309943e-10,2.29607999280264e-11,3.22837243049676e-10,-6.62001703455243e-10,-0.0160202979858252,-0.0111687744488999,0.0148214043143514,5.83300768798837e-10,-6.54771376005467e-09,0.0245642178473025 +7.95,6.08984076526571e-09,-8.53624439883793e-09,-2.5954370388992e-09,-3.65293538473477e-10,-1.55171455545888e-09,-0.079999995809538,0.000159784398333722,0.000107833787186066,-0.000121117267199065,3.1828706337226e-11,3.29963487089061e-10,0.000136049276660431,4.03761878056527e-08,-2.15704190619734e-08,-1.17315011871392e-08,2.48282297499363e-09,-5.81219100624365e-09,1.36609473732836e-08 +7.952,-1.12977470519899e-06,-8.42439094306952e-07,9.34529120328459e-07,-3.65250364675607e-10,-1.55130957385508e-09,-0.0800000264474844,-2.0428185171556e-09,1.08345884347617e-09,4.12404485561392e-10,3.28920918279999e-11,2.99588479024704e-10,-6.07357913962115e-10,-0.135809272429063,-0.0919028463300618,0.105822139047846,-2.54440565839074e-09,-1.82306426899275e-08,-0.0769800437621931 +7.954,6.08166949119708e-09,-8.53191056346403e-09,-2.59378742095695e-09,-3.65161970106165e-10,-1.55051620154278e-09,-0.0799999958119674,-0.000383452691382471,-0.000259777598134141,0.000302171288992272,2.16510837036641e-11,2.57040916329359e-10,-0.000171870898388307,-3.60079753691832e-08,1.97376837095996e-08,9.02164627722696e-09,-1.52829138233705e-09,5.21631349224446e-09,-1.27163904406114e-08 +7.956,-2.66358547072905e-06,-1.88154948684363e-06,2.14321427629768e-06,-3.65163760340792e-10,-1.55028141018976e-09,-0.0800007139310779,-2.18685041863235e-09,1.16240957831457e-09,4.48491070670304e-10,2.6778926298651e-11,3.20453732993684e-10,-6.58223475724566e-10,0.151830658466881,0.10304252315078,-0.120728946557767,1.80497977675507e-09,2.4627001826719e-08,0.0523016812662814 +7.958,6.07292208952255e-09,-8.52726092515077e-09,-2.59199345667427e-09,-3.6505485440097e-10,-1.54923438661081e-09,-0.0799999958146003,0.00022386994248512,0.000152392494469025,-0.00018074449723885,2.88710028106852e-11,3.55548923636246e-10,3.73358266768417e-05,2.70041794642677e-08,-1.63944378905269e-08,-5.71309492767147e-09,2.89698820489677e-10,-4.10175365893027e-09,1.03406866402635e-08 +7.96,-1.76810570078867e-06,-1.2719795089676e-06,1.42023628734236e-06,-3.65048276329549e-10,-1.54885921449521e-09,-0.0800005645877712,-2.07883370077529e-09,1.09683182675247e-09,4.2563869095962e-10,2.79377215806096e-11,3.04046718357964e-10,-6.16860729163517e-10,-0.108209119965114,-0.0730091744896921,0.0886340631813942,-3.53449908231876e-10,-2.20982086796192e-08,-0.0208543945810095 +7.962,6.06460675471945e-09,-8.52287359784376e-09,-2.59029090191043e-09,-3.64943103514648e-10,-1.54801819973738e-09,-0.0799999958170677,-0.000208966537375288,-0.000139644203489711,0.000173791755486688,2.74572031777578e-11,2.67156088917778e-10,-4.60817516471871e-05,-1.96496702100609e-08,1.23820224905898e-08,3.07067739288913e-09,3.32199545647933e-10,3.06612374377143e-09,-7.95891130774557e-09 +7.964,-2.60397185028992e-06,-1.8305563229265e-06,2.11540330928919e-06,-3.64938447516838e-10,-1.54779059013954e-09,-0.0800007489147778,-2.15743238161554e-09,1.14635991671484e-09,4.37921400531178e-10,2.92665197632014e-11,3.16311213333052e-10,-6.48696374394502e-10,0.101199466996478,0.0679474576501673,-0.0844440016891593,6.01949046165475e-10,2.09550259089456e-08,0.0220162635232073 +7.966,6.05597702519299e-09,-8.5182881581769e-09,-2.58853921630831e-09,-3.64826037435595e-10,-1.54675295488405e-09,-0.0799999958196625,0.000195831330610669,0.000132145627110989,-0.000163984251269987,2.986499936242e-11,3.5097619255357e-10,4.19833024456519e-05,-1.08672463661464e-08,4.2841164644238e-09,4.70738899252291e-09,-1.64668625956972e-09,1.43895312334064e-09,-2.77035339117158e-09 +7.968,-1.82064652784732e-06,-1.3019738144826e-06,1.45946630420932e-06,-3.64818987519389e-10,-1.54638668536933e-09,-0.080000580981568,-2.20090136708012e-09,1.16349638257253e-09,4.56750956501268e-10,2.26797747249233e-11,3.22067025826413e-10,-6.59777787959188e-10,-0.0708772060471466,-0.0494198187780684,0.059078415913048,-2.6146619591677e-09,-1.03502276194351e-08,-0.00988149977642026 +7.97,6.04717341972467e-09,-8.51363417264661e-09,-2.5867122124823e-09,-3.64735318336695e-10,-1.54546468678074e-09,-0.0799999958223016,-8.76774935778856e-05,-6.55336480012629e-05,7.23294123821788e-05,1.94063515257504e-11,3.09575282075834e-10,2.45730333997524e-06,3.12783229629367e-08,-1.7697215221107e-08,-7.03061740772329e-09,9.12464548362337e-10,-4.53413348535124e-09,1.14335624301972e-08 +7.972,-2.17135650215891e-06,-1.56410840648769e-06,1.74878395373806e-06,-3.64741362113286e-10,-1.54514838424102e-09,-0.0800005711523547,-2.07578807522836e-09,1.0927075216881e-09,4.28628486870371e-10,2.6329632918373e-11,3.03930491885006e-10,-6.14043538238394e-10,0.0118698294599912,0.0116857141014471,-0.00835910408296336,2.73392419814052e-09,-4.57489948700264e-09,-0.0101920424235706 +7.974,6.03887026742376e-09,-8.50926334255986e-09,-2.58499769853482e-09,-3.64629999805022e-10,-1.5442489648132e-09,-0.0799999958247578,-4.01981757379157e-05,-1.87907915954695e-05,3.88929960503216e-05,3.03420483183137e-11,2.91275684127822e-10,-3.83108663543117e-05,-1.79053803442169e-08,1.18511971070678e-08,2.13436039677923e-09,7.61109925086454e-10,2.87053367189013e-09,-7.55038392922481e-09 +7.976,-2.33214920511055e-06,-1.63927157286956e-06,1.90435593793933e-06,-3.64619993920012e-10,-1.54398328150451e-09,-0.0800007243958201,-2.14740959660522e-09,1.14011231011636e-09,4.37165928457487e-10,2.93740726187185e-11,3.15412626572566e-10,-6.4424507395529e-10,0.0349297912337033,0.0209436536930458,-0.0314436262541695,-4.93962509786079e-10,1.10913882245105e-08,0.019495294138578 +7.978,6.03028062903734e-09,-8.50470289331939e-09,-2.58324903482099e-09,-3.64512503514547e-10,-1.54298731430691e-09,-0.0799999958273348,9.9520989196882e-05,6.49838231767046e-05,-8.68815089663424e-05,2.83661982791696e-11,3.35641237025859e-10,3.96703101999918e-05,-1.04807130448186e-08,4.03843625200981e-09,4.10869255282588e-09,-1.48535697630644e-09,1.30668045826173e-09,-2.68188249382378e-09 +7.98,-1.93406524832298e-06,-1.37933628016271e-06,1.55682990207393e-06,-3.64506529126896e-10,-1.54264071655641e-09,-0.0800005657145793,-2.1893324487845e-09,1.1562660551244e-09,4.53600698668793e-10,2.34326447134921e-11,3.20639348405613e-10,-6.54972603930586e-10,-0.0351988078949937,-0.0243855512432159,0.0303329294516194,-1.77939260548163e-09,-5.19939993835283e-09,-0.00947006529618044 +7.982,6.0215232992422e-09,-8.5000778290989e-09,-2.58143463202631e-09,-3.64418772935693e-10,-1.54170475691329e-09,-0.0799999958299547,-4.12742423831085e-05,-3.25583817961697e-05,3.44502088401487e-05,2.12486278572422e-11,3.14843637272445e-10,1.79004901526578e-06,8.78098727506507e-10,-9.66240976055082e-10,9.18969761424095e-10,-4.25440932482104e-10,-5.89805981654206e-11,8.02309607603095e-10 +7.984,-2.09916221785539e-06,-1.50956980734737e-06,1.6946307374345e-06,-3.64421534615467e-10,-1.54138134200732e-09,-0.0800005585543832,-2.18582005387447e-09,1.15240109122018e-09,4.57276577714489e-10,2.17308809835639e-11,3.20403426012952e-10,-6.51763365500174e-10,0.0179989199610158,0.0135922996889939,-0.0141948758676185,3.92914867307567e-10,2.30804958476965e-09,0.00178961672651208 +7.986,6.0127800190267e-09,-8.49546822473402e-09,-2.57960552571546e-09,-3.64331849411759e-10,-1.54042314320924e-09,-0.0799999958325617,3.07214374609469e-05,2.18108169598e-05,-2.23292946303191e-05,2.28202873264723e-11,3.24075835611523e-10,8.94851592131329e-06,4.08696276974262e-09,-1.93443351621217e-09,-8.52399748033289e-10,3.32199545648277e-10,-4.55798593330601e-10,1.50313789196974e-09 +7.988,-1.97627646801159e-06,-1.42232653950816e-06,1.60531355891322e-06,-3.64330253466161e-10,-1.54008503866487e-09,-0.0800005227603195,-2.1694722027955e-09,1.14466335715533e-09,4.53866978722355e-10,2.30596791661571e-11,3.18580231639629e-10,-6.45750813932294e-10,-0.0094568305490594,-0.0064697931259355,0.00747785996102007,3.05745012642179e-10,-1.944191335683e-09,-0.00059376394426164 +7.99,6.00410213021552e-09,-8.49088957130539e-09,-2.57779005780057e-09,-3.64239610695094e-10,-1.53914882228268e-09,-0.0799999958351447,-7.1058847352949e-06,-4.06835554394486e-06,7.58214521376449e-06,2.40432673770412e-11,3.1629907026879e-10,6.57346014426647e-06,4.42625536905262e-09,-2.11614580019416e-09,-1.70046268730146e-09,5.81999726191627e-10,-5.88071258338573e-10,1.42073852678946e-09 +7.992,-2.00470000695277e-06,-1.43859996168394e-06,1.63564213976827e-06,-3.64234080396653e-10,-1.5388198423838e-09,-0.080000496466479,-2.15176718131929e-09,1.13619877395456e-09,4.4706512797315e-10,2.53876780709234e-11,3.16227946606275e-10,-6.40067859825137e-10,0.00429738983934975,0.00305406926614746,-0.00383616736900807,6.75241113022636e-10,4.640385296482e-11,-0.000520706956719605 +7.994,5.99549506149024e-09,-8.48634477620958e-09,-2.57600179728867e-09,-3.6413805998281e-10,-1.53788391049625e-09,-0.079999995837705,1.00836746221022e-05,8.14792152064362e-06,-7.76252426226611e-06,2.67442318291314e-11,3.16484685680649e-10,4.49063231738827e-06,3.44583336756879e-09,-1.95763544270247e-09,-1.8476973423742e-09,5.29090660171398e-10,-5.80265002731677e-10,1.11629455682636e-09 +7.996,-1.96436530846436e-06,-1.40600827560136e-06,1.60459204271921e-06,-3.64127103469336e-10,-1.53755390364108e-09,-0.0800004785039497,-2.13798384784902e-09,1.12836823218375e-09,4.39674338603652e-10,2.75040407116092e-11,3.13906886595348e-10,-6.35602681597831e-10,0.0582041837034437,0.0399434503656468,-0.0463895126127763,3.14201789586447e-09,4.01805325124883e-09,0.028271398089773 +7.998,5.98694312609884e-09,-8.48183130328084e-09,-2.57424309993426e-09,-3.64028043819964e-10,-1.53662828294987e-09,-0.0799999958402474,0.000242900409435903,0.000167921722983249,-0.000193320574713392,3.93123034125907e-11,3.32556898685646e-10,0.000117576224676493,3.95733200034145e-08,-2.13717932240342e-08,-1.33749348402157e-08,2.87833992751451e-09,-6.07023112331183e-09,1.29618538124987e-08 +8,-9.92763670720851e-07,-7.3432138366844e-07,8.31309743865721e-07,-3.63969854255686e-10,-1.53622367604633e-09,-0.080000008199051,-1.97969056783538e-09,1.04288105928762e-09,3.86174599242796e-10,3.9017400421666e-11,2.89625962102103e-10,-5.83755266347842e-10,-0.165694453426549,-0.112773722119822,0.130924804295738,-3.10168557504653e-09,-2.25969416789428e-08,-0.0680785332352398 +8.002,5.9790243638275e-09,-8.47765977904369e-09,-2.57269840153729e-09,-3.63871974218277e-10,-1.53546977910146e-09,-0.0799999958425824,-0.000419877404270369,-0.00028317316549609,0.00033037864246962,2.69055611124032e-11,2.42169131969865e-10,-0.000154737908264497,-3.8880255623233e-08,2.01112997783649e-08,8.74886101067789e-09,-1.7286519438091e-09,5.30218230434036e-09,-1.35204347717986e-08 +8.004,-2.67227328780214e-06,-1.86701404565268e-06,2.15282431374406e-06,-3.63862232011236e-10,-1.53525499951845e-09,-0.0800006271506841,-2.13521159032829e-09,1.12332625840107e-09,4.21170043285503e-10,3.21027926464303e-11,3.10834691319462e-10,-6.3783700543503e-10,0.164746974849793,0.110965498046534,-0.131429398845267,1.68485017603911e-09,2.66418831440189e-08,0.0454228600973717 +8.006,5.97048351746619e-09,-8.47316647401009e-09,-2.57101372136415e-09,-3.63743563047692e-10,-1.53422644033618e-09,-0.0799999958451338,0.00023911049512873,0.000160688826689995,-0.000195338952911389,3.36449618165589e-11,3.48736664545929e-10,2.69535321249702e-05,-6.08703286885217e-09,1.35460219430309e-09,3.38227709728502e-09,-1.54737334057097e-09,7.01695646032462e-10,-1.07379383162941e-09 +8.008,-1.7158313072869e-06,-1.22425873889248e-06,1.37146850209824e-06,-3.6372765216397e-10,-1.53386005286027e-09,-0.0800005193365556,-2.15955972180371e-09,1.12874466717829e-09,4.34699151674648e-10,2.59132992841444e-11,3.13641473903593e-10,-6.4213218076155e-10,-0.0223681150641552,-0.0153933221208631,0.0204904433036715,-4.64038529786543e-11,-7.1843572757208e-09,0.0245761691735223 +8.01,5.96184527857898e-09,-8.46865149534137e-09,-2.56927492475745e-09,-3.63639909850555e-10,-1.53297187444057e-09,-0.0799999958477023,0.000149638034872119,9.91155382065496e-05,-0.000113377179696712,3.34593464046443e-11,3.19999235443049e-10,0.000125258208819048,3.78256115123647e-08,-2.01197565552524e-08,-1.01737195057372e-08,1.95590071916428e-09,-5.39152056333711e-09,1.27224619728167e-08 +8.012,-1.11727916779849e-06,-8.27796586066326e-07,9.17959783311439e-07,-3.63593814778351e-10,-1.5325800559185e-09,-0.0800000183037203,-2.00825727575427e-09,1.04826564095728e-09,3.94004273651704e-10,3.37369021608007e-11,2.92075391650247e-10,-5.91242332870288e-10,-0.133120363619627,-0.0891681439727151,0.103651875056557,-2.90652918399978e-09,-1.73945059744923e-08,-0.0718147683820439 +8.014,5.95381224947596e-09,-8.46445843277754e-09,-2.56769890766284e-09,-3.63504962241912e-10,-1.53180357287397e-09,-0.0799999958500673,-0.000382843419606331,-0.000257557037684272,0.000301230320529469,2.18332296686465e-11,2.50421211545087e-10,-0.000162000864709095,-3.70719554769761e-08,2.0201722239367e-08,1.01778394739444e-08,-1.87263399232029e-09,5.53073212224939e-09,-1.28447599778017e-08 +8.016,-2.64865284622365e-06,-1.8580247368033e-06,2.12288106542918e-06,-3.63506481859677e-10,-1.53157837107232e-09,-0.0800006663071791,-2.15654509766215e-09,1.12907252991474e-09,4.34715631547477e-10,2.62463661915203e-11,3.14198320139242e-10,-6.4262137278149e-10,0.151048333169026,0.101711480826669,-0.119527620608232,1.45413195373723e-09,2.47133043196291e-08,0.0488165237850948 +8.018,5.94518606908531e-09,-8.45994214265788e-09,-2.56596004513665e-09,-3.63399976777146e-10,-1.53054677959341e-09,-0.0799999958526378,0.000221349913069976,0.000149288885622541,-0.000176880161903618,2.76497574835974e-11,3.49274428823637e-10,3.32652304313489e-05,2.6315619605063e-08,-1.54316663612988e-08,-4.38559778765657e-09,-2.42861286607667e-11,-3.79123815671326e-09,9.97812943374944e-09 +8.02,-1.76325319394384e-06,-1.2608691943132e-06,1.41536041781479e-06,-3.63395882829742e-10,-1.53018127335702e-09,-0.0800005332462574,-2.05128261924191e-09,1.06734586446956e-09,4.17173240396852e-10,2.61492216768773e-11,2.99033367512391e-10,-6.02708855046496e-10,-0.107862419568551,-0.0722951006750659,0.0882950954327661,-6.42715047852333e-10,-2.1687079215827e-08,-0.019455734830489 +8.022,5.93698093860834e-09,-8.45567275920001e-09,-2.56429135217506e-09,-3.63295379890438e-10,-1.52935064612336e-09,-0.0799999958550486,-0.000210099765204179,-0.000139891517077691,0.000176300219827407,2.50788972921883e-11,2.62526111960338e-10,-4.45577088905986e-05,-2.01253401964319e-08,1.27146557171692e-08,3.99571868647718e-09,1.16443313324917e-10,3.31809232867389e-09,-7.93896198780609e-09 +8.024,-2.60365225476084e-06,-1.82043526262415e-06,2.12056129712465e-06,-3.63295567240574e-10,-1.52913116890918e-09,-0.080000711477093,-2.13178398002767e-09,1.11820448733825e-09,4.33156115142767e-10,2.66149949301771e-11,3.12305736827091e-10,-6.34464702997731e-10,0.101730332519579,0.0679630458484415,-0.0851227211554314,4.82903647627935e-10,2.11827083651866e-08,0.0211602167315969 +8.026,5.92845380268823e-09,-8.45119994125065e-09,-2.56255872771449e-09,-3.63188919910717e-10,-1.52810142317605e-09,-0.0799999958575865,0.000196821564874092,0.000131960666316045,-0.000164190664794281,2.70105118826999e-11,3.47256945421076e-10,4.00831580357796e-05,-1.07974135817232e-08,4.45823933326135e-09,5.15256240452125e-09,-1.72800142250778e-09,1.53045978668087e-09,-2.71224015469032e-09 +8.028,-1.81636599526456e-06,-1.29259259736003e-06,1.4637986379476e-06,-3.63187525193043e-10,-1.5277421411275e-09,-0.0800005511444608,-2.17497363435456e-09,1.13603744467129e-09,4.53766364760849e-10,1.97029892401467e-11,3.18427575973814e-10,-6.45313663616491e-10,-0.071260267212718,-0.0494496484248542,0.0594933711600818,-2.65607848215557e-09,-1.03380845550861e-08,-0.00943984549296242 +8.03,5.91975390815081e-09,-8.44665579147197e-09,-2.56074366225545e-09,-3.63110107953757e-10,-1.52682771287216e-09,-0.0799999958601677,-8.82195039767484e-05,-6.58379273833501e-05,7.37828198460201e-05,1.63861979540787e-11,3.05904607200736e-10,2.32377606393411e-06,3.10776794925763e-08,-1.71724613696857e-08,-6.68107062733907e-09,8.71481706241465e-10,-4.42571326812019e-09,1.12184567192111e-08 +8.032,-2.16924401117151e-06,-1.5559443068934e-06,1.75892991733165e-06,-3.63121980401226e-10,-1.52651852269869e-09,-0.0800005418493566,-2.05066291638426e-09,1.06734759919256e-09,4.27042082251496e-10,2.31889160651122e-11,3.00724722901335e-10,-6.00439836739652e-10,0.0119366757452211,0.0117226962366842,-0.00855707079152976,2.68426773863901e-09,-4.44566258805857e-09,-0.0098094958015846 +8.034,5.91155125648527e-09,-8.4423864010752e-09,-2.55903549392644e-09,-3.63017352289496e-10,-1.52562481398055e-09,-0.0799999958625695,-4.04728009958478e-05,-1.89471424365977e-05,3.95545366798896e-05,2.71232689086384e-11,2.88121956848496e-10,-3.69142071424174e-05,-1.8073538407216e-08,1.17447284537876e-08,2.06020096820482e-09,7.93635990262139e-10,2.85448747975386e-09,-7.46191303198252e-09 +8.036,-2.33113521515488e-06,-1.63173287663979e-06,1.91714806405119e-06,-3.63013487325592e-10,-1.5253660348713e-09,-0.0800006895061851,-2.12295707001312e-09,1.1143265130077e-09,4.35282886124314e-10,2.63634600261604e-11,3.12142672820349e-10,-6.30287488867579e-10,0.0353168623714602,0.0211652698709251,-0.0320293293901125,-3.67110855606521e-10,1.10866177349333e-08,0.0188380494068467 +8.038,5.90305942820522e-09,-8.43792909502317e-09,-2.55729436238195e-09,-3.62911898449392e-10,-1.52437624328927e-09,-0.0799999958650906,0.000100794648489977,6.57139370470935e-05,-8.85627808805463e-05,2.56548254862124e-11,3.32468427788224e-10,3.84379904849613e-05,-1.01681087594901e-08,3.89337000139461e-09,3.73399228203924e-09,-1.34722961953019e-09,1.21994428448041e-09,-2.61596300177244e-09 +8.04,-1.92795662119484e-06,-1.36887712845132e-06,1.56289694052889e-06,-3.62910868023647e-10,-1.52403616116015e-09,-0.0800005357542232,-2.16362950505109e-09,1.12989999301329e-09,4.50218855252476e-10,2.09745415480379e-11,3.17022449958272e-10,-6.40751340874672e-10,-0.0355723134731518,-0.0245549217480349,0.0307807678586046,-1.63692844001613e-09,-5.34728511466277e-09,-0.00912389637539503 +8.042,5.89440491018502e-09,-8.43340949505111e-09,-2.55549348696094e-09,-3.628280002832e-10,-1.52310815348944e-09,-0.0799999958676536,-4.14946054026139e-05,-3.25057499450354e-05,3.45602905538585e-05,1.91071117261486e-11,3.11079287329575e-10,1.94240498338515e-06,1.04459491187211e-09,-1.07379383162992e-09,4.83337328494143e-10,-2.74086309204396e-10,-1.34874750257225e-10,8.46545056276853e-10 +8.044,-2.09393504280528e-06,-1.49890012823145e-06,1.7011381027443e-06,-3.62834439576742e-10,-1.52279184401083e-09,-0.0800005279846032,-2.15945112540361e-09,1.12560481768677e-09,4.52152204566453e-10,1.98781963112204e-11,3.16482950957244e-10,-6.37365160649565e-10,0.0181450076491677,0.0136398780588415,-0.0144250757148683,5.28223298435054e-10,2.24690058225945e-09,0.00169306107415011 +8.046,5.88576710568341e-09,-8.42890707578037e-09,-2.55368487814267e-09,-3.62748487497955e-10,-1.52184222168561e-09,-0.0799999958702031,3.10854251940489e-05,2.20537622903246e-05,-2.31400123056084e-05,2.12200049198886e-11,3.20066889658612e-10,8.71464927998485e-06,4.16164566482041e-09,-1.95741860232983e-09,-1.23035262538647e-09,4.5037758244817e-10,-5.21718085435044e-10,1.46410661379487e-09 +8.048,-1.9695933420291e-06,-1.41068507907016e-06,1.60857805352188e-06,-3.62749559557063e-10,-1.52151157645219e-09,-0.0800004931260061,-2.14280454274433e-09,1.11777514327745e-09,4.47230794064907e-10,2.16797066410129e-11,3.14396078615504e-10,-6.31508734194386e-10,-0.00954944567422103,-0.00650010622974186,0.00760627190030467,4.07660016854459e-10,-2.00187089127679e-09,-0.00056235170426537 +8.05,5.87719588751243e-09,-8.42443597520726e-09,-2.55189595496641e-09,-3.62661768671391e-10,-1.52058463737115e-09,-0.0799999958727291,-7.11235750284797e-06,-3.9466626286515e-06,7.28507529562047e-06,2.2850644987307e-11,3.12059406093502e-10,6.46524246292262e-06,4.45926932508735e-09,-2.15517707834305e-09,-1.97736792212984e-09,6.79361081281974e-10,-6.34475111303755e-10,1.43027950587306e-09 +8.052,-1.99804277204048e-06,-1.42647172958477e-06,1.63771835470436e-06,-3.62658156977114e-10,-1.52026333882782e-09,-0.0800004672650363,-2.12496746544398e-09,1.10915443496408e-09,4.39321322376389e-10,2.43971509661405e-11,3.11858178170289e-10,-6.25787616170894e-10,0.00431521874538124,0.00305226220578627,-0.00384655263175286,7.57423637695667e-10,-1.38777878424542e-11,-0.000511718151360078 +8.054,5.86869601765065e-09,-8.4199993574674e-09,-2.5501386696769e-09,-3.62564180067526e-10,-1.51933720465847e-09,-0.0799999958752323,1.01485174786751e-05,8.26238619449223e-06,-8.10113523138929e-06,2.58803395380893e-11,3.12003894942132e-10,4.41836985748253e-06,3.44505240307195e-09,-1.95676808090139e-09,-2.02724122211294e-09,5.86770215749024e-10,-6.44016090456239e-10,1.0677222994635e-09 +8.056,-1.95744870212577e-06,-1.39342218480679e-06,1.60531381377879e-06,-3.62554635618961e-10,-1.51901532324805e-09,-0.0800004495915568,-2.11118725583169e-09,1.10132736264047e-09,4.31212357487934e-10,2.67442318291374e-11,3.09282113808463e-10,-6.21516726973039e-10,-0.00271915040423938,-0.00200119657997552,0.00197131423120995,4.43005007680548e-10,-9.58001039573775e-10,-0.000443507181500542 +8.058,5.86025126862733e-09,-8.41559404801684e-09,-2.54841382024695e-09,-3.6245720314021e-10,-1.51810007620323e-09,-0.0799999958777183,-7.28084138281245e-07,2.57599874591036e-07,-2.15878306550367e-07,2.76523595688113e-11,3.08171890783838e-10,2.64434113148056e-06,2.22926535629758e-09,-1.63367583350154e-09,-1.6885364634293e-09,3.91396984267353e-10,-4.9482987152249e-10,7.53737350312083e-10 +8.06,-1.96036103867889e-06,-1.39239178530842e-06,1.60445030055259e-06,-3.62444026180686e-10,-1.51778263568492e-09,-0.0800004390141923,-2.1022701944065e-09,1.09479265930646e-09,4.24458211634218e-10,2.83098197662066e-11,3.07302794322373e-10,-6.18501777571791e-10,0.00093142388881604,0.000586651248630142,-0.000864010512875209,3.07046055247962e-10,-2.810252031083e-10,-0.000275743865241268 +8.062,5.8518421878497e-09,-8.41121487737961e-09,-2.54671598740042e-09,-3.62343963861145e-10,-1.51687086502594e-09,-0.0799999958801924,2.9976114169825e-06,2.60420486911135e-06,-3.67192035805082e-06,2.88805437898031e-11,3.07047789971405e-10,1.54136567051561e-06,1.31632985784775e-09,-1.28391221277861e-09,-1.18720137891848e-09,1.97324795389174e-10,-3.90746462997811e-10,4.80518402914129e-10 +8.064,-1.94837059301097e-06,-1.38197496583198e-06,1.58976261912039e-06,-3.62328504005527e-10,-1.51655444452503e-09,-0.0800004328487296,-2.09700487497511e-09,1.08965701045535e-09,4.19709406118544e-10,2.90991189477632e-11,3.05739808470382e-10,-6.16579703960135e-10,-0.000794811982376753,-0.000602243867405889,0.000681386715713758,8.89045781437914e-11,-4.25440932483222e-10,-0.000149326841690467 +8.066,5.8434541683498e-09,-8.40685624933779e-09,-2.54503714977594e-09,-3.62227567385354e-10,-1.51564790579206e-09,-0.0799999958826587,-1.81636512525572e-07,1.95229399486984e-07,-9.46373495194879e-07,2.92361621023783e-11,3.05346026241471e-10,9.44058303753541e-07,7.83139557744352e-10,-9.95514434655428e-10,-6.72855868198062e-10,2.79724160533635e-11,-2.31151903140021e-10,3.60822482934818e-10 +8.068,-1.94909713906107e-06,-1.38119404823403e-06,1.58597712513961e-06,-3.62211559357117e-10,-1.51533306042007e-09,-0.0800004290724964,-2.09387231674413e-09,1.08567495271673e-09,4.17017982645752e-10,2.92110086119767e-11,3.04815200857822e-10,-6.15136414028395e-10,0.000191005528667859,0.000106299683465215,-4.79710654878681e-05,-4.3151246468159e-11,-1.7173762415556e-10,-7.64234855955326e-05 +8.07,5.83507867908282e-09,-8.40251354952692e-09,-2.54336907784536e-09,-3.62110723350906e-10,-1.51442864498863e-09,-0.0799999958851192,5.82385602145779e-07,6.20428133347798e-07,-1.13825775714633e-06,2.90635571165057e-11,3.04659075744849e-10,6.38364361371444e-07,5.2069825773146e-10,-7.44846892497344e-10,-2.07516295813669e-10,-9.30245463992357e-11,-1.24466409401307e-10,2.68014777038353e-10 +8.072,-1.94676759665248e-06,-1.37871233570064e-06,1.58142409411102e-06,-3.62095305128651e-10,-1.51411442411709e-09,-0.080000426519039,-2.0917895237132e-09,1.08269556514674e-09,4.16187917462498e-10,2.88389104263796e-11,3.04317335220217e-10,-6.14064354920242e-10,-0.000219332420261148,-0.000176422991667006,0.000300068352977685,-1.3335686721252e-10,-1.19695919808602e-10,-4.1038878024973e-05 +8.074,5.82671152098797e-09,-8.39818276726634e-09,-2.54170432617551e-09,-3.619953677092e-10,-1.51321137564775e-09,-0.0799999958875755,-2.94944078898715e-07,-8.52638333201466e-08,6.2015654764276e-08,2.85301296476557e-11,3.04180292065615e-10,4.7420884927157e-07,3.9591675207386e-10,-5.85686013576837e-10,1.29887420263791e-10,-1.82579645846599e-10,-4.29344060304307e-11,2.39391839684852e-10 +8.076,-1.94794737296808e-06,-1.37905339103392e-06,1.58167215673008e-06,-3.61981184610061e-10,-1.51289770294882e-09,-0.0800004246222036,-2.09020585670491e-09,1.08035282109243e-09,4.16707467143553e-10,2.81085918429933e-11,3.04145597596095e-10,-6.13106787561502e-10,5.40538338475037e-05,1.84554253390048e-05,5.4811316943527e-05,-1.99493199737377e-10,-2.12503625807182e-11,-2.26178867301968e-05 +8.078,5.81835069756115e-09,-8.39386135598197e-09,-2.54003749630693e-09,-3.61882933341828e-10,-1.51199479325737e-09,-0.0799999958900279,-7.87287435087243e-08,-1.14421319641357e-08,2.8126092253836e-07,2.77321568487063e-11,3.04095290615292e-10,3.83737302350793e-07,3.39765244166496e-10,-4.36716635196995e-10,3.38813178855371e-10,-2.02745806257864e-10,3.90312778717601e-12,2.20309881517063e-10 +8.08,-1.94826228794211e-06,-1.37909915956178e-06,1.58279720042023e-06,-3.61870255982666e-10,-1.51168132178636e-09,-0.0800004230872544,-2.08884679572824e-09,1.07860595455164e-09,4.18062719858974e-10,2.72976086179619e-11,3.04161210107244e-10,-6.12225548035434e-10,-3.82911954944415e-05,-4.10237091692708e-05,9.1402112549641e-05,-2.30501381870366e-10,8.67361737988114e-12,-9.60607635102979e-06 +8.082,5.80999531037824e-09,-8.38954693216376e-09,-2.5383652454275e-09,-3.61773742907356e-10,-1.51077814841694e-09,-0.0799999958924768,-2.31893525486541e-07,-1.75536968641274e-07,6.46869372737046e-07,2.68101513212245e-11,3.04129985084811e-10,3.45312996946661e-07,3.15309708449422e-10,-3.73832908953309e-10,4.27500916657546e-10,-2.27899296653473e-10,2.9056618256387e-11,2.22911966595112e-10 +8.084,-1.94918986204406e-06,-1.37980130743634e-06,1.58538467791118e-06,-3.61763015377381e-10,-1.51046480184602e-09,-0.0800004217060024,-2.08758555689444e-09,1.07711062291583e-09,4.19772723525604e-10,2.63860114313481e-11,3.04277436580269e-10,-6.11333900169054e-10,3.79073730684495e-05,2.02870092686779e-05,-7.64729284678179e-06,-2.06432093644171e-10,3.42607886167735e-11,1.11271842430677e-06 +8.086,5.80164496815066e-09,-8.3852384896721e-09,-2.5366861545334e-09,-3.61668198861631e-10,-1.50956103867061e-09,-0.0799999958949221,-8.02640332127599e-08,-9.43889315665709e-08,6.16280201349922e-07,2.59844229466479e-11,3.04267028239278e-10,3.49763870643887e-07,3.18626689702649e-10,-3.25260651745594e-10,3.92155925787928e-10,-1.95156391047347e-10,2.2551405187691e-11,2.13370987545102e-10 +8.088,-1.94951091817691e-06,-1.38017886316261e-06,1.58784979871658e-06,-3.61659077685594e-10,-1.50924773373307e-09,-0.0800004203069469,-2.08631105013563e-09,1.07580958030885e-09,4.21341347228756e-10,2.56053858671585e-11,3.0436764220102e-10,-6.10480416218873e-10,1.43187245168831e-05,1.19284415244563e-05,-1.6590104615533e-05,-1.78242837153771e-10,2.9056618256387e-11,8.64108264113283e-06 +8.09,5.79329972395012e-09,-8.38093525135086e-09,-2.53500078914448e-09,-3.61565777318162e-10,-1.50834356810181e-09,-0.0799999958973641,-2.29891351452336e-08,-4.6675165468751e-08,5.49919782887797e-07,2.52714515980329e-11,3.04383254712304e-10,3.84328201208415e-07,3.44044454384104e-10,-3.10732342634431e-10,2.90349341791676e-10,-1.50053580672027e-10,1.73472347597829e-11,1.91686944095484e-10 +8.092,-1.94960287471749e-06,-1.38036556382448e-06,1.59004947784813e-06,-3.61557991879202e-10,-1.50803020071422e-09,-0.0800004187696341,-2.0849348723181e-09,1.07456665093831e-09,4.22502744595923e-10,2.50051715444704e-11,3.04437031140059e-10,-6.09713668442491e-10,2.94435687108168e-05,2.87426031326457e-05,-4.57348953630563e-05,-1.25550611573849e-10,-9.54097911787349e-12,1.18846070137927e-05 +8.094,5.78495998446085e-09,-8.37663698474711e-09,-2.5333107781661e-09,-3.61465756631985e-10,-1.50712581997725e-09,-0.0799999958998029,9.47851396980206e-08,6.8295247061819e-08,3.66980201435592e-07,2.47692491517376e-11,3.04345090795832e-10,4.31866629263581e-07,3.79819738175538e-10,-3.3003114142379e-10,1.52764086056269e-10,-1.07986536382308e-10,-3.1225022601384e-11,2.58473797988169e-10 +8.096,-1.9492237341587e-06,-1.38009238283623e-06,1.59151739865387e-06,-3.61458914882595e-10,-1.50681282035103e-09,-0.0800004170421676,-2.08341559336539e-09,1.07324652637261e-09,4.23113800940148e-10,2.45732253989413e-11,3.04312131049654e-10,-6.08679773250539e-10,1.64746387240802e-05,2.27010875375415e-05,-4.19229447164066e-05,-7.87130777224294e-11,-2.42861286636672e-11,1.10668852554261e-05 +8.098,5.77662632208738e-09,-8.37234399864162e-09,-2.53161832296234e-09,-3.61367463730389e-10,-1.50590857145305e-09,-0.0799999959022376,1.60683694594363e-07,1.59099597212015e-07,1.9928842256991e-07,2.44543968408477e-11,3.04247946281178e-10,4.761341702853e-07,4.2123964883378e-10,-3.458604929038e-10,1.10588622063217e-11,-5.07406616696041e-11,-5.98479598874213e-11,1.8474805012398e-10 +8.1,-1.94858099938032e-06,-1.37945598444739e-06,1.59231455234415e-06,-3.61361097295232e-10,-1.50559582856591e-09,-0.0800004151376309,-2.08173063477006e-09,1.071863084401e-09,4.23158036388973e-10,2.43702627522629e-11,3.04072739210104e-10,-6.07940781050043e-10,1.30057549507636e-05,2.03031872997778e-05,-3.8344771910635e-05,-2.905661822532e-11,-6.15826834309427e-11,7.58865279637626e-06 +8.102,5.7682993995483e-09,-8.36805654630401e-09,-2.52992569081678e-09,-3.6126998267938e-10,-1.50469228049621e-09,-0.0799999959046694,2.12706714397412e-07,2.40312346411118e-07,4.59093349273867e-08,2.43381703679465e-11,3.04001615547454e-10,5.06488781470801e-07,4.57340193276756e-10,-3.70580302555473e-10,-1.14274908979947e-10,-6.50521303491166e-12,-6.24500451351571e-11,2.20309881449007e-10 +8.104,-1.94773017252273e-06,-1.37849473506174e-06,1.59249818968386e-06,-3.6126374461376e-10,-1.50437982210372e-09,-0.0800004131116758,-2.07990127399695e-09,1.07038076319078e-09,4.22700936753053e-10,2.43442419001232e-11,3.03822939029563e-10,-6.07059541524247e-10,3.46561361289564e-06,1.15520407909951e-05,-2.52058591013187e-05,7.15573434110799e-12,-8.71698546340978e-11,3.22262702640163e-06 +8.106,5.75997979445231e-09,-8.36377502325125e-09,-2.52823488706977e-09,-3.61172605711779e-10,-1.50347698874009e-09,-0.0799999959070976,2.26569168848993e-07,2.86520509575093e-07,-5.4914101477877e-08,2.43667933053109e-11,3.03652936128918e-10,5.19379289576407e-07,4.78265295206035e-10,-3.77302356025049e-10,-1.93421667571448e-10,1.40946282423147e-11,-9.15066633577996e-11,2.35055030994909e-10 +8.108,-1.94682389584734e-06,-1.37734865302344e-06,1.59227853327795e-06,-3.61166277440539e-10,-1.5031652103592e-09,-0.0800004110341586,-2.07798821281613e-09,1.06887155376668e-09,4.21927250082767e-10,2.44006204130925e-11,3.03456912376132e-10,-6.06119321400267e-10,-1.63787044230028e-06,4.97218347224435e-06,-1.36876671021804e-05,2.92734586571151e-11,-7.67615138119951e-11,-5.85359885563303e-07 +8.11,5.75166784160105e-09,-8.35949953703619e-09,-2.52654717806944e-09,-3.61075003230127e-10,-1.50226316109059e-09,-0.0799999959095221,2.20017687079793e-07,3.06409243464068e-07,-1.09664769886593e-07,2.44838871399394e-11,3.0334589007367e-10,5.17037850034154e-07,4.88338211245154e-10,-4.10262102187054e-10,-2.34404509738153e-10,3.31765864753394e-11,-8.89045781774771e-11,2.15973072826371e-10 +8.112,-1.94594382509902e-06,-1.37612301604959e-06,1.59183987419841e-06,-3.61068341891979e-10,-1.50195182679891e-09,-0.0800004089660072,-2.07603485997115e-09,1.06723050535793e-09,4.20989632043815e-10,2.45333267589938e-11,3.03101294063422e-10,-6.05255429108962e-10,-6.12231344112552e-06,-1.1448255538002e-06,-2.70190228697448e-06,2.94902990915991e-11,-9.62771529166936e-11,-3.04050361277163e-06 +8.114,5.74336370216116e-09,-8.35523061501475e-09,-2.52486321954126e-09,-3.60976869923091e-10,-1.50105075591433e-09,-0.0799999959119431,1.95528433315282e-07,3.01829941248866e-07,-1.20472379034494e-07,2.46018483363058e-11,3.02960781462003e-10,5.04875835583063e-07,4.84597713289236e-10,-4.03973729349702e-10,-2.44812850500544e-10,3.25260651772966e-11,-9.71445146210689e-11,2.01227923146149e-10 +8.116,-1.94516171136576e-06,-1.37491569628459e-06,1.59135798468227e-06,-3.60969934498634e-10,-1.50073998367306e-09,-0.0800004069465039,-2.07409646911799e-09,1.06561461044053e-09,4.20010380641813e-10,2.4663431019703e-11,3.02712716004938e-10,-6.04450517416377e-10,-7.60965860706716e-06,-4.52475101660663e-06,4.48371667486335e-06,3.27429056063234e-11,-9.84455572952859e-11,-3.98374128829335e-06 +8.118,5.73506731628469e-09,-8.35096815657299e-09,-2.5231831780187e-09,-3.60878216199012e-10,-1.49983990505032e-09,-0.0799999959143609,1.65089798887017e-07,2.83730937182441e-07,-1.02537512335043e-07,2.47328199587311e-11,3.02566999232822e-10,4.88940870429891e-07,4.75842780976573e-10,-4.44089209849966e-10,-2.32778206432586e-10,2.58040117051488e-11,-7.76288755499491e-11,2.76688394418234e-10 +8.12,-1.94450135217021e-06,-1.37378077253586e-06,1.59094783463293e-06,-3.60871003218799e-10,-1.49952971567613e-09,-0.0800004049907404,-2.07219309799408e-09,1.06383825360113e-09,4.19079267816082e-10,2.47666470665236e-11,3.02402200502738e-10,-6.03343763838704e-10,-7.65642188319747e-06,-6.01953382969625e-06,8.50996768711913e-06,1.49619899830489e-11,-1.00180280704093e-10,-3.69638174230397e-06 +8.122,5.72677854389272e-09,-8.34671280355859e-09,-2.52150686094743e-09,-3.60779149610746e-10,-1.4986302962483e-09,-0.0799999959167743,1.34464111354231e-07,2.59652801863659e-07,-6.84976415865699e-08,2.47926679186633e-11,3.02166278110005e-10,4.74155343460677e-07,4.58200778751473e-10,-4.27826177262879e-10,-1.94939550612941e-10,1.47451495458061e-11,-1.12757025938518e-10,1.92554305833473e-10 +8.124,-1.94396349572479e-06,-1.37274216132841e-06,1.59067384406658e-06,-3.60771832547124e-10,-1.49832105056369e-09,-0.080000403094119,-2.07036029487908e-09,1.06212694889208e-09,4.1829950961363e-10,2.48256276647068e-11,3.01951172398984e-10,-6.0257354661537e-10,-6.28217858728721e-06,-5.68420375872527e-06,9.34807288001588e-06,4.98732999343468e-12,-7.84962372879721e-11,-2.66440255275505e-06 +8.126,5.7184971027132e-09,-8.34246429576302e-09,-2.51983366290898e-09,-3.60679847100087e-10,-1.49742249155871e-09,-0.0799999959191846,1.09335397005084e-07,2.3691598682876e-07,-3.11053500665105e-08,2.4812617238637e-11,3.01852293160854e-10,4.63497733249658e-07,4.46176299261792e-10,-4.48859699526818e-10,-1.7097868264737e-10,-5.85469173417614e-12,-6.24500451686727e-11,2.39391839751646e-10 +8.128,-1.94352615413677e-06,-1.37179449738109e-06,1.59054942266632e-06,-3.6067258207817e-10,-1.49711364139105e-09,-0.0800004012401281,-2.06857558968203e-09,1.06033151009397e-09,4.17615594883041e-10,2.48022088977701e-11,3.0170137221831e-10,-6.01615979256364e-10,-4.42432640071151e-06,-4.38162266885768e-06,8.12798483032324e-06,-4.77048955893543e-12,-6.54858112181155e-11,-1.38624701995184e-06 +8.13,5.71022280035447e-09,-8.33822296972264e-09,-2.51816320052944e-09,-3.60580638264496e-10,-1.49621568606984e-09,-0.0799999959215911,9.16380914022325e-08,2.19389496153324e-07,1.40658925479336e-09,2.47935352804012e-11,3.01590349915981e-10,4.57952745169849e-07,4.28605447344759e-10,-4.4972706102937e-10,-1.1004652046093e-10,-1.6263032584533e-11,-7.19910242195575e-11,2.30718222238172e-10 +8.132,-1.94315960177116e-06,-1.37091693939648e-06,1.59055504902333e-06,-3.60573407937048e-10,-1.49590727999138e-09,-0.0800003994083171,-2.06686116789265e-09,1.05853260184985e-09,4.17175408801197e-10,2.4737156767432e-11,3.01413408121431e-10,-6.00693106367411e-10,-2.46203295111062e-06,-2.64334474450335e-06,5.73158924835194e-06,-2.71050543148839e-11,-8.1532003404368e-11,-2.52796915396194e-07 +8.134,5.7019553556829e-09,-8.33398883931524e-09,-2.51649449889424e-09,-3.60481689637426e-10,-1.49501003243735e-09,-0.0799999959239938,8.17899595977911e-08,2.08816117175311e-07,2.43329462481986e-08,2.46851150631417e-11,3.01264221902364e-10,4.56941557508264e-07,4.19260980100005e-10,-4.48426018539907e-10,-1.16660153759414e-10,-3.05745012640842e-11,-6.1149002528162e-11,2.35055030994805e-10 +8.136,-1.94283244193277e-06,-1.37008167492778e-06,1.59065238080833e-06,-3.60474667476796e-10,-1.49470222310377e-09,-0.0800003975805509,-2.06518412397225e-09,1.05673889777569e-09,4.1670876818616e-10,2.46148587623756e-11,3.01168812111319e-10,-5.99752886243431e-10,0.0607484925563695,0.0411653685377694,-0.0484525123978944,2.60902410787243e-09,4.90753271357292e-09,0.0247075662377554 +8.138,5.69369461918701e-09,-8.32976188372414e-09,-2.5148276638215e-09,-3.60383230202377e-10,-1.4938053571889e-09,-0.0799999959263929,0.000243075760185049,0.000164870290268235,-0.000193785716645308,3.51212114946303e-11,3.20894352756653e-10,9.92872065085191e-05,3.68661467998234e-08,-1.91073285665853e-08,-1.11866895954907e-08,2.3269147025889e-09,-5.47045048149407e-09,1.17987217218588e-08 +8.14,-9.70529401192683e-07,-7.10600513854909e-07,8.15509514227181e-07,-3.60334182630817e-10,-1.49341864569275e-09,-0.0800000004317248,-1.91771953677297e-09,9.80309583509361e-10,3.71962009804202e-10,3.39225175727302e-11,2.79287010185345e-10,-5.52557999356001e-10,-0.166278982941614,-0.111316167086364,0.132369260874312,-3.40222641726026e-09,-2.22452264941935e-08,-0.0581677162053488 +8.142,5.68602374103992e-09,-8.3258406453901e-09,-2.51333981578228e-09,-3.60247540132086e-10,-1.49268820914816e-09,-0.0799999959286031,-0.000422040171581335,-0.000280394378077173,0.000335691326851884,2.15123058255908e-11,2.31913446779889e-10,-0.00013338365831285,-3.9242989012225e-08,1.9913974982797e-08,9.42366844276611e-09,-1.84162581018723e-09,5.50427758924217e-09,-1.31127747548444e-08 +8.144,-2.65869008751784e-06,-1.83217802616348e-06,2.15827482163457e-06,-3.60248133407515e-10,-1.49249099190563e-09,-0.0800005339663581,-2.07469149282186e-09,1.05996548344054e-09,4.09656683575262e-10,2.65560143319821e-11,3.01304120542311e-10,-6.05009098375373e-10,0.165291163700144,0.109691352554697,-0.132869381577243,1.63541055697677e-09,2.69033927080493e-08,0.0385928107179881 +8.146,5.67772497506863e-09,-8.32160078345634e-09,-2.51170118904798e-09,-3.60141316074758e-10,-1.49148299266599e-09,-0.0799999959310231,0.000239124483219463,0.000158371032141762,-0.000195786199457264,2.80539480535e-11,3.39527017612122e-10,2.09875845591535e-05,-6.04392566833357e-09,1.65449251533094e-09,3.75892893205355e-09,-1.53761552101633e-09,8.52616588476234e-10,-1.09200842819481e-09 +8.148,-1.70219215464009e-06,-1.1986938975965e-06,1.3751300238056e-06,-3.60135917615301e-10,-1.49113288383518e-09,-0.0800004500160199,-2.09886719549519e-09,1.06658345350186e-09,4.24692399303475e-10,2.04055522479174e-11,3.04714586896216e-10,-6.09377132088152e-10,-0.0879590756250373,-0.0598440324363476,0.0723198701397622,-2.83995917061101e-09,-1.26908032694122e-08,-0.00501604359958006 +8.15,5.66932950628665e-09,-8.31733444964233e-09,-2.51000241945076e-09,-3.60059693865766e-10,-1.49026413431841e-09,-0.0799999959334606,-0.000112711819280647,-8.10050976036016e-05,9.3493281101753e-05,1.66941113710572e-11,2.88763804534479e-10,9.23410160835439e-07,5.309270276025e-10,-2.45463371850636e-10,1.55637221860259e-09,-4.73145828072569e-10,2.16840434497054e-10,5.37764277552682e-10 +8.152,-2.15303943176283e-06,-1.52271428801101e-06,1.74910314821274e-06,-3.60069141169816e-10,-1.48997782861704e-09,-0.0800004463223792,-2.09674348738478e-09,1.06560160001446e-09,4.30917888177887e-10,1.85129689356265e-11,3.05581948634204e-10,-6.0722607497794e-10,0.044092418121413,0.0314289139832672,-0.0354540665474974,8.07296937634737e-10,6.43669145764542e-09,0.0011617860484415 +8.154,5.66094253233711e-09,-8.31307204324228e-09,-2.50827874789805e-09,-3.59985641990024e-10,-1.48904180652387e-09,-0.0799999959358895,6.3657853204985e-05,4.47105583294535e-05,-4.83229850882211e-05,1.99232991215958e-11,3.14510570365058e-10,5.57055435460091e-06,3.04684527391014e-09,-9.55832635263481e-10,6.3642667524919e-11,1.47668335892558e-10,-1.5482407023096e-10,1.05124242644219e-09 +8.156,-1.89840801894292e-06,-1.34387205469322e-06,1.55581120785987e-06,-3.5998944797333e-10,-1.48871978633558e-09,-0.0800004240401618,-2.08455610628914e-09,1.06177826947341e-09,4.31172458847987e-10,1.91036422791967e-11,3.0496265235328e-10,-6.03021105272172e-10,-0.0225663057689403,-0.0156613594198343,0.0181894129765849,-1.69786060211267e-10,-3.57092827529904e-09,-0.000341105248213922 +8.158,5.65260430791196e-09,-8.30882493016438e-09,-2.50655405806266e-09,-3.59909227420907e-10,-1.48782195591446e-09,-0.0799999959383016,-2.66073698707662e-05,-1.79348793498768e-05,2.44346668181106e-05,1.92441548807508e-11,3.00226857263863e-10,4.20613336174538e-06,3.23534059809041e-09,-1.23902624283403e-09,-7.80625564237264e-10,3.72965547332809e-10,-3.04010289198728e-10,1.02435421263101e-09 +8.16,-2.00483749842597e-06,-1.41561157209272e-06,1.6535498751323e-06,-3.59912471353807e-10,-1.48751887890652e-09,-0.0800004072156283,-2.07161474389678e-09,1.05682216450207e-09,4.28049956591038e-10,2.05955044685278e-11,3.03746611196486e-10,-5.98923688421649e-10,0.0111379716889186,0.00779130105159341,-0.00954213986081304,6.36643515683346e-10,1.3314002678119e-09,-0.000326466612424119 +8.162,5.64431784893637e-09,-8.30459764150637e-09,-2.5048418582363e-09,-3.59826845403033e-10,-1.48660696946967e-09,-0.0799999959406973,1.79445168849231e-05,1.32303248565072e-05,-1.37338926251543e-05,2.17907289434851e-11,3.05552458335112e-10,2.90026691204846e-06,2.44039678850025e-09,-1.20064548569338e-09,-1.15847002125349e-09,3.9898639947704e-10,-4.00721122917005e-10,8.06646416262897e-10 +8.164,-1.93305943088629e-06,-1.36269027266669e-06,1.59861430463169e-06,-3.59825308438033e-10,-1.48629666907318e-09,-0.0800003956145607,-2.06185315674278e-09,1.0520195825593e-09,4.23416076506025e-10,2.21914500664357e-11,3.02143726704818e-10,-5.95697102756597e-10,-0.0059319254529565,-0.0041854674565604,0.00456591652214925,2.42861286634279e-10,-1.24032728535707e-09,-0.000261659970600666 +8.166,5.6360704363094e-09,-8.30038956317614e-09,-2.50314819393027e-09,-3.59738079602767e-10,-1.48539839456285e-09,-0.0799999959430801,-5.78318492690029e-06,-3.51154496973254e-06,4.52977346344073e-06,2.27621740900221e-11,3.00591149193685e-10,1.85362702964591e-06,1.57643673505718e-09,-1.09092422595465e-09,-1.22731685925331e-09,3.2222488566262e-10,-3.59521440396112e-10,5.20417042792946e-10 +8.168,-1.9561921705939e-06,-1.37673645254563e-06,1.61673339848546e-06,-3.59734259741673e-10,-1.48509430447641e-09,-0.0800003882000526,-2.05554740980255e-09,1.04765588565548e-09,4.1850680906901e-10,2.34803496090867e-11,3.00705640943233e-10,-5.93615434585425e-10,0.00273626167139906,0.00188940849576126,-0.00243159756403453,3.47378376066959e-10,9.58434720811136e-11,-0.000149957334743927 +8.17,5.62784824667019e-09,-8.29619893963351e-09,-2.501474166694e-09,-3.59644158204331e-10,-1.48419557199908e-09,-0.0799999959454546,5.16186175869476e-06,4.04608901331166e-06,-5.19661679269633e-06,2.41516875942898e-11,3.00974523082009e-10,1.25379769067027e-06,1.00062373751424e-09,-9.53664230918458e-10,-1.13353337133385e-09,2.51968584885687e-10,-3.2265856653176e-10,3.95516952522781e-10 +8.172,-1.93554472355912e-06,-1.36055209649238e-06,1.59594693131468e-06,-3.59637652991296e-10,-1.48389040638408e-09,-0.0800003831848618,-2.05154491485249e-09,1.04384122873181e-09,4.13972675583675e-10,2.44882239486293e-11,2.99415006677106e-10,-5.92033366775334e-10,-0.0015946725928212,-0.00111828691402538,0.00128292311127869,1.73038666728725e-10,-5.64218810561583e-10,-7.97718497161546e-05 +8.174,5.61964206701078e-09,-8.29202357471859e-09,-2.49981827599166e-09,-3.59546205308536e-10,-1.48299791197237e-09,-0.0799999959478227,-1.21682861258933e-06,-4.27058642789349e-07,-6.49243475821309e-08,2.48438422612046e-11,2.98717647839763e-10,9.34710291805688e-07,7.0273241458761e-10,-8.03393809927497e-10,-9.03465670377933e-10,1.67400815429006e-10,-2.48932818835864e-10,2.82759926649908e-10 +8.176,-1.94041203800948e-06,-1.36226033106354e-06,1.59568723392435e-06,-3.59538277622251e-10,-1.48269553579272e-09,-0.0800003794460206,-2.04873398519414e-09,1.0406276534921e-09,4.10358812902164e-10,2.51578272103452e-11,2.98419275401763e-10,-5.90902327068734e-10,0.000647164471053543,0.000441606665731771,-0.000475206923507517,1.43548367637048e-10,-8.97719398817698e-11,-4.9422010754685e-05 +8.178,5.61144713107e-09,-8.28786106410462e-09,-2.49817684074005e-09,-3.59445573999695e-10,-1.48180423487076e-09,-0.0799999959501863,1.37182927162571e-06,1.33936802013832e-06,-1.96575204161283e-06,2.5418035731753e-11,2.98358560080236e-10,7.37022248786882e-07,5.6393420726387e-10,-7.11453465469571e-10,-6.20922584137022e-10,8.82540568431328e-11,-1.86482773634414e-10,2.53269627427062e-10 +8.18,-1.93492472092298e-06,-1.35690285898299e-06,1.5878242257579e-06,-3.59436605479324e-10,-1.4815021015524e-09,-0.0800003764979317,-2.04647824836509e-09,1.03778183963022e-09,4.07875122565616e-10,2.55108434377177e-11,2.97673344307225e-10,-5.89889248559026e-10,-0.000441455822316745,-0.000324713414576953,0.000452830450979546,3.33934269097243e-11,-2.5023386144273e-10,-3.95235944667568e-05 +8.182,5.60326121807654e-09,-8.2837099367461e-09,-2.49654534024979e-09,-3.59343530625944e-10,-1.48061354149354e-09,-0.0799999959525459,-3.93994017641078e-07,4.05143618306545e-08,-1.54430237694851e-07,2.55516094393918e-11,2.97357624634465e-10,5.78927870919872e-07,4.8419791396839e-10,-5.90673343570009e-10,-3.11274443720523e-10,5.85469173141977e-12,-1.42681005899058e-10,2.59341159658472e-10 +8.184,-1.93650069699354e-06,-1.35674080153567e-06,1.58720650480712e-06,-3.59334399041566e-10,-1.48031267105386e-09,-0.0800003741822202,-2.04454145670921e-09,1.03541914625594e-09,4.06630024790733e-10,2.55342622046434e-11,2.97102620283629e-10,-5.88851883920392e-10,0.000148711700770246,7.91904313391737e-05,-3.36910624182295e-05,-2.53703308333299e-11,-8.54351311588575e-11,-3.28099830290125e-05 +8.186,5.59508305224971e-09,-8.27956826016107e-09,-2.49491882015063e-09,-3.59241393577125e-10,-1.4794251310124e-09,-0.0799999959549013,2.00852785439839e-07,3.57276087187314e-07,-2.89194487367754e-07,2.54501281160585e-11,2.9701588410983e-10,4.47687938803836e-07,4.25095343040879e-10,-4.94179350218999e-10,-8.44593492366301e-11,-5.63785129692581e-11,-4.38017677684192e-11,2.04697370165312e-10 +8.188,-1.93569728585178e-06,-1.35531169718692e-06,1.58604972685765e-06,-3.59232598529102e-10,-1.47912460751742e-09,-0.0800003723914684,-2.04284107533705e-09,1.03344242885506e-09,4.06292187393787e-10,2.53087481527664e-11,2.96927413212555e-10,-5.88033094439731e-10,-0.000114298676439894,-0.000102844721020673,0.000160779769923063,-7.89299181569615e-11,-4.94396190653574e-11,-2.26864039706892e-05 +8.19,5.58691168794836e-09,-8.27543449044565e-09,-2.49329365140105e-09,-3.59140158584514e-10,-1.47823742135955e-09,-0.0799999959572534,-2.56341920319687e-07,-5.41027968953338e-08,3.53924592324428e-07,2.51344084434307e-11,2.96818125633568e-10,3.56942322921089e-07,3.66080863766418e-10,-4.35849273453785e-10,1.01264482865011e-10,-1.01481323347431e-10,-3.12250226005439e-11,2.2638141368019e-10 +8.192,-1.93672265353306e-06,-1.3555281083745e-06,1.58746542522695e-06,-3.59132060895329e-10,-1.47793733501489e-09,-0.0800003709636991,-2.04137675188198e-09,1.03169903176125e-09,4.06697245325247e-10,2.49028228593767e-11,2.96802513122153e-10,-5.8712756878501e-10,4.8121256762321e-05,1.63952464885644e-05,1.87943963777346e-06,-1.2728533504977e-10,-3.29597460435483e-11,-1.00505844965992e-05 +8.194,5.57874618094083e-09,-8.27130769431861e-09,-2.49166686241975e-09,-3.59040547293077e-10,-1.47705021130706e-09,-0.0799999959596019,-6.3856893270339e-08,1.14781890589456e-08,3.61442350875525e-07,2.46252671032315e-11,2.96686286649394e-10,3.16739984934679e-07,3.32782304090762e-10,-3.87710696766346e-10,1.84314369367728e-10,-1.3422422895097e-10,-1.04083408229169e-11,2.28983498763823e-10 +8.196,-1.93697808110614e-06,-1.35548219561826e-06,1.58891119463045e-06,-3.59033559826916e-10,-1.47675058986829e-09,-0.0800003696967392,-2.04004562266562e-09,1.03014818897418e-09,4.07434502802718e-10,2.43659259435729e-11,2.96760879758861e-10,-5.86211634789955e-10,-1.26153371196662e-05,-1.66236881031548e-05,2.79075690508341e-05,-1.25550611573849e-10,1.69135538907757e-11,1.46620476176894e-06 +8.198,5.57058599845017e-09,-8.26718710156271e-09,-2.49003712440854e-09,-3.58943083589303e-10,-1.47586316778803e-09,-0.0799999959619468,-1.14318241748998e-07,-5.50165633536664e-08,4.73072627078849e-07,2.41230646569361e-11,2.96753940864957e-10,3.22604803981754e-07,3.26900507531572e-10,-3.72965547335106e-10,2.00252141258121e-10,-1.21647483752901e-10,2.16840434497125e-12,1.94289029309424e-10 +8.2,-1.93743535407314e-06,-1.35570226187168e-06,1.59080348513876e-06,-3.58937067568288e-10,-1.47556357410483e-09,-0.08000036840632,-2.03873802063549e-09,1.02865632678484e-09,4.0823551136775e-10,2.38793360085614e-11,2.96769553376241e-10,-5.85434478672717e-10,3.02564714073616e-05,2.15366537537772e-05,-2.53352078899895e-05,-1.21647483755524e-10,-1.34441069717668e-11,9.07916710559222e-06 +8.202,5.56243104636762e-09,-8.26307247625557e-09,-2.48840418236307e-09,-3.58847566245268e-10,-1.47467608957452e-09,-0.0799999959642885,6.70764388043447e-09,3.11300516614328e-08,3.71731795518902e-07,2.36364747219141e-11,2.9670016443707e-10,3.58921472404119e-07,3.36773523564619e-10,-3.4889625910577e-10,1.64581889783258e-10,-1.11672823765982e-10,-2.73218947466256e-11,2.04697370165221e-10 +8.204,-1.93740852349761e-06,-1.35557774166503e-06,1.59229041232084e-06,-3.588425216694e-10,-1.47437677344708e-09,-0.0800003669706341,-2.03739092654124e-09,1.02726074174842e-09,4.08893838926883e-10,2.34326447134973e-11,2.96660265797254e-10,-5.84615689192056e-10,1.21246393933456e-05,1.47490387958427e-05,-2.20708941573913e-05,-9.19403442241669e-11,-2.21177242857617e-11,1.19728844894399e-05 +8.206,5.55428148266146e-09,-8.25896343328858e-09,-2.48676860700736e-09,-3.58753835666414e-10,-1.47348944851133e-09,-0.079999995966627,5.52062014538115e-08,9.01262068447972e-08,2.83448218889346e-07,2.32687133450175e-11,2.96611693539927e-10,4.06813010361873e-07,3.65288040927271e-10,-3.72531866580005e-10,7.18826039903795e-11,-8.02309607665114e-11,-1.95156391376734e-11,2.49800180605518e-10 +8.208,-1.9371876986918e-06,-1.35521723683765e-06,1.5934242051964e-06,-3.5874944681602e-10,-1.47319032667292e-09,-0.080000365343382,-2.03592977437753e-09,1.0257706142821e-09,4.09181369342845e-10,2.31117208704313e-11,2.96582203240704e-10,-5.83616488469634e-10,1.82788229674896e-05,2.1648603049091e-05,-3.26069219368157e-05,-6.31005664386418e-11,-1.47451495457979e-11,1.09883499868599e-05 +8.21,5.54613776356395e-09,-8.25486035083145e-09,-2.48513188152999e-09,-3.58661388782933e-10,-1.47230311969837e-09,-0.0799999959689614,1.28321493323794e-07,1.7672061904119e-07,1.5302053114204e-07,2.30163110792628e-11,2.96552712941744e-10,4.50766410309328e-07,3.95835436684896e-10,-3.61473004192815e-10,-1.84314364779525e-12,-4.92227786282866e-11,-2.90566181896826e-11,1.8561541186476e-10 +8.212,-1.9366744127185e-06,-1.35451035436149e-06,1.59403628732097e-06,-3.58657381571703e-10,-1.47200411582116e-09,-0.0800003635403164,-2.03434643263079e-09,1.02432472226533e-09,4.09173996768254e-10,2.29148297559182e-11,2.96465976767945e-10,-5.82874026822175e-10,8.31359703030748e-06,1.47060846573293e-05,-2.4943498004934e-05,-4.33680868994298e-11,-6.89552581700986e-11,7.72449638975107e-06 +8.214,5.53800037783343e-09,-8.25076305194239e-09,-2.48349518554292e-09,-3.58569729463909e-10,-1.4711172557913e-09,-0.0799999959712929,1.6157588144502e-07,2.35544957670501e-07,5.3246539122315e-08,2.28428387316651e-11,2.96276891909063e-10,4.81664395868328e-07,4.18529143633866e-10,-3.86843335142922e-10,-9.28077059647823e-11,-2.03830008427322e-11,-8.19656842399261e-11,2.33320307518932e-10 +8.216,-1.93602810919272e-06,-1.35356817453081e-06,1.59424927347745e-06,-3.58566010216776e-10,-1.47081900825352e-09,-0.0800003616136588,-2.03267231605625e-09,1.02277734892475e-09,4.08802765944394e-10,2.28332977525472e-11,2.96138114030985e-10,-5.819407455921e-10,5.26996073730958e-06,1.08384889604676e-05,-1.95555678855085e-05,-4.98732999596873e-12,-5.63785130021199e-11,3.77443562510468e-06 +8.218,5.5298696885692e-09,-8.24667194254669e-09,-2.48185997447914e-09,-3.58478396272899e-10,-1.46993270333518e-09,-0.0799999959736207,1.82655724394256e-07,2.78898913512367e-07,-2.49757324197103e-08,2.28228894116812e-11,2.96051377857055e-10,4.96762138368745e-07,4.39325496554558e-10,-3.92914867308667e-10,-1.28044276570508e-10,-6.50521303491085e-13,-6.80878964320799e-11,1.97758476261316e-10 +8.22,-1.93529748629515e-06,-1.35245257887676e-06,1.59414937054778e-06,-3.5847471865913e-10,-1.46963480274209e-09,-0.0800003596266103,-2.03091501407003e-09,1.02120568945552e-09,4.08290588838112e-10,2.28306956673333e-11,2.95865762445257e-10,-5.81149711687054e-10,-5.17855215340835e-07,4.32061569684699e-06,-1.01389453473608e-05,9.9746599894026e-12,-8.80372163729781e-11,2.954719802714e-07 +8.222,5.52174602851292e-09,-8.24258711978887e-09,-2.48022681212379e-09,-3.58387073490229e-10,-1.46874924028539e-09,-0.0799999959759453,1.80584303532893e-07,2.96181376299753e-07,-6.55315138091489e-08,2.28627880516388e-11,2.95699228991563e-10,4.97944026289831e-07,4.46122089148825e-10,-3.99203240022479e-10,-1.89843800447508e-10,8.89045781184484e-12,-8.67361738316657e-11,2.22044604989498e-10 +8.224,-1.93457514908102e-06,-1.35126785337156e-06,1.59388724449254e-06,-3.58383267506923e-10,-1.46845200582613e-09,-0.0800003576348342,-2.02913052571344e-09,1.01960887649543e-09,4.07531213636322e-10,2.28662574985806e-11,2.9551881774993e-10,-5.80261533267096e-10,-2.99931650018612e-06,1.17636586235955e-07,-3.11435859739958e-06,8.45677694538492e-12,-6.9388939039062e-11,-2.09980643983652e-06 +8.226,5.51362950641007e-09,-8.23850868428289e-09,-2.47859668726924e-09,-3.58295608460235e-10,-1.46756716501439e-09,-0.0799999959782663,1.68587037532145e-07,2.96651922644697e-07,-7.79889481987514e-08,2.28966151594204e-11,2.95421673235407e-10,4.89544800530482e-07,4.47362144933103e-10,-4.07876857175923e-10,-1.89843800356996e-10,1.77809156313047e-11,-6.72205346613058e-11,2.27248775288596e-10 +8.228,-1.93390080093089e-06,-1.35008124568098e-06,1.59357528869974e-06,-3.58291681046286e-10,-1.46727031913318e-09,-0.0800003556766549,-2.02734107713371e-09,1.01797736906673e-09,4.06771838434894e-10,2.29373811611059e-11,2.95249935611285e-10,-5.79352538165942e-10,-4.83965891993137e-06,-3.13032000494387e-06,2.65618516764934e-06,1.69135538907782e-11,-8.97719398818097e-11,-3.26629955721485e-06 +8.23,5.50552014210153e-09,-8.23443677480662e-09,-2.4769695999155e-09,-3.58203858935591e-10,-1.46638616527195e-09,-0.0799999959805837,1.49228401852421e-07,2.84130642624923e-07,-6.73642075281552e-08,2.29642693749835e-11,2.9506258547588e-10,4.76479602301624e-07,4.40572329053215e-10,-3.94215909915825e-10,-1.82471225629356e-10,1.58293517182917e-11,-9.88792381307018e-11,2.18575157973128e-10 +8.232,-1.93330388732348e-06,-1.34894472311048e-06,1.59330583186963e-06,-3.58199823968786e-10,-1.46609006879128e-09,-0.0800003537707365,-2.02557878781749e-09,1.01640050542706e-09,4.06041953532377e-10,2.3000698567979e-11,2.94854418658762e-10,-5.7847823753405e-10,-4.87655214469486e-06,-4.40720702123423e-06,5.63652520925367e-06,1.14925430257942e-11,-7.02563008098067e-11,-3.37420889845116e-06 +8.234,5.49741782695026e-09,-8.23037117278491e-09,-2.47534543210137e-09,-3.58111856141319e-10,-1.46520674759731e-09,-0.0799999959828977,1.29722193273644e-07,2.66501814539988e-07,-4.4818106691143e-08,2.30102395470867e-11,2.9478156027264e-10,4.62982766707821e-07,4.34866715120213e-10,-4.1459891075837e-10,-1.66750294128228e-10,0,-6.72205346940788e-11,2.01227923213268e-10 +8.236,-1.93278499855038e-06,-1.34787871585232e-06,1.59312655944287e-06,-3.58107783010597e-10,-1.46491094255019e-09,-0.0800003519188055,-2.02383932095701e-09,1.01474210978403e-09,4.05374952355864e-10,2.3000698567979e-11,2.94585536519986e-10,-5.77673325841196e-10,-4.22407605176267e-06,-4.48890924428707e-06,6.60779991920943e-06,7.58941520995442e-12,-8.19656842072007e-11,-2.7550245070887e-06 +8.238,5.48932246966644e-09,-8.22631220434578e-09,-2.47372393229195e-09,-3.58019853347047e-10,-1.46402840545123e-09,-0.0799999959852083,1.12825889066595e-07,2.48546177562841e-07,-1.83869070143081e-08,2.30405972079265e-11,2.94453697535812e-10,4.51962668679467e-07,4.25095343265459e-10,-4.09177900008571e-10,-1.52438825496444e-10,4.11996825289032e-12,-6.6786853857801e-11,2.1076890239526e-10 +8.24,-1.93233369499412e-06,-1.34688453114207e-06,1.59305301181481e-06,-3.58015620621766e-10,-1.46373312776005e-09,-0.0800003501109548,-2.02213893958395e-09,1.01310539818399e-09,4.04765197053878e-10,2.30171784409906e-11,2.94318389104555e-10,-5.76830250231615e-10,-2.96897564449021e-06,-3.58056748313215e-06,5.839453703567e-06,-1.21430643318344e-11,-6.33174068731323e-11,-1.77766308617727e-06 +8.242,5.4812339139081e-09,-8.22225978275304e-09,-2.47210487150373e-09,-3.57927784633283e-10,-1.46285113189482e-09,-0.0799999959875157,1.00949986488631e-07,2.34223907630308e-07,4.97090779996766e-09,2.29920249505991e-11,2.94200427908319e-10,4.44852016334756e-07,4.15147787883847e-10,-4.01371644141733e-10,-1.20454861318227e-10,-1.19262238947876e-11,-6.67868537924537e-11,2.49800180476685e-10 +8.244,-1.93192989504816e-06,-1.34594763551155e-06,1.59307289544601e-06,-3.57923652521963e-10,-1.46255632604841e-09,-0.0800003483315467,-2.02047834843241e-09,1.01149991160743e-09,4.04283377608605e-10,2.29694735454114e-11,2.94051241689385e-10,-5.75831049509709e-10,-1.67550080933017e-06,-2.28341607774791e-06,4.1824113616871e-06,-1.38777878078176e-11,-8.67361737988628e-11,-7.63501241396622e-07 +8.246,5.47315200051437e-09,-8.21821378310661e-09,-2.4704877379933e-09,-3.57835906739101e-10,-1.46167492692806e-09,-0.079999995989819,9.42479832513106e-08,2.25090243319317e-07,2.17005532467142e-08,2.29365137993679e-11,2.93853483213124e-10,4.4179801136917e-07,4.08412182111756e-10,-4.13514708586069e-10,-1.04191828775881e-10,-2.0166160408235e-11,-7.15573433840512e-11,1.87350135405516e-10 +8.248,-1.93155290311516e-06,-1.34504727453827e-06,1.593159697659e-06,-3.57831906466766e-10,-1.46138091211556e-09,-0.0800003465643547,-2.01884469970397e-09,1.00984585277308e-09,4.03866610293502e-10,2.28888089037785e-11,2.93765012315849e-10,-5.75081648968087e-10,-5.2448731394175e-07,-9.37311860096741e-07,2.22124510624853e-06,-2.2768245624737e-11,-3.20923843381835e-11,6.03215393810864e-08 +8.25,5.46507662171555e-09,-8.21417439969552e-09,-2.46887227155212e-09,-3.57744351503486e-10,-1.46049986687879e-09,-0.0799999959921193,9.21500339955439e-08,2.21340995878931e-07,3.05855336717074e-08,2.28454408168689e-11,2.93725113675771e-10,4.42039297526694e-07,4.07334756202771e-10,-4.24139889876239e-10,-9.61687326994321e-11,-2.08166817117172e-11,-6.1149002528175e-11,2.15105711021078e-10 +8.252,-1.93118430297917e-06,-1.34416191055475e-06,1.59328203979368e-06,-3.57740524703498e-10,-1.46020601166086e-09,-0.0800003447961975,-2.01721536067916e-09,1.00814929321358e-09,4.03481935362704e-10,2.28055421769316e-11,2.93520416305736e-10,-5.74221226124002e-10,2.91129899603468e-07,1.48821927028657e-07,4.94135006353544e-07,-2.32019264886583e-11,-8.80372163732366e-11,5.75668852913833e-07 +8.254,5.45700776027284e-09,-8.21014180252266e-09,-2.46725834381067e-09,-3.57653129334778e-10,-1.45932578521357e-09,-0.0799999959944162,9.33145535939576e-08,2.21936283587045e-07,3.25620736971213e-08,2.27526331109143e-11,2.93372964810278e-10,4.44341972938349e-07,4.01120922725646e-10,-4.26958815636611e-10,-9.56266316580032e-11,-2.84060969216453e-11,-5.42101086568514e-11,2.42861286700447e-10 +8.256,-1.9308110447648e-06,-1.34327416542041e-06,1.59341228808847e-06,-3.57649514171055e-10,-1.45903251980162e-09,-0.0800003430188296,-2.01561087698825e-09,1.00644145795103e-09,4.03099428836072e-10,2.2691917789245e-11,2.93303575871109e-10,-5.732497809772e-10,7.58628924924564e-07,8.53097106845261e-07,-7.26433453321189e-07,-2.51534904016585e-11,-4.20670442924235e-11,7.6320200159669e-07 +8.258,5.44894531676488e-09,-8.20611603669086e-09,-2.46564594609533e-09,-3.57562361663621e-10,-1.45815257091009e-09,-0.0799999959967092,9.63490692936569e-08,2.25348672014428e-07,2.96563398838356e-08,2.26520191493076e-11,2.93204696633108e-10,4.47394780944737e-07,4.03872085290721e-10,-4.06142133701445e-10,-8.51098704953762e-11,-2.42861286611617e-11,-6.15826833646261e-11,2.05564731839659e-10 +8.26,-1.93042564848762e-06,-1.34237277073235e-06,1.59353091344801e-06,-3.57558906094457e-10,-1.45785970101509e-09,-0.0800003412292505,-2.01399538864709e-09,1.00481688941623e-09,4.02758989354091e-10,2.25947732746004e-11,2.9305724513765e-10,-5.72427522049842e-10,9.10303414949848e-07,1.15086304201842e-06,-1.33995863450144e-06,-2.21177243187092e-11,-6.93889390390928e-11,6.77307168684001e-07 +8.262,5.44088933521029e-09,-8.20209676913319e-09,-2.46403491013791e-09,-3.57471982570523e-10,-1.45698034192954e-09,-0.0799999959989989,9.99902829534559e-08,2.29952124182501e-07,2.42965053458304e-08,2.25635482520328e-11,2.92927140876952e-10,4.50104009619473e-07,4.00307770872426e-10,-4.21971485531457e-10,-9.36750677027708e-11,-2.38524477946861e-11,-5.98479599212064e-11,2.32452945780944e-10 +8.264,-1.93002568735581e-06,-1.34145296223562e-06,1.59362809946939e-06,-3.57468651901449e-10,-1.45668799245158e-09,-0.0800003394288344,-2.0123941575636e-09,1.0031290034741e-09,4.0238428908328e-10,2.24993634834217e-11,2.92817853297965e-10,-5.71497710266718e-10,8.40621084015149e-07,1.1166315268005e-06,-1.41652455824359e-06,-3.10081821355833e-11,-5.33427469187983e-11,4.1362226139142e-07 +8.266,5.43283975858004e-09,-8.1980842531193e-09,-2.46242537298158e-09,-3.57381985116589e-10,-1.45580907051635e-09,-0.0799999960012849,1.03352767289516e-07,2.34418650289702e-07,1.86304071128567e-08,2.24395155234905e-11,2.92713769889277e-10,4.51758498665038e-07,4.03119920257235e-10,-4.08961059461447e-10,-9.40003283544748e-11,-2.55871712706526e-11,-6.1149002528175e-11,1.94289029309363e-10 +8.268,-1.92961227628665e-06,-1.34051528763446e-06,1.59370262109784e-06,-3.57378893839355e-10,-1.45551713737202e-09,-0.0800003376218004,-2.01078167788257e-09,1.00149315923625e-09,4.02008287769861e-10,2.2397014798339e-11,2.92573257287853e-10,-5.7072055414948e-10,6.47082417499705e-07,8.64695251191614e-07,-1.11276200927086e-06,-1.69135538882861e-11,-6.7220534661616e-11,7.84598081451239e-08 +8.27,5.42479663186851e-09,-8.19407828048235e-09,-2.4608173398305e-09,-3.57292397057396e-10,-1.45463877748719e-09,-0.0799999960035678,1.05941096959515e-07,2.37877431294468e-07,1.41793590757737e-08,2.23718613079374e-11,2.9244488775063e-10,4.52072337897619e-07,4.02720120929236e-10,-4.15683113042037e-10,-1.0560129164469e-10,-1.56125112862737e-11,-6.98226199405281e-11,2.28116137154255e-10 +8.272,-1.92918851189881e-06,-1.33956377790928e-06,1.59375933853415e-06,-3.57289406394123e-10,-1.45434735782102e-09,-0.0800003358135111,-2.00917079739886e-09,9.99830426784086e-10,4.01585882603283e-10,2.23345647531939e-11,2.9229396680809e-10,-5.69808089600864e-10,4.19639353105721e-07,5.2098256264609e-07,-6.21171083320243e-07,-1.9515639104735e-11,-5.89805981832047e-11,-2.35639632806196e-07 +8.274,5.41675994867891e-09,-8.19007895877522e-09,-2.45921099630009e-09,-3.57203058798383e-10,-1.45346960161996e-09,-0.079999996005847,1.07619654371938e-07,2.39961361545053e-07,1.16946747424919e-08,2.22937987515184e-11,2.92208965357897e-10,4.51129779366394e-07,4.0502405009971e-10,-4.09177899785077e-10,-1.11781243938691e-10,-1.8214596495281e-11,-6.80878963996562e-11,2.02095284888093e-10 +8.276,-1.92875803328133e-06,-1.3386039324631e-06,1.59380611723312e-06,-3.57200231199117e-10,-1.45317852195959e-09,-0.080000334008992,-2.00755070119846e-09,9.98193715184946e-10,4.01138757627528e-10,2.22617063672128e-11,2.92021615222492e-10,-5.68999708461311e-10,2.20345626239476e-07,1.90834761187911e-07,-1.15467422949515e-07,-1.43114686768119e-11,-6.46184494801432e-11,-4.64744562278623e-07 +8.278,5.40872974587412e-09,-8.18608618391448e-09,-2.45760644126958e-09,-3.57114011972914e-10,-1.45230151515907e-09,-0.079999996008123,1.08501036876896e-07,2.40724700589805e-07,1.12328050506939e-08,2.22365528768112e-11,2.91950491559977e-10,4.49270801117279e-07,4.06345421720559e-10,-3.94432750350322e-10,-1.06468653338101e-10,-1.1058862159355e-11,-3.33934269125572e-11,2.26381413615024e-10 +8.28,-1.92832402913382e-06,-1.33764103366074e-06,1.59385104845332e-06,-3.5711128498761e-10,-1.45201071999335e-09,-0.0800003322119088,-2.00592531951157e-09,9.96615984183545e-10,4.00712883014176e-10,2.22174709185754e-11,2.91888041514842e-10,-5.68094182806851e-10,8.26788385355828e-08,-5.45533670587981e-08,2.78065005915396e-07,-8.45677694785406e-12,-6.24500451675612e-11,-5.78393236133424e-07 +8.282,5.40070604459608e-09,-8.18209971997774e-09,-2.45600358973752e-09,-3.5702514208924e-10,-1.45113396299301e-09,-0.0799999960103954,1.08831752231038e-07,2.4050648712157e-07,1.23450650743554e-08,2.22027257690197e-11,2.91700691379307e-10,4.46957228172746e-07,4.04692013407235e-10,-3.98335878171093e-10,-1.21864324187343e-10,-1.25767452008285e-11,-9.84455572616638e-11,2.16840434497054e-10 +8.284,-1.92788870212489e-06,-1.33667900771225e-06,1.59390042871362e-06,-3.57022474084534e-10,-1.45084391722783e-09,-0.0800003304240799,-2.00430655145794e-09,9.9502264067086e-10,4.00225425717426e-10,2.21671639377721e-11,2.91494259285795e-10,-5.67226821068863e-10,1.33669185324878e-08,-1.83066235754909e-07,4.93861787404051e-07,-1.36609473708551e-11,-7.50267903036288e-11,-5.77390565865047e-07 +8.286,5.39268881839024e-09,-8.17811962941506e-09,-2.45440268803465e-09,-3.56936473433489e-10,-1.44996798595587e-09,-0.0799999960126643,1.08885219905168e-07,2.3977422217855e-07,1.43205122239714e-08,2.21480819795363e-11,2.91400584218092e-10,4.44647665909286e-07,4.07958172674436e-10,-3.94215910026098e-10,-1.18611717714324e-10,-8.67361738234311e-12,-4.64038530147352e-11,2.04697370228177e-10 +8.288,-1.92745316124527e-06,-1.33571991082354e-06,1.59395771076251e-06,-3.56933881756616e-10,-1.44967831489096e-09,-0.0800003286454892,-2.00267471876725e-09,9.93445777030756e-10,3.99750978846569e-10,2.21324694682427e-11,2.91308643873736e-10,-5.6640803158795e-10,7.02996688639366e-10,-1.96741277783091e-07,5.23238678946818e-07,-8.67361737988195e-12,-4.42354486374067e-11,-4.85131899929827e-07 +8.29,5.38467811951517e-09,-8.17414584630693e-09,-2.45280368411926e-09,-3.56847943555616e-10,-1.44880275138037e-09,-0.0799999960149299,1.08888031891923e-07,2.38987257067418e-07,1.64134669397593e-08,2.21133875100168e-11,2.91223642423542e-10,4.42707138309566e-07,4.04027939354463e-10,-4.00504282405968e-10,-1.14166488718366e-10,-1.1709383460389e-11,-6.67868537927768e-11,2.02962646626469e-10 +8.292,-1.92701760911771e-06,-1.33476396179527e-06,1.59402336463027e-06,-3.56845428206576e-10,-1.44851342032126e-09,-0.0800003268746606,-2.00105860700983e-09,9.91843759901132e-10,3.99294312891696e-10,2.20856319344012e-11,2.91041496458565e-10,-5.65596181001444e-10,2.34082298358289e-08,-1.21657892093756e-07,4.00706160960751e-07,-9.5409791178751e-12,-8.15320033709189e-11,-3.37814845541372e-07 +8.294,5.37667388508713e-09,-8.17017847126733e-09,-2.4512065068677e-09,-3.56759601027878e-10,-1.44763858539454e-09,-0.0799999960171923,1.08981664811266e-07,2.38500625499043e-07,1.80162915836022e-08,2.20752235935453e-11,2.90897514410059e-10,4.41355878927401e-07,4.07829423444149e-10,-3.81856005149488e-10,-1.13082286590263e-10,-1.36609473733205e-11,-6.63531729561331e-11,2.41126563160829e-10 +8.296,-1.92658168245846e-06,-1.33380995929328e-06,1.5940954297966e-06,-3.56757127312202e-10,-1.44734983026362e-09,-0.0800003251092371,-1.99942728931605e-09,9.90316335880535e-10,3.98841983745335e-10,2.20309881449079e-11,2.9077608376674e-10,-5.64631674748801e-10,5.88249338441835e-08,4.21277593492713e-09,1.85290259695948e-07,-1.49619899827468e-11,-5.89805982155038e-11,-1.7459037692691e-07 +8.298,5.36867617592987e-09,-8.16621720592381e-09,-2.44961113893272e-09,-3.56671477075299e-10,-1.44647548105947e-09,-0.0799999960194508,1.09216964546643e-07,2.38517476602782e-07,1.87574526223859e-08,2.20153756336143e-11,2.90661592017197e-10,4.40657517419693e-07,4.05918517114859e-10,-3.8749385644619e-10,-1.15467531369681e-10,-3.90312782094732e-12,-5.50774703622452e-11,1.87350135405433e-10 +8.3,-1.92614481460027e-06,-1.33285588938686e-06,1.59417045960709e-06,-3.56669065809667e-10,-1.44618718389555e-09,-0.0800003233466071,-1.99780361524759e-09,9.88766360454749e-10,3.98380113619856e-10,2.20153756336241e-11,2.90555773885291e-10,-5.63882274207179e-10,8.86565533564743e-08,1.41620439360479e-07,-5.77961073077012e-08,-6.28837259797304e-12,-6.4184768578876e-11,-2.86558970507479e-08 +8.302,5.36068496146888e-09,-8.16226214048199e-09,-2.44801761847824e-09,-3.56583415572764e-10,-1.44531325796393e-09,-0.0799999960217064,1.09571590760069e-07,2.39083958360224e-07,1.85262681931551e-08,2.19902221432224e-11,2.90404852942881e-10,4.4054289383149e-07,4.03628140247348e-10,-4.15249432171647e-10,-1.06902334251285e-10,-1.56125112862317e-11,-7.19910242852796e-11,2.16840434559654e-10 +8.304,-1.92570652823723e-06,-1.33189955355342e-06,1.59424456467987e-06,-3.56581104921094e-10,-1.44502556448378e-09,-0.0800003215844355,-1.9961891026866e-09,9.87105362726063e-10,3.97952504282851e-10,2.19529255884792e-11,2.9026780978815e-10,-5.63014912468941e-10,1.02169297056906e-07,2.58659847013296e-07,-2.72010495724835e-07,-1.64798730217766e-11,-5.94142790521987e-11,7.64666108210454e-08 +8.306,5.35270020505813e-09,-8.15831371903109e-09,-2.44642580846111e-09,-3.5649560387041e-10,-1.44415218672478e-09,-0.0799999960239584,1.09980267948296e-07,2.40118597748278e-07,1.74382262102554e-08,2.19243026511353e-11,2.90167195826672e-10,4.40848760274774e-07,4.07402518617048e-10,-3.75133951570476e-10,-1.20454861318976e-10,-1.21430643294027e-11,-6.89552581378644e-11,1.96023752722923e-10 +8.308,-1.92526660716544e-06,-1.33093907916243e-06,1.59431431758471e-06,-3.5649340771049e-10,-1.44386489570048e-09,-0.0800003198210404,-1.99455949261214e-09,9.85604826919781e-10,3.97470684837575e-10,2.19043533311616e-11,2.89991988755599e-10,-5.62230817458049e-10,9.64888569434383e-08,3.34996787254635e-07,-4.1864493642583e-07,-1.10588621593542e-11,-6.54858112181317e-11,1.29778132684804e-07 +8.31,5.34472196708768e-09,-8.15437129972341e-09,-2.44483592572176e-09,-3.56407986457086e-10,-1.44299221876976e-09,-0.0799999960262074,1.1036622337607e-07,2.41458584897296e-07,1.57636464645523e-08,2.18800672024979e-11,2.899052525818e-10,4.41367872805513e-07,4.01832430177484e-10,-4.10262102068612e-10,-9.85539774789561e-11,-1.23599047663377e-11,-6.07153216592079e-11,2.35922392732898e-10 +8.312,-1.92482514227194e-06,-1.32997324482284e-06,1.59437737217057e-06,-3.5640588744168e-10,-1.44270527469015e-09,-0.080000318055569,-1.99295216289143e-09,9.83963778511507e-10,3.97076468927659e-10,2.18549137120962e-11,2.89749127468962e-10,-5.61287127887118e-10,7.50753693573207e-08,3.63053771047271e-07,-4.80216344121964e-07,-1.25767452032582e-11,-6.54858112503013e-11,1.31608265902898e-07 +8.314,5.33675015843612e-09,-8.15043544460936e-09,-2.44324761984605e-09,-3.56320566802237e-10,-1.44183322225988e-09,-0.0799999960284525,1.10666524853499e-07,2.42910799981485e-07,1.38427810880646e-08,2.18297602216849e-11,2.89643309336799e-10,4.41894305869125e-07,4.05037602849819e-10,-3.93565388612158e-10,-1.11998084417728e-10,-1.9949319973729e-11,-4.38017677683997e-11,2.02962646689245e-10 +8.316,-1.92438247617252e-06,-1.32900160162291e-06,1.59443274329492e-06,-3.56318568400793e-10,-1.4415467014528e-09,-0.0800003162879917,-1.99133201248003e-09,9.82389516957058e-10,3.96628476589988e-10,2.17751164322013e-11,2.89573920397888e-10,-5.6047527730036e-10,4.54757894875528e-08,3.46589944271562e-07,-4.59259041385393e-07,-1.43114686743885e-11,-5.94142790200555e-11,9.09741032997367e-08 +8.318,5.3287848303862e-09,-8.14650588654153e-09,-2.44166110593969e-09,-3.56233466336509e-10,-1.44067492657829e-09,-0.0799999960306944,1.10848428011449e-07,2.44297159758571e-07,1.20057449225233e-08,2.17725143469873e-11,2.89405652220719e-10,4.42258202282324e-07,4.02178019840925e-10,-3.94215910024702e-10,-1.03107626647379e-10,-6.72205347182617e-12,-7.93635990580655e-11,2.11636264131336e-10 +8.32,-1.92393908246048e-06,-1.32802441298388e-06,1.59448076627461e-06,-3.56231478343405e-10,-1.44038907884392e-09,-0.0800003145189589,-1.98972330040066e-09,9.80812653316959e-10,3.96216046083398e-10,2.1748228218314e-11,2.89256466001656e-10,-5.59628732243835e-10,1.61251491759946e-08,2.96959939277637e-07,-3.7316373949206e-07,-2.01661604082261e-11,-6.46184494801274e-11,2.24837509721279e-08 +8.322,5.3208259371846e-09,-8.14258263592826e-09,-2.44007624175535e-09,-3.56146473423635e-10,-1.43951790071428e-09,-0.0799999960329329,1.10912928608153e-07,2.45484999515682e-07,1.05130899645545e-08,2.16918497053544e-11,2.89147178422798e-10,4.42348137286212e-07,4.03174130145078e-10,-4.01805325014295e-10,-1.07769695901101e-10,-2.01661604058197e-11,-5.7245874675136e-11,1.95156390985322e-10 +8.324,-1.92349543074604e-06,-1.32704247298582e-06,1.59452281863447e-06,-3.56144710944584e-10,-1.43923249013023e-09,-0.0800003127495664,-1.98811060388008e-09,9.79205432016902e-10,3.95784967299794e-10,2.16675635766907e-11,2.89027482502956e-10,-5.58848106679894e-10,-5.48883448458067e-09,2.29497844339617e-07,-2.48032172058043e-07,-1.21430643318398e-11,-4.98732999343387e-11,-5.7997009972339e-08 +8.326,5.31287349476908e-09,-8.1386658142002e-09,-2.43849310188615e-09,-3.56059803169329e-10,-1.43836179078427e-09,-0.0799999960351683,1.10890973270215e-07,2.4640299089304e-07,9.52096127632245e-09,2.1643277448027e-11,2.88947685223061e-10,4.42116149246323e-07,4.01961179185467e-10,-3.97468516433281e-10,-1.04408669210379e-10,-1.8431436932258e-11,-6.07153216592079e-11,2.41126563160829e-10 +8.328,-1.92305186685296e-06,-1.32605686102225e-06,1.59456090247957e-06,-3.56058137834792e-10,-1.43807669938933e-09,-0.0800003109811018,-1.98650275916334e-09,9.77615557951169e-10,3.95367332622953e-10,2.15938378289617e-11,2.88784621216319e-10,-5.57883600427251e-10,-1.47549683640375e-08,1.59569623112507e-07,-1.11805096432082e-07,-1.88651178036466e-11,-7.50267903680713e-11,-1.354784340759e-07 +8.33,5.30492748373242e-09,-8.13475535196839e-09,-2.43691163255566e-09,-3.55973427818013e-10,-1.43720665229941e-09,-0.0799999960373999,1.10831953396759e-07,2.4704126938549e-07,9.07374089059417e-09,2.15678169768124e-11,2.88647578061588e-10,4.4157423551002e-07,3.99901195057567e-10,-3.90746462963697e-10,-1.05492871382817e-10,-1.71303943252669e-11,-6.0715321659168e-11,1.79543879763565e-10 +8.332,-1.92260853903938e-06,-1.3250686959447e-06,1.59459719744313e-06,-3.55971866566884e-10,-1.43692210907709e-09,-0.0800003092148048,-1.98490315438311e-09,9.76052572099314e-10,3.94945361137421e-10,2.15253162516606e-11,2.88541759929682e-10,-5.57165424908196e-10,0.0605470956362121,0.0399606693160961,-0.0489545673980069,2.48911134759516e-09,4.99166680215641e-09,0.0194585198492374 +8.334,5.29698787111489e-09,-8.13085114168e-09,-2.43533185111111e-09,-3.55887326553006e-10,-1.43605248525969e-09,-0.0799999960396285,0.000242299214498219,0.000160089718533752,-0.000195809195851116,3.1524262367192e-11,3.08614245270212e-10,7.82756536324511e-05,3.56722911303225e-08,-1.76178516221249e-08,-1.03634548859615e-08,2.13631196066257e-09,-5.2778961756903e-09,1.09825343264686e-08 +8.336,-9.53411681046609e-07,-6.84709821809765e-07,8.11360414038759e-07,-3.55845769517416e-10,-1.43568765209601e-09,-0.0799999961121903,-1.84221398986184e-09,9.05581165610822e-10,3.5349154159358e-10,3.00705640943099e-11,2.67430175226923e-10,-5.13235287602327e-10,-0.165613388044451,-0.107928515353397,0.133667815744874,-3.35907517079384e-09,-2.21892816620834e-08,-0.0456971662402586 +8.338,5.28961901515544e-09,-8.12722881701755e-09,-2.43391788494474e-09,-3.55767044296629e-10,-1.43498276455878e-09,-0.0799999960416815,-0.000420154337679808,-0.000271624342879982,0.000338862067128558,1.80879616840122e-11,2.19857118621849e-10,-0.000104513011328645,-3.841685406228e-08,1.85767200234713e-08,8.79526486367809e-09,-1.6698881860592e-09,5.35379032776429e-09,-1.22384741230761e-08 +8.34,-2.63402903176565e-06,-1.77120719332957e-06,2.16680868255284e-06,-3.55773417670679e-10,-1.43480822362152e-09,-0.0800004141642356,-1.99588140611094e-09,9.79888045704699e-10,3.88672601048288e-10,2.33910113500738e-11,2.88845336537978e-10,-5.62189184094626e-10,0.164504008274253,0.106328557575852,-0.134051337342226,1.77115266897271e-09,2.67988756186336e-08,0.0297848166911567 +8.342,5.281635489531e-09,-8.12330926483473e-09,-2.43236319454054e-09,-3.55673480251228e-10,-1.43382738321263e-09,-0.0799999960439302,0.000237861695417132,0.000153689887423379,-0.000197343282240287,2.51725723599022e-11,3.27052621096371e-10,1.46262554359693e-05,-5.43488187397298e-09,1.39254927034069e-09,3.37837396946558e-09,-1.3994881642446e-09,8.10115863281349e-10,-9.41954847455613e-10 +8.344,-1.68258225009723e-06,-1.15644764363612e-06,1.37743555359178e-06,-3.5567272738124e-10,-1.43350001313713e-09,-0.0800003556592139,-2.01762093360683e-09,9.85458242786061e-10,4.02186096926149e-10,1.77930586930961e-11,2.92085799991103e-10,-5.65957003484448e-10,-0.0222350300476041,-0.0150106049068512,0.0204936950887234,-1.37693675908423e-10,-7.02346167339584e-09,0.0186567092295917 +8.346,5.27356500579657e-09,-8.11936743186359e-09,-2.43075445015284e-09,-3.55602308016456e-10,-1.43265904001266e-09,-0.079999996046194,0.000148921575226725,9.36474677959812e-05,-0.000115368501885402,2.46217976562686e-11,2.98958774402791e-10,8.92530923543279e-05,3.58711134797451e-08,-1.74222615501002e-08,-8.87105059549167e-09,1.71585835817518e-09,-5.03243280380759e-09,1.11768233557161e-08 +8.348,-1.08689594919013e-06,-7.81857772452071e-07,9.15961546050018e-07,-3.55574240190615e-10,-1.43230417803952e-09,-0.0799999986468445,-1.8741364796878e-09,9.15769196585637e-10,3.66701894544171e-10,2.46564921257991e-11,2.71956068775866e-10,-5.21249710061568e-10,-0.132417146058727,-0.0847528731527394,0.10581770405804,-2.7423809750827e-09,-1.72730753311407e-08,-0.0505472065107105 +8.35,5.26606845987782e-09,-8.11570435507725e-09,-2.42928764257466e-09,-3.55503682047953e-10,-1.43157121573756e-09,-0.079999996048279,-0.000380747009008125,-0.000245364024814939,0.00030790231434671,1.3652273755939e-11,2.29866473078236e-10,-0.000112935733688492,-3.57820123897495e-08,1.79775899027455e-08,8.86411170154704e-09,-1.48665801891453e-09,5.23279336525268e-09,-1.14040721310111e-08 +8.352,-2.60988398522247e-06,-1.76331387171172e-06,2.14757080343672e-06,-3.55519631095591e-10,-1.43138471214721e-09,-0.0800004503897792,-2.01726452924678e-09,9.87679556196611e-10,4.02158341350355e-10,1.87098600501416e-11,2.92887242236874e-10,-5.66865998585608e-10,0.150194927077664,0.097034109948252,-0.122134089787826,1.79934192545654e-09,2.44773819268963e-08,0.0333016686188745 +8.354,5.25799940176083e-09,-8.11175363685246e-09,-2.42767900920926e-09,-3.55428842607752e-10,-1.43039966676861e-09,-0.0799999960505465,0.00022003269930273,0.000142772414978199,-0.000180634044804759,2.08496414577675e-11,3.27776000785854e-10,2.02709407870505e-05,-2.67635306300503e-09,6.61146484891438e-10,2.70107287235839e-09,-1.01069326518913e-09,5.55545193214217e-10,-1.77809156350611e-10 +8.356,-1.72975318801164e-06,-1.19222421179899e-06,1.42503462421777e-06,-3.5543623252976e-10,-1.43007360814407e-09,-0.0800003693060161,-2.0279699414988e-09,9.90324142136177e-10,4.12962632839787e-10,1.46670869893855e-11,2.95109423009731e-10,-5.6757723521101e-10,-0.0151219425517481,-0.0103537949670071,0.0141418094243445,4.07443176420142e-10,-6.19513121358354e-09,0.0180508071762451 +8.358,5.24988752199484e-09,-8.10779234028391e-09,-2.4260271586779e-09,-3.55370174259795e-10,-1.42921922907657e-09,-0.0799999960528168,0.000159544929095744,0.000101357235110175,-0.000124066807107387,2.24794141634479e-11,3.02995475931522e-10,9.2474169492023e-05,3.77468713295879e-08,-1.80170548619336e-08,-9.77950359582141e-09,2.08058396900014e-09,-5.33297364602288e-09,1.16512702264008e-08 +8.36,-1.09157347162874e-06,-7.86795271358331e-07,9.28767395788274e-07,-3.55346314873106e-10,-1.42886162624034e-09,-0.0799999994093381,-1.87698245618047e-09,9.1825592268845e-10,3.73844618456506e-10,2.29894228653852e-11,2.73777528425642e-10,-5.20972154305412e-10,-0.0587407501623772,-0.0372155996076548,0.0469437469116424,3.96601154692613e-10,-1.04512752619226e-08,-0.0239048247186645 +8.362,5.24237959217012e-09,-8.10411931659316e-09,-2.42453178020408e-09,-3.55278216568333e-10,-1.42812411896287e-09,-0.0799999960549007,-7.54180715537389e-05,-4.75051633204279e-05,6.37081805391621e-05,2.40658187822182e-11,2.61190374883837e-10,-3.14512938262463e-06,4.66830350417894e-10,2.98806118736931e-10,-2.30566434000715e-09,9.57133677869989e-10,-2.26815094483918e-10,-4.29344060304168e-10 +8.364,-1.3932457578438e-06,-9.76815924640106e-07,1.18360011794501e-06,-3.55250051597977e-10,-1.42781686474081e-09,-0.0800000119898556,-1.87511513477879e-09,9.19451147163398e-10,3.64621961096474e-10,2.68179575768664e-11,2.72870268047706e-10,-5.22689530546629e-10,-0.0499310767771651,-0.0319070918154645,0.0381160896152061,-2.05456311685781e-09,-3.25694332611817e-09,-0.0297484423483832 +8.366,5.234879131631e-09,-8.10044151200451e-09,-2.42307329235969e-09,-3.55170944738026e-10,-1.42703263789068e-09,-0.0799999960569915,-0.000275142378662377,-0.000175133530582272,0.00021617253899997,1.58475663147879e-11,2.48162601579365e-10,-0.000122138898776144,-4.08111790345124e-08,1.89544560601543e-08,1.06285423170498e-08,-2.40237517379582e-09,5.71981698113296e-09,-1.23798540862477e-08 +8.368,-2.49381527249318e-06,-1.67735004696912e-06,2.04829027394479e-06,-3.55186661332718e-10,-1.42682421433449e-09,-0.0800005005454507,-2.03835985091683e-09,9.95268971404007e-10,4.07136130364669e-10,1.72084568816842e-11,2.95749535972235e-10,-5.72208946891615e-10,0.166382382193951,0.106723866202133,-0.133106245902705,2.81979301019967e-09,2.31542215955952e-08,0.0614447491758264 +8.37,5.22672569222733e-09,-8.09646043611889e-09,-2.42144474783823e-09,-3.55102110910499e-10,-1.42584963974679e-09,-0.0799999960592803,0.000390387150113648,0.000251761934226401,-0.000316252444611028,2.71267383555903e-11,3.40779487961777e-10,0.000123640097927244,3.21722629004095e-08,-1.65412388646355e-08,-6.97684097990055e-09,8.52399748010202e-10,-4.62260438257738e-09,1.05436492869258e-08 +8.372,-9.32266672038764e-07,-6.70302310063625e-07,7.83280495500818e-07,-3.55078154379296e-10,-1.42546109638264e-09,-0.080000005985059,-1.9096707993152e-09,9.29104015945472e-10,3.7922876644507e-10,2.06180558737246e-11,2.77259118441928e-10,-5.30034349743916e-10,-0.215529411190299,-0.14041686809328,0.175070614897043,-4.93398724654812e-09,-2.988364763979e-08,-0.0621747105874827 +8.374,5.21908700903007e-09,-8.09274402005511e-09,-2.41992783277245e-09,-3.55019638687004e-10,-1.42474060327302e-09,-0.0799999960614004,-0.000471730494647452,-0.000309905538146658,0.000384030014977066,7.3907893694e-12,2.2124489740263e-10,-0.00012505874442266,-3.41973899285133e-08,1.70920135683687e-08,8.79049437407991e-09,-1.46605817763522e-09,5.05108108117658e-09,-1.06798250798536e-08 +8.376,-2.81918865062836e-06,-1.90992446265012e-06,2.31940055540891e-06,-3.55048591221818e-10,-1.42457611679303e-09,-0.0800005062200367,-2.04646035902924e-09,9.9747207021894e-10,4.14390743941385e-10,1.47538231631844e-11,2.97463442766632e-10,-5.72753650063325e-10,0.188187535809163,0.123647340505085,-0.15334849091205,2.87443679969211e-09,2.98671677667304e-08,0.0384581021143551 +8.378,5.21090116759396e-09,-8.08875413177423e-09,-2.41827026979669e-09,-3.54960623394351e-10,-1.42355074950196e-09,-0.0799999960636914,0.000281019648589119,0.000184683823873628,-0.000229363948671065,1.88885365681672e-11,3.40713568469539e-10,2.8773664034744e-05,5.37323820420162e-10,-5.33861149731736e-10,1.72485723620679e-09,-5.9804591834287e-10,1.66099772824737e-10,7.3465539207601e-10 +8.38,-1.69511005627151e-06,-1.17118916715536e-06,1.40194476072435e-06,-3.54973037075546e-10,-1.42321326251915e-09,-0.0800003911253806,-2.04431106374756e-09,9.95336625620012e-10,4.21290172886215e-10,1.23616394898121e-11,2.98127841857931e-10,-5.6981502849502e-10,-0.100627686647308,-0.0672528102276868,0.0836010322919685,-2.12655414111144e-09,-1.54637587456918e-08,-0.00552350240372115 +8.382,5.20272392333897e-09,-8.08477278527175e-09,-2.41658510910514e-09,-3.54911176836392e-10,-1.42235823813452e-09,-0.0799999960659707,-0.000121491098000069,-8.43274170370899e-05,0.000105040180496772,1.03823200037223e-11,2.78858533486778e-10,6.67965441986181e-06,5.56648368914647e-09,-2.13045726904406e-09,-8.92298388002133e-10,4.41487124634626e-10,-5.68555619284367e-10,1.80844922376868e-09 +8.384,-2.18107444827174e-06,-1.50849883530368e-06,1.82210548271139e-06,-3.54931507795531e-10,-1.4220978283852e-09,-0.0800003644067629,-2.02204512899098e-09,9.86814796543837e-10,4.17720979334207e-10,1.41275879883504e-11,2.95853619380794e-10,-5.62581231599947e-10,0.0492371531305768,0.0342612609415774,-0.0412532552890131,1.72670037990003e-09,6.6288120825749e-09,0.000435446819227372 +8.386,5.194635742823e-09,-8.08082552608558e-09,-2.4149142251878e-09,-3.54854666484439e-10,-1.421174823657e-09,-0.079999996068221,7.54575145223034e-05,5.27176267292653e-05,-5.99728406593354e-05,1.72891215233248e-11,3.05373781817087e-10,8.42144169677187e-06,6.05208428922668e-09,-2.44552642014928e-09,-2.15658654124503e-09,8.29414661953162e-10,-8.02743288475605e-10,1.81018394711973e-09 +8.388,-1.87924439018256e-06,-1.29762832838665e-06,1.58221412007407e-06,-3.54862351309437e-10,-1.42087633325794e-09,-0.0800003307209961,-1.99783679183407e-09,9.77032690863241e-10,4.09094633169228e-10,1.74452466361627e-11,2.92642646226892e-10,-5.55340495811468e-10,-0.0257335924868797,-0.0175115345882885,0.0209995736089912,3.1029866176542e-10,-4.65859989473675e-09,-0.000674043476416179 +8.39,5.18664439565567e-09,-8.07691739532213e-09,-2.41327784665513e-09,-3.54784885497894e-10,-1.42000425307209e-09,-0.0799999960704424,-2.7476855425204e-05,-1.73285116238811e-05,2.40254537766201e-05,1.85303161703863e-11,2.86739382238142e-10,5.72526779110746e-06,4.68514929543549e-09,-2.28051084960652e-09,-2.48206403347161e-09,7.92985468956072e-10,-8.27896778910113e-10,1.37043154602198e-09 +8.392,-1.98915181188336e-06,-1.36694237488216e-06,1.67831593518054e-06,-3.54788230044756e-10,-1.41972937572898e-09,-0.0800003078199249,-1.97909619465233e-09,9.67910647464816e-10,3.99166377035342e-10,2.06171885119866e-11,2.89331059111252e-10,-5.49858769627381e-10,0.0718559311341227,0.0473647079617199,-0.0596117766114088,3.41328527941604e-09,6.12791067885486e-09,0.0180526785169924 +8.394,5.17872801087706e-09,-8.07304575273227e-09,-2.41168118114699e-09,-3.54702416743846e-10,-1.41884692883565e-09,-0.0799999960726418,0.000259946869111255,0.000172130320222978,-0.000214421652668989,3.2183457288049e-11,3.11251024953559e-10,7.79359818590692e-05,3.79153224658575e-08,-1.87280746466414e-08,-1.22479066819143e-08,2.66973942952771e-09,-5.82650247493579e-09,1.13815207258813e-08 +8.396,-9.49364335437993e-07,-6.78421093990023e-07,8.20629324504302e-07,-3.54659496215604e-10,-1.41848437162917e-09,-0.0799999960759975,-1.82743490478885e-09,8.92998348878225e-10,3.50174750307669e-10,3.1296146230101e-11,2.66025049211501e-10,-5.04332686723841e-10,-0.170259671854699,-0.110319847411146,0.139005917375341,-2.98892854910512e-09,-2.35497385480938e-08,-0.0437963242521179 +8.398,5.1714182712579e-09,-8.06947375933675e-09,-2.41028048214575e-09,-3.54577232158926e-10,-1.4177828286388e-09,-0.0799999960746592,-0.000421091818307467,-0.000269149069421557,0.000341602016832313,2.02277430916298e-11,2.17052070761194e-10,-9.72493151493832e-05,-3.68498092281175e-08,1.7019155182271e-08,7.01771540180648e-09,-1.26179448834182e-09,4.83510800838574e-09,-1.15437173708291e-08 +8.4,-2.63373160866768e-06,-1.75501737167613e-06,2.1870373918334e-06,-3.54578585243237e-10,-1.41761616334612e-09,-0.0800003850732581,-1.9748341417013e-09,9.61074969607302e-10,3.78245611914892e-10,2.62489682767343e-11,2.85365481245041e-10,-5.50507556207152e-10,0.165393593725442,0.105940075494449,-0.136193286215209,2.09359439506904e-09,2.6632342164928e-08,0.02793182513234 +8.402,5.16351893469109e-09,-8.06562945945832e-09,-2.40876749969809e-09,-3.54472236285819e-10,-1.41664136671382e-09,-0.0799999960768612,0.00024048255659452,0.000154611232556379,-0.000203171128028706,2.86021206719087e-11,3.23581439420941e-10,1.44779853800141e-05,-4.69513750816882e-09,4.86806775552803e-10,2.27433089726533e-09,-1.22081164621603e-09,5.07840297623996e-10,-7.65013052967068e-10 +8.404,-1.6718013822897e-06,-1.13657244145068e-06,1.37435287971867e-06,-3.54464176760549e-10,-1.41632183758844e-09,-0.0800003271613166,-1.99361469173398e-09,9.63022196709513e-10,3.87342935503952e-10,2.13657216918707e-11,2.87396842435537e-10,-5.5356760841902e-10,-0.088073172711836,-0.0580067859516336,0.0739086174459042,-2.67906356821227e-09,-1.31231830957674e-08,-0.00319876843242543 +8.406,5.15554447592416e-09,-8.06177737067149e-09,-2.40721812795608e-09,-3.54386773399051e-10,-1.41549177934408e-09,-0.0799999960790755,-0.000111810134252785,-7.74159112501298e-05,9.24633417548786e-05,1.78858663990608e-11,2.71088707037877e-10,1.68291165031383e-06,8.86348828534257e-10,-8.51749226704809e-10,8.76143775585736e-10,-4.22405166400445e-10,2.0816681711724e-11,6.10622663543981e-10 +8.408,-2.11904191930079e-06,-1.44623608645117e-06,1.74420624673814e-06,-3.54392633294953e-10,-1.41523748276029e-09,-0.08000032042967,-1.99006929641984e-09,9.59615199802694e-10,3.90847510606295e-10,1.96761010262691e-11,2.87480109162384e-10,-5.51125117764844e-10,0.0436144400369652,0.0299544127909027,-0.0354020966060227,7.37474317722489e-10,6.31222504817909e-09,0.000682833003681431 +8.41,5.14758419873848e-09,-8.05793890987228e-09,-2.40565473791365e-09,-3.54308068994946e-10,-1.41434185890743e-09,-0.07999999608128,6.26476258950569e-05,4.2401739913468e-05,-4.91450446691968e-05,2.08357636699505e-11,2.96337607230591e-10,4.41424366503926e-06,2.9628805919134e-09,-1.22384741230138e-09,5.84384970969492e-11,-5.85469173142058e-12,-1.74339709335624e-10,9.91394466520518e-10 +8.412,-1.86845141572048e-06,-1.27662912679724e-06,1.54762606806129e-06,-3.54309290240273e-10,-1.41405213233137e-09,-0.0800003027726953,-1.97821777405218e-09,9.54719810153487e-10,3.91081264594682e-10,1.96526822593434e-11,2.86782750325041e-10,-5.47159539898761e-10,-0.022308392991393,-0.0149707999050934,0.0183877417983695,-3.74049749505269e-10,-3.56832619005218e-09,-0.000260101103849009 +8.414,5.13967132764227e-09,-8.05412003063166e-09,-2.40409041285528e-09,-3.54229458265909e-10,-1.41319472790613e-09,-0.0799999960834686,-2.65859460705052e-05,-1.74814597068992e-05,2.44059225242731e-05,1.93395646719296e-11,2.82064302470384e-10,3.37383924964333e-06,2.99935044271007e-09,-1.20476545417159e-09,-3.1528599180213e-10,1.29236898958061e-10,-2.65412691856237e-10,9.48026379681865e-10 +8.416,-1.97479520000249e-06,-1.34655496562483e-06,1.64524975815837e-06,-3.54231931981586e-10,-1.41292387512149e-09,-0.0800002892773383,-1.96622037228134e-09,9.49900748336801e-10,3.89820120627474e-10,2.01696298551756e-11,2.85721099557617e-10,-5.43367434380034e-10,0.0709244007197775,0.046471251293043,-0.058202248063707,2.7883511471976e-09,6.42801784023062e-09,0.017480963740778 +8.418,5.13180644615314e-09,-8.05032042763831e-09,-2.40253113237276e-09,-3.54148779746488e-10,-1.4120518435079e-09,-0.0799999960856421,0.0002571116568087,0.000168403545465335,-0.000208403069730632,3.04929692607237e-11,3.07776373831315e-10,7.32976942127786e-05,3.87640765838593e-08,-2.05293681359121e-08,-1.11715107650326e-08,2.03569799906147e-09,-5.89068724351782e-09,-0.0283410698286433 +8.42,-9.46348572767805e-07,-6.72940783763565e-07,8.11637479235933e-07,-3.54109960104543e-10,-1.41169276962616e-09,-0.0799999960865615,-1.81116406594592e-09,8.67783275793161e-10,3.45134077567349e-10,2.83124218514206e-11,2.62158350583548e-10,-0.000113364822681995,-0.170059970446988,-0.109622044968166,0.138212742103374,-3.25434124093321e-09,-2.26342382336814e-08,-0.018324555040032 +8.422,5.12456178988936e-09,-8.04684929453514e-09,-2.4011505960625e-09,-3.54035530059083e-10,-1.41100321010557e-09,-0.0800004495449328,-0.000423128224979176,-0.000270084634407282,0.000344447898682803,1.74756042969923e-11,2.17239420896599e-10,-5.25947341234514e-10,-3.94976342214543e-08,2.12969832741375e-08,9.34972585464806e-09,-1.37368415253944e-09,5.81002260191661e-09,0.0369113697471722 +8.424,-2.63886147268432e-06,-1.75327932139258e-06,2.18942907396699e-06,-3.54040057687355e-10,-1.41082381194257e-09,-0.0799999960886653,-1.96915460283172e-09,9.52971208889702e-10,3.82532980985937e-10,2.28176852412634e-11,2.85398440991212e-10,3.42806563066771e-05,0.16605613535527,0.106027598768046,-0.136608661603087,1.79543879763365e-09,2.64679771155551e-08,-7.04210995066788e-09 +8.426,5.11668517147804e-09,-8.04303740969958e-09,-2.39962046413855e-09,-3.53944259318117e-10,-1.4098616163416e-09,-0.0800003124223076,0.000241096316441829,0.000154025760664857,-0.000201986747729486,2.46573594875261e-11,3.23111329358808e-10,-5.54115781037183e-10,-4.20208301748265e-09,8.19656842398768e-11,2.67841304690759e-09,-1.35763796038604e-09,5.1824863844795e-10,-0.00917384026122781 +8.428,-1.67447620691668e-06,-1.13717627873294e-06,1.38148208304878e-06,-3.53941428249405e-10,-1.40953136662514e-09,-0.0799999960908817,-1.98596293490166e-09,9.53299071626662e-10,3.93246633173571e-10,1.73871333997175e-11,2.87471435545004e-10,-2.41470473824639e-06,-0.0232024198019369,-0.015538337975657,0.0214679627810349,-2.26381413612286e-10,-7.56773116391462e-09,9.60169443947222e-09 +8.43,5.10874131973843e-09,-8.03922421341308e-09,-2.39804747760586e-09,-3.53874710784519e-10,-1.40871173059942e-09,-0.0800003220811265,0.000148286637234092,9.18724087622354e-05,-0.000116114896605355,2.37518338330771e-11,2.92840404703153e-10,-5.15709003279298e-10,3.60203268039539e-08,-1.77136950941701e-08,-9.03519880444959e-09,1.63389267393336e-09,-5.16644019235867e-09,-0.00682545327548676 +8.432,-1.08132965798038e-06,-7.69686643684042e-07,9.17022496627409e-07,-3.53846420914072e-10,-1.40836000500633e-09,-0.0799999960929446,-1.84188162768586e-09,8.82444291249989e-10,3.57105837955776e-10,2.39227040954502e-11,2.66805674775572e-10,-2.97165178401904e-05,-0.131901579465083,-0.0832425223859499,0.106050058353315,-2.51686692320729e-09,-1.64711994043961e-08,-4.07399808333064e-09 +8.434,5.10137379322768e-09,-8.03569443624808e-09,-2.39661905425403e-09,-3.53779019968137e-10,-1.40764450790032e-09,-0.0800004409471979,-0.000379319680626418,-0.000241097680781676,0.000308085336808046,1.36843661402446e-11,2.26955607085547e-10,-5.32004995612626e-10,-3.62625104642329e-08,1.87575649458393e-08,8.8483907701303e-09,-1.35460219430103e-09,5.35032088081226e-09,0.0141953778445487 +8.436,-2.59860838048589e-06,-1.73407736681064e-06,2.14936384385946e-06,-3.53791683449511e-10,-1.40745218257798e-09,-0.0799999960950726,-1.98693166954278e-09,9.57474551033338e-10,3.92499401036294e-10,1.85042953182466e-11,2.88206958298818e-10,2.70649935379982e-05,0.149670064410608,0.0954211688247496,-0.122342396730214,1.72236357121085e-09,2.38177533251668e-08,-5.97091820431347e-09 +8.438,5.09342606654951e-09,-8.03186453804394e-09,-2.39504905664989e-09,-3.53705002786864e-10,-1.40649168006712e-09,-0.0800003326872237,0.000219360577015948,0.000140586994517281,-0.000181284250112756,2.05738204250872e-11,3.22226620386203e-10,-5.55888668429877e-10,-1.97540280574186e-09,-1.15792792021465e-10,2.30165279196999e-09,-9.84021891748061e-10,3.95516952522794e-10,-0.00649353533270646 +8.44,-1.72116607242219e-06,-1.17172938874158e-06,1.42422684340851e-06,-3.53709388167811e-10,-1.40616327609644e-09,-0.0799999960972961,-1.99483328076574e-09,9.57011379865252e-10,4.01706012204173e-10,1.45682077512548e-11,2.89789026108909e-10,1.09085220717521e-06,-0.0795431703468932,-0.0523201099786271,0.0665617693161383,-2.13024042850133e-09,-1.18897947043781e-08,2.42167397252479e-09 +8.442,5.08544673342645e-09,-8.02803649252448e-09,-2.39344223260107e-09,-3.53646729955859e-10,-1.40533252396269e-09,-0.0800003283238149,-9.88121043715897e-05,-6.86934453972047e-05,8.49628271517675e-05,1.20528587110828e-11,2.74667441568696e-10,-5.46201972539779e-10,2.62715738920337e-09,-8.24644172392303e-10,3.68737158862236e-10,-3.85975973404755e-11,-1.49186218933969e-10,0.00116710529348531 +8.444,-2.11641448990868e-06,-1.44650317033049e-06,1.76407815201569e-06,-3.53661176732967e-10,-1.40506460633016e-09,-0.0799999960994809,-1.98432465120893e-09,9.53712803175682e-10,4.03180960839622e-10,1.44138173618929e-11,2.89192281233173e-10,5.759273381118e-06,0.0394340035570394,0.0272064334769646,-0.0327631429380167,1.06577073555482e-09,5.54157414403962e-09,4.2153780460182e-10 +8.446,5.07750943482162e-09,-8.02422164131178e-09,-2.39182950875771e-09,-3.53589074686411e-10,-1.40417575483776e-09,-0.0800003052867214,5.89239098565506e-05,4.01322885106417e-05,-4.6089744600285e-05,1.63159416533017e-11,2.96833738144852e-10,-5.44515821321372e-10,4.08404050595504e-09,-1.42681005899124e-09,-9.24173931826849e-10,4.36282954208263e-10,-4.35415592470278e-10,-0.000241140733249543 +8.448,-1.88071885048251e-06,-1.28597401628794e-06,1.57971917361457e-06,-3.53595912966354e-10,-1.40387727137758e-09,-0.079999996101659,-1.96798848918511e-09,9.48005562939718e-10,3.99484265112315e-10,1.61589491787257e-11,2.87450618863292e-10,4.79471044811994e-06,-0.020301707015024,-0.0135868193434341,0.0166332934938564,1.05384451165614e-10,-3.5284275501376e-09,1.57859836313925e-09 +8.45,5.06963748086488e-09,-8.02042961906002e-09,-2.39023157169727e-09,-3.53524438889696e-10,-1.4030259523623e-09,-0.0800002861078796,-2.22829182035367e-05,-1.42149888630887e-05,2.04434293751334e-05,1.67374794579641e-11,2.82720027944303e-10,-5.38201427868816e-10,3.62557206500916e-09,-1.48080332728561e-09,-1.4684434224584e-09,5.39282160592375e-10,-5.48606299309456e-10,-0.000318948415422199 +8.452,-1.96985052329664e-06,-1.34283397174029e-06,1.6614928911151e-06,-3.53528963048522e-10,-1.40274639126581e-09,-0.0799999961038118,-1.95348620092507e-09,9.42082349630576e-10,3.93610491422482e-10,1.8316077821095e-11,2.85256193666055e-10,3.51891678643128e-06,0.0097616192878231,0.00661595615249572,-0.00860611380532042,7.21644966006191e-10,1.00267016911438e-09,6.57460197395068e-10 +8.454,5.06182353606117e-09,-8.0166612896615e-09,-2.38865712973158e-09,-3.53451174578412e-10,-1.40188492758764e-09,-0.0800002720322124,1.67635589477688e-05,1.2248835746903e-05,-1.39810258461598e-05,1.96240593219898e-11,2.86730708620762e-10,-5.35571587079234e-10,2.5401637171729e-09,-1.31904036294158e-09,-1.53642289858585e-09,4.55148072011548e-10,-4.66206934137192e-10,-0.000289050506619932 +8.456,-1.90279628750557e-06,-1.29383862875268e-06,1.60556878773047e-06,-3.53450466811234e-10,-1.40159946843132e-09,-0.0799999961059541,-1.94332554605638e-09,9.3680618817881e-10,3.87464799828139e-10,2.0136670109141e-11,2.83391365929506e-10,2.36271475995168e-06,-0.00534217376275147,-0.00363158186595574,0.00423297200253881,2.8037468180251e-10,-1.22731685928515e-09,7.6588041470304e-10 +8.458,5.05405023387695e-09,-8.01291406490878e-09,-2.38710727053226e-09,-3.53370627897975e-10,-1.40075136212392e-09,-0.0800002625813534,-4.60513610323476e-06,-2.27749171691834e-06,2.95086216399355e-06,2.07455580491997e-11,2.81821441183622e-10,-5.32508065420423e-10,1.5698298780685e-09,-1.15771107977979e-09,-1.31492039479012e-09,3.24176449573094e-10,-4.27175655959198e-10,-0.000196191852694328 +8.46,-1.92121683191852e-06,-1.30294859562036e-06,1.61737223638644e-06,-3.53367484579037e-10,-1.40047218266659e-09,-0.0799999961080841,-1.93704622654411e-09,9.3217534385969e-10,3.82205118248977e-10,2.14333759074338e-11,2.81682663305669e-10,1.57794734917411e-06,0.00232561215017567,0.00153476012606209,-0.00205393015030772,2.99022959173871e-10,-1.47451495145267e-11,2.92300905643032e-10 +8.462,5.04630204897077e-09,-8.00918536353334e-09,-2.38557845005927e-09,-3.53284894394346e-10,-1.3996246314707e-09,-0.080000256269564,4.69731249746691e-06,3.86154878732934e-06,-5.26485843723642e-06,2.19416498858951e-11,2.81762460585564e-10,-5.31338861797851e-10,2.85785663797146e-08,-1.34313133531879e-08,-7.40130613047393e-09,1.31752248000467e-09,-4.19716345012681e-09,0.0158654129694992 +8.464,-1.90242758192865e-06,-1.28750240047104e-06,1.5963128026375e-06,-3.53279717979493e-10,-1.39934513282425e-09,-0.0799999961102095,-1.82273196102526e-09,8.78450090446944e-10,3.52599893727085e-10,2.67034658274519e-11,2.64894009505164e-10,6.5039599227164e-05,-0.0280849196755258,-0.0162267988239006,0.0241795389344502,1.38886298295424e-09,-1.01559385901084e-08,-0.0258426928441817 +8.466,5.03901112112667e-09,-8.00567156317156e-09,-2.38416805048436e-09,-3.53178080531036e-10,-1.39856505543268e-09,-0.0799999961111671,-0.000107642366204624,-6.1045646508266e-05,9.14532973005536e-05,2.74971018177114e-11,2.41138706225135e-10,-0.000103371302715577,-2.17161493863356e-08,9.83956839607522e-09,1.76172011003216e-09,2.93601948306045e-10,2.70963806944576e-09,-0.0162600313543434 +8.468,-2.3329970467471e-06,-1.53168498650408e-06,1.96212599183967e-06,-3.53169729572222e-10,-1.39838057799935e-09,-0.0800004095954203,-1.90959655857059e-09,9.17808364031241e-10,3.59646774167212e-10,2.7877873620676e-11,2.75732561782945e-10,-5.26190202520917e-10,0.0607650250270881,0.0362744158545313,-0.0532258598416352,-7.00394603425475e-11,1.52534235242607e-08,0.0335691480229516 +8.47,5.03137273489239e-09,-8.00200032971543e-09,-2.38272946338769e-09,-3.53066569036553e-10,-1.39746212518554e-09,-0.0799999961132719,0.00013541773390381,8.40520169099075e-05,-0.000121450142066058,2.72169439763411e-11,3.02152400322198e-10,3.09052893762741e-05,-1.2411268844471e-08,4.02542582610694e-09,4.45650460982532e-09,-1.76573165810719e-09,1.60765498139247e-09,-3.00280633697491e-09 +8.472,-1.79132611113192e-06,-1.19547691886449e-06,1.47632542357549e-06,-3.53060861796317e-10,-1.39717196839806e-09,-0.0800002859742628,-1.95924163394847e-09,9.33910067335667e-10,3.77472792606512e-10,2.0814946988248e-11,2.82163181708515e-10,-5.38201427868816e-10,-0.0500730942481885,-0.0328194316545473,0.043743611841946,-2.51296379538936e-09,-7.09111588895616e-09,-0.00834109472984558 +8.474,5.0235357683566e-09,-7.99826468944609e-09,-2.38121957221726e-09,-3.529833092486e-10,-1.39633347245871e-09,-0.0799999961154247,-6.48746430889223e-05,-4.72257097082674e-05,5.35243053017062e-05,1.71650887947848e-11,2.73787936766376e-10,-2.45908954310454e-06,-1.53308897694841e-09,1.66967134562712e-11,2.20580931992127e-09,-9.3718435789626e-10,4.28910379435174e-10,2.42861286636672e-11 +8.476,-2.0508246834877e-06,-1.38437975769762e-06,1.69042264478239e-06,-3.52992201441138e-10,-1.39607681665099e-09,-0.080000295810621,-1.96537398985627e-09,9.33976854189492e-10,3.862960298862e-10,1.70662095566617e-11,2.83878823226256e-10,-5.38104283354161e-10,0.0852191366181343,0.0564171812249168,-0.0687069184741661,2.39196683293995e-09,8.88655468659255e-09,0.0193455305707134 +8.478,5.01567427239717e-09,-7.99452878202933e-09,-2.37967438809772e-09,-3.52915044410373e-10,-1.39519795716581e-09,-0.0799999961175771,0.000276001903383577,0.000178443015191375,-0.000221303368594928,2.67329561265435e-11,3.09334155512742e-10,7.49230327397404e-05,3.82860653987558e-08,-1.98038200421901e-08,-9.70707889069936e-09,1.65123990869579e-09,-5.57323284744572e-09,-0.0279843847704179 +8.48,-9.46817069953513e-07,-6.70607696932196e-07,8.05209170402776e-07,-3.52885269616632e-10,-1.39483948002894e-09,-0.0799999961184901,-1.81222972826126e-09,8.5476157402074e-10,3.47467714323407e-10,2.36711691914441e-11,2.61585891836475e-10,-0.000111938077185943,-0.176528363722137,-0.112926275568237,0.143387970295436,-3.49264887844557e-09,-2.35154777594778e-08,-0.0187308880871026 +8.482,5.00842535348413e-09,-7.99110973573325e-09,-2.37828451724043e-09,-3.52820359733608e-10,-1.39415161359846e-09,-0.0800004438698858,-0.000430111551504891,-0.000273262087081521,0.000352248512586754,1.27623606127628e-11,2.15272244474842e-10,-5.19608661653294e-10,-3.74494543446666e-08,2.06711817800746e-08,9.52720975024116e-09,-1.25940924356151e-09,5.76361874890261e-09,0.037034548849503 +8.484,-2.66726327597289e-06,-1.76365604525816e-06,2.21420322074964e-06,-3.52834220174181e-10,-1.39397839105104e-09,-0.0799999961205685,-1.96202754563991e-09,9.37446301141029e-10,3.85576553324367e-10,1.86335322171987e-11,2.84640366832083e-10,3.62001182120532e-05,0.169488840850253,0.107806049119412,-0.139476464808677,2.06648934075691e-09,2.692464307063e-08,-6.35169000728768e-09 +8.486,5.00057724330157e-09,-7.98735995052868e-09,-2.37674221102713e-09,-3.52745825604739e-10,-1.39301305213113e-09,-0.080000299069413,0.000247843811896346,0.000157962109396271,-0.000205657346648141,2.10283179757932e-11,3.22970816757398e-10,-5.45015421682453e-10,2.51626383572818e-08,-1.23870098205455e-08,-3.8012128166922e-09,2.6020852141727e-11,-3.42391046067837e-09,0.00985673413462987 +8.488,-1.67588802838761e-06,-1.13180760767315e-06,1.39157383415717e-06,-3.52750106902278e-10,-1.39268650778401e-09,-0.0799999961227486,-1.86137699221079e-09,8.87898261858853e-10,3.703717020576e-10,1.87376156257655e-11,2.70944724989371e-10,7.56270547505683e-05,-0.119488021886619,-0.0758423983474645,0.10078872969381,-1.14838694109872e-09,-2.30575107618454e-08,1.3501352813585e-08 +8.49,4.99313173533272e-09,-7.98380835748125e-09,-2.3752607242189e-09,-3.52670875142236e-10,-1.39192927323117e-09,-0.079999996561194,-0.000230108275650077,-0.000145407483993554,0.000197497572127055,1.64347702113988e-11,2.30740773710026e-10,-4.91010010428119e-10,-1.85833065515603e-08,7.10087370847497e-09,2.19399151624118e-09,-5.42101086242636e-11,2.37223435339775e-09,-0.0430313188927002 +8.492,-2.59632113098823e-06,-1.71343754364756e-06,2.18156412266565e-06,-3.52684367821432e-10,-1.39176354468917e-09,-0.0799999961247126,-1.93571021841706e-09,9.16301756692762e-10,3.79147668122568e-10,1.85207751912684e-11,2.80433662402966e-10,-9.64982208202898e-05,0.110955105761512,0.070302970560766,-0.09523461694152,9.86190296094857e-10,2.20752235935733e-08,-1.34527805562576e-08 +8.494,4.98538889445906e-09,-7.98014315045448e-09,-2.37374413354641e-09,-3.52596792041471e-10,-1.39080753858156e-09,-0.0800003825540773,0.00021371214739592,0.000135804398249479,-0.000183440895638982,2.03795313957778e-11,3.1904166808431e-10,-5.44821132653144e-10,-1.09053391317306e-08,6.23242776831703e-09,4.82112180039235e-09,-1.2240642527364e-09,1.86005724711654e-09,0.0285455542276749 +8.496,-1.74147254140464e-06,-1.1702199506497e-06,1.4478005401098e-06,-3.52602849695849e-10,-1.39048737801684e-09,-0.0799999961268919,-1.97933157494398e-09,9.41231467766028e-10,3.98432155324135e-10,1.36245181803233e-11,2.87873891391431e-10,1.76839960903971e-05,-0.0773207471843018,-0.0508297567400278,0.0662824925131837,-2.47501671935046e-09,-1.13966995563011e-08,1.73645819945316e-09 +8.498,4.97747156815928e-09,-7.97637822458341e-09,-2.37215040492511e-09,-3.52542293968749e-10,-1.389656043016e-09,-0.0800003118180929,-9.5570841341253e-05,-6.75146287106095e-05,8.16890744137231e-05,1.0479464518377e-11,2.7345486985911e-10,-5.37875299855332e-10,1.71518073203715e-09,-1.08593689606572e-09,7.42678488108166e-10,-3.15936513063718e-10,-9.02056207827279e-11,-0.00341152871317344 +8.5,-2.12375590676961e-06,-1.44027846549211e-06,1.77455683776466e-06,-3.52560931837775e-10,-1.3893935585374e-09,-0.0799999961290434,-1.97247085201583e-09,9.36887720181765e-10,4.01402869276567e-10,1.23607721280686e-11,2.875130689083e-10,4.03788123770486e-06,0.0974718353509835,0.0648518123551524,-0.0802364981779696,3.21574364359129e-09,1.00635645650082e-08,7.91901266783236e-09 +8.502,4.96958168475121e-09,-7.97263067370269e-09,-2.370544793448e-09,-3.52492850880237e-10,-1.38850599074036e-09,-0.0800002956665679,0.000294316500062811,0.000191892620710087,-0.000239256918298263,2.33424390927465e-11,3.13709128119156e-10,-5.06199249183992e-10,3.89840476521288e-08,-1.83006821501518e-08,-1.06944618091376e-08,2.36356073602029e-09,-5.64522387166686e-09,-0.00753083524013386 +8.504,-9.46489906518497e-07,-6.72707982651843e-07,8.17529164571715e-07,-3.52467562081404e-10,-1.38813872202492e-09,-0.0799999961310682,-1.81653466140733e-09,8.63684991581166e-10,3.58625022040022e-10,2.18150150721487e-11,2.64932173421635e-10,-2.60854597228273e-05,-0.181583979735686,-0.116465803030999,0.149048941400908,-2.92951427005777e-09,-2.45281225886034e-08,-2.60208521390842e-09 +8.506,4.96231554610559e-09,-7.96917593373636e-09,-2.36911029335984e-09,-3.52405590819949e-10,-1.38744626204668e-09,-0.0800004000084068,-0.000432019418879851,-0.000273970591413859,0.000356938847305302,1.16243820125167e-11,2.15596637764754e-10,-5.16607590039624e-10,-3.45859273295355e-08,1.7506829319554e-08,7.14109760907418e-09,-8.1510319327442e-10,4.89842541528842e-09,0.0130332637564261 +8.508,-2.67456758203848e-06,-1.76859034830765e-06,2.2452845537934e-06,-3.52421064553354e-10,-1.38727633547386e-09,-0.0799999961331346,-1.95487837072552e-09,9.33712308859405e-10,3.87189412476328e-10,1.855460229905e-11,2.84525875082795e-10,2.60475953028944e-05,0.1708573416998,0.108746314462663,-0.142330444010864,2.59709788397364e-09,2.69020916654782e-08,-6.09061412421327e-09 +8.51,4.95449603262269e-09,-7.96544108450092e-09,-2.36756153570994e-09,-3.52331372410752e-10,-1.38630815854635e-09,-0.0800002958180256,0.000251409947919275,0.000161014666436744,-0.00021238292873809,2.20127735484101e-11,3.23205004426654e-10,-5.40970046536475e-10,-1.68882106649949e-09,-5.75928194024415e-10,1.17592567627804e-09,-7.00177762991293e-10,1.40078920685156e-10,-0.00620295731619672 +8.512,-1.66892779036149e-06,-1.12453168256074e-06,1.39575283884114e-06,-3.52333013459161e-10,-1.38598351545616e-09,-0.0799999961352985,-1.96163365499152e-09,9.31408596083308e-10,3.9189311518144e-10,1.57538912470851e-11,2.85086190765536e-10,1.23576603811029e-06,-0.0261345117366373,-0.0176579550896631,0.0239456176354524,2.129373066762e-10,-8.35572930291314e-09,9.89312798349791e-09 +8.514,4.94664949800272e-09,-7.96171545011659e-09,-2.36599396324921e-09,-3.52268356845764e-10,-1.38516781378328e-09,-0.0800002908749615,0.000146871900972737,9.03828460780994e-05,-0.00011660045819629,2.28645227751148e-11,2.89782087215006e-10,-5.01397534602488e-10,3.7095896016638e-08,-1.79454975186449e-08,-1.00709371398246e-08,1.98712574172924e-09,-5.46567999196434e-09,-0.00694547418189498 +8.516,-1.08144018647061e-06,-7.63000298248384e-07,9.29351006056026e-07,-3.5224155536806e-10,-1.3848243871073e-09,-0.0799999961373041,-1.81325007092498e-09,8.59626606008736e-10,3.51609366622146e-10,2.37023942140012e-11,2.63223470797681e-10,-2.65461306894666e-05,-0.130473238022945,-0.0812471483914437,0.105829835179634,-2.15712864237668e-09,-1.67275047979716e-08,-3.77128883677273e-09 +8.518,4.93939649771902e-09,-7.95827694369255e-09,-2.36458752578272e-09,-3.52173547268908e-10,-1.38411491990009e-09,-0.0800003970594842,-0.000375021051119218,-0.000234605747487784,0.000306718882522385,1.42360082056052e-11,2.22872068023097e-10,-5.16482689949584e-10,-3.51226887202955e-08,1.74942525744564e-08,7.61153293175795e-09,-1.03823200036972e-09,5.00901403691335e-09,0.0131313340548389 +8.52,-2.58152439094731e-06,-1.70142328819942e-06,2.15622653614543e-06,-3.52184611335238e-10,-1.38393289883521e-09,-0.07999999613937,-1.95374082580615e-09,9.29603616306554e-10,3.82055498349174e-10,1.95494662125228e-11,2.83259526945332e-10,2.59792055298831e-05,0.148201828444766,0.0931946435825618,-0.122390002391577,1.92792830311171e-09,2.35198145681325e-08,-5.59448320996662e-09 +8.522,4.93158153441579e-09,-7.95455852922733e-09,-2.36305930378933e-09,-3.52095349404058e-10,-1.38298188179231e-09,-0.0800002931426621,0.000217786262659781,0.000138172826842422,-0.000182841127043869,2.19477214180512e-11,3.16951326295617e-10,-5.38860622789448e-10,-1.57736508316737e-09,-6.29270940910454e-10,1.60938970483713e-09,-8.55435514090871e-10,2.23779328400959e-10,-0.00613576305041748 +8.524,-1.7103793403079e-06,-1.14873198082954e-06,1.42486202796971e-06,-3.52096820449566e-10,-1.38266509353002e-09,-0.0799999961415254,-1.96005028613882e-09,9.27086532542911e-10,3.88493057168525e-10,1.61277241561582e-11,2.84154644258936e-10,1.43615332820495e-06,-0.0788189405526615,-0.0512081954851974,0.0665301152831086,-2.06432093641042e-09,-1.19622194094345e-08,2.43728648368813e-09 +8.526,4.92374133327124e-09,-7.95085018309716e-09,-2.36150533156065e-09,-3.52030838507433e-10,-1.38184526321528e-09,-0.0800002873980488,-9.74894995508308e-05,-6.66599550983447e-05,8.32793340885355e-05,1.36904376724105e-11,2.69102448657884e-10,-5.29111476854696e-10,2.66290895584225e-09,-1.21604115666001e-09,8.521829075737e-11,-4.72712147203789e-11,-2.20743562318099e-10,0.000988253232720111 +8.528,-2.10033733851118e-06,-1.41537180122289e-06,1.75797936432381e-06,-3.52042058698876e-10,-1.38158868373539e-09,-0.0799999961436419,-1.94939865031545e-09,9.22222367916272e-10,3.88833930331554e-10,1.59386392972767e-11,2.83271670009664e-10,5.38916625908496e-06,0.038854564203862,0.0264124353794501,-0.0323439559762998,9.9096078565197e-10,5.41710773460777e-09,4.33680868994301e-10 +8.53,4.91594373866998e-09,-7.94716129362549e-09,-2.35994999583933e-09,-3.51967083950244e-10,-1.38071217653524e-09,-0.0800002658413838,5.79287572645999e-05,3.8989786419444e-05,-4.60964898166496e-05,1.76542808150179e-11,2.90770879596312e-10,-5.27376753378719e-10,3.94655011817136e-09,-1.62955586534774e-09,-8.64109131513913e-10,3.21140683488365e-10,-4.50160742047322e-10,-0.000237218888630143 +8.532,-1.86862230945281e-06,-1.25941265554513e-06,1.57359340505724e-06,-3.51971441575616e-10,-1.38042560021701e-09,-0.0799999961457514,-1.93361244984277e-09,9.15704144454881e-10,3.85377493805499e-10,1.722320203123e-11,2.81471027041475e-10,4.44029070456449e-06,-0.0200217651118063,-0.0132302357944985,0.0165582982557478,-3.9248118643967e-11,-3.46684486673887e-09,1.55691431968885e-09 +8.534,4.9082092888706e-09,-7.94349847704767e-09,-2.35840848586411e-09,-3.51898191142119e-10,-1.37958629242707e-09,-0.0800002480802209,-2.2158303182652e-05,-1.39311567585677e-05,2.01367032063639e-05,1.7497288340442e-11,2.76903500129352e-10,-5.21149096099962e-10,3.44402241079497e-09,-1.5903077465004e-09,-1.18329825100816e-09,3.78820239068431e-10,-4.8962570106332e-10,-0.0003116143419686 +8.536,-1.9572555221834e-06,-1.3151372825794e-06,1.65414021788268e-06,-3.51901452422254e-10,-1.37931798621649e-09,-0.079999996147836,-1.91983636019959e-09,9.0934291346888e-10,3.80644300801467e-10,1.87384829875035e-11,2.79512524237222e-10,3.19383333669023e-06,0.00958449284315634,0.00638515597686807,-0.00839703039707524,5.4275160754418e-10,1.0117774673325e-09,6.77409517426636e-10 +8.538,4.90052994342981e-09,-7.9398611053938e-09,-2.3568859086609e-09,-3.51823237210169e-10,-1.37846824233012e-09,-0.0800002353048876,1.61796681899691e-05,1.16094671489017e-05,-1.34514183819334e-05,1.96682947706185e-11,2.80950609998682e-10,-5.18439458030255e-10,2.36567493025416e-09,-1.35612007734457e-09,-1.13960490349926e-09,2.79941000935694e-10,-4.03323208164512e-10,-0.000274954013550149 +8.54,-1.89253684942351e-06,-1.26869941398378e-06,1.60033454435493e-06,-3.51822779243172e-10,-1.37819418377649e-09,-0.0799999961499098,-1.91037366047857e-09,9.039184331595e-10,3.76085881187468e-10,1.98582469912467e-11,2.77899231404563e-10,2.09401728248927e-06,-0.00523056416973616,-0.00351806052952629,0.00419450594472468,1.19262238975616e-10,-1.11412615241516e-09,6.98226199023279e-10 +8.542,4.89288844878789e-09,-7.93624543166116e-09,-2.35538156513615e-09,-3.51743804222204e-10,-1.3773566454045e-09,-0.0800002269288185,-4.74258848897321e-06,-2.46277496920188e-06,3.32660539696351e-06,2.01453437265209e-11,2.76494105389022e-10,-5.15646553234163e-10,1.41256635295026e-09,-1.09656207725209e-09,-8.94249951866233e-10,1.61329283265879e-10,-3.30898503042651e-10,-0.000182656545270928 +8.544,-1.9115072033794e-06,-1.27855051386058e-06,1.61364096594278e-06,-3.51742197868266e-10,-1.37708820735494e-09,-0.0799999961519723,-1.90472339506677e-09,8.99532184850492e-10,3.72508881380004e-10,2.05035641243101e-11,2.76575637392393e-10,1.36339110140564e-06,0.00229329589115952,0.00148723931997876,-0.00201435289195379,1.49836740237529e-10,7.89299181569663e-11,3.24393290007724e-10 +8.546,4.88526955520763e-09,-7.93264730292176e-09,-2.35389152961063e-09,-3.51661789965707e-10,-1.37625034285493e-09,-0.0800002214752541,4.43059507566386e-06,3.48618231071251e-06,-4.73080617085075e-06,2.07446906874709e-11,2.7680982506165e-10,-5.14348980074132e-10,8.18220274731726e-10,-8.55652354625226e-10,-6.38269818983439e-10,5.03069808010396e-11,-2.30718222335572e-10,-0.000107851180243662 +8.548,-1.89378482307674e-06,-1.26460578461773e-06,1.59471774125938e-06,-3.51659219105516e-10,-1.37598096805469e-09,-0.0799999961540297,-1.90145051396784e-09,8.96109575431992e-10,3.6995580210407e-10,2.07047920475143e-11,2.75652764503051e-10,9.31986380431038e-07,-0.00138874436107155,-0.000948052572861398,0.00120012000727796,-1.9298798670238e-11,-3.94215909915649e-10,2.98372437867937e-10 +8.55,4.87766375315175e-09,-7.92906286462003e-09,-2.35241170640221e-09,-3.51578970797517e-10,-1.37514773179692e-09,-0.0800002177473085,-1.12438236862422e-06,-3.06027980734347e-07,6.96738582627109e-08,2.066749549279e-11,2.75232961421986e-10,-5.1315549032266e-10,5.27654092083407e-10,-7.04948252450762e-10,-3.56919355141231e-10,-2.92734586548161e-11,-1.53089346724377e-10,-6.54660544523675e-05 +8.552,-1.89828235255124e-06,-1.26582989654067e-06,1.59499643669243e-06,-3.51576549123545e-10,-1.374880036209e-09,-0.0799999961560824,-1.89933989759951e-09,8.93289782422189e-10,3.68528124683505e-10,2.0587698212895e-11,2.75040407116153e-10,6.70122162621596e-07,0.000541417029346342,0.000329706630920705,-0.000368638618328873,-5.03069808056101e-11,-5.89805982137461e-11,2.43728648431663e-10 +8.554,4.87006639356136e-09,-7.92548970549034e-09,-2.35093759390348e-09,-3.51496620004665e-10,-1.37404757016846e-09,-0.0800002150668199,1.04128574876091e-06,1.01279854294833e-06,-1.40488061505262e-06,2.04662675695675e-11,2.74997039029132e-10,-5.12180575728933e-10,4.16374291815866e-10,-5.53810469705462e-10,-1.43439947419797e-10,-7.63278329429629e-11,-9.06393016197708e-11,-4.39622904052541e-05 +8.556,-1.89411720955619e-06,-1.26177870236888e-06,1.58937691423222e-06,-3.51494684053266e-10,-1.37378004805289e-09,-0.0799999961581311,-1.89767440043225e-09,8.91074540543367e-10,3.67954364893826e-10,2.02823868811231e-11,2.74677849909674e-10,4.94273001000521e-07,-0.000363419575005315,-0.000269497794740061,0.000399670622335259,-1.01264482907896e-10,-1.26634813715806e-10,2.16840434440282e-10 +8.558,4.86247569595963e-09,-7.92192540732817e-09,-2.3494657764439e-09,-3.51415490457141e-10,-1.37294885876882e-09,-0.0800002130897279,-4.12392551260188e-07,-6.51926360117977e-08,1.9380187428824e-07,2.0061209637936e-11,2.74490499774268e-10,-5.11313213991172e-10,3.69550310491725e-10,-4.47775497236614e-10,4.4343868854662e-11,-1.12757025938517e-10,-5.33427468862927e-11,-3.0957921122461e-05 +8.56,-1.89576677976123e-06,-1.26203947291292e-06,1.59015212172937e-06,-3.51414439214714e-10,-1.37268208605379e-09,-0.0799999961601763,-1.89619619919028e-09,8.8928343855442e-10,3.68131740369245e-10,1.9831358777369e-11,2.74464478922129e-10,3.70441316510691e-07,0.000138551903972211,6.48474800333536e-05,-3.93731913392401e-05,-1.19695919842427e-10,-1.08420217248562e-11,2.01227923213358e-10 +8.562,4.85489091116287e-09,-7.91836827357395e-09,-2.34799324948243e-09,-3.51336165022031e-10,-1.37185100085313e-09,-0.0800002116079626,1.41815064628596e-07,1.94197284121588e-07,3.63091089312968e-08,1.95824259585663e-11,2.74447131687369e-10,-5.10508302298319e-10,3.54940686427895e-10,-3.5865407875686e-10,1.45283091072154e-10,-1.24032728534515e-10,-8.67361768464935e-13,-1.90683788204118e-05 +8.564,-1.89519951950272e-06,-1.26126268377644e-06,1.5902973581651e-06,-3.5133610951088e-10,-1.37158429752704e-09,-0.0799999961622184,-1.89477643644457e-09,8.87848822239393e-10,3.68712872733533e-10,1.9335227863231e-11,2.74461009475055e-10,2.94167801229052e-07,-7.89870198869555e-05,-7.08506768878744e-05,0.000115174653126321,-1.22731685925331e-10,-1.25767452008277e-11,1.70002900645696e-10 +8.566,4.84731180541709e-09,-7.91481687828499e-09,-2.34651839799149e-09,-3.51258824110579e-10,-1.37075315681523e-09,-0.0800002104312914,-1.74133014919331e-07,-8.92054234300042e-08,4.97007721436737e-07,1.90914992148649e-11,2.74396824706566e-10,-5.09828290695736e-10,3.43583668250384e-10,-2.99022959072997e-10,1.90602741963931e-10,-1.20780122012765e-10,3.0476435693754e-20,-7.31806108763781e-06 +8.568,-1.8958960515624e-06,-1.26161950547016e-06,1.59228538905085e-06,-3.51259743514021e-10,-1.37048671022821e-09,-0.0799999961642577,-1.89340210177157e-09,8.86652730403101e-10,3.69475283701389e-10,1.885210737518e-11,2.74461009475177e-10,2.64895556878504e-07,5.28317965276653e-05,2.67348124975042e-05,-2.20484052023354e-05,-1.18828558106504e-10,-8.6736176845201e-13,1.87350135462048e-10 +8.57,4.83973819701e-09,-7.91127026736338e-09,-2.34504049685669e-09,-3.51183415681078e-10,-1.36965531277733e-09,-0.0800002093717092,3.71941711913065e-08,1.7733826560001e-08,4.08814100627405e-07,1.86161849824389e-11,2.74393355259492e-10,-5.09078890153888e-10,3.49858488533799e-10,-2.67147415300365e-10,1.84422789539749e-10,-1.06468653338053e-10,-2.77555756156326e-11,2.67649444274316e-06 +8.572,-1.89574727487763e-06,-1.26154857016392e-06,1.59392064545336e-06,-3.51185278774091e-10,-1.36938913680718e-09,-0.079999996166294,-1.89200266781743e-09,8.85584140741899e-10,3.70212974859548e-10,1.84262327618277e-11,2.74349987172714e-10,2.7560153464948e-07,-1.30732237372444e-06,1.23016831096947e-06,2.58219845250279e-06,-8.78203759692781e-11,-2.42861286332274e-11,1.7867651796915e-10 +8.574,4.83217018633873e-09,-7.90772793080041e-09,-2.34355964495725e-09,-3.51109710750031e-10,-1.36855791282864e-09,-0.080000208269303,3.19648816964093e-08,2.26544998038783e-08,4.19142894437415e-07,1.82649034785618e-11,2.74296210744959e-10,-5.08364184082011e-10,3.61730502322776e-10,-2.35271871429406e-10,1.19479079407929e-10,-7.22078646875506e-11,6.50521303492667e-12,9.12708016803855e-06 +8.576,-1.89561941535085e-06,-1.2614579521647e-06,1.59559721703111e-06,-3.51112219160177e-10,-1.3682919519642e-09,-0.0799999961683275,-1.89055574580814e-09,8.84643053256182e-10,3.7069089117718e-10,1.81374013030775e-11,2.74376008024854e-10,3.12109855321631e-07,2.88702073451069e-05,2.85324203500089e-05,-3.64142803367395e-05,-6.07153216592022e-11,4.3368086899425e-12,1.83880688453562e-10 +8.578,4.8246079633555e-09,-7.90418935858739e-09,-2.34207688139254e-09,-3.51037161144818e-10,-1.36746040879654e-09,-0.0800002070208636,1.47445711076824e-07,1.36784181203901e-07,2.73485773090473e-07,1.8022042191925e-11,2.74313557979719e-10,-5.07628661328197e-10,3.84715588589058e-10,-2.43511808038395e-10,4.77048955481894e-11,-4.77048955913651e-11,-3.59955121569733e-11,1.15197643090941e-05 +8.58,-1.89502963250654e-06,-1.26091081543989e-06,1.59669116012347e-06,-3.51040130991409e-10,-1.36719469773228e-09,-0.079999996170358,-1.88901688345378e-09,8.83669006024028e-10,3.70881710759373e-10,1.79465817207121e-11,2.74232025976226e-10,3.58188912558002e-07,1.00202787690537e-05,1.97507195060604e-05,-2.76581361979771e-05,-3.14418630020724e-11,-3.38271077815364e-11,1.87350135405458e-10 +8.582,4.81705189582168e-09,-7.90065468256329e-09,-2.3405933545495e-09,-3.50965374817935e-10,-1.36636348069263e-09,-0.080000205588108,1.87526826153052e-07,2.15787059228169e-07,1.62853228298528e-07,1.78962747399167e-11,2.74178249548592e-10,-5.06879260786575e-10,4.08418958165644e-10,-2.79724160403218e-10,-3.00324001366737e-11,-1.38777878058248e-11,-3.64291929650793e-11,1.0534867249432e-05 +8.584,-1.89427952520193e-06,-1.26004766720297e-06,1.59734257303666e-06,-3.50968545892449e-10,-1.36609798473408e-09,-0.0799999961723855,-1.88738320762112e-09,8.82550109382416e-10,3.70761581158826e-10,1.78910705694888e-11,2.74086309204366e-10,4.00328381555725e-07,1.18421946104247e-05,2.11759327520674e-05,-3.10414783070742e-05,-2.81892565044818e-12,-5.63785129996772e-11,1.64798730274037e-10 +8.586,4.8095023629912e-09,-7.89712448212576e-09,-2.33911030822487e-09,-3.50893810535657e-10,-1.36526713545582e-09,-0.0800002039867944,2.34895604594746e-07,3.00490790236429e-07,3.86873150702442e-08,1.78849990373149e-11,2.73952735496594e-10,-5.06220065865479e-10,4.25440932483273e-10,-2.69966340948826e-10,-8.64109131470788e-11,-3.90312782094732e-12,-6.1149002528175e-11,7.51008977228738e-06 +8.588,-1.89333994278355e-06,-1.25884570404203e-06,1.59749732229694e-06,-3.508970058963e-10,-1.3650021737921e-09,-0.0799999961744104,-1.88568144389119e-09,8.8147024401862e-10,3.70415937506237e-10,1.7875458058205e-11,2.73841713194253e-10,4.30368740644885e-07,2.01592216501169e-06,1.25191864254138e-05,-2.09068721536424e-05,6.5052130368993e-12,-6.11490024977774e-11,1.9602375272923e-10 +8.59,4.80195963721564e-09,-7.89359860114969e-09,-2.33762864447484e-09,-3.50822308703425e-10,-1.36417176860304e-09,-0.0800002022653195,2.42959293254792e-07,3.50567535938079e-07,-4.49401735443161e-08,1.79110198894625e-11,2.73708139486603e-10,-5.05435970854562e-10,4.3336916086966e-10,-3.13334427848371e-10,-1.42464165464624e-10,2.08166817117264e-11,-6.46184494801432e-11,3.81067226384952e-06 +8.592,-1.89236810561053e-06,-1.25744343389828e-06,1.59731756160277e-06,-3.50825361816742e-10,-1.36390734123415e-09,-0.0799999961764321,-1.88394796724771e-09,8.80216906307227e-10,3.69846080844379e-10,1.79587247850519e-11,2.73583239396332e-10,4.45611429700281e-07,-1.14418706714133e-06,7.05803102595149e-06,-1.41864900903042e-05,1.95156391047437e-11,-6.76542155631029e-11,1.85615411929539e-10 +8.594,4.79442384534665e-09,-7.89007773352446e-09,-2.33614926015147e-09,-3.50750473804284e-10,-1.36307743564545e-09,-0.0800002004828738,2.38382544986227e-07,3.78799660041881e-07,-1.01686133905526e-07,1.79890824458815e-11,2.7343752262435e-10,-5.04693509206844e-10,4.30577340484579e-10,-3.26344854015806e-10,-1.48860958323286e-10,1.30104260678298e-11,-7.15573434143984e-11,4.63944854706513e-07 +8.596,-1.89141457543058e-06,-1.25592823525811e-06,1.59691081706714e-06,-3.50753405486959e-10,-1.36281359114365e-09,-0.0799999961784509,-1.88222565788577e-09,8.78911526891164e-10,3.69250637011086e-10,1.80107664893232e-11,2.73297010022675e-10,4.47467209119107e-07,-5.54492335293769e-06,6.07614219355487e-07,-5.54733288384582e-06,1.64798730217758e-11,-6.76542155630858e-11,2.22044604924983e-10 +8.598,4.7868949427151e-09,-7.88656208741689e-09,-2.33467225760342e-09,-3.50678430738327e-10,-1.36198424760536e-09,-0.0800001986930049,2.16202851574469e-07,3.81230116919304e-07,-1.23875465440917e-07,1.80550019379686e-11,2.73166905762098e-10,-5.03805330787144e-10,4.27080788060277e-10,-3.6385824898862e-10,-1.62955586483618e-10,1.56125112857939e-11,-7.76288755196364e-11,-1.96330451891006e-06 +8.6,-1.89054976402429e-06,-1.25440331479043e-06,1.59641531520538e-06,-3.50681185479207e-10,-1.3617209235206e-09,-0.0799999961804661,-1.88051733473353e-09,8.77456093895209e-10,3.68598814665151e-10,1.80732165344664e-11,2.72986494520596e-10,4.39613991043468e-07,-6.73611375557113e-06,-3.20552829076445e-06,2.27903308218188e-07,4.33680868793674e-12,-7.19910242833538e-11,1.57859836369793e-10 +8.602,4.77937287337617e-09,-7.88305226304131e-09,-2.33319786234476e-09,-3.50606137872189e-10,-1.36089230162728e-09,-0.080000196934549,1.89258396552187e-07,3.68408003756248e-07,-1.22963852208045e-07,1.80723491727203e-11,2.72878941664965e-10,-5.03173891441665e-10,4.10993938534909e-10,-3.56268833878669e-10,-1.48210436978732e-10,4.98732999343246e-12,-6.20163642661631e-11,-3.30800317693762e-06 +8.604,-1.88979273043808e-06,-1.25292968277541e-06,1.59592345979655e-06,-3.50608896082516e-10,-1.36062940775394e-09,-0.0799999961824788,-1.87887335897939e-09,8.76031018559694e-10,3.68005972917236e-10,1.80931658544401e-11,2.72738429063532e-10,4.26381978335713e-07,-7.10071847781107e-06,-5.60102788797952e-06,4.47955257955445e-06,9.54097911988086e-12,-6.07153216288994e-11,1.98625837943532e-10 +8.606,4.77185737994025e-09,-7.87954813896707e-09,-2.33172583845309e-09,-3.50533765208771e-10,-1.35980134791103e-09,-0.080000195229021,1.60855522640946e-07,3.46003892204332e-07,-1.05045641889829e-07,1.81105130891999e-11,2.72636080378449e-10,-5.02379388089891e-10,3.9974534099545e-10,-3.73182387769578e-10,-1.28044276570565e-10,-3.68628738645193e-12,-6.63531729561331e-11,-3.68600636124842e-06 +8.608,-1.88914930834751e-06,-1.25154566720659e-06,1.59550327722899e-06,-3.50536454030159e-10,-1.35953886343243e-09,-0.0799999961844883,-1.87727437761541e-09,8.74538289008616e-10,3.67493795810954e-10,1.80784207048943e-11,2.72473016371707e-10,4.11637952890721e-07,-5.98815924147046e-06,-6.08537872870542e-06,6.3480023104412e-06,-1.71303943252745e-11,-7.06899816460756e-11,2.2291196666307e-10 +8.61,4.76434828242979e-09,-7.87604998581104e-09,-2.33025586326985e-09,-3.50461451525952e-10,-1.35871145584554e-09,-0.0800001935824692,1.36902885675067e-07,3.21662377289513e-07,-7.96536326480667e-08,1.80419915118988e-11,2.72353320451865e-10,-5.01487740223238e-10,3.84458090571748e-10,-3.90095941757314e-10,-1.06143392727107e-10,-1.60461921547889e-11,-6.11490025584071e-11,-3.35854521281762e-06 +8.612,-1.88860169680481e-06,-1.25025901769743e-06,1.5951846626984e-06,-3.50464286064112e-10,-1.35844945015062e-09,-0.0799999961864943,-1.87573654525312e-09,8.72977905241587e-10,3.67069222240046e-10,1.80142359362751e-11,2.72228420361473e-10,3.98203772039452e-07,-4.43300604557784e-06,-5.46459188663239e-06,6.68967062734105e-06,-1.77809156287579e-11,-6.54858112181026e-11,1.84748050191494e-10 +8.614,4.75684533624877e-09,-7.87255807419007e-09,-2.32878758638089e-09,-3.50389394582207e-10,-1.35762254216409e-09,-0.0800001919896541,1.1917086149275e-07,2.99804009742976e-07,-5.28949501386935e-08,1.79708678493837e-11,2.72091377206992e-10,-5.00748748022472e-10,3.74158169516546e-10,-3.8207284548705e-10,-9.42171687482621e-11,-1.90819582337493e-11,-4.25007251312185e-11,-2.6267035421309e-06 +8.616,-1.88812501335884e-06,-1.24905980165846e-06,1.59497308289784e-06,-3.50392402592714e-10,-1.35736108464179e-09,-0.0799999961884973,-1.87423991257506e-09,8.71449613859639e-10,3.66692353565053e-10,1.79379081033401e-11,2.72058417460949e-10,3.87696957870929e-07,-2.60657934040303e-06,-4.07727237392481e-06,5.82859498513457e-06,-2.32019264931803e-11,-3.20923843357795e-11,1.81278603295121e-10 +8.618,4.74934837659848e-09,-7.86907227573463e-09,-2.32732081696663e-09,-3.50317642949793e-10,-1.35653430849425e-09,-0.0800001904388663,1.08744544131139e-07,2.83494920247279e-07,-2.95805701981579e-08,1.7878060143411e-11,2.71963007669649e-10,-5.00023633609292e-10,3.66744937370255e-10,-3.66677174734501e-10,-7.41594285979837e-11,-3.01408203950902e-11,-7.41594285979967e-11,-1.76003048940571e-06 +8.62,-1.88769003518232e-06,-1.24792582197747e-06,1.59485476061705e-06,-3.5032089035214e-10,-1.35627323261112e-09,-0.0799999961904974,-1.87277293282557e-09,8.699829051607e-10,3.66395715850661e-10,1.78173448217597e-11,2.71761779746557e-10,3.80656835913304e-07,-9.79950414422707e-07,-2.48267465610369e-06,4.43407398471643e-06,-2.88397777861361e-11,-6.54858111879396e-11,2.15105710965649e-10 +8.622,4.74185728486717e-09,-7.86559234411399e-09,-2.32585523410322e-09,-3.50246373570506e-10,-1.35544726137526e-09,-0.080000188916239,1.04824742473448e-07,2.73564221622865e-07,-1.18442742592941e-08,1.77627010322665e-11,2.71701064424897e-10,-4.99163210765429e-10,3.64549427971238e-10,-3.78603398632032e-10,-7.47015296842724e-11,-2.81892564846295e-11,-3.2959746043563e-11,-9.58844982579466e-07 +8.624,-1.88727073621242e-06,-1.24683156509098e-06,1.59480738352001e-06,-3.50249839548011e-10,-1.35518642835342e-09,-0.079999996192494,-1.87131473511369e-09,8.68468491566172e-10,3.66096909731924e-10,1.77045877958212e-11,2.71629940762382e-10,3.76821455982987e-07,3.11444839644592e-07,-9.90468124184789e-07,2.89922491396374e-06,-2.75387351811373e-11,-5.98479599212194e-11,1.87350135405542e-10 +8.626,4.73437202592672e-09,-7.86211847014773e-09,-2.3243908464643e-09,-3.50175555219323e-10,-1.35436074161221e-09,-0.0800001874089531,1.06070521832027e-07,2.69602349126127e-07,-2.47374603440403e-10,1.76525460915419e-11,2.71461672585212e-10,-4.98413810223807e-10,3.60646300357809e-10,-3.50847823112637e-10,-6.65700134312396e-11,-2.29850860586525e-11,-5.94142790823526e-11,-3.4149245935212e-07 +8.628,-1.8868464541251e-06,-1.24575315569447e-06,1.5948063940216e-06,-3.50179229363645e-10,-1.35410058166308e-09,-0.0799999961944877,-1.86987214991226e-09,8.67065100273722e-10,3.65830629678199e-10,1.76126474515866e-11,2.71392283646053e-10,3.75455486145578e-07,1.15128012104114e-06,1.61951615312809e-07,1.5532777971821e-06,-2.19008838842023e-11,-3.51281503885186e-11,1.78676518025577e-10 +8.63,4.72689253732707e-09,-7.85865020974663e-09,-2.32292752394558e-09,-3.50105104629517e-10,-1.35327517247763e-09,-0.0800001859071312,1.10675642316193e-07,2.70250155587378e-07,5.96573658529008e-09,1.75649425560051e-11,2.71321159983658e-10,-4.97699104151705e-10,3.63532988226807e-10,-3.62557206382981e-10,-6.88468379122277e-11,-2.10335221442687e-11,-4.90059381662227e-11,4.87093005236348e-08 +8.632,-1.88640375155583e-06,-1.24467215507212e-06,1.59483025696794e-06,-3.50108969593421e-10,-1.35301529702314e-09,-0.0799999961964785,-1.86841801795935e-09,8.6561487144819e-10,3.6555524232655e-10,1.75285133630096e-11,2.71196259893388e-10,3.75650323347673e-07,1.57017187607906e-06,9.01894661354031e-07,5.29877357268501e-07,-1.49619899822468e-11,-5.20417043094116e-11,1.92554305888635e-10 +8.634,4.71941886525523e-09,-7.85518775026084e-09,-2.32146530297628e-09,-3.50034990576065e-10,-1.35219038743806e-09,-0.0800001844045299,1.16956329820508e-07,2.73857734232794e-07,8.08524601436385e-09,1.75050945960761e-11,2.71112993166421e-10,-4.9692888692815e-10,3.67802034488532e-10,-3.28730098697521e-10,-8.22909448916352e-11,-1.90819582357401e-11,-4.94396190653354e-11,2.25769056227905e-07 +8.636,-1.88593592623655e-06,-1.24357672413519e-06,1.594862597952e-06,-3.50038949215037e-10,-1.35193084505048e-09,-0.0799999961984662,-1.8669468098214e-09,8.642999510534e-10,3.65226078546983e-10,1.74521855300666e-11,2.70998501417127e-10,3.76553399572585e-07,1.63467758211177e-06,1.24212554307738e-06,-1.38235126469731e-07,-2.05998412752857e-11,-5.59448320701695e-11,2.0990154053808e-10 +8.638,4.71195107801595e-09,-7.85173055045663e-09,-2.32000439866209e-09,-3.49965181833944e-10,-1.35110639343239e-09,-0.0800001828983163,1.23495040148955e-07,2.78826236405103e-07,7.53230550848499e-09,1.7422695230975e-11,2.7088921383814e-10,-4.96089280765998e-10,3.68452555792083e-10,-3.45426812153971e-10,-8.64109131471171e-11,-6.72205346941168e-12,-5.55111512312639e-11,2.38883565706391e-07 +8.64,-1.88544194607595e-06,-1.24246141918957e-06,1.59489272717403e-06,-3.49969258434113e-10,-1.35084728819512e-09,-0.0799999962004505,-1.86547299959823e-09,8.62918243804784e-10,3.64880434894395e-10,1.74252973161889e-11,2.70776456812202e-10,3.7750893383541e-07,1.45315179431637e-06,1.26814856359098e-06,-5.08354643102949e-07,-4.55364912444043e-12,-5.24753851483042e-11,1.61329283265861e-10 +8.642,4.70448918601755e-09,-7.84827887748141e-09,-2.31854487692251e-09,-3.4989548064468e-10,-1.35002328760514e-09,-0.0800001813882806,1.29307647326219e-07,2.83898830659466e-07,5.49888693607342e-09,1.74044806344772e-11,2.70679312297547e-10,-4.95443963632935e-10,3.75432107484461e-10,-3.33066907483278e-10,-8.79287962290642e-11,-1.45283091132372e-11,-3.29597460736129e-11,1.50572262949373e-07 +8.644,-1.88492471548665e-06,-1.24132582386693e-06,1.59491472272177e-06,-3.49899640511575e-10,-1.34976457094593e-09,-0.0799999962024323,-1.86397127116829e-09,8.61585976174851e-10,3.64528719709479e-10,1.7367184079736e-11,2.70644617827907e-10,3.78111222887208e-07,1.13016531083704e-06,1.08879485288791e-06,-6.67786355726247e-07,-1.04083408558582e-11,-6.63531729561036e-11,1.90819582357411e-10 +8.646,4.69703330093288e-09,-7.84483253357671e-09,-2.31708676204367e-09,-3.49826011908361e-10,-1.34894070913383e-09,-0.0800001798758357,1.33828308569569e-07,2.88254010071019e-07,2.82774151316754e-09,1.73628472710538e-11,2.70413899605722e-10,-4.94680685303505e-10,3.75825130358087e-10,-3.28946939036521e-10,-1.03974988300904e-10,-1.08420217055742e-12,-7.28583859609969e-11,1.99527894626685e-08 +8.648,-1.88438940225237e-06,-1.24017280782665e-06,1.59492603368783e-06,-3.49830189122491e-10,-1.34868291534751e-09,-0.079999996204411,-1.86246797064686e-09,8.60270188418705e-10,3.64112819756275e-10,1.73628472710538e-11,2.70353184284063e-10,3.78191034045058e-07,7.58276742162763e-07,8.12704721196439e-07,-7.07170541743174e-07,-3.25260651938346e-12,-2.81892565146374e-11,1.84748050246403e-10 +8.65,4.68958342905029e-09,-7.84139145282303e-09,-2.31563031076465e-09,-3.49756560519277e-10,-1.34785929639669e-09,-0.0800001783630716,1.3686141553822e-07,2.91504828955805e-07,-9.40653804848109e-13,1.73498368449762e-11,2.70301142579664e-10,-4.93941693102519e-10,3.77641169203783e-10,-3.11599704372256e-10,-9.02056207507768e-11,-1.5178830414792e-12,-4.597017211337e-11,-1.07629183343482e-07 +8.652,-1.88384195659022e-06,-1.23900678851083e-06,1.59492602992521e-06,-3.49760789775111e-10,-1.34760171077719e-09,-0.0799999962063868,-1.86095740597004e-09,8.59023789601216e-10,3.63751997273272e-10,1.73567757388879e-11,2.7016930359561e-10,3.77760517311684e-07,4.04359854534587e-07,5.25965122182568e-07,-6.94955052706212e-07,-6.50521301565594e-13,-6.6353172926122e-11,1.83013326660773e-10 +8.654,4.68213959942641e-09,-7.83795535766463e-09,-2.31417530277556e-09,-3.49687133416321e-10,-1.34677861918231e-09,-0.0800001768520295,1.38478854956358e-07,2.93608689444535e-07,-2.78076086462939e-09,1.734723475977e-11,2.70035729887959e-10,-4.93209639795876e-10,3.79823126076078e-10,-3.38054237381043e-10,-1.03216046820644e-10,-5.2041704279318e-12,-7.41594285980296e-11,-2.05276767806289e-07 +8.656,-1.88328804117039e-06,-1.23783235375305e-06,1.59491490688175e-06,-3.49691400836072e-10,-1.34652156785764e-09,-0.0799999962083596,-1.85943811346574e-09,8.57671572651692e-10,3.63339133085989e-10,1.73359590571761e-11,2.69872665881218e-10,3.76939410240459e-07,1.10184769836823e-07,2.85019403911737e-07,-6.7118598005859e-07,-8.6736173798858e-12,-4.98732999343387e-11,1.98625837999392e-10 +8.658,4.67470184697255e-09,-7.83452467137402e-09,-2.31272194624321e-09,-3.49617789580092e-10,-1.34569912851878e-09,-0.0800001753442718,1.38919594035705e-07,2.94748767060181e-07,-5.46550478486345e-09,1.73125402902504e-11,2.69836236688222e-10,-4.92415136443879e-10,3.79497865630559e-10,-3.15285991853945e-10,-1.00830802081462e-10,-5.63785129884779e-12,-3.33934269425037e-11,-2.63202654157842e-07 +8.66,-1.88273236279425e-06,-1.23665335868481e-06,1.59489304486261e-06,-3.49622150674911e-10,-1.34544222291089e-09,-0.0799999962103293,-1.85792012200322e-09,8.56410428684276e-10,3.62935809877663e-10,1.73134076519807e-11,2.69739092173448e-10,3.75886599623828e-07,-1.05633898980404e-07,1.15930702537767e-07,-6.48505771652507e-07,1.30104260698217e-12,-5.63785129692403e-11,1.68268177169694e-10 +8.662,4.66727016648454e-09,-7.83109902965928e-09,-2.3112702030037e-09,-3.49548535949484e-10,-1.34462017215009e-09,-0.0800001738407254,1.38497058439783e-07,2.95212489870333e-07,-8.05952787147435e-09,1.73177444606784e-11,2.69610722636345e-10,-4.917420637352e-10,3.78888001496031e-10,-3.40656322499935e-10,-9.83371370041727e-11,-2.81892564654088e-12,-6.67868537951808e-11,-2.84851135692838e-07 +8.664,-1.88217837456049e-06,-1.23547250872533e-06,1.59486080675113e-06,-3.49552879697068e-10,-1.34436378002034e-09,-0.0799999962122963,-1.85640456999723e-09,8.55047803394276e-10,3.62542461329647e-10,1.73021319493946e-11,2.69471944758267e-10,3.74747195081057e-07,-2.41345978590752e-07,2.07678925811793e-08,-6.21225401848189e-07,-8.45677694730718e-12,-6.67868538550222e-11,1.94289029363966e-10 +8.666,4.65984454820455e-09,-7.82767883844571e-09,-2.30982003315838e-09,-3.49479327421687e-10,-1.34354228437106e-09,-0.0800001723417367,1.37531674525421e-07,2.95295561440657e-07,-1.05444294788668e-08,1.72839173528891e-11,2.69343575220925e-10,-4.90964907617744e-10,3.76787359992951e-10,-3.35668992601452e-10,-9.41087485717104e-11,-7.80625564189383e-12,-5.29090660172749e-11,-2.81346126951244e-07 +8.668,-1.88162824786239e-06,-1.23429132647956e-06,1.59481862903321e-06,-3.49483744027657e-10,-1.34328640571946e-09,-0.0799999962142601,-1.85489742055726e-09,8.5370512742387e-10,3.6216602633536e-10,1.7270906926827e-11,2.69260308494198e-10,3.73621810573251e-07,-3.06068660526727e-07,-1.41299732003533e-08,-5.75621039550132e-07,-8.67361737796729e-12,-4.25007251315416e-11,1.86482773613037e-10 +8.67,4.65242495852232e-09,-7.82426401793601e-09,-2.30837136905304e-09,-3.49410243793979e-10,-1.34246524313708e-09,-0.0800001708472494,1.36307399883314e-07,2.95239041547856e-07,-1.28469136370671e-08,1.72492228833773e-11,2.69173572320399e-10,-4.90218976523292e-10,3.75554080021916e-10,-3.32416386084118e-10,-9.24824453130366e-11,-1.1058862159355e-11,-3.85975973405011e-11,-2.65979079039414e-07 +8.672,-1.88108301826286e-06,-1.23311037031337e-06,1.59476724137866e-06,-3.49414747136123e-10,-1.34220971143018e-09,-0.079999996216221,-1.85339520423717e-09,8.52375461879534e-10,3.61796096554108e-10,1.72266714781896e-11,2.69105918104836e-10,3.72557894257094e-07,-3.14201301695389e-07,-9.1706156557524e-09,-4.99445753851634e-07,-1.12757025938521e-11,-6.28837260041662e-11,1.78676518025657e-10 +8.674,4.64501137770537e-09,-7.82085451608849e-09,-2.30692418466683e-09,-3.49341337108067e-10,-1.34138881946466e-09,-0.0800001693570178,1.35050594676532e-07,2.95202359085233e-07,-1.48446966524734e-08,1.72041200730019e-11,2.68922037416382e-10,-4.89504270451189e-10,3.75987761096516e-10,-3.43475248337977e-10,-8.68445940562426e-11,-1.12757025957593e-11,-6.50521303789935e-11,-2.50580806146157e-07 +8.676,-1.88054281588415e-06,-1.23192956087703e-06,1.59470786259205e-06,-3.49345930655831e-10,-1.34113402328051e-09,-0.079999996218179,-1.85189125319279e-09,8.51001560886182e-10,3.61448718177883e-10,1.71815686678065e-11,2.6884570958332e-10,3.71555571032509e-07,-2.81457027280956e-07,1.51194161357398e-08,-3.88122910546709e-07,-9.75781955236709e-12,-4.5970172113383e-11,1.94289029309338e-10 +8.678,4.6376038126926e-09,-7.81745050984495e-09,-2.30547838979411e-09,-3.49272610833395e-10,-1.34031343662633e-09,-0.0800001678707956,1.33924766567408e-07,2.95262836749776e-07,-1.63971882946608e-08,1.71650887947924e-11,2.68738156727929e-10,-4.88727114333952e-10,3.70092411372413e-10,-3.40656322500529e-10,-9.02056207106856e-11,-1.43114686749038e-11,-5.81132364153863e-11,-2.42782356677396e-07 +8.68,-1.88000711681788e-06,-1.23074850953003e-06,1.59464227383888e-06,-3.49277270300652e-10,-1.3400590706536e-09,-0.0799999962201339,-1.8504108835473e-09,8.4963893559618e-10,3.6108789569504e-10,1.71243227931069e-11,2.68613256637658e-10,3.705844416058e-07,-2.22290258047077e-07,4.29766898823616e-08,-2.47169363967248e-07,-1.79977560651613e-11,-4.6403853012202e-11,2.02962646743515e-10 +8.682,4.63020216915841e-09,-7.81405195410256e-09,-2.30403403821133e-09,-3.49204113542223e-10,-1.33923898359978e-09,-0.0800001663884578,1.3303560553522e-07,2.95434743509305e-07,-1.73858657505297e-08,1.70930977705318e-11,2.6855254131588e-10,-4.87915263746978e-10,3.72152395705525e-10,-3.39355279987875e-10,-8.87961579265461e-11,-1.0842021724853e-11,-4.5536491244376e-11,-2.45622966410453e-07 +8.684,-1.87947497439574e-06,-1.229566770556e-06,1.59457273037587e-06,-3.4920889790957e-10,-1.33898486048833e-09,-0.0799999962220856,-1.84892227396447e-09,8.48281514476228e-10,3.60732711063334e-10,1.70809547062075e-11,2.68431110672681e-10,3.69601949740158e-07,-1.48959688427858e-07,6.49716825807483e-08,-9.07897888832797e-08,-8.45677694349117e-12,-6.11490024983719e-11,1.54390389307798e-10 +8.686,4.62280648006255e-09,-7.81065882804466e-09,-2.30259110736708e-09,-3.49135789723398e-10,-1.33816525915709e-09,-0.08000016491005,1.32439766781509e-07,2.95694630239628e-07,-1.77490249060627e-08,1.70592706627578e-11,2.68307945305886e-10,-4.87297702189747e-10,3.68845579079661e-10,-3.49113099540423e-10,-7.62194127257393e-11,-1.53956708492975e-11,-6.20163642661906e-11,-2.58158945609709e-07 +8.688,-1.87894521532861e-06,-1.22838399203504e-06,1.59450173427625e-06,-3.49140660826919e-10,-1.33791162870711e-09,-0.0799999962240348,-1.84744689164816e-09,8.46885062078067e-10,3.60427833412431e-10,1.70193720228103e-11,2.68183045215616e-10,3.68569313957719e-07,-7.11392885788745e-08,7.78324887179767e-08,6.13737576385521e-08,-1.86482773667543e-11,-5.72458747072539e-11,2.23779328401059e-10 +8.69,4.61541669249596e-09,-7.80727128779635e-09,-2.30114939603343e-09,-3.49067712235307e-10,-1.33709252697622e-09,-0.0800001634357727,1.32155209627193e-07,2.960059601945e-07,-1.75035298755086e-08,1.69846775532908e-11,2.68078961807057e-10,-4.86402584876142e-10,3.70038201674329e-10,-3.30464822267529e-10,-8.83624770975674e-11,-1.40946282441977e-11,-3.42607886802984e-11,-2.76336245593538e-07 +8.692,-1.8784165944901e-06,-1.22719996819426e-06,1.59443172015675e-06,-3.49072722116706e-10,-1.33683931285988e-09,-0.0799999962259804,-1.84596673884146e-09,8.45563202788997e-10,3.60074383504041e-10,1.69629935098335e-11,2.68046002060895e-10,3.67463968975345e-07,3.72676878506465e-09,8.29978447080826e-08,1.89194580141286e-07,-1.19262238973382e-11,-3.7730235602483e-11,1.49186218933981e-10 +8.694,4.60803282554059e-09,-7.80388903498519e-09,-2.29970909849941e-09,-3.48999860261268e-10,-1.33602034296798e-09,-0.0800001619659169,1.32170116702333e-07,2.96337951573333e-07,-1.67467515549432e-08,1.69369726577014e-11,2.67928040864647e-10,-4.85805840000406e-10,3.69956886101525e-10,-3.40005801197658e-10,-8.26162055034414e-11,-1.51788304129174e-11,-7.41594285682769e-11,-2.95678412269088e-07 +8.696,-1.87788791402329e-06,-1.22601461638797e-06,1.59436473315053e-06,-3.49004974226075e-10,-1.33576760069642e-09,-0.0799999962279236,-1.84448691129705e-09,8.44203179584206e-10,3.59743918682027e-10,1.69022781881819e-11,2.67749364346622e-10,3.66281255326269e-07,6.99926498990769e-08,8.42401235244383e-08,2.76188360378148e-07,-1.47451495476794e-11,-5.9414279081939e-11,1.96023752839271e-10 +8.698,4.6006548778954e-09,-7.80051222226685e-09,-2.29827012282469e-09,-3.48932251148515e-10,-1.33494934551059e-09,-0.0800001605007918,1.3245008730193e-07,2.9667491206743e-07,-1.56419981134307e-08,1.68779920595107e-11,2.6769038374832e-10,-4.85021744989049e-10,3.68994656878162e-10,-3.31982705214976e-10,-9.32413868337222e-11,-1.25767452008293e-11,-2.94902990915959e-11,-3.11443579259432e-07 +8.7,-1.87735811367409e-06,-1.2248279167397e-06,1.59430216515807e-06,-3.48937462257837e-10,-1.33469683916143e-09,-0.0799999962298637,-1.84301093266954e-09,8.42875248763346e-10,3.59370953134692e-10,1.68519712073785e-11,2.67631403150255e-10,3.65035481009231e-07,1.23668599247443e-07,8.58445259651394e-08,3.12676208707727e-07,-1.62630325854127e-11,-4.77048955596536e-11,1.93421667517591e-10 +8.702,4.59328283416473e-09,-7.7971407212718e-09,-2.29683263901215e-09,-3.48864843263685e-10,-1.33387881989799e-09,-0.0800001590406499,1.32944761698919e-07,2.97018290171291e-07,-1.43912932785999e-08,1.68129399291691e-11,2.67499564166081e-10,-4.84248058318979e-10,3.67707166798551e-10,-3.42174205636515e-10,-7.73036148982379e-11,-1.56125112837946e-11,-6.11490025281892e-11,-3.20778126283789e-07 +8.704,-1.87682633462729e-06,-1.22363984357901e-06,1.59424459998496e-06,-3.4887021049812e-10,-1.33362684090477e-09,-0.0799999962318007,-1.84154010400235e-09,8.415065519408e-10,3.59061738675099e-10,1.67895211622434e-11,2.67386807140143e-10,3.63752368504096e-07,1.62071893991398e-07,9.09116532055398e-08,2.97402293764136e-07,-7.8062556418973e-12,-4.94396190653574e-11,1.78676518025657e-10 +8.706,4.58591667374872e-09,-7.79377469506404e-09,-2.29539639205745e-09,-3.48797685179036e-10,-1.33280927266943e-09,-0.0800001575856404,1.33593049274885e-07,2.97381936784113e-07,-1.32016841035435e-08,1.67817149066015e-11,2.6730180568982e-10,-4.83533352246877e-10,3.69116629827096e-10,-3.3003114139794e-10,-8.45677694937126e-11,-6.72205347127202e-12,-6.50521303788125e-11,-3.22327234388097e-07 +8.708,-1.87629196243019e-06,-1.22245031583187e-06,1.59419179324854e-06,-3.48803083638494e-10,-1.33255763368201e-09,-0.0799999962337348,-1.84006363748304e-09,8.40186427375208e-10,3.58723467597124e-10,1.67626329483583e-11,2.67126598618627e-10,3.62463059566543e-07,1.84069204106241e-07,1.00847932435457e-07,2.36843856159188e-07,-1.19262238973382e-11,-6.50521303491085e-11,1.83013326715518e-10 +8.71,4.57855641919878e-09,-7.79041394935454e-09,-2.29396149818706e-09,-3.48730634647243e-10,-1.33174076627496e-09,-0.0800001561357882,1.3432932609131e-07,2.97785328513855e-07,-1.22543086789064e-08,1.67340100110121e-11,2.67041597168423e-10,-4.82801298940014e-10,3.71230823654816e-10,-3.20056481224492e-10,-9.20487644042214e-11,-1.04083408540024e-11,-3.03576607999353e-11,-3.1665815798811e-07 +8.712,-1.87575464512583e-06,-1.22125917451782e-06,1.59414277601383e-06,-3.4873614759845e-10,-1.33148946729333e-09,-0.079999996235666,-1.83857871418842e-09,8.3890620145031e-10,3.58355272539507e-10,1.67209995849423e-11,2.67005167975428e-10,3.61196426934591e-07,1.89791053966561e-07,1.15036235745504e-07,1.43786675274625e-07,-1.12757025938513e-11,-3.94649590784767e-11,1.90819582357496e-10 +8.714,4.57120210434203e-09,-7.78705832454873e-09,-2.2925280770969e-09,-3.48663750648903e-10,-1.33067274560306e-09,-0.0800001546910025,1.35088490307176e-07,2.98245473456837e-07,-1.1679161977808e-08,1.66889072006367e-11,2.66883737332109e-10,-4.82038020610584e-10,3.69116629622782e-10,-3.31549024346155e-10,-8.67361737988499e-11,-1.14925430283492e-11,-6.41847686111619e-11,-3.05821340473915e-07 +8.716,-1.8752142911646e-06,-1.22006619262399e-06,1.59409605936592e-06,-3.48669391969647e-10,-1.33042193234401e-09,-0.0799999962375942,-1.83710224766993e-09,8.37580005352926e-10,3.58008327844312e-10,1.66750294128289e-11,2.66748428900983e-10,3.59973141572696e-07,1.80854097416432e-07,1.31316615534395e-07,3.45735809785933e-08,-8.67361738173484e-12,-6.33174069027709e-11,1.61329283319317e-10 +8.718,4.56385369535135e-09,-7.78370800452732e-09,-2.29109604378552e-09,-3.48597050531252e-10,-1.32960575188745e-09,-0.0800001532511099,1.35811906696842e-07,2.98770739918974e-07,-1.15408676538936e-08,1.66542127311098e-11,2.66630467704498e-10,-4.81392703477307e-10,3.69496100382937e-10,-3.27862736959533e-10,-8.4567769453854e-11,-1.19262238973374e-11,-4.20670442924235e-11,-2.92424071068828e-07 +8.72,-1.87467104353781e-06,-1.21887110966432e-06,1.5940498958953e-06,-3.48602775118723e-10,-1.32935541047319e-09,-0.0799999962395198,-1.8356242632684e-09,8.36268554405087e-10,3.57670056766496e-10,1.66273245172395e-11,2.66580160723813e-10,3.5880344528842e-07,1.60132066584515e-07,1.47082866752593e-07,-7.40878712559222e-08,-6.50521303306551e-12,-3.98986399178734e-11,2.06432093587832e-10 +8.722,4.55651119829828e-09,-7.7803629303097e-09,-2.28966536355846e-09,-3.48530541233183e-10,-1.32853943124456e-09,-0.0800001518158961,1.3645243496318e-07,2.99359071385985e-07,-1.18372191389173e-08,1.66281918789775e-11,2.66470873144827e-10,-4.80566975102956e-10,3.69834913765696e-10,-3.29814300962874e-10,-9.21571847009568e-11,-4.98732999527806e-12,-6.15826834267551e-11,-2.79271397713792e-07 +8.724,-1.87412523379796e-06,-1.21767367337877e-06,1.59400254701875e-06,-3.48536262351207e-10,-1.32828952698061e-09,-0.079999996241442,-1.83414492361333e-09,8.34949297201236e-10,3.57301428027693e-10,1.66073751972584e-11,2.66333829990106e-10,3.57686359697565e-07,1.31316222544216e-07,1.59486356413012e-07,-1.67345195860276e-07,-2.08166817117172e-11,-5.16080234103057e-11,1.69135538907708e-10 +8.726,4.54917461860382e-09,-7.7770231331209e-09,-2.28823615784635e-09,-3.48464111732394e-10,-1.3274740959246e-09,-0.0800001503851507,1.36977699853357e-07,2.99997016811637e-07,-1.25065999223586e-08,1.65449251521306e-11,2.66264441051185e-10,-4.79890432947325e-10,3.69238602163545e-10,-3.0921445950023e-10,-8.03393809415318e-11,-1.64798730199397e-11,-4.68375338218202e-11,-2.68830097032477e-07 +8.728,-1.87357732299854e-06,-1.21647368531153e-06,1.59395252061906e-06,-3.48470082650598e-10,-1.3272244692164e-09,-0.0799999962433616,-1.83266796920468e-09,8.33712439363235e-10,3.56980070503927e-10,1.65414557051787e-11,2.66146479854819e-10,3.56611039309435e-07,9.86863314591626e-08,1.66510902288617e-07,-2.3457386207076e-07,3.469446951954e-12,-6.59194920871259e-11,1.87350135405542e-10 +8.73,4.54184394672701e-09,-7.77368828336344e-09,-2.28680823756433e-09,-3.48397945909573e-10,-1.32640951000518e-09,-0.0800001489587066,1.37372445179194e-07,3.00663060420791e-07,-1.34448953706416e-08,1.65588029399384e-11,2.66000763082837e-10,-4.79141032405703e-10,3.71583189565187e-10,-3.37620556512049e-10,-9.13982431405381e-11,-6.0715321659203e-12,-6.07153216592079e-11,-2.62557336983049e-07 +8.732,-1.87302783321783e-06,-1.21527103306984e-06,1.59389874103757e-06,-3.48403847438838e-10,-1.32616046616407e-09,-0.0799999962452781,-1.83118163644642e-09,8.32361957137187e-10,3.56614477531364e-10,1.6517169576515e-11,2.65903618568182e-10,3.55560809961503e-07,6.64400717449652e-08,1.67260736477664e-07,-2.70182639280748e-07,-1.60461921546201e-11,-3.9898639976991e-11,1.67400815484901e-10 +8.734,4.53451922018122e-09,-7.7703588355349e-09,-2.28538177965421e-09,-3.48331877231267e-10,-1.3253458955309e-09,-0.0800001475364633,1.37638205466173e-07,3.01332103366702e-07,-1.45256259277644e-08,1.649461817132e-11,2.65841168522929e-10,-4.78471429143763e-10,3.67476773836735e-10,-3.27429056090565e-10,-8.15320033708956e-11,-8.67361737988195e-12,-3.51281503885186e-11,-2.6114874152044e-07 +8.736,-1.87247728039596e-06,-1.21406570465638e-06,1.59384063853386e-06,-3.48337868966153e-10,-1.32509710148998e-09,-0.079999996247192,-1.82971172935107e-09,8.31052240912825e-10,3.56288349517881e-10,1.64824751069954e-11,2.65763105966628e-10,3.54516214995421e-07,3.82717268403068e-08,1.61911283025522e-07,-2.737989956303e-07,-1.3227266502495e-11,-5.89805981537109e-11,2.06432093588168e-10 +8.738,4.52720037326382e-09,-7.76703462657125e-09,-2.28395662625613e-09,-3.48265947330839e-10,-1.32428284310704e-09,-0.0800001461183985,1.37791292373535e-07,3.01979748498804e-07,-1.56208219102855e-08,1.644170910531e-11,2.65605246130314e-10,-4.77645700769411e-10,3.68045980180371e-10,-3.20707002713401e-10,-9.11814027455647e-11,-1.69135538926005e-11,-6.59194921166072e-11,-2.64390072374673e-07 +8.74,-1.87192611522647e-06,-1.21285778566238e-06,1.59377815524622e-06,-3.48272102129732e-10,-1.32403468050546e-09,-0.0799999962491026,-1.82823954543035e-09,8.29769412901971e-10,3.55923623906899e-10,1.64148208914251e-11,2.65499427998162e-10,3.53458654705922e-07,1.70123789187969e-08,1.51758163327538e-07,-2.49633213406041e-07,-6.93889390390572e-12,-4.94396190653354e-11,1.70870262383684e-10 +8.742,4.51988741508209e-09,-7.76371554891964e-09,-2.28253293176051e-09,-3.48200288047273e-10,-1.32322084539505e-09,-0.0800001447045638,1.3785934188921e-07,3.02586781152114e-07,-1.661935476391e-08,1.64139535296944e-11,2.65407487654053e-10,-4.76962219719876e-10,3.68018874720171e-10,-3.33717428598999e-10,-8.16404235486567e-11,-3.46944695013161e-12,-4.98732999048704e-11,-2.71159830661178e-07 +8.744,-1.87137467785891e-06,-1.21164743853777e-06,1.59371167782717e-06,-3.48206446315613e-10,-1.32297305055484e-09,-0.0799999962510105,-1.82676746993147e-09,8.28434543187575e-10,3.55597062212704e-10,1.64009431036245e-11,2.65299934798542e-10,3.52374015383278e-07,4.20917098918662e-09,1.38665121052248e-07,-2.05018510848798e-07,-1.27935856353312e-11,-4.38017677684192e-11,1.78676518025657e-10 +8.746,4.51258034520237e-09,-7.76040181074689e-09,-2.28111054351166e-09,-3.48134684274859e-10,-1.32215964565585e-09,-0.0800001432950678,1.37876178573167e-07,3.03141441636323e-07,-1.74394288073051e-08,1.6362779187153e-11,2.65232280582979e-10,-4.76247513647773e-10,3.6908952456847e-10,-3.15936513062337e-10,-8.57603918436258e-11,-1.84314369322572e-11,-3.9898639947471e-11,-2.80286210907534e-07 +8.748,-1.87082317314462e-06,-1.21043487277123e-06,1.59364192011194e-06,-3.48140995198865e-10,-1.32191212143251e-09,-0.0799999962529155,-1.82529111183319e-09,8.27170797135326e-10,3.55254020645329e-10,1.63272173558955e-11,2.65140340238752e-10,3.51252870539648e-07,3.09919175692248e-10,1.24909414375331e-07,-1.49170389580318e-07,-1.38777878096279e-11,-5.94142790816417e-11,1.75207071126487e-10 +8.75,4.50527918075504e-09,-7.75709312755835e-09,-2.27968952742907e-09,-3.48069375405435e-10,-1.3210990842949e-09,-0.0800001418900563,1.37877418249869e-07,3.03641079293825e-07,-1.80361103656263e-08,1.63072680359145e-11,2.64994623466653e-10,-4.75546685363267e-10,3.65674287724978e-10,-3.39138439553378e-10,-8.37004077158659e-11,-7.15573433840275e-12,-6.20163642661631e-11,-2.90217502807387e-07 +8.752,-1.87027166347162e-06,-1.20922030845405e-06,1.59356977567048e-06,-3.48075766126721e-10,-1.32085214293864e-09,-0.0799999962548176,-1.82382841468229e-09,8.25814243377112e-10,3.54919219014466e-10,1.62985944185419e-11,2.64892274781688e-10,3.50092000528418e-07,4.42415474277614e-09,1.12392083520969e-07,-9.12134950923582e-08,-7.37257477109279e-12,-5.37764277258703e-11,1.94289029256639e-10 +8.754,4.49798386709631e-09,-7.75378987058484e-09,-2.27826985055302e-09,-3.48004181027761e-10,-1.32003951519577e-09,-0.0800001404896883,1.3789511486884e-07,3.04090647627908e-07,-1.84009643459957e-08,1.62777777368302e-11,2.64779517755749e-10,-4.74769529246241e-10,3.66175731432212e-10,-3.15936513153895e-10,-8.28330460172832e-11,-1.322726650613e-11,-3.90312782388732e-11,-2.99520824847905e-07 +8.756,-1.86972008301214e-06,-1.20800394586354e-06,1.59349617181309e-06,-3.48010655015774e-10,-1.31979302486762e-09,-0.0799999962567167,-1.82236371175657e-09,8.24550497324497e-10,3.54587886830397e-10,1.62456853525174e-11,2.64736149668732e-10,3.48893917229026e-07,1.49517578222921e-08,1.02842213911513e-07,-3.93308432697277e-08,-1.40946282423085e-11,-3.59955121265067e-11,1.74339709335637e-10 +8.758,4.49069441224928e-09,-7.75049166859554e-09,-2.27685149900569e-09,-3.47939198286351e-10,-1.31898057059709e-09,-0.0800001390941126,1.3795492190013e-07,3.04502016483555e-07,-1.85582877190747e-08,1.62213992238609e-11,2.64635535707243e-10,-4.74072170408898e-10,3.67612298906109e-10,-3.26995375130157e-10,-8.59772322387413e-11,-1.01915004195627e-11,-6.02816407608229e-11,-3.07384326287045e-07 +8.76,-1.86916826332454e-06,-1.20678593779761e-06,1.59342193866222e-06,-3.47945769418878e-10,-1.31873448272479e-09,-0.079999996258613,-1.82089326256094e-09,8.23242515823976e-10,3.54243977901442e-10,1.62049193508391e-11,2.64495023105689e-10,3.47664379923878e-07,2.95172686206496e-08,9.71004960465222e-08,5.81782885755786e-10,-8.6736173798858e-12,-5.81132364452424e-11,1.66533453693818e-10 +8.762,4.48341083919904e-09,-7.74719869853224e-09,-2.27543452309409e-09,-3.47874378608948e-10,-1.31792259050467e-09,-0.0800001377034551,1.38072990974612e-07,3.04890418467741e-07,-1.85559605875317e-08,1.61867047543414e-11,2.64403082761462e-10,-4.73406036594123e-10,3.62774046913741e-10,-3.18972279145296e-10,-7.89299181569663e-11,-1.10588621593542e-11,-5.29090660172984e-11,-3.12979676897534e-07 +8.764,-1.86861597136065e-06,-1.20556637612373e-06,1.59334771481986e-06,-3.47881022599861e-10,-1.31767687039375e-09,-0.0799999962605066,-1.81944216637329e-09,8.21966626707395e-10,3.53928258228814e-10,1.61606839022017e-11,2.6428338684162e-10,3.46412461216288e-07,4.56885505837481e-08,9.53963470379148e-08,2.51434073235146e-08,-1.36609473751114e-11,-5.89805982125441e-11,1.91686944147958e-10 +8.766,4.47613307053354e-09,-7.74391083202541e-09,-2.27401881006117e-09,-3.47809735873339e-10,-1.31686545695731e-09,-0.0800001363178053,1.38255745176947e-07,3.05272003855892e-07,-1.84553869582376e-08,1.61320609648409e-11,2.64167160368612e-10,-4.72639288817531e-10,3.67124408130677e-10,-3.25911173049086e-10,-8.91214185782916e-11,-1.38777878078114e-11,-5.50774703622452e-11,-3.16328560567781e-07 +8.768,-1.86806294837994e-06,-1.20434528810831e-06,1.59327389327203e-06,-3.47816494356001e-10,-1.31662020175227e-09,-0.0799999962623972,-1.81797366874076e-09,8.20662982015198e-10,3.53571772554501e-10,1.61051727509705e-11,2.64063076960171e-10,3.45147146974017e-07,6.11356126467115e-08,9.73370689944531e-08,3.35923780091627e-08,-1.19262238955526e-11,-2.86229373242943e-11,1.96023752732927e-10 +8.77,4.46886117585858e-09,-7.74062818009735e-09,-2.27260452297096e-09,-3.47745315182335e-10,-1.31580920464947e-09,-0.0800001349372167,1.38500287627534e-07,3.0566135213187e-07,-1.8321017446201e-08,1.60843560692587e-11,2.64052668619315e-10,-4.71855193806599e-10,3.64766268607361e-10,-3.27212215747151e-10,-8.58688121000879e-11,-8.23993651267597e-12,-2.81892565139394e-11,-3.17501233675851e-07 +8.772,-1.86750894722943e-06,-1.20312264269978e-06,1.59320060920225e-06,-3.47752156931724e-10,-1.31556399107779e-09,-0.0799999962642846,-1.81651460366633e-09,8.1935413315221e-10,3.532282973061e-10,1.60722130049198e-11,2.63950319934115e-10,3.43877142039313e-07,7.39432928949054e-08,1.02041422186928e-07,2.74890787216261e-08,-1.08420217248522e-11,-7.58941520739729e-11,1.56992474575874e-10 +8.774,4.46159511744391e-09,-7.73735076356474e-09,-2.27119160978173e-09,-3.47681026330315e-10,-1.31475340336973e-09,-0.0800001335617081,1.38796060799114e-07,3.06069517820618e-07,-1.82110611313144e-08,1.60409879823593e-11,2.63749092011019e-10,-4.71227223908296e-10,3.64874688421204e-10,-3.13768108626427e-10,-7.75204552935086e-11,-9.54097911608988e-12,-7.89299181276531e-11,-3.17166431968636e-07 +8.776,-1.86695376298623e-06,-1.2018983646285e-06,1.59312776495772e-06,-3.47687992979795e-10,-1.31450899470975e-09,-0.0799999962661695,-1.81505510491265e-09,8.18099060717704e-10,3.52918215484926e-10,1.60340490884554e-11,2.63634600261604e-10,3.42608476311439e-07,8.28786366792679e-08,1.08329144266087e-07,1.0052505702853e-08,-6.72205346941168e-12,-3.8163916471494e-11,1.75207071073703e-10 +8.778,4.45433489702426e-09,-7.73407836732187e-09,-2.26977993691979e-09,-3.47616890133962e-10,-1.31369886496868e-09,-0.0800001321912742,1.39127575345831e-07,3.06502834397682e-07,-1.8170851108503e-08,1.60140997684817e-11,2.63596436345133e-10,-4.70526395624001e-10,3.65308369491927e-10,-3.2395960913873e-10,-8.31583066296603e-11,-1.32272665043262e-11,-3.03576608296104e-11,-3.15735285139137e-07 +8.78,-1.86639725268485e-06,-1.20067235329091e-06,1.59305508155329e-06,-3.47623936580721e-10,-1.31345460896437e-09,-0.0799999962680516,-1.81359387143468e-09,8.16803222281149e-10,3.52585582258408e-10,1.59811400224381e-11,2.63513169618286e-10,3.41345535170883e-07,8.7360985942848e-08,1.15046644052293e-07,-1.44815799956508e-08,-1.62630325890567e-11,-4.85722573566045e-11,1.97758476313542e-10 +8.782,4.44708052153853e-09,-7.73081115443275e-09,-2.26836959459076e-09,-3.47552965573872e-10,-1.31264481229021e-09,-0.0800001308258921,1.39477019289602e-07,3.06963020973891e-07,-1.82287774284856e-08,1.59490476381254e-11,2.63402147315706e-10,-4.69735361718747e-10,3.63898906667534e-10,-3.17020715234681e-10,-8.22909448916352e-11,-1.34441069388174e-11,-5.76795555762096e-11,-3.13949387320466e-07 +8.784,-1.86583934460769e-06,-1.19944450120701e-06,1.59298216644357e-06,-3.47560140390168e-10,-1.31240100037511e-09,-0.0799999962699306,-1.81213827580801e-09,8.1553513942021e-10,3.52256418478841e-10,1.59273635946828e-11,2.63282451395981e-10,3.400897376216e-07,8.7512313492049e-08,1.21126416222883e-07,-4.17183648757991e-08,-5.42101086065824e-12,-5.63785129400168e-11,1.72604985807573e-10 +8.786,4.4398319684353e-09,-7.72754901387507e-09,-2.26696056891684e-09,-3.47489256119493e-10,-1.31159168248463e-09,-0.0800001294655331,1.3982706854357e-07,3.07447526638783e-07,-1.83956508879888e-08,1.59273635946828e-11,2.63176633263946e-10,-4.69044941775517e-10,3.65321922220088e-10,-3.20707002711695e-10,-8.89045781828925e-11,-4.55364912620626e-12,-4.64038530116074e-11,-3.12395942485495e-07 +8.788,-1.86528003633351e-06,-1.19821471110046e-06,1.59290858384002e-06,-3.4749643093579e-10,-1.31134829384205e-09,-0.0799999962718067,-1.81067698811913e-09,8.14252311409364e-10,3.5190080016611e-10,1.5909148998178e-11,2.63096835983935e-10,3.38840153851658e-07,8.3977285845658e-08,1.25744466922233e-07,-6.75595647134224e-08,-1.34441069388174e-11,-4.51028103753948e-11,1.80411241501554e-10 +8.79,4.43258926048282e-09,-7.72429200462943e-09,-2.26555296571618e-09,-3.474256195235e-10,-1.31053929514069e-09,-0.0800001281101725,1.40162977686953e-07,3.07950504506472e-07,-1.86658891468426e-08,1.58735871669275e-11,2.62996222022445e-10,-4.6832329680951e-10,3.64183509536916e-10,-3.15069151233953e-10,-7.90383383351435e-11,-1.49619899785374e-11,-4.98732999051289e-11,-3.11493018841022e-07 +8.792,-1.86471938442277e-06,-1.19698290908243e-06,1.59283392028343e-06,-3.47432936587122e-10,-1.31029630895396e-09,-0.07999999627368,-1.80922025408098e-09,8.12992034804428e-10,3.51584646812769e-10,1.58493010382638e-11,2.62897342784314e-10,3.37594181776294e-07,7.78167271288876e-08,1.28500292004313e-07,-8.88810509566881e-08,-8.89045781438292e-12,-5.24753851483042e-11,1.66533453693818e-10 +8.794,4.42535237946649e-09,-7.72104003649021e-09,-2.26414662712893e-09,-3.47362222319347e-10,-1.30948770576955e-09,-0.0800001267597958,1.40474244595469e-07,3.08464505674489e-07,-1.90214133506693e-08,1.583802533567e-11,2.62786320481852e-10,-4.67657162994735e-10,3.63465225798701e-10,-3.09864980896417e-10,-8.3483567281406e-11,-6.0715321659203e-12,-5.50774703622697e-11,-3.11457457047365e-07 +8.796,-1.86415748744439e-06,-1.19574905105974e-06,1.59275783463003e-06,-3.47369584485779e-10,-1.30924516367203e-09,-0.0799999962755507,-1.80776639317779e-09,8.11752574880842e-10,3.51250712543644e-10,1.58250149096002e-11,2.62677032902865e-10,3.36348351948105e-07,7.02362972313689e-08,1.29281351215067e-07,-1.0364062038923e-07,-9.10729825063458e-12,-4.64038530115428e-11,1.83013326767427e-10 +8.798,4.41812131389378e-09,-7.71779302619069e-09,-2.26274162427875e-09,-3.47298922259709e-10,-1.30843699763794e-09,-0.0800001254144024,1.40755189784394e-07,3.08981631079349e-07,-1.94359758322262e-08,1.58015961426675e-11,2.62600705069805e-10,-4.66925109687665e-10,3.63329700526979e-10,-3.24176449573109e-10,-8.52182907573322e-11,-1.47451495457996e-11,-4.38017677684127e-11,-3.12362982701699e-07 +8.8,-1.86359446668525e-06,-1.19451312453542e-06,1.5926800907267e-06,-3.47306378101209e-10,-1.30819476085176e-09,-0.0799999962774184,-1.80631307437568e-09,8.1045586908255e-10,3.50909839380614e-10,1.57660343114169e-11,2.62501825831791e-10,3.35098900017298e-07,6.24425099457102e-08,1.28244420325911e-07,-1.11007232054501e-07,-1.47451495440516e-11,-5.72458746780957e-11,1.71737624069895e-10 +8.802,4.41089606159628e-09,-7.71455120271436e-09,-2.26133798492123e-09,-3.47235858122463e-10,-1.30738699033461e-09,-0.0800001240740068,1.41004959824177e-07,3.09494608760653e-07,-1.98800047604441e-08,1.57426155444913e-11,2.62371721571093e-10,-4.66238159191386e-10,3.64739163551756e-10,-3.17671236628166e-10,-7.60025723301843e-11,-7.15573434015318e-12,-4.90059382254695e-11,-3.14222606305143e-07 +8.804,-1.86303044684595e-06,-1.19327514610038e-06,1.59260057070766e-06,-3.47243407639031e-10,-1.30714527396547e-09,-0.0799999962792833,-1.80485411772147e-09,8.09185184136037e-10,3.50605829091293e-10,1.57374113740563e-11,2.62305802078889e-10,3.33842009592078e-07,5.54933025529814e-08,1.25857657629041e-07,-1.11300183479299e-07,-2.81892564846218e-12,-3.7730235602483e-11,1.95156391047351e-10 +8.806,4.40367664512539e-09,-7.71131446197781e-09,-2.25993556160486e-09,-3.47172908476967e-10,-1.3063377671263e-09,-0.0800001227386387,1.41226933034389e-07,3.09998039391169e-07,-2.03252054943615e-08,1.57313398418974e-11,2.62220800628683e-10,-4.65457533627196e-10,3.60063541282143e-10,-3.20923842965918e-10,-8.33751470252282e-11,-1.23599047645897e-11,-5.2909065988192e-11,-3.16637341309574e-07 +8.808,-1.86246553911381e-06,-1.19203515394281e-06,1.59251926988568e-06,-3.47180482279663e-10,-1.30609639076296e-09,-0.0799999962811452,-1.80341386355635e-09,8.07901488764174e-10,3.50272328503192e-10,1.5687971754998e-11,2.62094165814937e-10,3.32575460226839e-07,5.01320718878567e-08,1.22610255282067e-07,-1.0565810379395e-07,-2.05998412772293e-11,-6.85215773011044e-11,1.57859836313933e-10 +8.81,4.39646298967117e-09,-7.70808285602276e-09,-2.25853447229085e-09,-3.47110156589947e-10,-1.30528939046304e-09,-0.0800001214083369,1.4142746132194e-07,3.10488480412297e-07,-2.07478379095372e-08,1.56489404767885e-11,2.61946714319479e-10,-4.64826094281941e-10,3.64346140063794e-10,-3.06178693509992e-10,-8.12067427191862e-11,-8.02309607639442e-12,-5.68121938382467e-11,-3.19663566450487e-07 +8.812,-1.86189982926853e-06,-1.19079320002116e-06,1.59243627853405e-06,-3.47117886517756e-10,-1.30504860390568e-09,-0.0799999962830045,-1.80195647899609e-09,8.06676773990134e-10,3.49947501532316e-10,1.56558793706924e-11,2.61866917039584e-10,3.31296805961038e-07,4.68137898080851e-08,1.19105246464326e-07,-9.58900927388101e-08,-2.60208521570145e-12,-3.16587034656479e-11,1.99493199788886e-10 +8.814,4.38925516375518e-09,-7.7048561489268e-09,-2.25713468228472e-09,-3.47047533072464e-10,-1.30424192279488e-09,-0.0800001200831496,1.41614716481173e-07,3.10964901398155e-07,-2.11313982804924e-08,1.56385321359257e-11,2.61820079505616e-10,-4.64028121482785e-10,3.63167070201106e-10,-3.19839640883143e-10,-8.56519716263262e-11,-1.30104260698233e-11,-3.85975973404711e-11,-3.22774793004495e-07 +8.816,-1.8613333704026e-06,-1.18954934041557e-06,1.59235175294092e-06,-3.47055332389212e-10,-1.30400132358766e-09,-0.0799999962848606,-1.80050381071529e-09,8.05397415426601e-10,3.4960489364581e-10,1.56038376664131e-11,2.61712526650222e-10,3.30005706789019e-07,4.55767558183066e-08,1.15770891172123e-07,-8.38782168745336e-08,-1.64798730200472e-11,-5.5077470333215e-11,1.54390389310461e-10 +8.818,4.38205314851232e-09,-7.70163455926509e-09,-2.25573626271014e-09,-3.46985117721799e-10,-1.30319507268828e-09,-0.0800001187631268,1.41797023504446e-07,3.11427984962843e-07,-2.14669111479905e-08,1.55726126438455e-11,2.61599769624283e-10,-4.63410559925543e-10,3.60090646736552e-10,-3.14201789675643e-10,-7.5568891461035e-11,-1.06251812920878e-11,-6.37510877711965e-11,-3.25888621680532e-07 +8.82,-1.86076618230858e-06,-1.18830362847572e-06,1.59226588529633e-06,-3.46993041938637e-10,-1.30295492450916e-09,-0.0799999962867142,-1.79906344812834e-09,8.04140608267898e-10,3.49302618079966e-10,1.55613369412448e-11,2.61457522299137e-10,3.28702152302297e-07,4.62746431884648e-08,1.13025908077244e-07,-7.16620773138889e-08,-9.97465998686493e-12,-5.68121938382215e-11,1.90819582357398e-10 +8.822,4.37485689471981e-09,-7.69841799683202e-09,-2.25433905223782e-09,-3.46922872374034e-10,-1.30214924259908e-09,-0.0800001174483182,1.419821220772e-07,3.11880088595152e-07,-2.17535594572462e-08,1.5532714003898e-11,2.6137252084893e-10,-4.62647281596113e-10,3.61689844541543e-10,-3.13768108628107e-10,-8.91214185395571e-11,-9.32413868165011e-12,-3.77302355734708e-11,-3.28825508452358e-07 +8.824,-1.86019825382027e-06,-1.18705610812134e-06,1.5921788710585e-06,-3.46930911082621e-10,-1.30190943442576e-09,-0.0799999962885648,-1.79761668875017e-09,8.02885535833386e-10,3.48946132405808e-10,1.55240403865182e-11,2.61306601356843e-10,3.27386850268488e-07,4.84603541106349e-08,1.11133324765004e-07,-6.07988052264829e-08,-1.51788304147987e-12,-4.33680868994379e-11,1.65666091955829e-10 +8.826,4.36766642796481e-09,-7.69520645468869e-09,-2.2529432677082e-09,-3.46860776212488e-10,-1.30110401619365e-09,-0.0800001161387708,1.42175963493642e-07,3.12324621894212e-07,-2.19967546781521e-08,1.55266424717321e-11,2.61199048501333e-10,-4.6198461722829e-10,3.62055762974418e-10,-3.20490162186776e-10,-7.45931094670109e-11,-1.36609473733205e-11,-4.77048955893804e-11,-3.31394633956782e-07 +8.828,-1.8596295499663e-06,-1.18580680963376e-06,1.59209088403979e-06,-3.46868804512734e-10,-1.30086463823176e-09,-0.0799999962904127,-1.79616846569828e-09,8.01603575184639e-10,3.4864775996794e-10,1.54693965970249e-11,2.61115781774486e-10,3.26061271732661e-07,5.15716484116263e-08,1.10075360250364e-07,-5.24465453680569e-08,-1.66967134579968e-11,-5.07406617013044e-11,1.71737624172956e-10 +8.83,4.36048175410202e-09,-7.69200004038795e-09,-2.25154867666832e-09,-3.46798898626099e-10,-1.30005955306656e-09,-0.0800001148345257,1.42382250087289e-07,3.12764923335214e-07,-2.22065408596243e-08,1.54598556179001e-11,2.60996085854527e-10,-4.61297666731598e-10,3.60768272894483e-10,-2.96637714391961e-10,-8.52182907573451e-11,-4.33680868994057e-12,-5.50774703622452e-11,-3.33617682091085e-07 +8.832,-1.85906002096595e-06,-1.18455574994042e-06,1.59200205787635e-06,-3.46806965090263e-10,-1.29982065388834e-09,-0.0799999962922579,-1.7947253926067e-09,8.00417024327071e-10,3.48306886804911e-10,1.54520493622651e-11,2.60895471893037e-10,3.24726801004296e-07,5.50935707803402e-08,1.09910995270472e-07,-4.73303037412436e-08,-1.01915004196491e-11,-4.64038529534075e-11,1.76941794498459e-10 +8.834,4.35330285253159e-09,-7.68879837229064e-09,-2.25015544912111e-09,-3.4673709042865e-10,-1.29901597117899e-09,-0.0800001135356185,1.4260262437041e-07,3.13204567316295e-07,-2.23958620745892e-08,1.54190896162215e-11,2.60810470442714e-10,-4.60589899553605e-10,3.60592090240706e-10,-3.25694332703448e-10,-7.53520510263957e-11,-1.34441069405326e-11,-5.46437895222268e-11,-3.35516336971609e-07 +8.836,-1.85848961046847e-06,-1.18330293167115e-06,1.59191247442805e-06,-3.46745288731798e-10,-1.29877741200657e-09,-0.0799999962941003,-1.79328302424573e-09,7.99114246996257e-10,3.48005478600805e-10,1.5398272934503e-11,2.60676896734948e-10,3.2338473565641e-07,5.83940448078839e-08,1.10336436168178e-07,-4.54260110430055e-08,-1.36609473733144e-11,-4.55364912443889e-11,1.85615411929469e-10 +8.838,4.3461297204346e-09,-7.68560191530265e-09,-2.2487634272067e-09,-3.46675497336912e-10,-1.29797326359204e-09,-0.0800001122420796,1.42836200549642e-07,3.13645913060968e-07,-2.25775661187613e-08,1.53644458267283e-11,2.60628324477736e-10,-4.59847437905887e-10,3.6063274742399e-10,-3.03793448641783e-10,-8.47846098497439e-11,-1.36609473716112e-11,-2.99239799316648e-11,-3.37094067901198e-07 +8.84,-1.85791826566627e-06,-1.18204834801891e-06,1.59182216416358e-06,-3.46683830948491e-10,-1.29773489870866e-09,-0.0799999962959397,-1.79184049325604e-09,7.9789907320169e-10,3.47666340161406e-10,1.53436291450165e-11,2.60557200815221e-10,3.22036359384805e-07,6.11857569818431e-08,1.11256923812654e-07,-4.65427392806851e-08,-6.9388939039088e-12,-5.33427468862927e-11,1.85615411929565e-10 +8.842,4.33896235846158e-09,-7.68241031900985e-09,-2.24737276184606e-09,-3.46614122820332e-10,-1.29693103478878e-09,-0.0800001109539341,1.43080943577569e-07,3.14090940756219e-07,-2.2763737075884e-08,1.53366902511126e-11,2.60414953490191e-10,-4.59104976258168e-10,3.601177515911e-10,-3.23742768704233e-10,-7.7520455332735e-11,-4.3368086899433e-12,-7.02563007770814e-11,-3.38520010634357e-07 +8.844,-1.85734594189196e-06,-1.18079198425589e-06,1.59173110921527e-06,-3.46622484187487e-10,-1.2966932388947e-09,-0.0799999962977761,-1.79040002224967e-09,7.96604102126873e-10,3.47356258340075e-10,1.53262819102568e-11,2.60276175612113e-10,3.20682279342268e-07,6.30686908788905e-08,1.12352618493267e-07,-4.99134154121763e-08,-9.97465998856734e-12,-4.98732999632383e-11,1.39645239867072e-10 +8.846,4.33180075837258e-09,-7.67922390260134e-09,-2.2459833368127e-09,-3.46552817692691e-10,-1.29588993008634e-09,-0.080000109671205,1.43333218341084e-07,3.14540351230192e-07,-2.29633907375327e-08,1.52967916111584e-11,2.60215460290338e-10,-4.585463952987e-10,2.75126194612959e-08,-1.18752663952311e-08,-5.91562389351408e-09,9.03790930983715e-10,-3.86279550013048e-09,0.00700550254091446 +8.848,-1.8567726090186e-06,-1.17953382285096e-06,1.59163925565232e-06,-3.46561297021042e-10,-1.29565237705354e-09,-0.0799999962996103,-1.68034954440445e-09,7.49103036545933e-10,3.23693762766011e-10,1.89414456341928e-11,2.44824993611586e-10,2.83426924430095e-05,-0.0592142050537123,-0.0426678832758313,0.0505836537086278,2.17100643018715e-09,-1.21539063535363e-08,-0.0316835463854623 +8.85,4.32507936019497e-09,-7.67622749045516e-09,-2.24468856176163e-09,-3.46477051910155e-10,-1.29491063011189e-09,-0.0799999963004352,-0.000236713486996482,-0.000170356992752076,0.000202311651443751,2.3980817331906e-11,2.11599834876198e-10,-0.000126734644088231,-5.79559458148502e-08,2.43316651540825e-09,-2.05824940428197e-09,6.36383307161739e-09,6.77062572670878e-09,-0.00708578546358852 +8.852,-2.80362655700442e-06,-1.86096179385919e-06,2.40088586142724e-06,-3.46465373751714e-10,-1.29480597771403e-09,-0.0800005032381866,-1.91217332766383e-09,7.58835702607565e-10,3.15460765148884e-10,4.43967779206596e-11,2.71907496518418e-10,-4.49411341474209e-10,0.131047752349208,0.0888602778646346,-0.111386352843478,1.09601997616535e-08,2.62290189567634e-08,0.0512705758907186 +8.854,4.31743066688431e-09,-7.67319214764473e-09,-2.24342671870104e-09,-3.46299464798472e-10,-1.29382300012582e-09,-0.0799999963022329,0.000287477522400525,0.000185084118706581,-0.000243233759930308,6.78216163785347e-11,3.16515910703287e-10,7.83476594747121e-05,1.85405347737413e-09,-5.02592759069066e-09,-1.46712069576076e-08,8.68467624205023e-09,-1.83013326712575e-09,3.45209971714471e-09 +8.856,-1.65371646740245e-06,-1.12062531903295e-06,1.42795082170612e-06,-3.461940872862e-10,-1.29353991407122e-09,-0.0800001898475487,-1.90475711375433e-09,7.38731992244805e-10,2.5677593731846e-10,7.91354828888567e-11,2.64586963449916e-10,-4.35602942605632e-10,-0.091885835480777,-0.055439643198485,0.0785933208355491,6.46856700148444e-09,-1.84930196156548e-08,-0.0138961468660148 +8.858,4.30981163842929e-09,-7.67023721967575e-09,-2.24239961495176e-09,-3.45982922866916e-10,-1.29276465227202e-09,-0.0799999963039753,-8.00658195225427e-05,-3.66744540873347e-05,7.11395234118543e-05,9.36958843844696e-11,2.42543832240676e-10,2.27630720106589e-05,5.37018075407715e-08,-1.15745087125888e-08,-2.21254221541338e-08,7.77351273628828e-09,-9.15456946360063e-09,1.01793573570341e-08 +8.86,-1.97397974549258e-06,-1.26732313538228e-06,1.7125089153535e-06,-3.45819303748662e-10,-1.29256973874226e-09,-0.0800000987952607,-1.68994988359127e-09,6.92433957394455e-10,1.68274248701935e-10,1.10229533834006e-10,2.27968685595517e-10,-3.948855131775e-10,0.00558543647748572,0.00725858550956299,-0.00668117913663525,6.4225968293578e-09,-8.48019571233765e-09,-0.0089077138911575 +8.862,4.30305183889493e-09,-7.66746748384617e-09,-2.24172651795695e-09,-3.4554200473158e-10,-1.29185277752963e-09,-0.0799999963055548,-5.77240736126022e-05,-7.64011204908594e-06,4.44148068653162e-05,1.19386271701898e-10,2.08623049391329e-10,-1.28677835539671e-05,1.4401999558208e-08,4.97627113127285e-09,-1.0608376156682e-08,4.01349960210594e-09,-3.45687020675201e-09,-1.16746889933213e-09 +8.864,-2.20487603994307e-06,-1.29788358357863e-06,1.89016814281483e-06,-3.45341758661855e-10,-1.29173524654469e-09,-0.0800001502663949,-1.63234188535842e-09,7.12339041919553e-10,1.25840744075192e-10,1.26283532242436e-10,2.14141204768505e-10,-3.9955538877483e-10,0.0167396824902717,0.00584388110992695,-0.0164866363667623,1.90104008924975e-09,1.75684120031906e-09,0.00117850932918628 +8.866,4.29652247135349e-09,-7.66461812767849e-09,-2.24122315498065e-09,-3.45036870602611e-10,-1.29099621271056e-09,-0.0799999963071531,9.23465634847734e-06,1.57354123906193e-05,-2.15317386017255e-05,1.26990432058896e-10,2.15650414192605e-10,-8.15374623722255e-06,-3.8457518419609e-08,2.08758791502556e-08,6.87774490136354e-09,-1.0978631198726e-09,4.75270864328262e-09,-1.26166438407321e-08 +8.868,-2.16793741454916e-06,-1.23494193401616e-06,1.80404118840793e-06,-3.44833796933619e-10,-1.29087264488792e-09,-0.0800001828813799,-1.78617195903684e-09,7.95842558520566e-10,1.53351723680644e-10,1.21892079762946e-10,2.33152039341633e-10,-4.50021964137753e-10,0.0217127766233147,0.00740844728987924,-0.0162319633346396,-2.62441977871783e-09,9.75174802020143e-09,0.00638919320661842 +8.87,4.28937778351735e-09,-7.66143475744441e-09,-2.24060974808593e-09,-3.44549302283559e-10,-1.29006360455319e-09,-0.0799999963089532,9.60857628417653e-05,4.53692015501461e-05,-8.64595919403055e-05,1.16492752944021e-10,2.54657406273423e-10,1.74030265892597e-05,-1.06747564348955e-08,8.72045491382568e-09,9.60017655650929e-09,-4.13839969236455e-09,2.20179777190993e-09,-4.50681159063871e-09 +8.872,-1.78359436318215e-06,-1.05346512781559e-06,1.45820282064675e-06,-3.44367825921843e-10,-1.28985401526283e-09,-0.0800001132692735,-1.82887098477642e-09,8.30724378175865e-10,1.91752429906676e-10,1.05338480993489e-10,2.41959230429272e-10,-4.68049210500306e-10,-0.0352280044570333,-0.0197609823671596,0.0321769262221227,-5.40041102115148e-09,-4.24963883527512e-09,-0.00480210913048168 +8.874,4.28206229957824e-09,-7.6581118599317e-09,-2.2398427383663e-09,-3.44127948359585e-10,-1.28909576763148e-09,-0.0799999963108254,-4.48262549863525e-05,-3.36747279184836e-05,4.2248112948171e-05,9.48911088594178e-11,2.37658850932325e-10,-1.80540993266496e-06,1.56533043905343e-09,3.60041857439065e-09,1.03504444598524e-08,-4.9053643091945e-09,1.35828848169014e-09,-1.11022302462538e-09 +8.876,-1.96289938312754e-06,-1.18816403948951e-06,1.62719527243942e-06,-3.43988261486405e-10,-1.2889033798591e-09,-0.0800001204909132,-1.8226096630202e-09,8.45126052473426e-10,2.33154207746081e-10,8.57170237567134e-11,2.47392384356032e-10,-4.72490102598807e-10,0.0168500123976359,0.010327239143277,-0.0126915807983535,-4.86958563751084e-09,3.77172251761534e-09,0.000346788433039492 +8.878,4.27477186092616e-09,-7.65473135572181e-09,-2.23891012153532e-09,-3.43785080264558e-10,-1.28810619809405e-09,-0.0799999963127153,2.25737946041836e-05,7.63422865461988e-06,-8.51821024523754e-06,7.54127663093766e-11,2.52745741002784e-10,-4.18256200507144e-07,4.24429913957374e-09,6.55074952615601e-10,1.10525737867493e-08,-5.48324406712696e-09,1.34050756606077e-09,2.50667542278591e-10 +8.88,-1.87260420471077e-06,-1.15762712487102e-06,1.59312243145845e-06,-3.43686610421168e-10,-1.28789239689509e-09,-0.080000122163938,-1.8056324664619e-09,8.47746352283889e-10,2.77364502893093e-10,6.37840474881983e-11,2.52754414620277e-10,-4.71487432429692e-10,-0.00841297408958033,-0.00505579141356029,0.00703815090084365,-5.87767681747134e-09,6.59194921151984e-11,-0.000128392456388923 +8.882,4.26754933106031e-09,-7.65134037031268e-09,-2.23780066352375e-09,-3.43529944074605e-10,-1.28709518043557e-09,-0.0799999963146013,-1.1078101754134e-05,-1.2588936999619e-05,1.9634393358134e-05,5.19020590394938e-11,2.53009418971245e-10,-9.31826026062779e-07,3.84592260402167e-09,-1.72431513521469e-09,1.09488156388116e-08,-5.83539293275726e-09,1.37259995033829e-09,8.70831184992514e-10 +8.884,-1.9169166117273e-06,-1.2079828728695e-06,1.67166000489098e-06,-3.4347900218501e-10,-1.2868803592192e-09,-0.0800001258912421,-1.79024877604582e-09,8.40849091743031e-10,3.21159765448335e-10,4.04424757571718e-11,2.58244814421629e-10,-4.68004107689723e-10,0.00435919497062287,0.00287714666132489,-0.00459880823537232,-5.76058298284869e-09,2.06128517032899e-09,-1.10891833909863e-05 +8.886,4.26038833595613e-09,-7.6479769739457e-09,-2.23651602446195e-09,-3.43368174171577e-10,-1.28606220117788e-09,-0.0799999963164733,6.35867812836334e-06,-1.08035035431565e-06,1.23916041663854e-06,2.88597271080913e-11,2.61254559652564e-10,-9.76182759626739e-07,2.32371630598134e-09,-3.38986651240057e-09,9.88532172789167e-09,-5.75516197198433e-09,1.22905158275851e-09,1.07205910810193e-09 +8.888,-1.89148189921385e-06,-1.21230427428676e-06,1.67661664655754e-06,-3.43363563276577e-10,-1.28583534098059e-09,-0.0800001297959732,-1.78095391082189e-09,8.2728962569343e-10,3.60701052359897e-10,1.7421827869237e-11,2.63161020752663e-10,-4.63715871257315e-10,-0.00198453983608048,-0.000880722359842253,0.000660149097279357,-5.55523509138245e-09,9.15500314446951e-10,0.000140420211049184 +8.89,4.25326452031284e-09,-7.64466781544293e-09,-2.23507322025251e-09,-3.432984868601e-10,-1.28500955709487e-09,-0.0799999963183281,-1.5794812159577e-06,-4.60323979368427e-06,3.87975680575568e-06,6.63878674256397e-12,2.64916560910351e-10,-4.14501915430067e-07,8.80589004492875e-10,-4.33160451951503e-09,7.97745116493285e-09,-5.17988429926789e-09,9.63205210036332e-10,1.08420217248574e-09 +8.892,-1.89779982407768e-06,-1.23071723346149e-06,1.69213567378056e-06,-3.43337008129607e-10,-1.28477567473695e-09,-0.0800001314539808,-1.77743155480392e-09,8.09963207615372e-10,3.92610857019625e-10,-3.29770932783227e-12,2.67013841592807e-10,-4.59379062567373e-10,0.0654284236868459,0.0420503221093286,-0.0575543532418222,-2.94360889829822e-09,6.57980614434915e-09,0.00854944032409135 +8.894,4.24615479409363e-09,-7.64142796261247e-09,-2.23350277682444e-09,-3.43311677697411e-10,-1.2839415017285e-09,-0.0799999963201657,0.000260134213531397,0.000163598048643612,-0.000226337656161508,-5.13564885062762e-12,2.91235785487745e-10,3.37832593809316e-05,3.61589556040128e-08,-1.87447713600977e-08,-2.00577401909773e-09,-3.6190668517558e-09,-4.63691585128497e-09,-0.0178841065958142 +8.896,-8.57262969951745e-07,-5.76325038886827e-07,7.86785049134223e-07,-3.4335755072501e-10,-1.283610731595e-09,-0.0799999963209433,-1.63279573238782e-09,7.34984122174956e-10,3.84587760943231e-10,-1.77739767348603e-11,2.48466178187661e-10,-7.15368857623434e-05,-0.178907798553608,-0.112277743121072,0.153365874117602,-7.44326475454969e-09,-2.27530667917535e-08,-0.00844592654928261 +8.898,4.23962361116408e-09,-7.63848802612377e-09,-2.23196442578066e-09,-3.4338277360435e-10,-1.28294763701575e-09,-0.0800002824677087,-0.000455496980682957,-0.000285512923840627,0.000387125840308832,-3.49087078688231e-11,2.00223518320741e-10,-4.46816195154347e-10,-4.53942981292783e-08,1.2170819907369e-08,1.17177318195263e-08,-3.60128593612507e-09,6.63358257210625e-09,0.0256636402545829 +8.9,-2.67925089268337e-06,-1.71837673424921e-06,2.33528841036938e-06,-3.43497185556485e-10,-1.28280983752171e-09,-0.0799999963227306,-1.81437292490492e-09,7.83667401804427e-10,4.31458688221331e-10,-3.2179120479359e-11,2.75000508476083e-10,3.11176752559768e-05,0.180764717857507,0.11330567045869,-0.156225364296596,8.64542812339748e-10,2.9354990660473e-08,-4.14078493715571e-09 +8.902,4.23236611946445e-09,-7.63535335651655e-09,-2.23023859102778e-09,-3.43511490086268e-10,-1.28184763498185e-09,-0.0800001579970077,0.000267561890747314,0.000167709757994285,-0.000237775616877762,-3.1450536619463e-11,3.17643480962672e-10,-4.63379334902976e-10,-2.15581404744494e-09,-3.90659726781363e-09,1.82167649025845e-09,-1.93204827137317e-09,2.04263689326846e-10,-0.00702543095313316 +8.904,-1.60900332969423e-06,-1.04753770227214e-06,1.38418594285844e-06,-3.43622987702963e-10,-1.28153926359786e-09,-0.0799999963245841,-1.82299618109469e-09,7.68041012733174e-10,4.38745394182364e-10,-3.99073135648508e-11,2.75817563233391e-10,3.01595144344724e-06,-0.0964253995334444,-0.0604764999287977,0.0840757059138002,-2.90978179051724e-09,-1.51445696261499e-08,2.61336091655963e-09 +8.906,4.22507413474008e-09,-7.63228119246562e-09,-2.22848360945105e-09,-3.43671119340527e-10,-1.28074436472891e-09,-0.0800001459332019,-0.000118139707386421,-7.41962417208793e-05,9.85272067774022e-05,-4.30896637815306e-11,2.57065202458079e-10,-4.52925891236738e-10,3.40805942494824e-08,-1.30665877423637e-08,-7.01760698163122e-09,4.34765071166784e-10,-4.90623167093249e-09,0.0085963866233737 +8.908,-2.08156215923986e-06,-1.34432266915563e-06,1.77829476996801e-06,-3.43795346358089e-10,-1.28051100278803e-09,-0.0799999963263958,-1.68667380409678e-09,7.15774661763725e-10,4.10674966255843e-10,-3.81682532801839e-11,2.56192636549663e-10,3.74014979369383e-05,0.0135248461524579,0.0116030075048936,-0.0114442883151954,1.59269299138563e-09,-4.08180433900106e-09,-0.0165524580170819 +8.91,4.21832743952369e-09,-7.62941809381856e-09,-2.22684090958603e-09,-3.43823792353648e-10,-1.27971959418272e-09,-0.0799999963272102,-6.40403227765953e-05,-2.77842117013098e-05,5.27500535166256e-05,-3.67188918159888e-11,2.40737985102077e-10,-6.62102849942115e-05,-2.85778345432355e-08,8.61008313257447e-09,8.5673655669785e-10,1.2945373939474e-09,3.25607596440774e-09,-0.00935048699752873 +8.912,-2.33772345034633e-06,-1.45545951596091e-06,1.98929498403458e-06,-3.43942221925353e-10,-1.27954805084762e-09,-0.0800002611675358,-1.80098514226976e-09,7.50214994294034e-10,4.14101912482635e-10,-3.29901037043926e-11,2.69216940407298e-10,-4.5005318916052e-10,0.0510980980210469,0.027895676265897,-0.0444082989791996,2.29352127567226e-09,1.3438469087553e-08,0.0244704916867852 +8.914,4.21112349895461e-09,-7.62641723384139e-09,-2.22518450193609e-09,-3.43955752768466e-10,-1.27864272642109e-09,-0.0799999963290104,0.00014035206930757,8.3798493362266e-05,-0.000124883142400153,-2.75448067133008e-11,2.94491861452283e-10,3.16716817529185e-05,-7.48752730803758e-09,2.13479407754018e-09,-1.4731054918017e-09,1.44740990027149e-09,5.60315682710482e-10,-1.25940924350891e-09 +8.916,-1.77631517311611e-06,-1.12026554251188e-06,1.48976241443402e-06,-3.44052401152206e-10,-1.27837008340181e-09,-0.0800001344808088,-1.83093525150191e-09,7.58754170604194e-10,4.08209490515429e-10,-2.72004641033073e-11,2.7145820313814e-10,-4.55090826134556e-10,0.0185032661982004,0.0119589488325128,-0.0125148596294004,2.79897632848795e-09,-2.4568021228516e-09,0.000716404942313459 +8.918,4.2037997579486e-09,-7.62338221715897e-09,-2.22355166397403e-09,-3.44064554624879e-10,-1.27755689360853e-09,-0.0799999963308307,0.000214365134100396,0.000131634288692333,-0.000174942580917772,-1.63489013993452e-11,2.84664652960873e-10,3.45373015221733e-05,3.89634071532859e-08,-1.31461681817399e-08,-1.19085514018863e-08,3.23417508052195e-09,-6.12921172146626e-09,-0.0162857604355354 +8.92,-9.18854636714622e-07,-5.93728387742604e-07,7.89992090763011e-07,-3.44117796757804e-10,-1.27723142478997e-09,-0.0799999963316027,-1.67508162288878e-09,7.0616949787724e-10,3.60575284907889e-10,-1.42637637812209e-11,2.46941356252278e-10,-6.51434968329606e-05,-0.162313444273505,-0.0982204881765915,0.133633698652535,-4.31729305083823e-10,-2.13214862432356e-08,-0.00863443649131763 +8.922,4.19709943145705e-09,-7.62055753916746e-09,-2.2221093628344e-09,-3.44121609680004e-10,-1.27656912818352e-09,-0.0800002569048181,-0.000434888642993551,-0.00026124766401399,0.000359592213692311,-1.80758186196803e-11,1.9937870798794e-10,-4.44443093439211e-10,-3.98255376159955e-08,1.7413154251859e-08,3.26193065614061e-09,2.54375513708605e-09,5.20807355575251e-09,0.0242328168937515 +8.924,-2.65840920868864e-06,-1.63871904379845e-06,2.2283609455321e-06,-3.44190100032282e-10,-1.27643390995802e-09,-0.0799999963333805,-1.83438377335275e-09,7.75822114884669e-10,3.7362300753245e-10,-4.08874323287778e-12,2.67773650475285e-10,3.17877707420346e-05,0.230109759817567,0.138971195462812,-0.190485126764017,7.68265659423257e-09,3.06356502665904e-08,2.13891404592827e-09 +8.926,4.18976189636364e-09,-7.61745425070792e-09,-2.22061487080427e-09,-3.44137964652935e-10,-1.27549803358162e-09,-0.0800001297537351,0.000485550396276617,0.000294637117837197,-0.000402348293363675,1.26548077572466e-11,3.21921309054288e-10,-4.35887437255499e-10,3.80978343490682e-08,-1.18449087344015e-08,-1.11918937659136e-08,3.34649842559301e-09,-5.83647713492265e-09,-0.0153794269819284 +8.928,-7.1620762358152e-07,-4.60170572449264e-07,6.18967772076859e-07,-3.44139480801253e-10,-1.2751462247218e-09,-0.079999996335124,-1.68199243595642e-09,7.28442479947047e-10,3.28855432468781e-10,9.29725046949872e-12,2.44427741935587e-10,-2.97299371856995e-05,-0.164237431114527,-0.0996632012874289,0.137780669098242,-2.15973072757755e-10,-2.60611844604386e-08,3.42087469457863e-09 +8.93,4.18303392661981e-09,-7.61454048078813e-09,-2.2192994490744e-09,-3.44100775651057e-10,-1.27452032261388e-09,-0.0800002486734838,-0.000171399328181417,-0.000104015687312474,0.000148774383029233,1.17909154662157e-11,2.17676571212546e-10,-4.22203938477186e-10,-2.72178113362024e-09,3.54187165699399e-09,-3.48733628783536e-09,2.79659108370745e-09,-2.51534904287954e-11,0.00590495891853785 +8.932,-1.40180493630711e-06,-8.76233321699116e-07,1.21406530419373e-06,-3.44092317139388e-10,-1.27427551843695e-09,-0.0799999963368128,-1.6928795604909e-09,7.42609966575022e-10,3.14906087317441e-10,2.04836148043273e-11,2.44327127973872e-10,-6.11010151155074e-06,-0.0209516737817837,-0.0122397422900087,0.0151490136258903,1.53457975493564e-09,1.69352379342198e-09,-8.40473524110575e-09 +8.934,4.17626240837785e-09,-7.61157004092183e-09,-2.21803982472513e-09,-3.4401884119184e-10,-1.27354301410199e-09,-0.0800002731138899,-0.000255206023308579,-0.000152974656472525,0.000209370437532815,1.79292344859603e-11,2.24450666386236e-10,-4.5582287944162e-10,-4.01993163151479e-08,1.60739477284871e-08,5.45928319915242e-09,1.31665511826896e-09,5.46394526848627e-09,0.00898432635405974 +8.936,-2.42262902954132e-06,-1.48813194758915e-06,2.05154705432489e-06,-3.44020600201445e-10,-1.27337771577141e-09,-0.0799999963386361,-1.85367682575148e-09,8.06905757488963e-10,3.36743220114048e-10,2.57502352774026e-11,2.66182909047815e-10,2.98272039046843e-05,0.104990412744283,0.0622424525219404,-0.086112653952211,3.50630982581889e-09,1.63766569749627e-08,-2.77208811461154e-09 +8.938,4.16884770107484e-09,-7.60834241789188e-09,-2.21669285184467e-09,-3.4391584025073e-10,-1.27247828246579e-09,-0.0800001538050743,0.000164755627668507,9.5995153615209e-05,-0.000135080178275991,3.19544737892343e-11,2.89957294286079e-10,-4.66911231900065e-10,4.9398148332252e-09,2.7235158572844e-10,-1.81549653782737e-09,1.46714237980771e-09,-6.84782092141998e-10,-0.00589902900225694 +8.94,-1.76360651886736e-06,-1.10415133312836e-06,1.51122634122099e-06,-3.43892782306288e-10,-1.27221788659426e-09,-0.0799999963405038,-1.83391756641858e-09,8.07995163831876e-10,3.29481233962739e-10,3.16188047966327e-11,2.63443780679247e-10,6.23108789565909e-06,-0.0564216348193096,-0.0333951111670721,0.0484574788537369,3.26995375218006e-10,-9.6654455273038e-09,2.38177533256746e-09 +8.942,4.16151203080917e-09,-7.60511043723655e-09,-2.21537492690882e-09,-3.43789365031544e-10,-1.27142450734308e-09,-0.0800001288807227,-6.09309116087064e-05,-3.75852910530646e-05,5.87497371389347e-05,3.32624552901062e-11,2.51295512176868e-10,-4.57384130569796e-10,8.39760661182166e-09,-1.843143693225e-10,-2.30848326565562e-09,1.39818712163699e-09,-1.04517089427579e-09,-2.82302480003531e-06 +8.944,-2.00733016530227e-06,-1.25449249734066e-06,1.7462252897768e-06,-3.43759732485127e-10,-1.27121270454555e-09,-0.0799999963423333,-1.80032713997128e-09,8.07257906354586e-10,3.20247300900114e-10,3.72115532831826e-11,2.59263097102142e-10,6.21979579645895e-06,0.0263899938114438,0.0166214415421405,-0.0233201255669325,1.65882932390688e-09,3.07956785075641e-09,8.76035355317693e-10 +8.946,4.15431072224928e-09,-7.60188140561113e-09,-2.21409393770522e-09,-3.43640518818411e-10,-1.27038745495467e-09,-0.0800001040015395,4.46290636370572e-05,2.89004751154902e-05,-3.45307651287849e-05,3.9897772585733e-11,2.63613783579893e-10,-4.53879989148526e-10,7.00204868065282e-09,-8.31583066385835e-10,-1.59995714597205e-09,6.91937826475963e-10,-9.05525654488466e-10,-0.000665782965217896 +8.948,-1.82881391075406e-06,-1.13889059687872e-06,1.60810222926168e-06,-3.43600141394784e-10,-1.27015824941124e-09,-0.0799999963441488,-1.77231894524867e-09,8.03931574089043e-10,3.13847472316226e-10,3.99793045890861e-11,2.55640994484189e-10,3.55666393558766e-06,-0.0143528071889544,-0.00901552974050229,0.0118621513506989,-3.96817995129611e-11,-2.84451281973234e-09,1.2802259252706e-09 +8.95,4.14722144646829e-09,-7.59866567931478e-09,-2.21283854781595e-09,-3.43480601600055e-10,-1.26936489097673e-09,-0.0800000897748838,-1.27821651187797e-05,-7.16164384653102e-06,1.29178402740266e-05,3.97390453876811e-11,2.52235732300959e-10,-4.48759085447442e-10,4.28633907861699e-09,-1.4101133454457e-09,-4.26416714403803e-10,-1.62630325868423e-10,-5.18682319288804e-10,-0.000450160883395649 +8.952,-1.87994257122917e-06,-1.16753717226484e-06,1.65977359035778e-06,-3.43441185213234e-10,-1.26914930648203e-09,-0.0799999963459438,-1.7551735889342e-09,7.98291120707261e-10,3.12141805458611e-10,3.93287832856125e-11,2.53566265207034e-10,1.75602040200526e-06,0.00615856816832172,0.00364276458997362,-0.00597614243985418,-3.98986399474753e-10,6.45317133063521e-10,6.27969898303738e-10 +8.954,4.14020075211255e-09,-7.59547251483195e-09,-2.21158998059412e-09,-3.43323286466912e-10,-1.2683506259159e-09,-0.0800000827508022,1.18521075545045e-05,7.40941451336184e-06,-1.09867294853875e-05,3.81430997897822e-11,2.54817000833213e-10,-4.46247205854227e-10,2.06754643787603e-09,-1.92619357963817e-09,5.743018907657e-10,-8.78854281016944e-10,-2.42861286636806e-10,-0.000229989759008337 +8.956,-1.83253414101116e-06,-1.13789951421139e-06,1.61582667241623e-06,-3.43288612814074e-10,-1.2681300384787e-09,-0.0799999963477288,-1.7469034031827e-09,7.90586346388709e-10,3.14439013021674e-10,3.58133661615451e-11,2.52594820060487e-10,8.36061365972011e-07,-0.00369047463484536,-0.00232271543708739,0.00292595710735398,-1.22926842316802e-09,-6.36209834842649e-10,7.13838710413842e-10 +8.958,4.13321313849982e-09,-7.59231016944639e-09,-2.21033222454203e-09,-3.43180033002266e-10,-1.26734024663566e-09,-0.0800000794065567,-2.90979098487531e-06,-1.88144723498672e-06,7.17098944027116e-07,3.32260260971107e-11,2.52272161493843e-10,-4.43391851012572e-10,3.22914980345406e-08,-1.29011384908366e-08,-4.26655238916401e-09,-1.00332069041786e-09,-4.3329055621201e-09,0.00498200072428817 +8.96,-1.84417330495066e-06,-1.14542530315134e-06,1.61869506819234e-06,-3.43155708709686e-10,-1.26712094983272e-09,-0.0799999963495024,-1.6177374110445e-09,7.38981792425345e-10,2.97372803465012e-10,3.18000833998723e-11,2.35263197812e-10,2.07640642631313e-05,-0.0332265990950773,-0.0181273325612325,0.0288753366974535,-1.6894038251636e-09,-1.03181352350843e-08,-0.0125391517238921 +8.962,4.12674218885564e-09,-7.58935424227669e-09,-2.20914273332817e-09,-3.43052832668667e-10,-1.26639919384441e-09,-0.0799999963502996,-0.00013581618736517,-7.43907774799087e-05,0.000116218445733828,2.6468410796457e-11,2.1099962055351e-10,-5.01570502874138e-05,-3.16143053576204e-08,7.62172443214029e-09,5.97232766713772e-09,-1.6881027825603e-09,4.23923049441925e-09,-0.00519112622766302 +8.964,-2.38743805441128e-06,-1.44298841307094e-06,2.08356885112761e-06,-3.430498350665e-10,-1.26627695135051e-09,-0.0800001969777036,-1.74419463247496e-09,7.69468690153903e-10,3.2126211413356e-10,2.50476722696319e-11,2.52220119789676e-10,-4.40647518473773e-10,0.0776424059094021,0.0433796328814821,-0.0688499463187314,-6.73506389548144e-10,1.85962356624755e-08,0.0181404134682496 +8.966,4.11976541032574e-09,-7.58627636751608e-09,-2.20785768487164e-09,-3.42952641979588e-10,-1.26539031336526e-09,-0.0799999963520622,0.000174753436272404,9.91277540460007e-05,-0.000159181339541067,2.37743852382648e-11,2.85384563203404e-10,2.24046035855765e-05,-1.0047626792879e-08,-1.35308431211586e-10,4.68147656053845e-09,-2.45983788893734e-09,1.5820678100625e-09,-1.28022592522168e-09 +8.968,-1.68842430932174e-06,-1.04647739688699e-06,1.44684349296341e-06,-3.42954737525547e-10,-1.2651354130977e-09,-0.0800001073592892,-1.78438513964648e-09,7.68927456429057e-10,3.39988020375712e-10,1.52083207138836e-11,2.58548391029925e-10,-4.45768422174659e-10,-0.0630545970450944,-0.0372542303846063,0.056126833684399,-3.45383444066905e-09,-9.4824322005561e-09,-0.00526664208511683 +8.97,4.11262786976715e-09,-7.58320065769036e-09,-2.20649773279014e-09,-3.42891808696733e-10,-1.26435611980114e-09,-0.0799999963538453,-7.74649519080576e-05,-4.98891674924742e-05,6.5325995196604e-05,9.95904747558395e-12,2.47454834401167e-10,1.33803524510216e-06,9.42957734267053e-10,-2.07451243674887e-09,2.1707895897887e-09,-1.63454319523782e-09,1.31838984202971e-10,7.16440795529089e-10 +8.972,-1.99828411695394e-06,-1.24603406685686e-06,1.7081474737498e-06,-3.42914901335645e-10,-1.26414559376009e-09,-0.0800001020071482,-1.78061330870941e-09,7.60629406682062e-10,3.48671178734866e-10,8.67014793293304e-12,2.59075746966737e-10,-4.42902658992543e-10,0.0936419915814933,0.0579558615196244,-0.0786065675812357,1.02869102125291e-09,9.8003202775013e-09,0.00626866498987089 +8.974,4.10550541653232e-09,-7.58015814006363e-09,-2.2051030480752e-09,-3.42857128105001e-10,-1.26331981681327e-09,-0.0799999963556169,0.000297103014417875,0.000181934278585998,-0.000249100275128304,1.40738115605951e-11,2.86656115511168e-10,2.6412695204583e-05,3.83468213779794e-08,-1.4861809699559e-08,-6.16379777079597e-09,-4.98949839777717e-10,-5.27139096262334e-09,-0.0133901670636813 +8.976,-8.09872059282044e-07,-5.18296952512626e-07,7.11746373236247e-07,-3.42858606089402e-10,-1.26299896929805e-09,-0.0799999963563674,-1.62722602319744e-09,7.01182167883807e-10,3.24015987651674e-10,6.6743485738215e-12,2.37990183116236e-10,-5.35611111574023e-05,-0.19083752985392,-0.115163887638025,0.159888083313611,-4.98494474865339e-09,-2.50450701843888e-08,-0.00660328158905701 +8.978,4.09899651243953e-09,-7.5773534113921e-09,-2.20380698412459e-09,-3.42830430710706e-10,-1.2623678560808e-09,-0.0800002106000615,-0.000466247104997721,-0.000278721271966052,0.000390452058126071,-5.86596743401622e-12,1.86475834773623e-10,-4.31151642166275e-10,-4.12145361242213e-08,1.43589567319667e-08,8.94152373670717e-09,-1.44025416593006e-09,5.9622445869336e-09,0.0196428376255569 +8.98,-2.67486047927272e-06,-1.63318204037671e-06,2.27355460574036e-06,-3.42882069959138e-10,-1.26225306595895e-09,-0.079999996358092,-1.79208416769431e-09,7.58617994811667e-10,3.59782082598498e-10,9.1333191010189e-13,2.61839161463968e-10,2.50102393448165e-05,0.184677072233115,0.110096579973207,-0.155504918279043,2.5550308396799e-09,2.94582067073066e-08,-4.63778321302502e-09 +8.982,4.09182817576875e-09,-7.57431893941285e-09,-2.2023678557942e-09,-3.42826777383065e-10,-1.26132049943495e-09,-0.0800001105591042,0.000272461183934659,0.000161665047926727,-0.000231567614990034,4.35415592470227e-12,3.04308661602837e-10,-4.49702775018373e-10,3.1157937558352e-08,-1.10102899021066e-08,-3.83915989281025e-09,-5.4080004363575e-10,-4.09915157376134e-09,0.000884841306125562 +8.984,-1.58501574353421e-06,-9.86521848669875e-07,1.34728414578032e-06,-3.4286465333544e-10,-1.26103583131254e-09,-0.0799999963598908,-1.66745241746091e-09,7.14576835203246e-10,3.44425443027259e-10,-1.24986826444087e-12,2.45442555168925e-10,2.85496045693183e-05,-0.13656674473328,-0.0802611217864604,0.116964191362234,-2.79008587067357e-09,-2.62953721297195e-08,-0.0145344451613039 +8.986,4.08515836609891e-09,-7.57146063207204e-09,-2.20099015402209e-09,-3.42831776856123e-10,-1.26033872921427e-09,-0.0799999963606859,-0.000273805794998643,-0.000159379439219221,0.000236289150459057,-6.80618755799575e-12,1.99127173083924e-10,-5.81382303480102e-05,-2.81156120522484e-08,9.60798281221349e-09,4.26926289463535e-09,-9.28077059649184e-11,3.81032011501114e-09,-0.00713751168324707 +8.988,-2.68023892352866e-06,-1.62403960554669e-06,2.29244074761645e-06,-3.42891878085672e-10,-1.2602393226202e-09,-0.0800002289128122,-1.77991486566989e-09,7.53008766452095e-10,3.61502494605799e-10,-1.6210990883005e-12,2.60683835628967e-10,-4.42163666791777e-10,0.134150082814201,0.0781831446510647,-0.115694241703589,2.46070525067331e-09,2.65703258006397e-08,0.0215313300131972 +8.99,4.07803870663623e-09,-7.56844859700623e-09,-2.19954414404366e-09,-3.42838261252476e-10,-1.25929599387176e-09,-0.0799999963624545,0.000262794536258101,0.000153353139385003,-0.000226487816355249,3.03663344469639e-12,3.05408476286471e-10,2.79870897047691e-05,-6.16843273508333e-09,2.20179777188306e-09,2.08817338420662e-09,-3.35668992601437e-10,9.96598636948459e-10,-1.15879528195225e-09 +8.992,-1.6290607784959e-06,-1.01062704800647e-06,1.38648948219515e-06,-3.42879731551893e-10,-1.25901768871506e-09,-0.0800001169644534,-1.80458859661023e-09,7.61815957539631e-10,3.69855188142628e-10,-2.9637750587067e-12,2.64670230176763e-10,-4.46798847919588e-10,-0.093755540888119,-0.056063217457754,0.081387859076312,-1.89453487620125e-09,-1.4681832138899e-08,-0.00626777274872863 +8.994,4.07082035224979e-09,-7.56540133317607e-09,-2.19806472329109e-09,-3.42850116352711e-10,-1.25823731295105e-09,-0.0799999963642417,-0.000112227627294333,-7.08997304459886e-05,9.90636199499633e-05,-4.54150606010778e-12,2.46681147730881e-10,2.91599870985736e-06,3.93996358975886e-09,7.02563007770943e-11,-7.09393481457421e-10,5.90456503135736e-10,-4.3454823073229e-10,7.15573433840589e-10 +8.996,-2.07797128767319e-06,-1.2942259697904e-06,1.78274396199496e-06,-3.42897897576133e-10,-1.25803096412413e-09,-0.0800001053004586,-1.7888287422512e-09,7.62096982742739e-10,3.67017614216798e-10,-6.01949046164018e-13,2.62932037253834e-10,-4.43936554184226e-10,0.107175297505462,0.0661530353814287,-0.0910257703673288,3.51151399624683e-09,1.14543791118774e-08,0.00607935578701142 +8.998,4.06366503728078e-09,-7.5623529452451e-09,-2.19659665283423e-09,-3.42852524148896e-10,-1.25718558480203e-09,-0.0799999963660175,0.000316473562727467,0.000193712411079697,-0.000265039461519312,9.50454992487797e-12,2.92498664178386e-10,2.72334218579003e-05,4.02175580166928e-08,-1.31168947232458e-08,-8.97578452539449e-09,1.5935603531189e-09,-5.75494513158096e-09,-0.0131101356506928 +9,-8.12077036763462e-07,-5.19376325471693e-07,7.22586115917828e-07,-3.42859879376434e-10,-1.25686096946742e-09,-0.0799999963667711,-1.62795851018445e-09,7.09629403849761e-10,3.31114476115224e-10,5.7722923663109e-12,2.39912256727512e-10,-5.24409865393196e-05,-0.196264032422126,-0.118314753194742,0.166034042411442,-3.15307675802164e-09,-2.65711931623998e-08,-0.00680846337034455 +9.002,4.05715320324004e-09,-7.5595144276297e-09,-2.19527219492976e-09,-3.4282943497943e-10,-1.25622593577512e-09,-0.0800002061299636,-0.000468582566961299,-0.000279546601699428,0.000399096708126679,-3.10775710721279e-12,1.86213891528751e-10,-4.31623486951741e-10,-3.95008732756254e-08,1.5079300655445e-08,6.16249672822848e-09,3.81205483846628e-10,5.43662337373914e-09,0.0194430540062156 +9.004,-2.68640730460845e-06,-1.63756273226928e-06,2.31897294842437e-06,-3.42872310404863e-10,-1.25611611390131e-09,-0.0799999963684976,-1.78596200328693e-09,7.69946606471535e-10,3.55764463028136e-10,7.29711430169724e-12,2.61658750222466e-10,2.5331229485534e-05,0.186363554490208,0.110966907184964,-0.159368470269614,4.26915447437831e-09,2.9525427241967e-08,-4.44869835409361e-09 +9.006,4.0500093552269e-09,-7.55643464120381e-09,-2.19384913707765e-09,-3.42800246522224e-10,-1.25517930077423e-09,-0.0800001048050457,0.000276871650999451,0.000164321027040379,-0.000238377172951707,1.39688607902986e-11,3.04315600496606e-10,-4.49418280368113e-10,1.01318693018747e-09,-5.31909585821263e-10,-7.55797334439483e-10,5.35812713642217e-10,-2.16406753628047e-10,-0.0057145042378624 +9.008,-1.57892070061028e-06,-9.80278624107545e-07,1.36546425661722e-06,-3.42816434961701e-10,-1.25489885149932e-09,-0.0799999963702953,-1.78190925556618e-09,7.67818968128249e-10,3.52741273690377e-10,9.44036515626682e-12,2.60793123207954e-10,2.47321253407678e-06,-0.0990221605959814,-0.0594204885454066,0.0859799848418949,-1.32337717173455e-09,-1.58453979104109e-08,2.50060389057122e-09 +9.01,4.04288171820463e-09,-7.5533633653313e-09,-2.19243817198289e-09,-3.42762485061598e-10,-1.2541361282814e-09,-0.0800000949121956,-0.000119216991384431,-7.33609271412206e-05,0.000105542766415835,8.67535210336097e-12,2.40934008854969e-10,-4.39415864805829e-10,4.25785166673169e-09,-5.6768825751355e-10,-1.786548339822e-09,9.57350518304911e-10,-6.6049596347832e-10,0.0003352928273568 +9.012,-2.05578866614795e-06,-1.27372233267239e-06,1.78763532228052e-06,-3.42781733553288e-10,-1.2539351154639e-09,-0.079999996372053,-1.76487784889925e-09,7.65548215098195e-10,3.4559508033109e-10,1.3269767229486e-11,2.58151139354041e-10,3.81438384350383e-06,0.0472780900874889,0.0293978221089434,-0.041117031164928,2.00078668910519e-09,6.56549467570467e-09,1.93421667571461e-10 +9.014,4.03582220680904e-09,-7.55030117247091e-09,-2.19105579166157e-09,-3.42709405992681e-10,-1.25310352372399e-09,-0.0800000796546602,6.98953689655034e-05,4.42303612945401e-05,-5.89253582438591e-05,1.66784988597808e-11,2.67195987557785e-10,-4.38642178135544e-10,4.29878029893705e-09,-8.09031661193481e-10,-1.9657669589714e-09,9.26125495735437e-10,-6.96491475633199e-10,-0.000288490027006509 +9.016,-1.77620719028597e-06,-1.09680088749425e-06,1.55193388930511e-06,-3.42715019557849e-10,-1.25286633151367e-09,-0.0799999963738075,-1.74768272770351e-09,7.62312088453421e-10,3.37732012495205e-10,1.69742692124274e-11,2.55365173451509e-10,2.66042373547792e-06,0.0406297018458398,0.0241125813161701,-0.0345996548282739,2.0010035295388e-09,1.26981758441474e-09,7.28236915214901e-09 +9.018,4.02883147589822e-09,-7.54725192411709e-09,-2.18970486361159e-09,-3.42641508915831e-10,-1.25208206303018e-09,-0.0800000690129652,0.000232414176348917,0.000140680686559253,-0.000197323977557001,2.46825129779387e-11,2.72275257895446e-10,-4.09512701526938e-10,3.77097441812499e-08,-1.33040280180534e-08,-8.61908201057241e-09,1.21777588013787e-09,-5.50818071706821e-09,-0.00665362277600784 +9.02,-8.46550484890404e-07,-5.34078141257305e-07,7.62637979077191e-07,-3.42616289505937e-10,-1.25177723048209e-09,-0.0799999963754456,-1.59684375097853e-09,7.09095976381214e-10,3.03255684452919e-10,2.18453727329783e-11,2.33332450583238e-10,-2.39540673685505e-05,-0.167676140168203,-0.0997086708402521,0.142370270485879,-3.1584977688868e-09,-2.20049672927911e-08,-3.84067777576633e-09 +9.022,4.02244410089431e-09,-7.54441554021157e-09,-2.18849184087377e-09,-3.42554127424899e-10,-1.25114873322785e-09,-0.0800001648292347,-0.00043829038432382,-0.000258153996801712,0.000372157104386453,1.20485219023929e-11,1.84255388724291e-10,-4.24875412630002e-10,-4.11528992306972e-08,1.32326875151826e-08,6.74493013524807e-09,-4.36066113773573e-10,5.54504359095862e-09,0.0107619905469873 +9.024,-2.59971202218627e-06,-1.5666941284645e-06,2.2512663966235e-06,-3.42568095418327e-10,-1.25104020892719e-09,-0.0799999963771451,-1.76145534790137e-09,7.62026726441962e-10,3.3023540499392e-10,2.01011082778835e-11,2.5551262494708e-10,1.90938948194129e-05,0.173422495500719,0.101859940079173,-0.148646081263621,3.11729808633235e-09,2.78947871746026e-08,-4.41834069336108e-09 +9.026,4.0153982795027e-09,-7.5413674333058e-09,-2.1871708992538e-09,-3.42473722991787e-10,-1.25012668272806e-09,-0.0800000884536554,0.00025539959767898,0.000149285763514933,-0.000222427220667964,2.45177142477209e-11,2.95834537422689e-10,-4.42548775403444e-10,-7.7932452158277e-10,-1.14231540893098e-09,5.63893549909825e-10,-4.15899953365531e-10,8.45677694538916e-11,-0.00433324708060219 +9.028,-1.57811363147046e-06,-9.69551074404829e-07,1.36155751395174e-06,-3.42470024561337e-10,-1.2498568707775e-09,-0.0799999963789153,-1.7645726459877e-09,7.57457464806238e-10,3.32490979193559e-10,1.84375084644215e-11,2.55850896024896e-10,1.76090649700608e-06,-0.0232114516454334,-0.0132364750989334,0.0220095027217692,-3.79687600804507e-10,-8.36310187768602e-09,8.33447894033241e-09 +9.03,4.00833998891875e-09,-7.53833760344658e-09,-2.18584093533702e-09,-3.4239997295793e-10,-1.24910327914396e-09,-0.0800000814100295,0.000162553791097256,9.63398631192056e-05,-0.000134389209780897,2.2998963844503e-11,2.62382129911949e-10,-4.09210859642118e-10,3.76555611780531e-08,-1.34703446314755e-08,-7.27792392327873e-09,5.15212872362949e-10,-5.30998855999223e-09,-0.00631033162702566 +9.032,-9.27898467081509e-07,-5.84191621928049e-07,8.24000674828212e-07,-3.42378028705959e-10,-1.24880734225785e-09,-0.0799999963805521,-1.6139504012755e-09,7.03576086280342e-10,3.03379283500448e-10,2.04983599538731e-11,2.34610941784929e-10,-2.34804200110938e-05,-0.143472170878131,-0.0843979417819598,0.120297956883144,-3.13572952326187e-09,-1.81291613665606e-08,-3.99940497386363e-09 +9.034,4.00188418731365e-09,-7.53552329910145e-09,-2.18462741820302e-09,-3.42317979518114e-10,-1.24816483537682e-09,-0.0800001753317095,-0.00041133489241546,-0.000241251904008746,0.00034680261775184,1.04560457514514e-11,1.89865484445682e-10,-4.25208479537578e-10,-3.93635861755328e-08,1.31786942470768e-08,7.43036274873023e-09,-8.09682182410077e-10,5.51511961102654e-09,0.0111258369635268 +9.036,-2.57323803674317e-06,-1.54919923796293e-06,2.21121114583542e-06,-3.42336204522953e-10,-1.24804788032007e-09,-0.079999996382253,-1.77140474597762e-09,7.56290863268644e-10,3.33100734495365e-10,1.72596312242331e-11,2.56671420229033e-10,2.10229278430086e-05,0.163268083241858,0.0956072653875898,-0.138597733671707,2.57888328747228e-09,2.61366449316466e-08,-4.02889527290802e-09 +9.038,3.99479856832974e-09,-7.53249813564838e-09,-2.18329501526504e-09,-3.42248940993217e-10,-1.2471381496959e-09,-0.0800000912399981,0.000241737440551902,0.000141177157541571,-0.000207588316934928,2.07715789013394e-11,2.94412064172257e-10,-4.41324060629208e-10,3.17772067340222e-08,-1.11607771635633e-08,-4.28997115608969e-09,-3.27429056090549e-10,-4.20453602489785e-09,0.000672717936911332 +9.04,-1.60628827453524e-06,-9.84490607796457e-07,1.38085787809543e-06,-3.42253118207347e-10,-1.24687023206338e-09,-0.0799999963840183,-1.64429591904149e-09,7.11647754614376e-10,3.15940849871001e-10,1.59499149998705e-11,2.39853276129436e-10,2.37137995906548e-05,-0.124514641496412,-0.0718155972047158,0.107780491610637,-2.57519700008583e-09,-2.46187618901666e-08,-0.0122653064042077 +9.042,3.98822138465357e-09,-7.52965154462992e-09,-2.18203125186556e-09,-3.42185141333218e-10,-1.24617873659139e-09,-0.0799999963847998,-0.000256321125433692,-0.000146085231277261,0.000223533649507571,1.04707909009972e-11,1.95937016611602e-10,-4.90616669408859e-05,-2.73723372527156e-08,8.84947497226314e-09,4.31783515192448e-09,-3.33717428691112e-10,3.68888947166549e-09,-0.00592855815568497 +9.044,-2.63157277626989e-06,-1.56883153290543e-06,2.27499247612561e-06,-3.42211235043743e-10,-1.24608648399693e-09,-0.080000192630686,-1.75378526805234e-09,7.47045654503424e-10,3.33212190478697e-10,1.46150452851062e-11,2.54608834016096e-10,-4.33032082414234e-10,0.127143402067424,0.0726730806860872,-0.111003631336914,1.89410119533259e-09,2.55320938003013e-08,0.0183893478049353 +9.046,3.98120624358136e-09,-7.52666336201191e-09,-2.18069840310364e-09,-3.42126681152077e-10,-1.24516030125532e-09,-0.0799999963865319,0.000252252482835946,0.000144607091467056,-0.000220480875840035,1.80471956823267e-11,2.98065391812796e-10,2.44957242788473e-05,-5.93351322916536e-09,1.40013868546452e-09,2.74151361330924e-09,-9.48676900926227e-10,1.04777297946149e-09,-1.02608893599198e-09 +9.048,-1.62256284492622e-06,-9.90403167037274e-07,1.39306897276557e-06,-3.42139046261014e-10,-1.24489422242968e-09,-0.0800000946477889,-1.777519320969e-09,7.52646209245282e-10,3.44178244931932e-10,1.08203376814017e-11,2.58799925933941e-10,-4.37136438158202e-10,-0.0899815130831832,-0.0529425304002382,0.0788567942609913,-2.6044704587441e-09,-1.40803167736316e-08,-0.00548131981730498 +9.05,3.97409616629749e-09,-7.52365277717493e-09,-2.17932169012391e-09,-3.42083399801352e-10,-1.24412510155159e-09,-0.0799999963882804,-0.000107673569496907,-6.71630301339673e-05,9.4946301204036e-05,7.62931384734684e-12,2.41744124718251e-10,2.57044500962006e-06,3.66517254894499e-09,-6.69169580774634e-10,4.60243822258404e-10,-3.1246706610919e-10,-2.86663054376493e-10,7.80625564141194e-10 +9.052,-2.0532571229138e-06,-1.25905528757311e-06,1.77285417758168e-06,-3.42108529005625e-10,-1.24392724593081e-09,-0.0800000843660089,-1.76285863077322e-09,7.49969530922184e-10,3.46019220220966e-10,9.5704694169651e-12,2.57653273716436e-10,-4.34013935901637e-10,0.0430443220859337,0.0267109492968068,-0.0369741968369426,8.10983225018129e-10,6.16087042490341e-09,0.000223039443684678 +9.054,3.96704473177439e-09,-7.52065289905124e-09,-2.17793761324303e-09,-3.42045117923684e-10,-1.24309448845672e-09,-0.0799999963900165,6.45037188468091e-05,3.96807670532482e-05,-5.29504861437182e-05,1.0873246747419e-11,2.66387606417861e-10,3.46260278435868e-06,4.60905185545211e-09,-7.3465539207601e-10,-2.86012533101606e-10,1.5178830414796e-12,-4.87023615880378e-10,8.3873880063461e-10 +9.056,-1.79524224752647e-06,-1.10033221936007e-06,1.56105223300673e-06,-3.42065036018635e-10,-1.24286169550514e-09,-0.0800000705155977,-1.7444224233514e-09,7.47030909353879e-10,3.44875170088559e-10,9.57654094913102e-12,2.55705179252913e-10,-4.30658980699098e-10,-0.0222185200600031,-0.0134146274546439,0.0190125344258349,-4.3368086899309e-10,-3.87233647922051e-09,-0.000303151888140745 +9.058,3.96006704208099e-09,-7.51766477541382e-09,-2.17655811256268e-09,-3.42006811759887e-10,-1.24207166773971e-09,-0.0799999963917391,-2.43703613931934e-05,-1.39777427653214e-05,2.3099651559613e-05,9.13852327144683e-12,2.50898260500981e-10,2.24999523179584e-06,3.56669988682637e-09,-7.22946008613492e-10,-4.26850395307642e-10,4.33680868994298e-11,-4.08961059461629e-10,6.65266453037243e-10 +9.06,-1.89272369309924e-06,-1.15624319042135e-06,1.65345083924517e-06,-3.42028481925549e-10,-1.24185810246313e-09,-0.0800000615156168,-1.7301556238041e-09,7.44139125319425e-10,3.43167768507329e-10,9.75001329672872e-12,2.54069335015067e-10,-4.27997914886949e-10,0.0103614341236212,0.00620975854027717,-0.00932663224288124,2.52835946623675e-10,1.27719015918821e-09,-0.000230681790509885 +9.062,3.95314641958577e-09,-7.51468821891255e-09,-2.17518544148865e-09,-3.419678117067e-10,-1.24105539039965e-09,-0.0799999963934511,1.70753751012871e-05,1.08612913957846e-05,-1.42068774119078e-05,1.01498670579414e-11,2.56007021137733e-10,1.3272680697564e-06,2.19591597528941e-09,-7.72385627761115e-10,-4.05057931678589e-10,1.36609473722316e-11,-2.81892564874373e-10,5.34294830648259e-10 +9.064,-1.8244221926941e-06,-1.11279802483821e-06,1.59662332959755e-06,-3.41987882457317e-10,-1.24083407437858e-09,-0.0800000562065445,-1.72137195990294e-09,7.41049582808381e-10,3.41547536780615e-10,9.80465708621764e-12,2.5294176475557e-10,-4.25860735564356e-10,-0.00556443167088594,-0.00342011477992489,0.00464547550698188,-1.13190706807461e-10,-1.08029904466431e-09,-0.000127275892082528 +9.066,3.94626093174616e-09,-7.51172402058131e-09,-2.17381925134152e-09,-3.41928593078356e-10,-1.24004362334063e-09,-0.0799999963951546,-5.18235158226415e-06,-2.81916772391952e-06,4.37502461602588e-06,9.69710423071142e-12,2.51685824959075e-10,8.18164501426112e-07,1.222736104884e-09,-8.4806293923608e-10,-3.96059053571129e-10,6.5052130458028e-13,-2.3158558401487e-10,4.06792655069366e-10 +9.068,-1.84515159902315e-06,-1.12407469573389e-06,1.61412342806165e-06,-3.41949094040395e-10,-1.23982733107875e-09,-0.0800000529338865,-1.71648101548341e-09,7.37657331051437e-10,3.3996330056633e-10,9.80725917143596e-12,2.5201542241951e-10,-4.24233564944079e-10,0.00250285943728149,0.00151178344560789,-0.00229771418113874,6.96057794724772e-11,1.86049092770525e-10,-5.00986595959005e-05 +9.07,3.93939500768423e-09,-7.50877339125711e-09,-2.17245939813926e-09,-3.4188936404167e-10,-1.23903556165095e-09,-0.0799999963968515,4.82908616686069e-06,3.22796605851137e-06,-4.81583210852807e-06,9.9755273486013e-12,2.52430021330157e-10,6.17769863042532e-07,7.40482978753092e-10,-8.83407930140997e-10,-4.46799715281179e-10,3.2959746043552e-11,-1.76508113680607e-10,4.02455846426537e-10 +9.072,-1.8258352543557e-06,-1.11116283149984e-06,1.59486009962753e-06,-3.41909191931e-10,-1.23881761099343e-09,-0.0800000504628071,-1.71351908356839e-09,7.34123699330872e-10,3.38176101705205e-10,9.93909815561021e-12,2.51309389964788e-10,-4.22623741558372e-10,-0.00138870636428493,-0.000808858574953719,0.00117944176137853,1.25767452019419e-11,-3.67327696010134e-10,-1.5169391784299e-05 +9.074,3.93254093134995e-09,-7.50583689645978e-09,-2.17110669373244e-09,-3.41849607649047e-10,-1.23803032409109e-09,-0.079999996398542,-7.25739290278412e-07,-7.46824130315542e-09,-9.80650630144738e-08,1.00258343294091e-11,2.50960710546116e-10,5.57092295905343e-07,5.63188818497761e-10,-8.92732068824766e-10,-4.99491940864179e-10,6.59194920871332e-11,-1.55257751099954e-10,3.36536354339576e-10 +9.076,-1.82873821151681e-06,-1.11119270446505e-06,1.59446783937547e-06,-3.41869088593683e-10,-1.23781376815124e-09,-0.0800000482344379,-1.7112663282944e-09,7.30552771055573e-10,3.36178133941748e-10,1.02027761239587e-11,2.50688358960388e-10,-4.21277596141014e-10,0.000590246376081091,0.00038325677939434,-0.000505092904784274,9.82287168272084e-11,-6.07153216592079e-11,-8.49557490329076e-06 +9.078,3.92569586603678e-09,-7.50291468537556e-09,-2.16976198119667e-09,-3.41808796544552e-10,-1.23702757065525e-09,-0.0799999964002271,1.63524621404569e-06,1.52555887627404e-06,-2.11843668215135e-06,1.04187491967179e-11,2.5071784925948e-10,5.23109996292184e-07,5.02419286919624e-10,-7.4940054170292e-10,-5.07840297629412e-10,9.64939933500553e-11,-1.55691431996711e-10,3.2265856657838e-10 +9.08,-1.82219722666063e-06,-1.10509046895996e-06,1.58599409264687e-06,-3.41827413596896e-10,-1.2368108967542e-09,-0.0800000461419979,-1.70925665114672e-09,7.27555168888762e-10,3.34146772751231e-10,1.05887520973589e-11,2.50065593232401e-10,-4.19986961874701e-10,-0.000372452568434036,-0.000214024092719208,0.000355723726625051,1.08637057683023e-10,-2.28983498828888e-10,-1.31334196989933e-05 +9.082,3.91885883943219e-09,-7.50000446470001e-09,-2.16842539410567e-09,-3.41766441536162e-10,-1.23602730828232e-09,-0.0799999964019071,1.45435940309047e-07,6.69462505396919e-07,-6.9554177565067e-07,1.08532974274501e-11,2.49801915264164e-10,4.70576317496193e-07,4.68510863595667e-10,-6.57243356880083e-10,-4.80626823025835e-10,1.20346441147093e-10,-1.29670579801531e-10,2.81892564799669e-10 +9.084,-1.8216154828994e-06,-1.10241261893837e-06,1.58321192554427e-06,-3.41784000407186e-10,-1.23581168909315e-09,-0.0800000442596926,-1.70738260769234e-09,7.24926195461242e-10,3.32224265459128e-10,1.10701378619472e-11,2.49546910913195e-10,-4.18859391615502e-10,0.000112229327556498,5.78072546427404e-05,-5.28054817753252e-05,1.13407547240753e-10,-8.89045781715188e-11,-1.80060957464183e-05 +9.086,3.91202930900142e-09,-7.49710475991816e-09,-2.16709649704383e-09,-3.41722160984714e-10,-1.23502912063866e-09,-0.0799999964035825,5.9435325053499e-07,9.00691523967855e-07,-9.06763702751947e-07,1.13069276164131e-11,2.49446296951478e-10,3.98551934510527e-07,4.24410940419361e-10,-4.42571326808487e-10,-4.00070601647069e-10,1.14925430283438e-10,-1.17527515497402e-10,2.27248775352912e-10 +9.088,-1.81923806989726e-06,-1.0988098528425e-06,1.57958487073326e-06,-3.4173877269672e-10,-1.23481390390534e-09,-0.0800000426654849,-1.70568496393066e-09,7.23155910154007e-10,3.30623983052539e-10,1.15298395830811e-11,2.49076800851205e-10,-4.1795039651409e-10,-0.000117458042288736,-9.35446024026465e-05,0.000154701344074369,1.08203376815332e-10,-1.37043154574511e-10,-1.9260381484103e-05 +9.09,3.9052065691457e-09,-7.49421213627754e-09,-2.16577400111162e-09,-3.41676041626382e-10,-1.23403281343526e-09,-0.0799999964052543,1.24521081380099e-07,5.2651311435731e-07,-2.87958326454539e-07,1.17397411236743e-11,2.4889812433318e-10,3.21510408574124e-07,3.90366992203449e-10,-3.07046055247955e-10,-2.88939878967445e-10,9.97465998686883e-11,-9.15066633577996e-11,1.61329283265874e-10 +9.092,-1.81873998557174e-06,-1.09670380038507e-06,1.57843303742744e-06,-3.41691813732226e-10,-1.23381831140801e-09,-0.0800000413794432,-1.70412349596185e-09,7.21927725933015e-10,3.29468223536669e-10,1.19288259825558e-11,2.48710774197774e-10,-4.17305079381027e-10,1.16617465196278e-05,-2.19100913627416e-05,4.47590894469512e-05,8.71698546678539e-11,-6.80878964320972e-11,-1.70459670684224e-05 +9.094,3.89839007516185e-09,-7.49132442537381e-09,-2.16445612821747e-09,-3.41628326322452e-10,-1.23303797033847e-09,-0.0799999964069235,1.71168067458605e-07,4.38872748906353e-07,-1.08921968666754e-07,1.20884205423457e-11,2.48625772747451e-10,2.53326540300442e-07,3.65457447479706e-10,-1.84964890706129e-10,-1.88000656745519e-10,7.63278329416381e-11,-5.76795556038294e-11,1.4051260160042e-10 +9.096,-1.8180553133019e-06,-1.09494830938944e-06,1.57799734955277e-06,-3.41643460050056e-10,-1.23282380831702e-09,-0.0800000403661371,-1.70266166617193e-09,7.21187866370191e-10,3.28716220909687e-10,1.22341373143223e-11,2.48480055975359e-10,-4.16743028974625e-10,-3.38376506989907e-05,-4.79578158869041e-05,7.89790629814217e-05,6.39679281766307e-11,-6.80878964320799e-11,-1.28803079313371e-05 +9.098,3.89157942849716e-09,-7.48843967390833e-09,-2.16314126333383e-09,-3.41579389773194e-10,-1.23204405011457e-09,-0.0799999964085905,3.58174646625976e-08,2.47041485358673e-07,2.06994283259038e-07,1.23442922550523e-11,2.48353421161723e-10,2.01805308575076e-07,3.63912459005789e-10,-9.77950358781477e-11,-8.7603535500352e-11,4.64038529837483e-11,-4.51028103478207e-11,1.31838984127994e-10 +9.1,-1.81791204344325e-06,-1.09396014344801e-06,1.57882532668581e-06,-3.41594082881036e-10,-1.23183039463237e-09,-0.0800000395589159,-1.70120601633591e-09,7.20796686226679e-10,3.28365806767686e-10,1.24197527262573e-11,2.48299644733968e-10,-4.16215673038113e-10,6.23686974461098e-06,-1.8267620272387e-05,3.20147512016023e-05,3.59955121251402e-11,-1.95156391323096e-11,-8.16827421675607e-06 +9.102,3.88477460443182e-09,-7.48555648716343e-09,-2.16182780010676e-09,-3.41529710762289e-10,-1.23105085153563e-09,-0.0799999964102553,6.07649436410387e-08,1.73971004269133e-07,3.35053288065434e-07,1.24882743035529e-11,2.48275358605194e-10,1.69132211708055e-07,3.71095298587404e-10,-6.02816407901739e-11,-2.3635607360189e-11,2.92734586571021e-11,-9.54097911786925e-12,1.09287578986515e-10 +9.104,-1.81766898366869e-06,-1.09326425943093e-06,1.58016553983807e-06,-3.41544129783822e-10,-1.23083729319795e-09,-0.080000038882387,-1.69972163514156e-09,7.20555559663518e-10,3.28271264338245e-10,1.25368465608858e-11,2.48261480817496e-10,-4.15778522722167e-10,1.88264172053796e-07,-1.37324763105882e-05,2.05720775701344e-05,1.60461921541754e-11,-3.90312781819141e-11,-3.83913734134805e-06 +9.106,3.87797571789125e-09,-7.48267426492477e-09,-2.16051471504941e-09,-3.41479563376046e-10,-1.23005780561236e-09,-0.0799999964119185,6.15180003292538e-08,1.19041099026786e-07,4.17341598345962e-07,1.25524590721696e-11,2.48119233492466e-10,1.53775662342665e-07,3.8402440949446e-10,-7.76288755499965e-11,2.43945488809395e-11,5.42101086242852e-12,-3.68628738645112e-11,1.14491749414495e-10 +9.108,-1.81742291166737e-06,-1.09278809503482e-06,1.58183490623146e-06,-3.41493919947533e-10,-1.22984481626398e-09,-0.0800000382672844,-1.69818553750358e-09,7.20245044161318e-10,3.28368842533769e-10,1.25585306043355e-11,2.48114029322038e-10,-4.15320555724509e-10,1.17184096627724e-05,1.73949179713178e-06,-7.09991440639591e-06,-8.89045781438333e-12,-4.77048955893674e-12,-3.84348802784462e-07 +9.11,3.87118297574124e-09,-7.47979328474813e-09,-2.15920123967928e-09,-3.41429329253629e-10,-1.22906534949507e-09,-0.0799999964135797,1.08391638980338e-07,1.25999066215313e-07,3.88941940720382e-07,1.2516897240912e-11,2.4810015153423e-10,1.52238267131527e-07,3.91180144021203e-10,-1.09721259935471e-10,5.4643789456789e-11,-2.25514051890876e-11,-9.54097914541602e-12,1.24032728578432e-10 +9.112,-1.81698934511145e-06,-1.09228409876996e-06,1.58339067399434e-06,-3.41443852358569e-10,-1.22885241565784e-09,-0.0800000376583313,-1.6966208169275e-09,7.19806159121576e-10,3.28587417691596e-10,1.24683249835791e-11,2.48075865405456e-10,-4.14824424810195e-10,9.32262627555274e-06,7.90210887176114e-06,-2.02947766014424e-05,-2.19008838842023e-11,-3.55618312575256e-11,1.99454081722905e-06 +9.114,3.86439649247353e-09,-7.47691406011164e-09,-2.15788689000851e-09,-3.41379455953694e-10,-1.22807304603345e-09,-0.079999996415239,1.45682144082562e-07,1.57607501702368e-07,3.07762834314585e-07,1.24292937053752e-11,2.479579042092e-10,1.60216430400446e-07,3.91478299241908e-10,-1.81278603159696e-10,4.74880551913567e-11,-3.05745012627137e-11,-2.12503625531886e-11,1.5178830410195e-10 +9.116,-1.81640661653512e-06,-1.09165366876315e-06,1.58462172533159e-06,-3.41394135183748e-10,-1.22786058404101e-09,-0.0800000370174656,-1.69505490373053e-09,7.19081044708937e-10,3.28777369912362e-10,1.23460269785283e-11,2.47990863955244e-10,-4.14217271593788e-10,9.57701824201303e-06,1.36807995487559e-05,-3.1125089810228e-05,-4.53196508112638e-11,-8.67361765518104e-13,3.28940694125736e-06 +9.118,3.8576162728586e-09,-7.4740377359328e-09,-2.15657178052886e-09,-3.4133007184578e-10,-1.22708108257763e-09,-0.0799999964168959,1.8399021705061e-07,2.12330699897385e-07,1.83262475073687e-07,1.22480151021302e-11,2.47954434762138e-10,1.73374058165474e-07,3.86084393622011e-10,-2.13587827979599e-10,3.66460334300107e-11,-4.53196508098842e-11,-3.42607886505305e-11,1.40512601554087e-10 +9.12,-1.81567065566691e-06,-1.09080434596356e-06,1.58535477523189e-06,-3.41345143123339e-10,-1.22686876630196e-09,-0.0800000363239693,-1.69351056615604e-09,7.18226693397019e-10,3.28923954046082e-10,1.21647483752887e-11,2.47853820800642e-10,-4.13655221187571e-10,5.75027148837487e-06,1.46327971441419e-05,-3.27935730870748e-05,-4.79217360225099e-11,-2.64545329811196e-11,3.62731719662841e-06 +9.122,3.85084223059398e-09,-7.47116482915922e-09,-2.15525608471268e-09,-3.41281412852279e-10,-1.22608966729443e-09,-0.0799999964185505,2.06991303004107e-07,2.70861888473946e-07,5.20881827254018e-08,1.20563281580401e-11,2.47848616630214e-10,1.87883326951986e-07,3.72287920977303e-10,-2.81892564846288e-10,2.36356073601866e-11,-5.68121938382527e-11,-1.51788304147987e-11,1.62196645003862e-10 +9.124,-1.8148426904549e-06,-1.08972089840967e-06,1.58556312796279e-06,-3.41296917810707e-10,-1.22587737183544e-09,-0.080000035572436,-1.69202141447213e-09,7.17099123137634e-10,3.29018496475522e-10,1.19374995999357e-11,2.47793105478982e-10,-4.13006434607556e-10,2.69350324379598e-06,1.3689302295897e-05,-2.98184437211367e-05,-5.48606299277786e-11,-2.99239799606032e-11,3.22916346440287e-06 +9.126,3.84407414493609e-09,-7.46829643266667e-09,-2.15394001072677e-09,-3.41233662853879e-10,-1.22509849487251e-09,-0.0799999964202026,2.17765315979289e-07,3.25619097657528e-07,-6.71855921591321e-08,1.1836885638329e-11,2.47728920710371e-10,2.00799980809596e-07,3.55591207708691e-10,-3.35668992681062e-10,-1.11672824131271e-11,-5.59448321015648e-11,-4.2067044319946e-11,1.78676518071423e-10 +9.128,-1.81397162919098e-06,-1.08841842201904e-06,1.58529438559415e-06,-3.41249570268154e-10,-1.2248864561526e-09,-0.0800000347692361,-1.6905990496413e-09,7.15756447166909e-10,3.2897382734587e-10,1.17137202715295e-11,2.47624837301703e-10,-4.1229172853527e-10,-6.9946668899616e-07,1.05960919292274e-05,-2.23857583945364e-05,-6.07153216591748e-11,-4.51028103753948e-11,2.36375936185587e-06 +9.13,3.83731174873753e-09,-7.465433406878e-09,-2.15262411541739e-09,-3.41186807972793e-10,-1.2241079955233e-09,-0.0799999964218517,2.14967449223304e-07,3.68003465374452e-07,-1.56728625737307e-07,1.15940243516923e-11,2.4754850946887e-10,2.10255018257023e-07,3.41279738656496e-10,-3.55835152930347e-10,-2.07082614579502e-11,-5.63785129679584e-11,-3.94649590509859e-11,1.85615411883785e-10 +9.132,-1.81311175939409e-06,-1.08694640815754e-06,1.58466747109121e-06,-3.41203194170747e-10,-1.22389626211472e-09,-0.080000033928216,-1.68923393068667e-09,7.14333106555188e-10,3.28890994300038e-10,1.14882062196577e-11,2.47466977465499e-10,-4.11549266887735e-10,-2.9649503067795e-06,6.84205708578669e-06,-1.33519363100317e-05,-5.26922255840708e-11,-2.9490299119074e-11,1.29988814848571e-06 +9.134,3.83055481301478e-09,-7.46257607445178e-09,-2.15130855144019e-09,-3.41140855147914e-10,-1.22311812761344e-09,-0.0799999964234979,2.03107647996187e-07,3.95371693717596e-07,-2.10136370977428e-07,1.1383255449356e-11,2.47430548272393e-10,2.15454570850965e-07,3.26019593266334e-10,-3.60822483003107e-10,-5.18248638448027e-11,-5.03069808033163e-11,-5.76795555762096e-11,1.65666091955756e-10 +9.136,-1.8122993288021e-06,-1.08536492138267e-06,1.5838269256073e-06,-3.4115766114895e-10,-1.22290653992163e-09,-0.0800000330663977,-1.6879298523136e-09,7.12889816623175e-10,3.28683694844659e-10,1.12869782964443e-11,2.47236259243194e-10,-4.10886602519912e-10,-4.32719832186351e-06,2.9728710812972e-06,-4.15105211491388e-06,-4.42354486361545e-11,-5.50774703348047e-11,2.64300734100328e-07 +9.138,3.82380309360553e-09,-7.45972451518528e-09,-2.14999381666081e-09,-3.41095707234729e-10,-1.22212918257647e-09,-0.0799999964251415,1.85798854708735e-07,4.07263178042783e-07,-2.26740579437082e-07,1.12063136548114e-11,2.47210238391054e-10,2.16511773787366e-07,3.15502832193368e-10,-3.51498344319865e-10,-6.15826833971834e-11,-4.53196508099039e-11,-2.68882138776564e-11,1.63064006741851e-10 +9.14,-1.81155613338327e-06,-1.0837358686705e-06,1.58291996328955e-06,-3.41112835894331e-10,-1.22191769896807e-09,-0.0800000322003507,-1.68666784098483e-09,7.11483823245896e-10,3.2843736411107e-10,1.11056996932047e-11,2.47128706387683e-10,-4.10234346492944e-10,-4.55682055131991e-06,-2.59342894382064e-07,3.60881452759417e-06,-3.90312782094869e-11,-5.29090660173114e-11,-5.83829859457505e-07 +9.142,3.81705642224159e-09,-7.4568785798923e-09,-2.14868006720437e-09,-3.41051284435956e-10,-1.22114066775092e-09,-0.0799999964267824,1.67571572503457e-07,4.06225806465255e-07,-2.12305321326707e-07,1.10501885419735e-11,2.46998602126985e-10,2.14176454349536e-07,3.11708124776766e-10,-3.57353036130128e-10,-6.89552582065333e-11,-3.20923843067967e-11,-5.29090660447117e-11,1.82145965023067e-10 +9.144,-1.81088584709325e-06,-1.08211096544464e-06,1.58207074200424e-06,-3.41068635140163e-10,-1.22092970455956e-09,-0.0800000313436448,-1.68542100848572e-09,7.10054411101376e-10,3.28161543078244e-10,1.09773301559776e-11,2.46917070123504e-10,-4.09505762632852e-10,-3.94746981955284e-06,-2.55800762516354e-06,9.15784191101377e-06,-2.94902990915991e-11,-3.12250225675721e-11,-1.1608856237408e-06 +9.146,3.81031473820764e-09,-7.45403836224789e-09,-2.14736742103205e-09,-3.41007375115332e-10,-1.22015299947043e-09,-0.0799999964284204,1.51781693225241e-07,3.95993775964597e-07,-1.7567395368264e-07,1.0932227345607e-11,2.46873702036715e-10,2.09532911854572e-07,3.09268669514426e-10,-3.11599704293579e-10,-7.58941520375719e-11,-1.62630325860674e-11,-4.94396190379312e-11,1.70002900600303e-10 +9.148,-1.81027872032035e-06,-1.08052699034078e-06,1.58136804618951e-06,-3.4102490623078e-10,-1.21994220975141e-09,-0.0800000305055132,-1.68418393380767e-09,7.08808012284201e-10,3.27857966470094e-10,1.09122780256333e-11,2.46719311647353e-10,-4.08825751030451e-10,-2.72937626819771e-06,-3.77013936567343e-06,1.21124644602595e-05,-1.82145964989661e-11,-6.11490025555766e-11,-1.45134598785808e-06 +9.15,3.80357800247241e-09,-7.45120313019876e-09,-2.14605598916617e-09,-3.40963726003229e-10,-1.21916612222384e-09,-0.0799999964300557,1.40864188152451e-07,3.80913218501905e-07,-1.27224095841607e-07,1.08593689596112e-11,2.46629106026492e-10,2.0372752790314e-07,3.15855197899286e-10,-2.94469310046991e-10,-9.36750677027163e-11,-1.79977560632554e-11,-3.68628738645078e-11,1.42247325030064e-10 +9.152,-1.80971526356774e-06,-1.07900333746677e-06,1.58085914980614e-06,-3.40981468754942e-10,-1.21895569332731e-09,-0.0800000296906031,-1.68292051301607e-09,7.07630135044013e-10,3.27483266199283e-10,1.08402870013803e-11,2.46571860151895e-10,-4.08256761730331e-10,-1.25385566186073e-06,-3.99496494908636e-06,1.26191766454631e-05,6.50521304697006e-13,-3.33934268851827e-11,-1.49151177517562e-06 +9.154,3.79684632042035e-09,-7.44837260965858e-09,-2.14474605610138e-09,-3.40920364855224e-10,-1.21817983478323e-09,-0.0799999964316888,1.35848765505009e-07,3.64933358705562e-07,-7.67473892597599e-08,1.086197104483e-11,2.46495532318952e-10,1.97761480802438e-07,3.21547259304924e-10,-2.73002107031906e-10,-8.0014120329452e-11,4.55364912444002e-12,-5.50774703622697e-11,1.64798730217841e-10 +9.156,-1.80917186850572e-06,-1.07754360403195e-06,1.5805521602491e-06,-3.40938020870762e-10,-1.21796971119803e-09,-0.0800000288995572,-1.68163432397885e-09,7.06538126615886e-10,3.27163209717965e-10,1.0858501597878e-11,2.46351550270445e-10,-4.07597566809459e-10,1.91046641397462e-07,-3.44640527054427e-06,1.11225371361042e-05,2.81892564846303e-12,-5.63785129692524e-11,-1.34887673947123e-06 +9.158,3.79011978312443e-09,-7.44554645715212e-09,-2.1434374032625e-09,-3.40876930848832e-10,-1.21719442858215e-09,-0.0799999964333191,1.36612952070598e-07,3.51147737623386e-07,-3.22572407153479e-08,1.08732467474238e-11,2.46270018267075e-10,1.92365973844554e-07,3.30275086980066e-10,-2.45029691060126e-10,-8.69530142696396e-11,7.80625564068844e-12,-3.38271078088872e-11,1.1015494076975e-10 +9.16,-1.80862541669744e-06,-1.07613901308146e-06,1.58042313128624e-06,-3.40894527883773e-10,-1.21698463112496e-09,-0.0800000281300933,-1.68031322363093e-09,7.05558007851645e-10,3.26815397660886e-10,1.08897266204408e-11,2.4621624183921e-10,-4.0715694704638e-10,1.36104842673982e-06,-2.4215521081389e-06,8.27939268792886e-06,9.54097911787046e-12,-3.81639164714899e-11,-1.10267524278093e-06 +9.162,3.78339853022991e-09,-7.44272422512071e-09,-2.14213014167186e-09,-3.40833371942351e-10,-1.21620956361479e-09,-0.0799999964349478,1.42057145777559e-07,3.41461529190827e-07,8.60330036378626e-10,1.09114106638953e-11,2.46117362601189e-10,1.87955272873429e-07,3.36915824913378e-10,-2.30718222226617e-10,-8.22909448553792e-11,1.32272665055351e-11,-5.42101085969584e-11,1.821459649324e-10 +9.164,-1.80805718811433e-06,-1.07477316696469e-06,1.58042657260639e-06,-3.40850882241117e-10,-1.21600016167456e-09,-0.0800000273782722,-1.67896556033128e-09,7.04635134962739e-10,3.26486233881465e-10,1.09426356864629e-11,2.45999401404822e-10,-4.06428363186651e-10,2.11055237412806e-06,-1.21932780716304e-06,4.79639873825094e-06,1.47451495445879e-11,-3.51281504158441e-11,-8.28052036681716e-07 +9.166,3.77668266798858e-09,-7.43990568458086e-09,-2.14082419673634e-09,-3.40789601399605e-10,-1.21522556600917e-09,-0.0799999964365735,1.50499355274071e-07,3.36584217962176e-07,2.00459249893803e-08,1.09703912620737e-11,2.45976849999525e-10,1.84643064726702e-07,3.46782064869424e-10,-2.16189913193563e-10,-9.29161261819896e-11,1.56125112837877e-11,-2.77555756156196e-11,1.44849410244028e-10 +9.168,-1.80745519069323e-06,-1.07342683009284e-06,1.58050675630635e-06,-3.40807000676069e-10,-1.21501625427456e-09,-0.0800000266396999,-1.6775784320718e-09,7.03770375309964e-10,3.26114569376737e-10,1.10050857315981e-11,2.4588837910236e-10,-4.05848965545675e-10,0.0631755434519293,0.0366361293867209,-0.0540404895680733,1.70913630470774e-09,5.51728801537276e-09,0.00184139001616111 +9.17,3.7699723542603e-09,-7.43709060307962e-09,-2.13951973845883e-09,-3.40745581056678e-10,-1.21424201249276e-09,-0.0799999964381969,0.000252852673162963,0.00014688110176483,-0.00021614191234728,1.78069364809039e-11,2.68046002061014e-10,7.55020312937032e-06,3.38460542145194e-08,-1.18707127461119e-08,-6.7646626147903e-09,5.73976630113953e-10,-4.85332260491518e-09,-0.00647211163829074 +9.172,-7.96044498041493e-07,-4.85902423033591e-07,7.15939106917321e-07,-3.40735772930145e-10,-1.21394407026632e-09,-0.0799999964388874,-1.54219421521374e-09,6.56287524325522e-10,2.99055918917579e-10,1.33009922520536e-11,2.26475088682701e-10,-2.58888524021257e-05,-0.174465277931295,-0.100201897388643,0.148845851079694,-3.80901907237691e-09,-2.2964269374986e-08,-0.00188765029822444 +9.174,3.76380357739944e-09,-7.43446545298232e-09,-2.13832351478316e-09,-3.4069237708767e-10,-1.21333611213803e-09,-0.0800000999936065,-0.00044500843856214,-0.000253926487789699,0.000379241491971431,2.57086019139791e-12,1.7618892456108e-10,-3.9806352658549e-10,-4.11594044435609e-08,1.30182323253922e-08,7.28518807776427e-09,-7.13838710365773e-10,5.66083638295491e-09,0.00982013820434514 +9.176,-2.57607825228986e-06,-1.50160837419228e-06,2.23290507480288e-06,-3.4072548948938e-10,-1.21323931456807e-09,-0.0799999964404796,-1.70683183298796e-09,7.08360453627085e-10,3.28196671228632e-10,1.04456374105909e-11,2.49118434214518e-10,1.33917004152506e-05,0.175239818739227,0.0995780886619196,-0.150387456713466,3.06200377553288e-09,2.84793889859739e-08,-4.46344350368733e-09 +9.178,3.75697625006749e-09,-7.43163201116781e-09,-2.13701072809824e-09,-3.40650594538028e-10,-1.21233963840117e-09,-0.0800000464268048,0.000255950836395003,0.000144385866858112,-0.000222308334882633,1.48188752935335e-11,2.90106480505013e-10,-4.15917300600245e-10,-1.35227115982233e-09,-2.08166817038606e-10,1.06880650167288e-09,-4.18068357709343e-10,3.0878077875159e-10,-0.00307611687684536 +9.18,-1.55227490670996e-06,-9.24064906759892e-07,1.34367173527244e-06,-3.40666213988206e-10,-1.21207888864605e-09,-0.0799999964421433,-1.71224091762725e-09,7.0752778635893e-10,3.32471897235324e-10,8.77336397975367e-12,2.50353557329524e-10,1.0872329078705e-06,-0.0923650006294314,-0.0529616418726415,0.080713760605923,-2.10400273592654e-09,-1.44879767905183e-08,1.94462501661574e-09 +9.182,3.75012728639698e-09,-7.42880190002237e-09,-2.1356808405093e-09,-3.40615501082109e-10,-1.21133822417185e-09,-0.0800000420778732,-0.000113509166122682,-6.74607006324307e-05,0.000100546707541023,6.40286434982826e-12,2.32154573342947e-10,-4.08138800533783e-10,2.80385523826414e-09,-2.56739074444508e-10,-1.61437703483051e-10,1.40295761119593e-10,-2.61943244872436e-10,0.000222539389693693 +9.184,-2.00631157120084e-06,-1.1939077092897e-06,1.74585856543667e-06,-3.40640602530806e-10,-1.21115027035268e-09,-0.0799999964437759,-1.70102549667419e-09,7.06500830061152e-10,3.31826146421391e-10,9.33454702423223e-12,2.49305784350034e-10,1.97739046664557e-06,0.044248441568979,0.0264503638412462,-0.0383406909571616,1.20715069884634e-09,6.4922026088704e-09,-8.32667268922099e-11 +9.186,3.74332318441029e-09,-7.42597589670213e-09,-2.13435353592362e-09,-3.40578162894012e-10,-1.21034100103445e-09,-0.0800000341683113,6.34846001532144e-05,3.83407547325424e-05,-5.28160562876061e-05,1.12314671452131e-11,2.58123383778425e-10,-4.08471867441352e-10,3.41474895235246e-09,-2.64762170521041e-10,-5.6747141707904e-10,2.92084065267659e-10,-3.72965547335093e-10,-0.000135526140657179 +9.188,-1.75237317058801e-06,-1.04054469035955e-06,1.53459434028627e-06,-3.40595676662225e-10,-1.21011777681757e-09,-0.0799999964454098,-1.68736650086478e-09,7.05441781379068e-10,3.29556260753075e-10,1.05028832853027e-11,2.47813922160694e-10,1.43528590401692e-06,-0.0224630664934066,-0.013235798355333,0.0194086611505789,-2.10335221462234e-10,-3.83677464799255e-09,8.39606162372958e-10 +9.19,3.73657371840683e-09,-7.42315412957661e-09,-2.1330353108806e-09,-3.40536151360871e-10,-1.20934974534581e-09,-0.0800000284271677,-2.63676658204019e-05,-1.46024386887838e-05,2.48185883147011e-05,1.03901262593642e-11,2.42776285186457e-10,-4.0511344279186e-10,2.56318946121405e-09,-2.61075883212758e-10,-5.21392824784745e-10,2.2464669013778e-10,-3.25260651773088e-10,-0.000149542598790312 +9.192,-1.85784383386961e-06,-1.09895444511468e-06,1.63386869354507e-06,-3.40554116157188e-10,-1.20914667167682e-09,-0.0799999964470302,-1.67711374301993e-09,7.04397477846217e-10,3.27470689453936e-10,1.14014700458538e-11,2.46512879553602e-10,8.37115508855733e-07,0.0106330039972204,0.00614624435287538,-0.00957098379391439,4.09828421199429e-10,1.41683539900374e-09,1.78676518025577e-10 +9.194,3.72986526343475e-09,-7.42033653966523e-09,-2.13172542812279e-09,-3.40490545480687e-10,-1.2083636938276e-09,-0.0800000250787057,1.6164350168494e-05,9.98253872272591e-06,-1.34653468609692e-05,1.20294399441625e-11,2.48443626782474e-10,-4.04398736719758e-10,1.52089170232251e-09,-3.45426812075751e-10,-3.69604520564044e-10,1.15575951588246e-10,-2.04263689268956e-10,-9.27549738404639e-05 +9.196,-1.79318643319564e-06,-1.05902429022378e-06,1.58000730610119e-06,-3.40505998397411e-10,-1.20815289716969e-09,-0.0799999964486478,-1.67103017621064e-09,7.03015770597914e-10,3.2599227137168e-10,1.18637738522067e-11,2.45695824796526e-10,4.66095613493918e-07,-0.00553132635725842,-0.00330222288554562,0.00469407329271822,-4.53196508112194e-11,-9.913944665481e-10,3.8597597344964e-10 +9.198,3.7231811427299e-09,-7.41752447658284e-09,-2.1304214590373e-09,-3.40443090385278e-10,-1.20738091052841e-09,-0.0800000232143232,-5.96095526053725e-06,-3.22635281945514e-06,5.31094630990162e-06,1.18481613409176e-11,2.44478048916282e-10,-4.02854832825959e-10,8.26406000922591e-10,-4.62520646782213e-10,-2.69315819645335e-10,4.16333634234339e-11,-1.42247325030064e-10,-4.06199856736642e-05 +9.2,-1.81703025423779e-06,-1.07192970150161e-06,1.60125109134081e-06,-3.40458605752048e-10,-1.20717498497402e-09,-0.0799999964502592,-1.66772455220695e-09,7.01165688010785e-10,3.24915008093099e-10,1.20303073059005e-11,2.45126835496406e-10,3.03615670799207e-07,0.00256609278511984,0.00149006929277964,-0.00234941715344584,6.74373751299286e-11,2.76254713576505e-10,1.82145964932878e-10 +9.202,3.71651024452108e-09,-7.41471981383079e-09,-2.12912179900493e-09,-3.40394969156055e-10,-1.20640040318643e-09,-0.0800000219998605,4.30341587994097e-06,2.73392435166278e-06,-4.08672230388072e-06,1.21179108414373e-11,2.45583067770588e-10,-4.02126248966228e-10,5.05698998301659e-10,-5.85686013576812e-10,-2.34512929908666e-10,-1.27935856353316e-11,-1.0885389811757e-10,-1.08509616222909e-05 +9.204,-1.79981659071803e-06,-1.06099400409496e-06,1.58490420212529e-06,-3.40410134108682e-10,-1.20619265270294e-09,-0.0799999964518677,-1.66570175621374e-09,6.98822943956478e-10,3.23976956373464e-10,1.19791329633592e-11,2.44691419903935e-10,2.60211824310048e-07,-0.00135523326496599,-0.000774043523070995,0.00115739540846307,-5.03069808033386e-11,-3.02275565689018e-10,3.04443970034002e-10 +9.206,3.70984743749622e-09,-7.41192452205497e-09,-2.12782589117944e-09,-3.40347052624201e-10,-1.20542163750681e-09,-0.0800000209590132,-1.11751717992241e-06,-3.62249740620864e-07,5.42859329971034e-07,1.1916682918224e-11,2.44373965507832e-10,-4.00908473086092e-10,4.04434515576221e-10,-6.50304463134244e-10,-2.13045726929317e-10,-3.36102673483731e-11,-8.37004077430191e-11,-1.44042243413547e-06 +9.208,-1.80428665943772e-06,-1.06244300305744e-06,1.58707563944517e-06,-3.40362467377009e-10,-1.20521515684091e-09,-0.0799999964534714,-1.66408401815143e-09,6.96221726103941e-10,3.23124773465747e-10,1.18446918939657e-11,2.44356618272963e-10,2.54450134573507e-07,0.000611774180061472,0.000378260203541451,-0.000545434570447446,-2.77555756156225e-11,1.73472347597623e-11,2.27248775352912e-10 +9.21,3.70319110142361e-09,-7.40913963515055e-09,-2.12653339208557e-09,-3.40299673856626e-10,-1.20444421103372e-09,-0.0800000199412127,1.3295795403243e-06,1.15079107354545e-06,-1.63887895181948e-06,1.18056606157615e-11,2.44443354446871e-10,-3.9999947798468e-10,3.747815857893e-10,-6.40763483861766e-10,-1.94180609056322e-10,-4.0332320815155e-11,-8.93382589856994e-11,-2.12323995188443e-06 +9.212,-1.79896834127643e-06,-1.05783983876326e-06,1.58052012363789e-06,-3.40315244734546e-10,-1.20423738342312e-09,-0.0799999964550714,-1.66258489180828e-09,6.93658672168494e-10,3.22348051029522e-10,1.16833626107051e-11,2.43999265237021e-10,2.4595717476597e-07,-0.000349893623270902,-0.000193005149839735,0.000314627231277836,-7.00394603438585e-11,-1.59594559816974e-10,3.05311331816258e-10 +9.214,3.69654076185638e-09,-7.40636500046188e-09,-2.12524399988145e-09,-3.40252940406183e-10,-1.20346821397277e-09,-0.080000018957384,-6.99949527591575e-08,3.78770474186592e-07,-3.80370026708277e-07,1.15255027743861e-11,2.43804976207603e-10,-3.98778232657415e-10,3.48354158019476e-10,-5.95226992694421e-10,-1.5514933088265e-10,-6.98226199080508e-11,-7.71951946809551e-11,-5.35401323969889e-06 +9.216,-1.79924832108746e-06,-1.05632475686651e-06,1.57899864353106e-06,-3.40269142723448e-10,-1.20326216351829e-09,-0.0799999964566665,-1.6611914751762e-09,6.91277764197716e-10,3.21727453705991e-10,1.14040721310728e-11,2.43690484458297e-10,2.24541121807167e-07,0.000126641094258462,7.19465548336291e-05,-9.22980461591437e-05,-5.48606299264991e-11,-3.16587034095159e-11,1.65666091911549e-10 +9.218,3.68989599595568e-09,-7.40359988940509e-09,-2.12395709006663e-09,-3.40207324117658e-10,-1.20249345203494e-09,-0.0800000180592195,4.36569424274634e-07,6.66556693521077e-07,-7.49562211344811e-07,1.13060602546801e-11,2.43678341393965e-10,-3.98115568289769e-10,3.14120474423449e-10,-5.05888733681844e-10,-8.67361737988499e-11,-6.37510877421615e-11,-6.15826833971834e-11,-7.26572274567676e-06 +9.22,-1.79750204339036e-06,-1.05365853009243e-06,1.57600039468568e-06,-3.4022391848243e-10,-1.20228745015272e-09,-0.0799999964582589,-1.65993499327851e-09,6.89254209262989e-10,3.21380509010796e-10,1.11490677801042e-11,2.43444153724708e-10,1.95478230824463e-07,-0.000103147494126739,-7.12117886360487e-05,0.000119792629375169,-8.43509290193908e-11,-8.15320033709318e-11,2.22044604925082e-10 +9.222,3.68325625598256e-09,-7.40084287256804e-09,-2.12267156803059e-09,-3.40162727846538e-10,-1.20151967542004e-09,-0.0800000172773066,2.39794477677217e-08,3.81709538976913e-07,-2.70391693844187e-07,1.09686565386026e-11,2.43352213380481e-10,-3.97227389870069e-10,2.86310688883344e-10,-3.86409654350261e-10,-4.35849273695942e-11,-7.71951946821885e-11,-4.72712147473858e-11,-7.22572696123313e-06 +9.224,-1.79740612559929e-06,-1.05213169193652e-06,1.5749188279103e-06,-3.40180043856275e-10,-1.2013140412992e-09,-0.0799999964598478,-1.65878975052297e-09,6.87708570645588e-10,3.21206169301317e-10,1.08402870013754e-11,2.43255068865719e-10,1.66575322979534e-07,2.042169656036e-05,-3.98294678488531e-06,1.91144615326695e-05,-7.24247051220156e-11,-3.85975973404711e-11,1.50053580671957e-10 +9.226,3.67662109698047e-09,-7.39809203828545e-09,-2.12138674335338e-09,-3.40119366698532e-10,-1.20054665514457e-09,-0.0800000166110053,1.05666234009189e-07,3.65777751837366e-07,-1.93933847713484e-07,1.06789577181144e-11,2.43197822991119e-10,-3.96627175547381e-10,2.72785266413232e-10,-2.95119831274279e-10,1.25767452364925e-11,-7.71951946797813e-11,-2.60208521126553e-11,-5.79788474173669e-06 +9.228,-1.79698346066326e-06,-1.05066858092917e-06,1.57414309251945e-06,-3.40137328025403e-10,-1.20034125000723e-09,-0.0799999964614344,-1.65769860945732e-09,6.86528091320491e-10,3.21256476282263e-10,1.05315062226564e-11,2.43150985457268e-10,1.4338378401259e-07,-2.68999360275899e-05,-3.15692205450011e-05,6.26404780910416e-05,-6.72205346941159e-11,-2.12503625807182e-11,1.21430643318403e-10 +9.23,3.66999030254264e-09,-7.39534592592017e-09,-2.12010171744825e-09,-3.40077240673642e-10,-1.19957405120275e-09,-0.0800000160374702,-1.93351010115854e-09,2.39500869657376e-07,5.66280646506552e-08,1.0410075579338e-11,2.43112821540796e-10,-3.96141452974107e-10,2.81160728379886e-10,-2.16623594062653e-10,3.8380756906004e-11,-6.33174068731673e-11,-1.99493199737355e-11,-3.78955720969992e-06 +9.232,-1.79699119470366e-06,-1.04971057745054e-06,1.57436960477805e-06,-3.40095687723085e-10,-1.19936879872107e-09,-0.0799999964630189,-1.6565739665438e-09,6.8566159694424e-10,3.21409999309887e-10,1.02782365951637e-11,2.43071188177373e-10,1.28225555173792e-07,1.01520305833734e-05,-7.06571866989916e-06,2.59451852363414e-05,-5.24753851494424e-11,-2.34187669526762e-11,1.30104260742219e-10 +9.234,3.66336400667647e-09,-7.39260327953239e-09,-2.11881607745101e-09,-3.40036127727261e-10,-1.19860176645004e-09,-0.080000015524568,3.86746122323307e-08,2.11237994977783e-07,1.60408805596009e-07,1.02001740387402e-11,2.43019146472986e-10,-3.95621035931138e-10,2.99700585529205e-10,-1.66316613259221e-10,5.30174862345235e-11,-4.25007251614224e-11,-1.5178830414792e-11,-1.77543483387237e-06 +9.236,-1.79683649625473e-06,-1.04886562547063e-06,1.57501124000044e-06,-3.4005488702693e-10,-1.19839672213518e-09,-0.0799999964646014,-1.65537516420168e-09,6.84996330491203e-10,3.21622069254825e-10,1.0108233694518e-11,2.43010472855714e-10,1.211238158383e-07,3.13800789281788e-06,-6.2829639494362e-06,2.27056840126797e-05,-4.2934406029303e-11,-1.1709383435858e-11,1.33573707606311e-10 +9.238,3.65674250601966e-09,-7.38986329421043e-09,-2.11752958917399e-09,-3.39995694792483e-10,-1.19762972455861e-09,-0.0800000150400727,5.12266438036009e-08,1.86106139180041e-07,2.51231541646718e-07,1.0028436414623e-11,2.42972308939242e-10,-3.95086741100713e-10,3.28919834261512e-10,-1.45933612492588e-10,2.8514517100661e-11,-2.68882138787566e-11,-1.17093834898186e-11,-9.75955427718795e-08 +9.24,-1.79663158967952e-06,-1.04812120091391e-06,1.57601616616702e-06,-3.40014773281272e-10,-1.19742483289942e-09,-0.0799999964661817,-1.65405948486464e-09,6.84412596041233e-10,3.21736127323228e-10,1.0000680839003e-11,2.42963635321755e-10,1.20733433667212e-07,1.38527714689845e-05,5.3227108050962e-06,1.27767967646851e-06,-1.38777878078114e-11,-2.16840434497158e-11,1.04083408558587e-10 +9.242,3.6501262680802e-09,-7.38712564382626e-09,-2.1162426446647e-09,-3.39955692069127e-10,-1.19665787001733e-09,-0.080000014557139,1.06637729679557e-07,2.07396982400432e-07,2.56342260352594e-07,9.97292526339176e-12,2.42885572765443e-10,-3.94670407466479e-10,3.51471239081945e-10,-1.29236898884315e-10,1.64798730575053e-11,-1.01915004202558e-11,-2.29850860297343e-11,1.08114472237273e-06 +9.244,-1.7962050387608e-06,-1.04729161298431e-06,1.57704153520843e-06,-3.39974881580218e-10,-1.19645329060836e-09,-0.0799999964677604,-1.65265359990831e-09,6.83895648445696e-10,3.21802046815458e-10,9.95991483732193e-12,2.42871694977636e-10,1.25058012556703e-07,1.15196395445689e-05,8.91393014089611e-06,-8.70348541501445e-06,-1.08420217248562e-12,-2.2551405187701e-11,1.2316536679438e-10 +9.246,3.64351565368057e-09,-7.38439006123248e-09,-2.11495543647744e-09,-3.39915852409778e-10,-1.19568638323742e-09,-0.0800000140569069,1.52716287857828e-07,2.43052702964013e-07,2.2152831869254e-07,9.96858845470182e-12,2.42795367144693e-10,-3.94177745999301e-10,3.71312139022066e-10,-1.55257751099941e-10,-3.13334427848475e-11,1.04083408558632e-11,-3.8163916471494e-11,1.7094849841252e-06 +9.248,-1.79559417360937e-06,-1.04631940217245e-06,1.5779276484832e-06,-3.399350072264e-10,-1.19548210913978e-09,-0.0799999964693371,-1.65116835135222e-09,6.83274617441296e-10,3.21676713044319e-10,1.00015482007454e-11,2.4271903931175e-10,1.31895952493203e-07,1.18380462496287e-05,1.28284388320167e-05,-1.88706540628215e-05,1.53956708481839e-11,-2.47198095596202e-11,1.43982048549815e-10 +9.25,3.63691098027516e-09,-7.38165696276272e-09,-2.11366872962526e-09,-3.39875846216975e-10,-1.19471550708017e-09,-0.0800000135293231,2.00068472856338e-07,2.94366458292074e-07,1.46045702441262e-07,1.00301711380945e-11,2.42696487906454e-10,-3.93601817805102e-10,3.80039966510355e-10,-1.78025996722086e-10,-4.48859699408849e-11,1.99493199737286e-11,-2.51534904016553e-11,1.82048993935217e-06 +9.252,-1.79479389971794e-06,-1.04514193633928e-06,1.57851183129297e-06,-3.39894886541847e-10,-1.19451132318815e-09,-0.0799999964709115,-1.64964819148618e-09,6.82562513454407e-10,3.21497169164555e-10,1.00813454806403e-11,2.42618425350143e-10,1.39177912250614e-07,8.10934262451447e-06,1.27990834077407e-05,-2.21226549449128e-05,2.7105054313257e-11,-4.81385764314137e-11,1.49186218890336e-10 +9.254,3.63031238750922e-09,-7.3789267127089e-09,-2.1123827409486e-09,-3.39835520835052e-10,-1.19374503337877e-09,-0.0800000129726114,2.32505843354392e-07,3.45562791923031e-07,5.75550826616208e-08,1.01385913553476e-11,2.42503933600728e-10,-3.93005072929541e-10,3.82452316527369e-10,-1.89735380260697e-10,-9.45424294764056e-11,3.23092247389415e-11,-4.55364912713183e-11,1.51146976877323e-06 +9.256,-1.79386387634452e-06,-1.04375968517159e-06,1.57874205162362e-06,-3.39854332176426e-10,-1.19354130745375e-09,-0.0799999964724836,-1.64811838222007e-09,6.81803571933365e-10,3.21118999446649e-10,1.02105823795961e-11,2.42436279385058e-10,1.45223791325706e-07,4.84115305894313e-06,1.13787004991902e-05,-2.20966865681647e-05,3.70797142989959e-11,-3.51281503885315e-11,1.55257751099885e-10 +9.258,3.62371991398033e-09,-7.37619949842117e-09,-2.11109826495082e-09,-3.39794678505534e-10,-1.19277528826123e-09,-0.0800000123917163,2.51870455590171e-07,3.91077593919807e-07,-3.08316636110673e-08,1.02869102125436e-11,2.42363420999174e-10,-3.92384041925141e-10,3.77708931656717e-10,-2.52619106113489e-10,-1.14925430247843e-10,3.49113099551749e-11,-4.5536491217487e-11,9.21950883708507e-07 +9.26,-1.79285639452216e-06,-1.04219537479591e-06,1.57861872496917e-06,-3.39813184535576e-10,-1.19257185376975e-09,-0.0799999964740531,-1.64660754649344e-09,6.80793095508911e-10,3.20659297725658e-10,1.03502276194168e-11,2.42254133420188e-10,1.4891159486054e-07,9.51591615835428e-07,8.17941591194262e-06,-1.8230218333183e-05,2.81892564846295e-11,-5.76795555762352e-11,1.43114686768115e-10 +9.262,3.61713348379436e-09,-7.37347632603913e-09,-2.10981562775991e-09,-3.39753277595056e-10,-1.19180627172755e-09,-0.0800000117960699,2.55676822053512e-07,4.23795257567574e-07,-1.03752536943791e-07,1.03996672384821e-11,2.42132702776869e-10,-3.91811583178069e-10,3.02363928166083e-08,-9.83544842792167e-09,-5.24298486570656e-09,3.44342609981472e-10,-4.15899953365531e-09,0.000920256038907033 +9.264,-1.79183368723395e-06,-1.04050019376564e-06,1.5782037148214e-06,-3.39771585866622e-10,-1.19160332295865e-09,-0.0799999964756204,-1.52566197522702e-09,6.41451301797229e-10,2.99687358262834e-10,1.17275980593425e-11,2.25618135285568e-10,3.82993575048827e-06,-0.0345875399190462,-0.0176837740243191,0.0305558182668778,-1.96457433655484e-10,-1.02292306569908e-08,-0.00441724639244674 +9.266,3.61103083589345e-09,-7.37091052083194e-09,-2.10861687832686e-09,-3.39706367202819e-10,-1.1909037991864e-09,-0.0799999964763269,-0.000138094482854116,-7.03113008397012e-05,0.000122119520530554,9.61383750386025e-12,2.01215780148911e-10,-1.76693773813682e-05,-2.99937212653383e-08,8.85294441921116e-09,3.78332348088733e-09,-2.05998412772197e-11,3.8471829888467e-09,-0.000957581743933408 +9.268,-2.3442116186506e-06,-1.32174539712454e-06,2.06668179694378e-06,-3.39733130516606e-10,-1.19079845983805e-09,-0.0800000671531299,-1.64563686028842e-09,6.76863079474085e-10,3.14820652186389e-10,1.16451986942336e-11,2.4100686724096e-10,-3.91225246643188e-10,0.0785922438963233,0.0409723789453557,-0.0705210011399283,1.0846358533558e-09,1.80727828536217e-08,0.00696687283210886 +9.27,3.6044482884523e-09,-7.36820306851405e-09,-2.10735759571812e-09,-3.39659786408042e-10,-1.18993977171744e-09,-0.0799999964778918,0.000176274492731142,9.35782149417036e-05,-0.000159964484029128,1.3952380917283e-11,2.73506911563389e-10,1.01981139470642e-05,-8.71316365394081e-09,1.63085690777719e-09,2.45138111195422e-09,-7.17091316883045e-10,1.28629745740976e-09,-1.38517669552374e-09 +9.272,-1.63911364772611e-06,-9.47432537357767e-07,1.42682386082733e-06,-3.39677320992937e-10,-1.1897044321918e-09,-0.0800000263606741,-1.68048951490418e-09,6.83386507105193e-10,3.24626176634204e-10,8.77683342670172e-12,2.46152057070599e-10,-3.96765953425283e-10,-0.0634151605786059,-0.0350405474230592,0.0570872141323093,-1.82232701151323e-09,-9.80335604361174e-09,-0.00232515562272693 +9.274,3.59772633039268e-09,-7.36546952248562e-09,-2.10605909101158e-09,-3.39624679074335e-10,-1.18895516348916e-09,-0.0799999964794789,-7.7386149583366e-05,-4.65839747505799e-05,6.83843725001853e-05,6.66307287122765e-12,2.34293487388929e-10,8.97491456153353e-07,1.33261999506997e-09,-2.30284541360104e-10,3.09756560715216e-10,-9.51929507432741e-11,-4.38017677410964e-11,3.36536354295529e-10 +9.276,-1.94865824605954e-06,-1.13376843636007e-06,1.70036135082804e-06,-3.39650668701452e-10,-1.18876725824224e-09,-0.0800000227707083,-1.6751590349239e-09,6.82465368939753e-10,3.25865202877065e-10,8.39606162372867e-12,2.45976849999634e-10,-3.95419808008101e-10,0.0306664763751106,0.0182936128688976,-0.0263856057004551,7.77156117237781e-10,4.46647926977227e-09,0.000143711725679483 +9.278,3.59102569425299e-09,-7.36273966100986e-09,-2.10475563020007e-09,-3.3959109482784e-10,-1.18797125608916e-09,-0.0799999964810605,4.52797559170627e-05,2.65904767250026e-05,-3.71580503016235e-05,9.77169734017843e-12,2.52159404468016e-10,1.47233835887122e-06,3.28187997611435e-09,-2.81242043542797e-10,-4.27934597480115e-10,2.43294967505801e-10,-3.44776290850467e-10,5.59448321002634e-10 +9.28,-1.76753922239131e-06,-1.02740652946007e-06,1.55172914962157e-06,-3.39611581912092e-10,-1.18775862062437e-09,-0.0800000168813548,-1.66203151501944e-09,6.81340400765582e-10,3.24153464487145e-10,9.36924149375177e-12,2.44597744836233e-10,-3.93182014724091e-10,-0.0155197190064044,-0.00880718521180998,0.0135068919914774,-6.70036942606738e-11,-2.79637424330199e-09,-0.00010489002114797 +9.282,3.58437756819291e-09,-7.3600142994068e-09,-2.10345901634212e-09,-3.39553617861865e-10,-1.18699286510981e-09,-0.0799999964826333,-1.67991201085482e-05,-8.6382641222334e-06,1.686951766428e-05,9.50368256313576e-12,2.4097390749481e-10,1.05277827427939e-06,2.98933512492203e-09,-2.59558000092969e-10,-5.45570533194588e-10,2.55438031837527e-10,-3.64291929955047e-10,4.57966997657776e-10 +9.284,-1.83473570282552e-06,-1.06195958594901e-06,1.61920722027871e-06,-3.39573567181839e-10,-1.18679472499439e-09,-0.0800000126702417,-1.65007417451975e-09,6.80302168765209e-10,3.21971182354366e-10,1.03909936211022e-11,2.43140577116412e-10,-3.91350146733459e-10,0.00720946383085755,0.00406716321298816,-0.00657526428020752,3.79037079502071e-10,8.56086035421506e-10,-0.000111640108615881 +9.286,3.57777727149483e-09,-7.35729309073174e-09,-2.10217113161271e-09,-3.39512053887381e-10,-1.18602030280135e-09,-0.0799999964841987,1.20387352148788e-05,7.63038872971745e-06,-9.43153945654716e-06,1.10198308811439e-11,2.44398251636495e-10,6.06217839815915e-07,1.9757416191031e-09,-2.67797936679403e-10,-4.14273650142364e-10,1.64581889782109e-10,-2.3245294580784e-10,3.49546780452702e-10 +9.288,-1.78658076196601e-06,-1.03143803103015e-06,1.58148106245252e-06,-3.39529487858314e-10,-1.18581713198784e-09,-0.0800000102453704,-1.64217120804334e-09,6.79230977018492e-10,3.20314087753796e-10,1.10493211802306e-11,2.42210765333181e-10,-3.89951959611648e-10,-0.00387638282331871,-0.00230874783657288,0.00321856895811789,3.05745012640847e-11,-7.95370713735191e-10,-6.89915347073923e-05 +9.29,3.57120858666266e-09,-7.35457616682367e-09,-2.10088987526169e-09,-3.3946785660266e-10,-1.18505145974002e-09,-0.0799999964857585,-3.46679607840121e-06,-1.60460261657714e-06,3.4427363759287e-06,1.11421288862003e-11,2.41216768781554e-10,3.30251700986254e-07,1.10379912657111e-09,-3.96384314185367e-10,-2.89481980018132e-10,6.26668855709026e-11,-1.70002900618862e-10,2.91433543920877e-10 +9.292,-1.80044794627961e-06,-1.03785644149645e-06,1.59525200795624e-06,-3.3948491934277e-10,-1.18485226491272e-09,-0.0800000089243636,-1.63775601153705e-09,6.77645439761751e-10,3.19156159833724e-10,1.12999887225142e-11,2.41530753730705e-10,-3.88786225435965e-10,0.0016938421919963,0.000928961437938882,-0.00162516892022875,5.94142790522186e-11,1.63931368479839e-10,-3.05068383749175e-05 +9.294,3.56465756261651e-09,-7.35186558506462e-09,-2.09961325062236e-09,-3.3942265664777e-10,-1.18408533672509e-09,-0.0799999964873136,3.30857268958323e-06,2.11124313517798e-06,-3.05793930498558e-06,1.13797860024091e-11,2.41872494255473e-10,2.08224347486597e-07,6.13631324572603e-10,-4.88541498922074e-10,-2.07733136248271e-10,8.67361737988903e-13,-1.11022302462541e-10,2.34187669256921e-10 +9.296,-1.78721365552128e-06,-1.02941146895574e-06,1.5830202507363e-06,-3.3943940019876e-10,-1.1838847749357e-09,-0.0800000080914662,-1.63530148623876e-09,6.75691273766063e-10,3.18325227288731e-10,1.13034581694661e-11,2.41086664520855e-10,-3.87849474758937e-10,-0.000952870176615841,-0.00054068932556055,0.000785786222548709,-3.1441863003336e-11,-2.57606436209351e-10,-9.18245514349599e-06 +9.298,3.55811635667155e-09,-7.34916281996956e-09,-2.0983399497132e-09,-3.39377442815092e-10,-1.18312099006701e-09,-0.079999996488865,-5.02908016879715e-07,-5.15141670639868e-08,8.52055852089133e-08,1.12540185503958e-11,2.40842068510636e-10,1.71494526912617e-07,4.20995703576033e-10,-5.81566045321108e-10,-1.9309640691963e-10,-3.53449908230197e-11,-8.413408858486e-11,2.4633073358865e-10 +9.3,-1.7892252875888e-06,-1.029617525624e-06,1.58336107307713e-06,-3.39394384124558e-10,-1.18292140666165e-09,-0.0800000074054881,-1.63361750342446e-09,6.73365009584777e-10,3.17552841661052e-10,1.1162078206174e-11,2.40750128166516e-10,-3.86864151824582e-10,0.000400368535715008,0.000248067697893782,-0.000372407282637595,-3.53449908217857e-11,-1.86482773400115e-11,-1.75752901813508e-06 +9.302,3.55158188665786e-09,-7.34646935993122e-09,-2.09706973834656e-09,-3.39332794502267e-10,-1.18215798955434e-09,-0.0799999964904125,1.09856612598014e-06,9.40756624511034e-07,-1.4044235453413e-06,1.11126385871087e-11,2.40767475401276e-10,1.64464410840078e-07,3.65972443503778e-10,-6.08887940142476e-10,-1.77809156322836e-10,-3.96817995141997e-11,-8.97719399085121e-11,2.35922392775743e-10 +9.304,-1.78483102308488e-06,-1.02585449912596e-06,1.57774337889577e-06,-3.3934993357021e-10,-1.18195833676005e-09,-0.0800000067476304,-1.63215361365044e-09,6.70929457824208e-10,3.16841605035761e-10,1.10033510081172e-11,2.40391040406882e-10,-3.85920462253479e-10,-0.000245617187992345,-0.000123421111655378,0.000218303918128208,-5.33427468862751e-11,-1.13624387676456e-10,-1.61619675975685e-06 +9.306,3.54505327220325e-09,-7.34378564209992e-09,-2.09580237192641e-09,-3.39288781098235e-10,-1.18119642539272e-09,-0.0799999964919562,1.16097374010435e-07,4.47072177889356e-07,-5.3120787282818e-07,1.08992675995635e-11,2.4031297785057e-10,1.57999623801048e-07,3.447220805606e-10,-5.84384970895331e-10,-1.52980926502553e-10,-5.63785129680371e-11,-7.15573433573746e-11,2.67147415257638e-10 +9.308,-1.78436663358884e-06,-1.0240662104144e-06,1.57561854740446e-06,-3.39306336499812e-10,-1.18099708484865e-09,-0.0800000061156319,-1.6307747253282e-09,6.68591917940627e-10,3.16229681329751e-10,1.07778369562451e-11,2.40104811033452e-10,-3.84851872592449e-10,7.71249574892711e-05,4.93163821412121e-05,-5.50409561678299e-05,-6.2883726004173e-11,-6.28837260041791e-11,-3.37509274001076e-06 +9.31,3.53853017330194e-09,-7.34111127442816e-09,-2.0945374532011e-09,-3.3924566975041e-10,-1.18023600614858e-09,-0.0799999964934956,4.24597203967486e-07,6.44337706454183e-07,-7.51371697499475e-07,1.06477326955468e-11,2.40061442946553e-10,1.44499252841006e-07,3.17617026429715e-10,-5.0090140368841e-10,-1.11998084417778e-10,-7.17741838185564e-11,-7.06899816460627e-11,1.99493199737381e-10 +9.312,-1.78266824477297e-06,-1.02148885958858e-06,1.57261306061446e-06,-3.39263745569029e-10,-1.18003683907686e-09,-0.0800000055376349,-1.62950425722248e-09,6.66588312325873e-10,3.1578168899208e-10,1.04907402209709e-11,2.39822051106868e-10,-3.840538997935e-10,-7.81146644493332e-05,-4.96566023977429e-05,9.21277146368197e-05,-6.74373751297654e-11,-7.54604712316243e-11,-4.48834892864796e-06 +9.314,3.53201215627305e-09,-7.33844492117885e-09,-2.09327432644513e-09,-3.39203706789526e-10,-1.17927671794416e-09,-0.0799999964950318,1.12138546170187e-07,4.45711296863234e-07,-3.82860838952237e-07,1.03779831950278e-11,2.39759601061626e-10,1.26545857126417e-07,2.91650384398555e-10,-4.26525134655707e-10,-5.68121938382344e-11,-6.70036942595891e-11,-4.03323208164473e-11,1.77809156287576e-10 +9.316,-1.78221969058829e-06,-1.01970601440113e-06,1.57108161725865e-06,-3.39222233636249e-10,-1.17907780067261e-09,-0.0800000050314515,-1.62833765568489e-09,6.6488221178725e-10,3.15554440216727e-10,1.02227254439325e-11,2.39660721823602e-10,-3.83342663168349e-10,5.49264222972855e-06,-8.94248564082511e-06,2.69764454914593e-05,-7.54604712038556e-11,-3.55618312309165e-11,-4.42843678393003e-06 +9.318,3.52549880565031e-09,-7.33578539233171e-09,-2.09201210868426e-09,-3.3916281588775e-10,-1.17831807505686e-09,-0.0799999964965652,1.34109115089099e-07,4.09941354299937e-07,-2.74955056986412e-07,1.00761413102124e-11,2.39617353736703e-10,1.08832109990698e-07,2.76037873295527e-10,-3.07913417059614e-10,-1.89735380535243e-11,-6.89552581711976e-11,-3.85975973670872e-11,1.37043154644705e-10 +9.32,-1.78168325412793e-06,-1.01806624898393e-06,1.5699817970307e-06,-3.39181929071009e-10,-1.17811933125767e-09,-0.0800000045961231,-1.62723350419171e-09,6.63650558119012e-10,3.15478546064513e-10,9.94690441124769e-12,2.39506331434134e-10,-3.8279449054977e-10,-2.42638491221769e-05,-2.8121561503052e-05,5.7738809610187e-05,-6.179952383166e-11,-4.38017677683997e-11,-3.55696375131585e-06 +9.322,3.51898987163354e-09,-7.33313079009923e-09,-2.0907501945e-09,-3.39123028270105e-10,-1.17736004973112e-09,-0.0799999964980963,3.70537186003591e-08,2.97455108287691e-07,-4.39998185455863e-08,9.82894321488567e-12,2.39442146665629e-10,9.46042549854302e-08,2.73544207937487e-10,-2.48282297425563e-10,2.65629532609237e-11,-5.74627151406403e-11,-1.38777877812299e-11,1.36175792821711e-10 +9.324,-1.78153503925353e-06,-1.01687642855078e-06,1.56980579775652e-06,-3.39142613298149e-10,-1.177161562671e-09,-0.080000004217706,-1.62613932735996e-09,6.62657428929309e-10,3.15584797877556e-10,9.71705355068515e-12,2.39450820283009e-10,-3.82249787378483e-10,3.23896226679736e-06,-1.12635549758708e-05,3.23369911577125e-05,-5.48606299277786e-11,-1.82145964977585e-11,-2.36041221291002e-06 +9.326,3.5124853143241e-09,-7.33048016038351e-09,-2.08948785530849e-09,-3.39084160055902e-10,-1.17640224644999e-09,-0.0799999964996253,5.00095676675471e-08,2.52400888384213e-07,8.53481460852495e-08,9.60950069517458e-12,2.39369288279638e-10,8.51626061337912e-08,2.9197564505043e-10,-1.67617655866303e-10,3.3176586478073e-11,-4.87890977618583e-11,-2.9490299091609e-11,1.30104260698288e-10 +9.328,-1.78133500098286e-06,-1.01586682499724e-06,1.57014719034086e-06,-3.39104175295368e-10,-1.17620408551788e-09,-0.0800000038770556,-1.62497142477975e-09,6.61986958305844e-10,3.15717504223469e-10,9.52189715963774e-12,2.39332859086643e-10,-3.8172937033569e-10,1.39705201616696e-06,-8.67250021799159e-06,2.72656256296491e-05,-4.51028103764537e-11,-7.80625566846967e-12,-1.19305693797397e-06 +9.33,3.50598542862499e-09,-7.32783221255029e-09,-2.0882249852916e-09,-3.39046072467264e-10,-1.17544491501365e-09,-0.0799999965011522,5.55977757322143e-08,2.17710887512251e-07,1.94410648603834e-07,9.42908945366879e-12,2.39338063256964e-10,8.03903783818958e-08,3.16261773713916e-10,-1.56992474575874e-10,3.38271077815364e-11,-2.9056618222605e-11,-1.08420217248514e-11,1.11022302462491e-10 +9.332,-1.78111260987993e-06,-1.01499598144719e-06,1.57092483293528e-06,-3.39066458937554e-10,-1.17524673326486e-09,-0.0800000035554941,-1.6237063776849e-09,6.61358988407541e-10,3.15852812654595e-10,9.40567068674728e-12,2.39289490999743e-10,-3.8128528112584e-10,1.08049395440046e-05,1.38777227559289e-06,8.59535955867729e-06,-1.27935856342851e-11,-4.16333633968748e-11,-2.51258215613349e-07 +9.334,3.49949060311425e-09,-7.32518677659666e-09,-2.08696157404098e-09,-3.39008449784517e-10,-1.17448775704965e-09,-0.0799999965026774,9.88175339082282e-08,2.23261976614622e-07,2.28792086838539e-07,9.37791511113165e-12,2.39171529803377e-10,7.93853455194425e-08,2.98280280685085e-08,-9.52276452144596e-09,-5.00565301018227e-09,2.95119831349444e-10,-4.07052863640524e-09,6.38811920032549e-09 +9.336,-1.7807173397443e-06,-1.01410293354073e-06,1.57184000128263e-06,-3.39028947277109e-10,-1.17429004714564e-09,-0.0800000032379527,-1.50439426541088e-09,6.23267930321761e-10,2.95830200613868e-10,1.05861500121449e-11,2.23007376454124e-10,-3.55732804324541e-10,-0.0345449545146593,-0.0173251844955889,0.0306429511580578,-2.45246531416166e-10,-1.01008611197417e-08,-0.00267670187143544 +9.338,3.4934730260526e-09,-7.32269370487537e-09,-2.08577825323852e-09,-3.38966105184468e-10,-1.17359572754383e-09,-0.0799999965041003,-0.000138081000524775,-6.9077476005764e-05,0.000122800596719111,8.39692898546666e-12,1.98768085324396e-10,-1.06274221402259e-05,-2.96598141014473e-08,8.78442284198318e-09,3.82040319522086e-09,-4.14165229877803e-11,3.81292220022263e-09,-6.23372881096353e-09 +9.34,-2.33304134184334e-06,-1.29041283756376e-06,2.06304238815902e-06,-3.38995359561167e-10,-1.17349497480435e-09,-0.0800000457476413,-1.62303352181665e-09,6.5840562168969e-10,3.1111181339475e-10,1.04204839201938e-11,2.38259065255013e-10,-3.80667719568392e-10,0.0785830100073217,0.0401932656909824,-0.070740660044831,1.09829680072806e-09,1.80085980849882e-08,0.00461340165288611 +9.342,3.48698089196534e-09,-7.32006008238861e-09,-2.08453380598494e-09,-3.38924423248788e-10,-1.17264269128281e-09,-0.079999996505623,0.000176251039504477,9.1695586758148e-05,-0.000160162043460182,1.27901161883784e-11,2.70802477664341e-10,7.82618447131653e-06,-8.47740389172034e-09,1.70284793210613e-09,2.47100517131226e-09,-7.06682976026207e-10,1.30407837306585e-09,-1.35742111995216e-09 +9.344,-1.62803718382551e-06,-9.23630490531208e-07,1.42239421431836e-06,-3.38944199096414e-10,-1.17241176489369e-09,-0.0800000144429034,-1.65694313738353e-09,6.65217013418113e-10,3.20995834079998e-10,7.59375201608931e-12,2.43475378747276e-10,-3.86097404048201e-10,0.00267906088145721,0.00245758557492068,0.000606376384994,-7.15573433854474e-11,-3.60865851093001e-09,-0.000835603775409937 +9.346,3.4803531194158e-09,-7.31739921433494e-09,-2.08324982264863e-09,-3.38894048240723e-10,-1.17166878976782e-09,-0.0799999965071674,0.000186967283030305,0.00010152592905783,-0.000157736537920206,1.25038868148366e-11,2.56367843620623e-10,4.48376936967715e-06,3.34767749545558e-08,-1.07583213171368e-08,-5.91345548916912e-09,4.71627945031089e-10,-4.62650751042911e-09,-0.00412063712405033 +9.348,-8.80168051704041e-07,-5.17526774299754e-07,7.91448062637326e-07,-3.38894183549154e-10,-1.17138629351921e-09,-0.0799999965078259,-1.52303603756526e-09,6.22183728149552e-10,2.97342012123313e-10,9.48026379621429e-12,2.24969348705553e-10,-1.64829345936109e-05,-0.0684594175553302,-0.037094132715115,0.0587046597990855,-1.10046520507164e-09,-1.10922555862387e-08,-0.00112103177088404 +9.35,3.47426097526554e-09,-7.31491047942234e-09,-2.08206045460013e-09,-3.38856127185538e-10,-1.170768912373e-09,-0.0800000624389058,-8.68703871909861e-05,-4.6850601802614e-05,7.70821012761097e-05,8.10202599455057e-12,2.11998821275673e-10,-3.57713858534265e-10,-4.48157678485303e-09,1.2229800504943e-09,1.74990230606118e-10,1.09287578985462e-10,5.06105574091138e-10,0.00292545020673502 +9.352,-1.22764960046795e-06,-7.04929181510189e-07,1.09977646774173e-06,-3.38861775445176e-10,-1.1705382982341e-09,-0.0799999965092568,-1.54096234470467e-09,6.27075648351529e-10,2.98041973045738e-10,9.91741411215609e-12,2.26993771001917e-10,-4.78113376667207e-06,-0.0504499189875542,-0.0277822823665827,0.0413838166621408,-1.53067662711469e-09,-2.85665588406416e-09,-6.62664367822993e-09 +9.354,3.46809712588672e-09,-7.31240217682894e-09,-2.08086828670795e-09,-3.3881645752909e-10,-1.16986093728899e-09,-0.0800000815634408,-0.00028867006314127,-0.000157979731268982,0.000242617367924728,1.97931948608975e-12,2.00572197739412e-10,-3.84220433247193e-10,-3.84388701426117e-08,1.18943483535417e-08,7.39490933768935e-09,-8.17705278487647e-10,5.44096018242766e-09,0.00442885983702918 +9.356,-2.3823298530329e-06,-1.33684810658605e-06,2.07024593944054e-06,-3.38853858167232e-10,-1.16973600944315e-09,-0.0799999965107936,-1.6947178252751e-09,6.7465304176569e-10,3.27621610396492e-10,6.64659299820587e-12,2.48757611731626e-10,1.29343055814427e-05,0.173934738399202,0.0952048863857425,-0.147820255914585,3.51953709232322e-09,2.38619887738042e-08,2.63331023653338e-09 +9.358,3.46131825458562e-09,-7.30970356466187e-09,-2.07955780026636e-09,-3.38789871157097e-10,-1.16886590684206e-09,-0.0800000298262185,0.000407068890455463,0.000222839814273946,-0.000348663655733547,1.60574678553811e-11,2.96020152834619e-10,-3.73687192301061e-10,3.47443157144238e-08,-1.0726228932836e-08,-5.64023654170533e-09,4.3649979464276e-10,-4.68375338513841e-09,-0.0064734429943231 +9.36,-7.54054291211229e-07,-4.45488849490361e-07,6.75591316506505e-07,-3.3878962829581e-10,-1.16855192883181e-09,-0.0799999965122884,-1.55574056241742e-09,6.31748126034351e-10,3.05060664229673e-10,8.39259217677672e-12,2.30022598191074e-10,-1.29594663958469e-05,-0.223003100529419,-0.122537096138581,0.192446822751525,-4.63713269172125e-09,-3.13950254682541e-08,-2.01401395556713e-09 +9.362,3.45509529233595e-09,-7.30717657215774e-09,-2.07833755760944e-09,-3.3875630078839e-10,-1.1679458164493e-09,-0.0800000816640841,-0.000484943511662115,-0.000267308570280325,0.000421123635272467,-2.49106291150186e-12,1.70440050961616e-10,-3.81743248123329e-10,-3.33671621149176e-08,1.16170094377451e-08,6.00344426948539e-09,-2.01011082778768e-10,4.73406036593964e-09,0.00675885721435608 +9.364,-2.69382833786034e-06,-1.51472313061202e-06,2.36008585759694e-06,-3.38799592547456e-10,-1.16787016862796e-09,-0.0799999965138154,-1.68920921087714e-09,6.78216163785347e-10,3.29074441307623e-10,7.58854784566138e-12,2.48958839654839e-10,1.40759624615865e-05,0.193586898590022,0.106611607380337,-0.168043652655851,4.08787587113997e-09,3.08329750620375e-08,-3.54837687015372e-09 +9.366,3.44833845549244e-09,-7.3044637075026e-09,-2.07702125984421e-09,-3.38725946597007e-10,-1.16694998109068e-09,-0.0800000253602342,0.000289404082697887,0.000159137859240977,-0.000251050975350862,1.38604405730562e-11,2.93771951209753e-10,-3.95936755603942e-10,4.12463032497323e-09,-4.11996825619681e-10,-3.8706017594262e-11,1.2338220722798e-10,-3.55618312602801e-10,-0.00291188592075561 +9.368,-1.53621200706892e-06,-8.78171693648178e-07,1.3558819561936e-06,-3.38744150785164e-10,-1.16669508082312e-09,-0.0799999965153991,-1.67271068957725e-09,6.76568176482868e-10,3.28919617237246e-10,8.08207667457324e-12,2.47536366404428e-10,2.42841877856533e-06,-0.0347975241322776,-0.0191518419773293,0.0315768076880319,-1.18611717669888e-10,-1.02019087622173e-08,7.68655972205151e-09 +9.37,3.44164761273413e-09,-7.30175743479666e-09,-2.07570558137526e-09,-3.38693618290309e-10,-1.16595983562506e-09,-0.0800000156465591,0.00015021398616873,8.25304913316346e-05,-0.000124743744598692,1.33859937023765e-11,2.5296431616087e-10,-3.65190516715726e-10,3.79964072356634e-08,-1.10764262344738e-08,-7.17936994572957e-09,1.00267016911571e-09,-5.25881421739737e-09,-0.00323691141425375 +9.372,-9.35356062394064e-07,-5.48049728321676e-07,8.56906977798888e-07,-3.38690606810355e-10,-1.16568322355848e-09,-0.0799999965168599,-1.52072506063461e-09,6.32262471544978e-10,3.0020213745433e-10,1.20927573510357e-11,2.26501109534841e-10,-1.05192268784482e-05,-0.135421825732317,-0.0735493584586531,0.116536944075149,-2.53031103014723e-09,-1.80055623189052e-08,-3.19102383406004e-09 +9.374,3.4355647124916e-09,-7.29922838491048e-09,-2.07450477282545e-09,-3.38645247260905e-10,-1.16505383118692e-09,-0.0800000577234666,-0.000391473316760479,-0.000211666942502945,0.000341404031701852,3.26474958178871e-12,1.80942066885257e-10,-3.77954612051964e-10,-3.4617464060243e-08,1.08845224500189e-08,5.59188112481246e-09,-2.66280053562498e-10,4.69763117294623e-09,0.00523463717164278 +9.376,-2.50124932943581e-06,-1.39471749833336e-06,2.22252310460615e-06,-3.38677547812027e-10,-1.16495945529094e-09,-0.0799999965183717,-1.65919491687557e-09,6.75800561345049e-10,3.22569661953578e-10,1.10276371367858e-11,2.45291634226624e-10,1.04193218081206e-05,0.155716438216515,0.0841924013080196,-0.136766847470703,3.07588156334033e-09,2.52640790232315e-08,-3.23005511222613e-09 +9.378,3.42892793282409e-09,-7.2965251826651e-09,-2.07321449417763e-09,-3.38601136712358e-10,-1.16407266465002e-09,-0.0800000160461794,0.000231392436105512,0.000125102662729096,-0.000205663358180901,1.55682758351487e-11,2.81998382978172e-10,-3.90874832500868e-10,1.53905208889718e-09,-9.35883315289278e-10,1.4831885719598e-10,-1.72821826294151e-10,-1.51788304147946e-10,-0.00225441529680353 +9.38,-1.57567958501345e-06,-8.94306847416815e-07,1.39986967188227e-06,-3.38615274708687e-10,-1.16383146175902e-09,-0.0799999965199352,-1.65303870851998e-09,6.72057028083891e-10,3.23162937382362e-10,1.03363498316089e-11,2.44684481010032e-10,1.40166062090345e-06,-0.0157667757341853,-0.00827587651640671,0.0156102109074111,-2.62376925724266e-11,-7.07897282456261e-09,7.28236915210884e-09 +9.382,3.42231577799001e-09,-7.29383695455277e-09,-2.0719218424281e-09,-3.38559791313031e-10,-1.16309392672598e-09,-0.0800000104395369,0.000168325333168778,9.19991566634724e-05,-0.000143222514551263,1.5463325064859e-11,2.53682491679924e-10,-3.61745355892435e-10,3.5826159747352e-08,-1.15671361378854e-08,-6.93564129742409e-09,7.0711665689374e-10,-5.06365782640233e-09,-0.00286553747570702 +9.384,-9.02378252338413e-07,-5.26310220762966e-07,8.26979613677281e-07,-3.38553421408427e-10,-1.1628167317923e-09,-0.0799999965213822,-1.50973406953058e-09,6.25788483532354e-10,2.95420372192669e-10,1.31648164591836e-11,2.24429849704424e-10,-1.00604892819234e-05,-0.141957785676826,-0.0768237639432215,0.122449846682741,-2.94209101525601e-09,-1.89141237394399e-08,-3.15025783237317e-09 +9.386,3.41627684171189e-09,-7.29133380061864e-09,-2.07074016093933e-09,-3.38507132047194e-10,-1.16219620732716e-09,-0.080000050681494,-0.000399505809538714,-0.000215295899109516,0.000346576872179864,3.69496100383101e-12,1.78025996722139e-10,-3.74346387221932e-10,-3.5704159897893e-08,1.03723453438061e-08,5.7299000614027e-09,-4.89192020224106e-10,4.78696943198397e-09,0.0048736771493529 +9.388,-2.50040149049309e-06,-1.38749381720094e-06,2.21328710239659e-06,-3.38538641564412e-10,-1.16210462780542e-09,-0.0799999965228796,-1.65255070912214e-09,6.67277864907574e-10,3.18339972438277e-10,1.12080483782874e-11,2.43577727432358e-10,9.43421931548609e-06,0.158474096734393,0.0853967636073764,-0.138703295864506,2.94425941960228e-09,2.57207449783138e-08,-3.26821902874103e-09 +9.39,3.4096666388754e-09,-7.28866468915901e-09,-2.06946680104958e-09,-3.38462299853681e-10,-1.16122189641743e-09,-0.0800000129446168,0.000234390577398789,0.000126291155319952,-0.0002082363112781,1.54719986822388e-11,2.80908976635383e-10,-3.87419263336895e-10,9.75483799639731e-10,-1.09742943899008e-09,3.11708124589656e-10,-3.29597460435666e-10,-7.41594285980296e-11,-0.00204828774514516 +9.392,-1.56283918089804e-06,-8.82329195921183e-07,1.38034185728428e-06,-3.38476753569683e-10,-1.16098099189887e-09,-0.0799999965244292,-1.64864877392358e-09,6.62888147151614e-10,3.19586804936635e-10,9.88965853654487e-12,2.43281089717966e-10,1.24106833490636e-06,-0.0170075078869905,-0.00893542947143383,0.0168082522039352,-1.89084858883147e-10,-7.1934645740364e-09,7.2320621713887e-09 +9.394,3.40307204377971e-09,-7.2860131365704e-09,-2.06818845382983e-09,-3.38422741219535e-10,-1.16024877205856e-09,-0.0800000079803434,0.000166360545850835,9.05494374342206e-05,-0.000141003302462366,1.47156592467063e-11,2.52135118339241e-10,-3.58491014651343e-10,3.54778597992576e-08,-1.14365981962435e-08,-6.70850094225255e-09,5.89589141397485e-10,-4.99817201515706e-09,-0.00267826869362826 +9.396,-8.97396997494478e-07,-5.2013144618418e-07,8.16328647434625e-07,-3.38417890932696e-10,-1.15997245142552e-09,-0.0799999965258632,-1.5067373347265e-09,6.17141754366625e-10,2.92752801167616e-10,1.22480151021356e-11,2.23288401657331e-10,-9.47200643961026e-06,-0.141517520501859,-0.0761672301410954,0.121528485940088,-3.03273031687549e-09,-1.87779479465561e-08,-3.17627868455404e-09 +9.398,3.3970450944408e-09,-7.28354456955294e-09,-2.06701744262516e-09,-3.38373749159127e-10,-1.15935561845193e-09,-0.0800000458683692,-0.000399709536156538,-0.000214119483130128,0.00034511064129793,2.58473797920573e-12,1.77023326553025e-10,-3.71196129389558e-10,-3.57304518002251e-08,1.05603460003724e-08,5.95161940560809e-09,-5.78096598370501e-10,4.84291426403239e-09,0.00456357350520079 +9.4,-2.49623514212045e-06,-1.3766093787046e-06,2.19677121262619e-06,-3.38407551980779e-10,-1.15926435811931e-09,-0.079999996527348,-1.64965914192739e-09,6.5938313836811e-10,3.16559278790046e-10,9.93562870865384e-12,2.42660058713459e-10,8.78228758119088e-06,0.158340808183391,0.0847757828695875,-0.137771581773908,2.87291891665145e-09,2.57263828295993e-08,-3.39658856596183e-09 +9.402,3.39044645787309e-09,-7.28090703699946e-09,-2.06575120551e-09,-3.38334006644292e-10,-1.15838497821708e-09,-0.0800000107392189,0.000233653696577237,0.000124983648348335,-0.000205975685797886,1.40764136458154e-11,2.79928857871456e-10,-3.8478248365341e-10,8.9517152352969e-10,-7.14055550725904e-10,6.04117450544209e-10,-3.76868675154941e-10,-1.12757025669154e-11,-0.00192323569309733 +9.404,-1.56162035581161e-06,-8.7667478531131e-07,1.37286846943474e-06,-3.38351246326196e-10,-1.15814464268782e-09,-0.0799999965288871,-1.64607845583327e-09,6.56526916165207e-10,3.18975748592223e-10,8.42815400803425e-12,2.42614955903191e-10,1.08934480880242e-06,-0.0834115152015778,-0.0451909780447529,0.0739368157930988,-1.9849573373869e-09,-1.34779340466048e-08,1.92380833485871e-09 +9.406,3.38386214404976e-09,-7.2782809293348e-09,-2.06447530251563e-09,-3.3830029402826e-10,-1.15741451839346e-09,-0.0800000063818396,-9.99923642290374e-05,-5.57802638306562e-05,8.97715773744765e-05,6.13658429626863e-12,2.26017121685043e-10,-3.77087250313976e-10,3.71377191152405e-09,-7.16657636013075e-10,-3.23200667618003e-10,2.75387351811377e-11,-3.79904441239001e-10,-1.90722862850088e-05 +9.408,-1.96158981272771e-06,-1.09979584063391e-06,1.73195477893261e-06,-3.38326699989011e-10,-1.15724057420108e-09,-0.0799999965303955,-1.63122336818718e-09,6.53660285621155e-10,3.17682945921751e-10,8.53830894875878e-12,2.41095338138235e-10,1.01305566366239e-06,0.0394225915351902,0.022177243899159,-0.0347067855766751,9.84672413050433e-10,5.75234304631271e-09,1.63064006783649e-10 +9.41,3.37733725057701e-09,-7.27566628819232e-09,-2.06320457073195e-09,-3.38266140792465e-10,-1.15645013704091e-09,-0.080000002329617,5.7698001911706e-05,3.292871176597e-05,-4.90555649322089e-05,1.00752739484699e-11,2.49026493870291e-10,-3.76434994286841e-10,3.65115923606138e-09,-6.27753057868949e-10,-5.21175984313673e-10,1.44849410244031e-10,-4.39318720291031e-10,-0.000104988071188116 +9.412,-1.73079780508081e-06,-9.68080993569986e-07,1.53573251920371e-06,-3.38286398893217e-10,-1.1562444682256e-09,-0.0799999965319012,-1.61661873124293e-09,6.51149273389678e-10,3.15598241984495e-10,9.1177065897351e-12,2.3933806325707e-10,5.93103378909786e-07,-0.0200523645486386,-0.0111507785826083,0.0175702444030706,-3.21574364358153e-10,-3.53796852922783e-09,8.37871438855182e-10 +9.414,3.37087077565204e-09,-7.27306169109876e-09,-2.06194217776401e-09,-3.38229669966106e-10,-1.15549278478788e-09,-0.0799999999572035,-2.25114562828397e-05,-1.16744025644585e-05,2.12254126800658e-05,8.78897649103746e-12,2.34874619753382e-10,-3.73083508531421e-10,2.60775017049535e-09,-5.84168130607374e-10,-4.32813507291145e-10,8.1098322500885e-11,-3.37837396972977e-10,-7.44057229024534e-05 +9.416,-1.82084363021216e-06,-1.01477860382782e-06,1.62063416992396e-06,-3.38251242987253e-10,-1.15530496974658e-09,-0.0799999965333935,-1.60618773056094e-09,6.48812600867249e-10,3.13866987955331e-10,9.44209987973861e-12,2.37986713669179e-10,2.95480487300005e-07,0.070863098601055,0.0384940345905198,-0.0620841521055178,1.9196883666024e-09,6.90419943438615e-09,5.444429629352e-09 +9.418,3.36444602472979e-09,-7.27046644069529e-09,-2.06068670981219e-09,-3.38191901566587e-10,-1.1545408379332e-09,-0.0799999987752815,0.000260940938121475,0.000142301735797672,-0.000227111195742089,1.64677299574496e-11,2.62491417490935e-10,-3.51305790014006e-10,3.30980089254345e-08,-1.07084480171352e-08,-6.3701214441879e-09,5.5576203361724e-10,-4.69329436422987e-09,-0.00194677423660845 +9.42,-7.77079877726378e-07,-4.4557166063719e-07,7.12189386955706e-07,-3.38185372067423e-10,-1.15425500407662e-09,-0.0799999965347988,-1.47379569485922e-09,6.05978808798713e-10,2.88386502178582e-10,1.16651480142073e-11,2.19213536212261e-10,-7.49161645913292e-06,-0.17455309328844,-0.0939741776227603,0.151626423200989,-3.90789831050761e-09,-2.37574716843766e-08,-3.13291059761481e-09 +9.422,3.35855084195036e-09,-7.26804252546009e-09,-2.05953316380347e-09,-3.3814524097453e-10,-1.15366398378836e-09,-0.0800000287417474,-0.00043727143503221,-0.000233594974693328,0.0003793944970618,8.36136715420913e-13,1.6746153075344e-10,-3.63837432404464e-10,-3.82106997952409e-08,1.07492140188927e-08,6.38790235985151e-09,-7.24030210785979e-10,5.13391412715449e-09,0.00335275834265837 +9.424,-2.52616561785502e-06,-1.3799515594104e-06,2.22976737520274e-06,-3.38182027520562e-10,-1.15358515795361e-09,-0.0799999965362541,-1.62663849404017e-09,6.48975664874279e-10,3.13938111617985e-10,8.76902717106373e-12,2.39749192720877e-10,5.9194169114991e-06,0.172068582099615,0.0915287293227227,-0.150491316251448,3.07653208464409e-09,2.82877020418599e-08,-3.943893822592e-09 +9.426,3.3520442879742e-09,-7.2654466228006e-09,-2.058277411357e-09,-3.38110164865846e-10,-1.15270498701747e-09,-0.0800000050640797,0.000251002893366176,0.000132519942597523,-0.000222570767943928,1.31422650539959e-11,2.80612338920867e-10,-3.7961300769483e-10,-1.06268075936147e-09,-3.79687600804323e-10,9.53338970266289e-10,-4.48642858974401e-10,2.78856798763204e-10,-0.00134110669010976 +9.428,-1.52215404438999e-06,-8.49871789020129e-07,1.33948430342673e-06,-3.38129458460346e-10,-1.15246270859792e-09,-0.0799999965377726,-1.63088921707762e-09,6.47456914471061e-10,3.17751467499052e-10,6.97445573516552e-12,2.4086461991593e-10,5.5499015105826e-07,-0.0902571050656171,-0.0484869702140374,0.0802608604613301,-2.1627664936731e-09,-1.43947354036276e-08,1.84921522534954e-09 +9.43,3.34552073110589e-09,-7.26285679514271e-09,-2.05700640548701e-09,-3.38082267042905e-10,-1.15174152853781e-09,-0.0800000028441191,-0.000110025526896253,-6.14279382586054e-05,9.84726739013575e-05,4.49119907930445e-12,2.23033397306363e-10,-3.72216146793433e-10,2.70497600031455e-09,-5.10225542443467e-10,-1.86374353485499e-10,7.00394603417736e-11,-2.65412691851131e-10,3.42602266000664e-05 +9.432,-1.96225615197495e-06,-1.09558354205452e-06,1.73337499903212e-06,-3.38111493664028e-10,-1.1515705750087e-09,-0.0799999965392614,-1.62006931307636e-09,6.45416012301287e-10,3.1700597008511e-10,7.25461357653258e-12,2.39802969148526e-10,6.92031057458511e-07,0.0428761811586608,0.0240782333912752,-0.0376857881944934,1.14339961110296e-09,6.35949626292955e-09,1.82145964977504e-11 +9.434,3.33904045385358e-09,-7.26027513109351e-09,-2.05573838160666e-09,-3.38053248588599e-10,-1.15078231666121e-09,-0.0800000000759949,6.14791977384475e-05,3.48849953065275e-05,-5.22704788766664e-05,9.0647975237178e-12,2.48471382358089e-10,-3.72143288407442e-10,3.28599994418993e-09,-4.65990093662718e-10,-5.80156582461928e-10,2.46113893155069e-10,-3.81639164688353e-10,-6.52379721424109e-05 +9.436,-1.71633936102119e-06,-9.56043560828429e-07,1.52429308352547e-06,-3.38075234473934e-10,-1.15057668947927e-09,-0.07999999654075,-1.6069253132996e-09,6.43552051926637e-10,3.14685343755262e-10,8.23906914915275e-12,2.38276412489773e-10,4.31079168888896e-07,-0.0215952395389838,-0.0119108862983138,0.0189744944111262,-2.36356073601892e-10,-3.76218153852553e-09,7.96238075473533e-10 +9.438,3.33261275260038e-09,-7.2577009228858e-09,-2.05447964023164e-09,-3.38020292312002e-10,-1.14982921101126e-09,-0.0799999983516782,-2.49017604174782e-05,-1.27585498867225e-05,2.362749876783e-05,8.11937322931034e-12,2.33422656203989e-10,-3.68958336105548e-10,3.14201789586368e-08,-9.38181823895361e-09,-5.38523219073669e-09,5.16297074537711e-10,-4.29127219869858e-09,5.2793186489109e-06 +9.44,-1.81594640269109e-06,-1.00707776037531e-06,1.61880307859678e-06,-3.38042756981016e-10,-1.14964299885445e-09,-0.0799999965422258,-1.48124459746507e-09,6.06024778970826e-10,2.93144414992318e-10,1.03042574473034e-11,2.2111132369498e-10,4.52196443484537e-07,-0.0239043523252326,-0.011090273775495,0.0213027606542188,1.56341953271473e-10,-8.60466212173794e-09,-0.00171197722924999 +9.442,3.32668777421052e-09,-7.25527682376992e-09,-2.05330706257167e-09,-3.37979075282213e-10,-1.14894476571648e-09,-0.0799999965428924,-0.000120519169718398,-5.71196449886974e-05,0.000108838541384696,8.74474104239616e-12,1.99004007717041e-10,-6.84827787533531e-06,-2.79456362564593e-08,8.09942390933389e-09,3.26236433700816e-09,7.65446733774595e-11,3.53016227361201e-09,-0.000113140996571534 +9.444,-2.29802308156484e-06,-1.23555634033018e-06,2.05415724413571e-06,-3.38007778016847e-10,-1.14884698282358e-09,-0.0800000239353373,-1.59302714249094e-09,6.38422474608173e-10,3.06193872340355e-10,1.06104361408133e-11,2.35231972789433e-10,-3.67542801749151e-10,0.0721673147031328,0.0355250603910094,-0.0659542505698885,1.0627349694715e-09,1.68424302282846e-08,0.00304299948260247 +9.446,3.32031566564056e-09,-7.25272313387149e-09,-2.05208228708231e-09,-3.3793663353765e-10,-1.14800383782532e-09,-0.0799999965443626,0.000168150089094101,8.49805965753247e-05,-0.000154978460894829,1.29956809202817e-11,2.66373728630172e-10,5.32372005507323e-06,-7.70854192092183e-09,1.37390099290244e-09,2.14606978018334e-09,-6.34041430470559e-10,1.1388459619524e-09,-1.16053000538742e-09 +9.448,-1.62542272518851e-06,-8.95633954028918e-07,1.43424340055646e-06,-3.37955795293166e-10,-1.14778148790906e-09,-0.0800000026404571,-1.62386131017463e-09,6.43918078579782e-10,3.14778151461087e-10,8.07427041893135e-12,2.39787356637242e-10,-3.721849217707e-10,-0.0601423845348363,-0.0316918901239088,0.0548754332710927,-1.73255507163145e-09,-9.46204919971337e-09,-0.00121448369850397 +9.45,3.31382022039986e-09,-7.25014746155717e-09,-2.05082317447647e-09,-3.37904336455974e-10,-1.14704468839877e-09,-0.0799999965458513,-7.24194490453243e-05,-4.17869639203529e-05,6.45232721896151e-05,6.06546063375357e-12,2.28525531831306e-10,4.65785261055725e-07,3.02793814325671e-08,-9.32782497069235e-09,-4.61978545692681e-09,2.10985742766622e-10,-4.00157337818376e-09,6.35082264551117e-09 +9.452,-1.91510052136978e-06,-1.06278180971031e-06,1.6923364893149e-06,-3.37931533450631e-10,-1.14686738578174e-09,-0.0800000007773161,-1.50274378444437e-09,6.06606778697017e-10,2.96299009633382e-10,8.91821338999775e-12,2.23781063124509e-10,-3.46781631188658e-10,-0.00461565572421891,0.000105269822373045,0.00473200889258424,5.06972935854334e-10,-5.61356516826219e-09,-0.00194619308342735 +9.454,3.30780924526208e-09,-7.24772103444238e-09,-2.04963797843793e-09,-3.37868663602414e-10,-1.14614956414627e-09,-0.0799999965472385,-9.08820719421979e-05,-4.13658846308608e-05,8.345130775995e-05,8.09335237717069e-12,2.0607127115826e-10,-7.3189870726528e-06,-2.62367167921998e-08,8.01832558683556e-09,3.17768814733846e-09,1.70436581514759e-10,3.34454686168402e-09,-5.5060123127516e-09 +9.456,-2.27862880913853e-06,-1.22824534823374e-06,2.02614172035466e-06,-3.37899160041122e-10,-1.1460431006971e-09,-0.0800000300532644,-1.60769065161316e-09,6.38680081044355e-10,3.09009762222735e-10,9.59995971605671e-12,2.37159250571243e-10,-3.68805680439662e-10,0.0615876961888684,0.0300945732789322,-0.0561940168293062,9.87057657829684e-10,1.48730854021299e-08,0.00348143569008089 +9.458,3.30137848265563e-09,-7.2451663141182e-09,-2.04840193938904e-09,-3.3783026376355e-10,-1.14520092714399e-09,-0.0799999965487137,0.000155468712813248,7.90124084848548e-05,-0.00014132475955725,1.2041583008489e-11,2.65563612766773e-10,6.60675568766923e-06,-5.58472539047159e-09,1.32988238477043e-09,1.83175957041385e-09,-4.50811263319372e-10,9.38485400503243e-10,-8.88178419699919e-10 +9.46,-1.65675395788533e-06,-9.12195714294212e-07,1.46084268212547e-06,-3.37850993709088e-10,-1.14498084624604e-09,-0.0800000036262416,-1.63002955317505e-09,6.43999610583439e-10,3.16336800504392e-10,7.79671466277862e-12,2.40913192173258e-10,-3.72358394118463e-10,-0.0548448850669426,-0.028890951504635,0.0499007972300016,-1.44025416592872e-09,-8.78290495884303e-09,-0.00146873959348773 +9.462,3.29485836444293e-09,-7.24259031567587e-09,-2.04713659218703e-09,-3.37799076904899e-10,-1.14423727437529e-09,-0.0799999965502031,-6.39108274544977e-05,-3.65513975336725e-05,5.82784293627342e-05,6.28056634477472e-12,2.30431992931405e-10,7.31797313718943e-07,2.92870111860675e-09,-3.49113099611741e-10,-2.23345647883203e-11,4.31512464640481e-11,-2.55004350995282e-10,5.09141340240414e-10 +9.464,-1.91239726770329e-06,-1.05840130442889e-06,1.69395639957638e-06,-3.37825871443709e-10,-1.14405911827431e-09,-0.0800000006990524,-1.61831474870063e-09,6.42603158184992e-10,3.16247462245239e-10,7.96931964863479e-12,2.39893174769277e-10,-3.70321828757501e-10,0.026051473544445,0.0148054382592742,-0.0228612801575612,7.61977286822642e-10,3.67587904559403e-09,-3.10283751817006e-05 +9.466,3.28838510544813e-09,-7.24001990304313e-09,-2.04587160233805e-09,-3.37767199626304e-10,-1.14327770167622e-09,-0.0799999965516844,4.02950667233172e-05,2.26703555034441e-05,-3.31666912675411e-05,9.32847549206631e-12,2.45135509113786e-10,6.07683812992099e-07,3.93053103067858e-09,-4.34765071095443e-10,-5.88504939190145e-10,2.71267383556817e-10,-4.4148712460956e-10,6.15826833930786e-10 +9.468,-1.75121700081004e-06,-9.67719882415119e-07,1.56128963450623e-06,-3.37788557541741e-10,-1.14307857623785e-09,-0.0799999982683171,-1.60259262457791e-09,6.4086409790061e-10,3.13893442488479e-10,9.05438918286194e-12,2.38127226270838e-10,-3.67858521421778e-10,-0.013320126154688,-0.00719897395211839,0.0116606997990834,-2.25514051877034e-11,-2.54483933925853e-09,-7.96106583434051e-05 +9.47,3.28197473494982e-09,-7.23745644665152e-09,-2.04461602856809e-09,-3.37730982069573e-10,-1.14232519277113e-09,-0.0799999965531558,-1.29854378954289e-05,-6.12554030502628e-06,1.34761079287873e-05,9.2382698713155e-12,2.34956151756753e-10,2.89241179618514e-07,3.19275855753603e-09,-5.06539254985361e-10,-6.37727717856121e-10,2.32669786215441e-10,-4.15899953365524e-10,5.87203896618278e-10 +9.472,-1.80315875239175e-06,-9.92222043635221e-07,1.61519406622138e-06,-3.37751604462255e-10,-1.14213875163083e-09,-0.0799999971113524,-1.58982159034777e-09,6.38837940880669e-10,3.11342531617055e-10,9.9850683277236e-12,2.36463626457377e-10,-3.65509705835305e-10,0.0673810788908937,0.0360706372101826,-0.0594621222410229,1.98235525217103e-09,6.37640981679424e-09,-3.75532833996288e-05 +9.474,3.27561544858843e-09,-7.234901094888e-09,-2.04337065844162e-09,-3.37691041796262e-10,-1.1413793382653e-09,-0.0799999965546179,0.000256538877668116,0.000138157008535688,-0.000224372381035278,1.71676908799987e-11,2.60461791023927e-10,1.39028046020016e-07,3.31691867982218e-08,-1.04389153571226e-08,-6.46162810757766e-09,6.60712803912518e-10,-4.70717215206202e-09,-0.00132077451232808 +9.476,-7.77003241718942e-07,-4.39594009492283e-07,7.17704542079964e-07,-3.37682933698735e-10,-1.14109690446673e-09,-0.0799999965552402,-1.45714484315484e-09,5.97082279452165e-10,2.85496019186735e-10,1.26279195433746e-11,2.17634937849122e-10,-5.2834635590199e-06,-0.172289027510672,-0.0913908020632646,0.150566891962611,-3.79318972065672e-09,-2.36373420836363e-08,-3.48461632812469e-05 +9.478,3.26978686921581e-09,-7.23251276577019e-09,-2.04222867436488e-09,-3.37640530118088e-10,-1.14050879851391e-09,-0.0800000176884721,-0.000432617232374497,-0.00022740619971733,0.000377895186815098,1.99493199737355e-12,1.65912422689392e-10,-3.56607104956592e-10,-3.74719786450178e-08,1.03118468625119e-08,6.07532687352386e-09,-6.60929644347309e-10,5.00294250471821e-09,0.002422282670452 +9.48,-2.50747217121674e-06,-1.3492188083615e-06,2.22928528934019e-06,-3.37674953970746e-10,-1.14043325477597e-09,-0.0799999965566666,-1.60703275773489e-09,6.38329666902208e-10,3.09797326680828e-10,9.98420096598561e-12,2.37646707867993e-10,4.40566712278705e-06,0.17023275361253,0.0891559070470496,-0.149989237648496,3.09409615983981e-09,2.80699942456559e-08,-3.80771802976992e-09 +9.482,3.26335873818487e-09,-7.22995944710259e-09,-2.04098948505815e-09,-3.37600593314225e-10,-1.13955821168243e-09,-0.0800000000658036,0.000248313782075547,0.00012921742847083,-0.000222061763778821,1.43713166367314e-11,2.78192399672003e-10,-3.7183797707567e-10,-9.9177393710245e-10,-4.83987849868281e-10,8.54351311883995e-10,-4.48209178106516e-10,2.34621350099432e-10,-0.00101174846625666 +9.484,-1.51421704291466e-06,-8.32349094478241e-07,1.341038234225e-06,-3.37617468704199e-10,-1.13932048517729e-09,-0.079999996558154,-1.6109998534833e-09,6.36393715502735e-10,3.13214731928364e-10,8.19136425355975e-12,2.3858519326839e-10,3.58673257760835e-07,-0.0892078889026789,-0.0471922422800081,0.0798357467211023,-2.17317483452946e-09,-1.43136370811504e-08,1.81885756456127e-09 +9.486,3.25691473877093e-09,-7.22741387224057e-09,-2.03973662613044e-09,-3.3756782785721e-10,-1.13860387090936e-09,-0.0799999986311106,-0.000108517773535288,-5.9551540649266e-05,9.72812231056951e-05,5.6786172986107e-12,2.20937851347382e-10,-3.64562546817422e-10,3.12288172750143e-08,-9.48329956222767e-09,-4.99654571186577e-09,3.22441726098169e-10,-4.1988981735763e-09,3.97589808299112e-05 +9.488,-1.94828813705576e-06,-1.07055525707528e-06,1.73016312664774e-06,-3.37594754235004e-10,-1.1384367337719e-09,-0.0799999965596122,-1.48608458438326e-09,5.98460517253829e-10,2.93228549080903e-10,9.48113115795228e-12,2.21789600574087e-10,5.17709181080463e-07,0.00936008285143742,0.00748631186361552,-0.00787035871805052,8.34618832378524e-10,-3.44385978070671e-09,-0.00146009890636368 +9.49,3.2509704004334e-09,-7.22502003017156e-09,-2.03856371193412e-09,-3.37529903332578e-10,-1.13771671250706e-09,-0.0799999965602739,-7.1077442129542e-05,-2.96062931948072e-05,6.57997882334965e-05,9.01709262812443e-12,2.07162412224557e-10,-5.84076018800089e-06,-2.61144187871318e-08,7.69024600943797e-09,3.04801756750782e-09,1.16443313324917e-10,3.32069441388786e-09,-0.000129517976205056 +9.492,-2.23259790557402e-06,-1.18898042985455e-06,1.99336227958181e-06,-3.37558685864492e-10,-1.137608084123e-09,-0.080000019922653,-1.59054225953182e-09,6.29221501291591e-10,3.05420619350938e-10,9.94690441125211e-12,2.35072378229643e-10,-3.62723739932886e-10,0.0536441118267803,0.0253274253121943,-0.0494228437345436,7.32486987732369e-10,1.36401306916316e-08,0.0027091937165879 +9.494,3.24460823139527e-09,-7.22250314416639e-09,-2.03734202945671e-09,-3.37490115714933e-10,-1.13677642299415e-09,-0.0799999965617248,0.000143499005177556,7.1703408053959e-05,-0.000131891586704656,1.19470405790536e-11,2.61722934991078e-10,4.99601467834953e-06,-6.02973617217084e-09,1.20194652841769e-09,1.90678636075067e-09,-5.60098842306135e-10,9.58868401346389e-10,-9.41954847455613e-10 +9.496,-1.65860188486387e-06,-9.02166797638743e-07,1.46579593276325e-06,-3.37510897702176e-10,-1.13656119238303e-09,-0.0799999999385943,-1.6146612042205e-09,6.34029287405261e-10,3.1304776479394e-10,7.70650904202781e-12,2.38907851835028e-10,-3.66491559322708e-10,0.0140129331435493,0.00815611097757143,-0.00971453516848206,2.42861286636807e-10,-1.88087392882827e-09,-0.00103808001170764 +9.498,3.23814958657839e-09,-7.21996702701677e-09,-2.03608983839754e-09,-3.37459289678765e-10,-1.13582079158681e-09,-0.0799999965631907,0.000199550737751747,0.000104327851964241,-0.00017074972737858,1.29184857256007e-11,2.54199439275765e-10,8.43694631519436e-07,3.33622832053207e-08,-1.02025592835912e-08,-5.80633631456233e-09,4.54497550704966e-10,-4.58444046616321e-09,-0.00172757831651233 +9.5,-8.60398933856966e-07,-4.84855389781824e-07,7.82797023249002e-07,-3.37459223759273e-10,-1.13554439462593e-09,-0.0799999965638157,-1.48121207139923e-09,5.93219050270901e-10,2.89822419535693e-10,9.52449924484748e-12,2.20570089970377e-10,-6.91067975760786e-06,-0.152431496217095,-0.0796912074504676,0.131840337027801,-3.31830916910839e-09,-2.0523947125146e-08,-0.000211013009149227 +9.502,3.23222473829279e-09,-7.21759415081569e-09,-2.03493054871939e-09,-3.37421191681786e-10,-1.13493851122692e-09,-0.0800000242059098,-0.000410175247116835,-0.000214436977837736,0.000356611620732799,-3.54750950837296e-13,1.72103650775154e-10,-3.57405077755541e-10,-3.48954806024871e-08,1.05083042962322e-08,5.95161940567541e-09,-4.94829871521436e-10,4.78219894242461e-09,0.00318630748695474 +9.504,-2.50109992232413e-06,-1.34260330113267e-06,2.20924350618004e-06,-3.37460642763077e-10,-1.13485598002283e-09,-0.0799999965652454,-1.62079399380917e-09,6.35252267455825e-10,3.13628897158392e-10,7.54517975876195e-12,2.39698885740074e-10,5.83455019020971e-06,0.162418659007566,0.0847809943104821,-0.141868489233714,3.13009167196499e-09,2.64801201798919e-08,-3.37490452247245e-09 +9.506,3.22574156231756e-09,-7.21505314174586e-09,-2.03367603313076e-09,-3.37391010962751e-10,-1.13397971568396e-09,-0.080000000867709,0.000239499388913357,0.000124686999404156,-0.000210862336201995,1.21656157370213e-11,2.7802413149471e-10,-3.70904695845429e-10,1.43139081316935e-09,-2.37657116208769e-10,5.89697561614734e-10,-2.04046848861726e-10,1.04083408558574e-11,-0.00130477708758901 +9.508,-1.54310236667038e-06,-8.43855303515884e-07,1.36579416137178e-06,-3.37411980300129e-10,-1.13374388349685e-09,-0.079999996566729,-1.61506843055649e-09,6.34301638990989e-10,3.15987687404852e-10,6.72899236331478e-12,2.39740519103497e-10,6.15441839851917e-07,-0.0852945793968752,-0.0449746748449951,0.0759608702827358,-1.85441939581826e-09,-1.38613079347649e-08,1.8726339922762e-09 +9.51,3.21928128859533e-09,-7.2125159351899e-09,-2.03241208238114e-09,-3.37364094993298e-10,-1.13302075360755e-09,-0.0799999984059416,-0.000101678928674106,-5.52116999758051e-05,9.29811449289149e-05,4.74793815374904e-12,2.22578899755657e-10,-3.63414159876325e-10,4.19025166127722e-09,-4.18502038579503e-10,-4.29452480521607e-10,2.07082614944777e-10,-4.42354486374186e-10,-5.95877062970061e-05 +9.512,-1.94981808136676e-06,-1.06470210341908e-06,1.7377187410874e-06,-3.37392988547514e-10,-1.13285356789783e-09,-0.0799999965681826,-1.59830742391138e-09,6.32627630836672e-10,3.14269877482766e-10,7.55732282309379e-12,2.37971101158001e-10,3.77091014663919e-07,0.0401696758533254,0.0220123772924678,-0.0357688036826251,1.1713720271536e-09,5.88374834964563e-09,1.4051260155415e-10 +9.514,3.21288805889969e-09,-7.20998542466655e-09,-2.03115500287121e-09,-3.37333865702005e-10,-1.13206886920292e-09,-0.0799999968975776,5.89997747391774e-05,3.28378091940565e-05,-5.00940698015699e-05,9.43342626236292e-12,2.46113893154237e-10,-3.62852109470109e-10,3.9625421001766e-09,-5.14996032000749e-10,-6.94865172380687e-10,2.92734586570182e-10,-4.74880551574966e-10,-7.38228462735222e-05 +9.516,-1.71381898241008e-06,-9.33350866642868e-07,1.53734246188114e-06,-3.37355254842464e-10,-1.13186911232521e-09,-0.0799999965696341,-1.58245725551068e-09,6.30567646708669e-10,3.11490416793243e-10,8.72826116937439e-12,2.36071578951701e-10,8.17996295698624e-08,-0.0203600068052492,-0.0110154794751859,0.0179203961382573,-1.90602741922909e-10,-3.65809812996527e-09,8.83841611009991e-10 +9.518,3.20655822987764e-09,-7.20746315407972e-09,-2.02990904120404e-09,-3.37298952657328e-10,-1.13112458288711e-09,-0.0799999965703791,-2.24402524818464e-05,-1.12241087067018e-05,2.15875147514834e-05,8.67101529467103e-12,2.31481500634371e-10,-3.59316743026068e-10,2.77097680720903e-09,-5.83300768727317e-10,-6.20922584148008e-10,2.0903417885622e-10,-3.79037079474802e-10,-2.05396099434106e-05 +9.52,-1.80357999233745e-06,-9.7824730146967e-07,1.62369252088707e-06,-3.37320570781285e-10,-1.13094318632267e-09,-0.0799999965710713,-1.57137334828184e-09,6.2823444363376e-10,3.09006726456652e-10,9.56439788479918e-12,2.34555430633802e-10,-3.58810203771082e-10,0.00940528921620246,0.00498367633554506,-0.00873585184713858,3.71881345161482e-10,1.22298005053768e-09,2.82759926624046e-10 +9.522,3.20027273648452e-09,-7.20495021630518e-09,-2.02867301429821e-09,-3.37260695065789e-10,-1.13018636116458e-09,-0.0799999965718143,1.51809043829593e-05,8.71059663547628e-06,-1.33558926370671e-05,1.01585406753168e-11,2.36373420836521e-10,-3.58185703319571e-10,1.61594912798069e-09,-6.78060038672286e-10,-4.95046711956768e-10,1.03866568124088e-10,-2.55438031837538e-10,4.3194614551812e-10 +9.524,-1.74285637480559e-06,-9.43404914927753e-07,1.57026895033878e-06,-3.37279936618584e-10,-1.12999769263933e-09,-0.0799999965725041,-1.56490955176992e-09,6.2552220347907e-10,3.07026539608824e-10,9.97986415729567e-12,2.33533678506451e-10,-3.57082419189009e-10,-0.0049475579791646,-0.00269849084180322,0.00426231955990804,-5.74627151406164e-11,-9.90960785625727e-10,4.80518402805911e-10 +9.526,3.19401309827744e-09,-7.20244812749127e-09,-2.02744490813977e-09,-3.37220775609159e-10,-1.12925222645055e-09,-0.0799999965732426,-4.60932753369689e-06,-2.08336673173543e-06,3.69338560256323e-06,9.92868981475435e-12,2.32409577694018e-10,-3.56263629708348e-10,8.64597022448712e-10,-7.67181457250905e-10,-3.90421202312112e-10,9.5409791178747e-12,-1.86049092798546e-10,3.33934269125611e-10 +9.528,-1.76129368494038e-06,-9.51738381854694e-07,1.58504249274903e-06,-3.37240221859325e-10,-1.12906805432855e-09,-0.0799999965739291,-1.56145116368012e-09,6.22453477650066e-10,3.05464854799576e-10,1.00180280737672e-11,2.32789482135257e-10,-3.55746682112507e-10,0.00218268250435547,0.00116638702797799,-0.00205345780353698,3.38271077815551e-11,2.03396327558329e-10,2.65412691824507e-10 +9.53,3.18776729362272e-09,-7.19995831358067e-09,-2.02622304872058e-09,-3.37180703496864e-10,-1.12832106852201e-09,-0.0799999965746656,4.12140248372405e-06,2.58218138017603e-06,-4.52044561158377e-06,1.00639982458806e-11,2.33223163004252e-10,-3.5520197894105e-10,4.9027622257119e-10,-7.78457159913515e-10,-3.20381742003313e-10,-3.12250225686878e-11,-1.51354623304791e-10,3.07046055287323e-10 +9.532,-1.74480807500548e-06,-9.41409656333991e-07,1.5669607103027e-06,-3.37199965866342e-10,-1.12813516167654e-09,-0.0799999965753499,-1.55949005878984e-09,6.19339649010413e-10,3.04183327831563e-10,9.89312798349243e-12,2.32184063642038e-10,-3.54518497891358e-10,-0.00121575047251605,-0.000636047148543647,0.00107450659372701,-6.72205346940861e-11,-3.165870343657e-10,3.17454396103688e-10 +9.534,3.18152933338756e-09,-7.19748095498463e-09,-2.02500631540925e-09,-3.3714113098493e-10,-1.12739233226744e-09,-0.0799999965760837,-7.41599406341767e-07,3.79927860005888e-08,-2.22419236674289e-07,9.79511610710412e-12,2.31956814866788e-10,-3.53932161356635e-10,2.87005120188919e-08,-9.37943299410541e-09,-4.97681323232753e-09,2.4090972272743e-10,-3.96601154692707e-09,6.06806271892884e-09 +9.536,-1.74777447263085e-06,-9.41257685189989e-07,1.566071033356e-06,-3.37160785401913e-10,-1.12720733441707e-09,-0.0799999965767657,-1.44468801071428e-09,5.81821917033995e-10,2.84276074902255e-10,1.0856766874402e-11,2.16320017454332e-10,-3.30246247015645e-10,-0.0338327421759126,-0.0159646590348512,0.0304333389642447,-3.18321757842761e-10,-9.93779711302566e-09,-0.000601507638836461 +9.538,3.1757505813447e-09,-7.19515366731649e-09,-2.02386921110964e-09,-3.37097703917433e-10,-1.12652705219762e-09,-0.0799999965774047,-0.000136072568109977,-6.3820643353397e-05,0.000121510936620291,8.52182907573322e-12,1.9220562641469e-10,-2.40638448750694e-06,-2.87489216460537e-08,7.50853372532943e-09,3.35343731949691e-09,-1.19045398538882e-10,3.54447374228882e-09,-5.58147278395412e-09 +9.54,-2.29206474507094e-06,-1.19654025860366e-06,2.05211477983733e-06,-3.3712669808561e-10,-1.12643851191141e-09,-0.0800000062023036,-1.55968369729854e-09,6.11856051935323e-10,2.97689824180247e-10,1.03805852802464e-11,2.30497912423492e-10,-3.52572138151469e-10,0.0778044523257929,0.037529192198567,-0.0708782063160652,1.04105092602176e-09,1.76785669437049e-08,0.00118559180181665 +9.542,3.16951184655551e-09,-7.19270624310875e-09,-2.02267845181292e-09,-3.37056181576312e-10,-1.12560506054793e-09,-0.079999996578815,0.00017514524119316,8.62961254408543e-05,-0.000162001888643939,1.26860327798198e-11,2.62919894189502e-10,2.33598271975913e-06,2.02722495908126e-08,-7.38645256071088e-09,-2.45376635676974e-09,-4.6165328504443e-10,-2.65499427998309e-09,4.56839427398593e-09 +9.544,-1.59148378029838e-06,-8.51355756840283e-07,1.40410722526164e-06,-3.37075953954491e-10,-1.12538683233465e-09,-0.0799999968583727,-1.47859469893529e-09,5.82310241692483e-10,2.87874758753169e-10,8.53397214006884e-12,2.1987793530356e-10,-3.34298561055527e-10,-0.099661150837076,-0.0496731701550591,0.0901141291730451,-2.22630074098223e-09,-2.01180218317765e-08,-0.00177497755035655 +9.546,3.16359746775977e-09,-7.19037700214198e-09,-2.02152695277791e-09,-3.37022045687752e-10,-1.12472554880672e-09,-0.0799999965801522,-0.0002234993621551,-0.00011239655517936,0.000198454628048202,3.78082981589187e-12,1.82447806862405e-10,-4.76392748166629e-06,4.65122732160321e-10,-7.14055550863449e-10,-7.4766581817779e-10,6.17995238307124e-11,-2.19442519735427e-10,2.15973072796178e-10 +9.548,-2.48548122891868e-06,-1.30094197755767e-06,2.19792573745436e-06,-3.37060830635227e-10,-1.1246570411072e-09,-0.0800000159140827,-1.47673420800665e-09,5.79454019489029e-10,2.84884095480458e-10,8.78117023539167e-12,2.19000165224619e-10,-3.33434668764343e-10,0.0843136679568453,0.0432196682641727,-0.075435988875616,1.76464745593701e-09,1.40438875806361e-08,0.000453184802184823 +9.55,3.15769053092774e-09,-7.18805918606402e-09,-2.02038741639599e-09,-3.3698692100681e-10,-1.12384954814582e-09,-0.0799999965814859,0.000113755309672394,6.04821178773887e-05,-0.000103289327454363,1.08394196396423e-11,2.38623357184968e-10,-2.95118827292639e-06,-3.42641767825024e-08,9.6604581973468e-09,5.66658265452836e-09,-5.86770215748309e-10,4.6174002122066e-09,-6.71598193728271e-09 +9.552,-2.03045999022915e-06,-1.05901350604815e-06,1.78476842763696e-06,-3.37017472956669e-10,-1.12370254767846e-09,-0.0800000277188357,-1.61379091513665e-09,6.18095852278412e-10,3.07550426098569e-10,6.43408937239869e-12,2.37469766073443e-10,-3.60298596513471e-10,-0.0153530034257269,-0.0100621904953201,0.0138121988064703,-1.19544131538345e-09,2.80634890323436e-09,0.00236844243436237 +9.554,3.15123536726719e-09,-7.18558680265491e-09,-2.01915721469159e-09,-3.3696118464932e-10,-1.12289966908152e-09,-0.0799999965829271,5.23432959694934e-05,2.02333558961128e-05,-4.80405322284875e-05,6.05765437810899e-12,2.49848752797904e-10,6.52258146452205e-06,-4.54259026227877e-09,1.7371087207559e-09,2.4824977143395e-09,-5.94142790521923e-10,1.02608893604005e-09,-9.03790930983705e-10 +9.556,-1.82108680635111e-06,-9.78080082463667e-07,1.59260629872295e-06,-3.36993242339156e-10,-1.12270315266727e-09,-0.0800000016285099,-1.63196127618577e-09,6.25044287161438e-10,3.1748041695593e-10,4.0575182103102e-12,2.41574121817605e-10,-3.63913760237407e-10,-0.0155641218898431,-0.00681729808151977,0.0153848229148708,-5.1846547888201e-10,-2.70269917554472e-09,-0.00140161073459252 +9.558,3.14470752216245e-09,-7.18308662550626e-09,-2.01788729302377e-09,-3.36944954576479e-10,-1.12193337259425e-09,-0.0799999965843828,-9.91319158987208e-06,-7.03583642996325e-06,1.3498759430989e-05,3.98379246258118e-12,2.39037956095726e-10,9.16138526152567e-07,5.59429347464625e-09,9.12898229232895e-11,-2.21177243187067e-11,2.25947732746029e-10,-4.31078783780336e-10,7.12103986888635e-10 +9.56,-1.86073957271059e-06,-1.00622342818352e-06,1.6466013364469e-06,-3.36977307169306e-10,-1.12174700084289e-09,-0.0799999979639558,-1.60958410228719e-09,6.25409446453131e-10,3.17391946058655e-10,4.96130914129421e-12,2.39849806682484e-10,-3.61065344289852e-10,0.00690311917386083,0.00436614834499741,-0.00594665905797243,5.75928194024427e-10,4.28043017697376e-10,-0.000143267306872173 +9.562,3.1382691857533e-09,-7.18058498772045e-09,-2.01661772523953e-09,-3.36925109339914e-10,-1.12097397336752e-09,-0.079999996585827,1.76992851055682e-05,1.04287569500245e-05,-1.02878768008981e-05,6.28750523867863e-12,2.40750128166516e-10,3.43069298663938e-07,6.4235184013935e-09,-8.04478012678389e-11,-7.95153873335931e-10,5.26271734523795e-10,-6.67001176539561e-10,8.26595736342848e-10 +9.564,-1.78994243228833e-06,-9.64508400383424e-07,1.60544982924331e-06,-3.36952157148351e-10,-1.12078400033022e-09,-0.0799999965916786,-1.58389002868162e-09,6.2508765524806e-10,3.14211330565312e-10,7.06639607938916e-12,2.37181801976326e-10,-3.57758961344481e-10,-0.00412039476819164,-0.00215385951088339,0.00326078492928809,4.31729305083631e-10,-1.25420507313095e-09,-8.55339332347746e-05 +9.566,3.13193362563857e-09,-7.17808463709946e-09,-2.01536087991727e-09,-3.36896843755596e-10,-1.12002524615962e-09,-0.0799999965872581,1.21770603279614e-06,1.81331890648804e-06,2.75526291625863e-06,8.01442245901373e-12,2.3573330787399e-10,9.33565724725685e-10,4.86533014379961e-09,-2.89915660853276e-10,-8.4741241797997e-10,4.47992337671894e-10,-5.83300768771003e-10,6.55725473879652e-10 +9.568,-1.78507160815715e-06,-9.57255124757472e-07,1.61647088090834e-06,-3.36920099458515e-10,-1.11984106709873e-09,-0.0799999965879443,-1.56442870810642e-09,6.23927992604647e-10,3.10821680893393e-10,8.85836543007654e-12,2.34848598901242e-10,-3.55136059448963e-10,0.0012902421298788,0.000562787477644356,-0.00169534128369949,3.9876955903919e-10,-2.27248775379082e-10,-3.21873604158838e-07 +9.57,3.12567591080615e-09,-7.17558892512904e-09,-2.0141175931937e-09,-3.36861410293876e-10,-1.11908585176401e-09,-0.0799999965886786,6.37867455231077e-06,4.06446881706521e-06,-4.02610221853857e-06,9.60950069517031e-12,2.34824312772474e-10,-3.53928691909526e-10,2.93217056537775e-09,-5.59014640133417e-10,-7.17091316881751e-10,2.78206277459718e-10,-3.95516952522619e-10,5.46437894932576e-10 +9.572,-1.75955690994789e-06,-9.40997249489206e-07,1.60036647203418e-06,-3.36881661455735e-10,-1.11890176984764e-09,-0.07999999658936,-1.5527000258449e-09,6.21691934044113e-10,3.07953315625865e-10,9.97119053991579e-12,2.33266531091151e-10,-3.52950307869232e-10,-0.0011767758888914,-0.000705889349576476,0.000645375565813893,1.81712284109677e-10,-4.88758339330502e-10,4.83987849758343e-10 +9.574,3.11946511070277e-09,-7.17310215739286e-09,-2.01288577993119e-09,-3.36821525531716e-10,-1.11815278563965e-09,-0.0799999965900904,1.67157099674569e-06,1.24091141875962e-06,-1.44459995528328e-06,1.03363498316089e-11,2.32869279415152e-10,-3.51992740510493e-10,1.52978216032306e-09,-8.48496620187327e-10,-6.04009030291806e-10,1.29236898960301e-10,-2.88397777881208e-10,4.73579508941772e-10 +9.576,-1.75287062596091e-06,-9.36033603814168e-07,1.59458807221305e-06,-3.36840316056408e-10,-1.11797029272998e-09,-0.079999996590768,-1.54658089720361e-09,6.18297947563364e-10,3.05537279504698e-10,1.04881381357569e-11,2.32112939979626e-10,-3.51055989833465e-10,0.000202912851831424,0.000105048264141215,-0.000442145970877647,8.10983225019336e-11,-1.86482773667547e-10,4.26741975090393e-10 +9.578,3.11327878711395e-09,-7.17062896560261e-09,-2.01166363081318e-09,-3.36779572979173e-10,-1.11722433387973e-09,-0.0799999965914946,2.4832224040713e-06,1.66110447532443e-06,-3.21318383879367e-06,1.06607431216166e-11,2.32123348320482e-10,-3.50285772610131e-10,7.64443846936786e-10,-1.0421351282615e-09,-5.57279916691344e-10,3.46944695183638e-11,-2.24646690164716e-10,4.11996825583376e-10 +9.58,-1.74293773634463e-06,-9.29389185912871e-07,1.58173533685788e-06,-3.36797673083922e-10,-1.11704179933669e-09,-0.0799999965921692,-1.54352312181587e-09,6.14129407050318e-10,3.03308159837933e-10,1.06269160138304e-11,2.31214353218967e-10,-3.49408002531132e-10,-0.000344547045869025,-0.000142260933502055,0.000190854180658193,-4.11996825544395e-12,-2.41126563160721e-10,4.26741975090191e-10 +9.582,3.10710469462669e-09,-7.16817244797441e-09,-2.01045039817382e-09,-3.36737065315118e-10,-1.11629947646685e-09,-0.0799999965928923,1.10503422059474e-06,1.09206074131602e-06,-2.44976711616065e-06,1.06442632485949e-11,2.31158842067839e-10,-3.4857880470977e-10,4.1557469254241e-10,-1.1039346519568e-09,-5.10225542338117e-10,-2.58040117039809e-11,-1.92120624938803e-10,4.02455846387915e-10 +9.584,-1.73851759946225e-06,-9.25020942947608e-07,1.57193626839323e-06,-3.36755096030927e-10,-1.11611716396842e-09,-0.0799999965935635,-1.5418608230457e-09,6.09713668442491e-10,3.0126725766858e-10,1.05236999670145e-11,2.30445870719212e-10,-3.4779817914558e-10,-1.09402847568013e-05,3.27837481552925e-05,-1.96017849301786e-05,-4.85722573285216e-11,-1.87783816300114e-10,3.62557206517773e-10 +9.586,3.10093725133451e-09,-7.16573359330064e-09,-2.00924532914315e-09,-3.3669497051525e-10,-1.11537769298398e-09,-0.0799999965942834,1.06127308156754e-06,1.22319573393718e-06,-2.52817425588135e-06,1.04499742192808e-11,2.30407706802639e-10,-3.47128575883699e-10,2.681774073642e-10,-1.04105092602034e-09,-4.30536682693902e-10,-7.04731412115419e-11,-1.50487261540957e-10,3.53016227361201e-10 +9.588,-1.73427250713598e-06,-9.20128160011857e-07,1.56182357136971e-06,-3.3671329613405e-10,-1.11519553314121e-09,-0.079999996594952,-1.54078811341624e-09,6.05549464738409e-10,2.99545110937804e-10,1.02418074021682e-11,2.29843921673048e-10,-3.46386114236135e-10,-0.000141521127200927,-6.07198419147633e-05,0.000159450497076473,-9.95297594330312e-11,-1.60895602371302e-10,3.33066907349081e-10 +9.59,3.09477409888084e-09,-7.16331139544168e-09,-2.0080471486994e-09,-3.36654003285641e-10,-1.11445831729728e-09,-0.079999996595669,4.95188572763891e-07,9.80316366278153e-07,-1.89037226757553e-06,1.00518551815487e-11,2.29764124393153e-10,-3.45796308254303e-10,1.8547988665803e-10,-8.64759652774637e-10,-3.02492406123515e-10,-1.04517089427625e-10,-1.34007388519236e-10,2.94902990916128e-10 +9.592,-1.73229175284492e-06,-9.16206894546745e-07,1.5542620822994e-06,-3.36673088713324e-10,-1.11427647664364e-09,-0.0799999965963352,-1.54004619386961e-09,6.0209042612731e-10,2.9833514131331e-10,9.82373904445774e-12,2.29307892118971e-10,-3.45206502272471e-10,-5.59720332962041e-05,-4.3987621921672e-05,0.000124643798320889,-1.18394877235443e-10,-1.19262238973432e-10,2.7061686225245e-10 +9.594,3.08861391410536e-09,-7.16090303373718e-09,-2.00685380813415e-09,-3.36614708329463e-10,-1.11354108572881e-09,-0.0799999965970498,2.713004395791e-07,8.04365878591484e-07,-1.39179707429203e-06,9.578275672607e-12,2.2928707543726e-10,-3.44713840805293e-10,1.39780765258625e-10,-6.64182250931307e-10,-1.43873628321917e-10,-1.35091590692754e-10,-7.6761513837418e-11,2.003605615136e-10 +9.596,-1.73120655108661e-06,-9.12989431032379e-07,1.54869489400224e-06,-3.36634775610634e-10,-1.11335932834189e-09,-0.079999996597714,-1.53948707080857e-09,5.99433697123586e-10,2.97759646800023e-10,9.28337268168678e-12,2.29000846063622e-10,-3.44405060026416e-10,-7.13353207884064e-05,-7.21810766539216e-05,0.000165767883577754,-1.42247325030066e-10,-8.76035355368124e-11,1.61329283265802e-10 +9.598,3.08245596582213e-09,-7.15850529894868e-09,-2.00566276954695e-09,-3.36577574838737e-10,-1.11262508234455e-09,-0.0799999965984274,-1.40408435746213e-08,5.15641571975701e-07,-7.28725539980793e-07,9.00928637248654e-12,2.28936661295112e-10,-3.4406852367223e-10,1.30700571722226e-10,-3.99420080277193e-10,8.56519719568488e-12,-1.4745149545703e-10,-2.55871712452378e-11,1.76074432773447e-10 +9.6,-1.7312627144609e-06,-9.10926864744477e-07,1.54577999184231e-06,-3.36598738465144e-10,-1.11244358169671e-09,-0.0799999965990903,-1.53896426852168e-09,5.97836016802477e-10,2.97793907588805e-10,8.69356669985873e-12,2.28898497378641e-10,-3.43700762295323e-10,-3.05814644170103e-05,-5.92636200530845e-05,0.000140662115202161,-1.54824070231895e-10,-9.97466001227769e-12,1.27502175522463e-10 +9.602,3.07630010874804e-09,-7.15611395488147e-09,-2.00447159391659e-09,-3.36542800571937e-10,-1.11170948835504e-09,-0.0799999965998022,-1.36366701242649e-07,2.78587091763389e-07,-1.66077079172211e-07,8.38999009155903e-12,2.28896762655063e-10,-3.4355851497014e-10,1.60760077125286e-10,-2.24863530573444e-10,1.16551733542166e-10,-1.36609473733143e-10,-1.30104260698217e-12,8.32667268468719e-11 +9.604,-1.73180818126588e-06,-9.09812516377423e-07,1.54511568352562e-06,-3.36565178504777e-10,-1.11152799464609e-09,-0.0799999966004645,-1.53832122821318e-09,5.96936562680183e-10,2.98260114522974e-10,8.14712880492597e-12,2.28893293208213e-10,-3.43367695387935e-10,-1.42331494897537e-05,-4.83983604061619e-05,0.00012041270194483,-1.26201132876409e-10,-6.07153214050954e-12,8.84708972366991e-11 +9.606,3.07014682383519e-09,-7.15372620863075e-09,-2.0032785534585e-09,-3.36510212056718e-10,-1.11079391518221e-09,-0.0799999966011757,-1.93299299201658e-07,8.49936501387632e-08,3.15573728607056e-07,7.88518556005345e-12,2.28872476526501e-10,-3.43204631381193e-10,2.21638029110374e-10,-8.17488438054419e-11,2.05889992555046e-10,-1.25767452008346e-10,2.77555756156384e-11,4.94396190653444e-11 +9.608,-1.73258137846268e-06,-9.09472541776868e-07,1.54637797844005e-06,-3.36533637762537e-10,-1.11061250473998e-09,-0.0799999966018373,-1.53743467609674e-09,5.96609567304961e-10,2.99083674493194e-10,7.64405899689264e-12,2.29004315510675e-10,-3.43169936911674e-10,1.07402346293951e-05,-2.54645766278928e-05,7.74904536154743e-05,-1.08420217248574e-10,3.03576608296039e-11,3.2959746043563e-11 +9.61,3.0639970851308e-09,-7.15133977036153e-09,-2.00208221876053e-09,-3.3647963582073e-10,-1.10987789792016e-09,-0.0799999966025484,-1.50338360684082e-07,-1.68646563727966e-08,6.25535543068919e-07,7.4515046910592e-12,2.2899390716982e-10,-3.43072792397019e-10,2.95932983150557e-10,1.62630325210582e-11,2.11853104470423e-10,-8.58688120616813e-11,3.12250225421502e-11,7.63278329810641e-11 +9.612,-1.73318273190542e-06,-9.09540000402359e-07,1.54888012061233e-06,-3.36503831743773e-10,-1.1096965291113e-09,-0.0799999966032096,-1.53625094416414e-09,5.96674619435045e-10,2.99931086911076e-10,7.30058374864595e-12,2.29129215600844e-10,-3.42864625579749e-10,2.33742401790256e-05,-4.9982678586291e-06,3.56833434328383e-05,-7.48099499014831e-11,2.55871712706494e-11,7.97972798949194e-11 +9.614,3.05785208135415e-09,-7.14895307188379e-09,-2.00088249441288e-09,-3.36450433485735e-10,-1.10896138105776e-09,-0.0799999966039198,-5.68413999679489e-08,-3.68577278073197e-08,7.6826891680032e-07,7.15226489145316e-12,2.29096255854902e-10,-3.42753603277439e-10,3.69089524397916e-10,4.22838847931913e-11,1.91470103694281e-10,-5.18248638440081e-11,2.34187669511317e-11,5.55111511932007e-11 +9.616,-1.73341009750529e-06,-9.09687431313588e-07,1.55195319627953e-06,-3.36475222684207e-10,-1.10878014408788e-09,-0.0799999966045807,-1.53477458606655e-09,5.96843754974218e-10,3.00696967325853e-10,7.09328429326995e-12,2.29222890668649e-10,-3.42642580974977e-10,3.14472630878394e-05,1.37039778396613e-05,-5.34720401646011e-06,-2.84060969199079e-11,2.8189256459184e-11,6.07153216972194e-11 +9.618,3.05171298300988e-09,-7.14656569686389e-09,-1.99967970654358e-09,-3.36422060348562e-10,-1.10804448949509e-09,-0.0799999966052904,6.89476523833949e-08,1.79581835513194e-08,7.46880100734482e-07,7.03864050377354e-12,2.29209012880739e-10,-3.4251074199065e-10,4.22513586617512e-10,4.20670442924235e-11,1.42897846333555e-10,-2.1250362580711e-11,2.47198095326612e-11,7.37257477290026e-11 +9.62,-1.73313430689576e-06,-9.09615598579383e-07,1.55494071668247e-06,-3.36447068122192e-10,-1.10786330803636e-09,-0.0799999966059507,-1.53308453172008e-09,5.97012023151388e-10,3.01268558711187e-10,7.00828284294707e-12,2.29321769906779e-10,-3.42347677984061e-10,3.12351445977642e-05,2.60565638076576e-05,-3.60349354521588e-05,2.16840435278665e-13,1.6046192178236e-11,8.06646415949189e-11 +9.622,3.045580644883e-09,-7.14417764877129e-09,-1.99847463230873e-09,-3.36394027217191e-10,-1.10712720241546e-09,-0.0799999966066598,1.93888230774438e-07,1.22184438781938e-07,6.02740358925863e-07,7.03950786551466e-12,2.29273197649452e-10,-3.42188083424271e-10,4.53575978859361e-10,-1.10588621593534e-11,5.86553375314723e-11,3.05745012640978e-11,-1.9081958235747e-11,8.84708972748269e-11 +9.624,-1.73235875397266e-06,-9.09126860824255e-07,1.55735167811817e-06,-3.3641891009073e-10,-1.10694621524576e-09,-0.0799999966073194,-1.53127022780464e-09,5.9696778770275e-10,3.01503180061313e-10,7.13058084800345e-12,2.29245442073836e-10,-3.41993794394961e-10,2.64048052628594e-05,3.22403965503997e-05,-5.5140277760447e-05,4.14165229889553e-11,-2.03830008427362e-11,1.07552855510587e-10 +9.626,3.03945556397178e-09,-7.14178977762048e-09,-1.99726861958849e-09,-3.36365504893799e-10,-1.10621022064716e-09,-0.0799999966080278,2.99507451825864e-07,2.51146024983523e-07,3.82179247884099e-07,7.20517395747046e-12,2.29191665646081e-10,-3.41757872002228e-10,4.58156733207995e-10,-6.76542156293549e-11,-3.08997619493023e-11,4.46691295056011e-11,-2.42861286891202e-11,1.43982048544012e-10 +9.628,-1.73116072416536e-06,-9.08122276724321e-07,1.55888039510971e-06,-3.363900893949e-10,-1.10602944858318e-09,-0.0799999966086865,-1.52943760087181e-09,5.96697170840233e-10,3.01379581013516e-10,7.30925736602584e-12,2.2914829755908e-10,-3.41417866200785e-10,1.79945431385374e-05,3.20670120231637e-05,-6.13567917176692e-05,5.96311194866893e-11,-1.12757025938455e-11,1.36175792864147e-10 +9.63,3.03333781356829e-09,-7.13940298893712e-09,-1.99606310126443e-09,-3.36336267864334e-10,-1.10529362745693e-09,-0.0799999966093935,3.71485624380038e-07,3.7941407307622e-07,1.3675208101334e-07,7.4436984354173e-12,2.29146562835706e-10,-3.41213168830772e-10,4.43845264191523e-10,-1.2771901585258e-10,-8.85793174586264e-11,6.83047368674134e-11,-1.51788303893629e-11,1.26634813708439e-10 +9.632,-1.72967478166784e-06,-9.06604620432017e-07,1.55942740343376e-06,-3.36360314601158e-10,-1.10511286233184e-09,-0.0799999966100513,-1.52766221981504e-09,5.96186294776823e-10,3.01025263743681e-10,7.58247631349546e-12,2.29087582237522e-10,-3.40911326945952e-10,8.54034396908739e-06,2.70306080035966e-05,-5.68846130139338e-05,7.26415455556862e-11,-5.98479599466229e-11,1.42247325067944e-10 +9.634,3.02722716468903e-09,-7.13701824375801e-09,-1.99485900020946e-09,-3.3630593795908e-10,-1.10437727712798e-09,-0.0799999966107571,4.05647000256384e-07,4.87536505090595e-07,-9.07863710423703e-08,7.73426461764001e-12,2.28907170995919e-10,-3.406441795305e-10,4.13839969237631e-10,-2.05564731903209e-10,-1.50487261540951e-10,7.93635990259213e-11,-9.1940344226753e-11,1.22298005056337e-10 +9.636,-1.72805219366681e-06,-9.04654474411654e-07,1.55906425794959e-06,-3.36329377542688e-10,-1.10419723364785e-09,-0.0799999966114139,-1.52600685993809e-09,5.9536403584921e-10,3.00423314697517e-10,7.89993070959925e-12,2.28719820860615e-10,-3.40422134925726e-10,-4.73797325113187e-07,1.87562443875494e-05,-4.46044892644789e-05,7.82793968543296e-11,-5.24753851229007e-11,1.43982048468299e-10 +9.638,3.02112313724928e-09,-7.13463678761461e-09,-1.99365730695067e-09,-3.36274338236242e-10,-1.10346239784453e-09,-0.0799999966121188,4.03751810955931e-07,5.62561482640784e-07,-2.69204328100266e-07,8.0473822050573e-12,2.28697269455428e-10,-3.40068251336627e-10,3.79064184555338e-10,-2.35055030994909e-10,-1.93746928223207e-10,6.76542155631102e-11,-4.59701721133904e-11,1.63931368479839e-10 +9.64,-1.72643718642299e-06,-9.02404228481091e-07,1.55798744063719e-06,-3.36297188013868e-10,-1.10328244457003e-09,-0.0799999966127742,-1.52449060319987e-09,5.9442381572523e-10,2.99648326984625e-10,8.17054757185166e-12,2.28535940172162e-10,-3.39766409451807e-10,-7.70167024773286e-06,9.17941070377661e-06,-2.82113973024543e-05,6.57026516526361e-11,-6.67868538251209e-11,1.51788304148e-10 +9.642,3.01502517483648e-09,-7.13225909235171e-09,-1.99245871364273e-09,-3.36241656045955e-10,-1.10254825408385e-09,-0.0799999966134779,3.72945129965003e-07,5.99279125455886e-07,-3.82049917310071e-07,8.31019281166781e-12,2.28430122040127e-10,-3.39461098120035e-10,3.40818953090014e-10,-2.80157841436175e-10,-1.9559007194961e-10,6.63531729551908e-11,-8.06646416582757e-11,1.74339709373351e-10 +9.644,-1.72494540590313e-06,-9.00007111979267e-07,1.55645924096795e-06,-3.36263947242621e-10,-1.10236872408187e-09,-0.079999996614132,-1.52312732738751e-09,5.93303184359486e-10,2.98865966696826e-10,8.4359602636724e-12,2.28213281605529e-10,-3.39069050614313e-10,-1.25122909537679e-05,-4.42491095847671e-08,-1.1047389890902e-05,5.70290342727245e-11,-6.72205346940853e-11,1.68268177169707e-10 +9.646,3.00893266552693e-09,-7.12988587961427e-09,-1.99126324977594e-09,-3.362079122049e-10,-1.10163540095742e-09,-0.0799999966148341,3.22895966149915e-07,5.99102129017547e-07,-4.26239476873694e-07,8.53830894875878e-12,2.28161239901351e-10,-3.38788025411356e-10,3.10488396976464e-10,-2.71484223924562e-10,-1.90277481238062e-10,4.38017677693607e-11,-5.46437894679495e-11,1.36175792826571e-10 +9.648,-1.72365382203853e-06,-8.97610703463197e-07,1.55475428306046e-06,-3.36229794006826e-10,-1.10145607912226e-09,-0.0799999966154872,-1.5218853737996e-09,5.92217247463787e-10,2.98104856771874e-10,8.61116733474982e-12,2.27994706447657e-10,-3.38524347443007e-10,-1.46950608962446e-05,-7.61827883769926e-06,4.13735322048668e-06,3.68628738635511e-11,-5.81132364705425e-11,1.4571677201964e-10 +9.65,3.00284512403173e-09,-7.12751701062442e-09,-1.99007083034886e-09,-3.36173467535561e-10,-1.10072342213163e-09,-0.0799999966161882,2.64115722564943e-07,5.68629013666754e-07,-4.09690063991749e-07,8.68576044421297e-12,2.27928786955469e-10,-3.38205158323277e-10,2.83220712507483e-10,-3.02926086992375e-10,-1.60570341745063e-10,2.97071395260961e-11,-5.7679555576216e-11,1.53523027623909e-10 +9.652,-1.72259735914827e-06,-8.9533618740853e-07,1.55311552280449e-06,-3.36195050965049e-10,-1.10054436397444e-09,-0.07999999661684,-1.52075249094957e-09,5.91005543115818e-10,2.97462575404894e-10,8.72999589285424e-12,2.27763988225352e-10,-3.37910255332511e-10,-1.44890757648903e-05,-1.27702267163029e-05,1.55393664515442e-05,2.08166817126905e-11,-6.85215772757913e-11,1.23165366756834e-10 +9.654,2.99676211406794e-09,-7.12515298845195e-09,-1.98888098004724e-09,-3.3613854755199e-10,-1.09981236617873e-09,-0.0799999966175399,2.06159419505388e-07,5.17548106801548e-07,-3.47532598185579e-07,8.76902717106373e-12,2.27654700646365e-10,-3.3771249685625e-10,2.68096092201434e-10,-2.50450701844231e-10,-1.18178036800946e-10,5.63785129692605e-12,-5.50774703622762e-11,1.26634813746334e-10 +9.656,-1.72177272147024e-06,-8.93265994981324e-07,1.55172539241175e-06,-3.36159974856365e-10,-1.09963374517186e-09,-0.0799999966181908,-1.51968010658077e-09,5.90003740308441e-10,2.9698986325769e-10,8.75254729804194e-12,2.27543678343903e-10,-3.37403716077526e-10,-1.23973145388828e-05,-1.52221115486856e-05,2.22948883747042e-05,-5.85469173142318e-12,-4.16333634234544e-11,1.54390389361966e-10 +9.658,2.99068339364161e-09,-7.12279297349072e-09,-1.98769302059421e-09,-3.36103537362797e-10,-1.09890219146536e-09,-0.0799999966188895,1.56570161349862e-07,4.56659660606812e-07,-2.58353044686772e-07,8.74560840413804e-12,2.27488167192672e-10,-3.37094935298802e-10,2.61672194497995e-10,-2.71050543186805e-10,-7.83878171036557e-11,-7.3725747738716e-12,-3.90312782347309e-11,1.45716772019485e-10 +9.66,-1.72114644082485e-06,-8.91439356338897e-07,1.550691980233e-06,-3.36124992422748e-10,-1.09872379250309e-09,-0.0799999966195392,-1.51863341780278e-09,5.88919538135694e-10,2.96676311989275e-10,8.72305699894646e-12,2.27387553230964e-10,-3.36820848989448e-10,-9.08393895043968e-06,-1.51362067411059e-05,2.44087656987455e-05,-1.64798730217758e-11,-3.29597460435483e-11,1.23165366794325e-10 +9.662,2.9846088599704e-09,-7.12043729533818e-09,-1.98650631534625e-09,-3.36068645134802e-10,-1.09799264125243e-09,-0.0799999966202368,1.20234405548091e-07,3.96114833642368e-07,-1.60717981891757e-07,8.67968891205091e-12,2.27356328208497e-10,-3.36602273831625e-10,2.60045890902139e-10,-2.15539391824795e-10,-3.96817994800417e-11,-3.14418630011182e-11,-3.16587034113383e-11,1.21430643281012e-10 +9.664,-1.72066550320265e-06,-8.89854897004327e-07,1.55004910830543e-06,-3.360902736671e-10,-1.09781436719025e-09,-0.0799999966208856,-1.51759323423917e-09,5.88057380568395e-10,2.96517584791355e-10,8.597289546942e-12,2.27260918417319e-10,-3.36335126416324e-10,-5.23738452781582e-06,-1.29935029749972e-05,2.25489864410847e-05,-3.8597597341439e-11,-3.42607886757812e-11,1.50053580709324e-10 +9.666,2.97853848703344e-09,-7.1180850658159e-09,-1.98532024500708e-09,-3.36034255976614e-10,-1.09708359757876e-09,-0.0799999966215821,9.92848674368303e-08,3.44140821742385e-07,-7.05220361274281e-08,8.52529852268517e-12,2.27219285053794e-10,-3.36002059508788e-10,2.68665298341818e-10,-2.23779328400959e-10,-7.91467585914154e-12,-3.3393426912546e-11,-2.2985086056685e-11,1.29236898960242e-10 +9.668,-1.72026836373291e-06,-8.88478333717357e-07,1.54976702016092e-06,-3.36056172473009e-10,-1.09690549005004e-09,-0.0799999966222296,-1.5165185730458e-09,5.8716226325479e-10,2.96485926087919e-10,8.46371583929177e-12,2.27168978073092e-10,-3.35818178820483e-10,-1.47812312518951e-06,-9.46612536616705e-06,1.78140370293458e-05,-3.81639164705517e-11,-3.42607886253167e-11,8.32667268096082e-11 +9.67,2.97247241274126e-09,-7.11573641676289e-09,-1.98413430130273e-09,-3.36000401113257e-10,-1.09617492166647e-09,-0.0799999966229254,9.33723749360729e-08,3.06276320277721e-07,7.34111989947409e-10,8.37264285680298e-12,2.27082241899293e-10,-3.35668992601549e-10,2.77230495504626e-10,-1.92987986702441e-10,1.32272665043246e-11,-4.33680868994298e-11,-1.5612511283793e-11,9.19403442267809e-11 +9.672,-1.71989487423316e-06,-8.87253228436247e-07,1.54976995660888e-06,-3.36022681901582e-10,-1.09599716108244e-09,-0.0799999966235723,-1.51540965106378e-09,5.86390311307981e-10,2.96538835153936e-10,8.29024349169407e-12,2.27106528027957e-10,-3.35450417443576e-10,1.7142260104901e-06,-5.28633560537123e-06,1.1483814008238e-05,-4.55364912444015e-11,1.30104260698275e-12,1.43114686768115e-10 +9.674,2.96641077413701e-09,-7.11339085551765e-09,-1.98294814596212e-09,-3.3596724013929e-10,-1.09526649555436e-09,-0.0799999966242672,1.00229278978033e-07,2.85130977856239e-07,4.66693680228943e-08,8.1904968918254e-12,2.27087446069721e-10,-3.35096533854477e-10,2.86419109084514e-10,-1.8496489069111e-10,3.36102673141222e-11,-4.53196508108042e-11,-2.38524478198933e-11,1.41379963329323e-10 +9.676,-1.71949395711725e-06,-8.86112704524822e-07,1.54995663408097e-06,-3.35989919914015e-10,-1.09508881129816e-09,-0.0799999966249127,-1.51426397462744e-09,5.85650451745216e-10,2.96673276223192e-10,8.10896488845088e-12,2.27011118236677e-10,-3.34884897590259e-10,4.03503557064394e-06,-1.13658106364019e-06,4.80192480830397e-06,-4.09828421199428e-11,-2.51534904016618e-11,8.32667268468719e-11 +9.678,2.9603537182385e-09,-7.11104825371067e-09,-1.98176145285722e-09,-3.35934804279736e-10,-1.09435845108141e-09,-0.0799999966256067,1.16369421260614e-07,2.80584653601676e-07,6.58770672561166e-08,8.02656552334557e-12,2.26986832108114e-10,-3.34763466947089e-10,3.00107161175948e-10,-1.76724954050145e-10,1.83230167479392e-11,-4.55364912435012e-11,-1.47451495206013e-11,1.01481323307483e-10 +9.68,-1.71902847943221e-06,-8.84990365910415e-07,1.55022014235e-06,-3.35957813651921e-10,-1.09418086396973e-09,-0.0799999966262518,-1.51306354598274e-09,5.84943551929016e-10,2.96746568290184e-10,7.92681892347689e-12,2.26952137638595e-10,-3.34478972297029e-10,5.36042976498317e-06,2.43358003016886e-06,-1.19492122360742e-06,-4.33680869003014e-11,-1.21430643570357e-11,1.39645239853268e-10 +9.682,2.95430146405457e-09,-7.10870847950296e-09,-1.98057446658406e-09,-3.35903097004042e-10,-1.09345064253086e-09,-0.0799999966269446,1.37811140320544e-07,2.90318973722351e-07,6.10973823616874e-08,7.85309317574438e-12,2.26938259850686e-10,-3.34204885987676e-10,3.04606600359752e-10,-1.86699614101967e-10,2.22261445359454e-11,-3.20923843055634e-11,-1.69135538907682e-11,1.1622647289042e-10 +9.684,-1.71847723487092e-06,-8.83829090015525e-07,1.55046453187944e-06,-3.35926401279218e-10,-1.09327311093033e-09,-0.0799999966275886,-1.5118451195813e-09,5.84196753472608e-10,2.96835472868328e-10,7.7984493862546e-12,2.26884483423032e-10,-3.34014066405467e-10,5.72574995230937e-06,5.0560109484871e-06,-5.78297197454673e-06,-2.60208521387862e-11,-1.90819582105503e-11,9.3675067665664e-11 +9.686,2.94825408357624e-09,-7.10637169248907e-09,-1.97938712469259e-09,-3.35871903206497e-10,-1.09254310459717e-09,-0.0799999966282807,1.60714140129779e-07,3.10543017516297e-07,3.7965494463503e-08,7.74900976718925e-12,2.26861932017844e-10,-3.33830185717014e-10,3.13198902576785e-10,-1.72604985859711e-10,7.58941520739937e-13,-2.42861286636808e-11,-1.60461921527937e-11,1.32706345912266e-10 +9.688,-1.71783437831041e-06,-8.8258691794546e-07,1.5506163938573e-06,-3.3589540524015e-10,-1.09236566320225e-09,-0.0799999966289239,-1.51059232397099e-09,5.83506333529169e-10,2.96838508634411e-10,7.70130487159988e-12,2.2682029865442e-10,-3.33483241021818e-10,5.28730862261092e-06,6.55946109061479e-06,-8.59211530049498e-06,-2.32019264911948e-11,-2.90566182226212e-11,1.49186218934035e-10 +9.69,2.94221171428036e-09,-7.10403766715495e-09,-1.97819977065805e-09,-3.35841097987011e-10,-1.09163582340255e-09,-0.0799999966296146,1.8186337462022e-07,3.36780861878753e-07,3.59703326152689e-09,7.65620206122448e-12,2.26745705544953e-10,-3.33233440841277e-10,3.14391525134126e-10,-1.96891114588116e-10,-1.84314369652007e-11,-2.01661604090808e-11,-2.51534904268373e-11,1.16226472927436e-10 +9.692,-1.71710692481192e-06,-8.81239794497946e-07,1.55063078199034e-06,-3.35864780431905e-10,-1.09145868038008e-09,-0.0799999966302568,-1.50933475787046e-09,5.82718769070817e-10,2.9676478288655e-10,7.62064022996357e-12,2.26719684692713e-10,-3.33018335130108e-10,4.27488727468014e-06,6.95459293452283e-06,-9.58672659485745e-06,-1.45283091113025e-11,-9.97465998686331e-12,1.07552855510539e-10 +9.694,2.93617437524887e-09,-7.10170679207867e-09,-1.9770127115265e-09,-3.35810615426091e-10,-1.09072894466378e-09,-0.0799999966309467,1.98962923718947e-07,3.64599233616854e-07,-3.47498731179157e-08,7.59808882477925e-12,2.26705806905006e-10,-3.32803229419235e-10,3.16288878600865e-10,-1.9645743358972e-10,-3.52365705728377e-11,-5.20417042708564e-12,-2.94902990664446e-11,1.22298005019427e-10 +9.696,-1.71631107311705e-06,-8.79781397563478e-07,1.55049178249787e-06,-3.35834388076606e-10,-1.09055185715246e-09,-0.079999996631588,-1.50806960235605e-09,5.81932939336458e-10,2.96623836604259e-10,7.59982354825523e-12,2.26601723496447e-10,-3.32529143110031e-10,2.94469112177891e-06,6.39749039330034e-06,-9.00202026636011e-06,-2.60208521480803e-12,-4.55364912695541e-11,1.30104260735175e-10 +9.698,2.93014209683945e-09,-7.09937906032132e-09,-1.97582621618009e-09,-3.35780216131898e-10,-1.08982253776979e-09,-0.0799999966322768,2.10741688206061e-07,3.90189195190052e-07,-7.07579541833522e-08,7.58768048392002e-12,2.26523660939928e-10,-3.32282812376294e-10,3.14608365400928e-10,-1.88434337577944e-10,-4.77048955893592e-11,-3.0357660829588e-12,-3.8163916471477e-11,1.27502175484266e-10 +9.7,-1.71546810636422e-06,-8.78220640782718e-07,1.55020875068114e-06,-3.3580403735467e-10,-1.0896457625087e-09,-0.0799999966329172,-1.50681116889445e-09,5.81179201986146e-10,2.96433017021901e-10,7.58768048392339e-12,2.26449067830561e-10,-3.32019134408094e-10,1.53851229176459e-06,5.1399301482125e-06,-7.25323653136518e-06,9.3241386842197e-12,-3.51281503633828e-11,1.26634813709447e-10 +9.702,2.92411485216387e-09,-7.09705434351338e-09,-1.974640484112e-09,-3.35749865409962e-10,-1.08891674149847e-09,-0.0799999966336049,2.16895737373119e-07,4.107489157829e-07,-9.97709003088097e-08,7.6249770386569e-12,2.26383148338474e-10,-3.31776273121457e-10,3.12738116653478e-10,-2.06432093641289e-10,-6.60279123043745e-11,1.25767452008349e-11,-3.55618312575349e-11,1.21430643318403e-10 +9.704,-1.71460052341473e-06,-8.76577645119586e-07,1.5498096670799e-06,-3.35773537446515e-10,-1.08874022991534e-09,-0.0799999966342443,-1.50556021642784e-09,5.80353473611581e-10,2.96168905372684e-10,7.63798746472672e-12,2.26306820505531e-10,-3.3153341183482e-10,2.54204263975466e-07,3.47669983080743e-06,-4.83745758294541e-06,2.6020852139659e-12,-2.21177243187132e-11,1.30104260698288e-10 +9.706,2.91809261129816e-09,-7.09473292961893e-09,-1.97345580849051e-09,-3.35719313460103e-10,-1.08801151421645e-09,-0.079999996634931,2.1791255442902e-07,4.24655715106128e-07,-1.19120730640589e-07,7.63538537951276e-12,2.26294677441199e-10,-3.31255856078664e-10,2.77426193998287e-08,-8.27940147003087e-09,-4.55581752881595e-09,2.93385107873664e-10,-3.77432460288082e-09,5.48606299281223e-09 +9.708,-1.71372887319702e-06,-8.74879022259162e-07,1.54933318415734e-06,-3.35742995904997e-10,-1.08783505120558e-09,-0.0799999966355693,-1.39458973882853e-09,5.47235867731461e-10,2.77945635257422e-10,8.81152789622125e-12,2.1120952209401e-10,-3.09589159863573e-10,-0.0342176003561493,-0.0153425188454421,0.0311201393432911,-2.78856798763209e-10,-9.84932621572511e-09,6.5841429530685e-09 +9.71,2.91251425234285e-09,-7.092543986148e-09,-1.97234402594948e-09,-3.35684067348518e-10,-1.08716667612807e-09,-0.0799999966361694,-0.000136652488870214,-6.09454196666829e-05,0.000124361436642566,6.51995818445955e-12,1.86897372578286e-10,-3.04919284266381e-10,-2.79151159654711e-08,7.34677076125863e-09,3.23786136794228e-09,-3.77302356015259e-11,3.46077333459794e-09,-5.21110932186985e-09 +9.712,-2.26033882867781e-06,-1.11866070092587e-06,2.04677893072755e-06,-3.3571691607226e-10,-1.08708746171526e-09,-0.079999996636789,-1.50625020269041e-09,5.76622950776492e-10,2.9089708072919e-10,8.66060695381516e-12,2.250526154324e-10,-3.30433597151051e-10,0.0779734931905634,0.0356963789662183,-0.0719244184809222,1.20368125189241e-09,1.7671194368882e-08,-8.20871148828655e-09 +9.714,2.90648925153209e-09,-7.0902374943449e-09,-1.97118043762656e-09,-3.35649424920703e-10,-1.08626646566634e-09,-0.0799999966374911,0.000175241483892006,8.18400961981745e-05,-0.000163336237281092,1.13346831920287e-11,2.57582150053806e-10,-3.37754130219523e-10,-7.55453100249711e-09,1.44068784679841e-09,2.14325085456886e-09,-6.11490025281687e-10,1.19045398538882e-09,-1.18741821930586e-09 +9.716,-1.55937289310955e-06,-7.91300316133059e-07,1.39343398160297e-06,-3.35671577339491e-10,-1.08605713311505e-09,-0.07999999663814,-1.5364683267004e-09,5.82385702163688e-10,2.99470084147468e-10,6.2146468526876e-12,2.29814431373957e-10,-3.35183270028276e-10,-0.0628974444809206,-0.0305582154988178,0.0580893048283299,-1.8203754476023e-09,-9.9247866869059e-09,9.14199271802474e-10 +9.718,2.90034337822528e-09,-7.08790795153624e-09,-1.96998255728997e-09,-3.35624566333292e-10,-1.08534720794085e-09,-0.0799999966388319,-7.6348294031649e-05,-4.03927657970832e-05,6.90209820322022e-05,4.05318140162026e-12,2.17883003306187e-10,-3.34097333132314e-10,1.17329648600973e-09,-5.50774703622697e-11,3.97251675998771e-10,-1.00830802041174e-10,1.9081958235747e-11,2.00360561475369e-10 +9.72,-1.86476606923612e-06,-9.52871379321374e-07,1.66951790973174e-06,-3.35655364613885e-10,-1.08518560110182e-09,-0.0799999966394764,-1.53177514075637e-09,5.82165392282239e-10,3.01059090851463e-10,5.81132364452294e-12,2.298907592069e-10,-3.34381827782374e-10,0.0299059905290204,0.0156649841091417,-0.0263609976650107,7.5590575465706e-10,4.55234808183314e-09,-1.0408340855862e-11 +9.722,2.89421627766226e-09,-7.08557928996711e-09,-1.96877832092657e-09,-3.35601321038714e-10,-1.08442764490402e-09,-0.0799999966401694,4.32756680844195e-05,2.22671706394767e-05,-3.64230086278289e-05,7.07680442024816e-12,2.36092395633517e-10,-3.34138966495737e-10,2.91054073220676e-09,-9.90960786297836e-11,-2.73761048585953e-10,1.96674274088181e-10,-2.78423117919738e-10,3.98119037773712e-10 +9.724,-1.69166339689846e-06,-8.63802696763477e-07,1.52382587522044e-06,-3.35627057396204e-10,-1.08424123151929e-09,-0.0799999966408129,-1.52013297782754e-09,5.8176900796772e-10,2.99964046657119e-10,6.59802074087558e-12,2.28777066735221e-10,-3.3278935163128e-10,-0.0148106879330439,-0.00735356815045199,0.0132790190824546,-8.93382590127856e-11,-2.69445923906037e-09,6.19296280923578e-10 +9.726,2.88813574575095e-09,-7.08325221393524e-09,-1.96757846473994e-09,-3.35574928955751e-10,-1.08351253663708e-09,-0.0799999966415005,-1.59670836477758e-05,-7.14710196234115e-06,1.66930677020072e-05,6.7194513841969e-12,2.25314558677272e-10,-3.31661781372042e-10,3.00886160603297e-08,-8.17510122091241e-09,-4.87175404181413e-09,5.29524341042769e-10,-4.03106367727659e-09,5.69336244812019e-09 +9.728,-1.75553173148955e-06,-8.92391104612839e-07,1.59059814602847e-06,-3.35600179590667e-10,-1.08333997328458e-09,-0.0799999966421396,-1.39977851358623e-09,5.49068603084074e-10,2.80477030489865e-10,8.71611810504643e-12,2.12652812026116e-10,-3.10015901838801e-10,-0.0270622876958861,-0.0117142692594744,0.0246221836770332,7.39425881635276e-11,-8.91170817696382e-09,6.63358257213678e-09 +9.73,2.8825366316966e-09,-7.08105593952291e-09,-1.96645655661798e-09,-3.35540064483331e-10,-1.08266192538897e-09,-0.0799999966427406,-0.000124216234431308,-5.40041790002336e-05,0.000115181802410129,7.01522173685098e-12,1.89667725969421e-10,-3.05127451083498e-10,-2.62083106952806e-08,7.27673130085531e-09,2.93135741374969e-09,1.22514845490889e-10,3.25217283658823e-09,-4.99426888733833e-09 +9.732,-2.25239666921473e-06,-1.10840782061375e-06,2.05132535566893e-06,-3.3557211870372e-10,-1.0825813023807e-09,-0.0799999966433601,-1.50461175636735e-09,5.78175528287492e-10,2.92202460144862e-10,9.20617748700993e-12,2.25661503372468e-10,-3.29992977388152e-10,0.0736993292421473,0.0332961929330036,-0.0687007147055357,1.23859256184638e-09,1.68901351238233e-08,-7.92248211475042e-09 +9.734,2.87651818467113e-09,-7.07874323740976e-09,-1.9652877467774e-09,-3.35503239773383e-10,-1.08175927937548e-09,-0.0799999966440606,0.000170581082537249,7.91805927317659e-05,-0.000159621056411984,1.1969591984236e-11,2.57228266464707e-10,-3.36817379542496e-10,-6.69082844684109e-09,1.28911638308496e-09,1.94831130395602e-09,-5.40583203201152e-10,1.06642125685651e-09,-1.0373646386339e-09 +9.736,-1.57007233906551e-06,-7.9168544968658e-07,1.41284113002078e-06,-3.35524240335783e-10,-1.08155238931484e-09,-0.0799999966447074,-1.53137507015472e-09,5.83331993819833e-10,2.99995705360689e-10,7.0438446742046e-12,2.29927188399895e-10,-3.34142435942689e-10,0.0030145478674535,0.00218324981965623,0.000162327949241806,-1.75640751929403e-11,-3.28296417825827e-09,5.39585737198964e-09 +9.738,2.87039268439052e-09,-7.07640990943448e-09,-1.96408776395596e-09,-3.35475064394686e-10,-1.08083957062188e-09,-0.0799999966453971,0.000182639274007061,8.79135920103899e-05,-0.000158971744615016,1.18993356834642e-11,2.44096409751675e-10,-3.1523395005454e-10,3.08577219767619e-08,-9.09342046113315e-09,-5.27692039373633e-09,4.11563144674624e-10,-4.23315896227699e-09,-3.95020301191448e-06 +9.74,-8.39515243037346e-07,-4.40031081645059e-07,7.76954151560788e-07,-3.35476642993049e-10,-1.08057600367584e-09,-0.0799999966459683,-1.40794418224769e-09,5.46958311975305e-10,2.78888023785746e-10,8.69009725290291e-12,2.12994552550789e-10,-1.61349544835989e-08,-0.144711040409208,-0.069965174381268,0.127201226386159,-3.2294045909646e-09,-1.97732455409172e-08,-2.74866934768463e-09 +9.742,2.86476090766152e-09,-7.07422207618658e-09,-1.96297221186081e-09,-3.35440304005674e-10,-1.07998759241168e-09,-0.079999996709937,-0.000396204887629964,-0.000191947105514776,0.000349833160929791,-1.0182826803985e-12,1.6500342758798e-10,-3.26228627445282e-10,-3.35000039862726e-08,9.24542560571566e-09,5.43597285243998e-09,-4.51244944187602e-10,4.52025569755121e-09,7.90616877521794e-06 +9.744,-2.42433479355703e-06,-1.20781950370408e-06,2.1762867952798e-06,-3.35480716123771e-10,-1.07991598996549e-09,-0.0799999966472732,-1.54194419819276e-09,5.83940014398163e-10,3.00631915195504e-10,6.88511747615271e-12,2.31075575340992e-10,1.54897206172694e-08,0.156370473347472,0.0756692848480338,-0.138802560989272,3.13030851240084e-09,2.58703648781168e-08,-3.08954251071537e-09 +9.746,2.85859313086875e-09,-7.07188631612898e-09,-1.96176968420003e-09,-3.3541276353577e-10,-1.07906329011032e-09,-0.0799999966479781,0.000229277005759854,0.000110730033877326,-0.000205377083027236,1.15029513692035e-11,2.68484887100436e-10,-3.38586797488142e-10,1.27328703136727e-09,-1.09070738552054e-10,5.53376788836727e-10,-1.6805133673529e-10,6.67868538251209e-11,-3.95600219249646e-06 +9.748,-1.50722677051771e-06,-7.64899368194821e-07,1.35477846317095e-06,-3.35434704318294e-10,-1.07884205041708e-09,-0.0799999966486276,-1.53685105006729e-09,5.83503731443955e-10,3.0284542235085e-10,6.21291212921162e-12,2.31342722756292e-10,-3.34288152714671e-10,-0.0815282909507347,-0.0398368038964334,0.0737966037962364,-1.80454609588575e-09,-1.34241576188733e-08,1.67747760130679e-09 +9.75,2.85244572666848e-09,-7.06955230120321e-09,-1.96055830251063e-09,-3.35387911887253e-10,-1.07813791921929e-09,-0.0799999966493152,-9.68361580430483e-05,-4.86171817083898e-05,8.98093321576773e-05,4.28476698566128e-12,2.14788256624949e-10,-3.31876887082916e-10,3.91063592099139e-09,-4.00070601647069e-10,-4.04624250771494e-10,2.01227923213265e-10,-4.18935719448304e-10,5.81132364452101e-10 +9.752,-1.89457140269004e-06,-9.59368095028446e-07,1.71401579180178e-06,-3.35417565250351e-10,-1.07798289739058e-09,-0.0799999966499551,-1.52120850638332e-09,5.81903449037366e-10,3.01226925347764e-10,7.01782382206495e-12,2.29666979878499e-10,-3.31963623256862e-10,0.0381158710860818,0.0193792597821893,-0.0344473945208354,1.12843762112364e-09,5.65259644649552e-09,1.20563281543566e-10 +9.754,2.84636089264295e-09,-7.06722468740706e-09,-1.95935339480924e-09,-3.35359840591964e-10,-1.07721925129978e-09,-0.0799999966506431,5.5627326301262e-05,2.8899857420359e-05,-4.79802459256493e-05,8.79851747015533e-12,2.37398642410928e-10,-3.31394633956742e-10,3.71412427739735e-09,-4.91577265069424e-10,-6.45642393748418e-10,2.64762170520122e-10,-4.5493123160032e-10,5.81999726226937e-10 +9.756,-1.67206209748501e-06,-8.43768665347022e-07,1.5220948080992e-06,-3.3538237118047e-10,-1.07703330282094e-09,-0.0799999966512807,-1.50635200927373e-09,5.79937139977089e-10,2.9864435577277e-10,8.07687250414532e-12,2.27847254952098e-10,-3.29635624351955e-10,-0.0191234350130484,-0.00959215125991488,0.0170818301640027,-2.04263689296223e-10,-3.46814590934586e-09,7.94503351997203e-10 +9.758,2.84033548460585e-09,-7.06490493884715e-09,-1.95815881738615e-09,-3.35327533101948e-10,-1.07630786227997e-09,-0.0799999966519616,-2.08664137509573e-05,-9.46874761931331e-06,2.03470747303843e-05,7.98146271297017e-12,2.2352605877354e-10,-3.28216620548752e-10,2.59690814842489e-09,-5.53376788772349e-10,-5.74843991818791e-10,1.77809156288559e-10,-3.58220397763989e-10,4.78783679333113e-10 +9.76,-1.75552775248883e-06,-8.81643655824271e-07,1.60348310702073e-06,-3.35350445329619e-10,-1.07613919858585e-09,-0.0799999966525935,-1.49596437668004e-09,5.77723632822e-10,2.96344979805496e-10,8.78810912929947e-12,2.26414373361042e-10,-3.27720489634623e-10,0.0685066741908589,0.0334364234466284,-0.0616305175940802,1.96305645350269e-09,7.02909952465957e-09,4.6768144912345e-09 +9.762,2.83435162709914e-09,-7.06259404431586e-09,-1.95697343746692e-09,-3.35292380665431e-10,-1.07540220478652e-09,-0.0799999966532725,0.000253160283012448,0.000124276946167186,-0.000226174995645909,1.58336885269801e-11,2.51642456872175e-10,-3.09509362583816e-10,3.07078039212051e-08,-9.40436964414134e-09,-5.90835973896105e-09,5.52075746229741e-10,-4.41747333157592e-09,6.04898076073245e-09 +9.764,-7.4288662043915e-07,-3.84535871155584e-07,6.98783124437191e-07,-3.35287110575511e-10,-1.07513262875836e-09,-0.0799999966538316,-1.37313316099523e-09,5.40106154245438e-10,2.72711540849654e-10,1.09964121142182e-11,2.0874448003474e-10,-3.03524566591695e-10,-0.168530470119958,-0.0814511080776203,0.150044898606827,-3.8662649470842e-09,-2.37435938965862e-08,-2.43728648371251e-09 +9.766,2.82885909445516e-09,-7.06043361969888e-09,-1.95588259130353e-09,-3.35248395016974e-10,-1.07456722686639e-09,-0.0799999966544866,-0.00042096159746731,-0.00020152748614326,0.000374004598781334,3.68628738644948e-13,1.56668081285841e-10,-3.19258508518665e-10,-3.5534861728476e-08,8.85858227050809e-09,5.46047582150477e-09,-6.41630845676778e-10,4.67464608688746e-09,-6.39072128549712e-09 +9.768,-2.42673301030895e-06,-1.19064581572889e-06,2.19480151956303e-06,-3.35285636060556e-10,-1.07450595643321e-09,-0.0799999966551086,-1.51527260790918e-09,5.75540483327483e-10,2.9455344413568e-10,8.42988873151022e-12,2.27443064382296e-10,-3.29087451733692e-10,0.165042722794607,0.078734680769268,-0.148015991207752,3.10645606460619e-09,2.76653699949016e-08,-3.48939627196356e-09 +9.77,2.82279800402352e-09,-7.05813145776557e-09,-1.95470437752698e-09,-3.35214675462048e-10,-1.07365745460886e-09,-0.079999996655803,0.000239209293711046,0.000113411236933778,-0.000218059366049607,1.27944529970683e-11,2.67329561265435e-10,-3.33216093606518e-10,-1.06249102381301e-09,-3.15936513126107e-10,8.49797662761248e-10,-4.40619762898946e-10,2.83627288296894e-10,5.29090660538107e-11 +9.772,-1.46989583546487e-06,-7.37000867993831e-07,1.3225640553647e-06,-3.35234458248568e-10,-1.07343663818815e-09,-0.0799999966564415,-1.51952257200443e-09,5.74276737274978e-10,2.97952634786725e-10,6.66740967991463e-12,2.28577573535484e-10,-3.28875815469477e-10,-0.0858010535603621,-0.0413558339643847,0.0781287487912687,-2.16797066410153e-09,-1.39627892581342e-08,1.59768032137429e-09 +9.774,2.8167199137355e-09,-7.05583435081647e-09,-1.95351256698784e-09,-3.35188005823328e-10,-1.07274314431471e-09,-0.0799999966571185,-0.000103994920530517,-5.20120989238164e-05,9.44556291155724e-05,4.12257034065934e-12,2.1147840423288e-10,-3.26825372321018e-10,2.2770956125945e-09,-5.30608543150771e-10,-1.27068494582241e-10,-1.4745149545066e-11,-2.24213009244675e-10,4.11996825508077e-10 +9.776,-1.8858755175869e-06,-9.45049263689074e-07,1.70038657182695e-06,-3.35217967967205e-10,-1.07259072457122e-09,-0.0799999966577488,-1.51041418955405e-09,5.72154303102375e-10,2.97444360808396e-10,6.60842908173437e-12,2.27680721498505e-10,-3.27227828167445e-10,0.0402618853659745,0.0202990074439073,-0.0360781283739203,1.0035375308528e-09,6.12617595541345e-09,-2.86229373536205e-11 +9.778,2.81067825697728e-09,-7.05354573360406e-09,-1.9523227895446e-09,-3.35161572107001e-10,-1.07183242142872e-09,-0.0799999966584274,5.70526209333632e-05,2.91839308518037e-05,-4.98568843800929e-05,8.13672046407011e-12,2.35983108054531e-10,-3.26939864070433e-10,2.86137216351574e-09,-4.82469966756154e-10,-4.28368278349122e-10,1.34224228953735e-10,-3.47378376064433e-10,4.90926743701542e-10 +9.78,-1.65766503385347e-06,-8.28313540281872e-07,1.5009590343066e-06,-3.35185421085349e-10,-1.071646792139e-09,-0.0799999966590565,-1.49896870089999e-09,5.70224423235351e-10,2.95730887695e-10,7.14532599754926e-12,2.26291207994247e-10,-3.25264121192639e-10,-0.0199888626820356,-0.00988680030314658,0.0179749696353514,-3.20490162187547e-10,-3.53276435885218e-09,7.30318583422363e-10 +9.782,2.80468238217368e-09,-7.05126483591112e-09,-1.95113986599382e-09,-3.35132990803011e-10,-1.07092725659674e-09,-0.0799999966597284,-2.29028297947704e-05,-1.03632703607783e-05,2.20429941613048e-05,6.85475981532006e-12,2.21852050619124e-10,-3.24018589736744e-10,2.26720226793825e-09,-4.07009495550948e-10,-4.04298990119748e-10,1.17961196366396e-10,-2.78423117894217e-10,3.7209818559694e-10 +9.784,-1.74927635303258e-06,-8.69766621724999e-07,1.58913101095184e-06,-3.35158002046088e-10,-1.07075938393653e-09,-0.0799999966603526,-1.48989989182824e-09,5.68596385253147e-10,2.9411369173452e-10,7.617170783015e-12,2.2517751552267e-10,-3.23775728450251e-10,0.00926468579311855,0.00448475420754079,-0.00856990676437564,2.99456640041323e-10,1.27458807399887e-09,1.9862583796341e-10 +9.786,2.79872278260637e-09,-7.04899045037011e-09,-1.94996341122688e-09,-3.35102522119879e-10,-1.07002654653465e-09,-0.0799999966610235,1.41559133776998e-05,7.57574646938292e-06,-1.22366328961939e-05,8.05258637548523e-12,2.26950402915119e-10,-3.2322408638489e-10,1.41640171830014e-09,-3.74700270874052e-10,-2.41885504714126e-10,3.77302356016414e-11,-1.81278603264535e-10,2.92300905737977e-10 +9.788,-1.69265269952179e-06,-8.39463635847471e-07,1.54018447936707e-06,-3.35125791700586e-10,-1.06985158232487e-09,-0.0799999966616455,-1.48423428495504e-09,5.67097584169651e-10,2.93146149715664e-10,7.76809172542155e-12,2.24452401109612e-10,-3.22606524827299e-10,-0.00474892262149024,-0.00240565172036163,0.00418630171023202,-1.06902334207047e-10,-8.92515228389866e-10,2.8449465006014e-10 +9.79,2.79278584546655e-09,-7.04672206003343e-09,-1.94879082662802e-09,-3.35071449752977e-10,-1.06912873693021e-09,-0.079999996662314,-4.83977710826756e-06,-2.04686041206681e-06,4.50857394473974e-06,7.6249770386569e-12,2.23380342001558e-10,-3.22086107784649e-10,7.86697096190856e-10,-3.73832909010126e-10,-1.53631447808681e-10,-1.01915004205034e-11,-1.18828558079518e-10,2.2638141357921e-10 +9.792,-1.71201180795486e-06,-8.47651077495737e-07,1.55821877514603e-06,-3.35095291792431e-10,-1.06895806095686e-09,-0.0799999966629338,-1.48108749657027e-09,5.6560225253361e-10,2.92531623924429e-10,7.72732572373954e-12,2.23977086877294e-10,-3.21700999172982e-10,0.00211771601998774,0.00100905664878458,-0.00199077943485683,3.01408203951036e-11,2.64979010955512e-10,1.56992474575931e-10 +9.794,2.78686149548027e-09,-7.04445965102329e-09,-1.94762070013232e-09,-3.35040540450082e-10,-1.0682328285827e-09,-0.0799999966636008,3.63108697168246e-06,1.98936618307105e-06,-3.4545437946867e-06,7.7455403202373e-12,2.2444025804538e-10,-3.21458137886346e-10,4.61599074935806e-10,-3.76434994287034e-10,-9.12898229233025e-11,-3.94649590784812e-11,-5.42101086242877e-11,1.91686944095471e-10 +9.796,-1.69748746006813e-06,-8.39693612763454e-07,1.54440059996729e-06,-3.3506430963115e-10,-1.06806029992468e-09,-0.0799999966642197,-1.47924110027053e-09,5.64096512556462e-10,2.92166464632736e-10,7.56946588742563e-12,2.23760246442797e-10,-3.20934251396601e-10,-0.00112237817466718,-0.000549208945032243,0.00100543604616038,-6.50521303499755e-11,-2.31585584067771e-10,2.18575158008722e-10 +9.798,2.78094453107919e-09,-7.04220326497307e-09,-1.94645203427379e-09,-3.35010262586533e-10,-1.06733778759693e-09,-0.0799999966648845,-8.58425726985778e-07,-2.07469597057683e-07,5.67200389954369e-07,7.48533179883742e-12,2.23513915709109e-10,-3.20583837254311e-10,3.46185753674558e-10,-3.67978217341509e-10,-8.55435514090777e-11,-3.85975973404755e-11,-7.76288755499427e-11,1.62196645003803e-10 +9.8,-1.70092116297607e-06,-8.40523491151685e-07,1.5466694015271e-06,-3.35034368303955e-10,-1.06716624426184e-09,-0.079999996665502,-1.47785635725583e-09,5.62624599687096e-10,2.918242904271e-10,7.41507549806368e-12,2.23449730940597e-10,-3.20285464816585e-10,0.000487044871880933,0.00025046669491043,-0.000434365919101153,-2.6020852138827e-11,1.17093834876666e-11,1.75207071038108e-10 +9.802,2.77503310565017e-09,-7.03995276657432e-09,-1.94528473711209e-09,-3.3498060228454e-10,-1.06644398867317e-09,-0.0799999966661656,1.08975376053774e-06,7.94397182583927e-07,-1.17026328645005e-06,7.38124839028213e-12,2.2356075324306e-10,-3.19883008970158e-10,3.25206441801051e-10,-3.60605642631067e-10,-8.40256684000122e-11,-2.34187669265045e-11,-3.55618312823245e-11,1.97758476296869e-10 +9.804,-1.69656214793392e-06,-8.37345902421349e-07,1.5419883483813e-06,-3.35004843310394e-10,-1.06627200124887e-09,-0.0799999966667815,-1.47655553148863e-09,5.61182177116572e-10,2.914881877535e-10,7.32140043035767e-12,2.23307483615468e-10,-3.19494430911398e-10,-0.00026840495681595,-0.000120164887155273,0.000259925359556133,-3.16587034365696e-11,-9.06393016197708e-11,1.54390389361897e-10 +9.806,2.76912688352421e-09,-7.03770803786585e-09,-1.94411878436107e-09,-3.34951316682819e-10,-1.06555075873871e-09,-0.0799999966674436,1.61339332735798e-08,3.13737633962675e-07,-1.30561848225172e-07,7.25461357653581e-12,2.2319819603658e-10,-3.19265447412711e-10,3.25775647613681e-10,-3.02058725192224e-10,-8.58688120285109e-11,-2.75387351803252e-11,-5.46437894684923e-11,1.3704315456673e-10 +9.808,-1.69649761220083e-06,-8.36090951885499e-07,1.5414661009884e-06,-3.34975824856087e-10,-1.06537920846472e-09,-0.0799999966680586,-1.47525242889817e-09,5.59973942215803e-10,2.91144712505386e-10,7.21124548963638e-12,2.23088908457594e-10,-3.18946258293131e-10,0.000105420272419347,5.67160118782869e-05,-7.85924209826573e-05,-1.56125112837946e-11,-3.12250225675924e-11,1.5785983631392e-10 +9.81,2.76322587380862e-09,-7.03546814209699e-09,-1.94295420551105e-09,-3.3492247170086e-10,-1.06465840310488e-09,-0.0799999966687194,4.3781502295092e-07,5.40601681475798e-07,-4.44931532155767e-07,7.19216353140063e-12,2.2307329594631e-10,-3.18634008067455e-10,3.22821196857646e-10,-2.54136989230656e-10,-6.12574227454377e-11,-1.58293517182917e-11,-3.8163916471494e-11,1.47451495458058e-10 +9.812,-1.69474635210902e-06,-8.33928545159596e-07,1.53968637485978e-06,-3.34947056201962e-10,-1.06448691528094e-09,-0.0799999966693331,-1.47396114411074e-09,5.5895739425888e-10,2.90899682814404e-10,7.14792808276322e-12,2.22936252791708e-10,-3.18356452311299e-10,-6.97951708906481e-05,-3.4259260359212e-05,8.0436844901822e-05,-1.4094628243107e-11,-4.2067044317193e-11,1.28369537257634e-10 +9.814,2.75733002923217e-09,-7.03323231251995e-09,-1.94179060677979e-09,-3.34893879988529e-10,-1.06376665809371e-09,-0.0799999966699928,1.58634339388358e-07,4.03564640038965e-07,-1.23184152548514e-07,7.13578501842821e-12,2.22905027769041e-10,-3.18120529918425e-10,3.18240442678753e-10,-2.10335221462143e-10,-5.56195714485007e-11,-4.33680868994118e-12,-3.07913416985845e-11,1.18828558104385e-10 +9.816,-1.69411181475147e-06,-8.32314286599439e-07,1.53919363824959e-06,-3.34918513061888e-10,-1.06359529516986e-09,-0.0799999966706056,-1.47268818234003e-09,5.58116053373032e-10,2.9067720452861e-10,7.13058084800345e-12,2.22813087424914e-10,-3.17881138078881e-10,1.98328902129575e-05,6.09592584748416e-06,-1.44455454544069e-06,-2.16840434417921e-12,-5.11743425165771e-11,1.20563281545091e-10 +9.818,2.75143927650282e-09,-7.03099984830646e-09,-1.94062789796168e-09,-3.34865357665137e-10,-1.06287540574401e-09,-0.0799999966712644,2.37965900240179e-07,4.27948343428899e-07,-1.28962370730277e-07,7.1271114010515e-12,2.22700330398975e-10,-3.17638276792244e-10,3.15638357628245e-10,-1.73255507225086e-10,-4.48859699731649e-11,-3.68628738724155e-12,-3.94649591032017e-11,1.21430643353636e-10 +9.82,-1.69315995115051e-06,-8.30602493225724e-07,1.53867778876667e-06,-3.34890004616284e-10,-1.06270449384827e-09,-0.0799999966718762,-1.47142562890951e-09,5.57423031344131e-10,2.90497660648717e-10,7.11583569845449e-12,2.22655227588501e-10,-3.17395415505467e-10,0.0599254762717839,0.0285908731852332,-0.0532965754901414,1.63692844001825e-09,5.93232060697036e-09,4.39058511769632e-09 +9.822,2.74555357398718e-09,-7.02877015618109e-09,-1.93946590731908e-09,-3.34836894322343e-10,-1.06198478483366e-09,-0.0799999966725339,0.000239939870987456,0.0001147914410844,-0.000213315264331367,1.36748251611267e-11,2.46429612826864e-10,-3.00075936321453e-10,2.91725465397476e-08,-8.70982973238508e-09,-5.42339610717592e-09,4.86373094577895e-10,-4.1503259162507e-09,5.64912699948448e-09 +9.824,-7.33400467200791e-07,-3.71436728888175e-07,6.85416731441291e-07,-3.34835305315639e-10,-1.06171877539696e-09,-0.0799999966730765,-1.35473544275054e-09,5.22583712414595e-10,2.68804076220016e-10,9.06132807676585e-12,2.060539239235e-10,-2.94798907507531e-10,-0.164143553880523,-0.0774812258350421,0.145706260326844,-3.78451610327874e-09,-2.29148297559207e-08,-2.60989146960768e-09 +9.826,2.74013463221617e-09,-7.02667982133143e-09,-1.9383906910142e-09,-3.34800649010036e-10,-1.06116056913796e-09,-0.0799999966737131,-0.000416634344534565,-0.000195133462255734,0.000369509776975945,-1.4632392519866e-12,1.54770293803192e-10,-3.10515502199883e-10,-3.55232607652462e-08,9.19902175267253e-09,5.64825963778173e-09,-5.99346960950119e-10,4.75400968591549e-09,-6.4262831167575e-09 +9.828,-2.39993784533887e-06,-1.15197057791103e-06,2.16345583934491e-06,-3.34841158272647e-10,-1.06109969422175e-09,-0.0799999966743185,-1.49682848581151e-09,5.59379799425281e-10,2.9139711477114e-10,6.66394023296564e-12,2.2506996266716e-10,-3.20504039974558e-10,0.162865530326676,0.0759772799277658,-0.145505869898828,3.13594636369653e-09,2.73800079830566e-08,-3.58480606307081e-09 +9.83,2.73414731827293e-09,-7.02444230213373e-09,-1.93722510255512e-09,-3.34773993249105e-10,-1.0602602892873e-09,-0.0799999966749951,0.000234827776772069,0.000108775657455295,-0.000212513702619302,1.10805462027982e-11,2.64290325735406e-10,-3.24854726452164e-10,-1.0740377771182e-09,2.43728648374686e-10,1.04733929862076e-09,-3.62340366044575e-10,3.76868675155874e-10,-1.31838984174206e-10 +9.832,-1.46062673825028e-06,-7.168679480897e-07,1.31340102886741e-06,-3.34796836087836e-10,-1.0600425329188e-09,-0.079999996675618,-1.50112463691998e-09,5.6035471401878e-10,2.95586471965625e-10,5.21457876878686e-12,2.26577437367784e-10,-3.21031395911255e-10,-0.0843692301474745,-0.0397915753647863,0.0767258212047856,-2.04632318034836e-09,-1.36375286063653e-08,1.41379963288535e-09 +9.834,2.72814281972525e-09,-7.02220088327765e-09,-1.93604275666726e-09,-3.34753134934029e-10,-1.05935397953782e-09,-0.0799999966762793,-0.000102649143817792,-5.03906440038324e-05,9.4389582199806e-05,2.89525348140561e-12,2.09740211309951e-10,-3.19199527920624e-10,2.91002573602142e-08,-7.69978698861804e-09,-4.29007957633976e-09,3.64725610823463e-10,-3.80728434892439e-09,5.34901983820894e-09 +9.836,-1.8712233135214e-06,-9.18430524105007e-07,1.6909593576666e-06,-3.34785255073911e-10,-1.05920357207356e-09,-0.0799999966768948,-1.38472360747914e-09,5.29555566064311e-10,2.78426153660267e-10,6.67348121208055e-12,2.11348299972088e-10,-2.99635316558422e-10,0.0067911248817624,0.00541206174341971,-0.00551739375281039,8.00141203294123e-10,-3.42347677983947e-09,5.95617305476504e-09 +9.838,2.72260392529533e-09,-7.02008266101339e-09,-1.93492905205261e-09,-3.34726441009181e-10,-1.05850858633794e-09,-0.0799999966774778,-7.5484644290733e-05,-2.87423970301463e-05,7.23200071885571e-05,6.09581829458317e-12,1.96046304190588e-10,-2.95374835701555e-10,-2.4696743131609e-08,7.05815614294097e-09,2.83638130347087e-09,1.88868018447757e-10,3.10125189420168e-09,-4.62650751046444e-09 +9.84,-2.1731618906843e-06,-1.03340011222558e-06,1.98023938642079e-06,-3.34760871800732e-10,-1.0584193868568e-09,-0.0799999966780763,-1.48351058000556e-09,5.57788190636072e-10,2.8977167887415e-10,7.42895328587149e-12,2.23753307548893e-10,-3.18141346600278e-10,0.0553196277654007,0.0234754279724233,-0.0520412050453065,9.61470486560357e-10,1.37160248436826e-08,-7.18695936097349e-09 +9.842,2.71666988297531e-09,-7.01785150825085e-09,-1.93376996533712e-09,-3.34696725196038e-10,-1.05761357310774e-09,-0.0799999966787504,0.000145793866770846,6.51593148595367e-05,-0.000135844812992646,9.94170024082418e-12,2.50910403565313e-10,-3.24122673145446e-10,-5.17533065014345e-09,1.4146669946594e-09,1.7646474559378e-09,-3.8706017557741e-10,9.35883315289694e-10,-9.34148591813717e-10 +9.844,-1.58998642360098e-06,-7.72762852787462e-07,1.43686013445027e-06,-3.34721104999769e-10,-1.05741574524254e-09,-0.0799999966793727,-1.50421190260613e-09,5.63446858614709e-10,2.968302686979e-10,5.88071258356202e-12,2.27496840810051e-10,-3.21877940967532e-10,0.0114647836565136,0.00600922812984797,-0.00788131482438099,3.1159970437116e-10,-1.8956190784011e-09,5.05585157076925e-09 +9.846,2.71065303536488e-09,-7.01559772081639e-09,-1.93258264426233e-09,-3.34673202345703e-10,-1.0567035857445e-09,-0.0799999966800379,0.000191653001396895,8.91962273789259e-05,-0.000167370072290167,1.11880990583087e-11,2.43327927251709e-10,-3.03899266862371e-10,5.77692190958805e-08,-1.62274707560214e-08,-9.50758569095776e-09,7.79975042885897e-10,-7.86783832529105e-09,1.08576342361364e-08 +9.848,-8.23374418013143e-07,-4.15977943271639e-07,7.67379845289379e-07,-3.34676352603536e-10,-1.05644243353353e-09,-0.0799999966805883,-1.27313502622253e-09,4.98536975590602e-10,2.58799925934056e-10,9.00061275510666e-12,1.96025487508877e-10,-2.78447404022972e-10,-0.193125031655464,-0.0879635090162483,0.17225012503008,-3.84674930797817e-09,-3.2093251667289e-08,3.87016807487138e-09 +9.85,2.70556049526e-09,-7.01360357291403e-09,-1.93154744455859e-09,-3.34637199894683e-10,-1.05591948379447e-09,-0.0799999966811517,-0.000580847125224874,-0.000262657808686029,0.000521630427830077,-4.19889817360232e-12,1.14954920582568e-10,-2.88418594562888e-10,-5.99118194290045e-08,1.60693940792177e-08,8.36624606395379e-09,-4.14165229890369e-10,7.7858726410294e-09,-1.09868711350657e-08 +9.852,-3.14676291891238e-06,-1.46660917801564e-06,2.85390155660946e-06,-3.3469314819623e-10,-1.0559826138512e-09,-0.079999996681742,-1.51278230393853e-09,5.62814551907465e-10,2.92264910189868e-10,7.34395183554536e-12,2.27168978072991e-10,-3.2239488856323e-10,0.260618138832109,0.117714688220253,-0.235903834414499,5.11396480717848e-09,4.79243381090625e-08,-1.13780512789293e-08 +9.854,2.69950936604424e-09,-7.0113523147064e-09,-1.93037838491783e-09,-3.34607824087341e-10,-1.05501080788217e-09,-0.0799999966824413,0.000461625430103911,0.00020820094419514,-0.000421984909828235,1.62569610551184e-11,3.06652273018882e-10,-3.3393079967862e-10,2.06346712718523e-08,-6.09234884756939e-09,-1.65492619604978e-09,-4.43872369414848e-10,-2.40215833333419e-09,4.01068067642346e-09 +9.856,-1.30026119849695e-06,-6.33805401235171e-07,1.1659619172967e-06,-3.3462812035201e-10,-1.05475600475913e-09,-0.0799999966830777,-1.43024361885113e-09,5.3844515651719e-10,2.85645205405669e-10,5.56846235788616e-12,2.17560344739655e-10,-3.06352165857538e-10,-0.202174883081486,-0.092533909673368,0.184734386345149,-4.50095689885731e-09,-3.6956982613087e-08,8.86270223876745e-09 +9.858,2.69378839156884e-09,-7.00919853408033e-09,-1.92923580409621e-09,-3.34585550237909e-10,-1.05414056650321e-09,-0.0799999966836667,-0.000347074102221944,-0.000161934694498292,0.00031695263555228,-1.74686654030884e-12,1.5882434256655e-10,-2.98479990723554e-10,-2.28356829973292e-08,6.84977248533042e-09,3.19796272796394e-09,5.8330076879733e-11,3.03186295513913e-09,-4.38451358553234e-09 +9.86,-2.68855760738457e-06,-1.28154417922827e-06,2.43377245950568e-06,-3.34635107818171e-10,-1.05412070738886e-09,-0.0799999966842717,-1.52158635084043e-09,5.65844246458509e-10,2.98437056317524e-10,5.80178266540507e-12,2.2968779656021e-10,-3.23890220199665e-10,0.164103184748136,0.0763607447343282,-0.149383917486957,3.54577478489599e-09,3.08334087428562e-08,-8.1106996118946e-09 +9.862,2.68770204616547e-09,-7.0069351570945e-09,-1.92804205587094e-09,-3.34562343107248e-10,-1.05322181531697e-09,-0.0799999966849622,0.000309338636770526,0.000143508284438987,-0.00028058303439548,1.24362325992736e-11,2.82157977537961e-10,-3.30922789171129e-10,-1.33066843134548e-09,1.11737875896329e-09,1.269058642894e-09,-1.34224228953675e-10,5.19549681054932e-10,-3.95516952522619e-10 +9.864,-1.45120306030205e-06,-7.07511041472125e-07,1.31144032192339e-06,-3.34585362887774e-10,-1.05299207547871e-09,-0.0799999966855953,-1.52690902456582e-09,5.70313761494364e-10,3.03513290889102e-10,5.26488574959019e-12,2.31765995284431e-10,-3.25472288009756e-10,-0.108602247065161,-0.0511231637782607,0.0994996707521801,-2.41169931247591e-09,-1.79938529354111e-08,2.14411821627106e-09 +9.866,2.68159441006721e-09,-7.00465390204852e-09,-1.92682800270738e-09,-3.34541283564249e-10,-1.05229475133584e-09,-0.0799999966862641,-0.000125070351490072,-6.09843706740329e-05,0.000117415648613196,2.78943534937101e-12,2.10182565796325e-10,-3.22346316306046e-10,5.7952503474834e-09,-4.51461784686164e-10,-5.06864515670556e-10,2.97505076129371e-10,-5.8546917316777e-10,7.86697096391435e-10 +9.868,-1.95148446626228e-06,-9.5144852416823e-07,1.78110291637612e-06,-3.34574205146376e-10,-1.05215134521552e-09,-0.0799999966868847,-1.50372802317589e-09,5.68507914355619e-10,3.0148583282642e-10,6.45490605410754e-12,2.2942411859176e-10,-3.22325499624191e-10,0.107553169726422,0.0517460411360188,-0.0973734032258619,3.14201789586229e-09,1.30568299228055e-08,4.43221848111975e-09 +9.87,2.67557949797451e-09,-7.0023798703911e-09,-1.92562205937608e-09,-3.34515463940033e-10,-1.05137705486147e-09,-0.0799999966875534,0.000305142327415761,0.000145999793870112,-0.000272077964290381,1.53575069328244e-11,2.62409885487565e-10,-3.04617442381561e-10,3.41160205553014e-08,-9.11748974923849e-09,-6.29704621776373e-09,8.87311057963049e-10,-4.7778621336847e-09,6.2450045134821e-09 +9.872,-7.30915156599374e-07,-3.67449348687848e-07,6.92791059214715e-07,-3.34512775118645e-10,-1.05110170567357e-09,-0.0799999966881032,-1.36726394095469e-09,5.32037955358669e-10,2.76297647955367e-10,1.00041502859593e-11,2.10312670057023e-10,-2.97345481570265e-10,-0.183916473943144,-0.08617411878023,0.165382708912445,-3.91830665136348e-09,-2.69380871775808e-08,-1.61502755613477e-09 +9.874,2.67011044221069e-09,-7.00025171856966e-09,-1.92451686878425e-09,-3.34475447338889e-10,-1.05053580418124e-09,-0.0799999966887428,-0.000430523568356734,-0.00019869668125077,0.000389452871359325,-3.15719672627814e-13,1.54657536777253e-10,-3.11077552606099e-10,-3.15892873924903e-08,8.28243723605308e-09,4.65632307017451e-09,-3.1029866176542e-10,4.16593842755922e-09,-5.66734159601749e-09 +9.876,-2.45300943002612e-06,-1.16223607369084e-06,2.25060254465184e-06,-3.34514037997335e-10,-1.05048307552646e-09,-0.0799999966893475,-1.49362109052464e-09,5.65167704302878e-10,2.94922940236063e-10,8.76295563889781e-12,2.26976423767258e-10,-3.20014847954333e-10,0.169851678757129,0.078303265238374,-0.154678723417252,3.55293051923424e-09,2.83540552148174e-08,-3.13204323584089e-09 +9.878,2.66413595784859e-09,-6.99799104775245e-09,-1.92333717702331e-09,-3.34440395516333e-10,-1.04962789848617e-09,-0.0799999966900229,0.000248883146671705,0.000114516379702691,-0.000229262022309617,1.38960024043076e-11,2.6807375763651e-10,-3.23605725549461e-10,8.51315545835385e-10,-6.3902876046282e-10,3.39788960856882e-10,-2.47631776195634e-10,-7.80625564189302e-12,3.13117587413748e-10 +9.88,-1.45747684333897e-06,-7.04170554879924e-07,1.33355445541307e-06,-3.34458453987718e-10,-1.04941078049592e-09,-0.0799999966906419,-1.4902158283413e-09,5.62611589261026e-10,2.96282096079491e-10,7.77242853411494e-12,2.26945198744691e-10,-3.18762377604677e-10,-0.0884212792938069,-0.0412014721730291,0.0814446670596508,-2.13761300327135e-09,-1.47299707153615e-08,1.86829718359152e-09 +9.882,2.65817509453523e-09,-6.99574060139541e-09,-1.92215204863899e-09,-3.34409305802197e-10,-1.04872011769119e-09,-0.0799999966912979,-0.000104801970503483,-5.02895089894067e-05,9.65166459289508e-05,5.34555039122312e-12,2.09153874775071e-10,-3.16132536815096e-10,3.02077698808959e-09,-9.7079462530577e-10,-4.87782557434008e-10,4.33680868985477e-11,-3.95950633416817e-10,6.29704621814831e-10 +9.884,-1.87668472535285e-06,-9.05328590837529e-07,1.71962103912883e-06,-3.34437071786153e-10,-1.04857416499682e-09,-0.0799999966919065,-1.47813272038894e-09,5.58728410759803e-10,2.94330965849756e-10,7.94590088170911e-12,2.25361396211024e-10,-3.16243559117418e-10,0.0410119871305665,0.0198799192439911,-0.0375284387796372,1.04560457514479e-09,6.20553955443664e-09,1.24032728532313e-10 +9.886,2.65226256365367e-09,-6.99350568775237e-09,-1.92097472477559e-09,-3.3437752219867e-10,-1.04781867210635e-09,-0.0799999966925629,5.92459780188377e-05,2.92301679865843e-05,-5.35971091896483e-05,9.52796869180366e-12,2.33976032992826e-10,-3.15636405900967e-10,3.00559815734655e-09,-9.93996551672885e-10,-7.21102864887592e-10,1.13624387677388e-10,-4.54063869812009e-10,6.37510877386508e-10 +9.888,-1.63970081327753e-06,-7.88407918891204e-07,1.50523260237026e-06,-3.34398959911386e-10,-1.04763826086485e-09,-0.079999996693169,-1.46611032775956e-09,5.54752424553112e-10,2.91446554390206e-10,8.40039843241861e-12,2.23545140731776e-10,-3.13693515607873e-10,-0.0204685923894131,-0.00973066122535212,0.0186148242487664,-3.79037079501016e-10,-3.74049749507581e-09,8.58688120608705e-10 +9.89,2.64639812234263e-09,-6.99128667805415e-09,-1.91980893855803e-09,-3.3434392060494e-10,-1.04692449154342e-09,-0.0799999966938177,-2.26283915388058e-05,-9.69247691481985e-06,2.08621878054089e-05,8.01182037379977e-12,2.19014043012524e-10,-3.12201653418532e-10,2.17588533996166e-09,-9.51495826573487e-10,-6.15393153102905e-10,4.74880551548756e-11,-3.74266589942076e-10,5.30825383649013e-10 +9.892,-1.73021437943274e-06,-8.27177826550479e-07,1.58868135359189e-06,-3.34366912629891e-10,-1.0467622046928e-09,-0.0799999966944178,-1.45740678639971e-09,5.50946441246819e-10,2.88984981777794e-10,8.5903506530381e-12,2.22048074372008e-10,-3.11570214073277e-10,0.00933485963292164,0.00436021108129503,-0.00873106380098536,2.14672030151192e-10,1.22514845488403e-09,3.28730098732189e-10 +9.894,2.64056849519703e-09,-6.98908289228917e-09,-1.91865299863092e-09,-3.34309559202328e-10,-1.04603629924593e-09,-0.0799999966950639,1.47110469928766e-05,7.74836741035836e-06,-1.40620673985287e-05,8.87050849440444e-12,2.2391463683206e-10,-3.10886733023604e-10,2.77259226862052e-08,-8.38131647418008e-09,-4.68429548622257e-09,2.21610924055987e-10,-3.85629028709558e-09,5.36203026424311e-09 +9.896,-1.67137019146122e-06,-7.96184356909035e-07,1.53243308399775e-06,-3.34331430595913e-10,-1.04586654614547e-09,-0.0799999966956614,-1.34650309565485e-09,5.17421175350087e-10,2.70247799832898e-10,9.47679434926234e-12,2.0662291322362e-10,-2.90122093016297e-10,-0.0390501877376439,-0.0166397678316315,0.0358509821889195,-5.30391702779041e-10,-1.06954375911125e-08,6.42888520193694e-09 +9.898,2.63518248281441e-09,-6.98701320758777e-09,-1.91757200743159e-09,-3.34271652024931e-10,-1.04520980759304e-09,-0.0799999966962244,-0.000141489703957682,-5.88107039161604e-05,0.000129341861357133,6.74894168328851e-12,1.81132886467614e-10,-2.85171192215859e-10,-2.67626903709655e-08,6.24522135389216e-09,2.86988315053848e-09,-1.64798730218812e-10,3.19536064272562e-09,-4.60222138173323e-09 +9.9,-2.23732900729188e-06,-1.03142717257365e-06,2.04980052942623e-06,-3.3430443482918e-10,-1.0451420145996e-09,-0.0799999966968021,-1.4535538571387e-09,5.42402060765653e-10,2.8172733243505e-10,8.81759942838717e-12,2.19404355794521e-10,-3.08530978543228e-10,0.0800633957994827,0.0341953322576242,-0.0746602716374509,1.17549199540852e-09,1.78919379312208e-08,-7.52089363009576e-09 +9.902,2.62936826738586e-09,-6.9848435993447e-09,-1.91644509810185e-09,-3.34236381627218e-10,-1.04433219016986e-09,-0.0799999966974586,0.000178763879240356,7.79706251143822e-05,-0.00016929922519277,1.14509096649242e-11,2.52700638192521e-10,-3.15254766736252e-10,1.93277468680902e-08,-6.54272643002224e-09,-2.24039536919326e-09,-4.55148072008536e-10,-2.48282297496799e-09,3.93782229043396e-09 +9.904,-1.52227349033054e-06,-7.19544672116157e-07,1.37260362865523e-06,-3.3425863119052e-10,-1.04413121204683e-09,-0.0799999966980631,-1.37624286966635e-09,5.16231155045567e-10,2.72765750958278e-10,6.99700714035322e-12,2.0947306389465e-10,-2.92779689381494e-10,-0.100453060909587,-0.0442883946337469,0.0928010872175627,-2.39868888640746e-09,-2.02702438167935e-08,6.99267033166406e-09 +9.906,2.62386329590719e-09,-6.98277867472452e-09,-1.91535403509802e-09,-3.34208393598656e-10,-1.04349429791428e-09,-0.0799999966986297,-0.000223048364397948,-9.91829534205858e-05,0.00020190512367744,1.85615411929539e-12,1.71619662925356e-10,-2.87284085409599e-10,-2.62985163160314e-08,6.70687463899679e-09,3.5659409453056e-09,-3.0726289568246e-10,3.37316979903765e-09,-4.68375338513841e-09 +9.908,-2.41446694792223e-06,-1.11627648579846e-06,2.1802241233649e-06,-3.34251206574043e-10,-1.04344473339513e-09,-0.0799999966992122,-1.48143693493047e-09,5.43058653601551e-10,2.87029514739499e-10,5.76795555762352e-12,2.229657430908e-10,-3.11514702922045e-10,0.113182349266644,0.0502182085331934,-0.103026619890531,1.99363095476569e-09,2.3021081568795e-08,-7.806255641862e-09 +9.91,2.61793754816747e-09,-6.98060644011012e-09,-1.91420591703906e-09,-3.34185321776426e-10,-1.04260243494192e-09,-0.0799999966998757,0.000229681032668578,0.000101689880712166,-0.000210201355884641,9.83067793835728e-12,2.63703989200526e-10,-3.18509107977043e-10,-4.66524063304115e-09,1.36631157776593e-09,2.00382245518727e-09,-5.26922255827837e-10,9.69710423070815e-10,-8.43942971062525e-10 +9.912,-1.49574281724761e-06,-7.09516962949658e-07,1.33941869982605e-06,-3.3421188386229e-10,-1.04238991743832e-09,-0.0799999967004862,-1.50009789746264e-09,5.48523899912617e-10,2.95044804560251e-10,3.66026653431147e-12,2.26844584783084e-10,-3.14890474806297e-10,-0.0814079174363139,-0.0370402721088188,0.074795574303125,-2.14325085456873e-09,-1.31825973747904e-08,1.341808608633e-09 +9.914,2.61193715657762e-09,-6.97841234451047e-09,-1.91302573782082e-09,-3.34170680710288e-10,-1.04169505660279e-09,-0.0799999967011353,-9.59506370766416e-05,-4.64712077230932e-05,8.89809413278265e-05,1.25767452008332e-12,2.10973599701371e-10,-3.13141873542512e-10,2.98775490027231e-08,-7.41030500856316e-09,-4.00113969737237e-09,2.93168267439608e-10,-3.79644232719957e-09,5.25447740876753e-09 +9.916,-1.87954536555414e-06,-8.9540179384201e-07,1.69534246513732e-06,-3.3420685316421e-10,-1.04154602303952e-09,-0.0799999967017388,-1.38058770145176e-09,5.18882679878367e-10,2.79040245770763e-10,4.83293960406977e-12,2.11658815474287e-10,-2.93872565171229e-10,0.00500082365702971,0.0045451411577545,-0.00364153072106217,7.55038392918736e-10,-3.76174785765486e-09,5.96050986345498e-09 +9.918,2.60641480577181e-09,-6.97633681379095e-09,-1.91190957683773e-09,-3.34151348951872e-10,-1.04084842134089e-09,-0.0799999967023108,-7.59473424485161e-05,-2.82906430920691e-05,7.44148184435729e-05,4.27782809175928e-12,1.95926608270746e-10,-2.89299834088684e-10,-2.2868805373852e-08,6.87752806100367e-09,2.73771890577473e-09,2.41126563161366e-10,2.92084065270009e-09,-4.31338992304991e-09 +9.92,-2.18333473534817e-06,-1.00856436621027e-06,1.99300173891158e-06,-3.34189741851842e-10,-1.04076231660644e-09,-0.079999996702896,-1.47206292294715e-09,5.46392792122379e-10,2.89991121393861e-10,5.79744585671513e-12,2.23342178085087e-10,-3.11126124863427e-10,0.0562587354097516,0.0232919251355826,-0.0530897961745981,1.07617907640935e-09,1.3686100863722e-08,-6.86083134748979e-09 +9.922,2.60052655408002e-09,-6.97415124262246e-09,-1.91074961235216e-09,-3.34128159168445e-10,-1.03995505262855e-09,-0.0799999967035553,0.000149087599190465,6.4877057450251e-05,-0.000137944366254796,8.5825443973962e-12,2.50671011725628e-10,-3.1674315947864e-10,-3.75112267636617e-09,1.40382497293454e-09,1.63725370067072e-09,-2.86446213970733e-10,8.07947458936371e-10,-7.80625564189727e-10 +9.924,-1.58698433858637e-06,-7.49056136409298e-07,1.44122427389246e-06,-3.34155411674253e-10,-1.03975963255953e-09,-0.079999996704163,-1.48706741365262e-09,5.52008092014117e-10,2.96540136196543e-10,4.65166100083232e-12,2.26573967920832e-10,-3.14248627120185e-10,-0.0521179049878126,-0.0235746948312589,0.0486266530654859,-1.32446137390895e-09,-8.53657422530778e-09,9.73179870057941e-10 +9.926,2.59457828442541e-09,-6.97194321025441e-09,-1.90956345180737e-09,-3.34109552524442e-10,-1.03904875675687e-09,-0.0799999967048123,-5.93840207607621e-05,-2.9421721874774e-05,5.65622460071259e-05,3.28469890176099e-12,2.16524714824401e-10,-3.12850439998409e-10,3.17844708885781e-09,-1.01264482910112e-10,6.98226199080432e-11,1.029992063861e-10,-2.00360561475274e-10,4.13731549020369e-10 +9.928,-1.8245204216295e-06,-8.66743023908434e-07,1.66747325792103e-06,-3.34142272878646e-10,-1.03889353370024e-09,-0.0799999967054144,-1.47435362529718e-09,5.51603034082476e-10,2.96819426676175e-10,5.06365782637686e-12,2.2577252567493e-10,-3.12593700924103e-10,0.0828088249725216,0.038882390980332,-0.07473233858559,2.41234983378114e-09,9.43689570933995e-09,4.29951213517473e-09 +9.93,2.58868086992423e-09,-6.96973679811808e-09,-1.90837617410067e-09,-3.34089297893136e-10,-1.03814566665417e-09,-0.0799999967060627,0.000271851279129288,0.000126107842046537,-0.000242367108335201,1.29340982368845e-11,2.54272297661756e-10,-2.95652391457712e-10,3.20032086770405e-08,-8.59967479177984e-09,-5.79722901631165e-09,7.76071915064388e-10,-4.47602024891322e-09,5.83214032626743e-09 +9.932,-7.37115305112467e-07,-3.62311655722342e-07,6.98004824580337e-07,-3.34090536485698e-10,-1.03787644450959e-09,-0.079999996706597,-1.34634079058903e-09,5.1720433491536e-10,2.73630510610931e-10,8.16794548663407e-12,2.07868444679279e-10,-2.89265139619036e-10,-0.172773073064236,-0.0788700246490221,0.155367724355652,-3.71404296206551e-09,-2.50268555879118e-08,-1.84921522539087e-09 +9.934,2.58329550676187e-09,-6.96766798077841e-09,-1.90728165205822e-09,-3.3405662611119e-10,-1.03731419287545e-09,-0.0799999967072197,-0.000419241013127888,-0.000189372256549657,0.000379103789087613,-1.92207361138251e-12,1.54164875310076e-10,-3.03049252359278e-10,-3.19900356206448e-08,8.39649530465601e-09,4.79878723566954e-09,-2.95987193087701e-10,4.25267460138116e-09,-5.6751478516915e-09 +9.936,-2.41407935762383e-06,-1.11980068192088e-06,2.21441998093062e-06,-3.34098224780144e-10,-1.03725978500835e-09,-0.0799999967078092,-1.4743009330716e-09,5.50790316133981e-10,2.92825659553607e-10,6.98399671428339e-12,2.24879143084802e-10,-3.11965731025799e-10,0.164971279904395,0.0744080991372632,-0.150082031527305,3.5136824005918e-09,2.76536606114214e-08,-3.14158421499468e-09 +9.938,2.57739830302958e-09,-6.96546481951388e-09,-1.90611034942001e-09,-3.34028690124333e-10,-1.03641467630311e-09,-0.0799999967084676,0.000240644106489618,0.000108260139999363,-0.000221224337021542,1.21326559909831e-11,2.64779517755749e-10,-3.15615589219255e-10,6.67570382653762e-10,-2.96854554826615e-10,4.03865309250934e-10,-1.41379963292141e-10,6.72205346941151e-11,1.96891114523415e-10 +9.94,-1.45150293166547e-06,-6.8676012192348e-07,1.32952263284455e-06,-3.3404969415618e-10,-1.03620066693733e-09,-0.0799999967090717,-1.47163065154098e-09,5.49602897914674e-10,2.94441120790611e-10,6.41847686111489e-12,2.25148025223579e-10,-3.11178166567706e-10,-0.085578549941669,-0.038990423180703,0.0789247679015125,-1.96804378349659e-09,-1.42429470995338e-08,1.70176372996791e-09 +9.942,2.57151178042342e-09,-6.96326640792222e-09,-1.90493258493685e-09,-3.34003016216888e-10,-1.03551408420222e-09,-0.0799999967097123,-0.00010167009327702,-4.77015527234316e-05,9.44747345844734e-05,4.26048085699762e-12,2.0780772935762e-10,-3.08808534299384e-10,3.02435485509335e-09,-6.34041430469363e-10,-4.6566483308242e-10,1.56775634141369e-10,-3.71230823858952e-10,5.55111512312458e-10 +9.944,-1.85818330477368e-06,-8.7756633281727e-07,1.70742157118257e-06,-3.34032652232752e-10,-1.0353694360199e-09,-0.0799999967103069,-1.45953323212061e-09,5.47066732192796e-10,2.9257846145828e-10,7.04557939768058e-12,2.23663101928142e-10,-3.08957720518455e-10,0.0397053801432268,0.0188529863658505,-0.0364305468324749,1.14231540893145e-09,6.03987346250665e-09,6.24500451008956e-11 +9.946,2.56567364749494e-09,-6.96107814099345e-09,-1.90376227109101e-09,-3.33974833899298e-10,-1.0346194317945e-09,-0.0799999967109481,5.71514272958691e-05,2.77103927399619e-05,-5.12474527454101e-05,8.82974249272292e-12,2.31967223207644e-10,-3.08558734118981e-10,3.06035036738185e-09,-7.2576493432239e-10,-7.27933338639082e-10,2.33103467083549e-10,-4.3107878380497e-10,5.3256010715906e-10 +9.948,-1.62957759559023e-06,-7.66724761857435e-07,1.50243176020096e-06,-3.33997333262781e-10,-1.03444156712706e-09,-0.0799999967115411,-1.44729183065108e-09,5.44163672455507e-10,2.89666728103724e-10,7.97799326601467e-12,2.21938786792923e-10,-3.06827480089819e-10,-0.0197166336402302,-0.00917527594006057,0.0179524741694609,-2.50884382713089e-10,-3.62947519261166e-09,8.03176969377084e-10 +9.95,2.55988448017233e-09,-6.95890148630363e-09,-1.9026036041786e-09,-3.33942921926234e-10,-1.03373167664733e-09,-0.0799999967121754,-2.1715107265078e-05,-8.99071102029263e-06,2.05624439324573e-05,7.82620496187023e-12,2.17449322437193e-10,-3.05346026241471e-10,2.22494548810595e-09,-7.47665818085754e-10,-6.68735899957054e-10,1.5330618719037e-10,-3.7816971773839e-10,5.04804531475302e-10 +9.952,-1.71643802465054e-06,-8.02687605938601e-07,1.58468153593078e-06,-3.33966028442934e-10,-1.03357176983732e-09,-0.0799999967127625,-1.43839204869866e-09,5.41173009183164e-10,2.86991784503897e-10,8.59121801477608e-12,2.20426107921969e-10,-3.04808261963918e-10,0.00898889540373461,0.00410135379499535,-0.00850264979441944,3.04010289165002e-10,1.1869845384374e-09,3.03576608296001e-10 +9.954,2.55413091197754e-09,-6.95673679426689e-09,-1.90145563704058e-09,-3.33908557054174e-10,-1.03284997221564e-09,-0.0799999967133947,1.42404743498565e-05,7.41470415968696e-06,-1.34481552452167e-05,9.0422461185301e-12,2.22197260590942e-10,-3.04131719808287e-10,2.74512129607639e-08,-8.08099247240523e-09,-4.66337038429567e-09,3.08347097854945e-10,-3.82940207321964e-09,5.19289472533771e-09 +9.956,-1.65947612725112e-06,-7.73028789299857e-07,1.53088891494992e-06,-3.33929859458459e-10,-1.03268298079495e-09,-0.079999996713979,-1.32858719685561e-09,5.08849039293547e-10,2.68338302966716e-10,9.82460640619573e-12,2.05108499629092e-10,-2.8403668306257e-10,-0.0387604782858618,-0.0161377981271079,0.0357714317434656,-4.63388008521205e-10,-1.0640793801664e-08,6.23980034312094e-09 +9.958,2.54881656319011e-09,-6.95470139810972e-09,-1.90038228382872e-09,-3.3386925862855e-10,-1.03202953821713e-09,-0.0799999967145308,-0.000140801438793574,-5.71364883487375e-05,0.00012963757172863,7.18869408444549e-12,1.7963408538429e-10,-2.79172518435806e-10,-2.65018855385237e-08,6.10102246500906e-09,2.72937054901439e-09,-1.01481323344621e-10,3.15112519411117e-09,-4.46170878021135e-09 +9.96,-2.2226818824256e-06,-1.00157474269488e-06,2.04943920186461e-06,-3.33901104682122e-10,-1.03196444445341e-09,-0.0799999967150957,-1.43459473900974e-09,5.33253129153591e-10,2.79255785162777e-10,9.41868111281711e-12,2.17713000405541e-10,-3.01883518183421e-10,0.133641650228549,0.0575306126756874,-0.122833183816627,2.75669244376305e-09,2.29434526932942e-08,-3.24046345315637e-09 +9.962,2.54307818423408e-09,-6.95256838559311e-09,-1.89926526068807e-09,-3.33831583904098e-10,-1.03115868621551e-09,-0.0799999967157383,0.000393765162120564,0.000172985962353987,-0.000361695163537823,1.82154638594965e-11,2.71407896157457e-10,-2.9213437224843e-10,4.71601924180542e-08,-1.45630035808812e-08,-7.50387165601875e-09,4.81385764572999e-11,-6.50217726885279e-09,9.07433850286617e-09 +9.964,-6.47621233943515e-07,-3.09630893279011e-07,6.02658547713478e-07,-3.33828242826684e-10,-1.03087881286879e-09,-0.0799999967162643,-1.24595396933755e-09,4.75001114830073e-10,2.49240298538705e-10,9.61123541864629e-12,1.91704291330133e-10,-2.6558616417196e-10,-0.262371148152685,-0.114561839893004,0.236804316879243,-6.18212078751096e-09,-4.30666786954596e-08,4.42527958721584e-09 +9.966,2.53809436835672e-09,-6.95066838113378e-09,-1.89826829949391e-09,-3.33793138962424e-10,-1.03039186905018e-09,-0.0799999967168007,-0.000655719430490527,-0.000285261397218181,0.000585522103979468,-6.51301929055564e-12,9.91411813755614e-11,-2.74433253899561e-10,-6.09559332264688e-08,1.53321366020426e-08,8.88753046854506e-09,-8.79721642753865e-10,7.96715124431552e-09,-1.06529368660054e-08 +9.968,-3.27049895590533e-06,-1.45067648215161e-06,2.94474696363109e-06,-3.33854294903846e-10,-1.03048224814328e-09,-0.079999996717362,-1.4897777022434e-09,5.36329661238236e-10,2.84790420412882e-10,6.09234884763122e-12,2.23572896307392e-10,-3.08197911635977e-10,0.290788054096854,0.125878934929548,-0.261444396649409,5.55024776138902e-09,5.28878156547236e-08,-1.14751957935891e-08 +9.97,2.53213525754775e-09,-6.94852306248883e-09,-1.89712913781226e-09,-3.33768769567033e-10,-1.02949757746496e-09,-0.0799999967180335,0.000507432785896762,0.000218254342499956,-0.000460255482618055,1.5687971754998e-11,3.10692443994432e-10,-3.20334037073912e-10,-5.94698444135588e-09,1.67856180344242e-09,3.00031267191979e-09,-8.84925813182864e-10,1.3383391617164e-09,-1.11282510983936e-09 +9.972,-1.24076781231851e-06,-5.77659112151879e-07,1.10372503315907e-06,-3.33791543016826e-10,-1.02923947836731e-09,-0.0799999967186433,-1.51356564000882e-09,5.43043908452005e-10,2.9679167110056e-10,2.55264559490015e-12,2.28926252954257e-10,-3.12649212075334e-10,-0.109575305508839,-0.0475449332545481,0.101537319199218,-2.70183181383501e-09,-2.14333759074611e-08,6.66047078604702e-09 +9.974,2.52608099498772e-09,-6.94635088685502e-09,-1.89594197112786e-09,-3.33758558984654e-10,-1.02858187245314e-09,-0.0799999967192841,6.91315638614553e-05,2.8074609481785e-05,-5.41062058212291e-05,4.88064449965912e-12,2.24958940364597e-10,-2.93692153929727e-10,3.32608560919054e-08,-7.97539118080159e-09,-4.85787625403746e-09,5.04804531509138e-10,-4.32249722126424e-09,5.73673053505402e-09 +9.976,-9.64241556872594e-07,-4.65360674224702e-07,8.87300209874084e-07,-3.33772020438827e-10,-1.02833964260585e-09,-0.0799999967198181,-1.38052221564115e-09,5.11142343728788e-10,2.77360166084403e-10,4.57186372093738e-12,2.11636264069194e-10,-2.89702289935111e-10,-0.102877312027382,-0.0446882926134916,0.090137337808248,-2.09858172506286e-09,-1.37168922053957e-08,-2.53963516886321e-09 +9.978,2.52055890612515e-09,-6.94430631748011e-09,-1.89483253046352e-09,-3.3374027152977e-10,-1.02773532739686e-09,-0.0799999967204429,-0.000342377684248027,-0.000150678560972162,0.000306443145411723,-3.51368240059141e-12,1.70091371543021e-10,-3.03850694605179e-10,-2.79377757905556e-08,8.76685876665909e-09,4.8407458596814e-09,-1.27502175484774e-10,4.00287442079209e-09,-5.37243860506681e-09 +9.98,-2.33375229386455e-06,-1.06807491811328e-06,2.11307279152084e-06,-3.3378607516843e-10,-1.02765927711967e-09,-0.0799999967210335,-1.49227331880336e-09,5.46209778795421e-10,2.96723149523127e-10,4.06185501899834e-12,2.2764776175236e-10,-3.11192044355376e-10,0.136320995788621,0.0601761572943276,-0.121735985736041,3.05636592423595e-09,2.25219148886018e-08,-2.43641912200888e-09 +9.982,2.51458981284994e-09,-6.94212147836493e-09,-1.89364563786543e-09,-3.33724024109694e-10,-1.02682473634985e-09,-0.0799999967216877,0.000202906298906641,9.00260682052292e-05,-0.000180500797532602,8.71178129635648e-12,2.60179031097458e-10,-3.13596371093218e-10,4.19678397920075e-09,2.01878444577492e-10,3.41090003496961e-10,8.23993651093675e-11,-2.15539391864894e-10,4.11996825510041e-10 +9.984,-1.52212709823808e-06,-7.07970645292405e-07,1.39106960139052e-06,-3.33751228043244e-10,-1.02661856099528e-09,-0.0799999967222879,-1.47548618288656e-09,5.47017292573731e-10,2.98087509537114e-10,4.39145247943577e-12,2.26785604184901e-10,-3.09544057053336e-10,-0.0710040796982714,-0.0318541740138082,0.0648510357399725,-1.41033018596945e-09,-1.20259704972119e-08,1.59594559789902e-09 +9.986,2.50868786811839e-09,-6.93993340919463e-09,-1.89245328782728e-09,-3.33706458299776e-10,-1.02591759393311e-09,-0.0799999967229258,-8.11100198864136e-05,-3.73906278499897e-05,7.89033454272597e-05,3.07046055247929e-12,2.12075149108616e-10,-3.07212588701622e-10,5.36539129098023e-09,-3.02058725254546e-10,-4.86698355228848e-10,3.41957365202003e-10,-5.38197958421922e-10,6.23633089613795e-10 +9.988,-1.8465671777837e-06,-8.57533156692347e-07,1.70668298309952e-06,-3.33738946201034e-10,-1.02577026039885e-09,-0.0799999967235167,-1.45402461772264e-09,5.45809057672713e-10,2.96140716116199e-10,5.75928194024363e-12,2.24632812351213e-10,-3.07049524694881e-10,0.0327043751137277,0.015225589049956,-0.0304320517595356,1.13190706807427e-09,4.82513334840486e-09,2.60208521430568e-10 +9.99,2.5028717696475e-09,-6.93775017296394e-09,-1.89126872496281e-09,-3.33683421172015e-10,-1.02501906268371e-09,-0.079999996724154,4.97074805684829e-05,2.35117283498278e-05,-4.28248616108694e-05,7.59808882477588e-12,2.31375682502233e-10,-3.061717546159e-10,4.34418126471393e-09,-5.94576471390904e-10,-7.69349861595547e-10,3.46727854760787e-10,-5.23886489744879e-10,7.06032454722402e-10 +9.992,-1.6477372555097e-06,-7.63486243293005e-07,1.53538353665598e-06,-3.33708553845735e-10,-1.02484475766884e-09,-0.0799999967247414,-1.43664789266378e-09,5.43430751787148e-10,2.93063316669816e-10,7.14619335928724e-12,2.22537266392233e-10,-3.0422539487599e-10,-0.0164505410653448,-0.00754910077678433,0.0147926780724886,-7.26415455557011e-11,-3.16066617320475e-09,8.38738800600977e-10 +9.994,2.49712517807685e-09,-6.93557644995679e-09,-1.89009647169613e-09,-3.33654836398578e-10,-1.02412891361814e-09,-0.0799999967253709,-1.60946836928891e-05,-6.68467475730618e-06,1.63458506790785e-05,7.3075226425531e-12,2.18733017809416e-10,-3.02816799413497e-10,2.83833286735042e-09,-8.52399748008301e-10,-7.83010808969195e-10,2.42861286636806e-10,-4.6013540200295e-10,5.76795555762416e-10 +9.996,-1.71211599028125e-06,-7.90224942322226e-07,1.60076693937229e-06,-3.33679323755165e-10,-1.0239698255976e-09,-0.0799999967259527,-1.42529456119438e-09,5.40021152795115e-10,2.8993127343394e-10,8.11763850583436e-12,2.20696724784222e-10,-3.01918212652941e-10,0.00732217591366343,0.00332702138517129,-0.0072521822408049,3.52365706057867e-10,8.59989163215694e-10,4.44956571588152e-10 +9.998,2.49142399983207e-09,-6.93341636534561e-09,-1.8889367466024e-09,-3.33622365844555e-10,-1.023246126719e-09,-0.0799999967265786,1.31940199617614e-05,6.62341078337753e-06,-1.26628782841379e-05,8.71698546678442e-12,2.22172974462278e-10,-3.01036973127144e-10,1.55284856170027e-09,-1.03107626609344e-09,-7.14055550830982e-10,1.23165366793425e-10,-3.37403716101915e-10,4.90059381996861e-10 +10,-1.65933991043421e-06,-7.63731299188719e-07,1.55011542623575e-06,-3.33644455813298e-10,-1.02308113369975e-09,-0.0799999967271568,-1.41908316694758e-09,5.35896847730742e-10,2.87075051230616e-10,8.61029997300801e-12,2.19347109919814e-10,-2.99957975124953e-10,-0.00393521639135452,-0.00179017022256285,0.0034030425065339,-1.90819582357405e-11,-9.1896976139851e-10,5.31692745386766e-10 +10.002,2.48574766716428e-09,-6.93127277795469e-09,-1.88778844639748e-09,-3.33587924644663e-10,-1.02236873827932e-09,-0.0799999967277784,-2.546845603662e-06,-5.37270106876268e-07,9.49291742002277e-07,8.64065763384143e-12,2.18497095416683e-10,-2.98910202145597e-10,7.05517458533233e-10,-1.06056656506606e-09,-6.34691951741289e-10,2.10335221471795e-11,-2.71484223966076e-10,4.50160741982776e-10 +10.004,-1.66952729284886e-06,-7.65880379616224e-07,1.55391259320375e-06,-3.33609893182762e-10,-1.02220714531809e-09,-0.0799999967283525,-1.41626109711345e-09,5.31654581470478e-10,2.84536283423651e-10,8.69443406159672e-12,2.1826117302395e-10,-2.98157332157023e-10,0.0602819398531471,0.0268423571605565,-0.0547544677818399,1.658178802598e-09,6.04594499462255e-09,4.25614404834133e-09 +10.006,2.48008262277583e-09,-6.92914615962881e-09,-1.88665030126378e-09,-3.33553146908416e-10,-1.02149569358723e-09,-0.0799999967289711,0.0002385809138089,0.000106832158535338,-0.000218068579385333,1.52733728442327e-11,2.4268087539517e-10,-2.81885625952233e-10,2.80006866217673e-08,-9.06349648110778e-09,-5.69195298533037e-09,4.10262102068423e-10,-4.19412768404199e-09,5.51902273881898e-09 +10.008,-7.15203637612939e-07,-3.3855174547473e-07,6.8163827566213e-07,-3.33548799691386e-10,-1.02123642181651e-09,-0.07999999672948,-1.30425835062634e-09,4.95400595546035e-10,2.61768471482322e-10,1.0335482469871e-11,2.01484662287776e-10,-2.76081241201739e-10,-0.161431659900501,-0.0709513363402386,0.145711973916035,-3.88751530966318e-09,-2.3124731296487e-08,-2.00187089130898e-09 +10.01,2.47486558937332e-09,-6.92716455724662e-09,-1.88560322737785e-09,-3.33511804978537e-10,-1.02068975493808e-09,-0.0799999967300754,-0.000407145725793034,-0.000176973186825585,0.000364779316278744,-2.76688394418331e-13,1.50181950209233e-10,-2.89893109517468e-10,-3.45003431205602e-08,7.84398587749984e-09,4.98158372192024e-09,-6.61146484781806e-10,4.45823933326138e-09,-5.73152636462864e-09 +10.012,-2.3437865407849e-06,-1.04644449277699e-06,2.14075554077695e-06,-3.33549906444963e-10,-1.02063569401567e-09,-0.0799999967306396,-1.44225972310857e-09,5.26776539056031e-10,2.81694806370001e-10,7.69089653074402e-12,2.1931761962082e-10,-2.99007346660251e-10,0.158946358530469,0.068952252127196,-0.144018953823884,3.05029439207139e-09,2.69471944758297e-08,-3.26648430526504e-09 +10.014,2.46909655048089e-09,-6.9250574510904e-09,-1.88447644815237e-09,-3.33481041392414e-10,-1.01981248445959e-09,-0.0799999967312714,0.000228639708328772,9.88358216831684e-05,-0.000211296499016729,1.19244891738659e-11,2.57970728112539e-10,-3.02959046738527e-10,-1.2913932074871e-09,-2.3939183974322e-10,8.24102071274774e-10,-4.69242700252475e-10,3.1094918304443e-10,-6.5052130315921e-11 +10.016,-1.42922770746991e-06,-6.51101206044363e-07,1.29556954471012e-06,-3.33502208488268e-10,-1.01960381110322e-09,-0.0799999967318514,-1.44742529593851e-09,5.25818971697058e-10,2.849912146551e-10,5.81392572973433e-12,2.20561416352997e-10,-2.99267555181515e-10,-0.018664854903941,-0.00790155051718328,0.0191618914119211,-4.51895465491857e-10,-6.78710559975775e-09,5.21804821573706e-09 +10.018,2.46330684929713e-09,-6.92295417520361e-09,-1.88333648329375e-09,-3.33457785689495e-10,-1.01893023879418e-09,-0.0799999967324685,0.000153980288712983,6.72296196144247e-05,-0.00013464893336902,1.01169073118979e-11,2.30822305713499e-10,-2.82086853875572e-10,2.96051161015178e-08,-8.26574052253844e-09,-5.11136272193514e-09,3.84891771233084e-10,-4.14815751190597e-09,5.40453098937372e-09 +10.02,-8.13306552618041e-07,-3.82182727586694e-07,7.56973811234102e-07,-3.3346174085902e-10,-1.01868052188037e-09,-0.0799999967329798,-1.32900483153246e-09,4.92756009606908e-10,2.64545763767361e-10,7.35349281466649e-12,2.03968786305375e-10,-2.77649431224022e-10,-0.0568219659708922,-0.024484272936585,0.050407497998376,-1.07748011901698e-09,-9.6533024629654e-09,1.22037796538073e-09 +10.022,2.457990829971e-09,-6.92098315116518e-09,-1.88227830023868e-09,-3.33428371718236e-10,-1.01811436364896e-09,-0.0799999967335791,-7.33075751705602e-05,-3.07074721319045e-05,6.6981058624462e-05,5.80698683583042e-12,1.92209095861642e-10,-2.77205342014049e-10,-4.19442583963942e-09,4.926614671773e-10,1.22514845490821e-11,-4.33680868994103e-11,3.51281503885225e-10,-5.39499001028672e-10 +10.024,-1.10653685330038e-06,-5.05012616114353e-07,1.02489804573204e-06,-3.33438512911677e-10,-1.01791168549692e-09,-0.0799999967340886,-1.34578253489102e-09,4.94726655475618e-10,2.64594769705558e-10,7.1800204670688e-12,2.05373912320917e-10,-2.79807427228138e-10,-0.0510393592576971,-0.0223105784192403,0.0436068393323003,-1.6850670164767e-09,-3.84067777579216e-09,-4.81732709281944e-09 +10.026,2.45260769983144e-09,-6.91900424454328e-09,-1.88121992115986e-09,-3.33399651636368e-10,-1.01729286799968e-09,-0.0799999967346983,-0.000277465012201326,-0.000119949785808856,0.000241408415953644,-9.33281230075625e-13,1.76846384758475e-10,-2.96474650385325e-10,-3.35257266826584e-08,8.98131395643739e-09,6.26083386523617e-09,-8.37871438896982e-10,4.79260728325598e-09,-5.96658139562354e-09 +10.028,-2.21639690210556e-06,-9.84811759349724e-07,1.99053170954651e-06,-3.33442246036597e-10,-1.01720429995789e-09,-0.0799999967352745,-1.47988544162164e-09,5.30651911301364e-10,2.89638105166499e-10,3.82853471148123e-12,2.24544341453939e-10,-3.03673752810629e-10,0.165221962307236,0.0714142831101454,-0.145351217503361,3.45968913240201e-09,2.40480378666028e-08,1.44242257027504e-09 +10.03,2.44668815806495e-09,-6.91688163689808e-09,-1.88006136873919e-09,-3.33384337497522e-10,-1.01639469063386e-09,-0.079999996735913,0.000383422837027546,0.000165707346631694,-0.000339996454059736,1.29054752995309e-11,2.73038536224876e-10,-2.90704960104225e-10,2.97207191584708e-08,-7.47470661760679e-09,-4.00081443672003e-09,2.05131051033786e-10,-3.7981770506753e-09,5.14518982977978e-09 +10.032,-6.8270555399555e-07,-3.21982372823021e-07,6.30545893307716e-07,-3.33390624135399e-10,-1.01611214581299e-09,-0.0799999967364373,-1.36100256498777e-09,5.0075308483094e-10,2.73634847419621e-10,4.64905891561629e-12,2.09351633251239e-10,-2.83092993491513e-10,-0.209416879870052,-0.0911232949966111,0.187143045167049,-4.85852677534095e-09,-3.07709586977387e-08,-1.30624677741024e-09 +10.034,2.441244147805e-09,-6.91487862455875e-09,-1.87896682934952e-09,-3.3336574126186e-10,-1.01555728410085e-09,-0.0799999967370454,-0.000454244682452944,-0.000198785833354872,0.000408575726608712,-6.52863180183943e-12,1.4995470143388e-10,-2.95929947213868e-10,-2.90564555924432e-08,8.74972837245004e-09,5.21674717316278e-09,-3.03576608295492e-10,4.17764781104531e-09,-5.4166740537702e-09 +10.036,-2.49968428380713e-06,-1.11712570624242e-06,2.26484879974238e-06,-3.33416738662606e-10,-1.01551232700725e-09,-0.079999996737621,-1.47722838735753e-09,5.35751998320736e-10,2.9450183611227e-10,3.43475248243446e-12,2.26062224495418e-10,-3.04759689706591e-10,0.179668664424079,0.0784460210750397,-0.16129726731433,3.99441764387093e-09,2.9744002399944e-08,-3.06178693506553e-09 +10.038,2.43533523425557e-09,-6.91273561656547e-09,-1.87778882200507e-09,-3.3335200225193e-10,-1.01465303520287e-09,-0.0799999967382644,0.000264429975243293,0.000114998250945252,-0.000236613342648539,9.44903877364251e-12,2.68930711033643e-10,-3.08177094954129e-10,3.85062533074433e-09,2.89481980053559e-10,4.99817201515715e-10,5.8330076879707e-11,-1.20563281580361e-10,3.28730098697534e-10 +10.04,-1.4419643828336e-06,-6.57132702461261e-07,1.31839542914791e-06,-3.33378942507512e-10,-1.01443660416312e-09,-0.0799999967388537,-1.46182588603455e-09,5.36909926240951e-10,2.96501104918334e-10,3.66807278995336e-12,2.25579971369097e-10,-3.034447693118e-10,-0.0930769785250001,-0.0409068959946916,0.0851488158457439,-1.92532621789913e-09,-1.56142460072408e-08,1.84487841666752e-09 +10.042,2.42948793071143e-09,-6.9105879768605e-09,-1.87660281758539e-09,-3.3333732996077e-10,-1.0137507153174e-09,-0.0799999967394782,-0.000107877938856667,-4.86293330334964e-05,0.000103981920734399,1.74773390204683e-12,2.06473727004686e-10,-3.0079758128746e-10,5.54390517867998e-09,-2.05781572337797e-10,-4.72061625900292e-10,3.82289686018473e-10,-5.33861149731979e-10,6.21898366137818e-10 +10.044,-1.87347613826022e-06,-8.51650034595225e-07,1.73432311208546e-06,-3.33371951571904e-10,-1.0136107092551e-09,-0.0799999967400569,-1.43965026531983e-09,5.360867999516e-10,2.94612858414733e-10,5.19723153402709e-12,2.23444526770169e-10,-3.00957175847249e-10,0.0427248228739417,0.0194435651132201,-0.0396775574286468,1.42897846333621e-09,6.44363035151727e-09,1.38777878078173e-10 +10.046,2.42372932965015e-09,-6.9084436296607e-09,-1.87542436615173e-09,-3.33316541034634e-10,-1.01285693721032e-09,-0.079999996740682,6.3021352639081e-05,2.91449274193755e-05,-5.47283089801708e-05,7.46364775539103e-12,2.32248248410752e-10,-3.00242469775147e-10,4.637105586825e-09,-5.25621213280381e-10,-7.94828612681665e-10,3.9746851643252e-10,-5.65086172324129e-10,6.704706234983e-10 +10.048,-1.62139072770393e-06,-7.35070324917736e-07,1.5154098761648e-06,-3.33342096980882e-10,-1.01268171626145e-09,-0.0799999967412579,-1.42110184297253e-09,5.33984315098478e-10,2.91433543964006e-10,6.78710559975699e-12,2.21184182080873e-10,-2.98275293353256e-10,-0.0212776253823736,-0.00956275951913757,0.0192870981087111,-1.42897846333558e-10,-3.97425148346198e-09,8.97719398817801e-10 +10.05,2.41804492227826e-09,-6.9063076924003e-09,-1.87425863197588e-09,-3.33289392612235e-10,-1.01197220048199e-09,-0.0799999967418751,-2.20891488904418e-05,-9.10611065718759e-06,2.24200834546992e-05,6.89205637005661e-12,2.16351242476899e-10,-2.96651592179875e-10,3.04975229082739e-09,-7.77589798047494e-10,-8.06321155645285e-10,2.94252469613384e-10,-4.68375338489284e-10,6.05418493082924e-10 +10.052,-1.70974732326568e-06,-7.71494767546482e-07,1.60509020998359e-06,-3.33314528755402e-10,-1.01181631129155e-09,-0.0799999967424445,-1.40890283380922e-09,5.30873955906289e-10,2.88208259341425e-10,7.9641154782104e-12,2.19310680726916e-10,-2.95853619380925e-10,0.0676578550361102,0.0296432760445368,-0.0626677838476304,2.08253553290893e-09,7.22815904350073e-09,4.2032349823238e-09 +10.054,2.41240931094303e-09,-6.90418419657668e-09,-1.87310579893851e-09,-3.33257536150322e-10,-1.01109495775908e-09,-0.0799999967430585,0.000248542271253969,0.000109466993520947,-0.000228251051935795,1.52221985016914e-11,2.45263878650899e-10,-2.79838652250581e-10,2.91202066800213e-08,-8.88048315439226e-09,-5.84200656600234e-09,6.01298524860326e-10,-4.30514998650447e-09,5.5242269092469e-09 +10.056,-7.15578238249474e-07,-3.33626793462549e-07,6.92086002240105e-07,-3.33253639961395e-10,-1.01083525577694e-09,-0.0799999967435639,-1.2924220070891e-09,4.95352023288708e-10,2.64840233077408e-10,1.03693095776525e-11,2.02090080780892e-10,-2.7375671174393e-10,-0.163782732638579,-0.0708656280367197,0.149476678617662,-3.81378956193416e-09,-2.38455089007552e-08,-1.73819292296022e-09 +10.058,2.40723962291467e-09,-6.90220278848352e-09,-1.8720464380062e-09,-3.33216058912011e-10,-1.01028659743596e-09,-0.0799999967441536,-0.000406588659300273,-0.000173995518625901,0.000369655662534787,-3.2959746043563e-14,1.49881843047889e-10,-2.86791423942421e-10,-3.35123367858283e-08,7.52262835357508e-09,4.64819155388088e-09,-5.23019128007123e-10,4.28259858131869e-09,-5.43662337371252e-09 +10.06,-2.34193287545039e-06,-1.02960886796608e-06,2.17070865237909e-06,-3.33253771800379e-10,-1.01023572840475e-09,-0.079999996744711,-1.4264713542324e-09,5.25442536703005e-10,2.8343299929293e-10,8.27723306562425e-12,2.19220475106165e-10,-2.95503205238778e-10,0.159109518203226,0.0679632413359635,-0.146367396325114,3.20880474968881e-09,2.70924775669427e-08,-3.09301195766732e-09 +10.062,2.40153373749774e-09,-6.90010101833671e-09,-1.87091270600903e-09,-3.33182949979749e-10,-1.00940971553554e-09,-0.0799999967453356,0.000229849413512562,9.78574467179232e-05,-0.000215813922765605,1.28022592527102e-11,2.58251753315648e-10,-2.99163471773089e-10,-1.04059013993867e-09,-5.63134608447194e-10,5.10117122122846e-10,-3.76434994287802e-10,2.01661604057918e-10,6.76542155958929e-11 +10.064,-1.42253522140024e-06,-6.38179081094425e-07,1.30745296131676e-06,-3.33202562763368e-10,-1.00920272139149e-09,-0.0799999967459077,-1.43063371479215e-09,5.23189998269216e-10,2.85473467781421e-10,6.77149308847321e-12,2.20027121522397e-10,-2.95232588376394e-10,-0.0821143080086682,-0.0353815201544456,0.0765007507195225,-2.12698782198159e-09,-1.3681764055026e-08,1.47711703979391e-09 +10.066,2.39581120263857e-09,-6.89800825834364e-09,-1.86977081213791e-09,-3.33155864007395e-10,-1.00852960704945e-09,-0.0799999967465165,-9.86078185222206e-05,-4.36686338999063e-05,9.01890801125872e-05,4.29430796478106e-12,2.03524697095525e-10,-2.93255003613912e-10,1.87542581275271e-09,-6.77409517311012e-10,-2.82000985031845e-10,-2.79724160493805e-11,-2.48932818778297e-10,4.07660016821869e-10 +10.068,-1.81696649548908e-06,-8.12853616694031e-07,1.66820928176707e-06,-3.33185385531509e-10,-1.00838862260311e-09,-0.0799999967470807,-1.42313201154114e-09,5.20480360199973e-10,2.84345463841294e-10,6.6596034242757e-12,2.19031390247284e-10,-2.93601948309107e-10,0.0380166745069402,0.017110352655993,-0.0346585667024692,9.36967517461287e-10,5.8637990296467e-09,3.25573119222079e-20 +10.07,2.39011867459241e-09,-6.89592633690284e-09,-1.86863343028254e-09,-3.33129225593698e-10,-1.00765348148846e-09,-0.0799999967476909,5.34588795055236e-05,2.4772776724058e-05,-4.84451866972745e-05,8.04217803462579e-12,2.2697989321411e-10,-2.93255003613781e-10,2.4378285848331e-09,-6.00648003556821e-10,-4.96456174780998e-10,7.8279396853436e-11,-3.42607886505344e-10,4.6403852982368e-10 +10.072,-1.60313097746691e-06,-7.13762509797766e-07,1.47442853497791e-06,-3.33153216819371e-10,-1.00748070303025e-09,-0.0799999967482537,-1.41338069720181e-09,5.18077768185744e-10,2.82359639142169e-10,6.97272101168954e-12,2.17660958701262e-10,-2.91745794189812e-10,-0.0186781429536946,-0.00825359605855721,0.0171664913610031,-3.6407508951982e-10,-3.37967501204736e-09,6.4184768607901e-10 +10.074,2.3844651518036e-09,-6.89385402583009e-09,-1.86750399172597e-09,-3.33101334709651e-10,-1.00678283765365e-09,-0.0799999967488579,-2.12536923092467e-05,-8.24160751016719e-06,2.02207787467304e-05,6.58587767654667e-12,2.13461193165922e-10,-2.90687612869466e-10,2.75426112039045e-08,-7.54778184397675e-09,-4.44761415197102e-09,3.10732342634414e-10,-3.77389092198837e-09,4.91100216049142e-09 +10.076,-1.68814574670389e-06,-7.46728939838431e-07,1.55531164996482e-06,-3.33126873308665e-10,-1.00662685825759e-09,-0.0799999967494165,-1.3032102523862e-09,4.87886640809841e-10,2.64569182534287e-10,8.21565038222706e-12,2.0256539501331e-10,-2.72101785547848e-10,-0.0251307954435874,-0.00941214373258898,0.0233316546366301,-1.47668335892558e-10,-8.36136715421005e-09,5.79137432454984e-09 +10.078,2.37925231079406e-09,-6.89190247926685e-09,-1.86644571499583e-09,-3.33068472108122e-10,-1.0059725760736e-09,-0.0799999967499463,-0.000121776874083585,-4.5890182440519e-05,0.000113547397293241,5.99520433297651e-12,1.80015724549085e-10,-2.67522115571269e-10,-2.53753723761125e-08,6.09408357105097e-09,2.74704304439653e-09,-8.13151629373067e-11,3.0613532542069e-09,-4.22578638744834e-09 +10.08,-2.17525324303818e-06,-9.30289669600487e-07,2.00950123913773e-06,-3.33102892491333e-10,-1.00590679535939e-09,-0.0799999967504866,-1.40471174189064e-09,5.12262975094042e-10,2.75557354711872e-10,7.89038973047787e-12,2.14810808030136e-10,-2.8900493109764e-10,0.0725136944887265,0.0284355630259687,-0.0684129342141372,1.14470065370994e-09,1.65917626859765e-08,-6.92414875435988e-09 +10.082,2.37363346382649e-09,-6.88985342736648e-09,-1.86534348557699e-09,-3.330369105492e-10,-1.00511333284148e-09,-0.0799999967511023,0.000168277903871418,6.78520696633938e-05,-0.0001601043395634,1.05740069478178e-11,2.46382775293013e-10,-2.95218710588718e-10,-6.28501157383856e-09,1.20216336890908e-09,1.97639214025486e-09,-6.27753057868369e-10,1.09504419423445e-09,-9.5062846486759e-10 +10.084,-1.50214162755258e-06,-6.58881390946942e-07,1.36908388088421e-06,-3.33060596463541e-10,-1.00492126425822e-09,-0.0799999967516674,-1.42985178818599e-09,5.17071628569678e-10,2.8346292327289e-10,5.37937749900467e-12,2.19190984807074e-10,-2.92807444957109e-10,-0.0600046804310928,-0.0252265464062708,0.0565183856456267,-1.86699614102079e-09,-9.64506252645625e-09,8.10983225051752e-10 +10.086,2.36791405667375e-09,-6.8877851408522e-09,-1.8642096338839e-09,-3.33015393039204e-10,-1.00423656890225e-09,-0.0799999967522736,-7.1740817852927e-05,-3.30541159616782e-05,6.5969203019082e-05,3.10602238373544e-12,2.07802525187192e-10,-2.91974777688511e-10,1.24482672433897e-09,-2.81892564846137e-12,5.58472539047161e-10,-2.01661604082259e-10,5.11743425413052e-11,1.11022302462491e-10 +10.088,-1.78910489896439e-06,-7.91097854793699e-07,1.63296069296062e-06,-3.33048172374006e-10,-1.00409005415747e-09,-0.0799999967528353,-1.42487248128863e-09,5.17060352867084e-10,2.8569681342908e-10,4.57273108267537e-12,2.19395682177239e-10,-2.92363355747259e-10,0.027967294552199,0.0126690443795476,-0.0250790892024846,6.0346692920591e-10,4.40402922466016e-09,-6.5919492119554e-11 +10.09,2.36221456674859e-09,-6.88571689944073e-09,-1.86306684663018e-09,-3.32997102114874e-10,-1.00335898617354e-09,-0.079999996753443,4.01283603558567e-05,1.76220615565068e-05,-3.43471537908455e-05,5.51989010055881e-12,2.25418642085831e-10,-2.92238455656989e-10,2.72975001977599e-09,-9.77950359582291e-11,-3.61039323437842e-11,6.59194920871332e-11,-1.96457433654421e-10,3.18321757841818e-10 +10.092,-1.62859145754098e-06,-7.20609608567679e-07,1.49557207779726e-06,-3.33026092813604e-10,-1.00318837958913e-09,-0.0799999967540043,-1.41395348120953e-09,5.16669172723251e-10,2.85552397699705e-10,4.83640905102387e-12,2.18609852442621e-10,-2.91090068715892e-10,-0.0136352259741345,-0.00583656739150351,0.0125236582763298,-1.88651178012519e-10,-2.49886916714514e-09,5.37764277552934e-10 +10.094,2.35655875282376e-09,-6.88365022274984e-09,-1.86192463703938e-09,-3.3297775647867e-10,-1.00248454676377e-09,-0.0799999967546074,-1.44125435406751e-05,-5.7242080095047e-06,1.57474793144683e-05,4.76528538850881e-12,2.15423165417252e-10,-2.90087398546778e-10,2.67320887663663e-09,-1.71520783744534e-10,-2.34729770374751e-10,1.52005144581897e-10,-2.6411164924168e-10,3.46944695227595e-10 +10.096,-1.68624163170367e-06,-7.43506440605696e-07,1.55856199505512e-06,-3.3300703167205e-10,-1.00232668692746e-09,-0.0799999967551646,-1.40326064570298e-09,5.15983089588273e-10,2.84613478618206e-10,5.44442962935139e-12,2.17553405845655e-10,-2.89702289934982e-10,0.00624515964327614,0.00270150853206733,-0.0059383876222416,2.91650384398535e-10,8.03610650246078e-10,2.16840434497054e-10 +10.098,2.35094571024094e-09,-6.88158629039148e-09,-1.86078618312491e-09,-3.32955978760152e-10,-1.00161433314039e-09,-0.0799999967557662,1.05680950324378e-05,5.08182611876823e-06,-8.00607117450604e-06,5.93188692610335e-12,2.18637608018237e-10,-2.89220036808789e-10,1.96311066345553e-09,-2.33320307461624e-10,-2.35813972484061e-10,1.23815888098476e-10,-2.12503625783052e-10,2.83627288290108e-10 +10.1,-1.64396925157392e-06,-7.23179136130625e-07,1.5265377103571e-06,-3.32983304124346e-10,-1.00145213649538e-09,-0.0799999967563215,-1.39540820304916e-09,5.15049808358427e-10,2.8367022272827e-10,5.93969318174524e-12,2.16703391342523e-10,-2.88567780781822e-10,-0.00320985379668691,-0.00144359787752231,0.0027497247217896,2.7105054311473e-11,-6.75674793917094e-10,3.01841884851999e-10 +10.102,2.34536407742875e-09,-6.87952609115805e-09,-1.85965150223399e-09,-3.32932219987425e-10,-1.00074751957502e-09,-0.0799999967569205,-2.27132015430843e-06,-6.9256539132039e-07,2.99282771265116e-06,6.04030714334923e-12,2.15934908842569e-10,-2.88012669269381e-10,1.21745061948367e-09,-3.21574364359145e-10,-2.11636264069113e-10,7.50267903359801e-11,-1.4831885719598e-10,2.63677968348425e-10 +10.104,-1.65305453219116e-06,-7.25949397695907e-07,1.53850902120771e-06,-3.32959142895772e-10,-1.00058839686001e-09,-0.0799999967574736,-1.39053840057123e-09,5.1376351090099e-10,2.82823677671993e-10,6.23980034308926e-12,2.16110115913738e-10,-2.87513068908428e-10,0.00134814257215961,0.000571720326246174,-0.00143257574997545,9.28077059654502e-11,1.07986536403556e-10,2.23779328369083e-10 +10.106,2.33980192382646e-09,-6.87747103711445e-09,-1.85852020752331e-09,-3.32907260786053e-10,-9.99883079111363e-10,-0.0799999967580705,3.12125013432942e-06,1.59431591366406e-06,-2.73747528725001e-06,6.41153796721099e-12,2.16366854988183e-10,-2.87117551955905e-10,6.97169101962672e-10,-3.71230823859103e-10,-2.017700242996e-10,4.48859699409097e-11,-1.14058068545501e-10,2.02095284951333e-10 +10.108,-1.64056953165384e-06,-7.19572134041252e-07,1.52755912005871e-06,-3.32933496743903e-10,-9.99722929440061e-10,-0.079999996758622,-1.38774972416338e-09,5.12278587605553e-10,2.82016597574795e-10,6.41934422285288e-12,2.15653883639557e-10,-2.86704687768622e-10,-0.000773049458485574,-0.000319984707567654,0.000606752994852586,1.53956708492977e-11,-2.17707796235139e-10,2.12503625807208e-10 +10.11,2.33425092492981e-09,-6.87542192276402e-09,-1.85739214113301e-09,-3.32881583409161e-10,-9.99020463576805e-10,-0.0799999967592173,2.90523003874628e-08,3.14377083393581e-07,-3.10463307839937e-07,6.47312065060817e-12,2.15496023803243e-10,-2.86267537452676e-10,4.13785759283046e-10,-4.06792655173346e-10,-2.24863530604757e-10,2.21177243179868e-11,-8.15320033948361e-11,2.11636264100963e-10 +10.112,-1.64045332245229e-06,-7.18314625707678e-07,1.52631726682735e-06,-3.32907604261301e-10,-9.98860945344848e-10,-0.0799999967597671,-1.38609458112624e-09,5.1065141698486e-10,2.81117143452376e-10,6.50781512012482e-12,2.15327755625977e-10,-2.85858142712219e-10,0.000275999405621668,0.000145791117893391,-0.000313006608154107,2.90566182226048e-11,-3.33934269125424e-11,1.80411241501554e-10 +10.114,2.3287065466053e-09,-6.87337931709608e-09,-1.8562676725592e-09,-3.32855552148681e-10,-9.98159152554301e-10,-0.0799999967603608,1.1330499228745e-06,8.97541554967339e-07,-1.56248974045679e-06,6.58934712349863e-12,2.15362450095592e-10,-2.8554589248667e-10,2.78802588500823e-10,-4.0375688897701e-10,-2.16298333379695e-10,1.60461921535114e-11,-9.97465998447796e-11,1.89952220587764e-10 +10.116,-1.6359211227608e-06,-7.14724459487809e-07,1.52006730786552e-06,-3.32881246872807e-10,-9.97999495544466e-10,-0.0799999967609093,-1.38497937077224e-09,5.09036389428952e-10,2.80251950118857e-10,6.57199988873886e-12,2.14928769226598e-10,-2.85098333829868e-10,-0.000202580273465571,-6.70003108983894e-05,0.000172253317512607,7.80625564116241e-12,-1.26634813770193e-10,2.0643209367289e-10 +10.118,2.32316662912221e-09,-6.87134317153837e-09,-1.85514666475872e-09,-3.32829264149126e-10,-9.97299437477395e-10,-0.0799999967615012,3.22728829012308e-07,6.29540311373811e-07,-8.73476470406434e-07,6.62057214606327e-12,2.14855910840512e-10,-2.84720164111978e-10,2.23155912151806e-10,-3.93348548177635e-10,-2.10335221462143e-10,1.56125112837879e-11,-7.24247051220204e-11,1.73472347597636e-10 +10.12,-1.63463020744475e-06,-7.12206298242313e-07,1.5165734019839e-06,-3.32854764584223e-10,-9.97140071901104e-10,-0.0799999967620482,-1.38408674712363e-09,5.07462995236241e-10,2.79410609233008e-10,6.63444993387403e-12,2.1463907040611e-10,-2.84404444439477e-10,3.74051635206568e-05,2.37547950061231e-05,-2.32095033297541e-05,3.68628738718662e-12,-6.33174068493144e-11,1.49186218902434e-10 +10.122,2.31763028213372e-09,-6.86931331955742e-09,-1.85402902232179e-09,-3.3280272634939e-10,-9.9644088119577e-10,-0.0799999967626388,4.72349483094919e-07,7.24559491398293e-07,-9.6631448372544e-07,6.63531729561202e-12,2.14602641213114e-10,-2.84123419236369e-10,1.98598732945054e-10,-3.25260651745739e-10,-1.66425033476556e-10,-1.08420217248583e-12,-7.28583859910404e-11,1.24900090270357e-10 +10.124,-1.63274080951237e-06,-7.0930806027672e-07,1.512708144049e-06,-3.3282822331504e-10,-9.96281661336251e-10,-0.0799999967631847,-1.38329235219185e-09,5.06161952629258e-10,2.78744909099102e-10,6.63011312518409e-12,2.14347636862146e-10,-2.83904844078396e-10,-6.74640684571504e-05,-3.42670438465634e-05,9.27806747446355e-05,-8.89045781438313e-12,-7.32920668600346e-11,1.32706345912253e-10 +10.126,2.31209711272495e-09,-6.86728867174691e-09,-1.85291404268539e-09,-3.3277620589689e-10,-9.95583490648322e-10,-0.0799999967637744,2.02493209266347e-07,5.87491316012055e-07,-5.95191784746939e-07,6.59975546435449e-12,2.14309472945674e-10,-2.8359259385272e-10,1.94831130549212e-10,-2.64328489708088e-10,-1.12648605752172e-10,-1.47451495465357e-11,-4.42354486611949e-11,1.54390389393424e-10 +10.128,-1.6319308366753e-06,-7.06958095012672e-07,1.51032737691001e-06,-3.32801824293183e-10,-9.95424423444469e-10,-0.079999996764319,-1.38251302766966e-09,5.05104638670426e-10,2.78294314676093e-10,6.57113252699795e-12,2.14170695067501e-10,-2.83287282520822e-10,-6.58378158848441e-06,-1.69243597001424e-05,4.77334514145906e-05,-1.2143064331835e-11,-3.72965547334954e-11,1.17093834628408e-10 +10.13,2.30656706061427e-09,-6.86526825319222e-09,-1.85180086542669e-09,-3.32749921366782e-10,-9.94726807868052e-10,-0.0799999967649075,1.761580829124e-07,5.19793877211463e-07,-4.04257979088513e-07,6.55118320702713e-12,2.1416028672674e-10,-2.83124218514206e-10,2.05185260989411e-10,-1.96240593163856e-10,-5.73542948935995e-11,-1.88651178005222e-11,-3.38271077577765e-11,9.54097911472891e-11 +10.132,-1.63122620434365e-06,-7.04878919503826e-07,1.50871034499366e-06,-3.32775619560355e-10,-9.94567782297562e-10,-0.0799999967654515,-1.3816922866257e-09,5.04319676297771e-10,2.78064897496519e-10,6.49567205579587e-12,2.1403538663647e-10,-2.82905643356233e-10,-2.25967103102138e-05,-2.75779037193879e-05,6.65770746909691e-05,-2.64545330093678e-11,-4.163336344721e-11,1.18828558135818e-10 +10.134,2.30104029146777e-09,-6.86325097448703e-09,-1.8506886058367e-09,-3.32723938678559e-10,-9.93870666321506e-10,-0.0799999967660392,8.57712416715553e-08,4.09482262333923e-07,-1.37949680324665e-07,6.44536507498967e-12,2.13993753272951e-10,-2.82648904281663e-10,2.32344525563618e-10,-1.35091590691649e-10,-9.64939933511777e-12,-2.62376925741435e-11,-1.38777878078098e-11,9.88792381306579e-11 +10.136,-1.63088311937697e-06,-7.0324099045449e-07,1.50815854627236e-06,-3.32749838100055e-10,-9.9371180728447e-10,-0.0799999967665821,-1.38076290852344e-09,5.03779309935004e-10,2.78026299899178e-10,6.39072128549926e-12,2.13979875485239e-10,-2.8251012640371e-10,-1.50160629372575e-06,-1.79785806467549e-05,4.40064142894921e-05,-2.71050543114279e-11,-7.37257474914019e-12,7.89299181255852e-11 +10.138,2.29551723983368e-09,-6.86123585724729e-09,-1.84957650063711e-09,-3.32698375793417e-10,-9.93014746819565e-10,-0.0799999967671692,7.97648164966529e-08,3.37567939746912e-07,3.80759768332837e-08,6.33694485774397e-12,2.13964262973955e-10,-2.8233318460916e-10,2.62756396501891e-10,-1.09721259855571e-10,2.77555756156449e-11,-2.14672030152176e-11,-8.67361737988499e-12,7.63278329430008e-11 +10.14,-1.63056406011098e-06,-7.01890718695503e-07,1.50831085017969e-06,-3.32724490320624e-10,-9.92855950232574e-10,-0.0799999967677115,-1.37971188293744e-09,5.03340424895582e-10,2.78137322201641e-10,6.3048524734384e-12,2.13945181015719e-10,-2.82204815071938e-10,4.19173918665786e-07,-1.35204328202023e-05,3.33878573660008e-05,-2.49366499671722e-11,-1.86482773667592e-11,6.50521303491374e-11 +10.142,2.28999839230193e-09,-6.85922249554771e-09,-1.8484639513483e-09,-3.32673156383523e-10,-9.92158966095502e-10,-0.079999996768298,8.14415121713159e-08,2.83486208466108e-07,1.71627406297272e-07,6.2371982578753e-12,2.13889669864488e-10,-2.82072976087764e-10,2.97450866174511e-10,-9.49761103655753e-11,4.70543742549731e-11,-2.71050543128317e-11,-8.23993653464633e-12,8.84708973061305e-11 +10.144,-1.63023829406229e-06,-7.00756773861638e-07,1.50899735980488e-06,-3.32699541527592e-10,-9.92000391553116e-10,-0.0799999967688398,-1.37852207947274e-09,5.0296052045412e-10,2.78325539698661e-10,6.19643225618709e-12,2.13912221269581e-10,-2.81850931482714e-10,8.39387668529776e-06,-4.86794502277291e-06,1.36397038412073e-05,-2.25514051876934e-11,5.20417042792868e-12,8.06646416329075e-11 +10.146,2.28448430398404e-09,-6.85721065346589e-09,-1.84735064918951e-09,-3.32648370654498e-10,-9.91303317210424e-10,-0.0799999967694254,1.15017018912518e-07,2.6401442837501e-07,2.2618622166212e-07,6.14699263712449e-12,2.139104865462e-10,-2.81750317521232e-10,3.23525928116733e-10,-7.78457159286589e-11,5.225854474471e-11,-2.62376925734669e-11,3.90312784469738e-12,7.02563007457777e-11 +10.148,-1.62977822598664e-06,-6.99700716148138e-07,1.50990210469153e-06,-3.32674953557044e-10,-9.91144749606931e-10,-0.0799999967699668,-1.37722797576027e-09,5.02649137590405e-10,2.7853457387764e-10,6.09148148589323e-12,2.13927833780959e-10,-2.8156990627973e-10,9.72413783608438e-06,1.29119956910988e-06,-8.86756380155606e-07,-1.79977560639379e-11,2.60208519021637e-12,9.88792381619279e-11 +10.15,2.278975392081e-09,-6.85520005691553e-09,-1.84623651089399e-09,-3.32624004728554e-10,-9.904476058753e-10,-0.0799999967705517,1.53913570256851e-07,2.69179226651449e-07,2.22639196141498e-07,6.07500161286875e-12,2.1392089488696e-10,-2.81354800568584e-10,3.40276851834462e-10,-7.76288755499362e-11,3.68628738645078e-11,-7.37257477289998e-12,-5.20417042792868e-12,9.02056207507768e-11 +10.152,-1.62916257170562e-06,-6.98623999241532e-07,1.51079266147609e-06,-3.32650653550592e-10,-9.90289066027383e-10,-0.0799999967710922,-1.37586686835293e-09,5.02338622088205e-10,2.78682025373098e-10,6.06199118680162e-12,2.13907017099248e-10,-2.81209083796727e-10,1.05666300362545e-05,6.58206301965361e-06,-1.35635546847636e-05,-9.54097911719999e-12,-1.34441069150726e-11,6.15826833659574e-11 +10.154,2.27347192460758e-09,-6.85319070242718e-09,-1.8451217827925e-09,-3.32599756763807e-10,-9.89591977806903e-10,-0.0799999967716765,1.96180090401865e-07,2.95507478730061e-07,1.68384977402449e-07,6.03683769639995e-12,2.138671184593e-10,-2.81108469835121e-10,3.43854719003867e-10,-1.01698163779152e-10,2.12503625807182e-11,-8.89045781438292e-12,-1.5612511283793e-11,8.84708972748398e-11 +10.156,-1.62837785134401e-06,-6.97441969326612e-07,1.5114662013857e-06,-3.32626506199807e-10,-9.89433597553546e-10,-0.0799999967722166,-1.37449144947692e-09,5.01931829433089e-10,2.78767026823421e-10,6.02642935554409e-12,2.13844567054112e-10,-2.80855200207628e-10,8.68429172974483e-06,9.40685463552067e-06,-2.07001142572526e-05,-2.38524477946857e-12,-9.54097911787349e-12,1.18828558104437e-10 +10.158,2.26797395880968e-09,-6.85118297510945e-09,-1.84400671468521e-09,-3.32575651046385e-10,-9.88736599538687e-10,-0.0799999967728,2.3091725732084e-07,3.33134897272139e-07,8.55845203734479e-08,6.02729671728208e-12,2.13828954542829e-10,-2.80633155602703e-10,3.40439482312946e-10,-1.34007388574903e-10,7.58941489785287e-13,-1.95156391114257e-12,-9.10729827261545e-12,1.04083408589768e-10 +10.16,-1.62745418231473e-06,-6.96109429737524e-07,1.5118085394672e-06,-3.32602397012938e-10,-9.88578281735375e-10,-0.0799999967733391,-1.37312969154767e-09,5.01395799878789e-10,2.7877006258938e-10,6.01862309989952e-12,2.13808137861022e-10,-2.80438866573269e-10,6.12549166120955e-06,1.03424718875926e-05,-2.34319890964358e-05,2.16840434497028e-13,-1.82145964977504e-11,1.06685493772551e-10 +10.162,2.26248144004348e-09,-6.84917739190993e-09,-1.84289163443485e-09,-3.32551576553985e-10,-9.87881366987242e-10,-0.0799999967739217,2.55419223965686e-07,3.74504784822524e-07,-8.14343601232649e-09,6.02816407902007e-12,2.13756096156838e-10,-2.80206413627613e-10,3.25369071810528e-10,-1.27285334994158e-10,-1.81061762495553e-11,5.20417042859965e-12,-3.20923842818447e-11,9.80118763615648e-11 +10.164,-1.62643250541886e-06,-6.94611410598234e-07,1.51177596572315e-06,-3.32578284356622e-10,-9.87723257350748e-10,-0.07999999677446,-1.37182821526042e-09,5.00886658538812e-10,2.78697637884382e-10,6.03943978161392e-12,2.13679768323895e-10,-2.80046819067823e-10,2.95214894194136e-06,9.44013725692543e-06,-2.18402027149106e-05,3.2526065167864e-12,-1.73472347834997e-11,7.54604712360833e-11 +10.166,2.25699412718244e-09,-6.84717384527578e-09,-1.84177684388331e-09,-3.32527418794859e-10,-9.87026647913947e-10,-0.0799999967750419,2.67227819733451e-07,4.12265333850221e-07,-9.55042468719594e-08,6.04117450508721e-12,2.13686707217704e-10,-2.79904571742668e-10,3.0840130796345e-10,-1.59160878920845e-10,-4.65122731996255e-11,8.89045781437918e-12,-2.47198095326612e-11,1.15359111152432e-10 +10.168,-1.62536359413993e-06,-6.92962349262832e-07,1.51139394873566e-06,-3.32554119658601e-10,-9.86868510521877e-10,-0.0799999967755796,-1.37059461002857e-09,5.00250015023129e-10,2.78511588791583e-10,6.07500161287145e-12,2.13580889085764e-10,-2.79585382623213e-10,4.87181909694451e-08,7.33899117697522e-06,-1.73580354734046e-05,1.23599047670082e-11,-4.51028103516787e-11,1.30971622405205e-10 +10.17,2.25151174874233e-09,-6.84517284521569e-09,-1.84066279752815e-09,-3.32503118788408e-10,-9.86172324357604e-10,-0.0799999967761603,2.67422692497328e-07,4.41621298558119e-07,-1.6493638876557e-07,6.09061412415524e-12,2.13506295976297e-10,-2.79380685253047e-10,2.92138275376303e-10,-1.60245081093401e-10,-5.67037736209981e-11,2.6020852139659e-12,-3.20923843055809e-11,8.67361737988628e-11 +10.172,-1.62429390336994e-06,-6.911958640686e-07,1.5107342031806e-06,-3.32529757202105e-10,-9.86014485337972e-10,-0.0799999967766971,-1.36942605692707e-09,4.99609034698755e-10,2.78284773697099e-10,6.08540995372731e-12,2.13452519548542e-10,-2.79238437928017e-10,-2.3162635004464e-06,4.56061122027052e-06,-1.11922956796639e-05,5.2041704279316e-12,-1.43114686768167e-11,1.14491749414495e-10 +10.174,2.24603404451462e-09,-6.84317440907689e-09,-1.83954965843336e-09,-3.32478777148593e-10,-9.8531851427941e-10,-0.0799999967772772,2.58157638495544e-07,4.59863743439199e-07,-2.09705571484221e-07,6.11143080586696e-12,2.1344905010159e-10,-2.7892271825539e-10,2.73869468921811e-10,-1.77809156343038e-10,-6.22332047315519e-11,1.64798730211003e-11,-2.8622937377305e-11,1.33573707681184e-10 +10.176,-1.62326127281596e-06,-6.89356409094843e-07,1.50989538089466e-06,-3.32505311478881e-10,-9.85160689137565e-10,-0.0799999967778128,-1.36833057905138e-09,4.98897798073383e-10,2.78035840878173e-10,6.1513294458117e-12,2.13338027799032e-10,-2.78704143097293e-10,-3.84820051258558e-06,1.68417059812038e-06,-4.68730544829383e-06,1.38777878078114e-11,-4.07660016854414e-11,1.0234868508261e-10 +10.178,2.24056072219841e-09,-6.8411788178846e-09,-1.83843751506985e-09,-3.32454171830809e-10,-9.84465162168213e-10,-0.079999996778392,2.42764836445196e-07,4.66600425831683e-07,-2.28454793277402e-07,6.16694195709823e-12,2.13285986094848e-10,-2.78513323515059e-10,2.6275639635e-10,-1.72171304935348e-10,-6.15826833663193e-11,4.55364912512301e-12,-3.46944694958619e-11,9.80118763617716e-11 +10.18,-1.62229021347018e-06,-6.87490007391517e-07,1.50898156172155e-06,-3.32480643711053e-10,-9.84307545193186e-10,-0.0799999967789269,-1.36727955346598e-09,4.98209112853642e-10,2.77789510144708e-10,6.16954404231219e-12,2.13199249921049e-10,-2.78312095591846e-10,-4.52548155202388e-06,-8.58911683148104e-07,1.14077887763699e-06,3.03576608227393e-12,-3.64291930191885e-11,1.04950770327485e-10 +10.182,2.23509160398455e-09,-6.83918598143318e-09,-1.83732635702927e-09,-3.3242949365464e-10,-9.83612365168529e-10,-0.0799999967795053,2.24662910237103e-07,4.63164779099091e-07,-2.23891677766855e-07,6.17908502142732e-12,2.13140269322771e-10,-2.78093520433749e-10,2.54950140859881e-10,-1.72604985859661e-10,-6.41847686111334e-11,3.46944695195286e-12,-4.33680868994057e-11,1.06685493772551e-10 +10.184,-1.62139156182923e-06,-6.8563734827512e-07,1.50808599501048e-06,-3.32455927370967e-10,-9.83454984115895e-10,-0.0799999967800392,-1.36625975290254e-09,4.97518692910203e-10,2.77532771070263e-10,6.18342183012001e-12,2.13025777573451e-10,-2.77885353616755e-10,-4.41761677149839e-06,-2.76354893824962e-06,5.56432211502585e-06,1.95156391116055e-12,-2.21177242950416e-11,1.00613961575802e-10 +10.186,2.22962656497294e-09,-6.83719590666154e-09,-1.83621622594499e-09,-3.3240475996732e-10,-9.82760262058235e-10,-0.0799999967806168,2.06992443151111e-07,4.52110583346094e-07,-2.01634389306754e-07,6.18689127707196e-12,2.13051798425591e-10,-2.77691064587446e-10,2.54136989230682e-10,-1.67617655866303e-10,-5.10659223240729e-11,3.4694469519544e-12,-1.25767452008397e-11,1.11889664200529e-10 +10.188,-1.62056359205662e-06,-6.83828905941736e-07,1.50727945745326e-06,-3.32431179805859e-10,-9.82602776922192e-10,-0.07999999678115,-1.36524320494562e-09,4.96848222286738e-10,2.77328507380967e-10,6.19729961792783e-12,2.12975470592648e-10,-2.77437794959953e-10,-3.71156122329434e-06,-3.89040362425239e-06,8.23766510734029e-06,6.72205346941147e-12,-3.85975973404947e-11,1.0581813203461e-10 +10.19,2.22416559215316e-09,-6.8352085137724e-09,-1.83510691191546e-09,-3.32379970768848e-10,-9.81908360175865e-10,-0.0799999967817266,1.92146198257935e-07,4.36548968849086e-07,-1.68683728877397e-07,6.21377949094961e-12,2.12897408036229e-10,-2.77267792059308e-10,2.53215417535495e-10,-1.49836740292624e-10,-4.45607093199328e-11,2.16840433809087e-13,-3.77302356261325e-11,7.80625564497386e-11 +10.192,-1.61979500726359e-06,-6.8208271006634e-07,1.50660472253775e-06,-3.32406324687895e-10,-9.81751187290048e-10,-0.0799999967822591,-1.36423034327547e-09,4.96248875325568e-10,2.77150264543687e-10,6.19816697966306e-12,2.12824549650143e-10,-2.77125544734154e-10,-2.63130999194418e-06,-4.23735048785028e-06,9.13703617974399e-06,-5.20417042792929e-12,-1.38777878078098e-11,9.80118763926698e-11 +10.194,2.21870867078006e-09,-6.83322351827109e-09,-1.83399831085729e-09,-3.32355178100929e-10,-9.81057061977264e-10,-0.0799999967828351,1.81620958290155e-07,4.19599566897679e-07,-1.32135584158408e-07,6.19296280923788e-12,2.12841896884998e-10,-2.76875744553737e-10,2.57823276465656e-10,-1.50270421051422e-10,-3.46944694887792e-11,-2.81892564777479e-12,-1.12757025702177e-11,1.26634813715573e-10 +10.196,-1.61906852343043e-06,-6.80404311798749e-07,1.50607618020111e-06,-3.32381552836658e-10,-9.80899819702508e-10,-0.0799999967833666,-1.36319905016961e-09,4.95647793641362e-10,2.77011486665732e-10,6.18689127707196e-12,2.12779446839863e-10,-2.76619005479292e-10,-1.41084800094657e-06,-3.91536976456349e-06,8.50621970865134e-06,-8.02309607707842e-12,-3.25260651981886e-11,9.97465998993865e-11 +10.198,2.21325587457938e-09,-6.83124092709653e-09,-1.83289026491062e-09,-3.32330430535821e-10,-9.80205944189905e-10,-0.0799999967839415,1.75977566286369e-07,4.03938087839427e-07,-9.81107053238067e-08,6.16087042492957e-12,2.12711792624205e-10,-2.76476758154139e-10,2.63732178457063e-10,-1.53956708492916e-10,-2.11419423634603e-11,-5.63785129692355e-12,-3.33934269125488e-11,7.11236625150253e-11 +10.2,-1.61836461316529e-06,-6.78788559447391e-07,1.50568373737982e-06,-3.32356909354958e-10,-9.80048972532011e-10,-0.0799999967844725,-1.36214412145578e-09,4.9503196680739e-10,2.76926918896278e-10,6.16433987188426e-12,2.12645873132212e-10,-2.76334510829232e-10,-2.52336020982406e-07,-3.10596773990283e-06,6.75870394805964e-06,-3.25260651677328e-12,-2.51534903780531e-11,9.54097911480517e-11 +10.202,2.20780729809356e-09,-6.8292607992293e-09,-1.83178255723504e-09,-3.32305773176333e-10,-9.79355360697376e-10,-0.0799999967850469,1.7496822220244e-07,3.91514216879817e-07,-7.10758895315711e-08,6.14785999886248e-12,2.12611178662693e-10,-2.76095118989547e-10,2.69641080297175e-10,-1.35091590691709e-10,-2.74303149638863e-11,-9.75781955237162e-12,-9.97465998686774e-12,1.18828558104437e-10 +10.204,-1.61766474027648e-06,-6.77222502579872e-07,1.50539943382169e-06,-3.32332317914963e-10,-9.7919852781736e-10,-0.0799999967855769,-1.36106555713459e-09,4.94491600444623e-10,2.76817197636423e-10,6.12530859367478e-12,2.12605974492265e-10,-2.75859196596814e-10,6.93053633146218e-07,-2.0221727937979e-06,4.38473335331271e-06,-5.63785129692585e-12,-1.08420217248562e-11,1.0581813203461e-10 +10.206,2.20236303586502e-09,-6.82728283282752e-09,-1.83067528844449e-09,-3.32281271941959e-10,-9.78504936799407e-10,-0.0799999967861503,1.77740436735025e-07,3.83425525704626e-07,-5.35369561183222e-08,6.12530859367478e-12,2.12567810575793e-10,-2.75671846461409e-10,2.74574200332996e-10,-1.39428399436504e-10,-1.18178037108282e-11,-6.07153216659743e-12,-2.4286128687272e-11,7.63278329735936e-11 +10.208,-1.61695377852954e-06,-6.75688800477053e-07,1.50518528599722e-06,-3.32307816680588e-10,-9.78348256575057e-10,-0.0799999967866795,-1.35996726033326e-09,4.93933886846877e-10,2.76769926421579e-10,6.10102246500839e-12,2.12508829977516e-10,-2.7555388526492e-10,1.33727962514274e-06,-8.71578417077449e-07,1.86302872000985e-06,-1.27935856353261e-11,-1.99493199737331e-11,7.11236625150253e-11 +10.21,2.19692316682368e-09,-6.82530709728013e-09,-1.82956820873881e-09,-3.32256867852099e-10,-9.77654901479497e-10,-0.0799999967872525,1.83089555235597e-07,3.79939212036315e-07,-4.60848412382804e-08,6.07413425113346e-12,2.12488013295898e-10,-2.75387351811348e-10,2.79453109807209e-10,-1.30104260643448e-10,-1.19262238666069e-11,-8.45677694471154e-12,-2.60208521160674e-11,1.05818132004017e-10 +10.212,-1.61622142030859e-06,-6.74169043628908e-07,1.50500094663227e-06,-3.32283520143584e-10,-9.77498304521873e-10,-0.0799999967877811,-1.35884944789403e-09,4.93413469804304e-10,2.76722221526113e-10,6.06719535722955e-12,2.12404746569052e-10,-2.75130612736904e-10,1.65410832815236e-06,1.71422554928166e-07,-4.06027967319099e-07,-4.55364912511251e-12,-2.81892565082073e-11,1.16226472921e-10 +10.214,2.19148776903211e-09,-6.82333344340091e-09,-1.8284613198527e-09,-3.3223259907067e-10,-9.76805282493221e-10,-0.0799999967883531,1.89705988548206e-07,3.80624902256028e-07,-4.77089531075566e-08,6.05591965463301e-12,2.12375256269866e-10,-2.74922445919665e-10,2.80916782890952e-10,-1.39862080250609e-10,-1.81061762805148e-11,-7.5894152073968e-12,-1.5612511283786e-11,9.54097911787055e-11 +10.216,-1.6154625963544e-06,-6.72646544019884e-07,1.50481011081983e-06,-3.32259296464965e-10,-9.76648803496794e-10,-0.0799999967888808,-1.35772578076247e-09,4.92854021483301e-10,2.76649796820991e-10,6.03683769639995e-12,2.12342296523916e-10,-2.74748973572189e-10,1.66989767285261e-06,9.83375707295516e-07,-2.14286281861758e-06,-6.07153216524781e-12,-4.77048953535563e-12,8.93382589823002e-11 +10.218,2.18605686590906e-09,-6.82136202731498e-09,-1.82735472066542e-09,-3.32208451719884e-10,-9.75955913307125e-10,-0.079999996789452,1.96385579239616e-07,3.84558405085209e-07,-5.6280404382026e-08,6.03163352597202e-12,2.12356174311724e-10,-2.74565092883735e-10,2.8183835473769e-10,-1.46150452851088e-10,-1.81061762805099e-11,-2.16840434497125e-13,-1.60461921527937e-11,9.80118763927133e-11 +10.22,-1.61467705403744e-06,-6.71108310399543e-07,1.50458498920231e-06,-3.32235169930861e-10,-9.75799378799547e-10,-0.079999996789979,-1.35659842734352e-09,4.92269419671897e-10,2.76577372115869e-10,6.03597033466197e-12,2.12278111755305e-10,-2.74356926066618e-10,1.44848916932107e-06,1.49860766157671e-06,-3.20443357178999e-06,-4.55364912444002e-12,-2.77555756156384e-11,1.11022302462541e-10 +10.222,2.18063047219968e-09,-6.81939294963629e-09,-1.82624841117696e-09,-3.32184307838546e-10,-9.75106800860104e-10,-0.0799999967905495,2.02179535916899e-07,3.90552835731515e-07,-6.90981386691845e-08,6.01341892947426e-12,2.12245152009262e-10,-2.74121003673885e-10,2.81729934670885e-10,-1.277190159734e-10,-1.7130394355969e-11,-1.10588621600198e-11,-2.0383000866285e-11,9.02056207812286e-11 +10.224,-1.61386833589378e-06,-6.69546099056617e-07,1.50430859664763e-06,-3.32211116255143e-10,-9.7495039819151e-10,-0.0799999967910755,-1.35547150760484e-09,4.91758543608003e-10,2.76508850538445e-10,5.99173488602189e-12,2.1219657975184e-10,-2.73996103583493e-10,1.07395272145778e-06,1.7066133662504e-06,-3.57695502991365e-06,-1.95156391047346e-12,-1.86482773667444e-11,7.63278329429669e-11 +10.226,2.17520858616926e-09,-6.81742591546186e-09,-1.8251423757748e-09,-3.32160340899001e-10,-9.74258014541096e-10,-0.0799999967916455,2.06475346802732e-07,3.97379289196519e-07,-8.34059587888439e-08,6.00561267383237e-12,2.12170558899795e-10,-2.73815692342113e-10,2.79344689590478e-10,-1.52438825396911e-10,-2.88397777574214e-11,-2.81892564779781e-12,-2.34187669021342e-11,1.17961196336024e-10 +10.228,-1.61304243450656e-06,-6.67956581899831e-07,1.50397497281247e-06,-3.32187093804448e-10,-9.74101715955911e-10,-0.0799999967921708,-1.35435412884647e-09,4.91148788306416e-10,2.76393491427415e-10,5.9804591834307e-12,2.12102904684232e-10,-2.73524258798149e-10,6.33952471658206e-07,1.64202939435524e-06,-3.35091156210663e-06,-9.75781955303422e-12,-2.73218947701865e-11,9.8879238161049e-11 +10.23,2.16979116965388e-09,-6.81546132030864e-09,-1.82403680180909e-09,-3.32136419062268e-10,-9.73409602922359e-10,-0.0799999967927396,2.09011156689364e-07,4.0394740677394e-07,-9.6809605037269e-08,5.96658139562024e-12,2.12061271320714e-10,-2.73420175389469e-10,2.75278931593978e-10,-1.39428399381589e-10,-2.50450701844068e-11,4.33680868994259e-13,-1.82145964977569e-11,8.15320033708956e-11 +10.232,-1.61220638987981e-06,-6.66340792272735e-07,1.50358773439233e-06,-3.32163227478866e-10,-9.73253470870628e-10,-0.0799999967932645,-1.3532530131201e-09,4.90591074708889e-10,2.76293311146677e-10,5.98219390690668e-12,2.12030046298241e-10,-2.73198130784665e-10,2.06268487556662e-07,1.37045539851462e-06,-2.68581381094892e-06,4.33680869060549e-12,-2.29850860331529e-11,1.12757025908158e-10 +10.234,2.1643781576014e-09,-6.8134989560098e-09,-1.82293162856451e-09,-3.3211249028664e-10,-9.72561482737166e-10,-0.0799999967938324,2.09836230639591e-07,4.09429228367997e-07,-1.07552860281063e-07,5.98392863038266e-12,2.11969330976581e-10,-2.72969147285837e-10,2.74465779964787e-10,-1.46584133720082e-10,-3.12250225675989e-11,-4.77048955893735e-12,-3.51281503885342e-11,9.71445146547248e-11 +10.236,-1.61136704495725e-06,-6.64703075359263e-07,1.5031575229512e-06,-3.32139291764344e-10,-9.72405593546721e-10,-0.0799999967943563,-1.35215515000024e-09,4.90004738174009e-10,2.76168411056407e-10,5.96311194867093e-12,2.11889533696686e-10,-2.72809552726047e-10,-1.50368324562696e-07,9.72458658738064e-07,-1.77221627130392e-06,-5.85469173142297e-12,-1.69135538907757e-11,9.36750677027708e-11 +10.238,2.1589695370014e-09,-6.8115389370571e-09,-1.82182695492028e-09,-3.32088637838845e-10,-9.7171392460238e-10,-0.0799999967949236,2.0923475734134e-07,4.13319063002949e-07,-1.14641725366278e-07,5.96050986345697e-12,2.11901676761018e-10,-2.72594447015026e-10,2.72947897073286e-10,-1.43114686822464e-10,-3.27429056397103e-11,3.03576608229675e-12,-1.90819582592635e-11,1.22298005086622e-10 +10.24,-1.61053010592788e-06,-6.63049799107251e-07,1.50269895604974e-06,-3.3211544972489e-10,-9.71557986839677e-10,-0.0799999967954467,-1.35106335841195e-09,4.89432279426719e-10,2.76037439433848e-10,5.97525501300012e-12,2.11813205863649e-10,-2.723203607057e-10,-4.00699764167757e-07,5.29238762189564e-07,-7.97064671209481e-07,1.5178830414792e-12,-2.77555756156261e-11,9.71445146546817e-11 +10.242,2.15356528356775e-09,-6.8095812079394e-09,-1.82072280516254e-09,-3.32064736818793e-10,-9.70866671778925e-10,-0.0799999967960129,2.07631958284669e-07,4.15436018051708e-07,-1.17829984051117e-07,5.96658139562288e-12,2.11790654458556e-10,-2.72205868956407e-10,2.68068986997092e-10,-1.50920942355663e-10,-3.18755438404329e-11,-3.68628738578812e-12,-2.51534903781564e-11,7.71951946507585e-11 +10.244,-1.60969957809474e-06,-6.61388055035045e-07,1.50222763611353e-06,-3.32091583399308e-10,-9.70710824221843e-10,-0.0799999967965355,-1.34999108246396e-09,4.88828595657296e-10,2.75909937258487e-10,5.96050986345697e-12,2.11712591902137e-10,-2.72011579927097e-10,-5.32830236096273e-07,1.10986306950415e-07,8.32199977332717e-08,-6.50521303491374e-13,-1.95156391047412e-11,1.04083408558633e-10 +10.246,2.14816531923789e-09,-6.80762589355677e-09,-1.81961916541351e-09,-3.3204089477934e-10,-9.70019821411316e-10,-0.0799999967971009,2.05500637340284e-07,4.1587996327951e-07,-1.17497104060184e-07,5.96397931040892e-12,2.11712591902137e-10,-2.71789535322172e-10,2.70616862252463e-10,-1.42897846333631e-10,-3.17671236538288e-11,1.30104260698275e-12,-1.734723475977e-11,9.62771529167234e-11 +10.248,-1.60887757554538e-06,-6.59724535181927e-07,1.50175764769729e-06,-3.32067727482066e-10,-9.69863973854235e-10,-0.0799999967976227,-1.34890861501495e-09,4.88257004271962e-10,2.75782868763871e-10,5.9657140338849e-12,2.11643202963098e-10,-2.7162647131543e-10,-5.54802514716113e-07,-2.30630618815501e-07,7.59212462875632e-07,-1.73472347663858e-12,-3.03576608530946e-11,9.02056207809443e-11 +10.25,2.14276968477783e-09,-6.80567286553968e-09,-1.81851603393846e-09,-3.32017031923204e-10,-9.69173248599464e-10,-0.0799999967981874,2.0328142728142e-07,4.14957440804248e-07,-1.14460254208682e-07,5.95704041650237e-12,2.11591161258724e-10,-2.71428712839048e-10,2.69153189319437e-10,-1.45933612416526e-10,-3.49113099540345e-11,-1.95156391047346e-12,-2.03830008427271e-11,1.08420217248527e-10 +10.252,-1.60806444983626e-06,-6.58064705418709e-07,1.50129980668046e-06,-3.320438993204e-10,-9.690176092092e-10,-0.0799999967987084,-1.34783200225767e-09,4.87673269822296e-10,2.75643223524055e-10,5.957907778243e-12,2.11561670959727e-10,-2.71192790446436e-10,-4.88967102462312e-07,-4.65780842669014e-07,1.1747984312666e-06,1.30104260764433e-12,-1.43114686533196e-11,1.04083408528505e-10 +10.254,2.1373783567688e-09,-6.80372217246039e-09,-1.81741346104436e-09,-3.31993200292091e-10,-9.68327001915625e-10,-0.0799999967992722,2.01325558871571e-07,4.13094317433572e-07,-1.09761060483616e-07,5.96224458693294e-12,2.11533915384111e-10,-2.71012379204934e-10,2.69315819794994e-10,-1.31838984228329e-10,-3.30681662914043e-11,2.81892564780023e-12,-2.90566182460924e-11,7.63278329730766e-11 +10.256,-1.60725914760077e-06,-6.56412328148975e-07,1.50086076243852e-06,-3.32020050342052e-10,-9.68171473547663e-10,-0.0799999967997925,-1.34675473897849e-09,4.87145913885382e-10,2.75510950858889e-10,5.9691834808342e-12,2.11445444486742e-10,-2.70887479114544e-10,-3.65437443760387e-07,-5.85690133544782e-07,1.32409914196217e-06,-1.95156391047346e-12,-3.20923843055602e-11,1.0234868508261e-10 +10.258,2.13199133781289e-09,-6.80177358880485e-09,-1.81631141724092e-09,-3.31969323558168e-10,-9.67481220137678e-10,-0.0799999968003557,1.99863809096529e-07,4.10751556899392e-07,-1.04464663915766e-07,5.95443833129105e-12,2.11405545846889e-10,-2.70602984464604e-10,2.67635306128563e-10,-1.54390389307902e-10,-2.16840434191197e-11,-3.90312782028585e-12,-2.0383000819252e-11,1.07552855480511e-10 +10.26,-1.60645969236439e-06,-6.54769321921378e-07,1.50044290378286e-06,-3.31996232588727e-10,-9.67325851364276e-10,-0.0799999968008749,-1.34568419775398e-09,4.86528352328151e-10,2.75424214685213e-10,5.95357096955306e-12,2.11363912483465e-10,-2.70457267692622e-10,-2.15920055272928e-07,-5.99468608433872e-07,1.24170086105601e-06,2.6020852139657e-12,-1.95156391047477e-11,7.63278329429879e-11 +10.262,2.12660860102187e-09,-6.79982747539554e-09,-1.81520972038218e-09,-3.3194550927429e-10,-9.66635764487744e-10,-0.0799999968014376,1.99000128875437e-07,4.08353682465657e-07,-9.94978604715423e-08,5.96484667214691e-12,2.1132748329047e-10,-2.70297673132832e-10,2.71538434099076e-10,-1.32489505477743e-10,-3.52365706057957e-11,-3.68628738645153e-12,-3.16587034365867e-11,9.02056207508168e-11 +10.264,-1.60566369184888e-06,-6.53135907191515e-07,1.50004491234097e-06,-3.31972373202039e-10,-9.66480541431114e-10,-0.0799999968019561,-1.34459804401758e-09,4.8599839430624e-10,2.7528326840279e-10,5.93882582000725e-12,2.11237277669719e-10,-2.70096445209619e-10,-6.86047356297903e-08,-5.28791203578115e-07,9.88958372670214e-07,-4.98732999409444e-12,-2.86229373770723e-11,1.09287579016523e-10 +10.266,2.1212302088458e-09,-6.79788348181831e-09,-1.81410858730857e-09,-3.3192175397101e-10,-9.65790815377066e-10,-0.079999996802518,1.98725709932918e-07,4.06238517651345e-07,-9.55420269808618e-08,5.94489735217053e-12,2.11212991540962e-10,-2.69860522816766e-10,2.69749500514303e-10,-1.37476835471142e-10,-2.04914210599692e-11,1.30104260698217e-12,-1.12757025938455e-11,1.15359111152432e-10 +10.268,-1.60486878900915e-06,-6.5151095312091e-07,1.49966274423305e-06,-3.3194859361263e-10,-9.6563568946495e-10,-0.0799999968030355,-1.34351904601552e-09,4.85448486964355e-10,2.7520130271855e-10,5.94402999043518e-12,2.11192174859344e-10,-2.69635008765009e-10,5.51495698288092e-08,-4.02093939696423e-07,6.39407472271338e-07,-2.16840434431148e-12,-8.67361735643313e-12,1.00613961576719e-10 +10.27,2.11585613266174e-09,-6.79594168787045e-09,-1.8130077820977e-09,-3.31897977851048e-10,-9.64946046677628e-10,-0.0799999968035965,1.98946308212233e-07,4.04630141892559e-07,-9.29843970917768e-08,5.93622373479329e-12,2.11178297071536e-10,-2.69458066970459e-10,2.72893686963731e-10,-1.30321101186616e-10,-3.11166023808785e-11,-1.73472347663616e-12,-9.54097914131889e-12,9.19403442566757e-11 +10.272,-1.6040730037763e-06,-6.4989243255334e-07,1.49929080664468e-06,-3.31924848717691e-10,-9.64790976276664e-10,-0.0799999968041133,-1.34242747126767e-09,4.84927202559609e-10,2.75076836309026e-10,5.93709109652864e-12,2.11154010942778e-10,-2.69267247387982e-10,1.42579036684736e-07,-2.49050346318113e-07,2.65134377126716e-07,-6.50521303491085e-13,-2.38524477946796e-11,9.36750677027292e-11 +10.274,2.11048642277667e-09,-6.79400197906022e-09,-1.81190747475246e-09,-3.31874229486662e-10,-9.64101430633857e-10,-0.0799999968046736,1.99516624358972e-07,4.03633940507286e-07,-9.19238595832696e-08,5.93362164957932e-12,2.11082887280357e-10,-2.69083366699648e-10,2.699121306913e-10,-1.48318857142215e-10,-2.49366499366283e-11,-6.28837259975827e-12,-4.77048955659285e-11,9.714451462483e-11 +10.276,-1.60327493727887e-06,-6.48277896791311e-07,1.49892311120635e-06,-3.31901114231092e-10,-9.63946644727542e-10,-0.0799999968051897,-1.3413478227449e-09,4.8433392713104e-10,2.7497708970928e-10,5.91193760612961e-12,2.10963191360515e-10,-2.68878669329483e-10,1.89314547111754e-07,-9.62216417655054e-08,-7.32813332585272e-08,-6.50521303491455e-12,-3.2959746043563e-11,8.15320033709189e-11 +10.278,2.10512103148569e-09,-6.79206464335169e-09,-1.81080756639362e-09,-3.31850581736237e-10,-9.63257577868415e-10,-0.0799999968057491,2.00273882547419e-07,4.03249053940224e-07,-9.22169849163036e-08,5.90760079743967e-12,2.10951048296183e-10,-2.68757238686164e-10,2.72460005945637e-10,-1.37476835471203e-10,-1.78893358460128e-11,3.4694469519544e-12,-9.54097911787349e-12,7.28583859910468e-11 +10.28,-1.60247384174868e-06,-6.4666490057555e-07,1.49855424326668e-06,-3.31877483827903e-10,-9.63102840534358e-10,-0.0799999968062647,-1.34025798272112e-09,4.83784019789155e-10,2.74905532365896e-10,5.92581539393743e-12,2.10925027444043e-10,-2.68587235785519e-10,1.98278784861653e-07,3.60031014969432e-08,-3.33601527468487e-07,-2.16840434562637e-12,-7.37257479632179e-12,1.07552855540378e-10 +10.282,2.09975999955481e-09,-6.79012950727254e-09,-1.80970794426416e-09,-3.31826878474661e-10,-9.62413877758639e-10,-0.0799999968068234,2.01066997686866e-07,4.03393066346212e-07,-9.35513910261774e-08,5.89892718005716e-12,2.10921557996998e-10,-2.68327027264003e-10,2.70128971274725e-10,-1.40729441988571e-10,-3.08997619158395e-11,-8.23993651088809e-12,-1.73472347597687e-11,9.45424294407173e-11 +10.284,-1.60166957375793e-06,-6.45051328310164e-07,1.49818003770258e-06,-3.31853888119182e-10,-9.6225915430237e-10,-0.079999996807338,-1.33917746683602e-09,4.83221102021201e-10,2.74781933318232e-10,5.89285564789386e-12,2.10855638505004e-10,-2.68209066067756e-10,1.77395262130643e-07,1.3476329431868e-07,-4.93936380522536e-07,-4.33680868339331e-13,-2.29850860332821e-11,7.11236624852784e-11 +10.286,2.09440328968746e-09,-6.78819662286445e-09,-1.80860881653089e-09,-3.3180330705207e-10,-9.61570455204619e-10,-0.0799999968078963,2.01776578735388e-07,4.03932119523487e-07,-9.55271365482674e-08,5.89719245658381e-12,2.10829617652864e-10,-2.68042532614062e-10,2.70237391640624e-10,-1.28152696841412e-10,-1.90819582662363e-11,-3.90312782160114e-12,-2.64545330320494e-11,1.17961196396163e-10 +10.288,-1.60086246744299e-06,-6.43435599832071e-07,1.49779792915639e-06,-3.31830299349356e-10,-9.61415835831758e-10,-0.0799999968084102,-1.33809651726946e-09,4.82708491233835e-10,2.74705605485168e-10,5.87724313660746e-12,2.10749820372876e-10,-2.67737221282171e-10,1.37358657434328e-07,1.94914830803322e-07,-5.51958110293779e-07,-4.553649124438e-12,-2.77555756156196e-11,1.14491749414444e-10 +10.29,2.08905090361838e-09,-6.78626578889951e-09,-1.80750999410895e-09,-3.31779798079523e-10,-9.60727455923127e-10,-0.0799999968089672,2.02326013365126e-07,4.047117788467e-07,-9.77349689894432e-08,5.87897786008605e-12,2.10718595350402e-10,-2.67584565616404e-10,2.7148422384187e-10,-1.3986208019706e-10,-3.12250225370966e-11,1.30104260763545e-12,-1.77809156053641e-11,7.9797279865228e-11 +10.292,-1.60005316338953e-06,-6.41816752716684e-07,1.49740698928043e-06,-3.31806783437916e-10,-9.60572961450357e-10,-0.0799999968094805,-1.33701058037409e-09,4.82149042913047e-10,2.74580705395019e-10,5.882447307038e-12,2.10678696710454e-10,-2.6741803216271e-10,8.92447465754451e-08,2.17753766407253e-07,-5.20886393913628e-07,-2.16840434497165e-12,-1.64798730217815e-11,9.71445146547248e-11 +10.294,2.08370286129689e-09,-6.78433719272786e-09,-1.80641167128737e-09,-3.31756268290295e-10,-9.59884741136285e-10,-0.0799999968100369,2.02682992351427e-07,4.05582793912329e-07,-9.98185145650975e-08,5.87030424270616e-12,2.10652675858315e-10,-2.67195987557785e-10,2.68502668016116e-10,-1.4224732503014e-10,-1.91903784529955e-11,-2.81892564846303e-12,-2.16840434497189e-11,1.06685493772598e-10 +10.296,-1.59924243142012e-06,-6.40194421541035e-07,1.49700771522217e-06,-3.31783302220945e-10,-9.59730350746923e-10,-0.0799999968105493,-1.33593656970203e-09,4.81580053612926e-10,2.74503943881207e-10,5.87117160444415e-12,2.10591960536656e-10,-2.6699129018762e-10,4.27612047108636e-08,2.09410830644845e-07,-4.2435976606573e-07,-6.5052130414286e-13,-2.645453303203e-11,8.76035355664747e-11 +10.298,2.07835911501808e-09,-6.78241087251341e-09,-1.80531365551184e-09,-3.31732783603877e-10,-9.59042373294139e-10,-0.0799999968111049,2.02854037170271e-07,4.06420437234909e-07,-1.0151595362936e-07,5.86770215748959e-12,2.10546857726187e-10,-2.66845573415519e-10,2.68448457907321e-10,-1.25116930704811e-10,-2.66713734431345e-11,-5.42101086242612e-12,-2.73218947466256e-11,1.0234868508261e-10 +10.3,-1.59843101527144e-06,-6.38568739792095e-07,1.49660165140765e-06,-3.31759831412315e-10,-9.58888163316018e-10,-0.0799999968116167,-1.3348627758704e-09,4.81079585890107e-10,2.74397258387435e-10,5.84948756099444e-12,2.10482672957669e-10,-2.66581895447289e-10,5.04571430294139e-09,1.78837196832737e-07,-2.90696937019452e-07,-4.55364912378854e-12,-1.90819582123727e-11,9.88792381010655e-11 +10.302,2.0730196639146e-09,-6.78048655416985e-09,-1.80421606647829e-09,-3.31709385653634e-10,-9.58200442602308e-10,-0.0799999968121712,2.02874220027483e-07,4.0713578602224e-07,-1.02678741377438e-07,5.84948756099444e-12,2.10470529893337e-10,-2.66450056463115e-10,2.68882138924552e-10,-1.49619899856369e-10,-2.65629532563613e-11,-3.0357660836082e-12,-1.56125113071544e-11,6.15826834267551e-11 +10.304,-1.59761951839133e-06,-6.36940196648006e-07,1.49619093644214e-06,-3.31736433462071e-10,-9.58046281196445e-10,-0.0799999968126825,-1.3337872473147e-09,4.80481106290682e-10,2.74291006574409e-10,5.83734449666001e-12,2.1042022291244e-10,-2.66335564713582e-10,-1.99493199737266e-08,1.3572845104778e-07,-1.47607295310182e-07,-3.25260651745583e-12,-1.99493199737331e-11,9.28077059647411e-11 +10.306,2.06768451492534e-09,-6.77856462974469e-09,-1.80311890245199e-09,-3.31686036275647e-10,-9.57358761710658e-10,-0.0799999968132365,2.02794422747588e-07,4.07678699826431e-07,-1.03269170558679e-07,5.83647713492461e-12,2.10390732613442e-10,-2.66078825639256e-10,2.68014776890381e-10,-1.38777878024833e-10,-2.89481979749156e-11,6.48052389082753e-22,-2.47198095093173e-11,1.21430643288844e-10 +10.308,-1.59680834070034e-06,-6.353094818487e-07,1.49577785975991e-06,-3.31713087553531e-10,-9.57204718265992e-10,-0.0799999968137468,-1.33271518820714e-09,4.79925994778582e-10,2.7417521378251e-10,5.8373444966626e-12,2.10321343674403e-10,-2.65849842140427e-10,-3.12037179949032e-08,8.91016860987923e-08,-1.8403572936426e-08,-3.25260651745728e-12,-1.9081958235747e-11,9.19403442267938e-11 +10.31,2.06235365417251e-09,-6.77664492576557e-09,-1.80202220159686e-09,-3.3166268689766e-10,-9.56517476335961e-10,-0.0799999968142999,2.02669607875608e-07,4.08035106570826e-07,-1.03342784850425e-07,5.82346670885478e-12,2.10314404780499e-10,-2.65711064262349e-10,2.67364255735007e-10,-1.30971622436263e-10,-2.2551405187701e-11,-4.3368086899431e-12,-1.12757025938505e-11,1.03216046820644e-10 +10.312,-1.59599766226884e-06,-6.33677341422417e-07,1.4953644886205e-06,-3.31689793686696e-10,-9.5636346064687e-10,-0.0799999968148097,-1.3316457311842e-09,4.79402108288837e-10,2.74085008161759e-10,5.81999726190283e-12,2.10276240864028e-10,-2.65436977953144e-10,-3.02958071181432e-08,4.60829290940127e-08,8.0724706444731e-08,2.168404344324e-12,-2.55871712940027e-11,1.00613961636134e-10 +10.314,2.05702707124777e-09,-6.77472731733242e-09,-1.80092586156422e-09,-3.31639406908613e-10,-9.55676371372505e-10,-0.0799999968153617,2.02548424647135e-07,4.08219438287202e-07,-1.03019886024646e-07,5.83214032623208e-12,2.10212056095323e-10,-2.65308608415804e-10,2.66876364757218e-10,-1.34007388519189e-10,-2.13587827979573e-11,-4.33680868994057e-13,-3.03576608295904e-11,6.41847686111204e-11 +10.316,-1.59518746857025e-06,-6.32044463669268e-07,1.49495240907641e-06,-3.31666465125391e-10,-9.55522612422488e-10,-0.0799999968158709,-1.33057822572517e-09,4.7886607873476e-10,2.73999573030567e-10,5.81826253842685e-12,2.10154810220709e-10,-2.651802388787e-10,-2.04025706694636e-08,1.14010364103061e-08,1.41453905868867e-07,-7.15573433775848e-12,-1.90819582124114e-11,9.19403441973384e-11 +10.318,2.05170475834487e-09,-6.77281185301748e-09,-1.7998298632721e-09,-3.31616133858459e-10,-9.54835752131622e-10,-0.0799999968164224,2.02466814364458e-07,4.08265042432843e-07,-1.0245407040117e-07,5.80351738888105e-12,2.10135728262474e-10,-2.64940847039015e-10,2.68556878272341e-10,-1.44415729428206e-10,-3.13334428152463e-11,-2.16840435142956e-13,-2.38524478180063e-11,9.36750677321745e-11 +10.32,-1.59437760131279e-06,-6.30411403499537e-07,1.4945425927948e-06,-3.31643251055835e-10,-9.54682069509438e-10,-0.0799999968169307,-1.32950399821208e-09,4.78288415817048e-10,2.73874239259306e-10,5.81739517668628e-12,2.10059400429437e-10,-2.64805538607771e-10,0.0572709707536108,0.0219507722669067,-0.0525859046391981,1.62326749264493e-09,6.08671099633227e-09,3.43995665286123e-09 +10.322,2.04638674235202e-09,-6.77089869935421e-09,-1.79873436631506e-09,-3.31592864277752e-10,-9.53995514529904e-10,-0.0799999968174816,0.000229286349828884,8.8211354110089e-05,-0.000210446072627264,1.2296587359463e-11,2.34482572247811e-10,-2.51181020427565e-10,2.62500524787737e-08,-7.43177221146766e-09,-4.86232148291641e-09,4.07009495551794e-10,-3.82983575406531e-09,4.66467142687326e-09 +10.324,-6.77232201997356e-07,-2.7756598705922e-07,6.52758302285839e-07,-3.31594064706398e-10,-9.53744139220447e-10,-0.0799999968179354,-1.22450378829699e-09,4.4856132697118e-10,2.54424953327642e-10,7.44543315889328e-12,1.94740057413178e-10,-2.4614685290028e-10,-0.155855869035943,-0.0590660172415528,0.142785542731656,-3.81877689192928e-09,-2.26966882788166e-08,-1.69829428298168e-09 +10.326,2.04148872719884e-09,-6.76910445404633e-09,-1.79771666650175e-09,-3.31563082545117e-10,-9.53216554300251e-10,-0.0799999968184662,-0.000394137126314819,-0.000148052714856096,0.000360696098299298,-2.97852020825251e-12,1.43695819132555e-10,-2.57974197559491e-10,-3.22086107784685e-08,7.66053886991525e-09,4.89853383550784e-09,-5.16080234103214e-10,4.31555832736225e-09,-5.16513914972208e-09 +10.328,-2.25378070725646e-06,-8.69776846483539e-07,2.09554269548287e-06,-3.31605978787231e-10,-9.53169355943917e-10,-0.0799999968189673,-1.35333823141085e-09,4.79203482450838e-10,2.74019088669672e-10,5.38111222248065e-12,2.12002290722625e-10,-2.66807409499166e-10,0.153185834660031,0.0573461476222095,-0.141272455820118,3.22051413315055e-09,2.65035389468208e-08,-3.19536064271992e-09 +10.33,2.03607537427319e-09,-6.76718764011652e-09,-1.79662059014707e-09,-3.31541558096227e-10,-9.52368545137361e-10,-0.0799999968195334,0.000218606212325237,8.13318756327167e-05,-0.000204393724981112,9.90353632434828e-12,2.49709974919826e-10,-2.7075564013037e-10,-8.16024765120994e-10,3.63207727782574e-10,9.8684081739608e-10,-3.03576608295873e-10,3.95950633391619e-10,-1.89084858881435e-10 +10.332,-1.37935585795522e-06,-5.44449343952563e-07,1.27796779555815e-06,-3.31566364641933e-10,-9.52170516044237e-10,-0.0799999968200503,-1.35660233047134e-09,4.80656313361969e-10,2.77966451939257e-10,4.16680578929675e-12,2.13586093256192e-10,-2.67563748934692e-10,-0.0781601273733577,-0.0295665176573502,0.07331746182002,-2.01639920038789e-09,-1.29844052176615e-08,1.17614251668247e-09 +10.334,2.03064896495131e-09,-6.76526501486308e-09,-1.79550872433931e-09,-3.31524890873069e-10,-9.51514200764336e-10,-0.0799999968206037,-9.40342971681596e-05,-3.69341949966711e-05,8.88761222989359e-05,1.83793952279763e-12,1.97772354049186e-10,-2.6605107006364e-10,2.02127811031487e-09,8.73866950489364e-11,1.39211558916251e-10,4.03323208159892e-11,-9.36750677264424e-11,1.65666091985453e-10 +10.336,-1.75549304662782e-06,-6.92186123939231e-07,1.63347228475386e-06,-3.31559012883842e-10,-9.51379426628041e-10,-0.0799999968211145,-1.34851721803008e-09,4.81005860142164e-10,2.78523298174922e-10,4.32813507256069e-12,2.13211392985286e-10,-2.6690108456675e-10,0.0359304421151741,0.0142377858693372,-0.0331800341078175,1.0002849243349e-09,5.75060832286183e-09,-2.16840434497054e-10 +10.338,2.02525489607919e-09,-6.76334099142251e-09,-1.79439463114661e-09,-3.31507578332779e-10,-9.50661355192395e-10,-0.0799999968216713,4.96874712925847e-05,2.00169484806967e-05,-4.38440141323784e-05,5.83907922013858e-12,2.20774787340641e-10,-2.66918431801629e-10,2.623443996614e-09,-6.17995237782757e-11,-2.29959280753311e-10,1.89084858881994e-10,-2.35922392709226e-10,2.81025203078676e-10 +10.34,-1.5567431614575e-06,-6.12118330016453e-07,1.45809622822436e-06,-3.31535656566961e-10,-9.50496327478678e-10,-0.0799999968221822,-1.33802344204363e-09,4.80758662047051e-10,2.77603461051909e-10,5.08447450808858e-12,2.12267703414449e-10,-2.65776983754436e-10,-0.0172883291203453,-0.00671284382269449,0.0160462379250942,-2.21177243187092e-10,-3.13594636369777e-09,4.9960036108144e-10 +10.342,2.01990280231101e-09,-6.76141795677432e-09,-1.7932842173024e-09,-3.31487240434747e-10,-9.49812284378737e-10,-0.0799999968227344,-1.94658451887889e-05,-6.83442681007832e-06,2.03409375679914e-05,4.95437024739031e-12,2.08231001885851e-10,-2.64920030357303e-10,2.1858057898399e-09,-1.90385901488501e-10,-2.78314697677085e-10,1.77592315853165e-10,-2.52402265754679e-10,2.69749500514449e-10 +10.344,-1.63460654221265e-06,-6.39456037256764e-07,1.53945997849632e-06,-3.31515839085972e-10,-9.49663403471135e-10,-0.0799999968232419,-1.32928021888427e-09,4.79997118441097e-10,2.76490202261201e-10,5.79484377150116e-12,2.11258094351431e-10,-2.64697985752378e-10,0.0647028030230461,0.0245192197430946,-0.0601607203724068,1.9602375278528e-09,7.23379689479855e-09,3.47118167545823e-09 +10.346,2.01458568143548e-09,-6.75949796830055e-09,-1.79217825649336e-09,-3.31464061059661e-10,-9.48967252001331e-10,-0.0799999968237932,0.000239345366903367,9.12424521622893e-05,-0.000220301943921609,1.27953203588007e-11,2.37166189465042e-10,-2.51035303655472e-10,2.72913744554731e-08,-7.52869988573766e-09,-5.0791619174417e-09,5.18465478882452e-10,-3.972516759986e-09,4.76355066503125e-09 +10.348,-6.77225074598858e-07,-2.74486228607485e-07,6.58252202809587e-07,-3.31464657804537e-10,-9.48714738713274e-10,-0.079999996824246,-1.22011472106234e-09,4.49882318898137e-10,2.56173554591427e-10,7.86870568703166e-12,1.95368027311481e-10,-2.45643783092247e-10,-0.158581355252081,-0.0594773475700647,0.146178418778154,-3.81747584932088e-09,-2.34144301169758e-08,-1.48752538067831e-09 +10.35,2.00970522255123e-09,-6.75769843902496e-09,-1.79115356227499e-09,-3.31432586236913e-10,-9.48185779892086e-10,-0.0799999968247758,-0.000394980054104887,-0.000146666938117943,0.000364411731190942,-2.47458303848119e-12,1.43508468997149e-10,-2.56985405178184e-10,-3.15166729518386e-08,7.39859562498947e-09,4.6824523425009e-09,-4.47992337671784e-10,4.19499504575829e-09,-4.95783969431333e-09 +10.352,-2.25714529101823e-06,-8.61153981079193e-07,2.11589912757319e-06,-3.31474556136691e-10,-9.48140704837286e-10,-0.0799999968252739,-1.34618141286968e-09,4.79476701398091e-10,2.74903363961429e-10,6.07673633634473e-12,2.12148007494513e-10,-2.65475141869498e-10,0.153816939811957,0.0569248681976537,-0.143086696585292,3.29423988087922e-09,2.66687713579235e-08,-3.08607306376206e-09 +10.354,2.00432049689975e-09,-6.75578053221937e-09,-1.79005394881915e-09,-3.31408279291567e-10,-9.47337187862107e-10,-0.0799999968258377,0.000220287705143148,8.10325346727473e-05,-0.000207935055150417,1.07023764850401e-11,2.50183554428879e-10,-2.69329697433237e-10,2.3621566941906e-08,-6.31287556946224e-09,-3.01473256078333e-09,-5.39932681891154e-11,-3.01755148643877e-09,3.9560368869365e-09 +10.356,-1.37599447044574e-06,-5.3702384238824e-07,1.28415890697162e-06,-3.3143174663075e-10,-9.4713997061957e-10,-0.0799999968263513,-1.25169514510207e-09,4.54225199120245e-10,2.62844433718297e-10,5.86076326358829e-12,2.00077801548759e-10,-2.49650994321754e-10,-0.0381637972131623,-0.0135813977852664,0.0382497387704185,-4.39101879856726e-10,-1.37507193132022e-08,9.32153659816343e-09 +10.358,1.99931371631934e-09,-6.75396363142289e-09,-1.78900257108427e-09,-3.31384836238513e-10,-9.46536876655912e-10,-0.0799999968268363,6.76325162905158e-05,2.67069435316876e-05,-5.49361000687599e-05,8.94596896561338e-12,1.95180677176076e-10,-2.32043551040587e-10,2.26289256430363e-09,-1.66359981346213e-09,-2.13945614696611e-09,3.77519196459536e-10,-9.09428782281038e-10,8.30065183255084e-10 +10.36,-1.1054644052837e-06,-4.30196068261501e-07,1.0644145066966e-06,-3.31395962754888e-10,-9.46359247910866e-10,-0.0799999968272794,-1.24264357484485e-09,4.47570799866397e-10,2.54286609130433e-10,7.37084004942626e-12,1.96440086419635e-10,-2.46330733588734e-10,-0.0804921092394283,-0.0300989714827369,0.0694318761183021,-2.32734838345786e-09,-5.76231770634634e-09,-7.71084585068942e-09 +10.362,1.99434314201996e-09,-6.75217334822342e-09,-1.78798542464775e-09,-3.31355352878315e-10,-9.45751116310234e-10,-0.0799999968278216,-0.000254335920667162,-9.36889423992469e-05,0.000222791404404418,-3.6342456821702e-13,1.72131406350693e-10,-2.62886934443341e-10,-3.61604734870543e-08,8.90672084696644e-09,6.39538335483881e-09,-8.34618832379154e-10,5.14302142540109e-09,-5.87464105139414e-09 +10.364,-2.12280808795269e-06,-8.04951837858614e-07,1.95558012431457e-06,-3.31397416453161e-10,-9.45670722285463e-10,-0.079999996828331,-1.38728546879312e-09,4.83197683254275e-10,2.79868142549797e-10,4.03236471990853e-12,2.17012172121247e-10,-2.69829297794318e-10,0.101742520051208,0.0369028760923805,-0.0907898507364678,1.81018394718216e-09,1.78286205243747e-08,-2.46504205939277e-09 +10.366,1.98879400014479e-09,-6.75024055749041e-09,-1.78686595207755e-09,-3.31339223419436e-10,-9.44883067621749e-10,-0.0799999968289009,0.000152634159537624,5.39225619702589e-05,-0.000140367998541413,6.87731122051081e-12,2.43445888448184e-10,-2.72747102680911e-10,1.75006493687111e-09,4.41920805451348e-10,1.13646071716799e-09,-2.66280053562828e-10,2.6150956397935e-10,-5.29090659873261e-11 +10.368,-1.51227144980226e-06,-5.89261589977602e-07,1.39410813014898e-06,-3.31369907208279e-10,-9.44696938731671e-10,-0.079999996829422,-1.38028520904563e-09,4.8496536647608e-10,2.84413985418468e-10,2.96724450565734e-12,2.18058210377164e-10,-2.70040934058267e-10,0.00763724752498492,0.00368959245425787,-0.00545495840403569,4.33897709428602e-10,-2.42427605767705e-09,4.34981911601087e-09 +10.37,1.9832728593086e-09,-6.7483006960245e-09,-1.78572829613588e-09,-3.31327354441413e-10,-9.4401083478024e-10,-0.0799999968299811,0.000183183149637574,6.86809317872953e-05,-0.000162187832157563,8.6129020582258e-12,2.33748784217473e-10,-2.55347826216862e-10,3.09873654512273e-08,-7.24984308692384e-09,-4.99231732339628e-09,6.54858112181718e-10,-4.20670442922048e-09,4.9673806734307e-09 +10.372,-7.79538851252044e-07,-3.14537862828451e-07,7.45356801518798e-07,-3.31335455600046e-10,-9.43761943594801e-10,-0.0799999968304434,-1.25633574724074e-09,4.55965994128388e-10,2.64444716124886e-10,5.58667695438392e-12,2.01231392660284e-10,-2.50171411364547e-10,-0.138939632656711,-0.051269167218951,0.126684813169773,-3.05549856249932e-09,-2.04376446322253e-08,-1.37737043992589e-09 +10.374,1.97824751631964e-09,-6.74647683204799e-09,-1.78467051727138e-09,-3.31305007733596e-10,-9.43205909209599e-10,-0.0799999968309818,-0.000372575380989208,-0.000136395737088486,0.000344551420521474,-3.60909219177014e-12,1.51998205688581e-10,-2.60857307976565e-10,-2.694166504475e-08,7.34937284641186e-09,4.21624540836256e-09,-1.14708589848992e-10,3.7036346212113e-09,-4.53977133663231e-09 +10.376,-2.26984037520871e-06,-8.60120811182336e-07,2.12356248360454e-06,-3.31349891968813e-10,-9.43153950772047e-10,-0.0799999968314868,-1.36410240741973e-09,4.85363485514032e-10,2.81309697758334e-10,5.12784259498801e-12,2.16045931145127e-10,-2.68330496711074e-10,0.14674355505431,0.0538101776544269,-0.13593018860124,3.45144919588998e-09,2.49804517349126e-08,-2.59688104350774e-09 +10.378,1.97279110668996e-09,-6.74453537810593e-09,-1.78354527848035e-09,-3.31284496363216e-10,-9.42341725485019e-10,-0.0799999968320551,0.000214398839227965,7.88449735291977e-05,-0.000199169333883426,1.01967045917883e-11,2.5192001262822e-10,-2.71244832150595e-10,2.69093016098893e-08,-6.42172946763021e-09,-3.47606058520499e-09,2.27899296656402e-10,-3.39355279987886e-09,4.26308294221206e-09 +10.38,-1.41224501829657e-06,-5.44740917065439e-07,1.32688514807057e-06,-3.31309105150446e-10,-9.42146270721533e-10,-0.0799999968325718,-1.25646520098013e-09,4.59676567643503e-10,2.67405455417509e-10,6.03943978161392e-12,2.02471719945607e-10,-2.5127816494222e-10,-0.111442802167126,-0.0402575545605574,0.10538230122109,-2.23801012444394e-09,-2.28571502003165e-08,6.57807142087539e-09 +10.382,1.96776524588604e-09,-6.74269667183536e-09,-1.78247565665868e-09,-3.31260338604089e-10,-9.41531838605236e-10,-0.0799999968330602,-0.000231372369440489,-8.21852447130144e-05,0.000222359871000888,1.2446640940135e-12,1.60491411826964e-10,-2.44932546467096e-10,-2.14789666086402e-08,5.24081646130824e-09,2.28614870087274e-09,1.26851654180105e-10,2.61075883132203e-09,-3.33413852079879e-09 +10.384,-2.33773449605842e-06,-8.73481895917461e-07,2.21632463207402e-06,-3.3130412649407e-10,-9.41504305074226e-10,-0.0799999968335515,-1.34238106741468e-09,4.80639833488733e-10,2.76550050220999e-10,6.54684639833428e-12,2.12914755270894e-10,-2.64614719025414e-10,0.116653988429557,0.0417397641493376,-0.112050621842334,2.62680502349729e-09,2.36919858731479e-08,-6.38985392375913e-09 +10.386,1.96239572161638e-09,-6.7407741125014e-09,-1.78136945645779e-09,-3.31234151218496e-10,-9.40680179584152e-10,-0.0799999968341187,0.000235243584277896,8.47738118843918e-05,-0.000225842616368596,1.17518841880062e-11,2.55259355319587e-10,-2.70491962162141e-10,-3.00692630532099e-09,8.00574884216815e-10,1.22753369971906e-09,-2.58907478788869e-10,6.48786580039108e-10,-4.99600361110805e-10 +10.388,-1.39676015894694e-06,-5.34386648379931e-07,1.31295416659974e-06,-3.31257118957318e-10,-9.40483267652947e-10,-0.0799999968346335,-1.35440877263597e-09,4.838421330256e-10,2.81460185019875e-10,5.51121648317892e-12,2.1550990159105e-10,-2.66613120469857e-10,-0.0212471502626137,-0.00758030721417773,0.0225755948565262,-4.32596666821812e-10,-7.17134684968971e-09,4.63171168085909e-09 +10.39,1.95697808652584e-09,-6.7388387439693e-09,-1.78024361571771e-09,-3.31212106352563e-10,-9.39818139977788e-10,-0.0799999968351851,0.000150254983227451,5.44525830276842e-05,-0.000135540236942501,1.00214975207191e-11,2.26573967920832e-10,-2.51965115438707e-10,2.86556260491241e-08,-7.68612604118592e-09,-4.90308748463228e-09,4.28043017697372e-10,-4.03626784772993e-09,4.82426598669256e-09 +10.392,-7.95740226037199e-07,-3.16576316269218e-07,7.70793218829793e-07,-3.31217032967235e-10,-9.39576971781264e-10,-0.0799999968356413,-1.23978626843948e-09,4.5309762886086e-10,2.61847835081348e-10,7.22338855396822e-12,1.99364830200132e-10,-2.47316056523089e-10,-0.0543301016705949,-0.0195231541035636,0.0497979685297029,-1.02088476561324e-09,-9.70404312463724e-09,1.47104550765599e-09 +10.394,1.95201894145208e-09,-6.73702635345386e-09,-1.77919622437739e-09,-3.31183212798347e-10,-9.39020680656988e-10,-0.0799999968361744,-6.70654234549048e-05,-2.36400333865618e-05,6.36516371762884e-05,5.93795845826663e-12,1.87757795422287e-10,-2.46080933408084e-10,-3.02275565688894e-09,-2.30501381870367e-10,-5.43402128849618e-10,7.50267903359801e-11,6.11490025281685e-11,-8.84708972748005e-11 +10.396,-1.06400191985691e-06,-4.11136449815497e-07,1.02539976753503e-06,-3.31193281133402e-10,-9.38825940599575e-10,-0.0799999968366256,-1.25187729106704e-09,4.52175623333378e-10,2.59674226565949e-10,7.52349571531224e-12,1.99609426210245e-10,-2.47669940112188e-10,-0.0494144090783731,-0.0180051535883498,0.0434143219788954,-1.53436291450116e-09,-4.32553298732828e-09,-3.7209818559984e-09 +10.398,1.94701143228782e-09,-6.73521765096052e-09,-1.77815752747112e-09,-3.31153118815486e-10,-9.38222242952147e-10,-0.079999996837165,-0.000264723059768375,-9.5660647739953e-05,0.000237308925091851,-1.99493199737355e-13,1.70455663472976e-10,-2.60964860832076e-10,-3.03748996439908e-08,7.36672008111815e-09,5.17468012880883e-09,-6.48352899147022e-10,4.2626492613209e-09,-4.84334794489866e-09 +10.4,-2.12289415893029e-06,-7.93779040775267e-07,1.97463546790233e-06,-3.31194079106201e-10,-9.38144117945683e-10,-0.0799999968376695,-1.37337688964299e-09,4.81642503657848e-10,2.80372947081182e-10,4.93008411872444e-12,2.16660023255527e-10,-2.67043331891781e-10,0.158461699722195,0.0574810306837273,-0.144228846233805,3.59651544656811e-09,2.36624955740563e-08,1.16920362280811e-09 +10.402,1.94151792472924e-09,-6.73329108094589e-09,-1.7770360356828e-09,-3.31133398479011e-10,-9.37355602859125e-10,-0.0799999968382332,0.000369123739120617,0.000134263474995033,-0.000339606459843561,1.41865685865399e-11,2.65105645769233e-10,-2.56288046340842e-10,2.79079060207168e-08,-7.1951992974309e-09,-4.15401220363075e-09,2.01661604082896e-10,-3.74743638895567e-09,4.56752691221829e-09 +10.404,-6.46399202447988e-07,-2.56725140795194e-07,6.16209628528236e-07,-3.31137332831855e-10,-9.37083695362606e-10,-0.0799999968386947,-1.26174526556014e-09,4.52861706468127e-10,2.63756898266661e-10,5.73673053505593e-12,2.01670277699706e-10,-2.48773224242909e-10,-0.124077622701264,-0.0452506900541784,0.115167080352151,-2.81697408455246e-09,-2.12846233693711e-08,2.37049962992283e-09 +10.406,1.936470943667e-09,-6.73147963412002e-09,-1.77598100808973e-09,-3.31110451556871e-10,-9.36548921748326e-10,-0.0799999968392283,-0.000127186751684383,-4.6739285221661e-05,0.000121061861564991,2.9186722483313e-12,1.79967152291758e-10,-2.46806047821151e-10,-1.58060413715832e-09,1.19262238973419e-11,-3.47920477150675e-10,8.8904578143831e-11,2.29850860567017e-11,-6.33174068731734e-11 +10.408,-1.15514620918546e-06,-4.43682281681818e-07,1.10045707478815e-06,-3.31125658142861e-10,-9.36363826753439e-10,-0.0799999968396819,-1.26806768210877e-09,4.52909411363717e-10,2.62365216358058e-10,6.09234884763122e-12,2.01762218043933e-10,-2.49026493870402e-10,-0.0273356112677517,-0.00940300160888959,0.0226149382254517,-9.12247707929423e-10,-7.58074159021678e-10,-3.89532156527764e-09 +10.41,1.93139867293857e-09,-6.72966799647456e-09,-1.7749315472243e-09,-3.3108608216148e-10,-9.3574187287615e-10,-0.0799999968402244,-0.000236529196755378,-8.43512916572152e-05,0.000211521614466788,-7.30318583385992e-13,1.76934855655671e-10,-2.6238733408226e-10,-2.84644269959936e-08,7.52045994922676e-09,5.12632471194482e-09,-5.25621213220855e-10,4.11433040414707e-09,-4.73406036593964e-09 +10.412,-2.10126299620729e-06,-7.81087448310791e-07,1.94654353265558e-06,-3.31128579417195e-10,-9.35656087330816e-10,-0.0799999968407314,-1.38192539009278e-09,4.82991251160634e-10,2.82870515205844e-10,3.9898639947471e-12,2.18219539660526e-10,-2.67962735334167e-10,0.14890749868791,0.0535297127281863,-0.134898706927184,3.48636050584508e-09,2.19134606294325e-08,1.37216626946883e-09 +10.414,1.9258709713782e-09,-6.72773603146992e-09,-1.77380006516348e-09,-3.31070122705501e-10,-9.34868994717508e-10,-0.0799999968412963,0.000359100797996198,0.000129767559255506,-0.000328073213241889,1.32151234399928e-11,2.64588698173392e-10,-2.56898669004386e-10,2.93535811978021e-08,-7.09436849549368e-09,-4.22426850446849e-09,3.1463547045478e-10,-3.86496390449969e-09,4.67421240604821e-09 +10.416,-6.64859804222658e-07,-2.62017211288823e-07,6.3425067968817e-07,-3.31075718923435e-10,-9.34597732538123e-10,-0.079999996841759,-1.26451106530159e-09,4.54613777178662e-10,2.65973441187972e-10,5.24840587656608e-12,2.02759684042529e-10,-2.49265885709976e-10,-0.120710151012992,-0.0437302167155615,0.111748724197538,-2.63092499175274e-09,-2.08305594995248e-08,2.41646980203514e-09 +10.418,1.92081292711699e-09,-6.72591757636121e-09,-1.77273617139873e-09,-3.31049129081995e-10,-9.34057955981338e-10,-0.0799999968422933,-0.000123739806055933,-4.51533076067983e-05,0.000118921683548413,2.69142347297831e-12,1.81266460175264e-10,-2.47232789796242e-10,-6.10676873792993e-10,1.82145965482423e-11,-4.20128341808698e-10,1.82362805412685e-10,-6.33174068506521e-11,-1.47451495734763e-11 +10.42,-1.15981902844633e-06,-4.42630441715997e-07,1.10993741388177e-06,-3.31064953229543e-10,-9.33872666697422e-10,-0.079999996842748,-1.26695377279676e-09,4.54686635564855e-10,2.64292927820738e-10,5.97785709821674e-12,2.02506414415127e-10,-2.4932486630827e-10,-0.0281694461072782,-0.00970276637746221,0.0235002257270933,-8.55218673656754e-10,-9.6103680569136e-10,-3.76868675156044e-09 +10.422,1.9157451120258e-09,-6.72409882981895e-09,-1.77167899968744e-09,-3.31025217653602e-10,-9.33247930323677e-10,-0.0799999968432906,-0.000236417590485033,-8.39643731166429e-05,0.000212922586456775,-7.29451221648328e-13,1.77422312952499e-10,-2.62307536802482e-10,-2.78742957535222e-08,7.40206507199467e-09,5.02820441533713e-09,-4.68592178948338e-10,4.04147201815786e-09,-4.6160991695753e-09 +10.424,-2.10548939038636e-06,-7.78487934182531e-07,1.96162775970878e-06,-3.31067871034429e-10,-9.33162977445612e-10,-0.0799999968437972,-1.37845095581084e-09,4.8429489585283e-10,2.84405745482084e-10,4.10348838242359e-12,2.18672302487756e-10,-2.67789262986569e-10,0.0956377448834154,0.0337664014028235,-0.0868051342311527,2.01531499821569e-09,1.64178566574901e-08,-1.829265905388e-09 +10.426,1.91023130820256e-09,-6.72216165023554e-09,-1.77054137670551e-09,-3.31008803700072e-10,-9.32373241113726e-10,-0.0799999968443618,0.000146133389048586,5.11012324946363e-05,-0.000134297950467797,7.33180877121353e-12,2.43093739582453e-10,-2.69624600424033e-10,2.80354624064498e-08,-6.38248134898625e-09,-3.33348799952319e-09,1.986258379993e-10,-3.43822192938526e-09,4.29257324130364e-09 +10.428,-1.52095583419182e-06,-5.74083004203918e-07,1.42443595783741e-06,-3.31038543799345e-10,-9.32190602487282e-10,-0.0799999968448757,-1.266309106185e-09,4.58764970456877e-10,2.71071793483987e-10,4.89799173442105e-12,2.04919414770211e-10,-2.50618970021349e-10,-0.0850816625981645,-0.0293820834865098,0.0807435768797182,-1.55127646839179e-09,-1.86252922806711e-08,6.31526081426501e-09 +10.43,1.90516607177782e-09,-6.72032659035371e-09,-1.76945708953158e-09,-3.30989211733135e-10,-9.31553563454646e-10,-0.0799999968453643,-0.000194193261344034,-6.64271014513902e-05,0.00018867635705104,1.12670289764706e-12,1.68592570459777e-10,-2.44363557166976e-10,-1.93532798292645e-08,4.97583745035293e-09,2.01000240754034e-09,2.30501381869823e-10,2.35185135253228e-09,-3.04443970031078e-09 +10.432,-2.29772887956788e-06,-8.39791410009449e-07,2.17914138604149e-06,-3.31034036987754e-10,-9.31516232205443e-10,-0.0799999968458531,-1.34372222550205e-09,4.78668320258286e-10,2.79111803114147e-10,5.81999726190024e-12,2.14326820180339e-10,-2.62796728822591e-10,0.103087221266911,0.0358785659827696,-0.0993270620834895,2.44335801591279e-09,2.11605906408293e-08,-5.90066190353379e-09 +10.434,1.89979118287581e-09,-6.71841191707268e-09,-1.76834064231912e-09,-3.30965931744087e-10,-9.30696256173924e-10,-0.0799999968464155,0.000218155623723747,7.70871624797361e-05,-0.00020863189128305,1.09001349613015e-11,2.53234933023122e-10,-2.67966204781119e-10,-1.26287869066056e-09,6.07803737948639e-10,9.17993979474662e-10,-1.33573707649597e-10,4.44522890742952e-10,-3.03576608325185e-10 +10.436,-1.42510638467298e-06,-5.31442760090539e-07,1.34461382090938e-06,-3.30990436447909e-10,-9.3050329247335e-10,-0.079999996846925,-1.34877374026469e-09,4.81099535210081e-10,2.82783779032045e-10,5.28570243130191e-12,2.16104911743311e-10,-2.64011035255891e-10,-0.0758223907979898,-0.027266769693464,0.0727399168064927,-1.90407585531946e-09,-1.30837181366889e-08,1.52568929712194e-09 +10.438,1.89439608791475e-09,-6.71648751893184e-09,-1.76720950720299e-09,-3.30944788934362e-10,-9.29831836526951e-10,-0.0799999968474715,-8.51339394681787e-05,-3.1979916294108e-05,8.23277759428886e-05,3.28383154002446e-12,2.00900060476372e-10,-2.61863447592632e-10,4.0619634392178e-09,-6.74807432155104e-10,-3.46727854760941e-10,1.11889664200529e-10,-4.30211422042347e-10,5.51642065360737e-10 +10.44,-1.76564214254566e-06,-6.59362425266957e-07,1.67392492468089e-06,-3.30977301121749e-10,-9.29699692231445e-10,-0.0799999968479725,-1.33252588650782e-09,4.78400305481461e-10,2.81396867613002e-10,5.73326108810398e-12,2.14384066055141e-10,-2.61804466994449e-10,0.0341101750345095,0.0128972438475518,-0.032302789388361,1.02066792517726e-09,5.20286938529997e-09,2.07299455408254e-10 +10.442,1.88906598436872e-09,-6.71457391770991e-09,-1.76608391973254e-09,-3.3092185589001e-10,-9.2897430026273e-10,-0.0799999968485187,5.13067606698443e-05,1.96090590960933e-05,-4.6883381610541e-05,7.36650324073305e-12,2.2171153801757e-10,-2.61034249770999e-10,3.89575524617408e-09,-8.83407930140997e-10,-7.53737350311749e-10,1.95590071916341e-10,-5.51642065360499e-10,6.73940070416842e-10 +10.444,-1.56041509986622e-06,-5.80926188882558e-07,1.48639139823867e-06,-3.30947835108786e-10,-9.28812846079374e-10,-0.0799999968490166,-1.31694286552312e-09,4.74866673760895e-10,2.78381918211754e-10,6.5156213757696e-12,2.12177497793699e-10,-2.5910870671278e-10,-0.0168384390604006,-0.00613749985426113,0.0157416234054996,-2.30284541435154e-10,-3.33197011645857e-09,8.61290205793693e-10 +10.446,1.88379821290663e-09,-6.71267445101487e-09,-1.76497039205969e-09,-3.30895793404506e-10,-9.28125590271556e-10,-0.0799999968495552,-1.60469955717505e-05,-4.94094032094854e-06,1.60831120114506e-05,6.44536507499254e-12,2.08383657551737e-10,-2.57589088947824e-10,2.83480921043476e-09,-9.61904167481642e-10,-7.86371835734467e-10,1.54607229795675e-10,-4.82253126344999e-10,5.68989300149032e-10 +10.448,-1.62460308215321e-06,-6.0068995016635e-07,1.55072384628446e-06,-3.30922053648486e-10,-9.27979311449167e-10,-0.079999996850047,-1.30560362868138e-09,4.71019057090969e-10,2.75236430868816e-10,7.13405029495224e-12,2.10248485288319e-10,-2.56832749512184e-10,0.0635341268877405,0.0227093293364949,-0.0597139086066499,1.89973904662868e-09,6.94800120215455e-09,3.53189699708799e-09 +10.45,1.8785757983919e-09,-6.7107903747865e-09,-1.76386944633622e-09,-3.30867257203327e-10,-9.27284596330402e-10,-0.0799999968505825,0.000238089511979296,8.58963770250615e-05,-0.000222772522415229,1.40443212615098e-11,2.36175662360364e-10,-2.43461500959468e-10,2.69583617580613e-08,-8.01615718243831e-09,-5.3717880837673e-09,4.22838847270232e-10,-4.10478942500768e-09,4.80778611364227e-09 +10.452,-6.7224503423613e-07,-2.57104442066142e-07,6.59633756623645e-07,-3.3086587636344e-10,-9.27034608799726e-10,-0.0799999968510208,-1.19777018164915e-09,4.3895442836122e-10,2.53749278533749e-10,8.82540568403298e-12,1.9382932758829e-10,-2.37601605057617e-10,-0.15678138514929,-0.0553999257248174,0.145692870537241,-3.9241613430949e-09,-2.35111409507878e-08,-1.09287578986563e-09 +10.454,1.87378471766531e-09,-6.70903455707306e-09,-1.76285444922208e-09,-3.30831955580591e-10,-9.26509279020049e-10,-0.0799999968515329,-0.000389036028617794,-0.000135703325874184,0.000359998959733673,-1.65232411086809e-12,1.42131098557223e-10,-2.4783300411893e-10,-3.09288185340663e-08,6.66849388209081e-09,4.31057099736881e-09,-5.3082538364902e-10,3.99073135648552e-09,-4.563190103558e-09 +10.456,-2.22838914870713e-06,-7.99917745562817e-07,2.09962959555818e-06,-3.30872485659883e-10,-9.26466084405497e-10,-0.0799999968520121,-1.3214854557854e-09,4.6562840388958e-10,2.70991562523223e-10,6.70210414943713e-12,2.0979225301423e-10,-2.55854365471847e-10,0.151527827958968,0.0527517279920919,-0.141774320469132,3.19232487666579e-09,2.6348281195721e-08,-2.93168267437263e-09 +10.458,1.86849877584216e-09,-6.7071720434575e-09,-1.76177048297199e-09,-3.30805147163993e-10,-9.25670110007992e-10,-0.0799999968525563,0.000217075283218011,7.53035860941607e-05,-0.000207098322142791,1.11169753957937e-11,2.47524223340096e-10,-2.59559734816419e-10,-7.5791152867579e-10,-1.63064006741778e-10,6.89118900831634e-10,-4.07226335985464e-10,2.78423117894217e-10,-6.07153216591809e-11 +10.46,-1.3600880158348e-06,-4.98703401186074e-07,1.27123630698674e-06,-3.308280177583e-10,-9.25475987512137e-10,-0.0799999968530504,-1.3245171019001e-09,4.64976147862613e-10,2.7374803812655e-10,5.07319880549473e-12,2.10905945485807e-10,-2.56097226758484e-10,-0.0166158116266957,-0.00562484366917348,0.0177248544754108,-4.3237982638608e-10,-6.28403579169988e-09,4.35502328641191e-09 +10.462,1.86320070743456e-09,-6.70531213886605e-09,-1.76067549081949e-09,-3.30784854368771e-10,-9.24826486226049e-10,-0.0799999968535807,0.000150612036711235,5.28042114174693e-05,-0.000136198904241156,9.38745609024953e-12,2.22388080173299e-10,-2.42139641670773e-10,2.70068798055601e-08,-7.3515412508052e-09,-4.70457006687844e-09,3.02492406122825e-10,-3.87493856448575e-09,4.56752691227435e-09 +10.464,-7.57639868989926e-07,-2.8748655551622e-07,7.26440690022173e-07,-3.30790467933939e-10,-9.24586435191443e-10,-0.0799999968540189,-1.21648958267788e-09,4.35569982859395e-10,2.54929757859038e-10,6.2831684299859e-12,1.95406191227866e-10,-2.37827119109389e-10,-0.127855163521558,-0.0443484735788013,0.116629529708268,-3.18690386580318e-09,-1.84041150375028e-08,-1.59247615094635e-09 +10.466,1.85833474910385e-09,-6.70356985893461e-09,-1.75965577178805e-09,-3.30759721695051e-10,-9.24044861461137e-10,-0.079999996854532,-0.000360808617375169,-0.000124589682897795,0.000330319214592071,-3.36015937296745e-12,1.48771620023263e-10,-2.48509546274561e-10,-2.92646224095444e-08,7.16549215800664e-09,4.53955449622612e-09,-4.38885039421531e-10,3.97598620696141e-09,-4.63344640436147e-09 +10.468,-2.20087433849044e-06,-7.85845287107345e-07,2.04771754839031e-06,-3.30803908571431e-10,-9.2399134871135e-10,-0.079999996855013,-1.33354807231604e-09,4.64231951491418e-10,2.73087975843941e-10,4.52762827229996e-12,2.1131013605571e-10,-2.56360904726833e-10,0.140918435879553,0.0486470984311617,-0.129770549566861,3.05614908380281e-09,2.42922001958466e-08,-2.79984369022719e-09 +10.47,1.85300055681459e-09,-6.70171293112864e-09,-1.75856341988467e-09,-3.30741611181962e-10,-9.23199620916915e-10,-0.0799999968555574,0.000202865126142983,6.99987108268304e-05,-0.000188762983675317,8.86443696224246e-12,2.45940420806639e-10,-2.59708921035468e-10,1.02364948115241e-09,2.61075883134564e-10,7.84637112227924e-10,-2.36789754470886e-10,1.90819582357496e-10,6.93889390390799e-12 +10.472,-1.3894138339186e-06,-5.05850443800054e-07,1.29266561368913e-06,-3.30768450823582e-10,-9.23007587028124e-10,-0.0799999968560518,-1.32945347439143e-09,4.65276255023957e-10,2.76226524292852e-10,3.58046925441652e-12,2.1207341438514e-10,-2.56333149151217e-10,-0.0113682285650206,-0.00379222857023463,0.0120344650862657,-1.34657909823654e-10,-5.36896915817432e-09,4.28736907090455e-09 +10.474,1.84768274291702e-09,-6.69985182610855e-09,-1.7574585137875e-09,-3.30727289304944e-10,-9.22351327259374e-10,-0.0799999968565828,0.000157392211882906,5.48297965458935e-05,-0.000140625123330259,8.32580532294791e-12,2.24464544173944e-10,-2.42559444751852e-10,2.82955082975203e-08,-7.05251829158213e-09,-4.64418000584061e-09,4.46691295063928e-10,-3.91874033223073e-09,4.52155674013253e-09 +10.476,-7.59844986386767e-07,-2.86531257616407e-07,7.30165120367901e-07,-3.3073514760229e-10,-9.22109728851428e-10,-0.079999996857022,-1.21627144120131e-09,4.37066181857619e-10,2.57649804269484e-10,5.36723443467283e-12,1.96398453056212e-10,-2.38246922190681e-10,-0.129941841706767,-0.0448820120912307,0.118837090282207,-3.10537186243274e-09,-1.88560105029781e-08,-1.53609763800474e-09 +10.478,1.84281765715222e-09,-6.69810356138112e-09,-1.75642791457042e-09,-3.30705820367205e-10,-9.21565733447149e-10,-0.0799999968575358,-0.000362375154944104,-0.000124698251819009,0.000334723237798518,-4.09568212678169e-12,1.4904050216204e-10,-2.4870383530387e-10,-2.83581209728464e-08,7.28930804600438e-09,4.53120613943905e-09,-3.1528599175931e-10,3.92307714089887e-09,-4.5423734218178e-09 +10.48,-2.20934560616302e-06,-7.8532426489239e-07,2.06905807156182e-06,-3.30751530330797e-10,-9.2151356684278e-10,-0.0799999968580169,-1.32970392509268e-09,4.66223414041633e-10,2.75774628827238e-10,4.10609046763573e-12,2.12090761619806e-10,-2.5641641587795e-10,0.141796749882995,0.0487130204479004,-0.131448977724872,3.21118999446685e-09,2.45016680555599e-08,-2.75734296506451e-09 +10.482,1.83749884145185e-09,-6.69623866772495e-09,-1.75532481605511e-09,-3.30689396005335e-10,-9.2071737040067e-10,-0.0799999968585614,0.000204811844588065,7.01538299726572e-05,-0.000191072673101145,8.74907785108999e-12,2.47047174384312e-10,-2.59733207164132e-10,1.46795553128947e-09,2.641116492693e-10,7.13947130612479e-10,-1.24032728531913e-10,1.47017814612612e-10,1.73472347313098e-11 +10.484,-1.39009822781085e-06,-5.04708945001792e-07,1.30476737915733e-06,-3.30716534019393e-10,-9.20525378145243e-10,-0.0799999968590558,-1.32383210296753e-09,4.6727986063871e-10,2.78630417349687e-10,3.60995955350813e-12,2.12678832878256e-10,-2.56347026939025e-10,-0.0119957425796036,-0.00395059096894388,0.0125197418787416,-5.42101086242868e-11,-5.50601231275159e-09,4.32032881692119e-09 +10.486,1.83220351303998e-09,-6.6943695482824e-09,-1.75421029438572e-09,-3.30674956167121e-10,-9.19866655069157e-10,-0.0799999968595868,0.000156828874269656,5.43514660968834e-05,-0.000140993705586184,8.53223741659287e-12,2.25023125133308e-10,-2.42451891896449e-10,2.84098916267301e-08,-7.1409891888601e-09,-4.77699477197219e-09,5.28223298435054e-10,-3.96254210000089e-09,4.58313942353173e-09 +10.488,-7.62782730732298e-07,-2.87303080614282e-07,7.40792556812656e-07,-3.30682405069727e-10,-9.1962528564471e-10,-0.0799999968600256,-1.21019253646062e-09,4.38715903883273e-10,2.59522438261801e-10,5.72285274724812e-12,1.96828664478254e-10,-2.380144692449e-10,-0.129292146882112,-0.0444900454326566,0.119041504928095,-3.02600826340731e-09,-1.88967765047051e-08,-1.4632392519592e-09 +10.49,1.82736274289413e-09,-6.69261468466686e-09,-1.75317220463267e-09,-3.30652064756132e-10,-9.19079340411244e-10,-0.0799999968605389,-0.000360339713258736,-0.000123608715633724,0.000335172314126142,-3.57179563703505e-12,1.49436019114496e-10,-2.48304848904285e-10,-2.82766973898277e-08,7.0681308028659e-09,4.31469096562235e-09,-2.36789754470781e-10,3.84111145668078e-09,-4.42614694895384e-09 +10.492,-2.20414158376772e-06,-7.81737943149341e-07,2.08148181331767e-06,-3.30696692252275e-10,-9.19027541568251e-10,-0.0799999968610188,-1.32329932601997e-09,4.66988427094746e-10,2.76781202124296e-10,4.77569372936468e-12,2.12193110304982e-10,-2.55719057040721e-10,0.141158568953638,0.0484009333350283,-0.131981724788371,3.27147163525809e-09,2.44344475208933e-08,-2.64198385394082e-09 +10.494,1.82206954559005e-09,-6.69074673095849e-09,-1.75206507982417e-09,-3.30632961981214e-10,-9.18230567970024e-10,-0.0799999968615618,0.000204294562555753,6.99950177063682e-05,-0.000192754585027284,9.51409090399585e-12,2.47173809198059e-10,-2.58872784320047e-10,1.37124469765135e-09,5.05238212378559e-11,4.95697233260479e-10,-8.47846098883851e-11,9.32413868337766e-11,5.03069808033459e-11 +10.496,-1.3869633335448e-06,-5.01757872323899e-07,1.31046347320862e-06,-3.30658635888659e-10,-9.18038846331459e-10,-0.0799999968620543,-1.31781434722936e-09,4.67190522379697e-10,2.78763991057338e-10,4.43655528981117e-12,2.12566075852317e-10,-2.55517829117508e-10,-0.0720172348766229,-0.0249655740019973,0.0685008894657566,-1.72886878424577e-09,-1.23668436602414e-08,1.30884886262479e-09 +10.498,1.81679828820114e-09,-6.68887796886897e-09,-1.75095002385994e-09,-3.30615215760055e-10,-9.17380303666615e-10,-0.0799999968625838,-8.37743769507073e-05,-2.98672783016101e-05,8.12489728357123e-05,2.59861576701354e-12,1.97706434557098e-10,-2.53637388869549e-10,3.10282398747326e-09,-3.3610267352232e-10,-2.88506198129276e-10,1.66533453693244e-10,-3.1355126830634e-10,4.18068357738684e-10 +10.5,-1.72206084134759e-06,-6.21226985530327e-07,1.63545936455144e-06,-3.30648241425591e-10,-9.17248020593231e-10,-0.0799999968630689,-1.30540305127947e-09,4.65846111685608e-10,2.77609966264821e-10,5.10268910458407e-12,2.11311870779092e-10,-2.53845555686553e-10,0.0326707743925279,0.0118441674632078,-0.0310004796925051,1.03064258516449e-09,5.1278425949863e-09,2.68882138776315e-11 +10.502,1.81157667599602e-09,-6.68701458442222e-09,-1.74983958399488e-09,-3.30594805003637e-10,-9.16535056183498e-10,-0.0799999968635992,4.69087206194478e-05,1.75093915512367e-05,-4.27529459343495e-05,6.72118610767288e-12,2.18217804937051e-10,-2.53529836014038e-10,2.96540136182083e-09,-5.21284404479415e-10,-5.71916645955406e-10,2.37657116209441e-10,-3.98552718582296e-10,4.44089209821974e-10 +10.504,-1.53442595886982e-06,-5.51189419325387e-07,1.46444758081406e-06,-3.3062135668116e-10,-9.16375149373483e-10,-0.079999996864083,-1.29354144583219e-09,4.63760974067691e-10,2.75322299680999e-10,6.05331756942173e-12,2.09717659904763e-10,-2.52069198847266e-10,-0.0158345865893119,-0.00561245081681198,0.0148449683750048,-1.81929124543773e-10,-3.04487338123184e-09,6.36643515711489e-10 +10.506,1.80640251021269e-09,-6.68515954052595e-09,-1.74873829479616e-09,-3.30570591733359e-10,-9.15696185543879e-10,-0.0799999968646075,-1.6429625737793e-05,-4.94041171600875e-06,1.66269275656633e-05,5.99346960949787e-12,2.06038311412124e-10,-2.50983261951193e-10,2.12888517578346e-09,-6.29054100475944e-10,-5.93167008566699e-10,1.65232411086754e-10,-3.64725610824047e-10,4.03323208164512e-10 +10.508,-1.60014446182102e-06,-5.70951066189429e-07,1.53095529107673e-06,-3.30597382802722e-10,-9.15550996127834e-10,-0.0799999968650869,-1.28502590512905e-09,4.61244757665786e-10,2.72949631646732e-10,6.71424721376897e-12,2.08258757461467e-10,-2.50455906014607e-10,0.0628835235234525,0.0216796261841159,-0.0592564960515762,1.91318315356901e-09,7.03083424815843e-09,3.33500588253829e-09 +10.51,1.80126240659217e-09,-6.68331456149529e-09,-1.74764649626957e-09,-3.30543734744504e-10,-9.14863150514034e-10,-0.0799999968656093,0.000235104468355989,8.17780930204452e-05,-0.000220399056640615,1.36462022237731e-11,2.34161648404755e-10,-2.37643238421041e-10,2.62094491075617e-08,-7.59657094173861e-09,-5.17012647971551e-09,4.58183838092475e-10,-3.97902197302268e-09,4.58834359395967e-09 +10.512,-6.59726588397164e-07,-2.43838694107684e-07,6.49359064514368e-07,-3.30542797993827e-10,-9.14614349534215e-10,-0.0799999968660375,-1.18018810869882e-09,4.30858473898835e-10,2.52269125727872e-10,8.54698256613867e-12,1.92342669569378e-10,-2.3210253163877e-10,-0.155403617370952,-0.0529876765793745,0.144941108447596,-3.87428804316055e-09,-2.33333317945002e-08,-1.09981468376955e-09 +10.514,1.79654165415738e-09,-6.6815911275997e-09,-1.74663741976666e-09,-3.30509546814239e-10,-9.14093779835756e-10,-0.0799999968665377,-0.000386510001127749,-0.00013017261329703,0.000359365377149706,-1.85094994886746e-12,1.40828321226765e-10,-2.42042497156119e-10,-3.079096222769e-08,6.76390367321872e-09,4.34732545098615e-09,-4.82469966756891e-10,4.02716054945791e-09,-4.56145538005423e-09 +10.516,-2.20576659290799e-06,-7.64529147295745e-07,2.08682057311303e-06,-3.30550201793622e-10,-9.14051036249308e-10,-0.0799999968670057,-1.30335195760956e-09,4.57914088591707e-10,2.69658427531815e-10,6.61710269911132e-12,2.08451311767207e-10,-2.50348353158985e-10,0.150270514881814,0.0505035189768557,-0.141158830726694,3.24870338963484e-09,2.62767238523528e-08,-3.01147995429505e-09 +10.518,1.79132824632694e-09,-6.67975947124533e-09,-1.74555878605653e-09,-3.30483078403443e-10,-9.13259974588687e-10,-0.0799999968675391,0.000214572058399706,7.18414626104609e-05,-0.00020526994575726,1.11438636096762e-11,2.45935216636211e-10,-2.54088416973303e-10,-8.07676408537974e-10,3.62123526118656e-11,7.46256355351879e-10,-3.40439482159789e-10,3.06178693533114e-10,-7.54604712328004e-11 +10.52,-1.34747835930926e-06,-4.77163296853933e-07,1.26574079008408e-06,-3.30505626339184e-10,-9.13067295382763e-10,-0.079999996868022,-1.30658266324372e-09,4.58058938002154e-10,2.72643452953222e-10,5.25534477047232e-12,2.0967602654134e-10,-2.50650195043916e-10,-0.0763885515499406,-0.0259054400652257,0.0727710762190984,-2.08882390551134e-09,-1.29297614282175e-08,1.23685783839939e-09 +10.522,1.78610191567397e-09,-6.67792723549332e-09,-1.74446821224472e-09,-3.30462057024361e-10,-9.12421270482522e-10,-0.0799999968685417,-9.09821478000229e-05,-3.17802976504305e-05,8.58143591191016e-05,2.78856798763179e-12,1.94216170923347e-10,-2.49140985619706e-10,1.71244312133186e-09,-1.86265933232973e-10,3.65376132127493e-11,-5.37764277552691e-11,-1.20996962449355e-10,2.03830008427233e-10 +10.524,-1.71140695050948e-06,-6.04284487455697e-07,1.6089982265606e-06,-3.30494472067233e-10,-9.1229043069907e-10,-0.0799999968690186,-1.29973289075839e-09,4.57313874269222e-10,2.72789603406073e-10,5.04023905945117e-12,2.09192038691542e-10,-2.49834875010207e-10,0.0346992165781826,0.0122967315054407,-0.0323366797598771,8.8210688753471e-10,5.60055474221392e-09,-1.95156391075084e-10 +10.526,1.78090298411093e-09,-6.67609797999624e-09,-1.7433770538311e-09,-3.30441896068123e-10,-9.11584502327756e-10,-0.0799999968695411,4.78147185126923e-05,1.74066283713267e-05,-4.35323599203923e-05,6.31699553777024e-12,2.166183898922e-10,-2.49921611184006e-10,2.30219489305623e-09,-2.81242043542797e-10,-2.2822455730825e-10,6.89552581700933e-11,-2.32886626649938e-10,2.73218947466403e-10 +10.528,-1.52014807645873e-06,-5.34657973970398e-07,1.43486878687905e-06,-3.30469204085082e-10,-9.11423957139501e-10,-0.0799999968700183,-1.29052411118616e-09,4.56188906095051e-10,2.7187670517684e-10,5.31606009213151e-12,2.08260492184943e-10,-2.48741999220342e-10,-0.016610297035061,-0.00578513497935483,0.0156555229728402,-3.38054237381055e-10,-3.04834282816092e-09,5.25621213221082e-10 +10.53,1.77574088766619e-09,-6.67427322437186e-09,-1.74228954701039e-09,-3.30420631827755e-10,-9.10751460359016e-10,-0.079999996870536,-1.86264696275445e-05,-5.73391154609006e-06,1.90897319709616e-05,4.96477858824617e-12,2.04425018579557e-10,-2.47819126331122e-10,2.54749563459432e-08,-6.38985392380979e-09,-3.94118331723135e-09,2.90349341790963e-10,-3.48419210152176e-09,4.04537514600463e-09 +10.532,-1.5946539549689e-06,-5.57593620154756e-07,1.51122771476289e-06,-3.30449344970729e-10,-9.10606257065183e-10,-0.0799999968710095,-1.1886242858024e-09,4.30629490399815e-10,2.56111971907916e-10,6.47745745929523e-12,1.94323723778857e-10,-2.32560498636325e-10,-0.0257709011218637,-0.00770672169158466,0.024645350800949,-2.34838190560308e-10,-8.31062649253403e-09,4.90319590484735e-09 +10.534,1.77098639052298e-09,-6.67255070641026e-09,-1.74126509912276e-09,-3.30394721997918e-10,-9.099741654639e-10,-0.0799999968714663,-0.000121710074115034,-3.6560798312439e-05,0.00011767113517479,4.02542582600462e-12,1.7118251260941e-10,-2.28206342711726e-10,-2.34804580294385e-08,5.07016303946015e-09,2.4089888070745e-09,-4.66206934161677e-11,2.76948602941916e-09,-3.32373017999812e-09 +10.536,-2.08149425142898e-06,-7.03836813404496e-07,1.981912255462e-06,-3.30433243267425e-10,-9.09921527014745e-10,-0.0799999968719224,-1.28254611792014e-09,4.50910142557653e-10,2.65747927136213e-10,6.29097468563058e-12,2.05401667896532e-10,-2.45855419356316e-10,0.0723861333813382,0.0225377309915905,-0.0704410460132028,1.37585255688335e-09,1.65683439190318e-08,-5.8165278149236e-09 +10.538,1.7658562060513e-09,-6.67074706584003e-09,-1.74020210741421e-09,-3.30369558099175e-10,-9.09152558792314e-10,-0.0799999968724497,0.000167834459410287,5.3590125653913e-05,-0.00016409304887799,9.52883605353742e-12,2.3745588828553e-10,-2.51472453971418e-10,-5.24938165852188e-09,1.20866858188657e-09,1.72821826294151e-09,-4.67074295906651e-10,1.02001740387414e-09,-8.31799906730692e-10 +10.54,-1.4101564137876e-06,-4.89476310788772e-07,1.32554005994982e-06,-3.30395127923211e-10,-9.08971703461603e-10,-0.0799999968729282,-1.30354364455424e-09,4.55744816885201e-10,2.72660800187982e-10,4.42267750200336e-12,2.0948173751203e-10,-2.4918261898324e-10,-0.0594420291140514,-0.0197173861591298,0.0575746462762261,-1.81929124543002e-09,-9.85366302439306e-09,7.73686670257914e-10 +10.542,1.76064203147308e-09,-6.66892408657249e-09,-1.73911146421346e-09,-3.30351867389167e-10,-9.08314631842266e-10,-0.0799999968734464,-6.99336570458919e-05,-2.52794189825975e-05,6.62055362268894e-05,2.25167107181814e-12,1.98041236187962e-10,-2.48377707290387e-10,2.47059317448671e-08,-6.0075642377435e-09,-3.21617732446172e-09,8.67361737988594e-11,-3.15546200280251e-09,3.80251385934201e-09 +10.544,-1.68989104197114e-06,-5.90593986719151e-07,1.59036220485735e-06,-3.30386121238924e-10,-9.08179538516851e-10,-0.0799999968739218,-1.20471991757478e-09,4.3171455993423e-10,2.59796090890136e-10,4.76962219719876e-12,1.96859889500822e-10,-2.33972563545874e-10,-0.00569702028445228,-0.000423017156242929,0.0061790988511884,2.05564731903297e-10,-4.86633303098501e-09,4.56579218877196e-09 +10.546,1.75582315180278e-09,-6.66719722833276e-09,-1.7380722798499e-09,-3.30332788900378e-10,-9.07527192284263e-10,-0.0799999968743823,-9.27217381836985e-05,-2.6971487607569e-05,9.09219316316402e-05,3.07392999943124e-12,1.78575904064024e-10,-2.30114538535301e-10,-2.2316621207108e-08,5.24558695087026e-09,2.47805248540348e-09,2.40692882286433e-11,2.71354119727425e-09,-3.30117877475715e-09 +10.548,-2.06077799470589e-06,-6.98479937149415e-07,1.95404993138387e-06,-3.30373825518926e-10,-9.07465234900595e-10,-0.0799999968748422,-1.2939864024032e-09,4.52696907737708e-10,2.69708300831749e-10,4.86589935011332e-12,2.07714054289918e-10,-2.47177278644901e-10,0.0619673597929888,0.0192093827912398,-0.0602074260874379,1.25550611573793e-09,1.46206831363983e-08,-5.54764567617258e-09 +10.55,1.75064720619317e-09,-6.6653864407018e-09,-1.73699344664657e-09,-3.30313325302978e-10,-9.06696336067103e-10,-0.079999996875371,0.00015514770098834,4.98660435574157e-05,-0.000149907772718192,8.09595446238465e-12,2.37058636609637e-10,-2.52305121239998e-10,-3.61521793418877e-09,1.23859256189797e-09,1.51734094042373e-09,-2.86012533101199e-10,8.43075609347976e-10,-7.14706072130053e-10 +10.552,-1.4401871907526e-06,-4.99015762919774e-07,1.35441884051117e-06,-3.30341441701076e-10,-9.06517000354157e-10,-0.0799999968758514,-1.30844727413996e-09,4.576512779853e-10,2.75777664593443e-10,3.72184921770865e-12,2.11086356727309e-10,-2.50036102933421e-10,0.00489781543955108,0.00197275745196435,-0.00224721435902415,1.83013326714613e-10,-2.49323131587343e-09,3.77822773070464e-09 +10.554,1.74541341709661e-09,-6.66355583558986e-09,-1.7358903359882e-09,-3.30298437906107e-10,-9.05851990640194e-10,-0.0799999968763712,0.000174738962746542,5.77570733652723e-05,-0.000158896630154287,8.82800776924302e-12,2.27085711346144e-10,-2.37192210317182e-10,2.73252557733633e-08,-6.85432613445182e-09,-4.42907429481953e-09,4.00287442081559e-10,-3.78039613502161e-09,4.35589064817679e-09 +10.556,-7.41231339766203e-07,-2.67987469458608e-07,7.18832319893808e-07,-3.30306129669999e-10,-9.05608657508772e-10,-0.0799999968768002,-1.19914625104647e-09,4.30233973447483e-10,2.58061367414159e-10,5.32299898603542e-12,1.95964772187218e-10,-2.32612540340708e-10,-0.134915255450807,-0.044490092768714,0.124631440239408,-3.26279801787762e-09,-1.98656195659966e-08,-1.32446137393492e-09 +10.558,1.74061683209242e-09,-6.66183489969607e-09,-1.73485809051854e-09,-3.30277145910163e-10,-9.05068131551445e-10,-0.0799999968773016,-0.000364922059056628,-0.000120203297709564,0.000339629130803289,-4.223184302266e-12,1.47623233082167e-10,-2.42490055812921e-10,-2.785743640974e-08,7.05989086635816e-09,4.37703259054219e-09,-2.61075883134567e-10,3.84674930797941e-09,-4.3957892881262e-09 +10.56,-2.20091957599255e-06,-7.48800660296811e-07,2.07734884310681e-06,-3.30323022407208e-10,-9.05018164576443e-10,-0.0799999968777702,-1.31057599668541e-09,4.58473536912913e-10,2.75569497776326e-10,4.27869545349727e-12,2.11351769419134e-10,-2.5019569749321e-10,0.142882566542408,0.0470598161492041,-0.133514302555685,3.34563106385651e-09,2.47722849178233e-08,-2.72611794249815e-09 +10.562,1.73537452810568e-09,-6.66000100554842e-09,-1.73375581252744e-09,-3.30260031128349e-10,-9.04222724473769e-10,-0.0799999968783024,0.000206608207112942,6.80359668872316e-05,-0.000194428079419392,9.15933995315855e-12,2.46712372753449e-10,-2.53394527582912e-10,1.756353309463e-09,1.82796486230114e-10,5.40149522301564e-10,-5.70290342731998e-11,7.45931094435268e-11,8.76035355645877e-11 +10.564,-1.37448674754088e-06,-4.76656792747915e-07,1.29963652542933e-06,-3.30286385047396e-10,-9.0403131508543e-10,-0.0799999968787837,-1.30355058344756e-09,4.59204722857833e-10,2.77730095865532e-10,4.05057931640449e-12,2.11650141856908e-10,-2.49845283350952e-10,-0.0128803742221684,-0.00414175377262763,0.0134779178171765,-2.88397777881076e-11,-5.73326108810207e-09,4.25267460135619e-09 +10.566,1.73016032577189e-09,-6.65816418665699e-09,-1.73264489214398e-09,-3.30243828811083e-10,-9.03376123906341e-10,-0.0799999968793018,0.000155086710224251,5.14689517967155e-05,-0.000140516408150668,9.04398084200608e-12,2.23779328401033e-10,-2.36383829177482e-10,2.81800407660185e-08,-7.11561885797295e-09,-4.89538964917679e-09,5.59882001872088e-10,-4.00981331469778e-09,4.51635256967887e-09 +10.568,-7.54139906643941e-07,-2.70780985561075e-07,7.37570892826722e-07,-3.30250209124028e-10,-9.03136197771826e-10,-0.0799999968797293,-1.1908304203835e-09,4.30742247425945e-10,2.58148537268827e-10,6.2901073238926e-12,1.95610888598118e-10,-2.31779873072239e-10,-0.127848048085839,-0.0418641038714555,0.118431944572019,-2.99521692170879e-09,-1.88607809925785e-08,-1.25593979658068e-09 +10.57,1.72539700409036e-09,-6.65644121766729e-09,-1.7316122979949e-09,-3.30218668381788e-10,-9.02593680351949e-10,-0.0799999968802289,-0.00035630548211905,-0.000115987463689088,0.000333211370137358,-2.93688684482775e-12,1.48336204430727e-10,-2.41407588363804e-10,-2.77691281427788e-08,6.79361081279265e-09,4.11606512762305e-09,-2.17490955800544e-10,3.75394160201297e-09,-4.27262392132991e-09 +10.572,-2.17936183512062e-06,-7.34730840317582e-07,2.0704163733766e-06,-3.30261956671407e-10,-9.02542852954102e-10,-0.0799999968806949,-1.30190693295465e-09,4.57916690677124e-10,2.74612797779325e-10,5.42014350069013e-12,2.10626655006175e-10,-2.48870368757564e-10,0.139512126090949,0.0454518473476789,-0.131259364724679,3.27385688003762e-09,2.42440616194047e-08,-2.6385144069881e-09 +10.574,1.72018937635854e-09,-6.65460955090458e-09,-1.73051384680378e-09,-3.30196987807785e-10,-9.01751173731924e-10,-0.0799999968812244,0.000201743022244686,6.58199257016076e-05,-0.0001918260887613,1.01585406753213e-11,2.45312450908335e-10,-2.51961645991755e-10,1.34706698920492e-09,-2.05998412772398e-11,4.31404044432081e-10,-9.12898229232996e-11,5.94142790522186e-11,1.12757025938518e-10 +10.576,-1.37238974614196e-06,-4.71451137511181e-07,1.30311201833148e-06,-3.30221322508706e-10,-9.01561603150469e-10,-0.0799999968817028,-1.29651866499783e-09,4.57834291312015e-10,2.76338413957053e-10,5.05498420899697e-12,2.10864312122384e-10,-2.4841934065381e-10,-0.0710336966684975,-0.0233975551763212,0.0679392846103628,-1.74860126378501e-09,-1.22753369968836e-08,1.33486971476446e-09 +10.578,1.71500330169855e-09,-6.65277821373933e-09,-1.72940849314795e-09,-3.30176767870949e-10,-9.00907716483434e-10,-0.0799999968822181,-8.23917644292731e-05,-2.77702950036668e-05,7.99310496801214e-05,3.16413562018204e-12,1.96211102920806e-10,-2.46622167132698e-10,2.96128139385293e-09,-3.76001313468718e-10,-2.82543086180346e-10,1.27502175483706e-10,-3.0314292745029e-10,3.69496100410553e-10 +10.58,-1.70195680385902e-06,-5.82532317525836e-07,1.62283621705193e-06,-3.30208665966225e-10,-9.00776758738786e-10,-0.0799999968826892,-1.28467353942242e-09,4.56330286058141e-10,2.75208241612332e-10,5.56499291093174e-12,2.09651740412583e-10,-2.46941356252168e-10,0.032070443093804,0.0110127198011862,-0.0305362894353094,9.67542018725848e-10,5.06582623072014e-09,-6.0715321659168e-12 +10.582,1.70986460754086e-09,-6.6509528925951e-09,-1.72830766018151e-09,-3.30154507899305e-10,-9.00069109521784e-10,-0.0799999968832058,4.58900079459856e-05,1.62805842010925e-05,-4.22141080611572e-05,7.03430369508673e-12,2.16474407843694e-10,-2.46646453261362e-10,2.8207145819049e-09,-5.67037736159381e-10,-5.42534767081304e-10,1.77158634984788e-10,-3.99853761189466e-10,4.32813507228899e-10 +10.584,-1.5183967720751e-06,-5.17409980721473e-07,1.45397978480732e-06,-3.30180528751445e-10,-8.99910861107411e-10,-0.0799999968836758,-1.27339068109481e-09,4.54062135113503e-10,2.73038102544007e-10,6.27362745087081e-12,2.08052325367825e-10,-2.45210102223253e-10,-0.0154966245376301,-0.00521975396477915,0.0146130229196495,-2.26164573181207e-10,-3.00107161346324e-09,6.59194920898414e-10 +10.586,1.70477104481648e-09,-6.64913664405464e-09,-1.72721550777133e-09,-3.30129413389502e-10,-8.99236900220313e-10,-0.0799999968841867,-1.6096490204528e-05,-4.59843165802178e-06,1.62379836174344e-05,6.129645402362e-12,2.04470121389842e-10,-2.44009673577768e-10,2.02800016363367e-09,-6.33824590034879e-10,-5.17598117144472e-10,1.11889664200479e-10,-3.35235311732438e-10,4.13731549020369e-10 +10.588,-1.58278273289323e-06,-5.35803707353566e-07,1.51893171927708e-06,-3.30156010169835e-10,-8.99092980621852e-10,-0.0799999968846519,-1.26527868044027e-09,4.51526836753363e-10,2.70967710075428e-10,6.72118610767288e-12,2.06711384120895e-10,-2.43555176027171e-10,0.00685178396729271,0.00224469293369846,-0.0068021796507074,2.40909722727013e-10,9.16367676207655e-10,2.43728648347704e-10 +10.59,1.69970993009472e-09,-6.64733053670763e-09,-1.72613163693103e-09,-3.30102528645071e-10,-8.98410054683829e-10,-0.0799999968851609,1.13106456646398e-05,4.38034007677106e-06,-1.09707349853922e-05,7.09328429326995e-12,2.08135592094672e-10,-2.43034758984377e-10,1.16334893107723e-09,-6.2406677048279e-10,-4.27284076176623e-10,3.14418630020867e-11,-2.36789754470886e-10,3.33934269125611e-10 +10.592,-1.53754015023468e-06,-5.18282347046484e-07,1.47504877933552e-06,-3.30127637032662e-10,-8.98260438253473e-10,-0.079999996885624,-1.26062528471596e-09,4.49030569671432e-10,2.69258573770722e-10,6.84695355968121e-12,2.05764225103012e-10,-2.42219438950668e-10,-0.00350290289971048,-0.00120299664804437,0.00319732369172249,-8.93382590128253e-11,-7.88431819831636e-10,3.50414142147392e-10 +10.594,1.69466742895585e-09,-6.64553441442894e-09,-1.72505460263594e-09,-3.30075140830832e-10,-8.97586997783417e-10,-0.0799999968861298,-2.70096593420056e-06,-4.31646515405884e-07,1.81855978149632e-06,6.73593125721868e-12,2.04981864815346e-10,-2.41633102415788e-10,5.25024902165905e-10,-5.54677831493315e-10,-2.87747256607489e-10,-4.35849273346679e-11,-1.69569219799544e-10,2.39391839711632e-10 +10.596,-1.54834401397148e-06,-5.20008933108107e-07,1.4823230184615e-06,-3.30100693307633e-10,-8.97440510794212e-10,-0.0799999968865905,-1.2585251851073e-09,4.46811858345459e-10,2.68107584744292e-10,6.67261385034256e-12,2.05085948223814e-10,-2.41261871591822e-10,0.00140037106915852,0.000449929334240994,-0.00140732976140725,-3.70797142989959e-11,1.33573707650189e-10,2.13370987545102e-10 +10.598,1.68963332821542e-09,-6.64374716699556e-09,-1.72398217229697e-09,-3.30048450375431e-10,-8.96766653990522e-10,-0.0799999968870948,2.90051834243539e-06,1.36807082155869e-06,-3.81075926413455e-06,6.58761240002265e-12,2.05516159645947e-10,-2.40779618465607e-10,1.81441233425779e-10,-4.99817201466319e-10,-1.90169061024226e-10,-8.93382590120844e-11,-8.066464161017e-11,2.23779328374279e-10 +10.6,-1.53674194060174e-06,-5.14536649821873e-07,1.46707998140497e-06,-3.30074342858033e-10,-8.96618446155628e-10,-0.0799999968875537,-1.25779942017359e-09,4.44812589539594e-10,2.67346908500195e-10,6.31526081429426e-12,2.04763289657373e-10,-2.40366754278325e-10,-0.000818328161581467,-0.000273802123551985,0.000796938337153838,-1.18178036801625e-10,-2.19442519733838e-10,1.44849410270769e-10 +10.602,1.68460213053473e-09,-6.6419679166374e-09,-1.72291278466297e-09,-3.30023189332174e-10,-8.95947600831892e-10,-0.0799999968880563,-3.72794303890118e-07,2.72862327350873e-07,-6.23005915519545e-07,6.1149002528162e-12,2.04638389567012e-10,-2.40200220824524e-10,6.01732205729254e-11,-3.81639164714822e-10,-1.02565525517107e-10,-1.0516761073107e-10,-5.85469173142041e-11,1.42247325030064e-10 +10.604,-1.5382331178173e-06,-5.13445200512469e-07,1.46458795774289e-06,-3.30049883257022e-10,-8.9579989259736e-10,-0.0799999968885145,-1.2575587272913e-09,4.43286032880734e-10,2.66936646398127e-10,5.89459037136984e-12,2.04529101988116e-10,-2.39797764978204e-10,0.000271729328545531,8.59284410119835e-05,-0.000195042671358455,-1.02565525516472e-10,6.93889392662961e-12,1.56992474549268e-10 +10.606,1.67957189562556e-09,-6.64019477250588e-09,-1.72184503807737e-09,-3.29999610970688e-10,-8.9512948442394e-10,-0.0799999968890155,7.14123010291885e-07,6.1657609139877e-07,-1.40317660095328e-06,5.70463815075036e-12,2.04666145142718e-10,-2.39572250926327e-10,6.58652819785016e-11,-2.85145171363745e-10,-2.77555756156449e-11,-1.04083408558631e-10,-3.25260651745687e-11,1.04950770296621e-10 +10.608,-1.53537662577613e-06,-5.10978896146874e-07,1.45897525133908e-06,-3.30027064704419e-10,-8.94981228016789e-10,-0.0799999968894727,-1.25729526616339e-09,4.42145452195279e-10,2.66825624095664e-10,5.47825673713536e-12,2.04398997727418e-10,-2.39377961897018e-10,-0.000193445522675547,-7.22259446261384e-05,0.000268535496139994,-1.05818132034609e-10,-6.54858112181381e-11,1.08420217248575e-10 +10.61,1.67454271456091e-09,-6.6384261906971e-09,-1.72077773558099e-09,-3.2997769794374e-10,-8.9431188843303e-10,-0.079999996889973,-5.96590804102164e-08,3.27672312894248e-07,-3.29034616393423e-07,5.28136562261197e-12,2.04404201897846e-10,-2.39138570057333e-10,1.34441069527804e-10,-1.7542391155721e-10,2.69966340652686e-11,-9.67108337862936e-11,1.3444106916126e-11,1.00613961633213e-10 +10.612,-1.53561526209777e-06,-5.09668206895297e-07,1.4576591128735e-06,-3.30005939241929e-10,-8.94163611209198e-10,-0.0799999968904293,-1.25675750188528e-09,4.41443756549051e-10,2.66933610631925e-10,5.09141340199023e-12,2.04452774155082e-10,-2.38975506050485e-10,5.54579863477255e-05,5.63098005723502e-06,3.19728779042611e-05,-9.04224611852708e-11,1.21430643318336e-11,7.19910242530135e-11 +10.614,1.66951568455337e-09,-6.6366604156709e-09,-1.71971000113846e-09,-3.29957332290132e-10,-8.9349407733641e-10,-0.0799999968909289,1.6217286498076e-07,3.50196233123195e-07,-2.01143104776336e-07,4.91967577787077e-12,2.04452774155173e-10,-2.38850605960321e-10,2.12774676210769e-10,-1.1709383457945e-10,6.77626358099878e-11,-7.61109925079338e-11,-1.73472345328123e-12,4.68375338248445e-11 +10.616,-1.53496657063785e-06,-5.08267421962805e-07,1.4568545404544e-06,-3.29986260538817e-10,-8.93345800112577e-10,-0.0799999968913847,-1.25590640318043e-09,4.40975381210733e-10,2.67204661175165e-10,4.78696943195853e-12,2.04445835261269e-10,-2.38788155915186e-10,-3.6056532434259e-05,-2.42159289582851e-05,0.000106046025368128,-6.24500451356974e-11,-1.73472349867277e-12,5.63785129957481e-11 +10.618,1.66449205894065e-09,-6.63489651414606e-09,-1.71864118249376e-09,-3.29938184412404e-10,-8.92676293995365e-10,-0.079999996891884,1.79467352437397e-08,2.53332517290066e-07,2.23040996696131e-07,4.669875597328e-12,2.04445835261178e-10,-2.38625091908338e-10,2.93385107874531e-10,-5.63785129692274e-11,1.03216046820598e-10,-5.52943107967485e-11,1.38777878078098e-11,8.32667268468719e-11 +10.62,-1.53489478369687e-06,-5.07254091893644e-07,1.45774670444118e-06,-3.29967581036428e-10,-8.92528016771532e-10,-0.0799999968923392,-1.25473286274894e-09,4.40749867158856e-10,2.67617525362447e-10,4.56579218877146e-12,2.045013464125e-10,-2.38455089007798e-10,2.42856267322869e-05,-6.18638387017466e-07,2.8708506600649e-05,-4.40186082024026e-11,1.99493199964312e-11,4.85722573008732e-11 +10.622,1.65947312748965e-09,-6.63313351467743e-09,-1.71757071239231e-09,-3.29919921243649e-10,-8.91858288609715e-10,-0.0799999968928378,1.15089242172877e-07,2.50857963741996e-07,3.37875023098714e-07,4.49380116451841e-12,2.04525632541164e-10,-2.38430802879134e-10,3.55238841814966e-10,-1.71303943252729e-11,9.28077059647823e-11,-2.47198095326748e-11,1.21430643318454e-11,3.2959746043563e-11 +10.624,-1.53443442672818e-06,-5.06250660038676e-07,1.45909820453358e-06,-3.2994960583177e-10,-8.91709914241368e-10,-0.0799999968932929,-1.25331190738168e-09,4.40681345581555e-10,2.67988756186307e-10,4.46691295064077e-12,2.04549918669828e-10,-2.38323250023624e-10,7.60884866398027e-06,-1.83069705228543e-08,2.16152876847445e-05,-1.17093834628462e-11,-4.3368086899425e-12,5.72458747072539e-11 +10.626,1.65445987986013e-09,-6.6313707892951e-09,-1.71649875736757e-09,-3.29902053591846e-10,-8.91040088935036e-10,-0.0799999968937911,1.45524636828794e-07,2.50784735859905e-07,4.24336173837683e-07,4.44696363066703e-12,2.04508285306404e-10,-2.38201819380306e-10,3.97197466029075e-10,-1.62630326362043e-11,8.03393809514062e-11,-3.68628738694589e-12,1.47451495230893e-11,5.89805982096619e-11 +10.628,-1.53385232818087e-06,-5.05247521095237e-07,1.46079554922893e-06,-3.29931817977247e-10,-8.90891881100142e-10,-0.0799999968942457,-1.25172311751756e-09,4.4061629345101e-10,2.68310113710112e-10,4.45216780109299e-12,2.0460889926792e-10,-2.38087327630785e-10,2.05784752302675e-05,1.0445382406241e-05,-1.30084481597999e-05,7.80625564189403e-12,1.77809156287628e-11,5.72458747072155e-11 +10.63,1.64945298739005e-09,-6.62960832412129e-09,-1.71542551691273e-09,-3.29884244920642e-10,-8.90221653337964e-10,-0.0799999968947435,2.27838537749892e-07,2.92566265484883e-07,3.72302381198466e-07,4.47818865323462e-12,2.04579408968919e-10,-2.37972835881477e-10,4.17146785724929e-10,-4.98732994451389e-12,4.97648797468816e-11,2.60208521401522e-11,-6.07153214320434e-12,6.33174068467294e-11 +10.632,-1.53294097402987e-06,-5.04077256033297e-07,1.46228475875372e-06,-3.29913905222634e-10,-8.90073563464266e-10,-0.0799999968951976,-1.25005453037466e-09,4.40596344131232e-10,2.685091732291e-10,4.55625120965359e-12,2.04584613139347e-10,-2.37834058003398e-10,1.41872829131112e-05,1.33123707369765e-05,-2.57136007365483e-05,3.25260651740606e-11,1.04083408331404e-11,7.28583860174262e-11 +10.634,1.64445276926856e-09,-6.62784593874477e-09,-1.71435148021981e-09,-3.29866019915803e-10,-8.89403314885406e-10,-0.0799999968956948,2.8458766940233e-07,3.45815748432783e-07,2.69447978252284e-07,4.60829291393085e-12,2.04621042332252e-10,-2.37681402337407e-10,4.15791533148104e-10,-4.29344060304246e-11,8.56519716263263e-12,3.66460334300018e-11,8.67361737988114e-13,7.97972798949194e-11 +10.636,-1.53180262335226e-06,-5.02693993039566e-07,1.46336255066673e-06,-3.29895472050978e-10,-8.89255079294937e-10,-0.0799999968961484,-1.24839136424207e-09,4.4042460650711e-10,2.6854343401775e-10,4.70283534337364e-12,2.04588082586299e-10,-2.37514868883819e-10,1.24887577493401e-05,1.55557383381135e-05,-3.74256024391609e-05,4.92227786313643e-11,-2.51534903789513e-11,7.45931094406316e-11 +10.638,1.63945920381159e-09,-6.62608424031874e-09,-1.71327730648374e-09,-3.2984720857443e-10,-8.88584962555061e-10,-0.0799999968966449,3.34542700399685e-07,4.0803870178523e-07,1.19745568495657e-07,4.80518402845628e-12,2.04520428370736e-10,-2.37383029899644e-10,3.90963303398368e-10,-4.85722573273559e-11,-2.51534904016665e-11,5.00901403688413e-11,-3.25260651745752e-11,5.98479599212194e-11 +10.64,-1.53046445255066e-06,-5.01061838232425e-07,1.46384153294071e-06,-3.29876251314865e-10,-8.88436997581454e-10,-0.0799999968970979,-1.24682751102847e-09,4.40230317477801e-10,2.68442820056144e-10,4.90319590484898e-12,2.04457978325601e-10,-2.37275477044134e-10,5.96360905536768e-06,1.3888573234189e-05,-3.81940527382441e-05,5.22585447138129e-11,-1.69135538907757e-11,9.10729824888053e-11 +10.642,1.63447189376748e-09,-6.62432331904883e-09,-1.71220353520352e-09,-3.2982759579081e-10,-8.87767130641759e-10,-0.079999996897594,3.58397136621153e-07,4.6359299472198e-07,-3.30306424573027e-08,5.01421820731151e-12,2.04452774155173e-10,-2.37018737969689e-10,3.58328818144793e-10,-8.63024929786981e-11,-4.94396190951359e-11,5.74627151411746e-11,-2.34187669483788e-11,9.28077059910712e-11 +10.644,-1.52903086400417e-06,-4.99207466253537e-07,1.46370941037088e-06,-3.29856194442035e-10,-8.87619186484834e-10,-0.079999996898046,-1.24539419575589e-09,4.39885107505886e-10,2.68245061579763e-10,5.13304676541366e-12,2.04364303257807e-10,-2.3690424622017e-10,7.91441781902528e-07,1.06065661895753e-05,-3.41486127569603e-05,5.87637577487012e-11,-3.85975973404775e-11,7.80625564189432e-11 +10.646,1.62949031698445e-09,-6.62256377861881e-09,-1.7111305549572e-09,-3.29807063603749e-10,-8.86949673428727e-10,-0.0799999968985416,3.61562903748764e-07,5.06019259480295e-07,-1.69625093485189e-07,5.2492732383064e-12,2.04298383765811e-10,-2.36706487744013e-10,3.17237555531051e-10,-9.28077059159528e-11,-8.12067426893947e-11,5.5727991666337e-11,-3.25260651518859e-11,1.03216046794343e-10 +10.648,-1.52758461238918e-06,-4.97183389215616e-07,1.46303090999694e-06,-3.29835197349082e-10,-8.86801992949771e-10,-0.0799999968989928,-1.24412524553377e-09,4.39513876682222e-10,2.67920234609005e-10,5.35595873207898e-12,2.042341989972e-10,-2.36491382032992e-10,-4.38372417796875e-06,5.87486504750681e-06,-2.51122107049645e-05,5.11743425407215e-11,-2.86229373762904e-11,7.9797279921192e-11 +10.65,1.62451381600232e-09,-6.62080572311208e-09,-1.71005887401876e-09,-3.2978563976882e-10,-8.86132736632739e-10,-0.0799999968994876,3.44028007036891e-07,5.2951871967032e-07,-2.70073936305036e-07,5.45397060846926e-12,2.04183892016306e-10,-2.36387298624329e-10,2.75495772028526e-10,-1.17961196366396e-10,-8.39172481503629e-11,4.35849273339076e-11,-4.38017677684062e-11,8.76035355368124e-11 +10.652,-1.52620850036103e-06,-4.95065314336934e-07,1.46195061425172e-06,-3.29813381466648e-10,-8.85985257381705e-10,-0.0799999968999383,-1.24302326244566e-09,4.39042031896756e-10,2.67584565616404e-10,5.53029844141467e-12,2.04058991926126e-10,-2.36140967890845e-10,-7.84507566327534e-06,9.78049022038624e-07,-1.43813306532887e-05,4.25007251620467e-11,-3.3827107758888e-11,1.04083408532383e-10 +10.654,1.61954172295253e-09,-6.61904955498449e-09,-1.7089885357563e-09,-3.29763518575055e-10,-8.85316500665034e-10,-0.0799999969004321,3.12647704383793e-07,5.33430915758474e-07,-3.27599258918185e-07,5.62397350911743e-12,2.0404858358527e-10,-2.35970964990199e-10,2.4107235305223e-10,-1.26634813746334e-10,-8.08814820674405e-11,3.66460334300181e-11,-3.55618312575285e-11,8.06646416329433e-11 +10.656,-1.5249579095435e-06,-4.92931590673901e-07,1.46064021721605e-06,-3.29790885572612e-10,-8.85169063047364e-10,-0.0799999969008822,-1.24205897303345e-09,4.38535492641771e-10,2.67261039688134e-10,5.67688257513473e-12,2.03916744601096e-10,-2.35818309324313e-10,-9.81009116172167e-06,-3.44287640931326e-06,-3.55469657615454e-06,2.86229373536235e-11,-3.85975973404882e-11,1.11889664200529e-10 +10.658,1.6145734870604e-09,-6.61729541301392e-09,-1.70791949159754e-09,-3.29740811044754e-10,-8.8450083368663e-10,-0.0799999969013754,2.73407339736911e-07,5.19659410121222e-07,-3.41818045222801e-07,5.73846525853191e-12,2.03894193195908e-10,-2.35523406333397e-10,2.14780450507179e-10,-1.41379963340761e-10,-6.51605505960352e-11,2.34187669250513e-11,-3.29597460661941e-11,9.19403442529276e-11 +10.66,-1.52386428018455e-06,-4.90852953033416e-07,1.45927294503516e-06,-3.29767931711578e-10,-8.84353486274581e-10,-0.0799999969018243,-1.24119985123142e-09,4.37969972788408e-10,2.6700039748575e-10,5.77055764283492e-12,2.03784905616831e-10,-2.35450547947301e-10,-1.00723382542486e-05,-6.73994670838248e-06,5.5296364275663e-06,9.1072982488762e-12,-2.94902990916023e-11,5.89805981832047e-11 +10.662,1.60960868765547e-09,-6.61554353312277e-09,-1.7068514900076e-09,-3.29717728814183e-10,-8.83685694064162e-10,-0.0799999969023172,2.33117986719903e-07,4.92699623287683e-07,-3.19699499512529e-07,5.77489445152743e-12,2.03776231999542e-10,-2.35287483940664e-10,2.00523191663439e-10,-1.26634813697711e-10,-5.80048161983445e-11,4.55364912508081e-12,-2.42861286410533e-11,1.14491749388348e-10 +10.664,-1.52293180823767e-06,-4.88882154540266e-07,1.45799414703711e-06,-3.29744832133771e-10,-8.83538381346582e-10,-0.0799999969027655,-1.24039775846477e-09,4.37463433533617e-10,2.66768378220957e-10,5.78877223933524e-12,2.03687761102267e-10,-2.34992580949748e-10,-9.00177800141441e-06,-8.64115549953083e-06,1.19667700228582e-05,5.85469173077936e-12,-3.12250225901977e-11,7.71951947070714e-11 +10.666,1.60464709662161e-09,-6.61379367938864e-09,-1.70578441649472e-09,-3.29694573725225e-10,-8.82870943019753e-10,-0.0799999969032572,1.97110874714249e-07,4.58135001289564e-07,-2.71832419421101e-07,5.79831321845054e-12,2.03651331909181e-10,-2.34978703161836e-10,1.93475877680025e-10,-1.16876994193911e-10,-3.56702514747612e-11,-5.85469173142037e-12,-2.94902990916023e-11,5.55111512312522e-11 +10.668,-1.52214336473881e-06,-4.87049614535107e-07,1.45690681735942e-06,-3.29721638880898e-10,-8.82723776018945e-10,-0.0799999969037054,-1.23962385495404e-09,4.36995925556842e-10,2.66625697215058e-10,5.76535347240955e-12,2.03569799905901e-10,-2.34770536344823e-10,-6.95226352613645e-06,-9.08177266024211e-06,1.5318899686056e-05,-1.75640751936253e-11,-1.30104260472222e-11,1.23165366768285e-10 +10.67,1.5996886012018e-09,-6.61204569568641e-09,-1.70471791370586e-09,-3.29671512311336e-10,-8.8205666382013e-10,-0.0799999969041963,1.69301820609707e-07,4.21807910648599e-07,-2.10556820676884e-07,5.72805691767605e-12,2.03599290204992e-10,-2.34486041694763e-10,1.99113728976985e-10,-1.31622143739768e-10,-1.50704101975502e-11,-1.69135538907775e-11,-6.50521303491374e-12,7.71951946809893e-11 +10.672,-1.52146615745637e-06,-4.85362382892512e-07,1.45606459007672e-06,-3.29698726653227e-10,-8.81909378858126e-10,-0.0799999969046433,-1.23882740003814e-09,4.36469436981883e-10,2.66565415574267e-10,5.69769925684645e-12,2.03543779053761e-10,-2.34461755566099e-10,-4.40486021139219e-06,-8.23537245342636e-06,1.57563829605196e-05,-1.79977560632634e-11,-1.5612511283793e-11,5.20417042793229e-11 +10.674,1.59473329160165e-09,-6.61029981793848e-09,-1.70365165204356e-09,-3.29648721514308e-10,-8.81242488703915e-10,-0.0799999969051341,1.5168237976414e-07,3.88866420834898e-07,-1.47531288834812e-07,5.656065893423e-12,2.03536840159857e-10,-2.34277874877646e-10,2.04317899542383e-10,-1.24032728580771e-10,1.95156388087657e-12,-2.68882138782671e-11,-8.67361740247736e-12,9.88792381566805e-11 +10.676,-1.52085942793732e-06,-4.83806917209173e-07,1.45547446492138e-06,-3.29676102389653e-10,-8.81095231497486e-10,-0.0799999969055804,-1.23801012843997e-09,4.3597330606756e-10,2.66573221829791e-10,5.59014640133339e-12,2.03509084584151e-10,-2.34066238613472e-10,-1.78413306264157e-06,-6.41591098825134e-06,1.38139917256791e-05,-3.27429056090549e-11,-8.67361737988114e-12,6.0715321659168e-11 +10.678,1.58978125108789e-09,-6.60855592471421e-09,-1.70258535915624e-09,-3.29626360928703e-10,-8.80428452365578e-10,-0.0799999969060704,1.44545847513571e-07,3.63202776881884e-07,-9.22753219320773e-08,5.52509427098674e-12,2.03502145690338e-10,-2.34035013591009e-10,2.19930410551293e-10,-1.0104764242727e-10,1.23599047959337e-11,-2.84060969185058e-11,-9.10729822628687e-12,6.67868537991358e-11 +10.68,-1.52028124454726e-06,-4.82354106101646e-07,1.45510536363365e-06,-3.29654002012569e-10,-8.80281222914725e-10,-0.0799999969065166,-1.23713040679776e-09,4.35569115497851e-10,2.66622661448975e-10,5.47652201365938e-12,2.03472655391246e-10,-2.33799091198276e-10,5.47272730589342e-07,-4.02231915313857e-06,1.02736181107562e-05,-2.68882138782479e-11,-8.67361740247736e-12,9.54097912046877e-11 +10.682,1.58483272946069e-09,-6.60681364825222e-09,-1.70151886851044e-09,-3.29604454840648e-10,-8.79614561744013e-10,-0.0799999969070056,1.46734938435928e-07,3.47113500269331e-07,-5.11808494890571e-08,5.41754141547376e-12,2.03467451220728e-10,-2.3365337442619e-10,2.29905070675526e-10,-1.10805462027994e-10,2.55871712706494e-11,-3.03576608295874e-11,-5.20417042792868e-12,4.16333634234295e-11 +10.684,-1.51969430479352e-06,-4.80965652100568e-07,1.45490064023569e-06,-3.29632331846907e-10,-8.79467353109842e-10,-0.0799999969074512,-1.23621078651506e-09,4.35125893649738e-10,2.66725010134057e-10,5.35509137034099e-12,2.03451838709534e-10,-2.33632557744582e-10,2.34467913836094e-06,-1.46264706072161e-06,5.98006746118076e-06,-2.86229373530221e-11,-1.73472345338463e-12,6.5919492061199e-11 +10.686,1.57988788631463e-09,-6.60507314467762e-09,-1.70045196846991e-09,-3.29583034475167e-10,-8.78800754389175e-10,-0.0799999969079401,1.56113654989371e-07,3.41262912026445e-07,-2.72605796443367e-08,5.30304966606168e-12,2.03460512326914e-10,-2.33389696457945e-10,2.41506033921173e-10,-9.47592698752564e-11,2.53703308361636e-11,-2.73218947466408e-11,-6.93889390390799e-12,1.13624387676506e-10 +10.688,-1.51906985017356e-06,-4.79600600452462e-07,1.45479159791712e-06,-3.29611119648243e-10,-8.78653511060534e-10,-0.0799999969083847,-1.23524476237938e-09,4.34746856570237e-10,2.66826491457402e-10,5.24580379135444e-12,2.03424083133919e-10,-2.33178060193876e-10,3.48131251474016e-06,8.99934857537446e-07,1.71420440776181e-06,-2.90566182226179e-11,-1.12757025938505e-11,7.19910242530454e-11 +10.69,1.57494690726512e-09,-6.60333415725134e-09,-1.69938466250408e-09,-3.29562051260002e-10,-8.7798705805664e-10,-0.0799999969088728,1.7003890504833e-07,3.44862651456595e-07,-2.04037620132902e-08,5.18682319317122e-12,2.03415409516539e-10,-2.33101732360933e-10,2.52781736652077e-10,-1.03649727737861e-10,1.86482773371293e-11,-2.27682456227728e-11,8.67361715402591e-13,5.72458747331162e-11 +10.692,-1.51838969455337e-06,-4.78221149846636e-07,1.45470998286906e-06,-3.29590372355471e-10,-8.77839849422468e-10,-0.0799999969093172,-1.23423363543277e-09,4.34332257659286e-10,2.6690108456675e-10,5.15473080886336e-12,2.0342755258078e-10,-2.32949076694944e-10,3.94519795521556e-06,2.78926686435249e-06,-1.91086133461512e-06,-1.43114686768055e-11,1.73472347597623e-12,8.413408858486e-11 +10.694,1.57000997272339e-09,-6.6015968282207e-09,-1.69831705816581e-09,-3.29541432336766e-10,-8.77173347846316e-10,-0.0799999969098046,1.85819696869198e-07,3.56019718914008e-07,-2.80472073517532e-08,5.12957731846398e-12,2.03422348410443e-10,-2.32765196006594e-10,2.56901704633467e-10,-1.05384451117394e-10,1.37693676202038e-11,-1.14925430277765e-11,-1.6479872999202e-11,7.37257477031666e-11 +10.696,-1.51764641576589e-06,-4.7679707097098e-07,1.45459779403966e-06,-3.29569854046197e-10,-8.77026160028826e-10,-0.0799999969102482,-1.23320602861423e-09,4.33910719854816e-10,2.66956162037231e-10,5.10876063675226e-12,2.03361633088783e-10,-2.32654173704131e-10,3.81497882327653e-06,4.03743531658793e-06,-4.50238132366641e-06,-1.23599047669014e-11,-1.60461921753667e-11,8.06646416587475e-11 +10.698,1.56507714860893e-09,-6.59986118534128e-09,-1.69724923351766e-09,-3.29520997294219e-10,-8.76359901313961e-10,-0.0799999969107352,2.01079612162302e-07,3.72169460180358e-07,-4.60567326464169e-08,5.08013769939638e-12,2.03358163641741e-10,-2.32442537439959e-10,2.6064220226548e-10,-9.56266316131896e-11,9.75781955236628e-13,-1.51788304147938e-11,0,9.19403442267465e-11 +10.7,-1.51684209731724e-06,-4.75308393130258e-07,1.45441356710907e-06,-3.29549533495399e-10,-8.76212727374259e-10,-0.079999996911178,-1.23216345980517e-09,4.33528213328364e-10,2.66960065165052e-10,5.04804531509306e-12,2.03361633088783e-10,-2.32286412327224e-10,3.23125337253288e-06,4.58847434878298e-06,-5.90032254826154e-06,-1.04083408552992e-11,1.73472349854998e-12,7.11236624892592e-11 +10.702,1.56014849476971e-09,-6.59812707248797e-09,-1.696181393257e-09,-3.29500805112959e-10,-8.75546454781606e-10,-0.0799999969116644,2.14004625652432e-07,3.90523357575488e-07,-6.96580228394604e-08,5.03850433597519e-12,2.03365102535735e-10,-2.32158042790002e-10,2.58473797920573e-10,-8.41340885848973e-11,1.19262238973419e-12,1.95156391047432e-12,-2.21177243187067e-11,6.07153216592014e-11 +10.704,-1.51598607881463e-06,-4.73746299699956e-07,1.45413493501771e-06,-3.29529379478055e-10,-8.75399266964116e-10,-0.0799999969121066,-1.23112956461349e-09,4.33191676974024e-10,2.66964835654611e-10,5.05585157073496e-12,2.03273162191509e-10,-2.32043551040587e-10,2.36413601369165e-06,4.48625663528146e-06,-6.15210714403343e-06,8.02309607639442e-12,-2.2551405187701e-11,5.72458747072474e-11 +10.706,1.55522397651126e-09,-6.59639430578007e-09,-1.69511353391438e-09,-3.29480581706676e-10,-8.7473336213284e-10,-0.0799999969125925,2.23461169707198e-07,4.08468384116612e-07,-9.42664514155915e-08,5.07059672028077e-12,2.03274896914985e-10,-2.31929059291173e-10,2.59937470990017e-10,-1.09287579034605e-10,-2.12503626103546e-11,2.38524477890635e-12,-1.17093834854113e-11,9.1940344252514e-11 +10.708,-1.5150922341358e-06,-4.7211242616349e-07,1.45375786921205e-06,-3.29509097091174e-10,-8.74586167376457e-10,-0.0799999969130343,-1.23008981472953e-09,4.32754526657886e-10,2.6687983420417e-10,5.06539254985059e-12,2.03226324657567e-10,-2.31675789663577e-10,1.38438696270473e-06,3.8509098253944e-06,-5.46255564653225e-06,8.67361737988316e-13,-1.95156391047326e-11,1.04950770296575e-10 +10.71,1.55030361725234e-09,-6.59466328767344e-09,-1.69404601457757e-09,-3.29460320136477e-10,-8.7392045683421e-10,-0.0799999969135193,2.28998717558019e-07,4.23872023418195e-07,-1.16116674001728e-07,5.07406616723272e-12,2.03196834358566e-10,-2.31509256209986e-10,2.53215417247481e-10,-1.00397121124141e-10,-1.77809155991408e-11,1.20346441151541e-11,-1.34441069162552e-11,6.41847685854352e-11 +10.712,-1.51417623926557e-06,-4.70416938069818e-07,1.45329340251604e-06,-3.29488800826505e-10,-8.73773380039022e-10,-0.0799999969139604,-1.22907695306054e-09,4.32352938173389e-10,2.66808710541773e-10,5.1135311263112e-12,2.03172548229902e-10,-2.31419050589235e-10,4.40366005354117e-07,2.84990672549338e-06,-4.13075856071233e-06,1.26851654175141e-11,-5.6378513194853e-12,7.11236625407318e-11 +10.714,1.54538730944009e-09,-6.59293387592075e-09,-1.6929787797354e-09,-3.29439866011971e-10,-8.7310776664129e-10,-0.0799999969144449,2.30760181579435e-07,4.35271650320167e-07,-1.32639708244575e-07,5.12480682890277e-12,2.03174282953288e-10,-2.31224761559823e-10,2.51372273690732e-10,-1.04517089427581e-10,-2.92734586570988e-11,6.50521303491166e-12,-2.64545330086439e-11,8.15320033708892e-11 +10.716,-1.51325319853925e-06,-4.68675851468536e-07,1.45276284368306e-06,-3.29468301599189e-10,-8.72960682907209e-10,-0.0799999969148853,-1.22807146396578e-09,4.31934869815679e-10,2.66691616707145e-10,5.13955197845085e-12,2.03066730097867e-10,-2.31092922575752e-10,-3.56710863078922e-07,1.66766166852945e-06,-2.48640929895322e-06,1.34441069393922e-11,-3.12250225450324e-11,8.58688120351994e-11 +10.718,1.54047502358423e-09,-6.59120613644149e-09,-1.69191201326857e-09,-3.29419307804057e-10,-8.72295499720899e-10,-0.0799999969153693,2.29333338127119e-07,4.41942296994284e-07,-1.42585345440387e-07,5.17858325666033e-12,2.03049382863108e-10,-2.30881286311683e-10,2.47957036847462e-10,-8.23993651089203e-11,-2.30935062739438e-11,1.58293517182917e-11,-4.3368086899425e-12,8.76035355368513e-11 +10.72,-1.51233586518675e-06,-4.66908082280559e-07,1.4521925023013e-06,-3.29447587266163e-10,-8.72148485375757e-10,-0.0799999969158088,-1.22707963581839e-09,4.31605272355243e-10,2.66599242682049e-10,5.20286938532401e-12,2.03049382863108e-10,-2.30742508433604e-10,-9.39315519897019e-07,4.78986425175959e-07,-8.34876547235926e-07,1.06251812903603e-11,-1.43114686768102e-11,5.20417042793164e-11 +10.722,1.53556670504096e-09,-6.58947971535206e-09,-1.69084561629784e-09,-3.29398496326516e-10,-8.71483302189446e-10,-0.0799999969162923,2.25576076047532e-07,4.43858242694988e-07,-1.4592485162933e-07,5.22108398182177e-12,2.029921369884e-10,-2.30673119494565e-10,2.44541800140307e-10,-1.04083408606493e-10,-3.19839641179105e-11,1.42030484589795e-11,-3.5128150411062e-11,5.20417043049073e-11 +10.724,-1.51143356088256e-06,-4.6513264930978e-07,1.45160880289479e-06,-3.29426702930236e-10,-8.71336516827803e-10,-0.0799999969167315,-1.22610146861783e-09,4.31188938720817e-10,2.66471306825577e-10,5.25968157915992e-12,2.02908870261463e-10,-2.30534341616385e-10,-1.28266055545903e-06,-5.71387338485358e-07,5.82361849715701e-07,1.79977560632554e-11,-1.86482773667444e-11,9.10729824887649e-11 +10.726,1.53066229916649e-09,-6.58775495959718e-09,-1.68977973107054e-09,-3.293774576002e-10,-8.706716667084e-10,-0.0799999969172144,2.20445433825694e-07,4.41572693341046e-07,-1.43595404230467e-07,5.29307500607482e-12,2.02917543878933e-10,-2.3030882756461e-10,2.43457597695576e-10,-9.51929506963776e-11,-2.78639958033088e-11,9.54097911845833e-12,-1.51788303922774e-11,1.11889664174938e-10 +10.728,-1.51055177914725e-06,-4.63366358536416e-07,1.45103442127786e-06,-3.29405530630211e-10,-8.70524846652287e-10,-0.0799999969176527,-1.22512763822704e-09,4.30808166918032e-10,2.66359850842364e-10,5.29784549563375e-12,2.02848154939894e-10,-2.30086782959685e-10,-1.3981879348131e-06,-1.38144270333416e-06,1.60945649170688e-06,7.04731412056646e-12,-1.17093834853725e-11,7.80625564445041e-11 +10.73,1.52576178861358e-09,-6.58603172692951e-09,-1.68871429166717e-09,-3.29356266218217e-10,-8.69860274088641e-10,-0.0799999969181348,2.14852682086442e-07,4.3604692252771e-07,-1.3715757826364e-07,5.32126426255708e-12,2.02870706344992e-10,-2.29996577338832e-10,2.40150781205459e-10,-1.01915004213616e-10,-2.16840434497028e-11,8.99887803162769e-12,-1.82145964977504e-11,6.93889390390556e-11 +10.732,-1.50969236841891e-06,-4.61622170846304e-07,1.45048579096481e-06,-3.29384245573161e-10,-8.69713363826907e-10,-0.0799999969185727,-1.22416703510222e-09,4.30400506901177e-10,2.66273114668565e-10,5.33384100776027e-12,2.02775296553903e-10,-2.29809227203529e-10,-1.32374992041914e-06,-1.89676074321329e-06,2.18085510586466e-06,3.90312782153955e-12,-3.42607886280244e-11,8.67361737733301e-11 +10.734,1.52086512047317e-09,-6.5843101249019e-09,-1.6876491992085e-09,-3.29334930854186e-10,-8.69049172902425e-10,-0.079999996919054,2.09557682404766e-07,4.28459879554857e-07,-1.28434157840182e-07,5.33687677384324e-12,2.0273366319048e-10,-2.29649632643739e-10,2.42536025985086e-10,-8.67361737988628e-11,-2.13587827979668e-11,1.95156391047432e-12,-1.47451495458045e-11,6.07153216592014e-11 +10.736,-1.50885413768929e-06,-4.59908331328085e-07,1.44997205433345e-06,-3.29362898066066e-10,-8.68902429174145e-10,-0.0799999969194913,-1.22319689099828e-09,4.30053562205982e-10,2.66187679537373e-10,5.34164726340217e-12,2.0271631595572e-10,-2.29566365916892e-10,-1.11229395919507e-06,-2.10805591732745e-06,2.31141288834692e-06,9.64939933512306e-12,4.3368086899425e-12,6.93889390390864e-11 +10.738,1.51597233290918e-09,-6.58258991065308e-09,-1.68658444849035e-09,-3.29313564265132e-10,-8.68238307638602e-10,-0.0799999969199723,2.05108506567986e-07,4.20027655885548e-07,-1.19188506286796e-07,5.37547437118372e-12,2.0275101042524e-10,-2.29372076887583e-10,2.40963932970639e-10,-1.0820337686177e-10,-1.44198889236047e-11,9.54097911727734e-12,-7.80625566440485e-12,8.32667268723576e-11 +10.74,-1.50803370366302e-06,-4.58228220704543e-07,1.4494953003083e-06,-3.29341396168581e-10,-8.68091425132445e-10,-0.0799999969204088,-1.2222330352664e-09,4.29620748698535e-10,2.66129999981679e-10,5.37981117987128e-12,2.02685090933062e-10,-2.29233299009403e-10,-8.21539451051157e-07,-2.04424476478403e-06,2.07727921235726e-06,-3.7947076036984e-12,-3.59955121265132e-11,6.76542155630793e-11 +10.742,1.51108340076811e-09,-6.58087142765829e-09,-1.68551992849042e-09,-3.29292045020413e-10,-8.6742756727487e-10,-0.0799999969208892,2.0182234876378e-07,4.11850676826409e-07,-1.10879389437364e-07,5.36029554076892e-12,2.02607028376733e-10,-2.2910146002533e-10,2.42156555089006e-10,-9.08561420066161e-11,-1.60461921232414e-11,-2.49366499611998e-12,-1.56125112612911e-11,7.45931094415687e-11 +10.744,-1.50722641426796e-06,-4.56580817997237e-07,1.44905178275055e-06,-3.29319954986418e-10,-8.67280997018938e-10,-0.0799999969213252,-1.22126440904604e-09,4.29257324130508e-10,2.66065815213186e-10,5.3698365198868e-12,2.02622640888017e-10,-2.28934926571636e-10,-5.05020721444741e-07,-1.76121053509597e-06,1.59130261052716e-06,-8.67361738583439e-13,-3.03576610544872e-12,6.93889390644899e-11 +10.746,1.50619834313193e-09,-6.57915439836176e-09,-1.68445566522957e-09,-3.29270565674333e-10,-8.66617076711318e-10,-0.0799999969218049,1.99802265878002e-07,4.04805834686026e-07,-1.04514178995256e-07,5.35682609381459e-12,2.02594885312312e-10,-2.28823904269072e-10,2.39283419467471e-10,-9.38919081372133e-11,-1.08420217248514e-13,-8.99887803162769e-12,-2.51534904016553e-11,7.63278329429605e-11 +10.748,-1.50642720520445e-06,-4.54961594658493e-07,1.44863372603457e-06,-3.29298527682043e-10,-8.66470617477688e-10,-0.0799999969222405,-1.22030727536817e-09,4.28881756497959e-10,2.66065381532317e-10,5.33384100776027e-12,2.02522026926411e-10,-2.28629615239864e-10,-2.06424775254437e-07,-1.33049365791091e-06,9.79032176498244e-07,-2.27682456162527e-12,-3.03576606047077e-12,1.04083408533229e-10 +10.75,1.50131711403045e-09,-6.57743887133577e-09,-1.68339140370344e-09,-3.29249230310302e-10,-8.65806988603612e-10,-0.0799999969227194,1.98976566776984e-07,3.99483860054383e-07,-1.00598050289263e-07,5.34771879556809e-12,2.0258274224807e-10,-2.28407570634939e-10,2.41777084464346e-10,-1.0126448291017e-10,-6.28837260041662e-12,2.16840434497125e-13,-7.37257477290224e-12,7.11236625150634e-11 +10.752,-1.50563129893734e-06,-4.53363659218275e-07,1.44823133383341e-06,-3.2927713680686e-10,-8.65660286508696e-10,-0.0799999969231541,-1.21934016703031e-09,4.28476698566319e-10,2.66040228041915e-10,5.33470836949826e-12,2.02492536627319e-10,-2.28345120589804e-10,4.39195663344664e-08,-8.27291143576565e-07,3.5715722913895e-07,-7.69783542464874e-12,-3.25260651745687e-11,3.20923843055745e-11 +10.754,1.49643975336233e-09,-6.57572496454151e-09,-1.68232724279127e-09,-3.29227891476824e-10,-8.64997018457103e-10,-0.0799999969236328,1.99152245042322e-07,3.96174695480077e-07,-9.91694213727077e-08,5.3169274538695e-12,2.02452637987372e-10,-2.28279201097717e-10,2.43186547423821e-10,-1.02782365999174e-10,-8.99887806116361e-12,-5.42101086301841e-12,-5.63785131940775e-12,9.19403442521004e-11 +10.756,-1.50483468995717e-06,-4.51778960436355e-07,1.44783465614792e-06,-3.29255869097045e-10,-8.64850475956747e-10,-0.0799999969240672,-1.21836742084062e-09,4.28065569102322e-10,2.66004232529671e-10,5.31302432604619e-12,2.02469985222041e-10,-2.27977359212796e-10,2.29284473351964e-07,-3.21208988226992e-07,-1.81324464991432e-07,-8.23993651088809e-12,2.60208521396434e-12,1.13624387676456e-10 +10.758,1.49156628367897e-09,-6.5740127022651e-09,-1.68126322586115e-09,-3.2920663937952e-10,-8.64187138516215e-10,-0.0799999969245447,2.0006938293573e-07,3.94889859527169e-07,-9.98947192326737e-08,5.28396770782594e-12,2.02463046328227e-10,-2.27824703547011e-10,2.40204991178946e-10,-9.51929506967266e-11,-1.95156388094119e-12,-1.05167610725219e-11,-8.67361735740894e-12,4.68375338260724e-11 +10.76,-1.50403441242543e-06,-4.50199400998247e-07,1.44743507727099e-06,-3.29234733226214e-10,-8.64040623771434e-10,-0.0799999969249785,-1.2174066008759e-09,4.27684797299535e-10,2.65996426274147e-10,5.27095728175611e-12,2.02435290752612e-10,-2.27790009077492e-10,3.45341593863202e-07,1.31023664140556e-07,-5.75953455935045e-07,-5.2041704279314e-12,-1.64798730217879e-11,6.07153216592014e-11 +10.762,1.48669665727547e-09,-6.5723019630759e-09,-1.68019924015606e-09,-3.29185555550393e-10,-8.63377397353204e-10,-0.0799999969254559,2.01450749311183e-07,3.95413954183731e-07,-1.02198533056414e-07,5.26315102611421e-12,2.0239712683614e-10,-2.27581842260374e-10,2.40421831748687e-10,-9.71445146547248e-11,-2.49366499671693e-12,-3.03576608296015e-12,-2.0816681711724e-11,1.0581813203461e-10 +10.764,-1.50322860942818e-06,-4.48617745181512e-07,1.44702628313877e-06,-3.29213680622109e-10,-8.63231035264089e-10,-0.0799999969258889,-1.21644491354891e-09,4.27296219240916e-10,2.6598645161416e-10,5.25881421742427e-12,2.02352024025765e-10,-2.27366736549353e-10,3.97287779908577e-07,4.89411896382021e-07,-8.00577377816768e-07,-4.1199682560284e-12,-1.21430643543021e-11,9.10729825140279e-11 +10.766,1.48183087762127e-09,-6.57059277819894e-09,-1.6791352943496e-09,-3.29164520293523e-10,-8.62567989257101e-10,-0.0799999969263654,2.03039900430817e-07,3.97371601769259e-07,-1.0540084256768e-07,5.2466711530901e-12,2.02348554578723e-10,-2.27217550330318e-10,2.40204991314135e-10,-9.45424294407173e-11,-5.85469173141977e-12,-1.2143064331835e-11,-1.82145964977504e-11,5.7245874707222e-11 +10.768,-1.50241644982646e-06,-4.47028258774435e-07,1.4466046797685e-06,-3.29192693937497e-10,-8.62421641045774e-10,-0.0799999969267977,-1.21548409358365e-09,4.26918049523153e-10,2.65963032847234e-10,5.21024196009691e-12,2.02279165639774e-10,-2.27137753050524e-10,3.96552853511042e-07,7.32150451421153e-07,-8.59784249016796e-07,-9.97465998628633e-12,-1.12757025713874e-11,4.94396190401284e-11 +10.77,1.47696894124694e-09,-6.56888510600084e-09,-1.67807144221821e-09,-3.29143679325683e-10,-8.61758872594542e-10,-0.0799999969272739,2.04626111844861e-07,4.00300203574943e-07,-1.08839979563747e-07,5.20677251314496e-12,2.02303451768438e-10,-2.27019791854158e-10,2.39988151014523e-10,-1.03432887302485e-10,-1.01915004508978e-11,-4.33680869572428e-13,-8.6736176044516e-13,7.11236625402536e-11 +10.772,-1.50159794537908e-06,-4.45427057960135e-07,1.44616931985024e-06,-3.29171866847444e-10,-8.616124272387e-10,-0.0799999969277058,-1.21452414097959e-09,4.26504317973943e-10,2.65922266845431e-10,5.20850723661862e-12,2.02275696192732e-10,-2.26853258400363e-10,3.57550198216209e-07,8.54331362598411e-07,-7.81600587203104e-07,-1.08420217248534e-12,-1.5178830414792e-11,8.50014503228416e-11 +10.774,1.47211084468302e-09,-6.56717908872895e-09,-1.67700775315083e-09,-3.29122845296737e-10,-8.60949769809771e-10,-0.0799999969281813,2.06056312637726e-07,4.03717529025338e-07,-1.11966381912561e-07,5.20243570445502e-12,2.02242736446778e-10,-2.26679786052866e-10,2.40042360853538e-10,-1.05601291552757e-10,-2.38524474994836e-12,-2.92734586513321e-12,-1.99493199512853e-11,9.36750676775806e-11 +10.776,-1.50077372012853e-06,-4.43812187844034e-07,1.44572145432259e-06,-3.29151057104626e-10,-8.60803456292913e-10,-0.0799999969286125,-1.21356397153618e-09,4.26081912807732e-10,2.65912725866431e-10,5.19679785315809e-12,2.02195898912927e-10,-2.26478558129653e-10,2.9490743614503e-07,8.65206777750559e-07,-6.08194701198905e-07,-7.58941520739937e-13,-1.25767452008397e-11,7.02563007770749e-11 +10.778,1.46725658879687e-09,-6.56547476107772e-09,-1.67594410224736e-09,-3.29102058105324e-10,-8.6014098621412e-10,-0.0799999969290872,2.07235942382306e-07,4.0717835613634e-07,-1.14399160717356e-07,5.19939993837206e-12,2.02192429465975e-10,-2.26398760849758e-10,2.39988150879693e-10,-8.76035355368513e-11,-1.23599047663361e-11,-5.2041704279316e-12,-1.47451495458045e-11,5.03069808033394e-11 +10.78,-1.499944776359e-06,-4.42183474419489e-07,1.44526385767972e-06,-3.29130259504873e-10,-8.5999468657505e-10,-0.0799999969295181,-1.21260401893266e-09,4.25731498665585e-10,2.65863286247366e-10,5.17598117144637e-12,2.02136918314744e-10,-2.2627733020644e-10,2.21543432447743e-07,7.84208852324252e-07,-3.86598522279492e-07,-5.52943108025203e-12,-1.04083408783057e-11,9.02056207759101e-11 +10.782,1.46240617272114e-09,-6.56377183508305e-09,-1.67488064910237e-09,-3.29081354180638e-10,-8.59332438540861e-10,-0.0799999969299924,2.08122116112097e-07,4.10315191545637e-07,-1.15945554806474e-07,5.17728221405105e-12,2.02150796102462e-10,-2.26037938366654e-10,2.39608680119268e-10,-9.88792381306579e-11,-1.24683249835791e-11,3.0357660829586e-12,-6.0715321659168e-12,7.97972798949129e-11 +10.784,-1.49911228789455e-06,-4.40542213653305e-07,1.4448000754605e-06,-3.29109550376017e-10,-8.5918608339064e-10,-0.0799999969304223,-1.21164558421218e-09,4.25335981713062e-10,2.65813412947431e-10,5.18812423577821e-12,2.0211263218608e-10,-2.2595814108686e-10,1.47446399730955e-07,6.36740226562965e-07,-1.6057120911975e-07,-1.95156390989958e-12,-1.3444106916378e-11,5.11743425162346e-11 +10.786,1.45755959038429e-09,-6.5620704911562e-09,-1.67381739545058e-09,-3.29060601683695e-10,-8.58523988012116e-10,-0.0799999969308962,2.08711901711021e-07,4.12862152451888e-07,-1.16587839642953e-07,5.16947595841145e-12,2.02097019674796e-10,-2.2583324099659e-10,2.38361847755381e-10,-9.32413868809517e-11,-7.80625567140357e-12,6.50521302915216e-13,-2.4719809555103e-11,7.11236625401244e-11 +10.788,-1.49827744028771e-06,-4.38890765043498e-07,1.44433372410192e-06,-3.29088872472183e-10,-8.5837769531194e-10,-0.0799999969313256,-1.21069213682116e-09,4.24963016165538e-10,2.65782187924746e-10,5.19072632098987e-12,2.0201375294786e-10,-2.25673646436699e-10,7.94676282243756e-08,4.50278486371816e-07,3.5142136596547e-08,5.09575021068077e-12,-1.77809156287563e-11,9.36750677027228e-11 +10.79,1.45271682183701e-09,-6.56037063909154e-09,-1.67275426669888e-09,-3.29039838778411e-10,-8.57715933000325e-10,-0.0799999969317989,2.09029772223918e-07,4.14663266397376e-07,-1.16447271096566e-07,5.18985895925418e-12,2.02025896012281e-10,-2.25458540725779e-10,2.4090972259194e-10,-9.41087485245899e-11,-1.22514845195805e-11,2.38524478004493e-12,-3.90312779851743e-12,8.84708972497788e-11 +10.792,-1.49744132119881e-06,-4.37232111977909e-07,1.44386793501754e-06,-3.29068113036346e-10,-8.57569591727891e-10,-0.0799999969322275,-1.2097284979308e-09,4.2458658117144e-10,2.65733181986667e-10,5.20026730011005e-12,2.01998140436666e-10,-2.253197628477e-10,2.14434047775293e-08,2.50915174054898e-07,1.78053318616906e-07,3.90312782094865e-12,-1.12757025938505e-11,6.24500451351784e-11 +10.794,1.44787790784529e-09,-6.55867229276685e-09,-1.67169133397094e-09,-3.29019037709211e-10,-8.56907940438578e-10,-0.0799999969327002,2.09115545843029e-07,4.15666927093596e-07,-1.15735057822099e-07,5.20547147053798e-12,2.01980793201906e-10,-2.25208740545238e-10,2.4020499131419e-10,-8.54351311918672e-11,-1.55040910665444e-11,-3.03576608296015e-12,-2.16840434497189e-11,6.76542155631094e-11 +10.796,-1.49660485901544e-06,-4.35569444269535e-07,1.44340499478625e-06,-3.29047291150464e-10,-8.56761668555084e-10,-0.0799999969331283,-1.20876767796554e-09,4.24244840646673e-10,2.65671165622401e-10,5.18812423577821e-12,2.01911404262867e-10,-2.25049145985448e-10,-2.51218859315459e-08,6.09865889965743e-08,2.58606070598378e-07,-2.16840434554842e-12,-9.97466000929209e-12,8.84708972998039e-11 +10.798,1.44304283713342e-09,-6.55697531340427e-09,-1.67062864930845e-09,-3.28998285212267e-10,-8.56100294821527e-10,-0.0799999969336004,2.09015058299302e-07,4.15910873449582e-07,-1.14700633539705e-07,5.19679785315578e-12,2.01940894561869e-10,-2.24854856956039e-10,2.40042360988262e-10,-1.02999206386101e-10,-8.02309607639005e-12,8.99887803162769e-12,-1.73472347597623e-12,7.97972798949194e-11 +10.8,-1.49576879878224e-06,-4.33905800775736e-07,1.44294619225209e-06,-3.29026503959051e-10,-8.55953904976836e-10,-0.0799999969340277,-1.20780750852159e-09,4.23832843821128e-10,2.65639073238096e-10,5.22411974790473e-12,2.01904465368963e-10,-2.24729956865868e-10,-6.03323814286723e-08,-1.02494618648896e-07,2.78821453759777e-07,8.34835672871708e-12,-2.90566182001968e-11,5.55111512063064e-11 +10.802,1.43821160709934e-09,-6.55527998202898e-09,-1.6695660930155e-09,-3.28977388733276e-10,-8.55292676960051e-10,-0.0799999969344993,2.08773728773588e-07,4.15500894974986e-07,-1.13585347724667e-07,5.23019128007065e-12,2.01824668089068e-10,-2.24632812351213e-10,2.4080130264306e-10,-8.65193334113858e-11,-1.75640752237483e-11,-5.42101086822606e-13,-2.42861286860829e-11,6.93889390640052e-11 +10.804,-1.49493370386715e-06,-4.32243797195836e-07,1.44249185086119e-06,-3.29005583193931e-10,-8.5514660630448e-10,-0.0799999969349262,-1.20684430331101e-09,4.23486766487483e-10,2.65568816937201e-10,5.22195134355744e-12,2.01807320854218e-10,-2.24452401109612e-10,-8.50929569862061e-08,-2.28419713699196e-07,2.49344490367508e-07,-1.40946282423089e-12,0,7.97972798949129e-11 +10.806,1.43338422988609e-09,-6.55358603496303e-09,-1.66850381774775e-09,-3.28956500927902e-10,-8.54485447676634e-10,-0.0799999969353971,2.08433356945643e-07,4.14587216120189e-07,-1.12587969763196e-07,5.22455342877372e-12,2.01824668089068e-10,-2.24313623231634e-10,2.40259201288863e-10,-8.91214185313112e-11,-1.05167610436293e-11,5.79793832675782e-22,-9.97465996446278e-12,6.93889390141676e-11 +10.808,-1.49409997043937e-06,-4.30585448331355e-07,1.44204149898214e-06,-3.28984684980216e-10,-8.54339307632124e-10,-0.0799999969358235,-1.20588326650586e-09,4.23130280813357e-10,2.65526749893026e-10,5.22195134355976e-12,2.01767422214361e-10,-2.24174845353556e-10,-1.00671424321814e-07,-3.11527930188576e-07,1.86084763050028e-07,2.38524477946878e-12,-1.82145964977585e-11,7.19910242530583e-11 +10.81,1.42856069682007e-09,-6.55189351383978e-09,-1.66744171074817e-09,-3.28935613122527e-10,-8.53678377987777e-10,-0.0799999969362938,2.08030671248356e-07,4.13341104399435e-07,-1.11843630710996e-07,5.2340944078916e-12,2.01751809703077e-10,-2.24025659134621e-10,2.40747092400433e-10,-9.28077059647694e-11,-7.37257477290224e-12,4.22838847269434e-12,-1.90819582357534e-11,5.98479599212129e-11 +10.812,-1.49326784775437e-06,-4.28932083913758e-07,1.44159412445929e-06,-3.28963748602584e-10,-8.53532300393312e-10,-0.0799999969367196,-1.20492027813626e-09,4.22759049989498e-10,2.65497259593935e-10,5.23886489745053e-12,2.01691094381418e-10,-2.23935453513871e-10,-1.08181367533026e-07,-3.51593103635494e-07,1.06509419352155e-07,3.25260651687465e-12,-9.54097914027199e-12,6.07153216840427e-11 +10.814,1.42374101570752e-09,-6.55020247763982e-09,-1.6663797217098e-09,-3.28914657662938e-10,-8.52871613610251e-10,-0.0799999969371895,2.07597945778224e-07,4.11934731984893e-07,-1.11417593033588e-07,5.2471048339591e-12,2.01713645786516e-10,-2.23782797847885e-10,2.38253427403662e-10,-9.45424294407173e-11,-1.1817803680101e-11,4.22838847269266e-12,-9.1072982488752e-12,1.09287578986515e-10 +10.816,-1.49243745597126e-06,-4.27284344985818e-07,1.44114845408716e-06,-3.28942760183248e-10,-8.52725445810165e-10,-0.0799999969376147,-1.20396726442664e-09,4.22380880271735e-10,2.65449988379214e-10,5.25577845134131e-12,2.01654665188422e-10,-2.23498303197924e-10,-1.08572168160001e-07,-3.52538961519291e-07,2.67385939654758e-08,-6.50521302908955e-13,-1.82145964753664e-11,1.10154940699705e-10 +10.818,1.41892514664982e-09,-6.54851295411873e-09,-1.66531792175628e-09,-3.28893634549132e-10,-8.52064994949497e-10,-0.0799999969380835,2.07163657105584e-07,4.10524576138816e-07,-1.11310638657726e-07,5.24450274874746e-12,2.01640787400614e-10,-2.23342178085087e-10,2.40692882425398e-10,-8.02309608108011e-11,-9.10729827833463e-12,-5.20417042851281e-12,-7.37257479528782e-12,4.59701721381865e-11 +10.82,-1.49160880134284e-06,-4.25642246681263e-07,1.44070321153253e-06,-3.28921782172253e-10,-8.51918882660563e-10,-0.0799999969385081,-1.20300449289694e-09,4.22059956428492e-10,2.65413559186101e-10,5.23496176962726e-12,2.01625174889241e-10,-2.23314422509372e-10,-1.0259263057142e-07,-3.21133310915366e-07,-4.06594246118927e-08,-2.05998412772197e-12,-9.1072982488752e-12,6.59194920871096e-11 +10.822,1.41411312867823e-09,-6.54682471429302e-09,-1.66425626751954e-09,-3.28872694702054e-10,-8.5125849424994e-10,-0.0799999969389768,2.06753286583298e-07,4.09240042895154e-07,-1.11473276356173e-07,5.23626281223657e-12,2.01604358207619e-10,-2.23078500116738e-10,2.36843964445947e-10,-1.0039712112533e-10,-6.93889387445261e-12,2.49366499729834e-12,-1.86482773443672e-11,8.50014502980898e-11 +10.824,-1.4907817881965e-06,-4.24005286509682e-07,1.4402573184271e-06,-3.28900837121004e-10,-8.51112465227732e-10,-0.0799999969394004,-1.20205711703916e-09,4.21658367943991e-10,2.65385803610603e-10,5.24493642961645e-12,2.01550581779864e-10,-2.22974416708179e-10,-9.0961309665033e-08,-2.65876947194766e-07,-8.78208096522145e-08,-4.3368086899425e-13,-1.43114686768102e-11,3.2959746043563e-11 +10.826,1.40930490021007e-09,-6.54513808082124e-09,-1.66319472430509e-09,-3.28851714956335e-10,-8.50452291922821e-10,-0.0799999969398687,2.06389441344638e-07,4.08176535106375e-07,-1.11824559594782e-07,5.23452808876059e-12,2.01547112332912e-10,-2.22946661132564e-10,2.39283419467577e-10,-9.25908655302852e-11,-8.56519716263643e-12,-4.44522890719146e-12,-1.51788304148052e-11,6.59194920871324e-11 +10.828,-1.48995623043113e-06,-4.22372580369257e-07,1.43981002018873e-06,-3.28879899008649e-10,-8.50306276778401e-10,-0.0799999969402922,-1.20109998336129e-09,4.2128800448187e-10,2.65351542821953e-10,5.22715551398769e-12,2.01489866458204e-10,-2.22710738739831e-10,-7.448398454124e-08,-1.9575899066013e-07,-1.11798808046008e-07,1.73472347539518e-12,-1.56125113061656e-11,1.02348685107361e-10 +10.83,1.40450050027663e-09,-6.54345292880332e-09,-1.66213331813381e-09,-3.28830806334279e-10,-8.49646332456988e-10,-0.0799999969407595,2.06091505406473e-07,4.07393499143735e-07,-1.12271754826966e-07,5.24146698266217e-12,2.01484662287687e-10,-2.22537266392134e-10,2.35922392732819e-10,-9.45424294407044e-11,-8.45677694538411e-12,2.71050543121306e-12,-5.20417042792868e-12,6.33174068731388e-11 +10.832,-1.4891318644095e-06,-4.20743006372681e-07,1.43936093316942e-06,-3.28858933140719e-10,-8.4950033812925e-10,-0.0799999969411823,-1.20015629379035e-09,4.20909834764107e-10,2.65317715714171e-10,5.23799753571255e-12,2.01469049776493e-10,-2.22457469112338e-10,-5.42816659447887e-08,-1.19617206719467e-07,-1.13865297411697e-07,-3.36102673412382e-12,-1.12757025714843e-11,6.07153216344958e-11 +10.834,1.39969987510147e-09,-6.54176928946426e-09,-1.66107204727095e-09,-3.28809854344136e-10,-8.48840456257882e-10,-0.0799999969416493,2.05874378742694e-07,4.06915030316857e-07,-1.12727216016613e-07,5.22802287572568e-12,2.01439559477401e-10,-2.22294405105596e-10,2.37765536559273e-10,-8.30498864591086e-11,-1.00830802335717e-11,-2.81892564904322e-12,-1.99493199960952e-11,9.02056207754707e-11 +10.836,-1.48830836689453e-06,-4.19115346251414e-07,1.43891002430535e-06,-3.28838021049216e-10,-8.4869457989134e-10,-0.0799999969420715,-1.19920523164412e-09,4.2057763521827e-10,2.65277383393237e-10,5.22672183311637e-12,2.01389252496508e-10,-2.22096646629236e-10,-3.17161119416059e-08,-4.51130018758165e-08,-9.85458459626157e-08,-2.276824562219e-12,-8.67361737988114e-12,7.89299181569248e-11 +10.838,1.39490305417489e-09,-6.54008697892339e-09,-1.66001093773738e-09,-3.28788947456804e-10,-8.48034899247896e-10,-0.0799999969425377,2.05747514294927e-07,4.06734578309354e-07,-1.13121399400463e-07,5.2189155774768e-12,2.01404865007881e-10,-2.21978685432969e-10,2.35813972382499e-10,-9.9096078518502e-11,-3.57786713974717e-12,-1.40946282365111e-12,-9.10729822651951e-12,5.89805981585705e-11 +10.84,-1.48748537683735e-06,-4.17488407938177e-07,1.43845753870775e-06,-3.28817145386906e-10,-8.47888960431309e-10,-0.0799999969429594,-1.19826197575459e-09,4.20181250904197e-10,2.65263071924678e-10,5.22108398182177e-12,2.01352823303602e-10,-2.21860724236602e-10,-8.5050781521721e-09,2.13214862432333e-08,-7.20787362088094e-08,-1.62630325872864e-12,-9.97465998686774e-12,6.41847686111554e-11 +10.842,1.39011000627187e-09,-6.53840625391977e-09,-1.65894988544968e-09,-3.28768063120877e-10,-8.47229487954682e-10,-0.0799999969434252,2.05713493982318e-07,4.06819864254327e-07,-1.13409714345299e-07,5.21241036444189e-12,2.01364966367934e-10,-2.21721946358524e-10,2.34838190560386e-10,-8.39172481504002e-11,-7.37257477290224e-12,-2.81892564846303e-12,-1.3877787807816e-11,7.45931094670174e-11 +10.844,-1.48666252286142e-06,-4.1586112848116e-07,1.43800389985037e-06,-3.28796295745448e-10,-8.47083500565837e-10,-0.0799999969438463,-1.19732262299235e-09,4.19845581911595e-10,2.65233581625586e-10,5.20980827922792e-12,2.01297312152371e-10,-2.21562351798734e-10,1.35626644235396e-08,7.52293192566416e-08,-4.1181576365567e-08,2.16840433918341e-13,-2.25514052100478e-11,8.23993651334966e-11 +10.846,1.3853207157799e-09,-6.53672687159212e-09,-1.65788895112318e-09,-3.2874722388776e-10,-8.46424298706072e-10,-0.0799999969443114,2.05767744640013e-07,4.07120781531353e-07,-1.13574440650761e-07,5.21327772617756e-12,2.01274760747094e-10,-2.2139234889799e-10,2.37602906100171e-10,-9.19403442267401e-11,-7.04731412115343e-12,-6.17995238316592e-12,-5.63785129692274e-12,6.85215773010675e-11 +10.848,-1.48583945188286e-06,-4.14232645355034e-07,1.43754960208776e-06,-3.28775442634544e-10,-8.46278401522849e-10,-0.0799999969447319,-1.19637221136794e-09,4.19477820534688e-10,2.65205392369101e-10,5.18508846969525e-12,2.01274760747183e-10,-2.2128826548953e-10,3.26700472459248e-08,1.13712858618979e-07,-1.1812491102061e-08,-4.66206934111e-12,-7.3725747505619e-12,6.33174068485906e-11 +10.85,1.38053522693443e-09,-6.53504896030999e-09,-1.6568281295537e-09,-3.28726483533881e-10,-8.45619199663084e-10,-0.0799999969451966,2.05898424828996e-07,4.07575632965829e-07,-1.13621690615169e-07,5.19462944881312e-12,2.01245270448092e-10,-2.21139079270596e-10,2.34025039063784e-10,-8.99887803628486e-11,-9.21571849557026e-12,7.58941520682119e-12,-2.29850860790356e-11,8.84708972993644e-11 +10.852,-1.48501585818354e-06,-4.12602342823171e-07,1.4370951153253e-06,-3.28754664116748e-10,-8.45473420441056e-10,-0.0799999969456165,-1.19543611121169e-09,4.19117865413237e-10,2.65168529495119e-10,5.21544613052253e-12,2.01182820402867e-10,-2.20934381900332e-10,4.72675826430744e-08,1.35749484569926e-07,1.14973135179048e-08,1.73472347597643e-12,-7.37257477289897e-12,9.5409791178699e-11 +10.854,1.37575348248958e-09,-6.53337248884833e-09,-1.65576745543572e-09,-3.28705621749359e-10,-8.44814468381472e-10,-0.0799999969460803,2.06087495159569e-07,4.08118630904109e-07,-1.13575701361097e-07,5.20156834271703e-12,2.01215780149e-10,-2.20757440105881e-10,2.35542921839791e-10,-9.3891908090739e-11,-8.78203756769109e-12,-4.87890977560693e-12,-4.77048953660287e-12,5.72458746827228e-11 +10.856,-1.48419150820291e-06,-4.10969868299554e-07,1.43664081251986e-06,-3.28733857843377e-10,-8.4466855732046e-10,-0.0799999969464995,-1.19449393952433e-09,4.18742297780874e-10,2.65133401344848e-10,5.1959304914201e-12,2.01163738444721e-10,-2.20705398401602e-10,5.62366993250979e-08,1.4176095193555e-07,2.61763267311927e-08,-8.67361737988499e-13,-1.99493199737355e-11,4.42354486374199e-11 +10.858,1.37097550673149e-09,-6.53169751965721e-09,-1.65470692183034e-09,-3.28684838027393e-10,-8.44009813427693e-10,-0.0799999969469631,2.06312441956869e-07,4.08685674711851e-07,-1.13470996054173e-07,5.19809889576508e-12,2.01135982869105e-10,-2.20580498311331e-10,2.36247653384617e-10,-8.5218290757383e-11,-6.50521303491374e-12,-2.38524477946857e-12,-1.51788304147987e-11,7.54604712050059e-11 +10.86,-1.48336625843508e-06,-4.09335125600707e-07,1.43618692853564e-06,-3.28713065447794e-10,-8.43864013388984e-10,-0.0799999969473818,-1.19354894891079e-09,4.18401424617844e-10,2.65107380492709e-10,5.18638951230223e-12,2.01103023123061e-10,-2.20403556516782e-10,0.0542959496165635,0.014444699549754,-0.0515532636845732,1.60407711419137e-09,6.16173778664591e-09,2.59254423487125e-09 +10.862,1.36620131093584e-09,-6.53002391395874e-09,-1.65364649230837e-09,-3.28664092469344e-10,-8.43205401335201e-10,-0.0799999969478448,0.000217390110908187,5.81874838737215e-05,-0.000206326525734324,1.16144073525298e-11,2.25782934015686e-10,-2.10210321371847e-10,2.35199229883745e-08,-6.57525249525412e-09,-4.47862233410212e-09,3.24068029355845e-10,-3.58350502049829e-09,3.80164649760232e-09 +10.864,-6.1380581480204e-07,-1.76585190105744e-07,6.1088082559807e-07,-3.28666607818384e-10,-8.42960881652921e-10,-0.0799999969482226,-1.09946925695726e-09,3.92100414636819e-10,2.47192891156294e-10,6.48266162972604e-12,1.86769003041064e-10,-2.05196970526367e-10,-0.146836740616224,-0.0386518412666771,0.139095115819112,-3.87385436229027e-09,-2.23349984340502e-08,-7.58941520763363e-10 +10.866,1.36180343390802e-09,-6.52845551230019e-09,-1.65265772074374e-09,-3.28638161822825e-10,-8.42458325323037e-10,-0.0799999969486655,-0.000369956851556643,-9.64198811929699e-05,0.000350053937542061,-3.88101009662954e-12,1.36442940279495e-10,-2.132460874549e-10,-2.91000405194909e-08,6.68128746767965e-09,4.40175240004546e-09,-4.16550474669557e-10,3.97902197300017e-09,-4.08614114763968e-09 +10.868,-2.09363322102845e-06,-5.62264714877581e-07,2.01109657576616e-06,-3.28682131858771e-10,-8.42415109891803e-10,-0.0799999969490756,-1.21586941903521e-09,4.18825564507535e-10,2.64799900756474e-10,4.816459731048e-12,2.02685090933062e-10,-2.21541535116924e-10,0.190858479712198,0.0498717703685685,-0.181352869578491,4.77168218132488e-09,3.06087620527349e-08,-4.79651041107479e-10 +10.87,1.35693995623187e-09,-6.52678021004216e-09,-1.65159852114072e-09,-3.28618895983901e-10,-8.41647584959304e-10,-0.0799999969495517,0.000393477067292406,0.000103067200281371,-0.000375357540772145,1.52057186286764e-11,2.58877988490475e-10,-2.15164691619331e-10,4.48073652832695e-08,-1.14940609113439e-08,-7.02476271594023e-09,2.92192485485442e-10,-6.26321910999313e-09,6.75761530064454e-09 +10.872,-5.19724951859001e-07,-1.49995913752143e-07,5.09666412677745e-07,-3.28621308984256e-10,-8.41379597937841e-10,-0.0799999969499363,-1.03663995790216e-09,3.72849320862164e-10,2.36700849892716e-10,5.98522967298964e-12,1.77632214493093e-10,-1.94511073914349e-10,-0.250671955189279,-0.0645591489852971,0.238420254163505,-6.3465942570798e-09,-4.36027082495556e-08,4.50854631406472e-09 +10.874,1.35279339640026e-09,-6.52528881275871e-09,-1.65065171774115e-09,-3.28594955065209e-10,-8.40937056101332e-10,-0.0799999969503297,-0.0006092107534646,-0.00015516939565979,0.000578323475881771,-1.018065839964e-11,8.4467155492272e-11,-1.97130506363074e-10,-5.10860884844868e-08,1.16929035898242e-08,7.00025974687145e-09,-4.68592178948338e-10,6.71337985203172e-09,-7.15746906188188e-09 +10.876,-2.95656796571713e-06,-7.70673496391233e-07,2.82296031620458e-06,-3.28662031617855e-10,-8.41041729315872e-10,-0.0799999969507248,-1.24098431184008e-09,4.19620935221456e-10,2.64701888880199e-10,4.11086095719649e-12,2.04485733901217e-10,-2.23140950161873e-10,0.269085248894601,0.0683512773993011,-0.256829337727967,6.32360917102142e-09,5.11244692413607e-08,-9.21485110436486e-09 +10.878,1.3478294591529e-09,-6.52361032901783e-09,-1.64959291018563e-09,-3.2857851162138e-10,-8.40119113165727e-10,-0.0799999969512223,0.000467130242113685,0.000118235713937385,-0.000448993875029983,1.51137782844429e-11,2.88965032457692e-10,-2.33989910780529e-10,-3.87081859620687e-09,2.17165695148797e-09,2.55839186641347e-09,-4.46257614194934e-10,1.29930788350634e-09,-1.07292646989141e-09 +10.88,-1.08804699726177e-06,-2.97730640641536e-07,1.02698481608404e-06,-3.28601576504717e-10,-8.39885869186041e-10,-0.0799999969516608,-1.25646758622491e-09,4.28307563027411e-10,2.74935456345856e-10,2.32583050041616e-12,2.09682965435244e-10,-2.2743265604144e-10,-0.162528391559877,-0.0419838903050487,0.156523890418407,-4.39264510182431e-09,-2.76610331861622e-08,2.27075303002817e-09 +10.882,1.34280358880801e-09,-6.52189709876572e-09,-1.64849316836024e-09,-3.28569208299379e-10,-8.39280381303986e-10,-0.079999996952132,-0.000182983324125751,-4.96998472827913e-05,0.000177101686643576,-2.45680212285242e-12,1.78320899713056e-10,-2.24906898660418e-10,2.64312226620714e-08,-5.08859447638987e-09,-2.96388347895348e-09,3.00757682647153e-10,-3.16283457759729e-09,3.37577188427536e-09 +10.884,-1.81998029376469e-06,-4.96530029772679e-07,1.73539156265827e-06,-3.28611403713208e-10,-8.39172585587189e-10,-0.0799999969525604,-1.15074269557664e-09,4.07953185121854e-10,2.63079922430044e-10,3.52886123100464e-12,1.97031627124856e-10,-2.1392956850434e-10,0.0391204211681091,0.0116921838085966,-0.0359385171499556,1.56580477750321e-09,2.61596300177244e-09,3.53016227361201e-09 +10.886,1.3382006180257e-09,-6.52026528602523e-09,-1.64744084867052e-09,-3.28555092854455e-10,-8.38492254795487e-10,-0.0799999969529878,-2.65016394532623e-05,-2.93111204838941e-06,3.33476180437062e-05,3.80641698716253e-12,1.88784751720149e-10,-2.10786249565965e-10,-1.80492014564755e-08,4.59723405181933e-09,2.02420545606009e-09,2.70942122904579e-10,2.24559953967435e-09,-2.60295257572753e-09 +10.888,-1.92598685157773e-06,-5.08254477966236e-07,1.86878203483308e-06,-3.2859617804526e-10,-8.38417446580308e-10,-0.0799999969534035,-1.22293950140253e-09,4.26342121329129e-10,2.71176744254283e-10,4.61262972262284e-12,2.06014025283552e-10,-2.24341378807249e-10,0.0377238638560032,0.0084979123683647,-0.0386071723374293,1.00115228607334e-09,1.02010414004839e-08,-4.32206354039717e-09 +10.89,1.33330886002009e-09,-6.51855991753991e-09,-1.64635614169351e-09,-3.28536642335564e-10,-8.37668198694352e-10,-0.0799999969538851,0.000124393815970734,3.10605374250656e-05,-0.000121081071305994,7.81102613145543e-12,2.2958891732208e-10,-2.28074503727552e-10,-8.31203595536207e-10,1.02305316995755e-09,1.08431059270299e-09,-4.55364912444023e-12,5.16080234103215e-10,-3.86843335142909e-10 +10.892,-1.42841158769485e-06,-3.84012328265987e-07,1.38445774960916e-06,-3.28564933940734e-10,-8.3749909091102e-10,-0.0799999969543158,-1.22626431578468e-09,4.30434334008959e-10,2.75513986625095e-10,4.59441512612508e-12,2.08078346219965e-10,-2.25888752147821e-10,-0.0422518940809127,-0.01084293995324,0.0418417234835557,-1.0459298357974e-09,-7.47752554322184e-09,8.4481033282584e-10 +10.894,1.32840380275695e-09,-6.51683818020388e-09,-1.64525408574701e-09,-3.2851826467506e-10,-8.36835885309473e-10,-0.0799999969547887,-4.46137603528983e-05,-1.23112223878897e-05,4.62858226282106e-05,3.62730678826629e-12,1.99678815149196e-10,-2.24695262396249e-10,2.57538131445632e-08,-5.85946222097935e-09,-3.59337126026791e-09,3.57027775399397e-10,-3.36666458600124e-09,3.61256163872089e-09 +10.896,-1.6068666291065e-06,-4.33257217817562e-07,1.56960104012206e-06,-3.28550424713581e-10,-8.36700375650423e-10,-0.0799999969552146,-1.12324906320639e-09,4.06996485125033e-10,2.61140501584018e-10,6.02252622772314e-12,1.94611687875956e-10,-2.11438505592932e-10,-0.0138365407395073,-0.00259308669437276,0.0139333266633468,1.41596803727041e-10,-6.42975256368728e-09,4.42701431066884e-09 +10.898,1.32391080650412e-09,-6.51521019426338e-09,-1.64420952374067e-09,-3.28494174570149e-10,-8.36057438557969e-10,-0.0799999969556344,-9.99599233109215e-05,-2.26835691653796e-05,0.000102019129281592,4.19369400317439e-12,1.73959804894449e-10,-2.06987205153575e-10,-2.00357850968598e-08,4.08679166892076e-09,1.79706510086534e-09,1.30754782001054e-10,2.28549817957733e-09,-2.53443099837807e-09 +10.9,-2.00670632235014e-06,-5.2399149447907e-07,1.97767755724838e-06,-3.28533649937568e-10,-8.36004536430845e-10,-0.0799999969560426,-1.20339220359382e-09,4.23343651800715e-10,2.68328761987479e-10,6.5455453557273e-12,2.03753680594264e-10,-2.21576229586444e-10,0.0650574276303925,0.0156413614647126,-0.0659013586041075,1.5595164049028e-09,1.50977320922918e-08,-4.78870415543291e-09 +10.902,1.31909723768975e-09,-6.51351681965617e-09,-1.64313620869272e-09,-3.28467992388726e-10,-8.35242423835592e-10,-0.0799999969565207,0.000160269787210735,3.98818766934916e-05,-0.000161586305134926,1.04317596227877e-11,2.34350733263637e-10,-2.26142021775313e-10,-2.91769646650996e-09,7.3639011559932e-10,1.03454571301568e-09,-1.76616533897201e-10,6.33174068754294e-10,-4.29344060328954e-10 +10.904,-1.36562717350727e-06,-3.64463987705121e-07,1.33133233670875e-06,-3.28491922899077e-10,-8.35067133497791e-10,-0.0799999969569471,-1.21506298945986e-09,4.26289212263112e-10,2.72466944839541e-10,5.83907922013858e-12,2.06286376869281e-10,-2.23293605827759e-10,0.00153731835893051,0.00061869449537538,0.0010150353071082,1.03866568124134e-10,-3.07349631856258e-09,3.45556916414656e-09 +10.906,1.31423698573191e-09,-6.51181166280712e-09,-1.64204634091336e-09,-3.28444636071845e-10,-8.34417278328115e-10,-0.0799999969574139,0.000166419060646457,4.23566546749928e-05,-0.000157526163906494,1.08472258952842e-11,2.22056747989388e-10,-2.12319745118729e-10,2.52422865595958e-08,-6.80532019625851e-09,-4.55917855551979e-09,3.06937635030714e-10,-3.76131417678754e-09,3.9464959078481e-09 +10.908,-6.99950930921518e-07,-1.95037369005169e-07,7.01227681082842e-07,-3.28448533995496e-10,-8.34178906505834e-10,-0.0799999969577964,-1.11409384322149e-09,3.9906793147808e-10,2.54230230617464e-10,7.0668297602613e-12,1.91241120162132e-10,-2.07507622196369e-10,-0.12856843081289,-0.0324044891048216,0.122154267177876,-3.35799096862256e-09,-1.95884974907504e-08,-6.46184494777644e-10 +10.91,1.30978061035902e-09,-6.51021539108121e-09,-1.64102941999089e-09,-3.28416368752804e-10,-8.33652313847466e-10,-0.0799999969582439,-0.000347854662605045,-8.72613017442792e-05,0.000331090904804956,-2.58473797920458e-12,1.43702758026395e-10,-2.14904483097839e-10,-2.65935819372616e-08,6.05960594202013e-09,3.87049333555514e-09,-3.03034507209631e-10,3.58827551005722e-09,-3.67327696038007e-09 +10.912,-2.09136958134216e-06,-5.44082575982402e-07,2.02559130030311e-06,-3.28458872947412e-10,-8.33604095473728e-10,-0.079999996958656,-1.22046817097057e-09,4.23306355246169e-10,2.6971220395969e-10,5.85469173142237e-12,2.05594222202366e-10,-2.22200730037894e-10,0.135760429757685,0.0341641778077331,-0.130299603248981,3.28762624762823e-09,2.40502062709637e-08,-2.61943244874941e-09 +10.914,1.30489873767514e-09,-6.50852216566022e-09,-1.63995057117505e-09,-3.28392949985878e-10,-8.32829936958657e-10,-0.0799999969591327,0.000195187056425635,4.93954094866382e-05,-0.000190107508190911,1.05657670113069e-11,2.39903583110239e-10,-2.25382212892836e-10,1.25561453609069e-09,-2.6020852609597e-12,3.81313904033118e-10,-1.49836740238113e-10,5.55111512084195e-11,5.37764277799408e-11 +10.916,-1.31062135563971e-06,-3.46500938035871e-07,1.26516126753955e-06,-3.28416609879367e-10,-8.32644481141287e-10,-0.0799999969595576,-1.21544571282621e-09,4.23295946905125e-10,2.71237459575822e-10,5.25534477046998e-12,2.058162668072e-10,-2.21985624326774e-10,-0.0107661855338473,-0.00268858756547032,0.0120629081328823,-1.45933612416516e-10,-5.29220764433506e-09,3.69409364209178e-09 +10.918,1.30003695482384e-09,-6.5068289818726e-09,-1.63886562133675e-09,-3.28371928606797e-10,-8.32006671891428e-10,-0.0799999969600207,0.000152122314290231,3.86410592247533e-05,-0.000141855875659366,9.98203256164064e-12,2.18734752532892e-10,-2.10605838324463e-10,4.77553652003669e-08,-1.23568690002075e-08,-8.19277371635841e-09,5.53485209054555e-10,-6.94192966996886e-09,7.23813370349018e-09 +10.92,-7.02132098478851e-07,-1.91936701136874e-07,6.97737764902145e-07,-3.28376681749121e-10,-8.31769542131156e-10,-0.0799999969604,-1.02442425202476e-09,3.73868470904301e-10,2.38466364710392e-10,7.46928560668796e-12,1.78048548127327e-10,-1.93033089512816e-10,-0.167810026224004,-0.0407313913181574,0.159609648029478,-4.06803497138376e-09,-2.99951036231216e-08,3.72358394118503e-09 +10.922,1.29593925781574e-09,-6.50533350798899e-09,-1.63791175587791e-09,-3.2834205146437e-10,-8.31294477698918e-10,-0.0799999969607928,-0.000519117790605709,-0.000124284506047858,0.000496582716458477,-6.2901073238926e-12,9.87543380404186e-11,-1.95711502559725e-10,-4.97725775525203e-08,1.07971357549165e-08,6.2506423648148e-09,-4.12647346848074e-10,6.31309240994998e-09,-6.63878674256471e-09 +10.924,-2.77860326090146e-06,-6.89074725328254e-07,2.68406863073584e-06,-3.28401842178416e-10,-8.31374524778994e-10,-0.0799999969611828,-1.22351456223482e-09,4.17057013923962e-10,2.63468934169648e-10,5.81869621929585e-12,2.03300917767124e-10,-2.19588236483072e-10,0.23301181540872,0.0558187667274858,-0.224913936093534,5.43044342132763e-09,4.50316867128609e-08,-8.42294983758177e-09 +10.926,1.2910451995668e-09,-6.50366527993329e-09,-1.63685788014123e-09,-3.28318776679493e-10,-8.3048127402785e-10,-0.0799999969616712,0.000412929471029067,9.899056086206e-05,-0.00040307302791556,1.54316663614155e-11,2.78881084891842e-10,-2.29403301910048e-10,-4.16528790625383e-09,1.66793662215134e-09,2.27628246113281e-09,-5.41775825590885e-10,1.1991276027687e-09,-9.38485400503243e-10 +10.928,-1.12688537678464e-06,-2.93112481879881e-07,1.07177651907306e-06,-3.28340115512971e-10,-8.30259000439426e-10,-0.0799999969621004,-1.24017571385984e-09,4.2372876041257e-10,2.72574064014183e-10,3.65159291693158e-12,2.08097428178201e-10,-2.23342178085087e-10,-0.0823700721249792,-0.0198315837044251,0.0822976543107762,-2.30848326565493e-09,-1.72865194380817e-08,4.4209427785024e-09 +10.93,1.28608449671136e-09,-6.50197036489164e-09,-1.63576758388517e-09,-3.28304170307825e-10,-8.29648884315137e-10,-0.0799999969625645,8.34491825291861e-05,1.96642260443685e-05,-7.38824106724911e-05,6.19773329879682e-12,2.09735007139523e-10,-2.11719530796041e-10,2.64717718233206e-08,-6.1901438836344e-09,-3.93218443919981e-09,2.36356073601382e-10,-3.59434704224625e-09,3.75394160203777e-09 +10.932,-7.93088646667932e-07,-2.14455577702416e-07,7.76246876383127e-07,-3.28315324579775e-10,-8.29420060410868e-10,-0.0799999969629473,-1.13428862656657e-09,3.98968184878035e-10,2.56845326257385e-10,4.597017211337e-12,1.93720040009217e-10,-2.08326411676937e-10,-0.100740074957135,-0.0243903295427149,0.0940451892823787,-2.59720630418844e-09,-1.46740258832845e-08,-1.09894732203106e-09 +10.934,1.28154734220509e-09,-6.50037449215213e-09,-1.63474020258014e-09,-3.2828578223898e-10,-8.288740041551e-10,-0.0799999969633979,-0.000319511117299488,-7.78970921265237e-05,0.000302298346457149,-4.19109191796043e-12,1.51038903606365e-10,-2.16115320084166e-10,-2.42810871237045e-08,6.37012144426703e-09,4.10815045179424e-09,-2.13479407761933e-10,3.52278969886218e-09,-3.6290415117674e-09 +10.936,-2.07113311586574e-06,-5.26043946208476e-07,1.98544026221159e-06,-3.28332088947447e-10,-8.28815904796443e-10,-0.0799999969638118,-1.23141297506138e-09,4.244486706551e-10,2.7327792806456e-10,3.74309958028937e-12,2.07811198804664e-10,-2.22842577724005e-10,0.125428371296162,0.0306720441291592,-0.118755747663926,3.12987483153184e-09,2.2050937464884e-08,-2.37310171513679e-09 +10.938,1.27662169030485e-09,-6.49867669746951e-09,-1.63364709086788e-09,-3.28270809840658e-10,-8.28042759359882e-10,-0.0799999969642892,0.000182202367885103,4.47910843900994e-05,-0.000172724644198504,8.32840740816557e-12,2.39242653465892e-10,-2.25607726944713e-10,3.354792572214e-09,1.36609473733202e-10,4.55256492226765e-10,-4.77048955893715e-12,-4.72712147203732e-11,1.11022302462534e-10 +10.94,-1.34232364432541e-06,-3.46879608648099e-07,1.29454168541765e-06,-3.28298775317815e-10,-8.27858934182579e-10,-0.0799999969647142,-1.21799380477252e-09,4.24995108550033e-10,2.75098954033467e-10,3.72401762205362e-12,2.07622113945783e-10,-2.22398488514155e-10,-0.0632794450281747,-0.0156487153116326,0.0612775237871443,-1.54802386187538e-09,-1.12522838269476e-08,1.26201132879789e-09 +10.942,1.27174971508576e-09,-6.49697671703531e-09,-1.63254669505175e-09,-3.2825591377017e-10,-8.27212270904099e-10,-0.0799999969651788,-7.09154122275682e-05,-1.78037768564242e-05,7.2385450950046e-05,2.13631196066472e-12,1.94233518158106e-10,-2.20559681629522e-10,2.61719899224907e-08,-5.90326398874775e-09,-3.74906269223679e-09,3.825065264528e-10,-3.47768688846373e-09,3.6489908317164e-09 +10.944,-1.62598529323578e-06,-4.18094716073819e-07,1.58408348921793e-06,-3.28290230069972e-10,-8.27082000109947e-10,-0.0799999969655965,-1.11330584508252e-09,4.01382052595034e-10,2.60102703264515e-10,5.25404372786533e-12,1.93711366391923e-10,-2.07802525187285e-10,-0.00405316544781045,-0.000127103864111098,0.00438452767268763,3.89011739488122e-10,-4.76094857979784e-09,4.27956281521124e-09 +10.946,1.26729649170543e-09,-6.49537118882493e-09,-1.63150628423869e-09,-3.28234897595259e-10,-8.26437425438531e-10,-0.07999999696601,-8.71280740188082e-05,-1.83121923128685e-05,8.99235616407946e-05,3.69235891861704e-12,1.75189723838917e-10,-2.03441430368678e-10,-1.97107954956585e-08,3.99701972903961e-09,1.78318731305764e-09,1.09179158768683e-10,2.25383947614086e-09,-2.44942954805564e-09 +10.948,-1.97449758931097e-06,-4.91343485325285e-07,1.94377773578107e-06,-3.28275460634297e-10,-8.26381241214591e-10,-0.0799999969664102,-1.19214902706515e-09,4.1737013151119e-10,2.67235452516745e-10,5.69076036294001e-12,2.02726724296486e-10,-2.17600243379506e-10,0.0600128060914834,0.0135840224084354,-0.0609425018333698,1.41770276074173e-09,1.42290693116966e-08,-4.66987559732852e-09 +10.95,1.26252789559717e-09,-6.49370170829888e-09,-1.63043734242863e-09,-3.28212134553807e-10,-8.25626518541345e-10,-0.0799999969668804,0.000152923150347206,3.60238973208913e-05,-0.000153846445692766,9.36316996158585e-12,2.32106001085722e-10,-2.22120932757999e-10,-2.91232966575492e-09,8.32884108949882e-10,1.1306060254978e-09,-1.9222904518109e-10,6.82180006950534e-10,-4.69242700275986e-10 +10.952,-1.36280498792222e-06,-3.47247896041736e-07,1.32839195301007e-06,-3.28238007954451e-10,-8.25452817210248e-10,-0.0799999969672987,-1.20379834572817e-09,4.2070166794699e-10,2.71757876618736e-10,4.92184418221574e-12,2.05455444324288e-10,-2.1947721418061e-10,0.0037572212578042,0.00117430334510239,-0.00128312594544742,1.49945160454778e-10,-2.58647270268199e-09,3.30985239216447e-09 +10.954,1.25771270221425e-09,-6.49201890162709e-09,-1.62935031092215e-09,-3.28192447177078e-10,-8.24804696764048e-10,-0.0799999969677583,0.000167952035378421,4.07211107013003e-05,-0.000158978949474555,9.96295060340489e-12,2.21760110274996e-10,-2.08881523189342e-10,2.49252116342524e-08,-6.64030462560618e-09,-4.38874197400503e-09,2.91650384398665e-10,-3.68108321602359e-09,3.82593262626769e-09 +10.956,-6.90996846408609e-07,-1.84363453236552e-07,6.92476155111921e-07,-3.28198156152038e-10,-8.24565776769148e-10,-0.0799999969681342,-1.10409749919117e-09,3.94140449444568e-10,2.54202908722717e-10,6.08844571981027e-12,1.90731111460195e-10,-2.04173483675541e-10,-0.128819815971022,-0.0310652127355458,0.122605895696422,-3.37891607055142e-09,-1.96639579619553e-08,-6.40112962612106e-10 +10.958,1.25329631221749e-09,-6.49044233982932e-09,-1.62833349928726e-09,-3.28168093394199e-10,-8.24041772318207e-10,-0.079999996968575,-0.000347327228505612,-8.3539740240869e-05,0.000331444633311078,-3.55271367879931e-12,1.43104278427183e-10,-2.1144197503979e-10,-2.63818914630839e-08,6.13571693452859e-09,3.95083271653629e-09,-2.76037873114748e-10,3.61776580914882e-09,-3.64985819345438e-09 +10.96,-2.08030576043152e-06,-5.1852241420014e-07,2.01825468835667e-06,-3.28212367006753e-10,-8.23993359655439e-10,-0.07999999696898,-1.20962506504354e-09,4.1868331718269e-10,2.70006239588868e-10,4.98429422735091e-12,2.05202174696795e-10,-2.18772916449363e-10,0.135438873757054,0.0326577792217841,-0.130198667656957,3.33175327604829e-09,2.4096176443077e-08,-2.66106581217248e-09 +10.962,1.24845781195732e-09,-6.48876760656059e-09,-1.6272534743289e-09,-3.28148156217289e-10,-8.2322096361942e-10,-0.0799999969694501,0.000194428266522546,4.70913766462532e-05,-0.000189350037316693,9.7742994253924e-12,2.3948898419948e-10,-2.22086238288479e-10,1.33150868816344e-09,1.17961196319907e-10,4.31295624184667e-10,-9.9855020086446e-11,8.19656842171075e-11,1.99493199980145e-11 +10.964,-1.30259269434142e-06,-3.30156907615148e-07,1.26085453908999e-06,-3.28173269809051e-10,-8.23035403718642e-10,-0.0799999969698683,-1.20429903029089e-09,4.1915516196797e-10,2.71731422085606e-10,4.58487414700517e-12,2.05530037433663e-10,-2.18693119169371e-10,-0.0681034349398921,-0.0164774098005257,0.0665911428528157,-1.77776630222408e-09,-1.20298736250275e-08,1.28889954265048e-09 +10.966,1.24364061583615e-09,-6.48709098591271e-09,-1.62616654864056e-09,-3.28129816720701e-10,-8.22398843469685e-10,-0.0799999969703249,-7.79854732371135e-05,-1.88182625558718e-05,7.70145340946592e-05,2.66323421649369e-12,1.91369489699354e-10,-2.16930640117876e-10,2.46325312576561e-08,-5.79744585666922e-09,-3.71686188768546e-09,3.06720794596726e-10,-3.36970035206288e-09,3.48939627190384e-09 +10.968,-1.61453458728984e-06,-4.05429957838627e-07,1.56891267546859e-06,-3.28162616872185e-10,-8.22269925759844e-10,-0.0799999969707361,-1.10576890526027e-09,3.95965378541296e-10,2.56863974534866e-10,5.81175732539194e-12,1.92051236025413e-10,-2.04735534081757e-10,-0.00186847592172814,0.000460324242699502,0.00232671091074439,3.77736036894033e-10,-4.3042826247684e-09,4.06792655116651e-09 +10.97,1.23921754021511e-09,-6.48550712439855e-09,-1.62513909274242e-09,-3.281065696914e-10,-8.21630638525583e-10,-0.0799999969711438,-8.54593769240252e-05,-1.6976965585074e-05,8.63213777376357e-05,4.17417836406965e-12,1.74152359200283e-10,-2.00658933913211e-10,-2.04783022136935e-08,4.0978505311271e-09,1.83815636323233e-09,4.75964753721241e-11,2.32062632998849e-09,-2.5023386140971e-09 +10.972,-1.95637209498591e-06,-4.73337820178915e-07,1.91419818641909e-06,-3.28145920158729e-10,-8.21573316323043e-10,-0.0799999969715387,-1.18768211411504e-09,4.12356780665802e-10,2.64216599987795e-10,6.00214322688041e-12,2.01333741345366e-10,-2.14744888538145e-10,0.0589928790016597,0.0129150760626383,-0.0593094913543689,1.33660443823937e-09,1.40551632832106e-08,-4.67334504425819e-09 +10.974,1.23446681175865e-09,-6.48385769727589e-09,-1.62408222634247e-09,-3.28082561118492e-10,-8.20825303560202e-10,-0.0799999969720028,0.000150512139082588,3.46833386654736e-05,-0.000150916587679814,9.52059611702653e-12,2.30373012333119e-10,-2.19352314090242e-10,-3.26621325472043e-09,1.00505541389384e-09,1.23360523185372e-09,-2.43078127071196e-10,7.42461647717903e-10,-5.66387214906303e-10 +10.976,-1.35432353865535e-06,-3.34604465516974e-07,1.31053183569964e-06,-3.28107837774261e-10,-8.2065182427371e-10,-0.0799999969724161,-1.20074696713392e-09,4.16377002321379e-10,2.69151020915211e-10,5.02983071859531e-12,2.04303587936239e-10,-2.17010437397771e-10,-0.0523501050456493,-0.0123331615044317,0.0521054867178311,-1.55984166555418e-09,-9.06826697064518e-09,8.29197821492745e-10 +10.978,1.22966382389011e-09,-6.4821921892666e-09,-1.62300562225881e-09,-3.28062441795618e-10,-8.20008089208457e-10,-0.0799999969728709,-5.88882810999866e-05,-1.4649307352248e-05,5.75053591914878e-05,3.28122945481049e-12,1.94099944450542e-10,-2.16035522804271e-10,2.36519788131165e-08,-5.5344184097145e-09,-3.27732632701833e-09,1.52330405233621e-10,-3.1177317672213e-09,3.2951072426413e-09 +10.98,-1.58987666305527e-06,-3.9320169492596e-07,1.54055327246556e-06,-3.28094712856442e-10,-8.19875424495908e-10,-0.0799999969732803,-1.10613905188147e-09,3.94239328682523e-10,2.56041715607139e-10,5.63915233952972e-12,1.91832660867355e-10,-2.03830008427207e-10,-0.00926778112998358,-0.00127316298822982,0.0096628214733027,6.6353172956098e-11,-5.41363828765341e-09,4.05578348683287e-09 +10.982,1.22523926768259e-09,-6.48061523195187e-09,-1.62198145539638e-09,-3.2803988518626e-10,-8.19240758564987e-10,-0.0799999969736862,-9.59594056199333e-05,-1.97419593051689e-05,9.61566450847115e-05,3.54664214663497e-12,1.72445391299921e-10,-1.99812388856935e-10,-2.06793132965951e-08,4.26763659138215e-09,2.10714692225446e-09,-2.08166817111004e-11,2.43555176029327e-09,-2.58560534096663e-09 +10.984,-1.97371428553497e-06,-4.72169532146627e-07,1.92517985280437e-06,-3.28080526287855e-10,-8.19185642930709e-10,-0.0799999969740795,-1.18885630506784e-09,4.1130987504805e-10,2.64470303296156e-10,5.55588561268533e-12,2.01574867908527e-10,-2.14172429791072e-10,0.0630205363357371,0.0138212238513908,-0.0629048147753105,1.40946282423147e-09,1.47807113770636e-08,-4.78610207022107e-09 +10.986,1.22048384246232e-09,-6.47896999245168e-09,-1.6209235741832e-09,-3.28017661643809e-10,-8.18434459093353e-10,-0.0799999969745429,0.000156122739722987,3.55429361003881e-05,-0.000155462614016503,9.18449344356022e-12,2.31568236808169e-10,-2.18956797137817e-10,-3.03782606708783e-09,1.11976400374328e-09,1.34939802387576e-09,-2.47306515543998e-10,7.71518265940854e-10,-6.13224748757933e-10 +10.988,-1.34922332664308e-06,-3.2999778774509e-07,1.30332939673843e-06,-3.28043788314081e-10,-8.18259369983476e-10,-0.0799999969749553,-1.20100760933619e-09,4.15788931063023e-10,2.69867895391659e-10,4.56665955050945e-12,2.0466094097229e-10,-2.16625328786104e-10,0.00244061636897945,0.000781758619423617,1.29532811516016e-05,7.61109925074459e-11,-2.70660230341792e-09,3.15546200282542e-09 +10.99,1.21567981202497e-09,-6.47730683672743e-09,-1.61984410260163e-09,-3.27999395005607e-10,-8.17615815329464e-10,-0.0799999969754094,0.000165885205198904,3.86699705780823e-05,-0.000155410800891896,9.48893741358997e-12,2.20741827594499e-10,-2.06334949126516e-10,2.5042847569956e-08,-6.33607749600387e-09,-4.17526256624075e-09,2.71158963338564e-10,-3.58697446745024e-09,3.70710406816161e-09 +10.992,-6.85682505847246e-07,-1.75317905432709e-07,6.81686193170633e-07,-3.28005832564426e-10,-8.17376402673098e-10,-0.0799999969757807,-1.10083621905633e-09,3.90444621078999e-10,2.5316684512669e-10,5.65129540386407e-12,1.90313043102485e-10,-2.01796912513452e-10,-0.128189393222045,-0.0297009804394096,0.121557499051986,-3.38021711315775e-09,-1.9508700210815e-08,-6.36643515706538e-10 +10.994,1.21127646714875e-09,-6.47574505824311e-09,-1.61883143522112e-09,-3.27976789823992e-10,-8.16854563157055e-10,-0.0799999969762166,-0.000346872367689219,-8.01339511795429e-05,0.000330819195315994,-4.03193103903954e-12,1.42707026751248e-10,-2.08881523189342e-10,-2.57872607814621e-08,6.28425263211572e-09,4.11920931389515e-09,-2.8004942115357e-10,3.63598040562544e-09,-3.63511304388618e-09 +10.996,-2.07317197660397e-06,-4.95853710150845e-07,2.00496297443446e-06,-3.28021960288583e-10,-8.16805574566093e-10,-0.0799999969766162,-1.20398526218217e-09,4.15581631607459e-10,2.69643682382269e-10,4.53109771924991e-12,2.04856964724985e-10,-2.16337364688995e-10,0.135119735949544,0.0312288209491067,-0.129433925279331,-0.476027740552817,-0.879331256431013,1.0318298900786 +10.998,1.20646052610002e-09,-6.47408273171668e-09,-1.61775286049159e-09,-3.27958665433115e-10,-8.16035135298154e-10,-0.0799999969770819,0.000193606576109136,4.47813326169257e-05,-0.000186916505801503,-0.00190411096624384,-0.0035173248830182,0.00412731935143424,-2.37500340574867e-07,5.07374741179503e-07,3.05020223488703e-07,-0.945572215832894,-1.75016404431456,5.53431276938341 +11,-1.29874567216751e-06,-3.16728379683162e-07,1.25729695122853e-06,-7.6167718869348e-06,-1.40701163376458e-05,-0.0799834876992105,-2.15398662448153e-09,2.44508059632525e-09,1.48972457633695e-09,-0.00378228885880006,-0.0070006559724005,0.0221372508611938,-0.0672506156003065,-0.0156031513029054,0.0656543019917725,-0.457690564239613,-0.854994556771114,10.9733276026428 +11.002,1.19784457960209e-09,-6.46430240933138e-09,-1.61179396218625e-09,-1.5129483393864e-05,-2.80034399247342e-05,-0.0799114479736371,-7.53958862920609e-05,-1.76312725946889e-05,7.57007021655577e-05,-0.00373487322320209,-0.00693730311010228,0.0480206297620006,-1.79835801198581e-07,1.00714076835284e-06,2.48199247612823e-07,0.022216148386867,0.0303449486063995,12.4712248966631 +11.004,-1.60032921733572e-06,-3.8725347006191e-07,1.56009975989073e-06,-2.25562647797415e-05,-4.18193287780519e-05,-0.0797914051801625,-2.87332982927578e-09,6.47364366973618e-09,2.48252156678813e-09,-0.0036934242652526,-0.00687927617797491,0.0720221504478407,0.0306187086285871,0.00738214195241563,-0.0297761598740268,0.0202347137889523,0.0294685996172534,12.0007538668679 +11.006,1.18635126028499e-09,-6.43840783465244e-09,-1.6018638759191e-09,-2.99031804548728e-05,-5.55205446366308e-05,-0.0796233593718458,4.70789482222739e-05,1.18972952149703e-05,-4.34039373305364e-05,-0.00365393436804629,-0.00681942871163328,0.0960236452294669,-1.70527708707281e-07,9.68007575138713e-07,2.37750574436038e-07,0.0200453801968727,0.0317828652502128,12.0007404408829 +11.008,-1.41201342444656e-06,-3.39664289202013e-07,1.38648401056853e-06,-3.71720022519315e-05,-6.90970436245941e-05,-0.0794073105992445,-3.55544066410513e-09,1.03456739702923e-08,3.4335238645326e-09,-0.00361324274446509,-0.00675214471697402,0.120025112211388,-0.0133446164569927,-0.00317533020992411,0.0128340703629849,0.0211923795568759,0.0364846959173343,12.0007251342575 +11.01,1.17212949762857e-09,-6.39702513877127e-09,-1.58812978046097e-09,-4.43561514327315e-05,-8.25291235045239e-05,-0.0791432589230003,-6.29951760569118e-06,-8.04025624724735e-07,7.93234412139761e-06,-0.00356916484981879,-0.00667348992796396,0.144026545766491,-1.67966281074859e-07,9.66700677840428e-07,2.35962941894149e-07,0.0232145715443853,0.0427796781033498,12.0007065054244 +11.012,-1.43721149486933e-06,-3.42880391700912e-07,1.41821338705411e-06,-5.14486616512051e-05,-9.5791003336447e-05,-0.0788312044161786,-4.22730578840449e-09,1.42124766816536e-08,4.37737563210909e-09,-0.00352038445828755,-0.00658102600456064,0.16802793823308,0.00673675146342707,0.00154999553686856,-0.00692101577621954,0.0257622375563504,0.0500021395538728,12.0006839340491 +11.014,1.15522027447496e-09,-6.34017523204466e-09,-1.57062027793253e-09,-5.84376892658802e-05,-0.000108853227522764,-0.0784711471700681,2.06474882480141e-05,5.39595652274881e-06,-1.97517189834775e-05,-0.0034661158995934,-0.00647348136974849,0.192029281502682,-1.3149572576593e-07,9.5513592694539e-07,2.14377886102201e-07,0.114964582020694,0.203325550319862,12.0003281041699 +11.016,-1.35462154187728e-06,-3.21296565609919e-07,1.33920651112021e-06,-6.53131252495772e-05,-0.000121684928815438,-0.0780630872901679,-4.75328869146815e-09,1.80330203894347e-08,5.23488717651779e-09,-0.00306052613020483,-0.00576772380328128,0.216029250649755,-0.0319860165585966,-0.00675510458398818,0.0316123792407883,0.100651515958405,0.180987687118915,12.0003386518303 +11.018,1.13620711970908e-09,-6.2680431504869e-09,-1.54968072922645e-09,-7.06797937867036e-05,-0.000131924122735896,-0.0776070301674688,-0.000107296577986415,-2.16244618132129e-05,0.000106697797979718,-0.00306350983575965,-0.00574953062127259,0.24003063611002,-2.03016043646854e-07,9.75698688512324e-07,2.57213087635016e-07,-0.0934965207091865,-0.136726269887322,12.0010338445851 +11.02,-1.78380785382289e-06,-4.07794412862761e-07,1.76599770303904e-06,-7.75671645926145e-05,-0.000144683051300526,-0.077102964745728,-5.56535286605548e-09,2.19358151434836e-08,6.26373952705774e-09,-0.00343451221304153,-0.00631462888283051,0.26403338602809,0.0691599741120809,0.0147119348474491,-0.0697104886801487,-0.0735242858397113,-0.0920954147168482,12.000969131578 +11.022,1.11394570824486e-09,-6.18029988991298e-09,-1.52462577111823e-09,-8.44178426388682e-05,-0.000157182638267216,-0.0765508966233565,0.000169343318461878,3.72232775765772e-05,-0.000172144156740847,-0.00335760697911846,-0.00611791228013994,0.288034512636326,-1.60891211378014e-07,9.63306474518817e-07,2.28139989538694e-07,0.0541387617510837,0.115220470704785,12.000492494034 +11.024,-1.10643457997515e-06,-2.58901302556402e-07,1.07742107607542e-06,-9.09975925090928e-05,-0.000169154700421094,-0.0759508266951823,-6.20891771156775e-09,2.57890410415602e-08,7.17629948521282e-09,-0.00321795716603713,-0.00585374700001121,0.312035356004242,-0.0516337299108159,-0.0114118015063694,0.0519037652055048,0.0700187871344858,0.130799173514136,12.0003987358332 +11.026,1.08911003739859e-09,-6.07714372574675e-09,-1.49592057317738e-09,-9.72896713030153e-05,-0.000180597626267258,-0.0753027551993397,-3.71916011813629e-05,-8.42392844889554e-06,3.54709040811499e-05,-0.00307753183058055,-0.00559471558608345,0.336036107579654,-1.51701893234857e-07,9.60924916027162e-07,2.25056843820898e-07,0.0688923030294267,0.1272547256971,12.0003597176826 +11.028,-1.25520098470059e-06,-2.92597016351981e-07,1.2193046924e-06,-0.000103307719831414,-0.000191533562765425,-0.0746066822648638,-6.81572528450711e-09,2.96327407056684e-08,8.07652686049632e-09,-0.00294238795391945,-0.00534472809722287,0.360036794874967,0.0216247837978418,0.00510428673546866,-0.0206828512056957,0.0669772211874037,0.12399178829766,12.0003264095842 +11.03,1.06184713626056e-09,-5.95861276292409e-09,-1.4636144657354e-09,-0.000109059223118692,-0.000201976538656147,-0.07386260801984,4.93075340099946e-05,1.19932184929768e-05,-4.72605007416239e-05,-0.00280962294583096,-0.00509874843289287,0.384037413217985,-1.48623030114718e-07,9.59927233184325e-07,2.24464435752854e-07,0.0666905350751341,0.1234292675074,12.0002884661899 +11.032,-1.05797084866063e-06,-2.44624142380079e-07,1.03026268943353e-06,-0.000114546211614736,-0.000211928556496994,-0.073070532611992,-7.41021740496591e-09,3.34724496384053e-08,8.97438460350763e-09,-0.00267562581361894,-0.00485101102719332,0.408037948739721,-0.00821451727803442,-0.00187453929288664,0.00804098807048383,0.0680231737646364,0.125516709203733,12.0002430148788 +11.034,1.03220626664069e-09,-5.82472296437042e-09,-1.42771692732135e-09,-0.000119761726373171,-0.000221380582764927,-0.0722304562248805,1.6449464897846e-05,4.49506132142779e-06,-1.50965484596778e-05,-0.00253753025077233,-0.00459668159607777,0.432038385277516,-1.45753905907314e-07,9.58735261323326e-07,2.23077307495369e-07,0.0705185369262412,0.129682287530838,12.0001897212197 +11.036,-9.92172989069257e-07,-2.2664389709437e-07,9.69876495594824e-07,-0.000124696332617824,-0.000230315282881303,-0.0713423790708822,-7.99323302859511e-09,3.73073906836982e-08,9.86669383348901e-09,-0.00239355166591401,-0.00433228187707003,0.456038707624595,0.00372651131930228,0.000759608765210665,-0.00374929081769634,0.0737028149544597,0.135253489297373,12.0001294670928 +11.038,1.00023333452631e-09,-5.67549340163565e-09,-1.3882501519874e-09,-0.000129335933036826,-0.000238709710273205,-0.0704063013943824,3.13555101750535e-05,7.53349638227012e-06,-3.00937117304615e-05,-0.00224271899095452,-0.00405566763888834,0.480038903145882,-1.16555365619443e-07,9.49418278370149e-07,2.05887932570824e-07,0.145410996038283,0.256666565008121,11.9995015589874 +11.04,-8.66750948369001e-07,-1.96509911565279e-07,8.49501648672937e-07,-0.000133667208581646,-0.000246537953436862,-0.069422223458298,-8.45945449107304e-09,4.110506379718e-08,1.06902455637726e-08,-0.00181190768176068,-0.0033056156170372,0.50403671386056,-0.0200086015418326,-0.00408053983506392,0.0196310964410315,0.134875114607454,0.238565503498292,11.9995323394294 +11.042,9.66395516562024e-10,-5.51107314644694e-09,-1.34548916973232e-09,-0.000136583563763868,-0.000251932172741352,-0.0683901545389403,-4.86788959922683e-05,-8.78866295798377e-06,4.84306740336558e-05,-0.00170321853252476,-0.00310140562489527,0.528037032503595,-1.73107513566677e-07,9.65679359393946e-07,2.3981869008016e-07,-0.0176752793820544,-0.0122485630752622,12.0007176442946 +11.044,-1.06146653233805e-06,-2.3166456339721e-07,1.04322434480754e-06,-0.000140480082711744,-0.000258943575936442,-0.0673100753282838,-9.15188454533967e-09,4.49677812347554e-08,1.16495203240931e-08,-0.00188260879928889,-0.00335460986933824,0.552039584437733,0.0419133518628413,0.00841878093995827,-0.0418847555319716,-0.00051103691103068,0.0253151614046432,12.0005388736392 +11.046,9.2978797838067e-10,-5.33120202150794e-09,-1.29889108843595e-09,-0.000144113998961023,-0.000265350612218704,-0.0661819962011897,0.000118974511459078,2.48864608018456e-05,-0.000119108348094212,-0.00170526268016889,-0.00300014497927671,0.576039187998146,-1.39266527996237e-07,9.55694291060806e-07,2.16415318823927e-07,0.100848854924854,0.190182593866311,11.9996953413094 +11.048,-5.85568486501792e-07,-1.32118720189839e-07,5.66790952430743e-07,-0.000147301133432419,-0.000270944155853547,-0.0650059185762915,-9.70895065732455e-09,4.87905583989982e-08,1.25151815993887e-08,-0.00147921337958952,-0.00259387949387308,0.600038365802966,-0.0284209737207816,-0.00593584925526406,0.0284229066412394,0.112888359520931,0.201752073172377,11.9995626706734 +11.05,8.90952175751358e-10,-5.13603978791188e-09,-1.24883036203838e-09,-0.000150030852479383,-0.0002757261301942,-0.063781842737977,5.29061657591398e-06,1.14306378078145e-06,-5.41672152921659e-06,-0.00125370924208501,-0.00219313668658693,0.624037438680856,-1.32453564176818e-07,9.53915548987459e-07,2.14161045669674e-07,0.111380888593759,0.19825048919628,11.9995188516598 +11.052,-5.64406020198138e-07,-1.27546465066714e-07,5.45124066313879e-07,-0.000152315970400758,-0.000279716702599894,-0.0625097688215684,-1.02387649140318e-08,5.26062205949476e-08,1.33718257820673e-08,-0.00103368982521454,-0.00180087753708805,0.6480364412096,0.00821573736304775,0.00185013882469541,-0.00780328725062699,0.109160212643487,0.19498313082675,11.9994808753543 +11.054,8.49997116095236e-10,-4.92561490553212e-09,-1.19534305891011e-09,-0.000154165611780241,-0.000282929640342551,-0.0611896969731389,3.81535660281014e-05,8.54361907956228e-06,-3.66298705317211e-05,-0.00081706839151111,-0.00141320416328002,0.672035362182268,-1.30614377820385e-07,9.53290072748311e-07,2.13941603148479e-07,0.108102883064531,0.19376624403422,11.9994354318948 +11.056,-4.11791756085682e-07,-9.3371988748453e-08,3.98604584186946e-07,-0.000155584243966804,-0.000285369519253016,-0.0598216273728384,-1.07612224253135e-08,5.64193808859421e-08,1.42275921946615e-08,-0.000601278292956267,-0.00102581256095091,0.696034182937195,-0.00284296145896425,-0.000634189592550276,0.0027349543079442,0.108188466425308,0.194487348166285,11.9993809865592 +11.058,8.06952226393987e-10,-4.69993738198837e-09,-1.13843269013147e-09,-0.000156570724952065,-0.000287032890586354,-0.0584055602413904,2.67817201922456e-05,6.00686070936146e-06,-2.56900532999455e-05,-0.000384314525809928,-0.000635254770614963,0.720032886128499,-1.29087360375661e-07,9.52602146470292e-07,2.13175072212626e-07,0.109074065131963,0.196647751840974,11.9993190172883 +11.06,-3.04664875316711e-07,-6.93445459110098e-08,2.95844370987175e-07,-0.000157121502070043,-0.000287910538335476,-0.0569414958283247,-1.12775718668161e-08,6.02297894718229e-08,1.50802924835119e-08,-0.000164982032428465,-0.000239221553587103,0.744031459006343,-5.02744011243669e-05,-4.95776317135348e-05,-1.33573207833044e-05,0.110412541214536,0.199692626714913,11.9992519624609 +11.062,7.61841938926727e-10,-4.45901822410111e-09,-1.07811152019743e-09,-0.000157230653081779,-0.000287989776800703,-0.0554294344053654,2.65806225877482e-05,5.80855018250734e-06,-2.57434825830787e-05,5.73356390481666e-05,0.0001635157362446,0.768029893978337,-1.27793473501707e-07,9.51967129250758e-07,2.1221978167668e-07,0.111932708342533,0.203131459897688,11.9991823821381 +11.064,-1.9834238496573e-07,-4.6110345180983e-08,1.92870440654871e-07,-0.000156892159513851,-0.000287256475390497,-0.0538693762524117,-1.17887457608228e-08,6.40376579888255e-08,1.59291716102186e-08,0.000282748800941617,0.000573304286003561,0.79202818853489,-0.00108698639572242,-0.000256876577626094,0.0010194041808601,0.113448287853147,0.206585759675301,11.9991125297553 +11.066,7.1468695588342e-10,-4.20286759214572e-09,-1.01439483375654e-09,-0.000156099657878012,-0.000285696559656688,-0.0522613216512247,2.2232677004857e-05,4.78104387200262e-06,-2.16658658596369e-05,0.000511128790460905,0.000989858774946081,0.816026344097375,-1.26711548156402e-07,9.51443242775234e-07,2.11323580164441e-07,0.114852626084761,0.209796687181109,11.9990441561634 +11.068,-1.09411676946312e-07,-2.69861696929746e-08,1.06206977216333e-07,-0.000154847644352007,-0.000283297040290714,-0.0506052708760226,-1.22955919534484e-08,6.7843430959926e-08,1.67744659308762e-08,0.000742159305280611,0.00141249103472791,0.840024365159539,-0.00132447269186984,-0.000291831204818468,0.00128857122514732,0.116096780843439,0.212609800871185,11.9989784865002 +11.07,6.65504588069632e-10,-3.93149386830605e-09,-9.4729697003304e-10,-0.00015313102065689,-0.000280046595517777,-0.048901224190587,1.69347862373783e-05,3.61371905272888e-06,-1.65115809590482e-05,0.000975515913834612,0.00184029797843073,0.86402225804337,-1.2585828104529e-07,9.51101610663148e-07,2.10662216837362e-07,0.117172472619167,0.214949927900298,11.9989162911098 +11.072,-4.1672531996776e-08,-1.25312934820543e-08,4.01606533801183e-08,-0.000150945580696667,-0.000275935848376988,-0.0471491818438479,-1.27990250776297e-08,7.16478374025799e-08,1.7617114798226e-08,0.00121084919575744,0.00227229074632938,0.888020030323994,-0.00186979473364791,-0.000395544818252954,0.00183331572752572,0.118087781611773,0.216794083849424,11.9988580203043 +11.074,6.14308487759119e-10,-3.64490251869576e-09,-8.76828510840144e-10,-0.000148287623873861,-0.00027095743253246,-0.0453491440692914,9.45560730278745e-06,2.03153977971724e-06,-9.17831804894614e-06,0.00144786704028165,0.00270747431382833,0.912017690124582,-1.25270236892044e-07,9.50915236310123e-07,2.10257701006901e-07,0.118857774341127,0.218148302455397,11.9988039241522 +11.076,-3.85010278563039e-09,-4.40513436318624e-09,3.44738118433774e-09,-0.000145154112535541,-0.000265105951121676,-0.04350111108335,-1.33001060251978e-08,7.54514983478199e-08,1.84581456022535e-08,0.00168628029312189,0.00314488395615087,0.936015246020597,-0.00208990931892708,-0.000431726863785791,0.00203131524827801,0.1191746816776,0.218455822282491,11.9079501224063 +11.078,5.61108063658333e-10,-3.34309652530451e-09,-8.02995928431138e-10,-0.000141542502701374,-0.000258377896707858,-0.0416050830852094,1.09597002708005e-06,3.04632324574261e-07,-1.05305705583499e-06,0.001924565766992,0.00358129760295819,0.959649490614202,-6.94810691171872e-08,6.18733905248337e-07,1.3044361597617e-07,0.105398070104636,0.192863141192229,7.86413795353739 +11.08,5.33777322689333e-10,-3.18660506488933e-09,-7.64847039001759e-10,-0.000137455849467574,-0.000250780760709845,-0.0396625131208936,-1.35780303016666e-08,7.7926433968813e-08,1.89799200661581e-08,0.00210787257354039,0.00391633652091971,0.967471797834743,-0.000277316253944761,-5.70004032038549e-05,0.000267922775111447,0.0700878137745919,0.127896941342507,-1.99788702927867 +11.082,5.06795942451649e-10,-3.03139078942916e-09,-7.27076248166481e-10,-0.00013311101240721,-0.000242712550624174,-0.0377351958938691,-1.32949886993639e-08,7.66307117587657e-08,1.86340446111536e-08,0.00220491702209046,0.00409288536832839,0.951657942497084,1.68088904339059e-07,-8.11947189162244e-07,-2.1182735470001e-07,0.0394482612511868,0.0714624378368805,-9.9537907563443 +11.084,4.80597367891883e-10,-2.8800822178543e-09,-6.90310860557153e-10,-0.000128636181379213,-0.000234409219236533,-0.0358558813509057,-1.29056746843104e-08,7.46786452121644e-08,1.81326106473582e-08,0.00226566561854512,0.0042021862722672,0.92765663480937,1.93606795093798e-07,-9.75646321553466e-07,-2.50096926677282e-07,0.0282312770582414,0.0504925100224531,-12.0006354503304 +11.086,4.55173243714413e-10,-2.73267620858053e-09,-6.54545805577056e-10,-0.00012404834993303,-0.000225903805535107,-0.0340245693546321,-1.25205615189888e-08,7.27281264725523e-08,1.76336569044446e-08,0.00231784213032341,0.00429485540841818,0.903655400695768,1.91497018979829e-07,-9.74875074329559e-07,-2.48856870440434e-07,0.0239245783724452,0.0421548832917401,-12.0005965221051 +11.088,4.30515121815911e-10,-2.58916971196399e-09,-6.19776232939351e-10,-0.000119364812857917,-0.000217229797602855,-0.0322412597481214,-1.21396866083908e-08,7.07791449148449e-08,1.71371831655961e-08,0.00236136393203493,0.00437080580543421,0.879654248720934,1.8938152369957e-07,-9.74098622936093e-07,-2.47615730001633e-07,0.0196065326889471,0.0338330273389775,-12.0005538663481 +11.09,4.06614497280855e-10,-2.44955962892118e-09,-5.85997072914679e-10,-0.000114602894204892,-0.000208420582313372,-0.0305059523597487,-1.17630354241906e-08,6.88317319808083e-08,1.66431939844382e-08,0.00239626826107919,0.00443018751777408,0.855653185230381,1.87285476298475e-07,-9.73325207324423e-07,-2.46387762623033e-07,0.0153277521388739,0.0256264954903254,-12.0005084711501 +11.092,3.83462980119154e-10,-2.31384278404079e-09,-5.53203457001605e-10,-0.000109779739813601,-0.00019950904753176,-0.0288186470072003,-1.1390544703197e-08,6.68858440855476e-08,1.61516321151041e-08,0.00242267494059042,0.0044733117873955,0.831652214836339,1.85227755442787e-07,-9.72573258907699e-07,-2.4518684608668e-07,0.0111208177981076,0.0176003717960607,-12.0004610898624 +11.094,3.61052318468072e-10,-2.18201625257902e-09,-5.2139054445427e-10,-0.000104912194442531,-0.000190527335163792,-0.0271793435004037,-1.10221244024196e-08,6.49414389451779e-08,1.56624466000916e-08,0.00244075153227162,0.00450058900495831,0.807651340870936,1.83221981424871e-07,-9.71840392456202e-07,-2.44014471174202e-07,0.00700435244684496,0.00979468465832442,-12.0004122890679 +11.096,3.3937448250948e-10,-2.0540770282601e-09,-4.90553670601246e-10,-0.000100016733684516,-0.000181506691511929,-0.0255880416437169,-1.06576567774976e-08,6.29984825157232e-08,1.51755742304074e-08,0.00245069235037779,0.0045124905260288,0.783650565680073,1.81279497706328e-07,-9.71128938983188e-07,-2.42878633871458e-07,0.00298909286113923,0.0022346337282764,-12.0003625196974 +11.098,3.18421691358067e-10,-1.93002232251605e-09,-4.6068824753262e-10,-9.51094250410166e-05,-0.000172477373059671,-0.0240447412376824,-1.0297006411594e-08,6.10569231892439e-08,1.46909320646054e-08,0.00245270790371618,0.00450952753987142,0.759649890792131,1.79408218965624e-07,-9.70439494815141e-07,-2.41788089114686e-07,-0.000917958083135083,-0.00506260785131619,-12.0003121693074 +11.1,2.98186456863109e-10,-1.80984933550316e-09,-4.31789942342831e-10,-9.02059020696519e-05,-0.000163468581352445,-0.0225494420805487,-9.94002390163519e-09,5.91167245364631e-08,1.42084218739487e-08,0.00244702051804525,0.00449224009462353,0.735649317002849,1.77613240956158e-07,-9.6977889044479e-07,-2.40739638512047e-07,-0.00471120515589324,-0.0120840639216589,-12.0002615913471 +11.102,2.78661595751531e-10,-1.69355542437022e-09,-4.03854560036832e-10,-8.53213429688367e-05,-0.000154508412681179,-0.0211021439696713,-9.58655344776945e-09,5.71778076274652e-08,1.37279735105573e-08,0.00243386308309261,0.00446119128418479,0.711648844426748,1.75897179308932e-07,-9.69152167372206e-07,-2.39731791275929e-07,-0.00838536387841035,-0.0188191548266062,-12.0002111179675 +11.104,2.59840243072018e-10,-1.58113810499322e-09,-3.76878048300583e-10,-8.04704497372783e-05,-0.0001456238162157,-0.0197028467028408,-9.23643518439922e-09,5.52401158669729e-08,1.32494947088447e-08,0.0024134790625316,0.00441696347531708,0.687648472530963,1.74261565463061e-07,-9.68553308296315e-07,-2.38773437869197e-07,-0.0119350758130993,-0.0252590933196193,-12.0001610651441 +11.106,2.41715855013938e-10,-1.47259496090235e-09,-3.50856581201459e-10,-7.56674267187113e-05,-0.000136840558779912,-0.0183515500795478,-8.88950718591728e-09,5.33035943942803e-08,1.27728797590807e-08,0.00238612277984022,0.00436015491090633,0.663648200166177,1.7270734809734e-07,-9.67985891095692e-07,-2.37864659609743e-07,-0.0153548796169536,-0.0313968651630813,-12.0001117303204 +11.108,2.24282214328353e-10,-1.36792372741612e-09,-3.25786529264266e-10,-7.09259586179184e-05,-0.000128183196572077,-0.0170482539021763,-8.54560579200994e-09,5.13681723025906e-08,1.22980360704058e-08,0.00235205954406379,0.00429137601466477,0.639648025609686,1.71234628852608e-07,-9.67451487844874e-07,-2.37001959941096e-07,-0.0186393256515448,-0.0372274017269463,-12.0000633887897 +11.11,2.07533431845902e-10,-1.26712227169201e-09,-3.01664436919841e-10,-6.62591885424572e-05,-0.000119675054721255,-0.0157929579771093,-8.20456867050692e-09,4.94337884429013e-08,1.18248719193164e-08,0.00231156547723404,0.00421124530399856,0.615647946611023,1.69841896624024e-07,-9.66949420929124e-07,-2.36187751215874e-07,-0.0217831278837936,-0.0427477300191131,-12.000016291191 +11.112,1.91463939646329e-10,-1.17018857364454e-09,-2.78487041587006e-10,-6.16796967089833e-05,-0.000111338215356084,-0.0145856621157325,-7.86623820551392e-09,4.75003746188745e-08,1.13532850655424e-08,0.00226492703252863,0.00412038509458834,0.591647960444927,1.68528514440117e-07,-9.66480042697899e-07,-2.35423266710162e-07,-0.0247813135375965,-0.0479570115895745,-11.9999706605479 +11.114,1.76068479023836e-10,-1.07712077321645e-09,-2.56251296657656e-10,-5.71994804123396e-05,-0.000103193514342896,-0.0134263661353288,-7.53045461274623e-09,4.55678682721084e-08,1.08831788524754e-08,0.00221244022308362,0.00401941725764019,0.567648063968816,1.67294204476052e-07,-9.6604164554461e-07,-2.34705917894108e-07,-0.0276293654005783,-0.0528564591914841,-11.9999266918504 +11.116,1.61342121195347e-10,-9.87917100556124e-10,-2.34954326177109e-10,-5.28299358166498e-05,-9.52605463255254e-05,-0.0123150698598575,-7.19706138760978e-09,4.36362080366965e-08,1.04144613939661e-08,0.00215440957092633,0.00390895925782243,0.543648253677531,1.66136283333736e-07,-9.65631600292879e-07,-2.34034498596107e-07,-0.0303233636222216,-0.0574491589449304,-11.999884551568 +11.118,1.472802334734e-10,-9.02575941069683e-10,-2.14593451081796e-10,-4.85818421286353e-05,-8.75576773116081e-05,-0.0112517731206189,-6.86590947941136e-09,4.17053418709373e-08,9.9470408580911e-09,0.00209114676859475,0.0037896206218605,0.519648525762549,1.65053307664123e-07,-9.65248876920932e-07,-2.33408954598956e-07,-0.0328601326640494,-0.0617398382409344,-11.9998443776082 +11.12,1.33878483277693e-10,-8.21095733072319e-10,-1.95166162744731e-10,-4.4465348742268e-05,-8.01020638380784e-05,-0.0102364757568066,-6.53684815695307e-09,3.97752125290115e-08,9.48082557556997e-09,0.00202296904027009,0.00366199990485861,0.495648876167082,1.64044796355115e-07,-9.64899086190832e-07,-2.3282883867304e-07,-0.0352373922144487,-0.0657346167752551,-11.9998062812892 +11.122,1.21132840845591e-10,-7.43475090953655e-10,-1.7667014877952e-10,-4.04899659675558e-05,-7.29096776921753e-05,-0.00926917761595081,-6.20973029399097e-09,3.78457455261744e-08,9.01572550339904e-09,0.00195019719973697,0.00352668215475951,0.471649300637397,1.63108194756648e-07,-9.64578501165586e-07,-2.3229093887132e-07,-0.0374539035462677,-0.0694407681902473,-11.9997703477065 +11.124,1.09039562101731e-10,-6.69712750967638e-10,-1.59103260731139e-10,-3.66645599433209e-05,-6.59953352190419e-05,-0.00834987855425724,-5.88441537792655e-09,3.59168985243496e-08,8.55166182008479e-09,0.00187315342608503,0.00338423683209765,0.447649794776261,1.62241205713156e-07,-9.64279762809485e-07,-2.31794103225778e-07,-0.0395095979271288,-0.072866508544697,-11.9997366366888 +11.126,9.75951793338869e-11,-5.99807496856272e-10,-1.42463501499185e-10,-3.29973522632165e-05,-5.93727303637862e-05,-0.00747857843684596,-5.56076547113842e-09,3.39886264749369e-08,8.08854909049603e-09,0.00179215880802847,0.00323521612058075,0.423650354090647,1.61442507854586e-07,-9.64007384122262e-07,-2.31338555355064e-07,-0.0414056722549747,-0.0760208182886994,-11.9997051844883 +11.128,8.67965002171803e-11,-5.33758245067906e-10,-1.26749064369158e-10,-2.94959247112078e-05,-5.30544707367203e-05,-0.00665527713789484,-5.23864534650828e-09,3.2060868987861e-08,7.62630759866464e-09,0.00170753073706515,0.00308015355894288,0.399650974038314,1.60710024254333e-07,-9.63760741676561e-07,-2.30921076531336e-07,-0.0431446389247961,-0.0789132976938647,-11.9996760044905 +11.13,7.66405979478468e-11,-4.71564020904786e-10,-1.11958271104516e-10,-2.61672293149536e-05,-4.70521161280105e-05,-0.00587997454069217,-4.91792537412087e-09,3.01335835082293e-08,7.16486478437038e-09,0.00161958025232923,0.00291956292980519,0.37565165007267,1.60041173157353e-07,-9.63534780388156e-07,-2.30540054005862e-07,-0.0447303212472487,-0.0815540518711438,-11.9996490890808 +11.132,6.7124798720699e-11,-4.13223911035002e-10,-9.80896052316799e-11,-2.30176037018916e-05,-4.13762190175008e-05,-0.00515267053760432,-4.59848065387894e-09,2.82067298663088e-08,6.70414738264129e-09,0.00152860945207618,0.00275393735145834,0.351652377681996,1.59433643859189e-07,-9.63331085911479e-07,-2.30195223506443e-07,-0.0461677913020785,-0.0839535999935788,-11.9996244109534 +11.134,5.82466753323331e-11,-3.58737101439563e-10,-8.51416815739539e-11,-2.00527915066496e-05,-3.60363667221784e-05,-0.00447336502996435,-4.28019079868418e-09,2.62802591645838e-08,6.24408389034471e-09,0.00143490908712094,0.00258374852983091,0.327653152428861,1.58884856294315e-07,-9.63149360071496e-07,-2.29884267546315e-07,-0.0474632528992682,-0.0861228033651532,-11.9996019244446 +11.136,5.00040355259565e-11,-3.08102874376631e-10,-7.31132696702927e-11,-1.72779673534059e-05,-3.10412248981737e-05,-0.00384205792788844,-3.96294122870147e-09,2.43541324260215e-08,5.78461031245572e-09,0.00133875644047904,0.00240944613799762,0.303653969984201,1.58392160945415e-07,-9.62986153760729e-07,-2.29604323156656e-07,-0.0486238774818486,-0.088072807757158,-11.99958156814 +11.138,4.2394910417529e-11,-2.61320571735488e-10,-6.20032403241336e-11,-1.4697765744734e-05,-2.6398582170189e-05,-0.00325874915002768,-3.6466221549026e-09,2.24283145495413e-08,5.32566659771818e-09,0.00124041357719357,0.00223145729880232,0.279654826156306,1.57952871024719e-07,-9.62840687713418e-07,-2.2935469577153e-07,-0.0496576047087341,-0.0898149964512106,-11.9995632664353 +11.14,3.54175469063477e-11,-2.18389616178476e-10,-5.18106032794223e-11,-1.23163130446322e-05,-2.21153957029655e-05,-0.00272343862326334,-3.33112974460266e-09,2.05027696751682e-08,4.8671915293697e-09,0.00114012602164413,0.00205018615219281,0.255655716918465,1.57563806769188e-07,-9.62712558733553e-07,-2.29134013195584e-07,-0.0505729219009259,-0.0913609514511855,-11.9995469315037 +11.142,2.90703914391198e-11,-1.79309493034824e-10,-4.25344742066569e-11,-1.0137261658158e-05,-1.81978375614186e-05,-0.00223612628235393,-3.01636692782591e-09,1.85774643146076e-08,4.40913054493595e-09,0.00103812188958988,0.00186601349299761,0.231656638430297,1.57221952742306e-07,-9.62600852030317e-07,-2.28940115495935e-07,-0.0513786373964964,-0.092722421065984,-11.9995324656736 +11.144,2.33520791950454e-11,-1.44079758920054e-10,-3.41740810996805e-11,-8.16382548627314e-06,-1.46513417309758e-05,-0.00179681206954226,-2.70224193363351e-09,1.66523662670474e-08,3.95143106738606e-09,0.000934611472058162,0.00167929646792892,0.207657587055776,1.56924406161192e-07,-9.62503873531844e-07,-2.28771388226368e-07,-0.0520836623244478,-0.0939112925626917,-11.9995197631002 +11.146,1.82614237045822e-11,-1.12700027966612e-10,-2.67287499371074e-11,-6.39881576992415e-06,-1.14806516897007e-05,-0.00140549593413054,-2.38866930318094e-09,1.47274488204789e-08,3.49404499203017e-09,0.000829787240292023,0.00149036832274672,0.18365855937788,1.56667869950907e-07,-9.62420456031711e-07,-2.2862581544965e-07,-0.0526968136422296,-0.0949395689198555,-11.9995087118577 +11.148,1.37974019823227e-11,-8.51699636381445e-11,-2.01979011315613e-11,-4.84467652510541e-06,-8.68986843998961e-06,-0.00106217783203082,-2.07557045382995e-09,1.2802684442921e-08,3.03692780558757e-09,0.000723824217489267,0.00129953819224954,0.159659552208351,1.56449098281786e-07,-9.6235020820432e-07,-2.28501770016348e-07,-0.053226648739722,-0.0958193488677619,-11.9994991954136 +11.15,9.95914188926328e-12,-6.14892901949337e-11,-1.45810387147585e-11,-3.5035188999674e-06,-6.28249892070312e-06,-0.000766857725297211,-1.76287291005386e-09,1.0878047987662e-08,2.58003791196488e-09,0.000616880645333159,0.00110709092727572,0.135660562596231,1.56264942942635e-07,-9.62291426657244e-07,-2.28397667125644e-07,-0.0536813388943178,-0.0965628095231095,-11.9994910938738 +11.152,6.74591034210493e-12,-4.16577716874818e-11,-9.87774948369834e-12,-2.37715394377195e-06,-4.26150473088527e-06,-0.000519535581645712,-1.4505106820592e-09,8.95351873629072e-09,2.12333713708468e-09,0.000509098861911924,0.000913286954156971,0.11166158783284,1.56112094258989e-07,-9.62242974677815e-07,-2.28311548862195e-07,-0.0540685856276697,-0.0971821910174727,-11.9994842854552 +11.154,4.15709916102712e-12,-2.56752152497748e-11,-6.08769016642065e-12,-1.46712345231993e-06,-2.62935110407564e-06,-0.000320211373965902,-1.13842453301797e-09,7.02907608895121e-09,1.6667917165162e-09,0.000400606302822504,0.000718362163205868,0.0876626254544156,1.55987265319682e-07,-9.62204150500369e-07,-2.28241482297084e-07,-0.0543955808305047,-0.0976897826143651,-11.9994786471143 +11.156,2.19221221003354e-12,-1.354146733168e-11,-3.21058261763428e-12,-7.7472873248211e-07,-1.38805607806211e-06,-0.000168885079828088,-8.26561620780539e-10,5.10470213428966e-09,1.21037120789645e-09,0.000291516538589929,0.000522527823699554,0.0636636732443877,1.55887247345016e-07,-9.62173633888512e-07,-2.28185737166236e-07,-0.0546690086412973,-0.0980979099463064,-11.9994740551616 +11.158,8.50852677905327e-13,-5.25640671261837e-12,-1.24620533483539e-12,-3.01057297960336e-07,-5.39239809277656e-07,-6.55566809883796e-05,-5.14875543637976e-10,3.18038155339759e-09,7.54048767851355e-10,0.000181930268257339,0.000325970523420686,0.0396647292337745,1.53462112826087e-07,-9.47650114033982e-07,-2.24704968546951e-07,-0.0540630535249736,-0.0969294678450568,-11.8186257493259 +11.16,1.32710035481865e-13,-8.19941118091085e-13,-1.9438754622919e-13,-4.70076594528343e-08,-8.4173984379511e-08,-1.02261628930075e-05,-2.12713169476261e-10,1.31410167815415e-09,3.11551333708744e-10,7.52643244900589e-05,0.000134809952319369,0.0163891702470894,1.20424508691836e-07,-7.43849068468449e-07,-1.76362970323454e-07,-0.0425445883485181,-0.0762317568314259,-9.27704712762748 +11.162,0,0,0,0,0,0,-3.31775088704699e-11,2.04985279522794e-10,4.85968865573028e-11,1.17519148632099e-05,2.10434960948801e-05,0.00255654072325216,5.31782923690711e-08,-3.28525419538575e-07,-7.78878334271946e-08,-0.0188160811225168,-0.033702488079846,-4.09729256177281 +11.164,0,0,0,0,0,0,0,0,0,0,0,0,8.29437721761838e-09,-5.12463198807041e-08,-1.2149221639327e-08,-0.00293797871580279,-0.0052608740237206,-0.639135180813111 +11.166,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11.168,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11.17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11.172,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11.174,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11.176,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11.178,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11.18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11.182,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11.184,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11.186,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11.188,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11.19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11.192,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11.194,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11.196,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11.198,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11.2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11.202,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11.204,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11.206,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11.208,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11.21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11.212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11.214,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11.216,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11.218,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11.22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11.222,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11.224,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11.226,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11.228,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11.23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11.232,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11.234,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11.236,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11.238,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11.24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11.242,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11.244,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11.246,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11.248,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11.25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11.252,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11.254,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11.256,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11.258,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11.26,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11.262,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11.264,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11.266,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11.268,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11.27,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11.272,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11.274,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11.276,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11.278,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11.28,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11.282,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11.284,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11.286,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11.288,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11.29,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11.292,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11.294,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11.296,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11.298,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11.3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11.302,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11.304,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11.306,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11.308,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11.31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11.312,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11.314,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11.316,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11.318,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11.32,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11.322,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11.324,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11.326,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11.328,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11.33,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11.332,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11.334,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11.336,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11.338,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11.34,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11.342,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11.344,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11.346,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11.348,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11.35,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11.352,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11.354,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11.356,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11.358,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11.36,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11.362,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11.364,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11.366,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11.368,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11.37,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11.372,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11.374,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11.376,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11.378,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11.38,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11.382,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11.384,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11.386,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11.388,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11.39,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11.392,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11.394,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11.396,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11.398,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11.4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11.402,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11.404,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11.406,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11.408,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11.41,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11.412,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11.414,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11.416,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11.418,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11.42,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11.422,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11.424,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11.426,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11.428,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11.43,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11.432,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11.434,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11.436,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11.438,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11.44,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11.442,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11.444,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11.446,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11.448,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11.45,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11.452,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11.454,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11.456,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11.458,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11.46,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11.462,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11.464,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11.466,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11.468,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11.47,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11.472,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11.474,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11.476,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11.478,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11.48,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11.482,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11.484,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11.486,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11.488,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11.49,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11.492,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11.494,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11.496,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11.498,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11.5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11.502,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11.504,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11.506,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11.508,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11.51,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11.512,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11.514,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11.516,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11.518,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11.52,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11.522,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11.524,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11.526,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11.528,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11.53,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11.532,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11.534,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11.536,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11.538,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11.54,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11.542,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11.544,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11.546,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11.548,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11.55,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11.552,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11.554,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11.556,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11.558,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11.56,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11.562,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11.564,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11.566,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11.568,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11.57,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11.572,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11.574,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11.576,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11.578,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11.58,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11.582,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11.584,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11.586,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11.588,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11.59,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11.592,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11.594,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11.596,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11.598,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11.6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11.602,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11.604,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11.606,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11.608,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11.61,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11.612,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11.614,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11.616,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11.618,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11.62,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11.622,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11.624,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11.626,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11.628,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11.63,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11.632,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11.634,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11.636,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11.638,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11.64,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11.642,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11.644,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11.646,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11.648,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11.65,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11.652,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11.654,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11.656,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11.658,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11.66,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11.662,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11.664,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11.666,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11.668,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11.67,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11.672,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11.674,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11.676,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11.678,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11.68,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11.682,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11.684,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11.686,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11.688,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11.69,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11.692,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11.694,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11.696,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11.698,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11.7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11.702,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11.704,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11.706,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11.708,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11.71,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11.712,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11.714,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11.716,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11.718,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11.72,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11.722,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11.724,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11.726,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11.728,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11.73,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11.732,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11.734,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11.736,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11.738,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11.74,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11.742,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11.744,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11.746,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11.748,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11.75,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11.752,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11.754,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11.756,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11.758,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11.76,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11.762,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11.764,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11.766,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11.768,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11.77,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11.772,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11.774,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11.776,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11.778,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11.78,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11.782,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11.784,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11.786,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11.788,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11.79,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11.792,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11.794,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11.796,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11.798,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11.8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11.802,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11.804,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11.806,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11.808,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11.81,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11.812,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11.814,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11.816,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11.818,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11.82,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11.822,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11.824,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11.826,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11.828,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11.83,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11.832,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11.834,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11.836,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11.838,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11.84,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11.842,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11.844,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11.846,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11.848,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11.85,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11.852,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11.854,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11.856,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11.858,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11.86,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11.862,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11.864,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11.866,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11.868,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11.87,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11.872,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11.874,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11.876,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11.878,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11.88,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11.882,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11.884,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11.886,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11.888,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11.89,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11.892,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11.894,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11.896,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11.898,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11.9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11.902,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11.904,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11.906,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11.908,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11.91,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11.912,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11.914,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11.916,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11.918,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11.92,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11.922,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11.924,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11.926,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11.928,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11.93,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11.932,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11.934,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11.936,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11.938,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11.94,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11.942,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11.944,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11.946,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11.948,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11.95,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11.952,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11.954,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11.956,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11.958,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11.96,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11.962,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11.964,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11.966,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11.968,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11.97,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11.972,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11.974,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11.976,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11.978,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11.98,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11.982,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11.984,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11.986,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11.988,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11.99,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11.992,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11.994,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11.996,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +11.998,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12.002,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12.004,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12.006,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12.008,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12.01,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12.012,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12.014,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12.016,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12.018,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12.02,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12.022,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12.024,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12.026,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12.028,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12.03,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12.032,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12.034,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12.036,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12.038,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12.04,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12.042,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12.044,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12.046,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12.048,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12.05,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12.052,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12.054,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12.056,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12.058,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12.06,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12.062,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12.064,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12.066,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12.068,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12.07,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12.072,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12.074,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12.076,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12.078,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12.08,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12.082,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12.084,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12.086,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12.088,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12.09,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12.092,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12.094,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12.096,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12.098,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12.1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12.102,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12.104,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12.106,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12.108,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12.11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12.112,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12.114,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12.116,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12.118,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12.12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12.122,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12.124,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12.126,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12.128,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12.13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12.132,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12.134,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12.136,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12.138,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12.14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12.142,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12.144,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12.146,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12.148,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12.15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12.152,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12.154,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12.156,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12.158,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12.16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12.162,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12.164,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12.166,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12.168,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12.17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12.172,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12.174,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12.176,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12.178,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12.18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12.182,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12.184,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12.186,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12.188,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12.19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12.192,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12.194,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12.196,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12.198,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12.2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12.202,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12.204,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12.206,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12.208,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12.21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12.212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12.214,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12.216,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12.218,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12.22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12.222,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12.224,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12.226,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12.228,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12.23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12.232,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12.234,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12.236,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12.238,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12.24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12.242,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12.244,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12.246,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12.248,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12.25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12.252,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12.254,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12.256,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12.258,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12.26,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12.262,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12.264,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12.266,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12.268,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12.27,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12.272,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12.274,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12.276,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12.278,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12.28,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12.282,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12.284,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12.286,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12.288,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12.29,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12.292,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12.294,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12.296,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12.298,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12.3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12.302,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12.304,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12.306,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12.308,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12.31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12.312,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12.314,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12.316,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12.318,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12.32,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12.322,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12.324,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12.326,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12.328,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12.33,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12.332,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12.334,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12.336,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12.338,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12.34,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12.342,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12.344,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12.346,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12.348,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12.35,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12.352,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12.354,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12.356,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12.358,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12.36,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12.362,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12.364,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12.366,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12.368,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12.37,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12.372,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12.374,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12.376,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12.378,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12.38,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12.382,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12.384,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12.386,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12.388,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12.39,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12.392,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12.394,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12.396,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12.398,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12.4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12.402,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12.404,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12.406,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12.408,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12.41,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12.412,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12.414,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12.416,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12.418,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12.42,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12.422,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12.424,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12.426,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12.428,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12.43,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12.432,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12.434,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12.436,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12.438,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12.44,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12.442,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12.444,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12.446,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12.448,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12.45,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12.452,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12.454,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12.456,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12.458,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12.46,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12.462,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12.464,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12.466,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12.468,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12.47,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12.472,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12.474,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12.476,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12.478,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12.48,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12.482,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12.484,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12.486,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12.488,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12.49,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12.492,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12.494,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12.496,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12.498,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12.5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12.502,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12.504,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12.506,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12.508,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12.51,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12.512,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12.514,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12.516,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12.518,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12.52,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12.522,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12.524,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12.526,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12.528,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12.53,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12.532,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12.534,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12.536,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12.538,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12.54,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12.542,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12.544,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12.546,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12.548,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12.55,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12.552,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12.554,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12.556,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12.558,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12.56,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12.562,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12.564,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12.566,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12.568,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12.57,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12.572,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12.574,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12.576,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12.578,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12.58,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12.582,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12.584,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12.586,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12.588,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12.59,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12.592,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12.594,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12.596,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12.598,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12.6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12.602,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12.604,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12.606,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12.608,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12.61,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12.612,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12.614,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12.616,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12.618,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12.62,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12.622,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12.624,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12.626,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12.628,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12.63,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12.632,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12.634,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12.636,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12.638,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12.64,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12.642,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12.644,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12.646,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12.648,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12.65,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12.652,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12.654,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12.656,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12.658,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12.66,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12.662,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12.664,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12.666,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12.668,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12.67,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12.672,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12.674,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12.676,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12.678,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12.68,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12.682,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12.684,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12.686,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12.688,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12.69,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12.692,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12.694,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12.696,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12.698,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12.7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12.702,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12.704,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12.706,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12.708,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12.71,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12.712,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12.714,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12.716,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12.718,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12.72,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12.722,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12.724,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12.726,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12.728,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12.73,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12.732,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12.734,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12.736,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12.738,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12.74,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12.742,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12.744,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12.746,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12.748,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12.75,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12.752,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12.754,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12.756,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12.758,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12.76,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12.762,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12.764,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12.766,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12.768,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12.77,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12.772,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12.774,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12.776,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12.778,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12.78,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12.782,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12.784,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12.786,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12.788,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12.79,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12.792,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12.794,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12.796,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12.798,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12.8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12.802,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12.804,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12.806,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12.808,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12.81,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12.812,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12.814,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12.816,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12.818,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12.82,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12.822,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12.824,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12.826,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12.828,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12.83,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12.832,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12.834,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12.836,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12.838,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12.84,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12.842,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12.844,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12.846,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12.848,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12.85,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12.852,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12.854,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12.856,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12.858,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12.86,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12.862,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12.864,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12.866,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12.868,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12.87,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12.872,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12.874,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12.876,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12.878,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12.88,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12.882,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12.884,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12.886,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12.888,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12.89,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12.892,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12.894,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12.896,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12.898,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12.9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12.902,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12.904,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12.906,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12.908,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12.91,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12.912,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12.914,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12.916,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12.918,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12.92,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12.922,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12.924,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12.926,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12.928,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12.93,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12.932,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12.934,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12.936,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12.938,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12.94,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12.942,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12.944,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12.946,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12.948,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12.95,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12.952,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12.954,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12.956,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12.958,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12.96,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12.962,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12.964,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12.966,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12.968,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12.97,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12.972,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12.974,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12.976,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12.978,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12.98,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12.982,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12.984,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12.986,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12.988,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12.99,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12.992,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12.994,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12.996,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +12.998,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 diff --git a/data/s_curve_acceleration.png b/data/s_curve_acceleration.png new file mode 100644 index 00000000..c25c21ea Binary files /dev/null and b/data/s_curve_acceleration.png differ diff --git a/data/s_curve_acceleration.svg b/data/s_curve_acceleration.svg new file mode 100644 index 00000000..08f41d97 --- /dev/null +++ b/data/s_curve_acceleration.svg @@ -0,0 +1,544 @@ + + + +Gnuplot +Produced by GNUPLOT 5.4 patchlevel 2 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + -6 + + + + + + + + + + + + + -4 + + + + + + + + + + + + + -2 + + + + + + + + + + + + + 0 + + + + + + + + + + + + + 2 + + + + + + + + + + + + + 4 + + + + + + + + + + + + + 6 + + + + + + + + + + + + + 0 + + + + + + + + + + + + + 0.5 + + + + + + + + + + + + + 1 + + + + + + + + + + + + + 1.5 + + + + + + + + + + + + + 2 + + + + + + + + + + + + + 2.5 + + + + + + + + + + + + + 3 + + + + + + + + + acceleration [m/s2] + + + + + time [s] + + + + + + + + + gnuplot_plot_1a + + + + + + gnuplot_plot_2a + + + + gnuplot_plot_3a + + + + ZeroToRest + + + + ZeroToPositiveVf + + + + PositiveV0ToRest + + + + + + + + + + + gnuplot_plot_1a + + + + + + gnuplot_plot_2a + + + + gnuplot_plot_3a + + + + ZeroToRest + + + ZeroToRest + + + + + + ZeroToPositiveVf + + + ZeroToPositiveVf + + + + + + PositiveV0ToRest + + + PositiveV0ToRest + + + + + + + + + + + + + + + + SCurve Acceleration + + + + + + + diff --git a/data/s_curve_jerk.png b/data/s_curve_jerk.png new file mode 100644 index 00000000..26bdd840 Binary files /dev/null and b/data/s_curve_jerk.png differ diff --git a/data/s_curve_jerk.svg b/data/s_curve_jerk.svg new file mode 100644 index 00000000..9c43a0a9 --- /dev/null +++ b/data/s_curve_jerk.svg @@ -0,0 +1,518 @@ + + + +Gnuplot +Produced by GNUPLOT 5.4 patchlevel 2 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + -10 + + + + + + + + + + + + + -5 + + + + + + + + + + + + + 0 + + + + + + + + + + + + + 5 + + + + + + + + + + + + + 10 + + + + + + + + + + + + + 0 + + + + + + + + + + + + + 0.5 + + + + + + + + + + + + + 1 + + + + + + + + + + + + + 1.5 + + + + + + + + + + + + + 2 + + + + + + + + + + + + + 2.5 + + + + + + + + + + + + + 3 + + + + + + + + + jerk [m/s3] + + + + + time [s] + + + + + + + + + gnuplot_plot_1a + + + + + + gnuplot_plot_2a + + + + gnuplot_plot_3a + + + + ZeroToRest + + + + ZeroToPositiveVf + + + + PositiveV0ToRest + + + + + + + + + + + gnuplot_plot_1a + + + + + + gnuplot_plot_2a + + + + gnuplot_plot_3a + + + + ZeroToRest + + + ZeroToRest + + + + + + ZeroToPositiveVf + + + ZeroToPositiveVf + + + + + + PositiveV0ToRest + + + PositiveV0ToRest + + + + + + + + + + + + + + + + SCurve Jerk + + + + + + + diff --git a/data/s_curve_position.png b/data/s_curve_position.png new file mode 100644 index 00000000..b811df44 Binary files /dev/null and b/data/s_curve_position.png differ diff --git a/data/s_curve_position.svg b/data/s_curve_position.svg new file mode 100644 index 00000000..27d2cfcb --- /dev/null +++ b/data/s_curve_position.svg @@ -0,0 +1,531 @@ + + + +Gnuplot +Produced by GNUPLOT 5.4 patchlevel 2 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 0 + + + + + + + + + + + + + 1 + + + + + + + + + + + + + 2 + + + + + + + + + + + + + 3 + + + + + + + + + + + + + 4 + + + + + + + + + + + + + 5 + + + + + + + + + + + + + 0 + + + + + + + + + + + + + 0.5 + + + + + + + + + + + + + 1 + + + + + + + + + + + + + 1.5 + + + + + + + + + + + + + 2 + + + + + + + + + + + + + 2.5 + + + + + + + + + + + + + 3 + + + + + + + + + position [m] + + + + + time [s] + + + + + + + + + gnuplot_plot_1a + + + + + + gnuplot_plot_2a + + + + gnuplot_plot_3a + + + + ZeroToRest + + + + ZeroToPositiveVf + + + + PositiveV0ToRest + + + + + + + + + + + gnuplot_plot_1a + + + + + + gnuplot_plot_2a + + + + gnuplot_plot_3a + + + + ZeroToRest + + + ZeroToRest + + + + + + ZeroToPositiveVf + + + ZeroToPositiveVf + + + + + + PositiveV0ToRest + + + PositiveV0ToRest + + + + + + + + + + + + + + + + SCurve Position + + + + + + + diff --git a/data/s_curve_velocity.png b/data/s_curve_velocity.png new file mode 100644 index 00000000..887b0764 Binary files /dev/null and b/data/s_curve_velocity.png differ diff --git a/data/s_curve_velocity.svg b/data/s_curve_velocity.svg new file mode 100644 index 00000000..825bab4e --- /dev/null +++ b/data/s_curve_velocity.svg @@ -0,0 +1,544 @@ + + + +Gnuplot +Produced by GNUPLOT 5.4 patchlevel 2 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 0 + + + + + + + + + + + + + 0.5 + + + + + + + + + + + + + 1 + + + + + + + + + + + + + 1.5 + + + + + + + + + + + + + 2 + + + + + + + + + + + + + 2.5 + + + + + + + + + + + + + 3 + + + + + + + + + + + + + 0 + + + + + + + + + + + + + 0.5 + + + + + + + + + + + + + 1 + + + + + + + + + + + + + 1.5 + + + + + + + + + + + + + 2 + + + + + + + + + + + + + 2.5 + + + + + + + + + + + + + 3 + + + + + + + + + velocity [m/s] + + + + + time [s] + + + + + + + + + gnuplot_plot_1a + + + + + + gnuplot_plot_2a + + + + gnuplot_plot_3a + + + + ZeroToRest + + + + ZeroToPositiveVf + + + + PositiveV0ToRest + + + + + + + + + + + gnuplot_plot_1a + + + + + + gnuplot_plot_2a + + + + gnuplot_plot_3a + + + + ZeroToRest + + + ZeroToRest + + + + + + ZeroToPositiveVf + + + ZeroToPositiveVf + + + + + + PositiveV0ToRest + + + PositiveV0ToRest + + + + + + + + + + + + + + + + SCurve Velocity + + + + + + + diff --git a/dependency/x86/third_party/matplotplusplus/1.2.0/include/matplot/axes_objects/bars.h b/dependency/x86/third_party/matplotplusplus/1.2.0/include/matplot/axes_objects/bars.h new file mode 100644 index 00000000..5eb672e3 --- /dev/null +++ b/dependency/x86/third_party/matplotplusplus/1.2.0/include/matplot/axes_objects/bars.h @@ -0,0 +1,123 @@ +// +// Created by Alan Freitas on 2020-07-04. +// + +#ifndef MATPLOTPLUSPLUS_BARS_H +#define MATPLOTPLUSPLUS_BARS_H + +#include + +#include +#include +#include +#include +#include +#include + +#include +#include +#include + +namespace matplot { + class axes_type; + class MATPLOT_EXPORTS bars : public axes_object { + public: + explicit bars(class axes_type *parent); + bars(class axes_type *parent, const std::vector &y); + bars(class axes_type *parent, + const std::vector> &Y); + bars(class axes_type *parent, const std::vector &x, + const std::vector &y); + bars(class axes_type *parent, const std::vector &x, + const std::vector> &Y); + + /// If we receive an axes_handle, we can convert it to a raw + /// pointer because there is no ownership involved here + template + bars(const axes_handle &parent, Args &&... args) + : bars(parent.get(), std::forward(args)...) {} + + virtual ~bars() = default; + + public /* xlim object virtual functions */: + // std::string set_variables_string() override; + std::string plot_string() override; + std::string legend_string(std::string_view title) override; + std::string data_string() override; + // std::string unset_variables_string() override; + bool requires_colormap() override; + double xmax() override; + double xmin() override; + double ymax() override; + double ymin() override; + enum axes_object::axes_category axes_category() override; + + public /* useful functions for bars */: + double x_minimum_difference(); + double x_end_point(size_t cluster_index, size_t index); + double cluster_width(); + double range_for_cluster(); + + public /* getters and setters */: + const color_array &face_color() const; + class bars &face_color(const color_array &face_color); + class bars &face_color(const std::array &face_color); + class bars &face_color(std::initializer_list face_color); + class bars &face_color(std::string_view color); + + const std::vector &face_colors() const; + std::vector &face_colors(); + + class bars &face_colors(const std::vector &face_colors); + + bool manual_face_color() const; + class bars &manual_face_color(bool manual_face_color); + + const color_array &edge_color() const; + class bars &edge_color(const color_array &edge_color); + class bars &edge_color(const std::array &edge_color); + class bars &edge_color(std::initializer_list face_color); + class bars &edge_color(std::string_view edge_color); + + const line_spec &edge_style() const; + class bars &edge_style(const line_spec &edge_style); + + float line_width() const; + class bars &line_width(float line_width); + + bool vertical_orientation() const; + class bars &vertical_orientation(bool vertical_orientation); + + bool visible() const; + class bars &visible(bool visible); + + float bar_width() const; + class bars &bar_width(float bar_width); + + public /* getters and setters bypassing the bars_spec */: + private: + /// If the user has not set the face color, + /// we get a color from the xlim + void maybe_update_face_colors(); + + protected: + // original data + std::vector x_; + std::vector> ys_; + + // color and style + std::vector face_colors_{{0.4f, 0, 0, 0}}; + bool manual_face_color_{false}; + color_array edge_color_{0, 0, 0, 0}; + line_spec edge_style_{"-"}; + float line_width_{0.5}; + bool vertical_orientation_{true}; + float bar_width_{0.8f}; + float cluster_width_{0.8f}; + + // True if visible + bool visible_{true}; + }; +} // namespace matplot + +#endif // MATPLOTPLUSPLUS_BARS_H diff --git a/dependency/x86/third_party/matplotplusplus/1.2.0/include/matplot/axes_objects/box_chart.h b/dependency/x86/third_party/matplotplusplus/1.2.0/include/matplot/axes_objects/box_chart.h new file mode 100644 index 00000000..15684e13 --- /dev/null +++ b/dependency/x86/third_party/matplotplusplus/1.2.0/include/matplot/axes_objects/box_chart.h @@ -0,0 +1,147 @@ +// +// Created by Alan Freitas on 2020-07-04. +// + +#ifndef MATPLOTPLUSPLUS_BOX_CHART_H +#define MATPLOTPLUSPLUS_BOX_CHART_H + +#include + +#include +#include +#include +#include +#include +#include + +#include +#include +#include + +namespace matplot { + class axes_type; + class MATPLOT_EXPORTS box_chart : public axes_object { + public: + enum class box_style_option { + outline, // unfilled / dashed whiskers + filled, // filled / solid whiskers + violin, // show data distribution + }; + + public: + explicit box_chart(class axes_type *parent); + box_chart(class axes_type *parent, const std::vector &y_data, + const std::vector &groups = {}); + // box_chart(class xlim* parent, const std::vector& data, + // const std::vector& edges, enum + // box_chart::normalization normalization_alg = + // box_chart::normalization::count); box_chart(class xlim* + // parent, const std::vector& data, binning_algorithm + // algorithm = binning_algorithm::automatic, + // box_chart::normalization normalization_alg = + // box_chart::normalization::count); + + /// If we receive an axes_handle, we can convert it to a raw + /// pointer because there is no ownership involved here + template + box_chart(const axes_handle &parent, Args&&... args) + : box_chart(parent.get(), std::forward(args)...) {} + + virtual ~box_chart() = default; + public /* xlim object virtual functions */: + std::string set_variables_string() override; + std::string plot_string() override; + // std::string legend_string(const std::string& title) override; + std::string data_string() override; + std::string unset_variables_string() override; + bool requires_colormap() override; + // double xmax() override; + // double xmin() override; + // double ymax() override; + // double ymin() override; + enum axes_object::axes_category axes_category() override; + + public /* useful functions for box_charts */: + public /* getters and setters */: + const std::vector &y_data() const; + + class box_chart &y_data(const std::vector &y_data); + + const std::vector &x_data() const; + + class box_chart &x_data(const std::vector &x_data); + + const color_array &face_color() const; + + class box_chart &face_color(const color_array &face_color); + + bool manual_face_color() const; + + class box_chart &manual_face_color(bool manual_face_color); + + const color_array &edge_color() const; + + class box_chart &edge_color(const color_array &edge_color); + + float edge_width() const; + + class box_chart &edge_width(float edge_width); + + enum line_spec::marker_style whisker_style() const; + + class box_chart & + whisker_style(enum line_spec::marker_style whisker_style); + + float whisker_size() const; + + class box_chart &whisker_size(float whisker_size); + + bool whisker_face() const; + + class box_chart &whisker_face(bool whisker_face); + + bool jitter_outliers() const; + + class box_chart &jitter_outliers(bool jitter_outliers); + + float box_width() const; + + class box_chart &box_width(float box_width); + + float cap_size() const; + + class box_chart &cap_size(float cap_size); + + public /* getters and setters bypassing the line_spec */: + box_style_option box_style() const; + class box_chart &box_style(box_style_option box_style); + + private /* helper functions to generate the plot */: + void maybe_update_face_color(); + + protected: + // sample data + std::vector y_data_; + + // sample groups (same length as y_data_) + // this describes the groups and the positions at the same time + std::vector x_data_; + + // color and style + color_array face_color_{{0.4f, 0, 0, 0}}; + bool manual_face_color_{false}; + color_array edge_color_{0, 0, 0, 0}; + float edge_width_{0.5}; + enum line_spec::marker_style whisker_style_{ + line_spec::marker_style::circle}; + float whisker_size_{1.}; + bool whisker_face_{false}; + bool jitter_outliers_{false}; + float box_width_{0.5}; + box_style_option box_style_{box_style_option::filled}; + float cap_size_{3.}; + }; + +} // namespace matplot + +#endif // MATPLOTPLUSPLUS_BOX_CHART_H diff --git a/dependency/x86/third_party/matplotplusplus/1.2.0/include/matplot/axes_objects/circles.h b/dependency/x86/third_party/matplotplusplus/1.2.0/include/matplot/axes_objects/circles.h new file mode 100644 index 00000000..aee5b8af --- /dev/null +++ b/dependency/x86/third_party/matplotplusplus/1.2.0/include/matplot/axes_objects/circles.h @@ -0,0 +1,120 @@ +// +// Created by Alan Freitas on 16/07/20. +// + +#ifndef MATPLOTPLUSPLUS_CIRCLES_H +#define MATPLOTPLUSPLUS_CIRCLES_H + +#include + +#include + +#include +#include +#include +#include +#include + +namespace matplot { + class axes_type; + class MATPLOT_EXPORTS circles : public axes_object { + public: + explicit circles(class axes_type *parent); + circles(class axes_type *parent, const std::vector &x, + const std::vector &y, + const std::vector &radius = {}, + const std::vector &start_angle = {}, + const std::vector &end_angle = {}, + const std::vector &color = {}); + + /// If we receive an axes_handle, we can convert it to a raw + /// pointer because there is no ownership involved here + template + circles(const axes_handle &parent, Args&&... args) + : circles(parent.get(), std::forward(args)...) {} + + virtual ~circles() = default; + public /* mandatory virtual functions */: + // std::string set_variables_string() override; + std::string plot_string() override; + std::string legend_string(std::string_view title) override; + std::string data_string() override; + // std::string unset_variables_string() override; + bool requires_colormap() override; + double xmax() override; + double xmin() override; + double ymax() override; + double ymin() override; + enum axes_object::axes_category axes_category() override; + + public /* getters and setters */: + const std::vector &x() const; + + class circles &x(const std::vector &x); + + const std::vector &y() const; + + class circles &y(const std::vector &y); + + const std::vector &radius() const; + + class circles &radius(const std::vector &radius); + + const std::vector &start_angle() const; + + class circles &start_angle(const std::vector &start_angle); + + const std::vector &end_angle() const; + + class circles &end_angle(const std::vector &end_angle); + + const std::vector &color() const; + + class circles &color(const std::vector &color); + + const labels_handle &labels() const; + + class circles &labels(const labels_handle &labels); + + const color_array &face_color() const; + + class circles &face_color(const color_array &face_color); + + float line_width() const; + + class circles &line_width(float line_width); + + const color_array &line_color() const; + + class circles &line_color(const color_array &line_color); + + bool visible() const; + + class circles &visible(bool visible); + + public /* getters and setters bypassing the line_spec */: + protected: + void maybe_update_circles_color(); + + protected: + std::vector x_{}; // x position + std::vector y_{}; // y position + std::vector radius_{}; // 1 + std::vector start_angle_{}; // 0 + std::vector end_angle_{}; // 360 + std::vector color_{}; // colormap + + // Labels around circles + labels_handle labels_; + + // Style + color_array face_color_; + bool user_face_color_{false}; + float line_width_{2.}; + color_array line_color_{0., 0., 0., 0.}; + + bool visible_{true}; + }; +} // namespace matplot + +#endif // MATPLOTPLUSPLUS_CIRCLES_H diff --git a/dependency/x86/third_party/matplotplusplus/1.2.0/include/matplot/axes_objects/contours.h b/dependency/x86/third_party/matplotplusplus/1.2.0/include/matplot/axes_objects/contours.h new file mode 100644 index 00000000..3b725427 --- /dev/null +++ b/dependency/x86/third_party/matplotplusplus/1.2.0/include/matplot/axes_objects/contours.h @@ -0,0 +1,291 @@ +// +// Created by Alan Freitas on 2020-07-04. +// + +#ifndef MATPLOTPLUSPLUS_CONTOURS_H +#define MATPLOTPLUSPLUS_CONTOURS_H + +#include + +#include +#include +#include +#include +#include + +#include + +#include +#include + +namespace matplot { + class axes_type; + + /// Create and store a set of contour lines or filled regions. + /// We have a class just for contours instead of using the + /// gnuplot surface. So we include functions here to + /// calculate the contour lines outside gnuplot. + /// The reason is that converting the gnuplot contours to + /// 2d xlim involves workarounds a 3d map view or plotting to a + /// temporary table, that don't interact well with other 2d + /// objects. It's also no possible to plot filled contours + /// with gnuplot. At most, one can plot a very high resolution + /// under the contour lines, but this is very. The only + /// way to have full control of how the contour lines will look + /// like is to calculate the contour lines outside gnuplot, + /// even if our algorithm is not perfect. + class MATPLOT_EXPORTS contours : public axes_object { + public: + /// X, Y grids and their Z values + /// Every X column has the same value for all rows. + /// This value increases in the next column. + /// Every Y row has the same value for all columns. + /// This value increases in the next rows. + /// Thus, the high values indices represent values + /// that are graphically on the top: + /// (X[3][0], Y[3][0]) (X[3][1], Y[3][1]) (X[3][2], Y[3][2]) + /// (X[2][0], Y[2][0]) (X[2][1], Y[2][1]) (X[2][2], Y[2][2]) + /// (X[1][0], Y[1][0]) (X[1][1], Y[1][1]) (X[1][2], Y[1][2]) + /// (X[0][0], Y[0][0]) (X[0][1], Y[0][1]) (X[0][2], Y[0][2]) + /// \param parent Parent xlim + /// \param X X grid + /// \param Y Y grid + /// \param Z Z heights + /// \param line_spec Line properties + contours(class axes_type *parent, const vector_2d &X, + const vector_2d &Y, const vector_2d &Z, + std::string_view line_spec = ""); + + contours(class axes_type *parent, const vector_2d &Z, + std::string_view line_spec = ""); + + /// If we receive an axes_handle, we can convert it to a raw + /// pointer because there is no ownership involved here + template + contours(const axes_handle &parent, Args &&... args) + : contours(parent.get(), std::forward(args)...) {} + + virtual ~contours() = default; + + public /* mandatory virtual functions */: + std::string set_variables_string() override; + std::string plot_string() override; + std::string legend_string(std::string_view title) override; + std::string data_string() override; + bool requires_colormap() override; + double xmax() override; + double xmin() override; + double ymax() override; + double ymin() override; + enum axes_object::axes_category axes_category() override; + + public /* getters and setters */: + class contours &line_style(std::string_view line_spec); + + const matplot::line_spec &line_spec() const; + matplot::line_spec &line_spec(); + class contours &line_spec(const class line_spec &line_spec); + + const vector_2d &Y_data() const; + class contours &Y_data(const vector_2d &Y_data); + + const vector_2d &X_data() const; + class contours &X_data(const vector_2d &X_data); + + const vector_2d &Z_data() const; + class contours &Z_data(const vector_2d &Z_data); + + const vector_2d &x_data() const; + class contours &x_data(const vector_2d &x_data); + + const vector_2d &y_data() const; + class contours &y_data(const vector_2d &y_data); + + const vector_2d &z_data() const; + class contours &z_data(const vector_2d &z_data); + + bool contour_text() const; + class contours &contour_text(bool contour_text); + + float font_size() const; + class contours &font_size(const float &font_size); + + const std::string font() const; + class contours &font(std::string_view font); + + const std::string &font_weight() const; + class contours &font_weight(std::string_view font_weight); + + const color_array &font_color() const; + class contours &font_color(const color_array &font_color); + class contours &font_color(std::string_view font_color); + + bool visible() const; + class contours &visible(bool visible); + + size_t n_levels() const; + class contours &n_levels(size_t n_levels); + + const std::vector &levels() const; + class contours &levels(const std::vector &levels); + + bool filled() const; + class contours &filled(bool filled); + + bool colormap_line_when_filled() const; + + class contours & + colormap_line_when_filled(bool colormap_line_when_filled); + + public /* getters and setters bypassing the line_spec */: + float line_width() const; + class contours &line_width(float line_width); + + const std::array &color() const; + + template contours &color(T c) { + line_spec().color(c); + return *this; + } + inline class contours &color(std::initializer_list c) { + line_spec().color(c); + return *this; + } + + protected: + void make_sure_data_is_preprocessed(); + void clear_preprocessed_data(); + bool is_lower_level(size_t line_index, size_t segment_begin, + size_t segment_end); + std::pair + fill_border_jump(double start_x, double start_y, double end_x, + double end_y, double x_min, double x_max, double y_min, + double y_max, bool is_parent); + + public: + enum class extend_option { neither, min, max, both }; + + /// Determine some automatic contour levels for data ranging from z_min + /// to z_max Each library will use a different algorithm to determine + /// levels. In our case, this is similar to the algorithm for automatic + /// histogram edges. The difference is that the final histogram edges + /// fall outside the range [z_min,z_max] while we want all contour lines + /// to fall inside [z_min,z_max] Select contour levels to span the data. + // The target number of levels, *N*, is used only when the + // scale is not log and default locator is used. + // + // We need two more levels for filled contours than for + // line contours, because for the latter we need to specify + // the lower and upper boundary of each range. + // + // For example, + // a single contour boundary, say at z = 0, requires only + // one contour line, but two filled regions, and therefore + // three levels to provide boundaries for both regions. + /// Assign values to :attr:`layers` based on :attr:`levels`, + /// adding extended layers as needed if contours are filled. + /// For line contours, layers simply coincide with levels; + /// a line is a thin layer. No extended levels are needed + /// with line contours. + static std::vector + determine_contour_levels(double z_min, double z_max, size_t n_levels_, + extend_option ext = extend_option::neither); + static std::vector + determine_contour_levels(const vector_2d &Z, size_t n_levels_, + extend_option ext = extend_option::neither); + + /// Return ``(lowers, uppers)`` levels for filled contours. + std::pair get_lowers_and_uppers(); + + void process_contour_levels(); + void initialize_preprocessed_data(); + void check_xyz(); + void initialize_x_y(); + + void process_all_segs_and_all_kinds(); + + double zmin() override; + double zmax() override; + + protected: + /// Pre-processed contour lines + std::vector lines_; + + /// Pre-processed contour lines for filled plots + /// This uses another algorithm for pairs of levels + /// We generate the lines twice for filled plots because + /// the closed polygons of filled plots are not good enough + /// to represent everything. + /// Also, this makes it much easier to label the unfilled lines. + std::vector filled_lines_; + + /// These codes indicate what's happening in a filled line + /// Starting a polygon, closing a polygon, or middle of a polygon + std::vector codes_; + + /// Object with the algorithm to generate contour lines + QuadContourGenerator contour_generator_; + + /// Segments of filled contours + using level_index_type = size_t; + using begin_index_type = size_t; + using end_index_type = size_t; + using area_type = double; + using line_segment_type = + std::tuple; + using parent_and_children_type = + std::tuple, + area_type>; + std::vector line_segments_; + + protected: + /// Line style + class line_spec line_spec_; + + /// Data in the xlim + vector_2d X_data_{}; + vector_2d Y_data_{}; + vector_2d Z_data_{}; + + /// Parameters + size_t n_levels_{0}; + bool manual_n_levels_{false}; + std::vector levels_{}; + bool manual_levels_{false}; + std::vector _levels{}; + std::vector layers_ = {}; + + /// Style + bool filled_{false}; + vector_1d linewidths_ = {}; + bool antialiased_ = false; + bool _corner_mask = false; + bool colormap_line_when_filled_ = false; + + /// Pre-processed data + std::vector linestyles_{}; + vector_1d extent_ = {}; + std::vector cmap_ = {}; + std::vector colors_ = {}; + double norm_ = NaN; + double vmin_ = NaN; + double vmax_ = NaN; + extend_option extend_ = extend_option::neither; + size_t nchunk_ = 0; + double zmin_{NaN}; + double zmax_{NaN}; + + /// Text around the lines + bool contour_text_{false}; + std::optional font_size_{std::nullopt}; + std::optional font_{std::nullopt}; + std::string font_weight_{"normal"}; + color_array font_color_{0, 0, 0, 0}; + + /// True if visible + bool visible_{true}; + }; + +} // namespace matplot + +#endif // MATPLOTPLUSPLUS_CONTOURS_H diff --git a/dependency/x86/third_party/matplotplusplus/1.2.0/include/matplot/axes_objects/error_bar.h b/dependency/x86/third_party/matplotplusplus/1.2.0/include/matplot/axes_objects/error_bar.h new file mode 100644 index 00000000..998ca35a --- /dev/null +++ b/dependency/x86/third_party/matplotplusplus/1.2.0/include/matplot/axes_objects/error_bar.h @@ -0,0 +1,91 @@ +// +// Created by Alan Freitas on 09/07/20. +// + +#ifndef MATPLOTPLUSPLUS_ERROR_BAR_H +#define MATPLOTPLUSPLUS_ERROR_BAR_H + +#include +#include + +namespace matplot { + class axes_type; + + class MATPLOT_EXPORTS error_bar : public line { + public: + enum class type { vertical, horizontal, both }; + + public: + explicit error_bar(class axes_type *parent); + + /// Construct with x and y error + error_bar(class axes_type *parent, const std::vector &x, + const std::vector &y, + const std::vector &y_neg_delta, + const std::vector &y_pos_delta, + const std::vector &x_neg_delta, + const std::vector &x_pos_delta, + std::string_view line_spec = ""); + + /// Construct with y error only + error_bar(class axes_type *parent, const std::vector &x_data, + const std::vector &y_data, + const std::vector &error, + error_bar::type type = error_bar::type::vertical, + std::string_view line_spec = ""); + + /// If we receive an axes_handle, we can convert it to a raw + /// pointer because there is no ownership of the xlim + template + error_bar(const axes_handle &parent, Args&&... args) + : error_bar(parent.get(), std::forward(args)...) {} + + public /* override the plotting function for error_bar */: + std::string set_variables_string() override; + std::string plot_string() override; + std::string data_string() override; + bool requires_colormap() override; + std::string unset_variables_string() override; + enum axes_object::axes_category axes_category() override; + + public /* methods for error_bar only */: + const std::vector &x_negative_delta() const; + class error_bar & + x_negative_delta(const std::vector &x_negative_delta); + + const std::vector &x_positive_delta() const; + class error_bar & + x_positive_delta(const std::vector &x_positive_delta); + + const std::vector &y_negative_delta() const; + class error_bar & + y_negative_delta(const std::vector &y_negative_delta); + + const std::vector &y_positive_delta() const; + class error_bar & + y_positive_delta(const std::vector &y_positive_delta); + + float filled_curve_alpha() const; + class error_bar &filled_curve_alpha(float filled_curve_alpha); + + bool filled_curve() const; + class error_bar &filled_curve(bool filled_curve); + + float cap_size() const; + class error_bar &cap_size(float cap_size); + + protected: + std::vector x_negative_delta_{}; + std::vector x_positive_delta_{}; + std::vector y_negative_delta_{}; + std::vector y_positive_delta_{}; + + bool filled_curve_{false}; + float filled_curve_alpha_{0.9f}; + + float cap_size_{3.}; + }; + +} // namespace matplot + +#endif // MATPLOTPLUSPLUS_ERROR_BAR_H diff --git a/dependency/x86/third_party/matplotplusplus/1.2.0/include/matplot/axes_objects/filled_area.h b/dependency/x86/third_party/matplotplusplus/1.2.0/include/matplot/axes_objects/filled_area.h new file mode 100644 index 00000000..c53a787e --- /dev/null +++ b/dependency/x86/third_party/matplotplusplus/1.2.0/include/matplot/axes_objects/filled_area.h @@ -0,0 +1,69 @@ +// +// Created by Alan Freitas on 09/07/20. +// + +#ifndef MATPLOTPLUSPLUS_FILLED_AREA_H +#define MATPLOTPLUSPLUS_FILLED_AREA_H + +#include +#include + +namespace matplot { + class axes_type; + + class MATPLOT_EXPORTS filled_area : public line { + public: + enum class type { vertical, horizontal, both }; + + public: + explicit filled_area(class axes_type *parent); + + /// Construct with x and y error + filled_area(class axes_type *parent, const std::vector &x, + const std::vector &y, + const std::vector &base_values = {0.}, + bool stacked = true, std::string_view line_spec = "k-"); + + /// If we receive an axes_handle, we can convert it to a raw + /// pointer because there is no ownership of the xlim + template + filled_area(const axes_handle &parent, Args&&... args) + : filled_area(parent.get(), std::forward(args)...) {} + + public /* override the plotting function for filled_area */: + std::string plot_string() override; + std::string data_string() override; + enum axes_object::axes_category axes_category() override; + + public /* methods for filled_area only */: + bool stacked() const; + class filled_area &stacked(bool stacked); + + const std::vector &base_data() const; + class filled_area &base_data(const std::vector &base_data); + + bool plot_base_line() const; + class filled_area &plot_base_line(bool plot_base_line); + + const color_array &face_color() const; + class filled_area &face_color(const color_array &face_color); + + bool fill_user_color() const; + class filled_area &fill_user_color(bool fill_user_color); + + private: + void maybe_update_face_color(); + + protected: + bool stacked_{true}; + + std::vector base_data_{0.}; + bool plot_base_line_{true}; + + color_array face_color_{0, 0, 0, 0}; + bool fill_user_color_{false}; + }; + +} // namespace matplot + +#endif // MATPLOTPLUSPLUS_FILLED_AREA_H diff --git a/dependency/x86/third_party/matplotplusplus/1.2.0/include/matplot/axes_objects/function_line.h b/dependency/x86/third_party/matplotplusplus/1.2.0/include/matplot/axes_objects/function_line.h new file mode 100644 index 00000000..c9685c1f --- /dev/null +++ b/dependency/x86/third_party/matplotplusplus/1.2.0/include/matplot/axes_objects/function_line.h @@ -0,0 +1,85 @@ +// +// Created by Alan Freitas on 2020-07-06. +// + +#ifndef MATPLOTPLUSPLUS_FUNCTION_LINE_H +#define MATPLOTPLUSPLUS_FUNCTION_LINE_H + +#include +#include +#include +#include +#include + +namespace matplot { + class MATPLOT_EXPORTS function_line : public line { + public: + using function_type = std::function; + + public: + explicit function_line(class axes_type *parent); + + function_line(class axes_type *parent, const function_type &equation, + std::array x_range = {-5, 5}, + std::string_view line_spec = ""); + + function_line(class axes_type *parent, const function_type &function_x, + const function_type &function_y, + std::array t_range = {-5, 5}, + std::string_view line_spec = ""); + + function_line(class axes_type *parent, const function_type &function_x, + const function_type &function_y, + const function_type &function_z, + std::array t_range = {-5, 5}, + std::string_view line_spec = ""); + + /// If we receive an axes_handle, we can convert it to a raw + /// pointer because there is no ownership involved here + template + function_line(const axes_handle &parent, Args&&... args) + : function_line(parent.get(), std::forward(args)...) {} + + public: + std::string plot_string() override; + double xmax() override; + double xmin() override; + double ymax() override; + double ymin() override; + enum axes_object::axes_category axes_category() override; + + public: + const function_type &fn() const; + class function_line &fn(const function_type &fn); + + class function_line &tmin(double x); + class function_line &tmax(double x); + double tmin(); + double tmax(); + + const std::array &t_range() const; + class function_line &t_range(const std::array &t_range); + class function_line &t_range(double t_min, double t_max); + + size_t mesh_density() const; + class function_line &mesh_density(size_t mesh_density); + + bool automatic_mesh_density() const; + class function_line & + automatic_mesh_density(bool automatic_mesh_density); + + private: + void make_sure_data_is_preprocessed(); + + private: + std::array t_range_; + std::vector t_data_{}; + size_t mesh_density_{30}; + bool automatic_mesh_density_{true}; + function_type fn_x_{nullptr}; + function_type fn_y_{nullptr}; + function_type fn_z_{nullptr}; + }; +} // namespace matplot + +#endif // MATPLOTPLUSPLUS_FUNCTION_LINE_H diff --git a/dependency/x86/third_party/matplotplusplus/1.2.0/include/matplot/axes_objects/histogram.h b/dependency/x86/third_party/matplotplusplus/1.2.0/include/matplot/axes_objects/histogram.h new file mode 100644 index 00000000..22e2a606 --- /dev/null +++ b/dependency/x86/third_party/matplotplusplus/1.2.0/include/matplot/axes_objects/histogram.h @@ -0,0 +1,269 @@ +// +// Created by Alan Freitas on 2020-07-04. +// + +#ifndef MATPLOTPLUSPLUS_HISTOGRAM_H +#define MATPLOTPLUSPLUS_HISTOGRAM_H + +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include + +namespace matplot { + class axes_type; + class MATPLOT_EXPORTS histogram : public axes_object { + public: + // source code in 'edit histcount' + enum class binning_algorithm { + automatic, // Scott's rule for doubles or integers rule for data + // distributed around integers + scott, // Scott’s rule - bin_width = 3.5*std(x)*|X|^(-1/3) + fd, // Freedman-Diaconis rule - bin width = + // 2*IQR(X(:))*numel(X)^(-1/3) (for heavy tailed distributions, + // less sensitive to outliers) - IQR = interquartile range of X + integers, // Integer rule - bin width = 1 + sturges, // Sturges' rule - number of bins = ceil(1+log2(numel(X))) + sqrt // Square root rule - number of bins = ceil(sqrt(numel(X))) + }; + + enum class normalization { + count, // value_i = count_i + count_density, // value_i = count_i / bin_width_i + cummulative_count, // value_i = sum_j=1^i count_j + probability, // value_i = count_i / size -> (sum(heights) <= 1) + pdf, // value_i = count_i / (size * width_i) -> (sum(areas) <= 1) + cdf // value_i = sum_j=1^i count_j / size + }; + + public: + explicit histogram(class axes_type *parent); + histogram(class axes_type *parent, const std::vector &data, + size_t n_bins, + enum histogram::normalization normalization_alg = + histogram::normalization::count); + histogram(class axes_type *parent, const std::vector &data, + const std::vector &edges, + enum histogram::normalization normalization_alg = + histogram::normalization::count); + histogram(class axes_type *parent, const std::vector &data, + binning_algorithm algorithm = binning_algorithm::automatic, + histogram::normalization normalization_alg = + histogram::normalization::count); + + /// If we receive an axes_handle, we can convert it to a raw + /// pointer because there is no ownership involved here + template + histogram(const axes_handle &parent, Args&&... args) + : histogram(parent.get(), std::forward(args)...) {} + + virtual ~histogram() = default; + public /* xlim object virtual functions */: + // std::string set_variables_string() override; + std::string plot_string() override; + std::string legend_string(std::string_view title) override; + std::string data_string() override; + // std::string unset_variables_string() override; + double xmax() override; + double xmin() override; + double ymax() override; + double ymin() override; + enum axes_object::axes_category axes_category() override; + + public /* useful functions for histograms */: + /// Increase number of bins + size_t morebins(double bin_increase = 0.1); + + /// Decrease number of bins + size_t fewerbins(double bin_decrease = 0.1); + + /// Find appropriate edges given a fixed number of bins and target bin + /// width If nbins == 0, round the bin width and create + /// (xmax-xmin)/bin_width bins If nbins != 0, bin width is set to + /// (xmax-xmin)/nbins and create nbins bins + static std::vector bin_picker(double xmin, double xmax, + size_t nbins, double bin_width); + + /// Find appropriate edges with a given algorithm + static std::vector histogram_edges( + const std::vector &data, double minx, double maxx, + binning_algorithm algorithm = binning_algorithm::automatic, + bool hard_limits = false); + + /// Count points within each pair of edges + static std::vector + histogram_count(const std::vector &values, + const std::vector &edges); + + /// Normalize the instagram count + static std::vector + histogram_normalize(const std::vector &bin_count, + const std::vector &bin_edges, + size_t data_size, + enum normalization normalization_algorithm); + + public /* getters and setters */: + const std::vector &data() const; + class histogram &data(const std::vector &data); + + const std::vector &values() const; + class histogram &values(const std::vector &values); + + const std::vector &bin_counts() const; + class histogram &bin_counts(const std::vector &bin_counts); + + size_t num_bins(); + class histogram &num_bins(size_t num_bins); + + binning_algorithm algorithm() const; + class histogram &algorithm(binning_algorithm algorithm); + + std::vector &bin_edges(); + class histogram &bin_edges(const std::vector &bin_edges); + + double bin_width() const; + class histogram &bin_width(double bin_width); + + double bin_limits_min() const; + class histogram &bin_limits_min(double bin_limits_min); + + double bin_limits_max() const; + class histogram &bin_limits_max(double bin_limits_max); + + normalization normalization() const; + class histogram &normalization(enum normalization normalization); + + const color_array &face_color() const; + class histogram &face_color(const color_array &face_color); + class histogram &face_color(std::initializer_list face_color); + class histogram &face_color(std::string_view color); + + class histogram &face_alpha(float alpha); + class histogram &edge_alpha(float alpha); + + bool manual_face_color() const; + class histogram &manual_face_color(bool manual_face_color); + + const color_array &edge_color() const; + class histogram &edge_color(const color_array &edge_color); + class histogram &edge_color(std::initializer_list face_color); + class histogram &edge_color(std::string_view edge_color); + + const line_spec &edge_style() const; + class histogram &edge_style(const line_spec &edge_style); + + float line_width() const; + class histogram &line_width(float line_width); + + bool vertical_orientation() const; + class histogram &vertical_orientation(bool vertical_orientation); + + bool visible() const; + class histogram &visible(bool visible); + + float bar_width() const; + class histogram &bar_width(float bar_width); + + bool polar() const; + class histogram &polar(bool polar); + + bool stairs_only() const; + class histogram &stairs_only(bool stairs_only); + + /// Algorithms to determine histogram edges + static std::vector scotts_rule(const std::vector &x, + double minx, double maxx, + bool hard_limits); + static std::vector fd_rule(const std::vector &x, + double minx, double maxx, + bool hard_limits); + static std::vector integers_rule(const std::vector &x, + double minx, double maxx, + bool hard_limits); + static std::vector sqrt_rule(const std::vector &x, + double minx, double maxx, + bool hard_limits); + static std::vector sturges_rule(const std::vector &x, + double minx, double maxx, + bool hard_limits); + static std::vector automatic_rule(const std::vector &x, + double minx, double maxx, + bool hard_limits); + + public /* getters and setters bypassing the histogram_spec */: + private: + /// If the user has not set the face color, + /// we get a color from the xlim + void maybe_update_face_color(); + + /// Make sure we have already calculated the normalized values + /// for the current parameters. We reset the normalized values + /// every time the user changes the algorithm. + void make_sure_data_is_preprocessed(); + + protected: + // original data + std::vector data_; + + // normalized values (in the simplest case, values_ = bin_counts_) + std::vector values_; + + // number of elements in each bin + std::vector bin_counts_; + + // target num of bins (0 indicates no target: the algorithm should + // decide) + size_t num_bins_{0}; + + // algorithm we use to create the bins + binning_algorithm algorithm_; + + // where edges start + std::vector bin_edges_; + + // binning mode + enum binning_mode_type { + use_algorithm, // use algorithm to decide everything + use_bin_limits, // use algorithm with bin limits + use_fixed_num_bins, // use fixed num of bins + use_fixed_bin_width, // use fixed num of bins + use_fixed_edges, // use fixed edges, including edges of variable + // size + }; + binning_mode_type binning_mode_{binning_mode_type::use_algorithm}; + + // bin width (if zero, the algorithm determines the bin width) + double bin_width_{0.0}; + + // bin limits + double bin_limits_min_; + double bin_limits_max_; + + // normalization algorithm + enum normalization normalization_ { normalization::count }; + + // color and style + color_array face_color_{0.4f, 0, 0, 0}; + bool manual_face_color_{false}; + color_array edge_color_{0, 0, 0, 0}; + bool manual_edge_color_{false}; + line_spec edge_style_{"-"}; + float line_width_{0.5}; + bool vertical_orientation_{true}; + float bar_width_{1.0}; + bool polar_{false}; + bool stairs_only_{false}; + + // True if visible + bool visible_{true}; + }; + +} // namespace matplot + +#endif // MATPLOTPLUSPLUS_HISTOGRAM_H diff --git a/dependency/x86/third_party/matplotplusplus/1.2.0/include/matplot/axes_objects/labels.h b/dependency/x86/third_party/matplotplusplus/1.2.0/include/matplot/axes_objects/labels.h new file mode 100644 index 00000000..b29c4d85 --- /dev/null +++ b/dependency/x86/third_party/matplotplusplus/1.2.0/include/matplot/axes_objects/labels.h @@ -0,0 +1,112 @@ +// +// Created by Alan Freitas on 16/07/20. +// + +#ifndef MATPLOTPLUSPLUS_LABELS_H +#define MATPLOTPLUSPLUS_LABELS_H + +#include +#include +#include +#include +#include +#include +#include + +namespace matplot { + class axes_type; + class MATPLOT_EXPORTS labels : public axes_object { + public: + enum alignment { left, right, center, automatic }; + + public: + static constexpr double width_factor = 0.04; + static constexpr double height_factor = 0.08; + + public: + explicit labels(class axes_type *parent); + labels(class axes_type *parent, const std::vector &x, + const std::vector &y, + const std::vector &labels = {}, + const std::vector &color = {}, + const std::vector &sizes = {}); + + /// If we receive an axes_handle, we can convert it to a raw + /// pointer because there is no ownership involved here + template + labels(const axes_handle &parent, Args&&... args) + : labels(parent.get(), std::forward(args)...) {} + + virtual ~labels() = default; + public /* mandatory virtual functions */: + std::string set_variables_string() override; + std::string plot_string() override; + // std::string legend_string(const std::string& title) override; + std::string data_string() override; + std::string unset_variables_string() override; + double xmax() override; + double xmin() override; + double ymax() override; + double ymin() override; + enum axes_object::axes_category axes_category() override; + + public /* getters and setters */: + bool rectangles() const; + class labels &rectangles(bool rectangles); + + bool absolute_size() const; + class labels &absolute_size(bool absolute_size); + + enum alignment alignment() const; + class labels &alignment(enum alignment alignment); + + const std::vector &x() const; + class labels &x(const std::vector &x); + + const std::vector &y() const; + class labels &y(const std::vector &y); + + const std::vector &label_values() const; + class labels &label_values(const std::vector &labels); + + const std::vector &colors() const; + class labels &colors(const std::vector &colors); + + const std::vector &sizes() const; + class labels &sizes(const std::vector &sizes); + + bool visible() const; + class labels &visible(bool visible); + + const color_array &color() const; + class labels &color(const color_array &color); + template labels &color(T c) { + color(to_array(c)); + return *this; + } + + const std::string &font() const; + class labels &font(std::string_view font); + + float font_size() const; + class labels &font_size(float font_size); + + public /* getters and setters bypassing the line_spec */: + protected: + class line_spec line_spec_; + std::vector x_{}; // x position + std::vector y_{}; // y position + std::vector labels_{}; // 1 + std::vector colors_{}; // colormap + std::vector sizes_{}; // colormap + bool rectangles_{false}; // plot rectangles behind the words + bool absolute_size_{true}; // reduce font size for + bool visible_{true}; + enum alignment alignment_ { alignment::automatic }; + std::string font_{"Helvetica"}; + float font_size_{10}; + color_array color_{0, 0, 0, 0}; + }; +} // namespace matplot + +#endif // MATPLOTPLUSPLUS_LABELS_H diff --git a/dependency/x86/third_party/matplotplusplus/1.2.0/include/matplot/axes_objects/line.h b/dependency/x86/third_party/matplotplusplus/1.2.0/include/matplot/axes_objects/line.h new file mode 100644 index 00000000..b3280d39 --- /dev/null +++ b/dependency/x86/third_party/matplotplusplus/1.2.0/include/matplot/axes_objects/line.h @@ -0,0 +1,198 @@ +// +// Created by Alan Freitas on 2020-07-04. +// + +#ifndef MATPLOTPLUSPLUS_LINE_H +#define MATPLOTPLUSPLUS_LINE_H + +#include +#include +#include +#include +#include +#include +#include + +namespace matplot { + class axes_type; + class MATPLOT_EXPORTS line : public axes_object { + public: + explicit line(class axes_type *parent); + line(class axes_type *parent, const std::vector &y_data, + std::string_view line_spec = ""); + line(class axes_type *parent, const std::vector &x_data, + const std::vector &y_data, + std::string_view line_spec = ""); + line(class axes_type *parent, const std::vector &x_data, + const std::vector &y_data, + const std::vector &z_data, + std::string_view line_spec = ""); + + /// If we receive an axes_handle, we can convert it to a raw + /// pointer because there is no ownership involved here + template + line(const axes_handle &parent, Args &&... args) + : line(parent.get(), std::forward(args)...) {} + + virtual ~line() = default; + + public /* mandatory virtual functions */: + void run_draw_commands() override; + + std::string plot_string() override; + std::string legend_string(std::string_view title) override; + std::string data_string() override; + double xmax() override; + double xmin() override; + double ymax() override; + double ymin() override; + enum axes_object::axes_category axes_category() override; + bool requires_colormap() override; + + public /* getters and setters */: + class line &line_style(std::string_view line_spec); + + const matplot::line_spec &line_spec() const; + matplot::line_spec &line_spec(); + class line &line_spec(const class line_spec &line_spec); + + const std::vector &y_data() const; + class line &y_data(const std::vector &y_data); + + const std::vector &x_data() const; + class line &x_data(const std::vector &x_data); + + const std::vector &z_data() const; + class line &z_data(const std::vector &z_data); + + const std::vector &marker_indices() const; + class line &marker_indices(const std::vector &marker_indices); + + bool use_y2() const; + class line &use_y2(bool use_y_2); + + bool impulse() const; + class line &impulse(bool impulse); + + bool fill() const; + class line &fill(bool fill); + + bool use_y_2() const; + class line &use_y_2(bool use_y_2); + + bool polar() const; + class line &polar(bool polar); + + bool visible() const; + class line &visible(bool visible); + + public /* getters and setters bypassing the line_spec */: + float line_width() const; + class line &line_width(float line_width); + + enum line_spec::marker_style marker_style() const; + template line &marker_style(T marker_style) { + line_spec_.marker_style(marker_style); + return *this; + } + + enum line_spec::marker_style marker() const; + template line &marker(T marker) { + line_spec_.marker(marker); + return *this; + } + + float marker_size() const; + class line &marker_size(float size); + class line &marker_size(const std::vector &size_vector); + class line &marker_size(const std::vector &size_vector); + + bool marker_face() const; + class line &marker_face(bool size); + + const std::array &color() const; + template line &color(T c) { + line_spec().color(c); + return *this; + } + + inline class line &color(std::initializer_list c) { + line_spec().color(c); + return *this; + } + + const std::array &marker_color() const; + + template line &marker_color(T c) { + line_spec().marker_color(c); + return *this; + } + + inline class line &marker_color(std::initializer_list c) { + line_spec().marker_color(c); + return *this; + } + + inline class line &marker_colors(const std::vector &cs) { + marker_colors_ = cs; + touch(); + return *this; + } + + const std::array &marker_face_color() const; + + template line &marker_face_color(T c) { + line_spec().marker_face_color(c); + return *this; + } + + inline class line &marker_face_color(std::initializer_list c) { + line_spec().marker_face_color(c); + return *this; + } + + inline float marker_face_alpha() { + return line_spec().marker_face_alpha(); + } + + inline class line &marker_face_alpha(float a) { + line_spec().marker_face_alpha(a); + return *this; + } + + protected: + virtual std::vector styles_to_plot(); + void maybe_update_line_spec(); + + protected: + /// Line style + matplot::line_spec line_spec_; + + /// Data in the xlim + std::vector y_data_{}; + std::vector x_data_{}; + std::vector z_data_{}; + + /// Positions at which we want markers to appear + std::vector marker_indices_{}; + std::vector marker_sizes_{}; + std::vector marker_colors_{}; + + /// Draw line as impulse + bool impulse_{false}; + + /// Draw line as filled area + bool fill_{false}; + + /// Use the y2 xlim + bool use_y2_{false}; + + /// This line is meant for a polar plot + bool polar_{false}; + + /// True if visible + bool visible_{true}; + }; +} // namespace matplot + +#endif // MATPLOTPLUSPLUS_LINE_H diff --git a/dependency/x86/third_party/matplotplusplus/1.2.0/include/matplot/axes_objects/matrix.h b/dependency/x86/third_party/matplotplusplus/1.2.0/include/matplot/axes_objects/matrix.h new file mode 100644 index 00000000..6f1d9298 --- /dev/null +++ b/dependency/x86/third_party/matplotplusplus/1.2.0/include/matplot/axes_objects/matrix.h @@ -0,0 +1,156 @@ +// +// Created by Alan Freitas on 16/07/20. +// + +#ifndef MATPLOTPLUSPLUS_MATRIX_H +#define MATPLOTPLUSPLUS_MATRIX_H + +#include +#include +#include +#include +#include +#include +#include +#include + +namespace matplot { + class axes_type; + + class MATPLOT_EXPORTS matrix : public axes_object { + public: + enum class color_normalization { none, rows, columns }; + + public: + explicit matrix(class axes_type *parent); + + /// Heatmap + /// Matrix of values that can be any double + matrix(class axes_type *parent, + const std::vector> &matrix); + + /// Matrix with an rgb image + matrix(class axes_type *parent, + const std::vector> &red_channel, + const std::vector> &green_channel, + const std::vector> &blue_channel, + const std::vector> &alpha_channel = {}); + + /// Matrix with a b&w image + matrix(class axes_type *parent, const image_channel_t &gray_image); + + /// Matrix with an rgb image + matrix(class axes_type *parent, const image_channel_t &red_channel, + const image_channel_t &green_channel, + const image_channel_t &blue_channel, + const image_channel_t &alpha_channel = {}); + + /// Matrices with an image + matrix(class axes_type *parent, const image_channels_t &rgb_image); + + /// If we receive an axes_handle, we can convert it to a raw + /// pointer because there is no ownership involved here + template + matrix(const axes_handle &parent, Args &&... args) + : matrix(parent.get(), std::forward(args)...) {} + + virtual ~matrix() = default; + + public /* mandatory virtual functions */: + // std::string set_variables_string() override; + std::string plot_string() override; + // std::string legend_string(const std::string& title) override; + std::string data_string() override; + // std::string unset_variables_string() override; + double xmax() override; + double xmin() override; + double ymax() override; + double ymin() override; + enum axes_object::axes_category axes_category() override; + + public /* getters and setters */: + color_normalization normalization() const; + class matrix &normalization(color_normalization normalization); + + const std::vector> &matrix_r() const; + class matrix & + matrix_r(const std::vector> &matrix_r); + + const std::vector> &matrix_g() const; + class matrix & + matrix_g(const std::vector> &matrix_g); + + const std::vector> &matrix_b() const; + class matrix & + matrix_b(const std::vector> &matrix_b); + + const std::vector> &matrix_a() const; + class matrix & + matrix_a(const std::vector> &matrix_a); + + bool always_hide_labels() const; + class matrix &always_hide_labels(bool always_hide_labels); + + double x() const; + class matrix &x(double x); + + double y() const; + class matrix &y(double y); + + double w() const; + class matrix &w(double w); + + double h() const; + class matrix &h(double h); + + double alpha() const; + class matrix &alpha(double alpha); + + public /* functions for matrixes */: + /// Matrix has three channels + bool is_rgb() const; + + /// Matrix has 4 channels + bool is_rgba() const; + + /// A matrix might have alpha because of an + /// alpha channels or because alpha_ != 0. + /// In both cases we have a rgba matrix + bool has_alpha() const; + + private: + bool should_plot_labels(); + void setup_axes(); + std::string matrix_data_string(); + std::string image_data_string(); + std::string labels_data_string(); + + inline double x_width() { + return (w_ - 1) / static_cast(matrices_[0][0].size() - 1); + } + + inline double y_width() { return (h_ - 1) / static_cast(matrices_[0].size() - 1); } + + protected: + // Main matrix + std::vector>> matrices_{}; + + // For heatmaps or 1 matrix + color_normalization normalization_{color_normalization::none}; + + // Matrix placement + double x_{1}; + double y_{1}; + double w_{0.}; + double h_{0.}; + + // Style + bool always_hide_labels_{false}; + labels_handle labels_; + double alpha_ = 0.0; + + bool visible_{true}; + }; +} // namespace matplot + +#endif // MATPLOTPLUSPLUS_MATRIX_H diff --git a/dependency/x86/third_party/matplotplusplus/1.2.0/include/matplot/axes_objects/network.h b/dependency/x86/third_party/matplotplusplus/1.2.0/include/matplot/axes_objects/network.h new file mode 100644 index 00000000..9cbfbabb --- /dev/null +++ b/dependency/x86/third_party/matplotplusplus/1.2.0/include/matplot/axes_objects/network.h @@ -0,0 +1,278 @@ +// +// Created by Alan Freitas on 2020-07-04. +// + +#ifndef MATPLOTPLUSPLUS_NETWORK_H +#define MATPLOTPLUSPLUS_NETWORK_H + +#include +#include +#include +#include +#include +#include +#include +#include + +namespace matplot { + class axes_type; + class MATPLOT_EXPORTS network : public axes_object { + public: + enum class layout { automatic, force, circle, kawai, random }; + + public: + explicit network(class axes_type *parent); + network(class axes_type *parent, + const std::vector> &edges, + const std::vector &weights, size_t n_vertices, + std::string_view line_spec = ""); + + /// If we receive an axes_handle, we can convert it to a raw + /// pointer because there is no ownership involved here + template + network(const axes_handle &parent, Args &&...args) + : network(parent.get(), std::forward(args)...) {} + + virtual ~network() = default; + public /* mandatory virtual functions */: + std::string plot_string() override; + std::string legend_string(std::string_view title) override; + std::string data_string() override; + double xmax() override; + double xmin() override; + double ymax() override; + double ymin() override; + enum axes_object::axes_category axes_category() override; + + public /* getters and setters */: + class network &line_style(std::string_view line_spec); + + const matplot::line_spec &line_spec() const; + matplot::line_spec &line_spec(); + class network &line_spec(const class line_spec &line_spec); + + const std::vector &y_data() const; + class network &y_data(const std::vector &y_data); + + const std::vector &x_data() const; + class network &x_data(const std::vector &x_data); + + const std::vector &z_data() const; + class network &z_data(const std::vector &z_data); + + const std::vector &marker_indices() const; + class network & + marker_indices(const std::vector &marker_indices); + + bool use_y2() const; + class network &use_y2(bool use_y_2); + + bool use_y_2() const; + class network &use_y_2(bool use_y_2); + + bool show_labels() const; + class network &show_labels(bool show_labels); + + bool directed() const; + class network &directed(bool directed); + + const std::vector &edge_labels() const; + class network &edge_labels(const std::vector &edge_labels); + + template + network &edge_labels(const IterableValues &e_labels) { + std::vector str_labels; + std::stringstream ss; + ss.precision(10); + ss << std::fixed; + for (const auto &edge_label : e_labels) { + ss << "{/:Italic " << edge_label << " }"; + str_labels.emplace_back(ss.str()); + ss.str(""); + } + edge_labels(str_labels); + return *this; + } + + const std::vector &node_labels() const; + class network &node_labels(const std::vector &node_labels); + + template + network &node_labels(const IterableValues &e_labels) { + std::vector str_labels; + std::stringstream ss; + ss.precision(10); + ss << std::fixed; + for (const auto &edge_label : e_labels) { + ss << edge_label; + str_labels.emplace_back(ss.str()); + ss.str(""); + } + node_labels(str_labels); + return *this; + } + + const std::vector &line_widths() const; + class network &line_widths(const std::vector &line_widths); + + const std::vector> &edges() const; + class network & + edges(const std::vector> &edges); + + class network &n_vertices(size_t n_vertices); + + const vector_1d &weights() const; + class network &weights(const vector_1d &weights); + + layout layout_algorithm() const; + class network &layout_algorithm(layout layout_algorithm); + + double layout_k() const; + class network &layout_k(double layout_k); + + int layout_iterations() const; + class network &layout_iterations(int layout_iterations); + + double energy_threshold() const; + class network &energy_threshold(double energy_threshold); + + const std::vector &marker_sizes() const; + class network &marker_sizes(const std::vector &marker_sizes); + + const std::vector &marker_colors() const; + + bool visible() const; + class network &visible(bool visible); + + public /* getters and setters bypassing the line_spec */: + float line_width() const; + class network &line_width(float line_width); + + enum line_spec::marker_style marker_style() const; + template network &marker_style(T marker_style) { + line_spec_.marker_style(marker_style); + return *this; + } + + enum line_spec::marker_style marker() const; + template network &marker(T marker) { + line_spec_.marker(marker); + return *this; + } + + float marker_size() const; + class network &marker_size(float size); + class network &marker_size(const std::vector &size_vector); + class network &marker_size(const std::vector &size_vector); + + bool marker_face() const; + class network &marker_face(bool size); + + const std::array &color() const; + template network &color(T c) { + line_spec().color(c); + return *this; + } + inline class network &color(std::initializer_list c) { + line_spec().color(c); + return *this; + } + + const std::array &marker_color() const; + + template network &marker_color(T c) { + line_spec().marker_color(c); + return *this; + } + + template network &node_color(T c) { + marker_color(c); + return *this; + } + + inline class network &marker_color(std::initializer_list c) { + line_spec().marker_color(c); + return *this; + } + + inline class network &marker_colors(const std::vector &cs) { + marker_colors_ = cs; + touch(); + return *this; + } + + const std::array &marker_face_color() const; + + template network &marker_face_color(T c) { + line_spec().marker_face_color(c); + return *this; + } + + inline class network & + marker_face_color(std::initializer_list c) { + line_spec().marker_face_color(c); + return *this; + } + + inline float marker_face_alpha() { + return line_spec().marker_face_alpha(); + } + + inline class network &marker_face_alpha(float a) { + line_spec().marker_face_alpha(a); + return *this; + } + + size_t n_vertices(); + + protected: + virtual std::vector styles_to_plot(); + void maybe_update_line_spec(); + void maybe_update_graph_layout(); + void infer_n_vertices(); + void process_random_layout(); + void process_force_layout(); + void process_circle_layout(); + void process_kawai_layout(); + + protected: + /// Line style + class line_spec line_spec_; + + /// Original graph + std::vector> edges_{}; + /// The number of number is declared by the user or infered from the + /// edges + size_t n_vertices_{0}; + /// Weight for each edge + vector_1d weights_{0}; + + /// True for directed graphs + bool directed_{false}; + + /// Data in the xlim + layout layout_algorithm_{layout::automatic}; + double layout_k_ = -1.; + int layout_iterations_ = -1; + double energy_threshold_ = 1e-2; + std::vector x_data_{}; + std::vector y_data_{}; + std::vector z_data_{}; + + /// Style + std::vector marker_sizes_{}; + std::vector marker_colors_{}; + bool show_labels_{true}; + std::vector edge_labels_{}; + std::vector node_labels_{}; + std::vector line_widths_{}; + + /// Use the y2 xlim + bool use_y2_{false}; + + /// True if visible + bool visible_{true}; + }; +} // namespace matplot + +#endif // MATPLOTPLUSPLUS_NETWORK_H diff --git a/dependency/x86/third_party/matplotplusplus/1.2.0/include/matplot/axes_objects/parallel_lines.h b/dependency/x86/third_party/matplotplusplus/1.2.0/include/matplot/axes_objects/parallel_lines.h new file mode 100644 index 00000000..864ee7aa --- /dev/null +++ b/dependency/x86/third_party/matplotplusplus/1.2.0/include/matplot/axes_objects/parallel_lines.h @@ -0,0 +1,81 @@ +// +// Created by Alan Freitas on 15/07/20. +// + +#ifndef MATPLOTPLUSPLUS_PARALLEL_LINES_H +#define MATPLOTPLUSPLUS_PARALLEL_LINES_H + +#include +#include +#include +#include +#include +#include +#include + +namespace matplot { + class axes_type; + class MATPLOT_EXPORTS parallel_lines : public axes_object { + public: + explicit parallel_lines(class axes_type *parent); + parallel_lines(class axes_type *parent, + const std::vector> &data, + std::string_view line_spec = ""); + + /// If we receive an axes_handle, we can convert it to a raw + /// pointer because there is no ownership involved here + template + parallel_lines(const axes_handle &parent, Args&&... args) + : parallel_lines(parent.get(), std::forward(args)...) {} + + virtual ~parallel_lines() = default; + public /* mandatory virtual functions */: + std::string set_variables_string() override; + std::string plot_string() override; + std::string legend_string(std::string_view title) override; + std::string data_string() override; + std::string unset_variables_string() override; + enum axes_object::axes_category axes_category() override; + + public /* getters and setters */: + const matplot::line_spec &line_spec() const; + class parallel_lines &line_spec(const matplot::line_spec &line_spec); + + const std::vector> &data() const; + class parallel_lines & + data(const std::vector> &data); + + const std::vector &axis() const; + std::vector &axis(); + class parallel_lines &axis(const std::vector &axis); + + bool visible() const; + class parallel_lines &visible(bool visible); + + bool jitter() const; + class parallel_lines &jitter(bool jitter); + + const std::vector &line_widths() const; + class parallel_lines & + line_widths(const std::vector &line_widths); + + const std::vector &line_colors() const; + class parallel_lines & + line_colors(const std::vector &line_colors); + + public /* getters and setters bypassing the line_spec */: + protected: + void maybe_update_line_spec(); + + protected: + class line_spec line_spec_; + std::vector> data_{}; + std::vector axis_{}; + std::vector line_widths_{}; + std::vector line_colors_{}; + bool jitter_{true}; + bool visible_{true}; + }; +} // namespace matplot + +#endif // MATPLOTPLUSPLUS_PARALLEL_LINES_H diff --git a/dependency/x86/third_party/matplotplusplus/1.2.0/include/matplot/axes_objects/stair.h b/dependency/x86/third_party/matplotplusplus/1.2.0/include/matplot/axes_objects/stair.h new file mode 100644 index 00000000..3a0ef12c --- /dev/null +++ b/dependency/x86/third_party/matplotplusplus/1.2.0/include/matplot/axes_objects/stair.h @@ -0,0 +1,66 @@ +// +// Created by Alan Freitas on 09/07/20. +// + +#ifndef MATPLOTPLUSPLUS_STAIR_H +#define MATPLOTPLUSPLUS_STAIR_H + +#include +#include + +namespace matplot { + class axes_type; + + class MATPLOT_EXPORTS stair : public line { + public: + enum class stair_style { + // trace change in x, then change in y + trace_x_first, + // trace change in y, then change in x + trace_y_first, + // histogram mode: trace + // (i) half change in x, + // (ii) then change in y, + // (iii) then half the change in x + histogram, + // fill change in x, then fill change in y + fill + }; + + public: + explicit stair(class axes_type *parent); + stair(class axes_type *parent, const std::vector &y_data, + std::string_view line_spec = ""); + stair(class axes_type *parent, const std::vector &x_data, + const std::vector &y_data, + std::string_view line_spec = ""); + + /// If we receive an axes_handle, we can convert it to a raw + /// pointer because there is no ownership involved here + template + stair(const axes_handle &parent, Args&&... args) + : stair(parent.get(), std::forward(args)...) {} + + public /* override the plotting function for stair */: + std::string plot_string() override; + // std::string data_string() override; + enum axes_object::axes_category axes_category() override; + + public /* methods for stair only */: + stair_style stair_style() const; + class stair &stair_style(enum stair_style stair_style); + + bool fill() const; + class stair &fill(bool fill); + + protected: + std::vector styles_to_plot() override; + + protected: + enum stair_style stair_style_ { stair_style::trace_x_first }; + bool fill_{false}; + }; + +} // namespace matplot + +#endif // MATPLOTPLUSPLUS_STAIR_H diff --git a/dependency/x86/third_party/matplotplusplus/1.2.0/include/matplot/axes_objects/string_function.h b/dependency/x86/third_party/matplotplusplus/1.2.0/include/matplot/axes_objects/string_function.h new file mode 100644 index 00000000..ae3497d6 --- /dev/null +++ b/dependency/x86/third_party/matplotplusplus/1.2.0/include/matplot/axes_objects/string_function.h @@ -0,0 +1,45 @@ +// +// Created by Alan Freitas on 2020-07-06. +// + +#ifndef MATPLOTPLUSPLUS_STRING_FUNCTION_H +#define MATPLOTPLUSPLUS_STRING_FUNCTION_H + +#include +#include +#include +#include +#include + +namespace matplot { + class MATPLOT_EXPORTS string_function : public line { + public: + explicit string_function(class axes_type *parent); + string_function(class axes_type *parent, std::string_view equation, + std::string_view line_spec = ""); + + /// If we receive an axes_handle, we can convert it to a raw + /// pointer because there is no ownership involved here + template + string_function(const axes_handle &parent, Args&&... args) + : string_function(parent.get(), std::forward(args)...) {} + + public: + std::string plot_string() override; + std::string data_string() override; + double xmax() override; + double xmin() override; + double ymax() override; + double ymin() override; + enum axes_object::axes_category axes_category() override; + + public: + const std::string &equation() const; + class string_function &equation(std::string_view equation); + + private: + std::string equation_; + }; +} // namespace matplot + +#endif // MATPLOTPLUSPLUS_STRING_FUNCTION_H diff --git a/dependency/x86/third_party/matplotplusplus/1.2.0/include/matplot/axes_objects/surface.h b/dependency/x86/third_party/matplotplusplus/1.2.0/include/matplot/axes_objects/surface.h new file mode 100644 index 00000000..f608e141 --- /dev/null +++ b/dependency/x86/third_party/matplotplusplus/1.2.0/include/matplot/axes_objects/surface.h @@ -0,0 +1,254 @@ +// +// Created by Alan Freitas on 2020-07-04. +// + +#ifndef MATPLOTPLUSPLUS_SURFACE_H +#define MATPLOTPLUSPLUS_SURFACE_H + +#include +#include +#include +#include +#include +#include +#include +#include +#include + +namespace matplot { + class axes_type; + + /// Surfaces might include data for contours but, if you only want contours, + /// it's best to use the contour, contourf, fcontour functions to plot it in + /// 2d + class MATPLOT_EXPORTS surface : public axes_object { + public: + explicit surface(class axes_type *parent); + + /// Grid surface + surface(class axes_type *parent, const vector_2d &X, const vector_2d &Y, + const vector_2d &Z, const vector_2d &C, + std::string_view line_spec = ""); + + /// Parametric surface + // surface(class xlim* parent, const vector_1d& x, const + // vector_1d& y, const vector_1d& z, const vector_1d& c, const + // std::string& line_spec = ""); + + /// If we receive an axes_handle, we can convert it to a raw + /// pointer because there is no ownership involved here + template + surface(const axes_handle &parent, Args&&... args) + : surface(parent.get(), std::forward(args)...) {} + + virtual ~surface() = default; + public /* mandatory virtual functions */: + std::string set_variables_string() override; + std::string plot_string() override; + std::string legend_string(std::string_view title) override; + std::string data_string() override; + double xmax() override; + double xmin() override; + double ymax() override; + double ymin() override; + enum axes_object::axes_category axes_category() override; + + public /* getters and setters */: + class surface &line_style(std::string_view line_spec); + + const matplot::line_spec &line_spec() const; + matplot::line_spec &line_spec(); + class surface &line_spec(const class line_spec &line_spec); + + const vector_2d &Y_data() const; + class surface &Y_data(const vector_2d &Y_data); + + const vector_2d &X_data() const; + class surface &X_data(const vector_2d &X_data); + + const vector_2d &Z_data() const; + class surface &Z_data(const vector_2d &Z_data); + + size_t norm() const; + class surface &norm(size_t norm); + + const vector_2d &x_data() const; + class surface &x_data(const vector_2d &x_data); + + const vector_2d &y_data() const; + class surface &y_data(const vector_2d &y_data); + + const vector_2d &z_data() const; + class surface &z_data(const vector_2d &z_data); + + bool hidden_3d() const; + class surface &hidden_3d(bool hidden_3_d); + + bool surface_visible() const; + class surface &surface_visible(bool surface_visible); + + bool surface_in_2d() const; + class surface &surface_in_2d(bool surface_in_2d); + + bool palette_map_at_bottom() const; + class surface &palette_map_at_bottom(bool palette_map_at_bottom); + + bool palette_map_at_surface() const; + class surface &palette_map_at_surface(bool palette_map_at_surface); + + bool palette_map_at_top() const; + class surface &palette_map_at_top(bool palette_map_at_top); + + bool contour_base() const; + class surface &contour_base(bool contour_base); + + bool contour_surface() const; + class surface &contour_surface(bool contour_surface); + + size_t contour_levels() const; + class surface &contour_levels(size_t contour_levels); + + const std::vector &contour_values() const; + class surface & + contour_values(const std::vector &contour_values); + + bool contour_text() const; + class surface &contour_text(bool contour_text); + + float font_size() const; + class surface &font_size(const float &font_size); + + const std::string font() const; + class surface &font(std::string_view font); + + const std::string &font_weight() const; + class surface &font_weight(std::string_view font_weight); + + const color_array &font_color() const; + class surface &font_color(const color_array &font_color); + class surface &font_color(std::string_view font_color); + + bool depthorder() const; + + class surface &depthorder(bool depthorder); + + float face_alpha() const; + class surface &face_alpha(float face_alpha); + + bool lighting() const; + class surface &lighting(bool lighting); + + float primary() const; + class surface &primary(float amount); + + float specular() const; + class surface &specular(float amount); + + const class line_spec &contour_line_spec() const; + class line_spec &contour_line_spec(); + class surface & + contour_line_spec(const class line_spec &contour_line_spec); + + bool curtain() const; + class surface &curtain(bool curtain); + + bool waterfall() const; + class surface &waterfall(bool waterfall); + + bool fences() const; + class surface &fences(bool fences); + + bool ribbons() const; + class surface &ribbons(bool ribbons); + + double ribbon_width() const; + class surface &ribbon_width(double ribbon_width); + + bool visible() const; + class surface &visible(bool visible); + + public /* getters and setters bypassing the line_spec */: + float line_width() const; + class surface &line_width(float line_width); + + const std::array &edge_color() const; + + template surface &edge_color(T c) { + line_spec().color(c); + touch(); + return *this; + } + + inline class surface &edge_color(std::initializer_list c) { + line_spec().color(c); + touch(); + return *this; + } + + double zmin() override; + double zmax() override; + + protected: + void maybe_update_line_spec(); + std::string grid_data_string(); + std::string ribbon_data_string(); + size_t create_line_index(); + + protected: + /// Data in the xlim + vector_2d X_data_{}; + vector_2d Y_data_{}; + vector_2d Z_data_{}; + vector_2d C_data_{}; + + /// Interpret data as a flat array of parametrics values + /// If false, data needs to represent a grid + /// If true, data represents a free form + bool is_parametric_{false}; + + /// Preprocess zmin / zmax + double zmin_{NaN}; + double zmax_{NaN}; + + /// Style + size_t norm_{2}; + bool hidden3d_{false}; + bool depthorder_{false}; + float face_alpha_{.95f}; + class line_spec line_spec_; + bool lighting_{false}; + float primary_{-1.}; + float specular_{-1.}; + bool curtain_{false}; + bool waterfall_{false}; + bool fences_{false}; + bool ribbons_{false}; + double ribbon_width_{0.75}; + + // Line surface + bool surface_visible_{true}; + bool surface_in_2d_{false}; + + // Solid surface + bool palette_map_at_bottom_{false}; + bool palette_map_at_surface_{true}; + bool palette_map_at_top_{false}; + + class line_spec contour_line_spec_; + bool contour_base_{false}; + bool contour_surface_{false}; + size_t contour_levels_{9}; + std::vector contour_values_{}; + + bool contour_text_{false}; + std::optional font_size_{std::nullopt}; + std::optional font_{std::nullopt}; + std::string font_weight_{"normal"}; + color_array font_color_{0, 0, 0, 0}; + + /// True if visible + bool visible_{true}; + }; +} // namespace matplot + +#endif // MATPLOTPLUSPLUS_SURFACE_H diff --git a/dependency/x86/third_party/matplotplusplus/1.2.0/include/matplot/axes_objects/vectors.h b/dependency/x86/third_party/matplotplusplus/1.2.0/include/matplot/axes_objects/vectors.h new file mode 100644 index 00000000..d51965ee --- /dev/null +++ b/dependency/x86/third_party/matplotplusplus/1.2.0/include/matplot/axes_objects/vectors.h @@ -0,0 +1,258 @@ +// +// Created by Alan Freitas on 2020-07-04. +// + +#ifndef MATPLOTPLUSPLUS_VECTORS_H +#define MATPLOTPLUSPLUS_VECTORS_H + +#include +#include +#include +#include +#include +#include +#include + +namespace matplot { + class axes_type; + class MATPLOT_EXPORTS vectors : public axes_object { + public: + /// \brief Create empty vectors + explicit vectors(class axes_type *parent); + + /// \brief Create 2D vectors with fixed origin and incremental u + /// Origin xy = (0,0), u = {1,...n}, v = {v_data} + vectors(class axes_type *parent, const std::vector &v_data, + std::string_view line_spec = ""); + + /// \brief Create 2D vectors with fixed origin + /// Origin xy = (0,0), u = {u_data}, v = {v_data} + vectors(class axes_type *parent, const std::vector &u_data, + const std::vector &v_data, + std::string_view line_spec = ""); + + /// \brief Create 3D vectors with fixed origin + /// Origin xy = (0,0,0), u = {u_data}, v = {v_data}, w = {w_data} + vectors(class axes_type *parent, const std::vector &u_data, + const std::vector &v_data, + const std::vector &w_data, + std::string_view line_spec = ""); + + /// \brief Create 2D vectors with custom origin + vectors(class axes_type *parent, const std::vector &x_data, + const std::vector &y_data, + const std::vector &u_data, + const std::vector &v_data, + std::string_view line_spec = ""); + + /// \brief Create 2D vectors with custom origin and colors + vectors(class axes_type *parent, const std::vector &x_data, + const std::vector &y_data, + const std::vector &u_data, + const std::vector &v_data, + const std::vector &c_data, + std::string_view line_spec = ""); + + /// \brief Create 3D vectors with custom origin + vectors(class axes_type *parent, const std::vector &x_data, + const std::vector &y_data, + const std::vector &z_data, + const std::vector &u_data, + const std::vector &v_data, + const std::vector &w_data, + std::string_view line_spec = ""); + + /// \brief Create 3D vectors with custom origin and colors + vectors(class axes_type *parent, const std::vector &x_data, + const std::vector &y_data, + const std::vector &z_data, + const std::vector &u_data, + const std::vector &v_data, + const std::vector &w_data, + const std::vector &c_data, + std::string_view line_spec = ""); + + /// If we receive an axes_handle, we can convert it to a raw + /// pointer because there is no ownership involved here + template + vectors(const axes_handle &parent, Args &&...args) + : vectors(parent.get(), std::forward(args)...) {} + + virtual ~vectors() = default; + public /* mandatory virtual functions */: + std::string plot_string() override; + std::string legend_string(std::string_view title) override; + std::string data_string() override; + double xmax() override; + double xmin() override; + double ymax() override; + double ymin() override; + enum axes_object::axes_category axes_category() override; + + public /* getters and setters */: + class vectors &line_style(std::string_view line_spec); + + const matplot::line_spec &line_spec() const; + matplot::line_spec &line_spec(); + class vectors &line_spec(const class line_spec &line_spec); + + const std::vector &y_data() const; + class vectors &y_data(const std::vector &y_data); + + const std::vector &x_data() const; + class vectors &x_data(const std::vector &x_data); + + const std::vector &z_data() const; + class vectors &z_data(const std::vector &z_data); + + const std::vector &marker_indices() const; + class vectors & + marker_indices(const std::vector &marker_indices); + + bool use_y2() const; + class vectors &use_y2(bool use_y_2); + + bool impulse() const; + class vectors &impulse(bool impulse); + + bool fill() const; + class vectors &fill(bool fill); + + bool use_y_2() const; + class vectors &use_y_2(bool use_y_2); + + bool polar() const; + class vectors &polar(bool polar); + + bool visible() const; + class vectors &visible(bool visible); + + bool normalize() const; + class vectors &normalize(bool normalize); + + double scale() const; + class vectors &scale(double scale); + + public /* getters and setters bypassing the line_spec */: + float line_width() const; + class vectors &line_width(float line_width); + + enum line_spec::marker_style marker_style() const; + template vectors &marker_style(T marker_style) { + line_spec_.marker_style(marker_style); + return *this; + } + + enum line_spec::marker_style marker() const; + template vectors &marker(T marker) { + line_spec_.marker(marker); + return *this; + } + + float marker_size() const; + class vectors &marker_size(float size); + class vectors &marker_size(const std::vector &size_vector); + class vectors &marker_size(const std::vector &size_vector); + + bool marker_face() const; + class vectors &marker_face(bool size); + + const std::array &color() const; + template vectors &color(T c) { + line_spec().color(c); + return *this; + } + inline class vectors &color(std::initializer_list c) { + line_spec().color(c); + return *this; + } + + const std::array &marker_color() const; + + template vectors &marker_color(T c) { + line_spec().marker_color(c); + return *this; + } + + inline class vectors &marker_color(std::initializer_list c) { + line_spec().marker_color(c); + return *this; + } + + inline class vectors &marker_colors(const std::vector &cs) { + marker_colors_ = cs; + touch(); + return *this; + } + + const std::array &marker_face_color() const; + + template vectors &marker_face_color(T c) { + line_spec().marker_face_color(c); + return *this; + } + + inline class vectors & + marker_face_color(std::initializer_list c) { + line_spec().marker_face_color(c); + return *this; + } + + inline float marker_face_alpha() { + return line_spec().marker_face_alpha(); + } + + inline class vectors &marker_face_alpha(float a) { + line_spec().marker_face_alpha(a); + return *this; + } + + protected: + void maybe_update_line_spec(); + + protected: + /// Line style + class line_spec line_spec_; + + /// Vector origins + std::vector y_data_{}; + std::vector x_data_{}; + std::vector z_data_{}; + + /// Vector components + std::vector u_data_{}; + std::vector v_data_{}; + std::vector w_data_{}; + + /// Vector color mapping values + std::vector c_data_{}; + + /// Positions at which we want markers to appear + std::vector marker_indices_{}; + std::vector marker_sizes_{}; + std::vector marker_colors_{}; + + /// Scale of vectors + double scale_{1}; + + /// Draw line as impulse + bool impulse_{false}; + + /// Draw line as filled area + bool fill_{false}; + + /// Use the y2 xlim + bool use_y2_{false}; + + /// This line is meant for a polar plot + bool polar_{false}; + + /// True if visible + bool visible_{true}; + + /// True if vectors are normalized + bool normalize_{false}; + }; +} // namespace matplot + +#endif // MATPLOTPLUSPLUS_VECTORS_H diff --git a/dependency/x86/third_party/matplotplusplus/1.2.0/include/matplot/backend/backend_interface.h b/dependency/x86/third_party/matplotplusplus/1.2.0/include/matplot/backend/backend_interface.h new file mode 100644 index 00000000..21185211 --- /dev/null +++ b/dependency/x86/third_party/matplotplusplus/1.2.0/include/matplot/backend/backend_interface.h @@ -0,0 +1,222 @@ +// +// Created by Alan Freitas on 26/08/20. +// + +#ifndef MATPLOTPLUSPLUS_BACKEND_INTERFACE_H +#define MATPLOTPLUSPLUS_BACKEND_INTERFACE_H + +#include +#include +#include +#include + +namespace matplot { + class figure_type; + namespace backend { + /// Inherit from this class to create a new backend + /// - Interactive backends show the plots on a window + /// - Non-interactive backends save the plots to a file + /// - The only backend for which we currently provide a + /// concrete implementation is gnuplot pipes. A gnuplot + /// pipe can be an interactive or non-interactive depending + /// on the terminal. + /// - Unfortunately, backends based on gnuplot terminals + /// need to be treated differently because they consume + /// commands rather vertices. It might be technically + /// possible to come up with a workaround to make gnuplot + /// plot each vertex but this is definitely not worth it. + /// - The interface for backends that expect lists of + /// vertices to draw are somewhat inspired in ImGui backends + /// and Matplotlib backends. You can see some examples at: + /// https://github.com/matplotlib/matplotlib/blob/master/src/_backend_agg.h + /// https://github.com/ocornut/imgui/tree/master/examples + /// - If implementing such an interface, the functions + /// for gnuplot pipes should just be ignored. + /// - These are placeholders with no concrete implementation. + /// We still need to define the functions that generate vertices + /// in the classes that inherit from axes_object, and these + /// functions in the interface are likely to change as we + /// need. A good place to start is probably the line object, + /// which is fundamental for most plots. + class MATPLOT_EXPORTS backend_interface { + /// Virtual functions you can override to create any backend + public: + virtual ~backend_interface() noexcept = default; + /// \brief True if backend is in interactive mode + /// One backends might support both interactive and + /// non-interactive mode. + /// For instance, the gnuplot backend can support + /// both modes by changing its terminal. + /// It is also possible to export the OpenGL state + /// as an image with the glReadPixels function. + /// You can combine glReadPixels with CImg + /// to export the image in a variety of formats. + /// To export vector graphics from OpenGL, + /// libraries such as http://www.geuz.org/gl2ps/ + /// can be used. + virtual bool is_interactive(); + + /// \brief If non-interactive, get the file where we should output + /// our data + virtual const std::string &output(); + + /// \brief If non-interactive, get the format in which we should + /// output our data + virtual const std::string &output_format(); + + /// \brief If non-interactive, set the file where we should output + /// our data This function can use the file extension to + /// automatically set the output format + virtual bool output(const std::string &filename); + + /// \brief If non-interactive, set the file and the file format for + /// outputting data + virtual bool output(const std::string &filename, + const std::string &file_format); + + /// Get the current width + /// The user might have changed the image width manually. + /// Matplot++ needs to be aware of that. + virtual unsigned int width(); + + /// \brief Get height + virtual unsigned int height(); + + /// \brief Set width + /// For when the user programmatically sets the width + virtual void width(unsigned int new_width); + + /// \brief Set height + virtual void height(unsigned int new_height); + + /// \brief Get the current position_x (for interactive backends) + /// The user might have changed the image position_x manually. + /// Matplot++ needs to be aware of that. + virtual unsigned int position_x(); + + /// \brief Get position_y (for interactive backends) + virtual unsigned int position_y(); + + /// \brief Set position_x (for interactive backends) + /// For when the user programmatically sets the position_x + virtual void position_x(unsigned int new_position_x); + + /// \brief Set position_y (for interactive backends) + virtual void position_y(unsigned int new_position_y); + + /// \brief Set window title + virtual void window_title(const std::string& title); + + /// \brief Get window title + virtual std::string window_title(); + + /// \brief Tell the backend we are about to draw a new image + /// The backend might reject starting this new image + /// For instance, the user already closed the window + /// and there's no point in feeding commands to the backend + virtual bool new_frame(); + + /// \brief Tell the backend this new image is over + /// The backend is free to plot whatever it's been + /// buffering + /// \return True if everything is ok + virtual bool render_data(); + + /// \brief Tell the backend to wait for user interaction + /// Until then, the backend should block execution if possible + /// Figures use this in the show function + virtual void show(matplot::figure_type *); + + /// \brief True if the user requested to close the window + /// This function allows the backend to send a signal + /// indicating the user has asked to close the window + virtual bool should_close(); + + /// \brief True if the backend supports fonts + /// We can avoid some commands if it doesn't + virtual bool supports_fonts(); + + /// Public functions you need to override to create a new + /// backend based on vertices, such as OpenGL, Agg, etc... + /// These functions are likely to change as we come up + /// with concrete implementations based on vertices. + /// \see + /// https://github.com/matplotlib/matplotlib/blob/master/src/_backend_agg.h + /// \see https://github.com/ocornut/imgui/tree/master/examples + public: + /// \brief Draws background on the image + virtual void draw_background(const std::array &color); + + /// \brief Draws rectangle on the image + virtual void draw_rectangle(const double x1, const double x2, + const double y1, const double y2, + const std::array &color); + + /// \brief Draw a path on the image + /// Many backends will require the path to be floats + /// but Matplot++ words with doubles, so it's up to + /// the backend to implement this conversion however + /// it seems more efficient + virtual void draw_path(const std::vector &x, + const std::vector &y, + const std::array &color); + + /// \brief Draw markers on the image + virtual void draw_markers(const std::vector &x, + const std::vector &y, + const std::vector &z = {}); + + /// \brief Draw text on the image + virtual void draw_text(const std::vector &x, + const std::vector &y, + const std::vector &z = {}); + + /// \brief Draw image matrix on the image + virtual void + draw_image(const std::vector> &x, + const std::vector> &y, + const std::vector> &z = {}); + + /// \brief Draw rectangle on the image + virtual void draw_triangle(const std::vector &x, + const std::vector &y, + const std::vector &z = {}); + + /// We can certainly include more functions here, such as + /// draw_mesh, draw_rectangle, etc... + /// However, these functions should have a default implementation + /// that would recur to more primitive functions. + /// For instance, draw_rectangle should have a default + /// implementation to draw a rectangle based on two calls to + /// draw_triangle (for filled rectangles) or an implementation based + /// on draw_path (for unfilled rectangles). Otherwise, it would be + /// very expensive to start a new backend. These function should be + /// complementary functions that would be used to improve + /// performance on existing backends. + + /// Public functions you need to override only if your backend + /// is based on gnuplot + /// If not, just leave it as it is and the default implementations + /// should do just fine. + public: + /// \brief If true, this backend does not work by consuming vertices + /// Most functions above will be ignored. + /// The figure object will send gnuplot commands to this backend + /// instead of vertices. + /// The default implementation returns false. + virtual bool consumes_gnuplot_commands(); + + /// \brief Send line and newline to gnu plot pipe and flush + /// We can buffer the lines until the end of data is sent + virtual void run_command(const std::string &text); + + /// \brief Include a comment in the gnuplot code + /// This is useful when tracing the gnuplot commands + /// and when generating a gnuplot file. + virtual void include_comment(const std::string &text); + }; // class backend_interface + } // namespace backend + +} // namespace matplot + +#endif // MATPLOTPLUSPLUS_BACKEND_INTERFACE_H diff --git a/dependency/x86/third_party/matplotplusplus/1.2.0/include/matplot/backend/backend_registry.h b/dependency/x86/third_party/matplotplusplus/1.2.0/include/matplot/backend/backend_registry.h new file mode 100644 index 00000000..274e7ac3 --- /dev/null +++ b/dependency/x86/third_party/matplotplusplus/1.2.0/include/matplot/backend/backend_registry.h @@ -0,0 +1,33 @@ +// +// Created by Alan Freitas on 26/08/20. +// + +#ifndef MATPLOTPLUSPLUS_BACKEND_REGISTRY_H +#define MATPLOTPLUSPLUS_BACKEND_REGISTRY_H + +#include +#include +#include +#include + +namespace matplot { + template + std::shared_ptr create_backend(Args&&... args) { + if constexpr (std::is_base_of_v) { + std::shared_ptr dp = std::make_shared(std::forward(args)...); + std::shared_ptr bp = + std::dynamic_pointer_cast(dp); + return bp; + } else { + throw std::invalid_argument( + std::string("The class ") + typeid(BACKEND_TYPE).name() + + " does not derive from backend::backend_interface"); + } + } + + MATPLOT_EXPORTS + std::shared_ptr create_default_backend(); +} // namespace matplot + +#endif // MATPLOTPLUSPLUS_BACKEND_REGISTRY_H diff --git a/dependency/x86/third_party/matplotplusplus/1.2.0/include/matplot/backend/gnuplot.h b/dependency/x86/third_party/matplotplusplus/1.2.0/include/matplot/backend/gnuplot.h new file mode 100644 index 00000000..1060b287 --- /dev/null +++ b/dependency/x86/third_party/matplotplusplus/1.2.0/include/matplot/backend/gnuplot.h @@ -0,0 +1,145 @@ +// +// Created by Alan Freitas on 26/08/20. +// + +#ifndef MATPLOTPLUSPLUS_BACKEND_GNUPLOT_H +#define MATPLOTPLUSPLUS_BACKEND_GNUPLOT_H + +#include +#include +#include +#include +#include +#include + +namespace matplot::backend { + class MATPLOT_EXPORTS gnuplot : public backend_interface { + public: + gnuplot(); + virtual ~gnuplot(); + bool is_interactive() override; + const std::string &output() override; + const std::string &output_format() override; + bool output(const std::string &filename) override; + bool output(const std::string &filename, + const std::string &file_format) override; + unsigned int width() override; + unsigned int height() override; + unsigned int position_x() override; + unsigned int position_y() override; + void position_x(unsigned int new_position_x) override; + void position_y(unsigned int new_position_y) override; + void width(unsigned int new_width) override; + void height(unsigned int new_height) override; + bool new_frame() override; + bool render_data() override; + bool supports_fonts() override; + + public: + bool consumes_gnuplot_commands() override; + void run_command(const std::string &command) override; + void include_comment(const std::string &comment) override; + + public /* gnuplot pipe functions */: + /// We "render the data" by flushing the commands + bool flush_commands(); + + /// Identify the default terminal type in the system + static std::string default_terminal_type(); + static bool terminal_is_available(std::string_view); + static std::tuple gnuplot_version(); + static bool gnuplot_includes_legends(); + static bool gnuplot_has_wall_option(); + static bool gnuplot_supports_keyentry(); + static bool terminal_has_title_option(const std::string &t); + static bool terminal_has_size_option(const std::string &t); + static bool terminal_has_position_option(const std::string &t); + static bool terminal_has_enhanced_option(const std::string &t); + static bool terminal_has_color_option(const std::string &t); + static bool terminal_has_font_option(const std::string &t); + + public: /* gnuplot pipe constexprs */ + // True if the windows persist after closing the program + // False by default because this is VERY annoying in + // some repetitive tasks involving lots of plots + // You can change the default here or run the command + // set terminal "name" persist + static constexpr bool windows_should_persist_by_default = false; + + // True if we should wait at least 5 seconds after the last + // flush to close gnuplot + static constexpr bool dont_let_it_close_too_fast = false; + + // True if we allow to use the mouse interactively in the window + // Most of the time, this is just annoying when we scroll without + // meaning to It is very very hard to use the mouse properly + // http://www.gnuplot.info/files/gpReadMouseTest.c + static constexpr bool allow_using_mouse = true; + +#if defined(MATPLOT_TRACE_GNUPLOT_COMMANDS) && \ + !defined(MATPLOT_BUILD_FOR_DOCUMENTATION_IMAGES) + static constexpr bool trace_commands = true; +#else + static constexpr bool trace_commands = false; +#endif + + static constexpr size_t pipe_capacity_worst_case = BUFSIZ; + /// File formats for figures and properties of terminals + static constexpr std::array< + std::pair, 33> + extension_terminal() { + return std::array, + 33>{ + std::pair{".html", "canvas"}, std::pair{".cgm", "cgm"}, + std::pair{".txt", "dumb"}, std::pair{".md", "dumb"}, + std::pair{".dxf", "dxf"}, std::pair{".emf", "emf"}, + // std::pair{".emtex", "emtex"}, + std::pair{".eps", "postscript"}, std::pair{".eps", "epscairo"}, + std::pair{".eps", "epslatex"}, std::pair{".gif", "gif"}, + std::pair{".hpgl", "hpgl"}, std::pair{".jpeg", "jpeg"}, + std::pair{".jpg", "jpeg"}, std::pair{".tex", "epslatex"}, + std::pair{".mf", "mf"}, std::pair{".mp", "mp"}, + std::pair{".pcl5", "pcl5"}, std::pair{".pdf", "pdf"}, + std::pair{".pdf", "pdfcairo"}, std::pair{".png", "pngcairo"}, + std::pair{".png", "png"}, std::pair{".tex", "pslatex"}, + std::pair{".tex", "context"}, std::pair{".tex", "texdraw"}, + std::pair{".tex", "tikz"}, + // std::pair{".tex", "eepic"}, + // std::pair{".tex", "tpic"}, + std::pair{".pstex", "pstex"}, + std::pair{".pstricks", "pstricks"}, + // std::pair{".qms", "qms"}, + std::pair{".sixel", "sixelgd"}, std::pair{".svg", "svg"}, + std::pair{".tek40xx", "tek40xx"}, + std::pair{".tek410x", "tek410x"}, + // std::pair{".tgif", "tgif"}, + std::pair{".tkcanvas", "tkcanvas"}, + // std::pair{".tpic", "tpic"}, + std::pair{".vttek", "vttek"}}; + } + + private: + // Process pipe to gnuplot + opipe pipe_; + + // How many bytes we put in the pipe + size_t bytes_in_pipe_{0}; + + // Current gnuplot terminal we should + std::string terminal_{"qt"}; + + // Position and size + std::array position_{680, 558, 560, 420}; + + // Time we last flush, to avoid flushing results too fast + std::chrono::high_resolution_clock::time_point last_flush_; + + // File output, if non-interactive + std::string output_{}; + + // Whether we should include comments in the commands + bool include_comments_ = trace_commands; + }; +} // namespace matplot::backend + +#endif // MATPLOTPLUSPLUS_BACKEND_GNUPLOT_H diff --git a/dependency/x86/third_party/matplotplusplus/1.2.0/include/matplot/backend/opengl.h b/dependency/x86/third_party/matplotplusplus/1.2.0/include/matplot/backend/opengl.h new file mode 100644 index 00000000..9ae6c134 --- /dev/null +++ b/dependency/x86/third_party/matplotplusplus/1.2.0/include/matplot/backend/opengl.h @@ -0,0 +1,40 @@ +// +// Created by Alan Freitas on 26/08/20. +// + +#ifndef MATPLOTPLUSPLUS_OPENGL_H +#define MATPLOTPLUSPLUS_OPENGL_H + +#include +#include +#include +#include + +namespace matplot::backend { + class MATPLOT_EXPORTS opengl : public opengl_embed { + public: + opengl(); + ~opengl(); + + public: + bool new_frame() override; + bool render_data() override; + void show(matplot::figure_type *) override; + bool should_close() override; + void window_title(const std::string& title) override; + std::string window_title() override; + + public: + static constexpr unsigned int default_screen_width = 560; + static constexpr unsigned int default_screen_height = 420; + static void initialize_glfw(); + static double get_time(); + private: + GLFWwindow *window_; + std::string window_title_; + std::mutex this_window_in_context_; + static bool glfw_is_initialized; + }; +} // namespace matplot::backend + +#endif // MATPLOTPLUSPLUS_OPENGL_H diff --git a/dependency/x86/third_party/matplotplusplus/1.2.0/include/matplot/backend/opengl_embed.h b/dependency/x86/third_party/matplotplusplus/1.2.0/include/matplot/backend/opengl_embed.h new file mode 100644 index 00000000..56cce9c4 --- /dev/null +++ b/dependency/x86/third_party/matplotplusplus/1.2.0/include/matplot/backend/opengl_embed.h @@ -0,0 +1,112 @@ +// +// Created by Alan Freitas on 26/08/20. +// + +#ifndef MATPLOTPLUSPLUS_OPENGL_EMBED_H +#define MATPLOTPLUSPLUS_OPENGL_EMBED_H + +#include + +#ifdef __APPLE__ +/* Defined before OpenGL and GLUT includes to avoid deprecation messages on + * Apple */ +/* What the hell is Apple thinking? */ +#define GL_SILENCE_DEPRECATION +#endif + +/// Because OpenGL is only really a standard/specification it is up to +/// the driver manufacturer to implement the specification to a driver +/// that the specific graphics card supports. Since there are many +/// different versions of OpenGL drivers, the location of most of its +/// functions is not known at compile-time and needs to be queried at +/// run-time. GLAD is an open source library that manages all that +/// cumbersome work we talked about. +/// \see https://learnopengl.com/Getting-started/Creating-a-window +#include + +/// GLFW gives us the bare necessities required for rendering goodies +/// to the screen. It allows us to create an OpenGL context, define +/// window parameters, and handle user input +/// \see https://learnopengl.com/Getting-started/Creating-a-window +#include + +#include + +namespace matplot::backend { + class MATPLOT_EXPORTS opengl_embed : public backend_interface { + public: + opengl_embed(); + explicit opengl_embed(bool create_shaders); + ~opengl_embed(); + + public: + bool is_interactive() override; + const std::string &output() override; + const std::string &output_format() override; + bool output(const std::string &filename) override; + bool output(const std::string &filename, + const std::string &file_format) override; + unsigned int width() override; + unsigned int height() override; + void width(unsigned int new_width) override; + void height(unsigned int new_height) override; + unsigned int position_x() override; + unsigned int position_y() override; + void position_x(unsigned int new_position_x) override; + void position_y(unsigned int new_position_y) override; + bool new_frame() override; + // This is only a demonstration that is blocking the main thread. + // Because glfw does not work well with multiple threads, + // the challenge is to run the rendering loop in another thread + // while we see this function only to update what should be rendered. + bool render_data() override; + void show(matplot::figure_type *) override; + bool supports_fonts() override; + + public: + void draw_background(const std::array &color) override; + void draw_rectangle(const double x1, const double x2, + const double y1, const double y2, + const std::array &color) override; + void draw_path(const std::vector &x, + const std::vector &y, + const std::array &color) override; + void draw_markers(const std::vector &x, + const std::vector &y, + const std::vector &z = {}) override; + void draw_text(const std::vector &x, + const std::vector &y, + const std::vector &z = {}) override; + void + draw_image(const std::vector> &x, + const std::vector> &y, + const std::vector> &z = {}) override; + void draw_triangle(const std::vector &x, + const std::vector &y, + const std::vector &z = {}) override; + + public: + static constexpr unsigned int default_screen_width = 560; + static constexpr unsigned int default_screen_height = 420; + + /// \brief glfw: whenever the window size changed (by OS or user resize) + /// this callback function executes + static void framebuffer_size_callback(GLFWwindow *window, int width, + int height); + + /// \brief Process all input + /// Query GLFW whether relevant keys are pressed/released + /// this frame and react accordingly + static void process_input(GLFWwindow *window); + + void create_shaders(); + + private: + unsigned int draw_2d_single_color_shader_program_; + int n_vertex_attributes_available_; + unsigned int height_{default_screen_height}; + unsigned int width_{default_screen_width}; + }; +} // namespace matplot::backend + +#endif // MATPLOTPLUSPLUS_OPENGL_EMBED_H diff --git a/dependency/x86/third_party/matplotplusplus/1.2.0/include/matplot/core/axes_object.h b/dependency/x86/third_party/matplotplusplus/1.2.0/include/matplot/core/axes_object.h new file mode 100644 index 00000000..232498c6 --- /dev/null +++ b/dependency/x86/third_party/matplotplusplus/1.2.0/include/matplot/core/axes_object.h @@ -0,0 +1,95 @@ +// +// Created by Alan Freitas on 2020-07-04. +// + +#ifndef MATPLOTPLUSPLUS_CHARTOBJECT_H +#define MATPLOTPLUSPLUS_CHARTOBJECT_H + +#include +#include +#include +#include + +namespace matplot { + class axes_type; + using axes_handle = std::shared_ptr; + + /// Abstract class for the objects we put in the xlim + class MATPLOT_EXPORTS axes_object { + public: + enum class axes_category { + two_dimensional, + three_dimensional, + three_dimensional_map, + polar + }; + + public: + explicit axes_object(class axes_type *parent); + + explicit axes_object(axes_handle parent); + + virtual ~axes_object() = default; + + public: + virtual double xmax(); + virtual double xmin(); + virtual double ymax(); + virtual double ymin(); + virtual double zmax(); + virtual double zmin(); + virtual axes_category axes_category(); + virtual bool requires_colormap(); + virtual std::string tag(); + virtual void tag(std::string_view); + bool is_3d(); + bool is_3d_map(); + bool is_2d(); + bool is_polar(); + + public /* for the backend */: + virtual void run_draw_commands(); + + public /* for gnuplot backend only */: + virtual std::string set_variables_string(); + + // Plot command for this object + virtual std::string plot_string() = 0; + + // Create a legend string for this object + // https://stackoverflow.com/questions/60617211/how-to-put-a-rectangle-in-the-key-with-same-hue-as-a-shaded-area-in-gnuplot/60624922#60624922 + virtual std::string legend_string(std::string_view legend); + + // Take a number of legends from the range [legends_begin, legends_end] + // and advance the legends_begin iterator. + // Objects might want to take care of more than one legend. + // They can overload this method to do that. + // If not, they can just inherit the simple legend_string method. + virtual std::string + legend_string(std::vector::iterator &legends_begin, + std::vector::iterator &legends_end); + + virtual std::string data_string(); + virtual std::string unset_variables_string(); + + public: + const class axes_type *parent() const; + class axes_type *&parent(); + void parent(class axes_type *&parent); + void touch(); + + // Objects might have their own display name + // In this case, we use the display name for legends + // instead of the strings in the legends object + const std::string &display_name() const; + void display_name(std::string_view display_name); + + protected: + std::string tag_{"axes_object"}; + std::string display_name_{""}; + class axes_type *parent_; + }; + +} // namespace matplot + +#endif // MATPLOTPLUSPLUS_CHARTOBJECT_H diff --git a/dependency/x86/third_party/matplotplusplus/1.2.0/include/matplot/core/axes_type.h b/dependency/x86/third_party/matplotplusplus/1.2.0/include/matplot/core/axes_type.h new file mode 100644 index 00000000..caedf10e --- /dev/null +++ b/dependency/x86/third_party/matplotplusplus/1.2.0/include/matplot/core/axes_type.h @@ -0,0 +1,2894 @@ +// +// Created by Alan Freitas on 2020-07-04. +// + +#ifndef MATPLOTPLUSPLUS_AXES_TYPE_H +#define MATPLOTPLUSPLUS_AXES_TYPE_H + +#include + +#include +#include +#include + +#include +#include +#include + +#include +#include +#include +#include + +#include + + + +namespace matplot { + class MATPLOT_EXPORTS axes_type : public std::enable_shared_from_this { + public: + // {left bottom right top} + static constexpr std::array default_subplot_inset{.2f, .18f, + .04f, .1f}; + // {x, y, width, height} + static constexpr std::array default_axes_position{ + .13f, .11f, .775f, .815f}; + + public: + axes_type(); + + explicit axes_type(class figure_type *parent); + + axes_type(class figure_type *parent, std::array position); + + explicit axes_type(figure_handle parent); + + axes_type(figure_handle parent, std::array position); + + virtual ~axes_type() = default; + + public /* functions that operate the axes */: + /// Plot parent figure + void draw(); + + /// Touch parent figure + void touch(); + + /// Put an object in the axes + void emplace_object(axes_object_handle obj); + + /// Put object derived from axes_object_handle in the axes + template void emplace_object(std::shared_ptr obj) { + std::enable_if_t, + axes_object_handle> + ah = std::dynamic_pointer_cast(obj); + emplace_object(ah); + } + + /// Run commands to plot axes on the parent figure + void run_commands(); + void run_draw_commands(); + + /// Run command on the parent figure + void run_command(const std::string &command); + + /// Include a comment on the parent figure (command with #) + void include_comment(const std::string &command); + + /// Check the type of axes + bool is_3d(); + + bool is_3d_map(); + + bool is_2d(); + + bool is_polar(); + + /// Copy clone the axes and put it in another figure + axes_handle copy(figure_handle parent); + + /// Child limits (x_min, x_max, y_min, y_max) + std::array child_limits() const; + + public /* axes limits and axis ratios */: + /// \brief Sets limits on x-axis and y-axis + void axis(const std::array &limits_x_y); + + /// \brief Make axes visible / invisible + void axis(bool v); + + /// \brief Make x/y/z-axis limits automatic + void axis(keyword_automatic_type automatic); + + /// \brief Make x/y/z-axis limits manual + void axis(keyword_manual_type manual); + + /// \brief Reverse y-axis + void axis(keyword_ij_type); + + /// \brief Make x/y-axis ratio = 1 by changing the axis limits + void axis(keyword_equal_type); + + /// \brief Make x/y/z-axis limits tight from x/y/z-min to x/y/z-max + void axis(keyword_tight_type); + + /// \brief Make x/y-axis square with ratio 1 by changing the axes size + void axis(keyword_square_type); + + public /* properties */: + const std::array &position() const; + + void position(const std::array &position); + + float azimuth() const; + + void azimuth(float azimuth); + + float elevation() const; + + void elevation(float elevation); + + std::pair view() const; + + void view(float azimuth, float elevation); + + void rotate(float azimuth, float elevation); + + const float &x_origin() const; + + void x_origin(float x); + + const float &y_origin() const; + + void y_origin(float y); + + const float &width() const; + + void width(float w); + + const float &height() const; + + void height(float h); + + const class axis_type &x_axis() const; + + class axis_type &x_axis(); + + std::array xlim() const; + + void xlim(const std::array &); + + void xlim(keyword_automatic_type); + + void xlim(keyword_manual_type); + + const std::string &xlabel() const; + + void xlabel(std::string_view str); + + const std::string &xtickformat() const; + + void xtickformat(std::string_view str); + + const std::vector &xticks() const; + + void xticks(const std::vector &ticks); + + const std::vector &xticklabels() const; + + void xticklabels(const std::vector &labels); + + void xtickangle(double degrees); + + double xtickangle(); + + const class axis_type &x2_axis() const; + + class axis_type &x2_axis(); + + std::array x2lim() const; + + void x2lim(const std::array &); + + void x2lim(keyword_automatic_type); + + void x2lim(keyword_manual_type); + + const std::string &x2label() const; + + void x2label(std::string_view str); + + const std::string &x2tickformat() const; + + void x2tickformat(std::string_view str); + + const std::vector &x2ticks() const; + + void x2ticks(const std::vector &ticks); + + const std::vector &x2ticklabels() const; + + void x2ticklabels(const std::vector &labels); + + void x2tickangle(double degrees); + + double x2tickangle(); + + const class axis_type &y_axis() const; + + class axis_type &y_axis(); + + std::array ylim() const; + + void ylim(const std::array &); + + void ylim(keyword_automatic_type); + + void ylim(keyword_manual_type); + + const std::string &ylabel() const; + + void ylabel(std::string_view str); + + const std::string &ytickformat() const; + + void ytickformat(std::string_view str); + + const std::vector &yticks() const; + + void yticks(const std::vector &ticks); + + const std::vector &yticklabels() const; + + void yticklabels(const std::vector &labels); + + void ytickangle(double degrees); + + double ytickangle(); + + const class axis_type &y2_axis() const; + + class axis_type &y2_axis(); + + std::array y2lim() const; + + void y2lim(const std::array &); + + void y2lim(keyword_automatic_type); + + void y2lim(keyword_manual_type); + + const std::string &y2label() const; + + void y2label(std::string_view str); + + const std::string &y2tickformat() const; + + void y2tickformat(std::string_view str); + + const std::vector &y2ticks() const; + + void y2ticks(const std::vector &ticks); + + const std::vector &y2ticklabels() const; + + void y2ticklabels(const std::vector &labels); + + void y2tickangle(double degrees); + + double y2tickangle(); + + const class axis_type &z_axis() const; + + class axis_type &z_axis(); + + std::array zlim() const; + + void zlim(const std::array &); + + void zlim(keyword_automatic_type); + + void zlim(keyword_manual_type); + + const std::string &zlabel() const; + + void zlabel(std::string_view str); + + const std::string &ztickformat() const; + + void ztickformat(std::string_view str); + + const std::vector &zticks() const; + + void zticks(const std::vector &ticks); + + const std::vector &zticklabels() const; + + void zticklabels(const std::vector &labels); + + void ztickangle(double degrees); + + double ztickangle(); + + const class axis_type &cb_axis() const; + + class axis_type &cb_axis(); + + std::array cblim() const; + + void cblim(const std::array &); + + void cblim(keyword_automatic_type); + + void cblim(keyword_manual_type); + + const std::string &cblabel() const; + + void cblabel(std::string_view str); + + const std::string &cbtickformat() const; + + void cbtickformat(std::string_view str); + + const std::vector &cbticks() const; + + void cbticks(const std::vector &ticks); + + const std::vector &cbticklabels() const; + + void cbticklabels(const std::vector &labels); + + void cbtickangle(double degrees); + + double cbtickangle(); + + bool cb_vertical() const; + + void cb_vertical(bool cb_vertical); + + bool cb_inside() const; + + void cb_inside(bool cb_inside); + + const std::array &cb_position() const; + + void cb_position(const std::array &cb_position); + + const class axis_type &r_axis() const; + + class axis_type &r_axis(); + + std::array rlim() const; + + void rlim(const std::array &); + + void rlim(keyword_automatic_type); + + void rlim(keyword_manual_type); + + const std::string &rlabel() const; + + void rlabel(std::string_view str); + + const std::string &rtickformat() const; + + void rtickformat(std::string_view str); + + const std::vector &rticks() const; + + void rticks(const std::vector &ticks); + + const std::vector &rticklabels() const; + + void rticklabels(const std::vector &labels); + + void rtickangle(double degrees); + + double rtickangle(); + + const class axis_type &t_axis() const; + + class axis_type &t_axis(); + + std::array tlim() const; + + void tlim(const std::array &); + + void tlim(keyword_automatic_type); + + void tlim(keyword_manual_type); + + void t_axis(const class axis_type &t_axis); + + bool title_visible() const; + + void title_visible(bool title_visible); + + bool visible() const; + + void visible(bool visible); + + void limits_mode(keyword_automatic_type automatic); + + void limits_mode(keyword_manual_type manual); + + void limits_mode_automatic(bool automatic); + + bool limits_mode_automatic() const; + + void limits_mode_manual(bool automatic); + + bool limits_mode_manual() const; + + const std::string &title() const; + + void title(std::string_view title); + + bool title_enhanced() const; + + void title_enhanced(bool title_enhanced); + + bool axes_aspect_ratio_auto() const; + + void axes_aspect_ratio_auto(bool axes_aspect_ratio_auto); + + float axes_aspect_ratio() const; + + void axes_aspect_ratio(float x); + + const std::string &font() const; + + void font(std::string_view font); + + float font_size() const; + + void font_size(float font_size); + + const std::string &font_weight() const; + + void font_weight(std::string_view font_weight); + + bool clipping() const; + + void clipping(bool clipping); + + float label_font_size_multiplier() const; + + void label_font_size_multiplier(float label_font_size_multiplier); + + float title_font_size_multiplier() const; + + void title_font_size_multiplier(float title_font_size_multiplier); + + const std::string &title_font_weight() const; + + void title_font_weight(std::string_view title_font_weight); + + const color_array &title_color() const; + + void title_color(const color_array &title_color); + + const color_array &color() const; + + void color(const color_array &color); + + void color(const std::array &color); + + void color(std::string_view c); + + void color(const enum color &c); + + const std::vector &colororder() const; + + void colororder(const std::vector &colororder); + + template void colororder(const std::vector &order) { + std::vector cs; + for (const auto &c : order) { + cs.emplace_back(to_array(c)); + } + colororder(cs); + } + + size_t colororder_index() const; + + void colororder_index(size_t colororder_index); + + void bump_colororder_index(); + + color_array get_color_and_bump(); + + const color_array grid_color() const; + + void grid_color(const color_array &grid_color); + + float grid_alpha() const; + + void grid_alpha(float grid_alpha); + + bool handle_visibility() const; + + void handle_visibility(bool handle_visibility); + + float minor_grid_alpha() const; + + void minor_grid_alpha(float minor_grid_alpha); + + bool minor_grid_alpha_mode() const; + + void minor_grid_alpha_mode(bool minor_grid_alpha_mode); + + const color_array minor_grid_color() const; + + void minor_grid_color(const color_array &minor_grid_color); + + line_spec minor_grid_line_style() const; + + void minor_grid_line_style(line_spec minor_grid_line_style); + + bool grid() const; + + void grid(bool grid); + + bool minor_grid() const; + + void minor_grid(bool minor_grid); + + bool x_grid() const; + + void x_grid(bool x_grid); + + bool x_minor_grid() const; + + void x_minor_grid(bool x_minor_grid); + + bool y_grid() const; + + void y_grid(bool y_grid); + + bool y_minor_grid() const; + + void y_minor_grid(bool y_minor_grid); + + bool z_grid() const; + + void z_grid(bool z_grid); + + bool z_minor_grid() const; + + void z_minor_grid(bool z_minor_grid); + + bool r_grid() const; + + void r_grid(bool r_grid); + + bool r_minor_grid() const; + + void r_minor_grid(bool r_minor_grid); + + line_spec grid_line_style() const; + + void grid_line_style(line_spec grid_line_style); + + const std::string &line_style_order() const; + + void line_style_order(std::string_view line_style_order); + + size_t line_style_order_index() const; + + void line_style_order_index(size_t line_style_order_index); + + float line_width() const; + + void line_width(float line_width); + + bool next_plot_replace() const; + + void next_plot_replace(bool next_plot_replace); + + bool hold() const; + + void hold(bool v); + + const std::vector> &children() const; + + void + children(const std::vector> &children); + + void clear(); + + const legend_handle &legend() const; + + void legend(const legend_handle &legend); + + void legend(const std::vector &names); + + bool box() const; + + void box(bool box); + + bool box_full() const; + + void box_full(bool box); + + const std::vector> &colormap() const; + + void colormap(const std::vector> &colormap); + + color_array colormap_interpolation(double value, double min, + double max); + + size_t max_colors() const; + + void max_colors(size_t max_colors); + + bool color_box() const; + + void color_box(bool color_box); + + const std::pair color_box_range() const; + + void color_box_range(const std::pair &color_box_range); + + void color_box_range(double cb_min, double cb_max); + + bool color_box_log_scale() const; + + void color_box_log_scale(bool color_box_log_scale); + + bool grid_front() const; + + void grid_front(bool grid_front); + + const class figure_type *parent() const; + + class figure_type *parent(); + + void parent(class figure_type *); + + public /* create plots on the axes */: + /// Create simple line plot + line_handle plot(const std::vector &x, + const std::vector &y, + std::string_view line_spec = ""); + + /// Create line plot with automatic x = 1,2,...,n + line_handle plot(const std::vector &y, + std::string_view line_spec = ""); + + /// \brief Create many line plots at once with parameter pack + /// First two parameters are always 1) x and y or 2) y and line spec + /// If first two parameters are x and y, third parameter might be: + /// 1a) the line spec or 1b) the x2 for the next plot + /// If first two parameters are y and line spec, third parameter might + /// be: + /// 2a) the x2 for next plot (case 1 for next plot) or + /// 2b) the y for next plot (case 2 for next plot) + /// This function represents the case 1a, where 3rd parameter line spec + /// is a divider between plots + template + auto plot(const std::vector &x, const std::vector &y, + std::string_view line_spec, Args &&...args) { + std::vector result; + std::vector result_a = + vectorize(this->plot(x, y, line_spec)); + bool p = this->next_plot_replace(); + this->next_plot_replace(false); + std::vector result_b = + vectorize(this->plot(std::forward(args)...)); + this->next_plot_replace(p); + result.insert(result.end(), result_a.begin(), result_a.end()); + result.insert(result.end(), result_b.begin(), result_b.end()); + return result; + } + + /// \brief Create many line plots at once with parameter pack + /// First two parameters are always 1) x and y or 2) y and line spec + /// If first two parameters are x and y, third parameter might be: + /// 1a) the line spec or 1b) the x2 for the next plot + /// If first two parameters are y and line spec, third parameter might + /// be: + /// 2a) the x2 for next plot (case 1 for next plot) or + /// 2b) the y for next plot (case 2 for next plot) + /// This function represents the case 1b, where 3rd parameter x2 is a + /// divider between plots + template + auto plot(const std::vector &x, const std::vector &y, + const std::vector &x2, Args &&...args) { + std::vector result; + std::vector result_a = vectorize(this->plot(x, y)); + bool p = this->next_plot_replace(); + this->next_plot_replace(false); + std::vector result_b = + vectorize(this->plot(x2, std::forward(args)...)); + this->next_plot_replace(p); + result.insert(result.end(), result_a.begin(), result_a.end()); + result.insert(result.end(), result_b.begin(), result_b.end()); + return result; + } + + /// \brief Create many line plots at once with parameter pack + /// First two parameters are always 1) x and y or 2) y and line spec + /// If first two parameters are x and y, third parameter might be: + /// 1a) the line spec or 1b) the x2 for the next plot + /// If first two parameters are y and line spec, third parameter might + /// be: + /// 2a) the x2 for next plot (case 1 for next plot) or + /// 2b) the y for next plot (case 2 for next plot) + /// This function represents the case 2, where 2nd parameter line spec + /// is a divider between plots + template + auto plot(const std::vector &y, std::string_view line_spec, + Args &&...args) { + std::vector result; + std::vector result_a = + vectorize(this->plot(y, line_spec)); + bool p = this->next_plot_replace(); + this->next_plot_replace(false); + std::vector result_b = + vectorize(this->plot(std::forward(args)...)); + this->next_plot_replace(p); + result.insert(result.end(), result_a.begin(), result_a.end()); + result.insert(result.end(), result_b.begin(), result_b.end()); + return result; + } + + /// Plot lists of lists + std::vector plot(const std::vector &x, + const std::vector> &Y, + std::string_view line_spec = ""); + + /// Plot lists of lists with automatic x + std::vector plot(const std::vector> &Y, + std::string_view line_spec = ""); + + /// Plot lines representing a colormap + std::vector + rgbplot(const std::vector> &colormap); + + /// Plot 3d line plot + line_handle plot3(const std::vector &x, + const std::vector &y, + const std::vector &z, + std::string_view line_spec = ""); + + /// Plot 3d line plot - lists of Xs and Ys + std::vector + plot3(const std::vector> &X, + const std::vector> &Y, + const std::vector &z, std::string_view line_spec = ""); + + /// 3d-plot lists of Xs, Ys, and Zs + std::vector + plot3(const std::vector> &X, + const std::vector> &Y, + const std::vector> &Z, + std::string_view line_spec = ""); + + /// \brief Create many 3d line plots at once with parameter pack + /// The logic is the analogous to the plot function: + /// Case 1a: x, y, z, line_spec, next_x, ... + /// Case 1b: x, y, z, next_x, ... + /// Case 2: z, line_spec, next_x, ... + /// This function represents case 1a + template + auto plot3(const std::vector &x, const std::vector &y, + const std::vector &z, std::string_view line_spec, + Args &&...args) { + std::vector result; + std::vector result_a = + vectorize(this->plot3(x, y, z, line_spec)); + bool p = this->next_plot_replace(); + this->next_plot_replace(false); + std::vector result_b = + vectorize(this->plot3(std::forward(args)...)); + this->next_plot_replace(p); + result.insert(result.end(), result_a.begin(), result_a.end()); + result.insert(result.end(), result_b.begin(), result_b.end()); + return result; + } + + /// \brief Create many 3d line plots at once with parameter pack + /// The logic is the analogous to the plot function: + /// Case 1a: x, y, z, line_spec, next_x, ... + /// Case 1b: x, y, z, next_x, ... + /// Case 2: z, line_spec, next_x, ... + /// This function represents case 1b + template + auto plot3(const std::vector &x, const std::vector &y, + const std::vector &z, const std::vector &x2, + Args &&...args) { + std::vector result; + std::vector result_a = vectorize(this->plot3(x, y, z)); + bool p = this->next_plot_replace(); + this->next_plot_replace(false); + std::vector result_b = + vectorize(this->plot3(x2, std::forward(args)...)); + this->next_plot_replace(p); + result.insert(result.end(), result_a.begin(), result_a.end()); + result.insert(result.end(), result_b.begin(), result_b.end()); + return result; + } + + /// Create stairs line plot + stair_handle stairs(const std::vector &x, + const std::vector &y, + std::string_view line_spec = ""); + + /// Basic stairs function with automatic x + stair_handle stairs(const std::vector &y, + std::string_view line_spec = ""); + + /// Stairs with lists of lists (same x for all Y) + std::vector + stairs(const std::vector &x, + const std::vector> &Y, + std::string_view line_spec = ""); + + /// Stairs with lists of lists (one X per Y) + std::vector + stairs(const std::vector> &X, + const std::vector> &Y, + std::string_view line_spec = ""); + + /// Stairs with lists of lists with automatic x + std::vector + stairs(const std::vector> &Y, + std::string_view line_spec = ""); + + /// \brief Create many stairs at once with parameter pack + /// The logic is analogous to the plot function: + /// Case 1a: x, y, line_spec, next_x + /// Case 1b: x, y, next_x + /// Case 2 : y, line_spec, next_x + /// This function represents case 1a + template + auto stairs(const std::vector &x, const std::vector &y, + std::string_view line_spec, Args &&...args) { + std::vector result; + std::vector result_a = + vectorize(this->stairs(x, y, line_spec)); + bool p = this->next_plot_replace(); + this->next_plot_replace(false); + std::vector result_b = + vectorize(this->stairs(std::forward(args)...)); + this->next_plot_replace(p); + result.insert(result.end(), result_a.begin(), result_a.end()); + result.insert(result.end(), result_b.begin(), result_b.end()); + return result; + } + + /// \brief Create many stairs at once with parameter pack + /// The logic is analogous to the plot function: + /// Case 1a: x, y, line_spec, next_x + /// Case 1b: x, y, next_x + /// Case 2 : y, line_spec, next_x + /// This function represents case 1b + template + auto stairs(const std::vector &x, const std::vector &y, + const std::vector &x2, Args &&...args) { + std::vector result; + std::vector result_a = vectorize(this->stairs(x, y)); + bool p = this->next_plot_replace(); + this->next_plot_replace(false); + std::vector result_b = + vectorize(this->stairs(x2, std::forward(args)...)); + this->next_plot_replace(p); + result.insert(result.end(), result_a.begin(), result_a.end()); + result.insert(result.end(), result_b.begin(), result_b.end()); + return result; + } + + /// \brief Create many stairs at once with parameter pack + /// The logic is analogous to the plot function: + /// Case 1a: x, y, line_spec, next_x + /// Case 1b: x, y, next_x + /// Case 2 : y, line_spec, next_x + /// This function represents case 2 + template + auto stairs(const std::vector &y, std::string_view line_spec, + Args &&...args) { + std::vector result; + std::vector result_a = + vectorize(this->stairs(y, line_spec)); + bool p = this->next_plot_replace(); + this->next_plot_replace(false); + std::vector result_b = + vectorize(this->stairs(std::forward(args)...)); + this->next_plot_replace(p); + result.insert(result.end(), result_a.begin(), result_a.end()); + result.insert(result.end(), result_b.begin(), result_b.end()); + return result; + } + + /// Core errorbar function + error_bar_handle + errorbar(const std::vector &x, const std::vector &y, + const std::vector &error, + error_bar::type type = error_bar::type::vertical, + std::string_view line_spec = ""); + + /// Core errorbar function with different values on both directions + error_bar_handle errorbar(const std::vector &x, + const std::vector &y, + const std::vector &y_neg_delta, + const std::vector &y_pos_delta, + const std::vector &x_neg_delta, + const std::vector &x_pos_delta, + std::string_view line_spec = ""); + + /// If there is a string instead of a type the first version, we default + /// to vertical + error_bar_handle errorbar(const std::vector &x, + const std::vector &y, + const std::vector &y_error, + std::string_view line_spec); + + /// Core area function (x is a vector, y is a matrix) + std::vector + area(const std::vector &x, + const std::vector> &Y, double base_value = 0., + bool stacked = true, std::string_view line_spec = "k-"); + + /// Area: x is a vector, y is a vector + filled_area_handle area(const std::vector &x, + const std::vector &y, + double base_value = 0., bool stacked = true, + std::string_view line_spec = "k-"); + + /// Area: Automatic x, y is a matrix + std::vector + area(const std::vector> &Y, double base_value = 0., + bool stacked = true, std::string_view line_spec = "k-"); + + /// Area: Skip the base value + std::vector + area(const std::vector> &Y, bool stacked, + std::string_view line_spec = "k-"); + + /// Area: Automatic x, y is a vector + filled_area_handle area(const std::vector &y, + double base_value = 0., bool stacked = true, + std::string_view line_spec = "k-"); + + /// String function line plot + string_function_handle fplot(std::string_view equation, + std::string_view line_spec = ""); + + /// String function line plots + std::vector + fplot(std::vector equations, + std::vector line_specs = {}); + + /// Lambda function line plot + function_line_handle fplot(function_line::function_type equation, + const std::array &x_range = {-5, + 5}, + std::string_view line_spec = ""); + + /// Lambda function line plot - automatic limits + function_line_handle fplot(function_line::function_type equation, + std::string_view line_spec); + + /// Lambda function line plot - two functions (x/y) + function_line_handle fplot(function_line::function_type function_x, + function_line::function_type function_y, + const std::array &t_range = {-5, + 5}, + std::string_view line_spec = ""); + + /// Lambda function line plot - list of functions + std::vector + fplot(const std::vector &equations, + const std::array &x_range = {-5, 5}, + const std::vector &line_specs = {}); + + /// Lambda function line plot - list of functions and line specs + std::vector + fplot(const std::vector &equations, + const std::vector &x_range, + const std::vector &line_specs = {}); + + using implicit_function_type = std::function; + + /// Implicit lambda function line plot (one-level={0} contour) + line_handle + fimplicit(implicit_function_type equation, + const std::array &xy_interval = {-5, 5, -5, 5}, + std::string_view line_spec = ""); + + /// Implicit lambda function line plot - automatic xy_interval + line_handle fimplicit(implicit_function_type equation, + std::string_view line_spec); + + /// Lambda function plot 3D + function_line_handle fplot3(function_line::function_type function_x, + function_line::function_type function_y, + function_line::function_type function_z, + const std::array &t_range = {-5, + 5}, + std::string_view line_spec = ""); + + /// Histogram - Choose binning algorithm and normalization algorithm + histogram_handle hist(const std::vector &data, + histogram::binning_algorithm algorithm = + histogram::binning_algorithm::automatic, + enum histogram::normalization normalization_alg = + histogram::normalization::count); + + /// Histogram - Fixed number of bins + /// If n_bins = 0, automatic number of bins + histogram_handle hist(const std::vector &data, size_t n_bins); + + /// Histogram - Fixed edges + histogram_handle hist(const std::vector &data, + const std::vector &edges); + + /// Histogram - Normalization algorithm + histogram_handle hist(const std::vector &data, + enum histogram::normalization normalization_alg); + + /// Histogram - Categorical histogram from strings + histogram_handle hist(const std::vector &data, + enum histogram::normalization normalization_alg = + histogram::normalization::count); + + /// Core binscatter function for a given set of edges + /// This function returns a generic axes_object_handle because + /// it might be a scatter plot or a histogram plot + axes_object_handle binscatter( + const std::vector &x, const std::vector &y, + const std::vector &edges_x, + const std::vector &edges_y, + enum bin_scatter_style scatter_style = bin_scatter_style::automatic, + enum histogram::normalization normalization_alg = + histogram::normalization::count); + + /// Binscatter for a given algorithm + axes_object_handle binscatter( + const std::vector &x, const std::vector &y, + histogram::binning_algorithm algorithm = + histogram::binning_algorithm::automatic, + enum bin_scatter_style scatter_style = bin_scatter_style::automatic, + enum histogram::normalization normalization_alg = + histogram::normalization::count); + + /// Binscatter for a given bin scatter style + axes_object_handle + binscatter(const std::vector &x, const std::vector &y, + enum bin_scatter_style scatter_style, + histogram::binning_algorithm algorithm = + histogram::binning_algorithm::automatic, + enum histogram::normalization normalization_alg = + histogram::normalization::count); + + /// Binscatter for a given number of bins + axes_object_handle binscatter( + const std::vector &x, const std::vector &y, + size_t nbins_x, size_t nbins_y, + enum bin_scatter_style scatter_style = bin_scatter_style::automatic, + enum histogram::normalization normalization_alg = + histogram::normalization::count); + + /// Create boxplot from vector 1d + box_chart_handle boxplot(const std::vector &data); + + /// Create boxplot from vector 2d + box_chart_handle boxplot(const std::vector> &data); + + /// Create boxplot with groups + box_chart_handle boxplot(const std::vector &data, + const std::vector &groups); + + /// Create boxplot with group strings + box_chart_handle boxplot(const std::vector &y_data, + const std::vector &groups); + + /// Core bar function + bars_handle bar(const std::vector &x, + const std::vector &y); + + /// Bar - Automatic x + bars_handle bar(const std::vector &y); + + /// Bar - Many Y at once, automatic X + bars_handle bar(const std::vector> &Y); + + /// Bar - One X, many Y + bars_handle bar(const std::vector &x, + const std::vector> &Y); + + /// Bar - Automatic x - Custom width + bars_handle bar(const std::vector &y, double width); + + /// Bar stacked - Many Y - Automatic x + std::vector + barstacked(const std::vector> &Y); + + /// Bar stacked - One x - Many Y + std::vector + barstacked(const std::vector &x, + const std::vector> &Y); + + /// Core heatmap function + matrix_handle heatmap(const std::vector> &m); + + /// Pseudocolor plot + matrix_handle pcolor(const std::vector> &m); + + /// Core parallel plot function + parallel_lines_handle + parallelplot(const std::vector> &X, + const std::vector &colors, + std::string_view line_spec = ""); + + /// Parallel plot - default line colors + parallel_lines_handle + parallelplot(const std::vector> &X, + std::string_view line_spec = ""); + + /// Core pie function with explode values and labels + circles_handle pie(const std::vector &x, + const std::vector &explode = {}, + const std::vector &labels = {}); + + /// Pie function with labels + circles_handle pie(const std::vector &x, + const std::vector &labels); + + /// Core scatter function + line_handle scatter(const std::vector &x, + const std::vector &y, + const std::vector &sizes = {}, + const std::vector &colors = {}); + + /// Scatter function with same size for all points + line_handle scatter(const std::vector &x, + const std::vector &y, double sizes, + const std::vector &colors = {}); + + /// Core scatter3 function + line_handle scatter3(const std::vector &x, + const std::vector &y, + const std::vector &z, + const std::vector &sizes = {}, + const std::vector &colors = {}, + std::string_view line_spec = "o"); + + /// Scatter3 - Default sizes and colors + line_handle scatter3(const std::vector &x, + const std::vector &y, + const std::vector &z, + std::string_view line_spec); + + /// Core wordcloud function - Wordcloud from words + labels_handle wordcloud(const std::vector &words, + const std::vector &sizes, + const std::vector &custom_colors = {}); + + /// Wordcloud function - Sizes as size_t + labels_handle wordcloud(const std::vector &words, + const std::vector &sizes, + const std::vector &custom_colors = {}); + + /// Wordcloud from text + labels_handle + wordcloud(std::string_view text, + const std::vector &black_list, + std::string_view delimiters = " ',\n\r\t\".!?:;", + size_t max_cloud_size = 100, + const std::vector &custom_colors = {}); + + /// Core pareto function + std::pair + pareto(const std::vector &y, + const std::vector &names = {}, + double p_threshold = 0.95, size_t item_threshold = 10); + + /// Core plot function + line_handle stem(const std::vector &x, + const std::vector &y, + std::string_view line_spec = "-o"); + + /// Basic plot function with automatic x + line_handle stem(const std::vector &y, + std::string_view line_spec = "-o"); + + /// Stem - Plot lists of lists + std::vector stem(const std::vector &x, + const std::vector> &Y, + std::string_view line_spec = "-o"); + + /// Plot lists of lists with automatic x + std::vector stem(const std::vector> &Y, + std::string_view line_spec = "-o"); + + /// Stem 3d - Core function + line_handle stem3(const std::vector &x, + const std::vector &y, + const std::vector &z, + std::string_view line_spec = "-o"); + + /// 3d-stem lists of Xs and Ys + std::vector + stem3(const std::vector> &X, + const std::vector> &Y, + const std::vector &z, std::string_view line_spec = "-o"); + + /// Stem 3d - Automatic x and y + line_handle stem3(const std::vector &z, + std::string_view line_spec = "-o"); + + /// Stem 3d - Automatic x and y - Many Zs + line_handle stem3(const std::vector> &Z, + std::string_view line_spec = "-o"); + + /// Core geoplot function + circles_handle geobubble(const std::vector &latitude, + const std::vector &longitude, + const std::vector &sizes = {}, + const std::vector &colors = {}); + + /// Core geoplot function + line_handle geodensityplot(const std::vector &latitude, + const std::vector &longitude, + const std::vector &weights = {}); + + /// Plot world map on the axes + line_handle geoplot(); + + /// Core geoplot function - Plot lines on world map + line_handle geoplot(const std::vector &latitude, + const std::vector &longitude, + std::string_view line_spec = ""); + + /// Adjust limits and reload that region of the world map in the proper + /// resolution + void geolimits(const std::array &latitude, + const std::array &longitude); + + /// Adjust limits and reload that region of the world map in the proper + /// resolution + void geolimits(double latitude_min, double latitude_max, + double longitude_min, double longitude_max); + + /// Adjust limits and reload that region of the world map in the proper + /// resolution + void geolimits(const std::vector &latitude, + const std::vector &longitude); + + /// Core geoscatter function + line_handle geoscatter(const std::vector &latitude, + const std::vector &longitude, + const std::vector &sizes = {}, + const std::vector &colors = {}); + + /// Compass plot function + vectors_handle compass(const std::vector &x, + const std::vector &y, + std::string_view line_spec = ""); + + /// Ezpolar - Plot function on polar plot + string_function_handle ezpolar(std::string_view equation, + std::string_view line_spec = ""); + + std::vector + ezpolar(std::vector equations, + std::vector line_specs); + + function_line_handle ezpolar(function_line::function_type equation, + const std::array &t_range, + std::string_view line_spec = ""); + + function_line_handle ezpolar(function_line::function_type equation, + std::string_view line_spec = ""); + + function_line_handle ezpolar(function_line::function_type equation, + std::vector x_range, + std::string_view line_spec = ""); + + function_line_handle ezpolar(function_line::function_type function_x, + function_line::function_type function_y, + const std::array &t_range, + std::string_view line_spec = ""); + + function_line_handle ezpolar(function_line::function_type function_x, + function_line::function_type function_y, + std::vector t_range, + std::string_view line_spec = ""); + + std::vector + ezpolar(std::vector equations, + std::array x_range, + std::vector line_specs); + + std::vector + ezpolar(std::vector equations, + std::vector x_range, + std::vector line_specs); + + /// Polar histogram - Core function + histogram_handle polarhistogram(const std::vector &theta, + size_t nbins); + + /// Polar plot - Core function + line_handle polarplot(const std::vector &theta, + const std::vector &rho, + std::string_view line_spec = ""); + + /// Polar plot - Automatic theta + line_handle polarplot(const std::vector &rho, + std::string_view line_spec = ""); + + /// Polar plot - Complex numbers + line_handle polarplot(const std::vector> &z, + std::string_view line_spec = "*"); + + /// Polar scatter - Core function + line_handle + polarscatter(const std::vector &theta, + const std::vector &rho, + const std::vector &sizes = std::vector{}, + const std::vector &colors = std::vector{}, + std::string_view line_spec = "o"); + + /// Polar scatter - Single size - Default colors + line_handle polarscatter(const std::vector &theta, + const std::vector &rho, double size, + std::string_view line_spec = "o"); + + /// Polar scatter - Default size and colors + line_handle polarscatter(const std::vector &theta, + const std::vector &rho, + std::string_view line_spec); + + /// Contour - Core function - Manual levels + contours_handle contour(const std::vector> &X, + const std::vector> &Y, + const std::vector> &Z, + std::vector levels, + std::string_view line_spec = "", + size_t n_levels = 0); + + /// Contour - Manual number of levels (or 0 for automatic number of + /// levels) + contours_handle contour(const std::vector> &X, + const std::vector> &Y, + const std::vector> &Z, + size_t n_levels = 0, + std::string_view line_spec = ""); + + /// Contour - Automatic levels and number of levels + contours_handle contour(const std::vector> &X, + const std::vector> &Y, + const std::vector> &Z, + std::string_view line_spec); + + /// Contour filled - Manual levels + contours_handle contourf(const std::vector> &X, + const std::vector> &Y, + const std::vector> &Z, + std::vector levels, + std::string_view line_spec = "", + size_t n_levels = 0); + + /// Contour filled - Manual number of levels + contours_handle contourf(const std::vector> &X, + const std::vector> &Y, + const std::vector> &Z, + size_t n_levels = 0, + std::string_view line_spec = ""); + + /// Contour filled - Automatic number of levels + contours_handle contourf(const std::vector> &X, + const std::vector> &Y, + const std::vector> &Z, + std::string_view line_spec); + + using fcontour_function_type = std::function; + + /// Lambda function contour - Manual levels (or empty list for + /// automatic) / Manual number of levels (or 0 for automatic) + contours_handle fcontour(fcontour_function_type fn, + const std::array &xy_range, + std::vector levels = {}, + std::string_view line_spec = "", + size_t n_levels = 0); + + /// Lambda function contour - Manual number of levels (default = 9) + contours_handle fcontour(fcontour_function_type fn, size_t n_levels = 9, + std::string_view line_spec = ""); + + /// Lambda function contour - Automatic number of levels and levels + contours_handle fcontour(fcontour_function_type fn, + std::string_view line_spec); + + /// Feather - Core function + vectors_handle feather(const std::vector &u, + const std::vector &v, + std::string_view line_spec = ""); + + /// Quiver - Core function + vectors_handle quiver(const std::vector &x, + const std::vector &y, + const std::vector &u, + const std::vector &v, + const std::vector &c, double scale = 1.0, + std::string_view line_spec = ""); + + /// Quiver - 2d x,y,u,v + vectors_handle quiver(const std::vector> &x, + const std::vector> &y, + const std::vector> &u, + const std::vector> &v, + const std::vector> &c, + double scale = 1.0, + std::string_view line_spec = ""); + + /// Quiver - 2d x,y,u,v with no color mapping + vectors_handle quiver(const std::vector> &x, + const std::vector> &y, + const std::vector> &u, + const std::vector> &v, + double scale = 1.0, + std::string_view line_spec = ""); + + /// Quiver - x,y,u,v with no color mapping + vectors_handle quiver(const std::vector &x, + const std::vector &y, + const std::vector &u, + const std::vector &v, double scale = 1.0, + std::string_view line_spec = ""); + + /// Quiver 3d - Core function + vectors_handle + quiver3(const std::vector &x, const std::vector &y, + const std::vector &z, const std::vector &u, + const std::vector &v, const std::vector &w, + const std::vector &c, double scale = 1.0, + std::string_view line_spec = ""); + + /// Quiver 3d - 2d vectors + vectors_handle quiver3(const std::vector> &x, + const std::vector> &y, + const std::vector> &z, + const std::vector> &u, + const std::vector> &v, + const std::vector> &w, + const std::vector> &c, + double scale = 1.0, + std::string_view line_spec = ""); + + /// Quiver 3d - 2d vectors no color mapping + vectors_handle quiver3(const std::vector> &x, + const std::vector> &y, + const std::vector> &z, + const std::vector> &u, + const std::vector> &v, + const std::vector> &w, + double scale = 1.0, + std::string_view line_spec = ""); + + /// Quiver 3d - Automatic x and y - 2d vectors + vectors_handle quiver3(const std::vector> &z, + const std::vector> &u, + const std::vector> &v, + const std::vector> &w, + const std::vector> &c, + double scale = 1.0, + std::string_view line_spec = ""); + + /// Quiver 3d - Automatic x and y - 2d vectors no color mapping + vectors_handle quiver3(const std::vector> &z, + const std::vector> &u, + const std::vector> &v, + const std::vector> &w, + double scale = 1.0, + std::string_view line_spec = ""); + + /// Quiver 3d - no color mapping + vectors_handle + quiver3(const std::vector &x, const std::vector &y, + const std::vector &z, const std::vector &u, + const std::vector &v, const std::vector &w, + double scale = 1.0, std::string_view line_spec = ""); + + /// Fence - Core function + surface_handle fence(const std::vector> &X, + const std::vector> &Y, + const std::vector> &Z, + const std::vector &c = {}); + + // z = f(x,y) + using fmesh_function_type = std::function; + + /// Lambda function mesh - Core function + surface_handle fmesh(fcontour_function_type fn, + const std::array &x_range, + const std::array &y_range, + double mesh_density = 40); + + /// Lambda function mesh - parametric function + surface_handle + fmesh(fcontour_function_type funx, fcontour_function_type funy, + fcontour_function_type funz, const std::array &u_range, + const std::array &v_range, double mesh_density = 40); + + /// Lambda function mesh + /// Grid / Both ranges in the same array size 4 + surface_handle fmesh(fcontour_function_type fn, + const std::array &xy_range, + double mesh_density = 40); + + /// Lambda function mesh - Parametric + /// Parametric / Both ranges in the same array size 4 + surface_handle fmesh(fcontour_function_type funx, + fcontour_function_type funy, + fcontour_function_type funz, + const std::array &uv_range, + double mesh_density = 40); + + /// Function mesh + /// Grid / Both ranges in the same array size 2 + surface_handle fmesh(fcontour_function_type fn, + const std::array &xy_range = {-5, +5}, + double mesh_density = 40); + + /// Function mesh + /// Parametric / Both ranges in the same array size 2 + surface_handle fmesh(fcontour_function_type funx, + fcontour_function_type funy, + fcontour_function_type funz, + const std::array &uv_range = {-5, +5}, + double mesh_density = 40); + + // z = f(x,y) + using fsurf_function_type = std::function; + + /// Function surf - Core function + surface_handle fsurf(fcontour_function_type fn, + const std::array &x_range, + const std::array &y_range, + std::string_view line_spec = "", + double mesh_density = 40); + + /// Function surf - Parametric + surface_handle + fsurf(fcontour_function_type funx, fcontour_function_type funy, + fcontour_function_type funz, const std::array &u_range, + const std::array &v_range, + std::string_view line_spec = "", double mesh_density = 40); + + /// Function surf + /// Grid / Both ranges in the same array size 4 + surface_handle fsurf(fcontour_function_type fn, + const std::array &xy_range, + std::string_view line_spec = "", + double mesh_density = 40); + + /// Parametric / Both ranges in the same array size 4 + surface_handle fsurf(fcontour_function_type funx, + fcontour_function_type funy, + fcontour_function_type funz, + const std::array &uv_range, + std::string_view line_spec = "", + double mesh_density = 40); + + /// Function surf + /// Grid / Both ranges in the same array size 2 + surface_handle fsurf(fcontour_function_type fn, + const std::array &xy_range = {-5, +5}, + std::string_view line_spec = "", + double mesh_density = 40); + + /// Function surf + /// Parametric / Both ranges in the same array size 2 + surface_handle fsurf(fcontour_function_type funx, + fcontour_function_type funy, + fcontour_function_type funz, + const std::array &uv_range = {-5, +5}, + std::string_view line_spec = "", + double mesh_density = 40); + + /// Function surf + /// Grid / Both ranges in the same array size 2 + surface_handle fsurf(fcontour_function_type fn, + std::initializer_list &xy_range, + std::string_view line_spec = "", + double mesh_density = 40) { + if (xy_range.size() == 2) { + return fsurf(fn, to_array<2>(xy_range), line_spec, + mesh_density); + } else if (xy_range.size() == 4) { + return fsurf(fn, to_array<4>(xy_range), line_spec, + mesh_density); + } + throw std::invalid_argument( + "fsurf: xy_range needs to have size 2 or 4"); + } + + /// Function surf + /// Parametric / Both ranges in the same array size 2 + inline surface_handle fsurf(fcontour_function_type funx, + fcontour_function_type funy, + fcontour_function_type funz, + std::initializer_list &uv_range, + std::string_view line_spec = "", + double mesh_density = 40) { + if (uv_range.size() == 2) { + return fsurf(funx, funy, funz, to_array<2>(uv_range), line_spec, + mesh_density); + } else if (uv_range.size() == 4) { + return fsurf(funx, funy, funz, to_array<4>(uv_range), line_spec, + mesh_density); + } + throw std::invalid_argument( + "fsurf: uv_range needs to have size 2 or 4"); + } + + /// Mesh - Core function + surface_handle mesh(const std::vector> &X, + const std::vector> &Y, + const std::vector> &Z, + const std::vector> &C = {}); + + /// Mesh with contour + surface_handle meshc(const std::vector> &X, + const std::vector> &Y, + const std::vector> &Z, + const std::vector> &C = {}); + + /// Mesh with curtain + /// Core function + surface_handle meshz(const std::vector> &X, + const std::vector> &Y, + const std::vector> &Z, + const std::vector> &C = {}); + + /// Ribbon + surface_handle ribbon(const std::vector> &X, + const std::vector> &Y, + const std::vector> &Z, + const std::vector> &C = {}, + double width = 0.75); + + /// Surf - Core function + surface_handle surf(const std::vector> &X, + const std::vector> &Y, + const std::vector> &Z, + const std::vector> &C = {}, + std::string_view line_spec = ""); + + /// Surf with contour - Core function + surface_handle surfc(const std::vector> &X, + const std::vector> &Y, + const std::vector> &Z, + const std::vector> &C = {}); + + /// Waterfall - Core function + surface_handle + waterfall(const std::vector> &X, + const std::vector> &Y, + const std::vector> &Z, + const std::vector> &C = {}); + + /// Graph - Undirected - Core function + network_handle + graph(const std::vector> &edges, + const std::vector &weights = {}, size_t n_vertices = 0, + std::string_view line_spec = "-o"); + + network_handle + graph(const std::vector> &edges, + std::string_view line_spec); + + /// B&W image show - Core function + matrix_handle + imshow(const std::vector> &gray_scale_img); + + /// Core RGB / RGBA imshow function + matrix_handle + imshow(const std::vector> &r_channel, + const std::vector> &g_channel, + const std::vector> &b_channel, + const std::vector> &a_channel = {}); + + /// Image show from 2d vectors with image channels + matrix_handle + imshow(const std::vector>> &img); + + /// Image show from filename + matrix_handle imshow(const std::string &filename); + + /// Display array as image + matrix_handle image(const std::vector> &C, + bool scaled_colorbar = false); + + /// Display 3 arrays as image + matrix_handle image(const std::vector> &r_channel, + const std::vector> &g_channel, + const std::vector> &b_channel, + bool scaled_colorbar = false); + + /// Show 2d-array as image + matrix_handle image(double x_min, double x_max, double y_min, + double y_max, + const std::vector> &C, + bool scaled_colorbar = false); + + /// Show image from tuple of rgb 2d vectors + matrix_handle + image(const std::tuple>, + std::vector>, + std::vector>> &img); + + /// Annotate plot with text + /// \param x Positions + /// \param y Positions + /// \param texts Texts + /// \return + labels_handle text(const std::vector &x, + const std::vector &y, + const std::vector &texts); + + /// Annotate plot with single text + labels_handle text(double x, double y, std::string_view str); + + /// Annotate plot with same text at many positions + labels_handle text(const std::vector &x, + const std::vector &y, std::string_view str); + + /// Annotate plot with arrow + vectors_handle arrow(double x1, double y1, double x2, double y2); + + /// Annotate plot with single line between two points + line_handle line(double x1, double y1, double x2, double y2); + + /// Annotate plot with text and arrow + std::pair + textarrow(double x1, double y1, double x2, double y2, + std::string_view str); + + /// Annotate plot with rectangle + line_handle rectangle(double x, double y, double w, double h, + double curvature = 0.); + + /// Annotate plot with text in a box + std::pair + textbox(double x, double y, double w, double h, std::string_view str); + + /// Annotate plot with a filled polygon + line_handle fill(const std::vector &x, + const std::vector &y, + std::string_view line_spec = ""); + + line_handle ellipse(double x, double y, double w, double h); + + public /* create plots on the axes from ranges we can convert to + std::vector */ + : + template + line_handle plot(const IterableValues &x, + const IterableValues &y, + std::string_view line_spec = "") { + return plot(to_vector_1d(x), to_vector_1d(y), line_spec); + } + + template + line_handle plot(const IterableValues &y, + std::string_view line_spec = "") { + return plot(to_vector_1d(y), line_spec); + } + + template + auto plot(const IterableValues &x, const IterableValues &y, + std::string_view line_spec, Args &&...args) { + return plot(to_vector_1d(x), to_vector_1d(y), line_spec, + std::forward(args)...); + } + + template + auto plot(const IterableValues &x, const IterableValues &y, + const IterableValues &x2, Args &&...args) { + return plot(to_vector_1d(x), to_vector_1d(y), to_vector_1d(x2), + std::forward(args)...); + } + + template + auto plot(const IterableValues &y, std::string_view line_spec, + Args &&...args) { + return plot(to_vector_1d(y), line_spec, + std::forward(args)...); + } + + template + std::vector plot(const IterableValues &x, + const IterableIterables &Y, + std::string_view line_spec = "") { + return plot(to_vector_1d(x), to_vector_2d(Y), line_spec); + } + + template + std::vector plot(const IterableIterables &Y, + std::string_view line_spec = "") { + return plot(to_vector_2d(Y), line_spec); + } + + template + std::vector + rgbplot(const IterableIterables &colormap) { + return rgbplot(to_vector_2d(colormap)); + } + + template + line_handle + plot3(const IterableValues &x, const IterableValues &y, + const IterableValues &z, std::string_view line_spec = "") { + return plot3(to_vector_1d(x), to_vector_1d(y), to_vector_1d(z), + line_spec); + } + + template + std::enable_if_t, std::vector> + plot3(const IterableIterables &X, const IterableIterables &Y, + const IterableValues &z, std::string_view line_spec = "") { + return plot3(to_vector_2d(X), to_vector_2d(Y), to_vector_1d(z), + line_spec); + } + + template + std::enable_if_t, std::vector> + plot3(const IterableIterables &X, const IterableIterables &Y, + const IterableIterables &Z, std::string_view line_spec = "") { + return plot3(to_vector_2d(X), to_vector_2d(Y), to_vector_2d(Z), + line_spec); + } + + template + auto plot3(const IterableValues &x, const IterableValues &y, + const IterableValues &z, std::string_view line_spec, + Args &&...args) { + return plot3(to_vector_1d(x), to_vector_1d(y), to_vector_1d(z), + line_spec, std::forward(args)...); + } + + template + auto plot3(const IterableValues &x, const IterableValues &y, + const IterableValues &z, const IterableValues &x2, + Args &&...args) { + return plot3(to_vector_1d(x), to_vector_1d(y), to_vector_1d(z), + to_vector_1d(x2), std::forward(args)...); + } + + template + auto plot3(const IterableValues &z, std::string_view line_spec, + Args &&...args) { + return plot3(to_vector_1d(z), line_spec, + std::forward(args)...); + } + + template + stair_handle stairs(const IterableValues &x, + const IterableValues &y, + std::string_view line_spec = "") { + return stairs(to_vector_1d(x), to_vector_1d(y), line_spec); + } + + template + stair_handle stairs(const IterableValues &y, + std::string_view line_spec = "") { + return stairs(to_vector_1d(y), line_spec); + } + + template + std::enable_if_t, std::vector> + stairs(const IterableValues &x, const IterableIterables &Y, + std::string_view line_spec = "") { + return stairs(to_vector_1d(x), to_vector_2d(Y), line_spec); + } + + template + std::enable_if_t, std::vector> + stairs(const IterableIterables &X, const IterableIterables &Y, + std::string_view line_spec = "") { + return stairs(to_vector_2d(X), to_vector_2d(Y), line_spec); + } + + template + std::vector stairs(const IterableIterables &Y, + std::string_view line_spec = "") { + return stairs(to_vector_2d(Y), line_spec); + } + + template + auto stairs(const IterableValues &x, const IterableValues &y, + std::string_view line_spec, Args &&...args) { + return stairs(to_vector_1d(x), to_vector_1d(y), line_spec, + std::forward(args)...); + } + + template + auto stairs(const IterableValues &x, const IterableValues &y, + const IterableValues &x2, Args &&...args) { + return stairs(to_vector_1d(x), to_vector_1d(y), to_vector_1d(x2), + std::forward(args)...); + } + + template + auto stairs(const IterableValues &y, std::string_view line_spec, + Args &&...args) { + return stairs(to_vector_1d(y), line_spec, + std::forward(args)...); + } + + template + error_bar_handle + errorbar(const IterableValues &x, const IterableValues &y, + const IterableValues &error, + error_bar::type type = error_bar::type::vertical, + std::string_view line_spec = "") { + return errorbar(to_vector_1d(x), to_vector_1d(y), + to_vector_1d(error), type, line_spec); + } + + template + error_bar_handle errorbar(const IterableValues &x, + const IterableValues &y, + const IterableValues &y_neg_delta, + const IterableValues &y_pos_delta, + const IterableValues &x_neg_delta, + const IterableValues &x_pos_delta, + std::string_view line_spec = "") { + return errorbar( + to_vector_1d(x), to_vector_1d(y), to_vector_1d(y_neg_delta), + to_vector_1d(y_pos_delta), to_vector_1d(x_neg_delta), + to_vector_1d(x_pos_delta), line_spec); + } + + template + error_bar_handle errorbar(const IterableValues &x, + const IterableValues &y, + const IterableValues &y_error, + std::string_view line_spec) { + return errorbar(to_vector_1d(x), to_vector_1d(y), + to_vector_1d(y_error), line_spec); + } + + template + std::vector + area(const IterableValues &x, const IterableIterables &Y, + double base_value = 0., bool stacked = true, + std::string_view line_spec = "k-") { + return area(to_vector_1d(x), to_vector_2d(Y), base_value, stacked, + line_spec); + } + + template + filled_area_handle area(const IterableValues &x, + const IterableValues &y, + double base_value = 0., bool stacked = true, + std::string_view line_spec = "k-") { + return area(to_vector_1d(x), to_vector_1d(y), base_value, stacked, + line_spec); + } + + template + std::vector + area(const IterableIterables &Y, double base_value = 0., + bool stacked = true, std::string_view line_spec = "k-") { + return area(to_vector_2d(Y), base_value, stacked, line_spec); + } + + template + std::vector + area(const IterableIterables &Y, bool stacked, + std::string_view line_spec = "k-") { + return area(to_vector_2d(Y), stacked, line_spec); + } + + template + filled_area_handle area(const IterableValues &y, + double base_value = 0., bool stacked = true, + std::string_view line_spec = "k-") { + return area(to_vector_1d(y), base_value, stacked, line_spec); + } + + template + histogram_handle hist(const IterableValues &data, + histogram::binning_algorithm algorithm = + histogram::binning_algorithm::automatic, + enum histogram::normalization normalization_alg = + histogram::normalization::count) { + return hist(to_vector_1d(data), algorithm, normalization_alg); + } + + template + histogram_handle hist(const IterableValues &data, size_t n_bins) { + return hist(to_vector_1d(data), n_bins); + } + + template + histogram_handle hist(const IterableValues &data, + const IterableValues &edges) { + return hist(to_vector_1d(data), to_vector_1d(edges)); + } + + template + histogram_handle hist(const IterableValues &data, + enum histogram::normalization normalization_alg) { + return hist(to_vector_1d(data), normalization_alg); + } + + template + axes_object_handle binscatter( + const IterableValues &x, const IterableValues &y, + const IterableValues &edges_x, + const IterableValues &edges_y, + enum bin_scatter_style scatter_style = bin_scatter_style::automatic, + enum histogram::normalization normalization_alg = + histogram::normalization::count) { + return binscatter(to_vector_1d(x), to_vector_1d(y), + to_vector_1d(edges_x), to_vector_1d(edges_y), + scatter_style, normalization_alg); + } + + template + axes_object_handle binscatter( + const IterableValues &x, const IterableValues &y, + histogram::binning_algorithm algorithm = + histogram::binning_algorithm::automatic, + enum bin_scatter_style scatter_style = bin_scatter_style::automatic, + enum histogram::normalization normalization_alg = + histogram::normalization::count) { + return binscatter(to_vector_1d(x), to_vector_1d(y), algorithm, + scatter_style, normalization_alg); + } + + template + axes_object_handle + binscatter(const IterableValues &x, const IterableValues &y, + enum bin_scatter_style scatter_style, + histogram::binning_algorithm algorithm = + histogram::binning_algorithm::automatic, + enum histogram::normalization normalization_alg = + histogram::normalization::count) { + return binscatter(to_vector_1d(x), to_vector_1d(y), scatter_style, + algorithm, normalization_alg); + } + + template + axes_object_handle binscatter( + const IterableValues &x, const IterableValues &y, + size_t nbins_x, size_t nbins_y, + enum bin_scatter_style scatter_style = bin_scatter_style::automatic, + enum histogram::normalization normalization_alg = + histogram::normalization::count) { + return binscatter(to_vector_1d(x), to_vector_1d(y), nbins_x, + nbins_y, scatter_style, normalization_alg); + } + + template + std::enable_if_t, box_chart_handle> + boxplot(const IterableValues &data) { + return boxplot(to_vector_1d(data)); + } + + template + std::enable_if_t, box_chart_handle> + boxplot(const IterableIterables &data) { + return boxplot(to_vector_2d(data)); + } + + template + box_chart_handle boxplot(const IterableValues &data, + const IterableValues &groups) { + return boxplot(to_vector_1d(data), to_vector_1d(groups)); + } + + template + box_chart_handle boxplot(const IterableValues &y_data, + const std::vector &groups) { + return boxplot(to_vector_1d(y_data), groups); + } + + template + std::enable_if_t, bars_handle> + bar(const IterableValues &x, const IterableValues &y) { + return bar(to_vector_1d(x), to_vector_1d(y)); + } + + template + std::enable_if_t, bars_handle> + bar(const IterableValues &y) { + return bar(to_vector_1d(y)); + } + + template + std::enable_if_t, bars_handle> + bar(const IterableIterables &Y) { + return bar(to_vector_2d(Y)); + } + + template + std::enable_if_t, bars_handle> + bar(const IterableValues &x, const IterableIterables &Y) { + return bar(to_vector_1d(x), to_vector_2d(Y)); + } + + template + bars_handle bar(const IterableValues &y, double width) { + return bar(to_vector_1d(y), width); + } + + template + std::vector barstacked(const IterableIterables &Y) { + return barstacked(to_vector_2d(Y)); + } + + template + std::vector barstacked(const IterableValues &x, + const IterableIterables &Y) { + return barstacked(to_vector_1d(x), to_vector_2d(Y)); + } + + template + matrix_handle heatmap(const IterableIterables &m) { + return heatmap(to_vector_2d(m)); + } + + template + matrix_handle pcolor(const IterableIterables &m) { + return pcolor(to_vector_2d(m)); + } + + template + parallel_lines_handle parallelplot(const IterableIterables &X, + const IterableValues &colors, + std::string_view line_spec = "") { + return parallelplot(to_vector_2d(X), to_vector_1d(colors), + line_spec); + } + + template + parallel_lines_handle parallelplot(const IterableIterables &X, + std::string_view line_spec = "") { + return parallelplot(to_vector_2d(X), line_spec); + } + + template + circles_handle pie(const IterableValues &x, + const IterableValues &explode = {}, + const std::vector &labels = {}) { + return pie(to_vector_1d(x), to_vector_1d(explode), labels); + } + + template + circles_handle pie(const IterableValues &x, + const std::vector &labels) { + return pie(to_vector_1d(x), labels); + } + + template + line_handle scatter(const IterableValues &x, + const IterableValues &y, + const IterableValues &sizes = {}, + const IterableValues &colors = {}) { + return scatter(to_vector_1d(x), to_vector_1d(y), + to_vector_1d(sizes), to_vector_1d(colors)); + } + + template + line_handle scatter(const IterableValues &x, + const IterableValues &y, double sizes, + const IterableValues &colors = {}) { + return scatter(to_vector_1d(x), to_vector_1d(y), sizes, + to_vector_1d(colors)); + } + + template + line_handle scatter3(const IterableValues &x, + const IterableValues &y, + const IterableValues &z, + const IterableValues &sizes = {}, + const IterableValues &colors = {}, + std::string_view line_spec = "o") { + return scatter3(to_vector_1d(x), to_vector_1d(y), to_vector_1d(z), + to_vector_1d(sizes), to_vector_1d(colors), + line_spec); + } + + template + line_handle + scatter3(const IterableValues &x, const IterableValues &y, + const IterableValues &z, std::string_view line_spec) { + return scatter3(to_vector_1d(x), to_vector_1d(y), to_vector_1d(z), + line_spec); + } + + template + labels_handle wordcloud(const std::vector &words, + const IterableValues &sizes, + const IterableValues &custom_colors = {}) { + return wordcloud(words, to_vector_1d(sizes), + to_vector_1d(custom_colors)); + } + + template + labels_handle + wordcloud(std::string_view text, + const std::vector &black_list, + std::string_view delimiters = " ',\n\r\t\".!?:;", + size_t max_cloud_size = 100, + const IterableValues &custom_colors = {}) { + return wordcloud(text, black_list, delimiters, max_cloud_size, + to_vector_1d(custom_colors)); + } + + template + std::pair + pareto(const IterableValues &y, + const std::vector &names = {}, + double p_threshold = 0.95, size_t item_threshold = 10) { + return pareto(to_vector_1d(y), names, p_threshold, item_threshold); + } + + template + line_handle stem(const IterableValues &x, + const IterableValues &y, + std::string_view line_spec = "-o") { + return stem(to_vector_1d(x), to_vector_1d(y), line_spec); + } + + template + line_handle stem(const IterableValues &y, + std::string_view line_spec = "-o") { + return stem(to_vector_1d(y), line_spec); + } + + template + std::vector stem(const IterableValues &x, + const IterableIterables &Y, + std::string_view line_spec = "-o") { + return stem(to_vector_1d(x), to_vector_2d(Y), line_spec); + } + + template + std::vector stem(const IterableIterables &Y, + std::string_view line_spec = "-o") { + return stem(to_vector_2d(Y), line_spec); + } + + template + line_handle + stem3(const IterableValues &x, const IterableValues &y, + const IterableValues &z, std::string_view line_spec = "-o") { + return stem3(to_vector_1d(x), to_vector_1d(y), to_vector_1d(z), + line_spec); + } + + template + std::vector + stem3(const IterableIterables &X, const IterableIterables &Y, + const IterableValues &z, std::string_view line_spec = "-o") { + return stem3(to_vector_2d(X), to_vector_2d(Y), to_vector_1d(z), + line_spec); + } + + template + line_handle stem3(const IterableValues &z, + std::string_view line_spec = "-o") { + return stem3(to_vector_1d(z), line_spec); + } + + template + line_handle stem3(const IterableIterables &Z, + std::string_view line_spec = "-o") { + return stem3(to_vector_2d(Z), line_spec); + } + + template + circles_handle geobubble(const IterableValues &latitude, + const IterableValues &longitude, + const IterableValues &sizes = {}, + const IterableValues &colors = {}) { + return geobubble(to_vector_1d(latitude), to_vector_1d(longitude), + to_vector_1d(sizes), to_vector_1d(colors)); + } + + template + line_handle geodensityplot(const IterableValues &latitude, + const IterableValues &longitude, + const IterableValues &weights = {}) { + return geodensityplot(to_vector_1d(latitude), + to_vector_1d(longitude), + to_vector_1d(weights)); + } + + template + line_handle geoplot(const IterableValues &latitude, + const IterableValues &longitude, + std::string_view line_spec = "") { + return geoplot(to_vector_1d(latitude), to_vector_1d(longitude), + line_spec); + } + + template + line_handle geoscatter(const IterableValues &latitude, + const IterableValues &longitude, + const IterableValues &sizes = {}, + const IterableValues &colors = {}) { + return geoscatter(to_vector_1d(latitude), to_vector_1d(longitude), + to_vector_1d(sizes), to_vector_1d(colors)); + } + + template + vectors_handle compass(const IterableValues &x, + const IterableValues &y, + std::string_view line_spec = "") { + return compass(to_vector_1d(x), to_vector_1d(y), line_spec); + } + + template + histogram_handle polarhistogram(const IterableValues &theta, + size_t nbins) { + return polarhistogram(to_vector_1d(theta), nbins); + } + + template + line_handle polarplot(const IterableValues &theta, + const IterableValues &rho, + std::string_view line_spec = "") { + return polarplot(to_vector_1d(theta), to_vector_1d(rho), line_spec); + } + + template + line_handle + polarscatter(const IterableValues &theta, + const IterableValues &rho, + const IterableValues &sizes = std::vector{}, + const IterableValues &colors = std::vector{}, + std::string_view line_spec = "o") { + return polarscatter(to_vector_1d(theta), to_vector_1d(rho), + to_vector_1d(sizes), to_vector_1d(colors), + line_spec); + } + + template + line_handle polarscatter(const IterableValues &theta, + const IterableValues &rho, double size, + std::string_view line_spec = "o") { + return polarscatter(to_vector_1d(theta), to_vector_1d(rho), size, + line_spec); + } + + template + line_handle polarscatter(const IterableValues &theta, + const IterableValues &rho, + std::string_view line_spec) { + return polarscatter(to_vector_1d(theta), to_vector_1d(rho), size, + line_spec); + } + + template + contours_handle + contour(const IterableIterables &X, const IterableIterables &Y, + const IterableIterables &Z, + const IterableValues &levels, + std::string_view line_spec = "", size_t n_levels = 0) { + return contour(to_vector_2d(X), to_vector_2d(Y), to_vector_2d(Z), + to_vector_1d(levels), line_spec, n_levels); + } + + template + contours_handle + contour(const IterableIterables &X, const IterableIterables &Y, + const IterableIterables &Z, size_t n_levels = 0, + std::string_view line_spec = "") { + return contour(to_vector_2d(X), to_vector_2d(Y), to_vector_2d(Z), + n_levels, line_spec); + } + + template + contours_handle + contour(const IterableIterables &X, const IterableIterables &Y, + const IterableIterables &Z, std::string_view line_spec) { + return contour(to_vector_2d(X), to_vector_2d(Y), to_vector_2d(Z), + line_spec); + } + + template + contours_handle + contourf(const IterableIterables &X, const IterableIterables &Y, + const IterableIterables &Z, + const IterableValues &levels, + std::string_view line_spec = "", size_t n_levels = 0) { + return contourf(to_vector_2d(X), to_vector_2d(Y), to_vector_2d(Z), + to_vector_1d(levels), line_spec, n_levels); + } + + template + contours_handle + contourf(const IterableIterables &X, const IterableIterables &Y, + const IterableIterables &Z, size_t n_levels = 0, + std::string_view line_spec = "") { + return contourf(to_vector_2d(X), to_vector_2d(Y), to_vector_2d(Z), + n_levels, line_spec); + } + + template + contours_handle + contourf(const IterableIterables &X, const IterableIterables &Y, + const IterableIterables &Z, std::string_view line_spec) { + return contourf(to_vector_2d(X), to_vector_2d(Y), to_vector_2d(Z), + line_spec); + } + + template + contours_handle fcontour(fcontour_function_type fn, + const std::array &xy_range, + IterableValues levels = {}, + std::string_view line_spec = "", + size_t n_levels = 0) { + return fcontour(fn, xy_range, to_vector_1d(levels), line_spec, + n_levels); + } + + template + vectors_handle feather(const IterableValues &u, + const IterableValues &v, + std::string_view line_spec = "") { + return feather(to_vector_1d(u), to_vector_1d(v), line_spec); + } + + template + std::enable_if_t && is_iterable_value_v && + is_iterable_value_v && is_iterable_value_v, + vectors_handle> + quiver(const IterableValues &x, const IterableValues &y, + const IterableValues &u, const IterableValues &v, + double scale = 1.0, std::string_view line_spec = "") { + return quiver(to_vector_1d(x), to_vector_1d(y), to_vector_1d(u), + to_vector_1d(v), scale, line_spec); + } + + template + std::enable_if_t< + is_iterable_iterable_v && is_iterable_iterable_v && + is_iterable_iterable_v && is_iterable_iterable_v, + vectors_handle> + quiver(const IterableIterables &x, const IterableIterables &y, + const IterableIterables &u, const IterableIterables &v, + double scale = 1.0, std::string_view line_spec = "") { + return quiver(to_vector_2d(x), to_vector_2d(y), to_vector_2d(u), + to_vector_2d(v), scale, line_spec); + } + + template + std::enable_if_t && is_iterable_value_v && + is_iterable_value_v && + is_iterable_value_v && + is_iterable_value_v && is_iterable_value_v, + vectors_handle> + quiver3(const IterableValues &x, const IterableValues &y, + const IterableValues &z, const IterableValues &u, + const IterableValues &v, const IterableValues &w, + double scale = 1.0, std::string_view line_spec = "") { + return quiver3(to_vector_1d(x), to_vector_1d(y), to_vector_1d(z), + to_vector_1d(u), to_vector_1d(v), to_vector_1d(w), + scale, line_spec); + } + + template + std::enable_if_t< + is_iterable_iterable_v && is_iterable_iterable_v && + is_iterable_iterable_v && is_iterable_iterable_v && + is_iterable_iterable_v && is_iterable_iterable_v, + vectors_handle> + quiver3(const IterableIterables &x, const IterableIterables &y, + const IterableIterables &z, const IterableIterables &u, + const IterableIterables &v, const IterableIterables &w, + double scale = 1.0, std::string_view line_spec = "") { + return quiver3(to_vector_2d(x), to_vector_2d(y), to_vector_2d(z), + to_vector_2d(u), to_vector_2d(v), to_vector_2d(w), + scale, line_spec); + } + + template + vectors_handle + quiver3(const IterableIterables &z, const IterableIterables &u, + const IterableIterables &v, const IterableIterables &w, + double scale = 1.0, std::string_view line_spec = "") { + return quiver3(to_vector_2d(z), to_vector_2d(u), to_vector_2d(v), + to_vector_2d(w), scale, line_spec); + } + + template + surface_handle fence(const IterableIterables &X, + const IterableIterables &Y, + const IterableIterables &Z, + const IterableValues &c = {}) { + return fence(to_vector_2d(X), to_vector_2d(Y), to_vector_2d(Z), + to_vector_1d(c)); + } + + template + surface_handle mesh(const IterableIterables &X, + const IterableIterables &Y, + const IterableIterables &Z, + const IterableIterables &C = {}) { + return mesh(to_vector_2d(X), to_vector_2d(Y), to_vector_2d(Z), + to_vector_2d(C)); + } + + template + surface_handle meshc(const IterableIterables &X, + const IterableIterables &Y, + const IterableIterables &Z, + const IterableIterables &C = {}) { + return meshc(to_vector_2d(X), to_vector_2d(Y), to_vector_2d(Z), + to_vector_2d(C)); + } + + template + surface_handle meshz(const IterableIterables &X, + const IterableIterables &Y, + const IterableIterables &Z, + const IterableIterables &C = {}) { + return meshz(to_vector_2d(X), to_vector_2d(Y), to_vector_2d(Z), + to_vector_2d(C)); + } + + template + surface_handle + ribbon(const IterableIterables &X, const IterableIterables &Y, + const IterableIterables &Z, + const IterableIterables &C = {}, double width = 0.75) { + return ribbon(to_vector_2d(X), to_vector_2d(Y), to_vector_2d(Z), + to_vector_2d(C), width); + } + + template + surface_handle surf(const IterableIterables &X, + const IterableIterables &Y, + const IterableIterables &Z, + const IterableIterables &C = {}, + std::string_view line_spec = "") { + return IterableIterables(to_vector_2d(X), to_vector_2d(Y), + to_vector_2d(Z), to_vector_2d(C), + line_spec); + } + + template + surface_handle surfc(const IterableIterables &X, + const IterableIterables &Y, + const IterableIterables &Z, + const IterableIterables &C = {}) { + return surfc(to_vector_2d(X), to_vector_2d(Y), to_vector_2d(Z), + to_vector_2d(C)); + } + + template + surface_handle waterfall(const IterableIterables &X, + const IterableIterables &Y, + const IterableIterables &Z, + const IterableIterables &C = {}) { + return waterfall(to_vector_2d(X), to_vector_2d(Y), to_vector_2d(Z), + to_vector_2d(C)); + } + + template + network_handle graph(const IterableValues &edges, + const IterableValues &weights = {}, + size_t n_vertices = 0, + std::string_view line_spec = "-o") { + return graph(to_vector_1d>(edges), + to_vector_1d(weights), n_vertices, line_spec); + } + + template + network_handle graph(const IterableValues &edges, + std::string_view line_spec) { + return graph(to_vector_1d>(edges), + line_spec); + } + + template + matrix_handle imshow(const IterableIterables &gray_scale_img) { + return imshow(to_vector_2d(gray_scale_img)); + } + + template + matrix_handle imshow(const IterableIterables &r_channel, + const IterableIterables &g_channel, + const IterableIterables &b_channel, + const IterableIterables &a_channel = + std::vector>{}) { + return imshow(to_vector_2d(r_channel), + to_vector_2d(g_channel), + to_vector_2d(b_channel), + to_vector_2d(a_channel)); + } + + template + matrix_handle imshow(const std::vector> &img) { + std::vector>> v_img( + img.size()); + for (size_t i = 0; i < img.size(); ++i) { + v_img[i] = to_vector_2d(img[i]); + } + return imshow(v_img); + } + + template + matrix_handle image(const IterableIterables &C, + bool scaled_colorbar = false) { + return image(to_vector_2d(C), scaled_colorbar); + } + + template + matrix_handle image(const IterableIterables &r_channel, + const IterableIterables &g_channel, + const IterableIterables &b_channel, + bool scaled_colorbar = false) { + return image(to_vector_2d(r_channel), to_vector_2d(g_channel), + to_vector_2d(b_channel), scaled_colorbar); + } + + template + matrix_handle image(double x_min, double x_max, double y_min, + double y_max, const IterableIterables &C, + bool scaled_colorbar = false) { + return image(x_min, x_max, y_min, y_max, to_vector_2d(C), + scaled_colorbar); + } + + template + matrix_handle + image(const std::tuple, IterableIterables, + IterableIterables> &img) { + std::tuple>, + std::vector>, + std::vector>> + t = std::make_tuple(to_vector_2d(std::get<0>(img)), + to_vector_2d(std::get<1>(img)), + to_vector_2d(std::get<2>(img))); + return image(t); + } + + template + labels_handle text(const IterableValues &x, + const IterableValues &y, + const std::vector &texts) { + return text(to_vector_1d(x), to_vector_1d(y), texts); + } + + template + labels_handle text(const IterableValues &x, + const IterableValues &y, std::string_view str) { + return text(to_vector_1d(x), to_vector_1d(y), str); + } + + template + line_handle fill(const IterableValues &x, + const IterableValues &y, + std::string_view line_spec = "") { + return fill(to_vector_1d(x), to_vector_1d(y), line_spec); + } + + public /* template variants of plot functions above */: + /// Loglog is a line plot variant with log on both x and y axes + template auto loglog(Args &&...args) { + auto h = this->plot(std::forward(args)...); + this->x_axis().scale(axis_type::axis_scale::log); + this->y_axis().scale(axis_type::axis_scale::log); + return h; + } + + /// Semilogx is a plot variant with log scale on the x axis + template auto semilogx(Args &&...args) { + auto h = this->plot(std::forward(args)...); + this->x_axis().scale(axis_type::axis_scale::log); + return h; + } + + /// Semilogx is a plot variant with log scale on the x axis + template auto semilogy(Args &&...args) { + auto h = this->plot(std::forward(args)...); + this->y_axis().scale(axis_type::axis_scale::log); + return h; + } + + /// If the user tries to use boxchart instead of boxplot, it also works + template auto boxchart(Args &&...args) { + return boxplot(std::forward(args)...); + } + + /// The function hist2 is equivalent to binscatter (usually with a + /// heatmap) + template auto hist2(Args &&...args) { + return binscatter(std::forward(args)...); + } + + /// Directed graph + template auto digraph(Args &&...args) { + auto l = graph(std::forward(args)...); + l->directed(true); + return l; + } + + /// Show array as image and scale the colorbar + template auto imagesc(Args &&...args) { + return image(std::forward(args)..., true); + } + + /// Show array as image and scale the colorbar + template auto polygon(Args &&...args) { + return fill(std::forward(args)...); + } + + public /* templates converting to vector and + vector> */ + : + + private /* run gnuplot commands */: + void run_colormap_command(); + void run_position_margin_command(); + std::tuple + calculate_margins(); + void run_title_command(); + void run_box_command(); + void run_grid_command(); + void run_axes_command(); + void run_labels_command(); + void run_legend_command(); + void run_background_command(); + void run_plot_objects_command(); + void run_unset_objects_command(); + void run_empty_plot_command(); + + private /* run draw commands */: + void run_background_draw_commands(); + void run_title_draw_commands(); + void run_box_draw_commands(); + void run_grid_draw_commands(); + void run_axes_draw_commands(); + void run_labels_draw_commands(); + void run_legend_draw_commands(); + void run_plot_objects_draw_commands(); + + public /* commands children objects can call to draw on the axes */: + /* + * These functions are intermediaries between the axes + * and the backend because the axes need to clamp points + * outside the axes and normalize the points to the axes + * position on screen. + */ + void draw_path(const std::vector &x, + const std::vector &y, + const std::array &color); + + private /* members */: + // axes + class axis_type x_axis_ { + this, true + }; + + class axis_type x2_axis_ { + this, false + }; + + class axis_type y_axis_ { + this, true + }; + + class axis_type y2_axis_ { + this, false + }; + + class axis_type z_axis_ { + this, true + }; + + class axis_type r_axis_ { + this, false + }; + + class axis_type t_axis_ { + this, false + }; + + class axis_type cb_axis_ { + this, false + }; + + bool cb_vertical_{true}; + bool cb_inside_{false}; + std::array cb_position_{0., 0., 0., 0.}; + + // {x, y, width, height} + std::array position_{default_axes_position}; + std::array margin_{0.0, 0.0, 0.0, 0.0}; + + // 3d view + float azimuth_ = -37.5; + float elevation_ = 30.; + + // set xrange, yrange and zrange according to this ratio + float axes_aspect_ratio_{1}; + bool axes_aspect_ratio_auto_{true}; + + // text + std::optional font_size_{10.f}; + std::optional font_{"Helvetica"}; + std::string font_weight_{"normal"}; + + // title text + std::string title_; + bool title_visible_{false}; + bool title_enhanced_{true}; + float title_font_size_multiplier_{1.1f}; + std::string title_font_weight_{"bold"}; + color_array title_color_{0, 0, 0, 0}; + + // colors for children object + std::array color_{0, 1.0, 1.0, 1.0}; + std::array color_outside_{0, 0.97f, 0.97f, 0.97f}; + std::vector> colororder_{ + default_color(0), default_color(1), default_color(2), + default_color(3), default_color(4), default_color(5), + default_color(6)}; + size_t colororder_index_{0}; + std::vector> colormap_ = {palette::default_map()}; + size_t max_colors_{0}; // limit number of colors in the colormap + + // complete box around the axes + bool box_{true}; + bool box_full_{false}; + std::array box_color_{.0, .0, .0, .0}; + + // grid inside the axes + line_spec grid_line_style_{"-"}; + line_spec minor_grid_line_style_{"--"}; + bool grid_front_{false}; + + bool x_grid_{false}; + bool x_user_grid_{false}; + bool x_minor_grid_{false}; + + bool y_grid_{false}; + bool y_user_grid_{false}; + bool y_minor_grid_{false}; + + bool z_grid_{false}; + bool z_user_grid_{false}; + bool z_minor_grid_{false}; + + bool r_grid_{false}; + bool r_user_grid_{false}; + bool r_minor_grid_{false}; + bool t_minor_grid_{false}; + + // background + bool visible_{true}; + bool handle_visibility_{true}; + float line_width_{0.5}; + + // line styles for children objects that don't have + // a color defined by the user + std::string line_style_order_ = "-"; + size_t line_style_order_index_{0}; + + // children objects + std::vector children_; + bool next_plot_replace_ = true; + legend_handle legend_; + + // parent figure + // we don't need a shared_ptr here because there is no + // relationship of ownership + class figure_type *parent_; + }; + +} // namespace matplot + +#endif // MATPLOTPLUSPLUS_AXES_TYPE_H diff --git a/dependency/x86/third_party/matplotplusplus/1.2.0/include/matplot/core/axis_type.h b/dependency/x86/third_party/matplotplusplus/1.2.0/include/matplot/core/axis_type.h new file mode 100644 index 00000000..27b585fe --- /dev/null +++ b/dependency/x86/third_party/matplotplusplus/1.2.0/include/matplot/core/axis_type.h @@ -0,0 +1,181 @@ +// +// Created by Alan Freitas on 2020-07-03. +// + +#ifndef MATPLOTPLUSPLUS_AXIS_TYPE_H +#define MATPLOTPLUSPLUS_AXIS_TYPE_H + +#include +#include +#include +#include +#include +#include + +namespace matplot { + class axes_type; + + /// A two dimensional axis + class MATPLOT_EXPORTS axis_type { + public: + enum class axis_scale { linear, log }; + + public: + friend axes_type; + axis_type(); + explicit axis_type(class axes_type *parent); + explicit axis_type(class axes_type *parent, bool visible); + axis_type(class axes_type *parent, double min, double max); + axis_type(class axes_type *parent, double min, double max, + bool visible); + + public: + void touch(); + + public: + std::array limits() const; + class axis_type &limits(const std::array &limits); + + bool limits_mode_auto() const; + bool limits_mode_manual() const; + class axis_type &limits_mode_auto(bool limits_mode_auto); + class axis_type &limits_mode_manual(bool limits_mode_manual); + std::string range_string() const; + + bool reverse() const; + class axis_type &reverse(bool reverse); + + const color_array &color() const; + class axis_type &color(const color_array &color); + class axis_type &color(std::string_view color); + class axis_type &color(const enum color &color); + + const std::string &label() const; + class axis_type &label(std::string_view label); + + const std::string &tick_label_format() const; + class axis_type &tick_label_format(std::string_view tick_label_format); + + bool tick_values_automatic() const; + class axis_type &tick_values_automatic(bool tick_values_automatic); + + bool tick_values_manual() const; + class axis_type &tick_values_manual(bool tick_values_manual); + + /// Get tick values + /// This might be tick values provided by the user + /// or tick values calculated automatically for the range + const std::vector &tick_values() const; + class axis_type &tick_values(const std::vector &tick_values); + + /// Get tick values + /// This might be tick labels provided by the user + /// or tick labels according to a format + const std::vector &ticklabels() const; + class axis_type &ticklabels(const std::vector &ticklabels); + + bool ticklabels_mode() const; + class axis_type &ticklabels_mode(bool ticklabels_mode); + + float tickangle() const; + class axis_type &tickangle(float tickangle); + + axis_scale scale() const; + class axis_type &scale(axis_scale scale); + + float tick_length() const; + class axis_type &tick_length(float tick_length); + + bool zero_axis() const; + class axis_type &zero_axis(bool zero_axis); + + bool geographic() const; + class axis_type &geographic(bool geographic); + + bool on_axis() const; + class axis_type &on_axis(bool on_axis); + + const std::string &label_weight() const; + class axis_type &label_weight(std::string_view label_weight); + + float label_font_size() const; + class axis_type &label_font_size(float label_font_size); + + const color_array &label_color() const; + class axis_type &label_color(const color_array &label_color); + template axis_type &label_color(T c) { + label_color(to_array(c)); + return *this; + } + + bool is_timestamp() const; + class axis_type &is_timestamp(bool is_timestamp); + + bool visible() const; + class axis_type &visible(bool visible); + + public: + std::string label_string() const; + std::string tick_values_string(bool minor_ticks = false) const; + std::string tick_rotate_string() const; + + private: + // range + std::array limits_{0, 2}; + bool limits_mode_auto_{true}; + bool reverse_{false}; + axis_scale scale_{axis_scale::linear}; + float exponent{0}; + bool geographic_{false}; + + // tics + std::vector tick_values_{0, 0.2000, 0.4000, 0.6000, + 0.8000, 1, 1.2000, 1.4000, + 1.6000, 1.8000, 2}; + std::string tick_label_format_{"%g"}; + bool tick_values_automatic_{true}; + float tickangle_{0}; + std::vector ticklabels_; + bool ticklabels_mode_{true}; + std::array color_{0, 0.15f, 0.15f, 0.15f}; + float tick_length_{0.75}; + + // minor tics + bool minor_tick_{false}; + std::vector minor_tick_values_{ + 0.0500, 0.1000, 0.1500, 0.2500, 0.3000, 0.3500, 0.4500, 0.5000, + 0.5500, 0.6500, 0.7000, 0.7500, 0.8500, 0.9000, 0.9500, 1.0500, + 1.1000, 1.1500, 1.2500, 1.3000, 1.3500, 1.4500, 1.5000, 1.5500, + 1.6500, 1.7000, 1.7500, 1.8500, 1.9000, 1.9500}; + + // font + std::string font_{"Helvetica"}; + float font_size_{10}; + std::string font_weight_{"normal"}; + + // label + std::string label_{""}; + std::string label_weight_{"normal"}; + float label_font_size_{11}; + color_array label_color_{0, 0, 0, 0}; + + bool is_timestamp_{false}; + + // line + float line_width_{0.5}; + + // draw zero axis + bool zero_axis_{false}; + + // Draw the tics on the axis + bool on_axis_{false}; + + bool visible_{true}; + + // parent xlim + class axes_type *parent_; + }; + +} // namespace matplot + +#endif // MATPLOTPLUSPLUS_AXIS_TYPE_H diff --git a/dependency/x86/third_party/matplotplusplus/1.2.0/include/matplot/core/figure_registry.h b/dependency/x86/third_party/matplotplusplus/1.2.0/include/matplot/core/figure_registry.h new file mode 100644 index 00000000..cf970e34 --- /dev/null +++ b/dependency/x86/third_party/matplotplusplus/1.2.0/include/matplot/core/figure_registry.h @@ -0,0 +1,52 @@ +// +// Created by Alan Freitas on 04/08/20. +// + +#ifndef MATPLOTPLUSPLUS_FIGURE_REGISTRY_H +#define MATPLOTPLUSPLUS_FIGURE_REGISTRY_H + +#include +#include + +namespace matplot { + using figure_handle = std::shared_ptr; + + /// \brief Create a new figure + MATPLOT_EXPORTS + figure_handle figure_no_backend(bool quiet_mode); + + /// \brief Create a new figure with a given backend + template + figure_handle figure(bool quiet_mode) { + std::shared_ptr b = + create_backend(); + figure_handle f = figure_no_backend(quiet_mode); + f->backend(b); + return f; + } + + /// \brief Create a new figure (reactive mode) + template figure_handle figure() { + /// Take default mode from backend? + return figure(false); + } + + /// \brief Set the current figure + MATPLOT_EXPORTS + figure_handle figure(figure_handle h); + + /// \brief Set the current figure + MATPLOT_EXPORTS + figure_handle figure(class figure_type *h); + + /// \brief Get the current figure + MATPLOT_EXPORTS + figure_handle gcf(); + + /// \brief Get current figure in quiet mode + MATPLOT_EXPORTS + figure_handle gcf(bool quiet); + +} // namespace matplot + +#endif // MATPLOTPLUSPLUS_FIGURE_REGISTRY_H diff --git a/dependency/x86/third_party/matplotplusplus/1.2.0/include/matplot/core/figure_type.h b/dependency/x86/third_party/matplotplusplus/1.2.0/include/matplot/core/figure_type.h new file mode 100644 index 00000000..a71a6642 --- /dev/null +++ b/dependency/x86/third_party/matplotplusplus/1.2.0/include/matplot/core/figure_type.h @@ -0,0 +1,326 @@ +#ifndef MATPLOTPLUSPLUS_FIGURE_TYPE_H +#define MATPLOTPLUSPLUS_FIGURE_TYPE_H + +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include + +namespace matplot { + class axes_type; + + /// \class Figure + /// From Figures, we can create plot handles and + /// multiplot handles that contain other plot handles. + /// - Figure objects have axis objects + /// - Axis objects have plot object + /// + /// When we plot the any of these subobjects, they will + /// send the appropriate commands to the parent Figure/pipe + /// to plot it. + /// + /// If we create more Figures, we create more plot windows, + /// but we don't really recommend doing that. It's better + /// to only use the default pipe for everything and use + /// multiplots if more plots are needed. + class MATPLOT_EXPORTS figure_type { + public: + friend class axes_type; + // Remove the copy operators because users are not + // supposed to use this object directly. + // Users will use a figure_handle which can be copied + // and still reference to the same object. + figure_type(figure_type const &) = delete; + void operator=(figure_type const &) = delete; + + /// \brief Create a Figure window + figure_type(); + + /// \brief Create a Figure window + explicit figure_type(bool quiet_mode); + + /// \brief Create a Figure window + explicit figure_type(size_t index); + + /// \brief Create a Figure window + explicit figure_type(size_t index, bool quiet_mode); + + /// \brief The destructor closes the pipe + virtual ~figure_type(); + + public /* manage axes */: + /// \brief Create new axes in a figure + axes_handle add_axes(bool replace_if_overlap = false); + + /// \brief Create new axes in position + /// Don't replace any axes that might overlap + /// Replace any axes exactly in the same position + /// \param position: x, y, width, height (all from 0 to 1) + /// \return Handle to new axes + axes_handle add_axes(std::array position); + + /// \brief Add existing axes to the figure + /// If we find axes in the exact same position, we can replace + /// the axes with the new axes or we can get a handle + /// to the existing axes. If we don't find axes in the exact + /// same position, we remove any other axes overlapping the new + /// axes and return a handle to the new axes. + /// \param ax Handle to the new axes + /// \param replace_if_overlap Replace any axes that overlap at all + /// \param replace_if_same_position Replace any axes that are exactly in + /// the same position \return Handle to new axes + axes_handle add_axes(std::shared_ptr ax, + bool replace_if_overlap, + bool replace_if_same_position); + + /// \brief Add a subplot + /// The subplot is an axes with its position determined by the number of + /// rows, columns, and id + axes_handle add_subplot(size_t rows, size_t cols, size_t plot_id, + bool replace_if_same_position = false); + + /// \brief Make axes a subplot of this figure + axes_handle add_subplot(size_t rows, size_t cols, size_t plot_id, + axes_handle axes); + + /// \brief Create new axes in a subplot covering all positions in P + axes_handle add_subplot(size_t rows, size_t cols, + std::initializer_list P, + bool replace_if_same_position = false); + + /// \brief Create new subplot in a specific position + axes_handle add_subplot(std::array position, + bool replace_if_same_position = false); + + /// \brief Get next tile in a tiled layout + /// In tiled layouts, we create new axes for each new tile. + /// The tile positions are determined according to the number + /// of rows/columns provided by `tiledlayout()`. + /// When creating a new tile, if there are more tiles than rows * + /// columns, we increase the number of rows or columns to make the new + /// tile fit. The position of old tiled is adjusted to the new number of + /// rows and columns. + void tiledlayout(size_t rows = 1, size_t cols = 1); + + /// \brief Add next tile to plot + axes_handle nexttile(); + + /// \brief Add next tile to plot at position index + axes_handle nexttile(size_t index); + + /// Get reference to current axes / create new axes if it does not exist + std::shared_ptr current_axes(); + + /// Get reference to current axes + std::shared_ptr current_axes() const; + + /// Set current axes in the figure + void current_axes(const std::shared_ptr ¤t_axes); + + /// \brief Get reference to vector with all child axes + const std::vector> &children() const; + void + children(const std::vector> &children); + + protected: + static std::array + calculate_subplot_position(size_t rows, size_t cols, size_t plot_id); + + public /* manage figure reactive mode */: + /// \brief Draw the current figure (for figures in quiet/non-reactive + /// mode) Flush the buffer to the pipe, updating or creating the plot + /// window + void draw(); + + /// \brief Draw the current figure and pause the console + /// This is useful to keep the figure open, usually by the end + /// of a program. Never use this function inside a library + /// meant to be used non-interactively. + void show(); + + /// \brief Plot the figure if not in quiet mode + /// In some applications, we want the default behaviour + /// where we update the plot whenever we change a figure + /// property. This is usually what we want when tracking + /// the behaviour of an algorithm of something like that. + /// In some other applications, however, we just want + /// to plot when we explicitly call the plot function. + /// This is the case when producing plots for papers, etc. + /// This is also the case in applications where we need + /// performance. + void touch(); + + /// True if user required the backend to close + bool should_close(); + + /// True if in quiet mode (not reactive) + bool quiet_mode() const; + + /// Set quite mode (non-reactive) + void quiet_mode(bool quiet_mode); + + /// True if in quiet mode (not reactive) + bool reactive_mode() const; + + /// Set quite mode (non-reactive) + void reactive_mode(bool reactive_mode); + + /// Turn on reactive mode (off quiet mode) + void ion(); + + /// Turn off reactive mode (on quiet mode) + void ioff(); + + public /* save figure */: + /// Save figure + bool save(const std::string &filename, const std::string &format); + bool save(const std::string &filename); + + public /* plot functions for figure */: + /// Create matrix of axes with scatter plots - X / Y + std::tuple>, + std::vector, + std::vector>> + plotmatrix(const std::vector> &X, + const std::vector> &Y, + std::string_view line_spec = "of", + bool histogram_on_diagonals = false); + + /// Create matrix of axes with scatter plots - X / X + std::tuple>, + std::vector, + std::vector>> + plotmatrix(const std::vector> &X, + std::string_view line_spec = "of", + bool histogram_on_diagonals = false) { + return this->plotmatrix(X, X, line_spec, histogram_on_diagonals); + } + + public /* figure properties */: + const std::shared_ptr &backend() const; + void + backend(const std::shared_ptr &new_backend); + + void name(std::string_view name); + std::string name() const; + + size_t number() const; + + void color(const color_array &c); + void color(const std::array &c); + void color(std::string_view c); + void color(const enum color &c); + color_array color() const; + + bool custom_color() const; + void custom_color(bool custom_color); + + void position(const std::array &c); + void position(unsigned x, unsigned y, unsigned w, unsigned h); + void position(unsigned x, unsigned y); + void size(unsigned w, unsigned h); + std::array position() const; + + unsigned x_position() const; + void x_position(unsigned x); + unsigned y_position() const; + void y_position(unsigned y); + unsigned width() const; + void width(unsigned w); + unsigned height() const; + void height(unsigned h); + + void number_title(bool number_title); + bool number_title() const; + + const std::string &font() const; + void font(std::string_view font); + + float font_size() const; + void font_size(float font_size); + + const std::string &title() const; + void title(std::string_view title); + + const color_array &title_color() const; + void title_color(const color_array &title_color); + + float title_font_size_multiplier() const; + void title_font_size_multiplier(float title_font_size_multiplier); + + /// Return if Figure is valid + explicit operator bool() const; + + protected: + // Draw, depending on the backend type + void send_draw_commands(); + void send_gnuplot_draw_commands(); + + protected /* run commands on a gnuplot pipe if that's our backend */: + /// \brief Send line and newline to gnu plot pipe and flush + /// We can buffer the lines until the end of data is sent + void run_command(const std::string &text); + + /// \brief Include a comment in the gnuplot code + /// This is useful when tracing the gnuplot commands + /// and when generating a gnuplot file. + void include_comment(const std::string &text); + + /// \brief Send commands to gnuplots + void flush_commands(); + + /// Plots an empty plot command + void plot_empty_plot(); + + /// \brief Run commands to set the appropriate window properties + /// This applies of member objects to the window (font, size, ...) + void run_figure_properties_command(); + void run_terminal_init_command(); + void run_window_color_command(); + void run_unset_window_color_command(); + void run_multiplot_command(); + + private: + [[nodiscard]] std::string generate_window_title() const; + + private: + // The default backend for this figure + std::shared_ptr backend_{nullptr}; + + // Figure properties + bool quiet_mode_ = true; + bool is_plotting_{false}; + std::string name_; + std::string title_; + color_array title_color_{0, 0, 0, 0}; + float title_font_size_multiplier_{1.4f}; + size_t number_{1}; + bool number_title_{true}; + // ARGB + color_array color_{0., 0.94f, 0.94f, 0.94f}; + bool custom_color_{false}; // was this color defined by the user + std::string font_{"Helvetica"}; + float font_size_{10.}; + + // Axes + std::vector> children_; + std::shared_ptr current_axes_; + + // Axes tiles + size_t current_tile_index_ = 0; + size_t tiledlayout_rows_ = 1; + size_t tiledlayout_cols_ = 1; + bool tiledlayout_flow_ = true; + }; + +} // namespace matplot + +#endif // MATPLOTPLUSPLUS_FIGURE_TYPE_H diff --git a/dependency/x86/third_party/matplotplusplus/1.2.0/include/matplot/core/legend.h b/dependency/x86/third_party/matplotplusplus/1.2.0/include/matplot/core/legend.h new file mode 100644 index 00000000..8226ab21 --- /dev/null +++ b/dependency/x86/third_party/matplotplusplus/1.2.0/include/matplot/core/legend.h @@ -0,0 +1,166 @@ +// +// Created by Alan Freitas on 2020-07-04. +// + +#ifndef MATPLOTPLUSPLUS_LEGEND_H +#define MATPLOTPLUSPLUS_LEGEND_H + +#include +#include +#include +#include +#include + +namespace matplot { + class axes_type; + + class MATPLOT_EXPORTS legend { + public: + enum class horizontal_alignment { left, center, right }; + + enum class vertical_alignment { top, center, bottom }; + + enum class general_alignment { + topleft, + top, + topright, + left, + center, + right, + bottomleft, + bottom, + bottomright, + }; + + public: + legend() = default; + legend(class axes_type *parent); + legend(class axes_type *parent, + std::initializer_list names); + legend(class axes_type *parent, const std::vector &names); + + public /* useful functions */: + void touch(); + const std::string &operator[](size_t index) const; + std::string &operator[](size_t index); + bool empty() const; + size_t size() const; + std::vector::const_iterator begin() const; + std::vector::iterator begin(); + std::vector::const_iterator end() const; + std::vector::iterator end(); + + public /* getter and setters */: + std::vector &strings(); + const std::vector &strings() const; + void strings(const std::vector &strings); + + void inside(bool inside); + bool inside() const; + + bool label_after_sample() const; + void label_after_sample(bool label_after_sample); + + bool box() const; + void box(bool box); + + const line_spec &box_line() const; + line_spec &box_line(); + void box_line(const line_spec &box_line); + + bool vertical() const; + void vertical(bool vertical); + + bool horizontal() const; + void horizontal(bool horizontal); + + // Legend location given a reference position + // If the position is automatic, the reference is the xlim + // If the position is a manual point, the reference is this point + general_alignment location() const; + void location(general_alignment alignment); + + horizontal_alignment horizontal_location() const; + void horizontal_location(horizontal_alignment horizontal_location); + + vertical_alignment vertical_location() const; + void vertical_location(vertical_alignment vertical_location); + + bool manual_position() const; + void manual_position(bool manual_position); + + const std::array &position() const; + void position(const std::array &position); + + bool invert() const; + void invert(bool invert); + + size_t num_columns() const; + void num_columns(size_t num_columns); + + size_t num_rows() const; + void num_rows(size_t num_rows); + + bool visible() const; + void visible(bool visible); + + const std::string &title() const; + void title(std::string_view title); + + const std::string &font_name() const; + void font_name(std::string_view font_name); + + float font_size() const; + void font_size(float font_size); + + const std::string &font_angle() const; + void font_angle(std::string_view font_angle); + + const std::string &font_weight() const; + void font_weight(std::string_view font_weight); + + const color_array &text_color() const; + void text_color(const color_array &text_color); + template void text_color(T c) { text_color(to_array(c)); } + + bool opaque() const; + void opaque(bool opaque); + + private: + // The keys + std::vector strings_{}; + std::string title_{""}; + + // Positioning + bool inside_{true}; + bool manual_position_{false}; + std::array position_{0.0, 0.0}; + horizontal_alignment horizontal_location_{horizontal_alignment::right}; + vertical_alignment vertical_location_{vertical_alignment::top}; + + // Font + std::string font_name_{"Helvetica"}; + float font_size_{11}; + std::string font_angle_{"normal"}; + std::string font_weight_{"bold"}; + color_array text_color_{0., 0, 0, 0}; + + // Style + bool box_{true}; + line_spec box_line_{"k-"}; + // color_array color_{0., 1, 1, 1}; + bool vertical_{true}; + bool label_after_sample_{true}; + bool invert_{false}; + bool visible_{true}; + bool opaque_{true}; + + size_t num_columns_{0}; + size_t num_rows_{0}; + + // Parent xlim + class axes_type *parent_{nullptr}; + }; +} // namespace matplot + +#endif // MATPLOTPLUSPLUS_LEGEND_H diff --git a/dependency/x86/third_party/matplotplusplus/1.2.0/include/matplot/core/line_spec.h b/dependency/x86/third_party/matplotplusplus/1.2.0/include/matplot/core/line_spec.h new file mode 100644 index 00000000..db0c0147 --- /dev/null +++ b/dependency/x86/third_party/matplotplusplus/1.2.0/include/matplot/core/line_spec.h @@ -0,0 +1,186 @@ +// +// Created by Alan Freitas on 2020-07-06. +// + +#ifndef MATPLOTPLUSPLUS_LINE_SPEC_H +#define MATPLOTPLUSPLUS_LINE_SPEC_H + +#include +#include +#include +#include + +namespace matplot { + class MATPLOT_EXPORTS line_spec { + public: + enum class line_style { + none, // no line + solid_line, // "-" + dashed_line, // "--" + dotted_line, // ":" + dash_dot_line, // "-." + }; + + enum class marker_style { + none, // "" -> gnuplot linetype -1 + plus_sign, // "+" -> gnuplot linetype 1 + circle, // "o" -> gnuplot linetype 6 + asterisk, // "*" -> gnuplot linetype 3 + point, // "." -> gnuplot linetype 7 + cross, // "x" -> gnuplot linetype 2 + square, // "s" / "square" -> gnuplot linetype 4 / 5 + diamond, // "d" / "diamond" -> gnuplot linetype 12 / 13 + upward_pointing_triangle, // "^" -> gnuplot linetype 8 / 9 + downward_pointing_triangle, // "v" -> gnuplot linetype 10 / 11 + right_pointing_triangle, // ">" -> gnuplot linetype (doest not + // exist) + left_pointing_triangle, // "<" -> gnuplot linetype (does not exist) + pentagram, // "p" / "pentagram" -> gnuplot linetype 14 / 15 + hexagram, // "h" / "hexagram" -> gnuplot linetype (does not exist) + custom, // https://stackoverflow.com/questions/16189187/gnuplot-using-custom-point-shapes-with-legend-entry + }; + + enum class style_to_plot { + // plot line with markers together + plot_line_and_marker, + // plot only line + plot_line_only, + // plot only markers + plot_marker_only, + // plot only marker face + plot_marker_face_only + }; + + public: + line_spec(); + explicit line_spec(std::string_view expr); + + template + line_spec(Pointer parent, std::string_view expr) + : line_spec(expr) { + touch_function_ = [parent]() { parent->touch(); }; + } + + public: + /// \brief Create string to apply this style in gnuplot + /// This includes the style for the line and the marker + /// It's only possible to set the color for one of them + std::string + plot_string(style_to_plot sty = style_to_plot::plot_line_and_marker, + bool include_style = true); + + /// Get line_spec properties from a string + void parse_string(std::string_view expr); + + /// \brief True if we can plot line and marker with only one plot + /// command We can plot them together "with linespoints" if: + /// - They both are different from none + /// - They have the same color + bool can_plot_line_and_marker_together(); + + /// \brief True if style includes a line + bool has_line(); + + /// \brief True if style includes a non custom marker + bool has_non_custom_marker(); + + /// \brief True if style includes a marker face + bool has_marker_face(); + + /// \brief True if line, marker, and marker face are the same color + [[nodiscard]] bool line_and_marker_are_the_same_color() const; + + /// \brief True if marker and marker face are the same color + [[nodiscard]] bool marker_and_face_are_the_same_color() const; + + /// Touch the parent element + void touch(); + + [[nodiscard]] const std::array &color() const; + [[nodiscard]] float alpha() const; + void color(const std::array &color); + void color(const std::array &color); + void color(std::initializer_list color); + void color(std::string_view color); + void color(enum color marker_color); + void alpha(float alpha); + [[nodiscard]] bool user_color() const; + void user_color(bool user_color); + + [[nodiscard]] line_style line_style() const; + void line_style(enum line_style line_style); + + [[nodiscard]] float line_width() const; + void line_width(float line_width); + + [[nodiscard]] enum marker_style marker_style() const; + void marker_style(enum marker_style marker_style); + void marker_style(std::string_view marker_style); + [[nodiscard]] enum marker_style marker() const; + template void marker(T marker) { marker_style(marker); } + + [[nodiscard]] const std::string &custom_marker() const; + void custom_marker(std::string_view custom_marker); + + [[nodiscard]] float marker_size() const; + void marker_size(float marker_size); + + const std::array &marker_color() const; + float marker_alpha() const; + void marker_color(const std::array &color); + void marker_color(const std::array &color); + void marker_color(std::initializer_list color); + void marker_color(std::string_view color); + void marker_color(enum color marker_color); + void marker_alpha(float alpha); + bool marker_user_color() const; + void marker_user_color(bool user_color); + + const std::array &marker_face_color() const; + float marker_face_alpha() const; + void marker_face_color(const std::array &color); + void marker_face_color(const std::array &color); + void marker_face_color(std::initializer_list color); + void marker_face_color(std::string_view color); + void marker_face_color(enum color marker_face_color); + void marker_face_alpha(float alpha); + bool marker_face_user_color() const; + void marker_face_user_color(bool user_color); + + bool marker_face() const; + void marker_face(bool marker_face); + + private: + // use labels for non-custom markers: + // set label '▶︎' at 2,2 + // set label '◀' at 3,3 + // set label '✶' at 4,4 + // plot cos(x) with linespoints linecolor rgb "#000000" dashtype 3 + // linewidth 3 linetype 4 unset label + private: + // Line + std::array color_{0, 0, 0.447f, 0.741f}; + // Did the user provide a color or is the color just a placeholder + bool user_color_{false}; + enum line_style line_style_ { line_style::none }; + float line_width_{0.5000}; + + // Marker + enum marker_style marker_style_ { marker_style::none }; + std::array marker_color_{0, 0, 0.447f, 0.741f}; + bool marker_user_color_{false}; + std::string custom_marker_{""}; + float marker_size_{6}; + + // Marker face + std::array marker_face_color_{0, 0.84f, 1., 1.}; + bool marker_face_user_color_{false}; + bool marker_face_ = false; + + // Function to touch the parent element + std::function touch_function_; + }; + +} // namespace matplot + +#endif // MATPLOTPLUSPLUS_LINE_SPEC_H diff --git a/dependency/x86/third_party/matplotplusplus/1.2.0/include/matplot/detail/config.h b/dependency/x86/third_party/matplotplusplus/1.2.0/include/matplot/detail/config.h new file mode 100644 index 00000000..a2c82aa4 --- /dev/null +++ b/dependency/x86/third_party/matplotplusplus/1.2.0/include/matplot/detail/config.h @@ -0,0 +1,13 @@ +// +// Copyright (c) 2023 alandefreitas (alandefreitas@gmail.com) +// +// Distributed under the Boost Software License, Version 1.0. +// https://www.boost.org/LICENSE_1_0.txt +// + +#ifndef MATPLOT_DETAIL_CONFIG_H +#define MATPLOT_DETAIL_CONFIG_H + +#include + +#endif //MATPLOT_DETAIL_CONFIG_H diff --git a/dependency/x86/third_party/matplotplusplus/1.2.0/include/matplot/detail/exports.h b/dependency/x86/third_party/matplotplusplus/1.2.0/include/matplot/detail/exports.h new file mode 100644 index 00000000..a7562d17 --- /dev/null +++ b/dependency/x86/third_party/matplotplusplus/1.2.0/include/matplot/detail/exports.h @@ -0,0 +1,42 @@ + +#ifndef MATPLOT_EXPORTS_H +#define MATPLOT_EXPORTS_H + +#ifdef SHARED_EXPORTS_BUILT_AS_STATIC +# define MATPLOT_EXPORTS +# define MATPLOT_NO_EXPORT +#else +# ifndef MATPLOT_EXPORTS +# ifdef matplot_EXPORTS + /* We are building this library */ +# define MATPLOT_EXPORTS __attribute__((visibility("default"))) +# else + /* We are using this library */ +# define MATPLOT_EXPORTS __attribute__((visibility("default"))) +# endif +# endif + +# ifndef MATPLOT_NO_EXPORT +# define MATPLOT_NO_EXPORT __attribute__((visibility("hidden"))) +# endif +#endif + +#ifndef MATPLOT_DEPRECATED +# define MATPLOT_DEPRECATED __attribute__ ((__deprecated__)) +#endif + +#ifndef MATPLOT_DEPRECATED_EXPORT +# define MATPLOT_DEPRECATED_EXPORT MATPLOT_EXPORTS MATPLOT_DEPRECATED +#endif + +#ifndef MATPLOT_DEPRECATED_NO_EXPORT +# define MATPLOT_DEPRECATED_NO_EXPORT MATPLOT_NO_EXPORT MATPLOT_DEPRECATED +#endif + +#if 0 /* DEFINE_NO_DEPRECATED */ +# ifndef MATPLOT_NO_DEPRECATED +# define MATPLOT_NO_DEPRECATED +# endif +#endif + +#endif /* MATPLOT_EXPORTS_H */ diff --git a/dependency/x86/third_party/matplotplusplus/1.2.0/include/matplot/freestanding/axes_functions.h b/dependency/x86/third_party/matplotplusplus/1.2.0/include/matplot/freestanding/axes_functions.h new file mode 100644 index 00000000..47802a58 --- /dev/null +++ b/dependency/x86/third_party/matplotplusplus/1.2.0/include/matplot/freestanding/axes_functions.h @@ -0,0 +1,485 @@ +// +// Created by Alan Freitas on 10/08/20. +// + +#ifndef MATPLOTPLUSPLUS_AXES_FUNCTIONS_H +#define MATPLOTPLUSPLUS_AXES_FUNCTIONS_H + +#include +#include + +namespace matplot { + using axes_handle = std::shared_ptr; + + /// \brief Create new axes + MATPLOT_EXPORTS + axes_handle axes(); + + /// \brief Create new axes + MATPLOT_EXPORTS + axes_handle axes(figure_handle parent, bool replace_if_overlap = false); + + /// \brief Set the current axes + MATPLOT_EXPORTS + axes_handle axes(axes_handle h); + + /// \brief Put axes in parent + MATPLOT_EXPORTS + axes_handle axes(axes_handle h, figure_handle parent, + bool replace_if_overlap = false); + + /// \brief Create new axes in a specific position with replace = false + MATPLOT_EXPORTS + axes_handle axes(std::array position); + + MATPLOT_EXPORTS + void hold(bool); + MATPLOT_EXPORTS + void hold(axes_handle, bool); + MATPLOT_EXPORTS + void hold(const std::vector &axs, bool); + + MATPLOT_EXPORTS + void box(bool); + MATPLOT_EXPORTS + void box(axes_handle, bool); + + /// Set view with azimuth and elevation + MATPLOT_EXPORTS + void view(float azimuth, float elevation); + MATPLOT_EXPORTS + void view(axes_handle ax, float azimuth, float elevation); + + /// Set view with azimuth and elevation + MATPLOT_EXPORTS + void rotate(float azimuth = 10., float elevation = 0.); + MATPLOT_EXPORTS + void rotate(axes_handle ax, float azimuth = 10., float elevation = 0.); + + /// Coordinates of a vector that starts at the center of the + /// plot box and points toward the camera (line-of-sight vector) + MATPLOT_EXPORTS + std::pair view(float x, float y, float z); + MATPLOT_EXPORTS + std::pair view(axes_handle ax, float x, float y, float z); + + /// Default line of sight for dim-D plots + /// If dim=2 "set view map" + /// If dim=3 set view to default + MATPLOT_EXPORTS + void view(size_t dim); + MATPLOT_EXPORTS + void view(axes_handle ax, size_t dim); + + /// Get view values + MATPLOT_EXPORTS + std::pair view(); + MATPLOT_EXPORTS + std::pair view(axes_handle ax); + + /// \brief Create new axes in a subplot + /// If the axes exist, make it the current axes. + /// If the axes overlap with existing axes, these are deleted, + /// unless the position is identical. + MATPLOT_EXPORTS + axes_handle subplot(size_t rows, size_t cols, size_t plot_id, + bool replace_if_same_position = false); + MATPLOT_EXPORTS + axes_handle subplot(figure_handle, size_t rows, size_t cols, size_t plot_id, + bool replace_if_same_position = false); + + /// \brief Make axes a subplot of its figure + MATPLOT_EXPORTS + axes_handle subplot(size_t rows, size_t cols, size_t plot_id, + axes_handle axes); + + /// \brief Create new axes in a subplot covering all positions in P + MATPLOT_EXPORTS + axes_handle subplot(size_t rows, size_t cols, + std::initializer_list P, + bool replace_if_same_position = false); + + /// \brief Create new axes in a specific position + MATPLOT_EXPORTS + axes_handle subplot(figure_handle f, std::array position, + bool replace_if_same_position = false); + MATPLOT_EXPORTS + axes_handle subplot(std::array position, + bool replace_if_same_position = false); + + /// \brief Make axes the current axes + /// Another way to axes(h) + MATPLOT_EXPORTS + axes_handle subplot(axes_handle h); + + /// \brief Make axes in a tiled layout + /// This is only very basic support for tiled + /// layouts. It does not include a tiledlayout + /// class we can use to adjust padding, spacing, + /// title, etc. + MATPLOT_EXPORTS + void tiledlayout(); + MATPLOT_EXPORTS + void tiledlayout(size_t rows, size_t cols); + MATPLOT_EXPORTS + axes_handle nexttile(); + MATPLOT_EXPORTS + axes_handle nexttile(size_t index); + + MATPLOT_EXPORTS + void title(std::string_view str); + MATPLOT_EXPORTS + void title(std::string_view str, const color_array &c); + + template + void title(std::string_view str, COLOR_TYPE c) { + title(str, to_array(c)); + } + + MATPLOT_EXPORTS + void title(axes_handle ax, std::string_view str); + MATPLOT_EXPORTS + void title(axes_handle ax, std::string_view str, const color_array &c); + + template + void title(axes_handle ax, std::string_view str, COLOR_TYPE c) { + title(ax, str, to_array(c)); + } + + MATPLOT_EXPORTS + void title(legend_handle lgd, std::string_view str); + + MATPLOT_EXPORTS + void sgtitle(std::string_view str); + MATPLOT_EXPORTS + void sgtitle(std::string_view str, const color_array &c); + + template + void sgtitle(std::string_view str, COLOR_TYPE c) { + sgtitle(str, to_array(c)); + } + + MATPLOT_EXPORTS + void sgtitle(axes_handle ax, std::string_view str); + MATPLOT_EXPORTS + void sgtitle(axes_handle ax, std::string_view str, const color_array &c); + + template + void sgtitle(axes_handle ax, std::string_view str, COLOR_TYPE c) { + sgtitle(ax, str, to_array(c)); + } + + MATPLOT_EXPORTS + void xlabel(std::string_view str); + MATPLOT_EXPORTS + void xlabel(axes_handle ax, std::string_view str); + MATPLOT_EXPORTS + void ylabel(std::string_view str); + MATPLOT_EXPORTS + void ylabel(axes_handle ax, std::string_view str); + MATPLOT_EXPORTS + void y2label(std::string_view str); + MATPLOT_EXPORTS + void y2label(axes_handle ax, std::string_view str); + MATPLOT_EXPORTS + void zlabel(std::string_view str); + MATPLOT_EXPORTS + void zlabel(axes_handle ax, std::string_view str); + + MATPLOT_EXPORTS + void xtickformat(std::string_view str); + MATPLOT_EXPORTS + void xtickformat(axes_handle ax, std::string_view str); + MATPLOT_EXPORTS + void ytickformat(std::string_view str); + MATPLOT_EXPORTS + void ytickformat(axes_handle ax, std::string_view str); + MATPLOT_EXPORTS + void ztickformat(std::string_view str); + MATPLOT_EXPORTS + void ztickformat(axes_handle ax, std::string_view str); + + MATPLOT_EXPORTS + std::string xtickformat(); + MATPLOT_EXPORTS + std::string xtickformat(axes_handle ax); + MATPLOT_EXPORTS + std::string ytickformat(); + MATPLOT_EXPORTS + std::string ytickformat(axes_handle ax); + MATPLOT_EXPORTS + std::string ztickformat(); + MATPLOT_EXPORTS + std::string ztickformat(axes_handle ax); + + MATPLOT_EXPORTS + void xticks(const std::vector &ticks); + MATPLOT_EXPORTS + void xticks(axes_handle ax, const std::vector &ticks); + MATPLOT_EXPORTS + void yticks(const std::vector &ticks); + MATPLOT_EXPORTS + void yticks(axes_handle ax, const std::vector &ticks); + MATPLOT_EXPORTS + void y2ticks(const std::vector &ticks); + MATPLOT_EXPORTS + void y2ticks(axes_handle ax, const std::vector &ticks); + MATPLOT_EXPORTS + void zticks(const std::vector &ticks); + MATPLOT_EXPORTS + void zticks(axes_handle ax, const std::vector &ticks); + + MATPLOT_EXPORTS + void xticks(std::initializer_list ticks); + MATPLOT_EXPORTS + void xticks(axes_handle ax, std::initializer_list ticks); + MATPLOT_EXPORTS + void yticks(std::initializer_list ticks); + MATPLOT_EXPORTS + void yticks(axes_handle ax, std::initializer_list ticks); + MATPLOT_EXPORTS + void y2ticks(std::initializer_list ticks); + MATPLOT_EXPORTS + void y2ticks(axes_handle ax, std::initializer_list ticks); + MATPLOT_EXPORTS + void zticks(std::initializer_list ticks); + MATPLOT_EXPORTS + void zticks(axes_handle ax, std::initializer_list ticks); + + MATPLOT_EXPORTS + void xticks(keyword_automatic_type); + MATPLOT_EXPORTS + void xticks(axes_handle ax, keyword_automatic_type); + MATPLOT_EXPORTS + void yticks(keyword_automatic_type); + MATPLOT_EXPORTS + void yticks(axes_handle ax, keyword_automatic_type); + MATPLOT_EXPORTS + void y2ticks(keyword_automatic_type); + MATPLOT_EXPORTS + void y2ticks(axes_handle ax, keyword_automatic_type); + MATPLOT_EXPORTS + void zticks(keyword_automatic_type); + MATPLOT_EXPORTS + void zticks(axes_handle ax, keyword_automatic_type); + + MATPLOT_EXPORTS + void xticklabels(const std::vector &ticks); + MATPLOT_EXPORTS + void xticklabels(axes_handle ax, const std::vector &ticks); + MATPLOT_EXPORTS + void yticklabels(const std::vector &ticks); + MATPLOT_EXPORTS + void yticklabels(axes_handle ax, const std::vector &ticks); + MATPLOT_EXPORTS + void y2ticklabels(const std::vector &ticks); + MATPLOT_EXPORTS + void y2ticklabels(axes_handle ax, const std::vector &ticks); + MATPLOT_EXPORTS + void zticklabels(const std::vector &ticks); + MATPLOT_EXPORTS + void zticklabels(axes_handle ax, const std::vector &ticks); + + MATPLOT_EXPORTS + void xticklabels(std::initializer_list ticks); + MATPLOT_EXPORTS + void xticklabels(axes_handle ax, std::initializer_list ticks); + MATPLOT_EXPORTS + void yticklabels(std::initializer_list ticks); + MATPLOT_EXPORTS + void yticklabels(axes_handle ax, std::initializer_list ticks); + MATPLOT_EXPORTS + void y2ticklabels(std::initializer_list ticks); + MATPLOT_EXPORTS + void y2ticklabels(axes_handle ax, std::initializer_list ticks); + MATPLOT_EXPORTS + void zticklabels(std::initializer_list ticks); + MATPLOT_EXPORTS + void zticklabels(axes_handle ax, std::initializer_list ticks); + + MATPLOT_EXPORTS + void xticklabels(keyword_automatic_type); + MATPLOT_EXPORTS + void xticklabels(axes_handle ax, keyword_automatic_type); + MATPLOT_EXPORTS + void yticklabels(keyword_automatic_type); + MATPLOT_EXPORTS + void yticklabels(axes_handle ax, keyword_automatic_type); + MATPLOT_EXPORTS + void y2ticklabels(keyword_automatic_type); + MATPLOT_EXPORTS + void y2ticklabels(axes_handle ax, keyword_automatic_type); + MATPLOT_EXPORTS + void zticklabels(keyword_automatic_type); + MATPLOT_EXPORTS + void zticklabels(axes_handle ax, keyword_automatic_type); + + MATPLOT_EXPORTS + void xtickangle(double degrees); + MATPLOT_EXPORTS + void xtickangle(axes_handle ax, double degrees); + MATPLOT_EXPORTS + void ytickangle(double degrees); + MATPLOT_EXPORTS + void ytickangle(axes_handle ax, double degrees); + MATPLOT_EXPORTS + void y2tickangle(double degrees); + MATPLOT_EXPORTS + void y2tickangle(axes_handle ax, double degrees); + MATPLOT_EXPORTS + void ztickangle(double degrees); + MATPLOT_EXPORTS + void ztickangle(axes_handle ax, double degrees); + + MATPLOT_EXPORTS + double xtickangle(); + MATPLOT_EXPORTS + double xtickangle(axes_handle ax); + MATPLOT_EXPORTS + double ytickangle(); + MATPLOT_EXPORTS + double ytickangle(axes_handle ax); + MATPLOT_EXPORTS + double y2tickangle(); + MATPLOT_EXPORTS + double y2tickangle(axes_handle ax); + MATPLOT_EXPORTS + double ztickangle(); + MATPLOT_EXPORTS + double ztickangle(axes_handle ax); + + MATPLOT_EXPORTS + void grid(axes_handle ax, bool v); + MATPLOT_EXPORTS + void grid(bool v); + + /// \brief Get the current axes + MATPLOT_EXPORTS + axes_handle gca(); + + MATPLOT_EXPORTS + void cla(); + MATPLOT_EXPORTS + void cla(axes_handle); + + /// Put legends on the figure + MATPLOT_EXPORTS + legend_handle legend(axes_handle ax, const std::vector &names); + MATPLOT_EXPORTS + legend_handle legend(const std::vector &names); + + MATPLOT_EXPORTS + legend_handle legend(axes_handle ax, bool visible = true); + MATPLOT_EXPORTS + legend_handle legend(bool visible = true); + + MATPLOT_EXPORTS + legend_handle legend(std::vector objs, + const std::vector &names); + + // Hackfix for a compiler bug in MSVC + namespace { + template + legend_handle legend(axes_handle ax, std::string_view name, + Args const &... next_name) { + std::vector legends = {std::string(name), std::string(next_name)...}; + return ::matplot::legend(ax, legends); + } + + template + legend_handle legend(std::string_view name, + Args const &... next_name) { + return legend(gca(), name, next_name...); + } + } // namespace + + MATPLOT_EXPORTS + void colormap(axes_handle ax, const std::vector> &map); + MATPLOT_EXPORTS + void colormap(const std::vector> &map); + + MATPLOT_EXPORTS + std::vector> colormap(axes_handle ax); + MATPLOT_EXPORTS + std::vector> colormap(); + + template + void colororder(axes_handle ax, const std::vector &order) { + ax->colororder(order); + } + + template void colororder(const std::vector &order) { + colororder(gca(), order); + } + + template void colororder(std::initializer_list order) { + colororder(gca(), std::vector{order}); + } + + /// Set x limits + MATPLOT_EXPORTS + void xrange(const std::array &range); + MATPLOT_EXPORTS + void xrange(axes_handle ah, const std::array &range); + + /// Set y limits + MATPLOT_EXPORTS + void yrange(const std::array &range); + MATPLOT_EXPORTS + void yrange(axes_handle ah, const std::array &range); + + /// Enable colorbar axis + MATPLOT_EXPORTS + axis_type &colorbar(); + MATPLOT_EXPORTS + axis_type &colorbar(axes_handle ah); + MATPLOT_EXPORTS + class axis_type &colorbar(bool v); + MATPLOT_EXPORTS + class axis_type &colorbar(axes_handle ah, bool v); + + /// Set limits of x and y axes + MATPLOT_EXPORTS + void axis(const std::array &limits_x_y); + MATPLOT_EXPORTS + void axis(axes_handle axes_handle, const std::array &limits_x_y); + MATPLOT_EXPORTS + void axis(std::initializer_list axes_handles, + const std::array &limits_x_y); + + /// Make axis visible invisible + MATPLOT_EXPORTS + void axis(bool); + + /// Set limits to automatic + MATPLOT_EXPORTS + void axis(keyword_automatic_type); + + /// Set limits to manual + MATPLOT_EXPORTS + void axis(keyword_manual_type); + + /// Reverse y-axis + MATPLOT_EXPORTS + void axis(keyword_ij_type); + + /// Make xlim equal size (ratio -1) + MATPLOT_EXPORTS + void axis(keyword_equal_type); + MATPLOT_EXPORTS + void axis(axes_handle, keyword_equal_type); + + /// Make xlim equal size (ratio -1) + MATPLOT_EXPORTS + void axis(keyword_tight_type); + MATPLOT_EXPORTS + void axis(axes_handle, keyword_tight_type); + + /// Make xlim equal size (ratio 1) + MATPLOT_EXPORTS + void axis(keyword_square_type); + MATPLOT_EXPORTS + void axis(axes_handle, keyword_square_type); +} // namespace matplot + +#endif // MATPLOTPLUSPLUS_AXES_FUNCTIONS_H diff --git a/dependency/x86/third_party/matplotplusplus/1.2.0/include/matplot/freestanding/axes_lim.h b/dependency/x86/third_party/matplotplusplus/1.2.0/include/matplot/freestanding/axes_lim.h new file mode 100644 index 00000000..6827a17a --- /dev/null +++ b/dependency/x86/third_party/matplotplusplus/1.2.0/include/matplot/freestanding/axes_lim.h @@ -0,0 +1,239 @@ +// +// Created by Alan Freitas on 04/08/20. +// + +#ifndef MATPLOTPLUSPLUS_AXES_LIM_H +#define MATPLOTPLUSPLUS_AXES_LIM_H + +#include + +namespace matplot { + inline std::array xlim() { return gca()->xlim(); } + + inline void xlim(const std::array &lim) { gca()->xlim(lim); } + + inline void xlim(std::initializer_list lim) { + if (lim.size() >= 2) { + gca()->xlim(to_array<2>(lim)); + } + } + + template void xlim(axes_handle ax, Args&&... args) { + ax->xlim(std::forward(args)...); + } + + template + void xlim(NotAxesHandle x, Args&&... args) { + gca()->xlim(x, std::forward(args)...); + } + + inline std::array cblim() { return gca()->cblim(); } + + inline void cblim(const std::array &lim) { gca()->cblim(lim); } + + inline void cblim(std::initializer_list lim) { + if (lim.size() >= 2) { + gca()->cblim(to_array<2>(lim)); + } + } + + template void cblim(axes_handle ax, Args&&... args) { + ax->cblim(std::forward(args)...); + } + + template + void cblim(NotAxesHandle x, Args&&... args) { + gca()->cblim(x, std::forward(args)...); + } + + inline std::array caxis() { return gca()->cblim(); } + + inline void caxis(const std::array &lim) { gca()->cblim(lim); } + + inline void caxis(std::initializer_list lim) { + if (lim.size() >= 2) { + gca()->cblim(to_array<2>(lim)); + } + } + + template void caxis(axes_handle ax, Args&&... args) { + ax->cblim(std::forward(args)...); + } + + template + void caxis(NotAxesHandle x, Args&&... args) { + gca()->cblim(x, std::forward(args)...); + } + + inline std::array x2lim() { return gca()->x2lim(); } + + inline void x2lim(const std::array &lim) { gca()->x2lim(lim); } + + inline void x2lim(std::initializer_list lim) { + if (lim.size() >= 2) { + gca()->x2lim(to_array<2>(lim)); + } + } + + template void x2lim(axes_handle ax, Args&&... args) { + ax->x2lim(std::forward(args)...); + } + + template + void x2lim(NotAxesHandle x, Args&&... args) { + gca()->x2lim(x, std::forward(args)...); + } + + inline std::array ylim() { return gca()->ylim(); } + + inline void ylim(const std::array &lim) { gca()->ylim(lim); } + + inline void ylim(std::initializer_list lim) { + if (lim.size() >= 2) { + gca()->ylim(to_array<2>(lim)); + } + } + + template void ylim(axes_handle ax, Args&&... args) { + ax->ylim(std::forward(args)...); + } + + template + void ylim(NotAxesHandle x, Args&&... args) { + gca()->ylim(x, std::forward(args)...); + } + + inline std::array y2lim() { return gca()->y2lim(); } + + inline void y2lim(const std::array &lim) { gca()->y2lim(lim); } + + inline void y2lim(std::initializer_list lim) { + if (lim.size() >= 2) { + gca()->y2lim(to_array<2>(lim)); + } + } + + template void y2lim(axes_handle ax, Args&&... args) { + ax->y2lim(std::forward(args)...); + } + + template + void y2lim(NotAxesHandle x, Args&&... args) { + gca()->y2lim(x, std::forward(args)...); + } + + inline std::array zlim() { return gca()->zlim(); } + + inline void zlim(const std::array &lim) { gca()->zlim(lim); } + + inline void zlim(std::initializer_list lim) { + if (lim.size() >= 2) { + gca()->zlim(to_array<2>(lim)); + } + } + + template void zlim(axes_handle ax, Args&&... args) { + ax->zlim(std::forward(args)...); + } + + template + void zlim(NotAxesHandle x, Args&&... args) { + gca()->zlim(x, std::forward(args)...); + } + + inline std::array rlim() { return gca()->rlim(); } + + inline void rlim(const std::array &lim) { gca()->rlim(lim); } + + inline void rlim(std::initializer_list lim) { + if (lim.size() >= 2) { + gca()->rlim(to_array<2>(lim)); + } + } + + template void rlim(axes_handle ax, Args&&... args) { + ax->rlim(std::forward(args)...); + } + + template + void rlim(NotAxesHandle x, Args&&... args) { + gca()->rlim(x, std::forward(args)...); + } + + inline std::array tlim() { return gca()->tlim(); } + + inline void tlim(const std::array &lim) { gca()->tlim(lim); } + + inline void tlim(std::initializer_list lim) { + if (lim.size() >= 2) { + gca()->tlim(to_array<2>(lim)); + } + } + + template void tlim(axes_handle ax, Args&&... args) { + ax->tlim(std::forward(args)...); + } + + template + void tlim(NotAxesHandle x, Args&&... args) { + gca()->tlim(x, std::forward(args)...); + } + + inline std::array xlim(axes_handle ax) { + return ax->xlim(); + } + + inline void xlim(axes_handle ax, const std::array &lim) { + ax->xlim(lim); + } + + inline std::array x2lim(axes_handle ax) { + return ax->x2lim(); + } + + inline void x2lim(axes_handle ax, const std::array &lim) { + ax->x2lim(lim); + } + + inline std::array ylim(axes_handle ax) { + return ax->ylim(); + } + + inline void ylim(axes_handle ax, const std::array &lim) { + ax->ylim(lim); + } + + inline std::array y2lim(axes_handle ax) { + return ax->y2lim(); + } + + inline void y2lim(axes_handle ax, const std::array &lim) { + ax->y2lim(lim); + } + + inline std::array zlim(axes_handle ax) { + return ax->zlim(); + } + + inline void zlim(axes_handle ax, const std::array &lim) { + ax->zlim(lim); + } + + inline std::array rlim(axes_handle ax) { + return ax->rlim(); + } + + inline void rlim(axes_handle ax, const std::array &lim) { + ax->rlim(lim); + } + + inline std::array tlim(axes_handle ax) { + return ax->tlim(); + } + + inline void tlim(axes_handle ax, const std::array &lim) { + ax->tlim(lim); + } +} // namespace matplot + +#endif // MATPLOTPLUSPLUS_AXES_LIM_H diff --git a/dependency/x86/third_party/matplotplusplus/1.2.0/include/matplot/freestanding/figure_functions.h b/dependency/x86/third_party/matplotplusplus/1.2.0/include/matplot/freestanding/figure_functions.h new file mode 100644 index 00000000..801a2b0e --- /dev/null +++ b/dependency/x86/third_party/matplotplusplus/1.2.0/include/matplot/freestanding/figure_functions.h @@ -0,0 +1,10 @@ +// +// Created by Alan Freitas on 11/08/20. +// + +#ifndef MATPLOTPLUSPLUS_FIGURE_FUNCTIONS_H +#define MATPLOTPLUSPLUS_FIGURE_FUNCTIONS_H + +namespace matplot {} + +#endif // MATPLOTPLUSPLUS_FIGURE_FUNCTIONS_H diff --git a/dependency/x86/third_party/matplotplusplus/1.2.0/include/matplot/freestanding/histcounts.h b/dependency/x86/third_party/matplotplusplus/1.2.0/include/matplot/freestanding/histcounts.h new file mode 100644 index 00000000..6b86222c --- /dev/null +++ b/dependency/x86/third_party/matplotplusplus/1.2.0/include/matplot/freestanding/histcounts.h @@ -0,0 +1,64 @@ +// +// Created by Alan Freitas on 10/08/20. +// + +#ifndef MATPLOTPLUSPLUS_HISTCOUNTS_H +#define MATPLOTPLUSPLUS_HISTCOUNTS_H + +#include + +#include + +namespace matplot { + /// Histogram count with custom binning and custom normalization + /// \return Pair with + MATPLOT_EXPORTS + std::pair, std::vector> + histcounts(const std::vector &data, + enum histogram::binning_algorithm binning_alg = + histogram::binning_algorithm::automatic, + enum histogram::normalization normalization_alg = + histogram::normalization::count); + + /// Histogram count with automatic binning and custom normalization + /// \return pair with + MATPLOT_EXPORTS + std::pair, std::vector> + histcounts(const std::vector &data, + enum histogram::normalization normalization_alg); + + /// Histogram count with fixed number of bins + /// \return pair with + MATPLOT_EXPORTS + std::pair, std::vector> + histcounts(const std::vector &data, size_t nbins, + enum histogram::normalization normalization_alg = + histogram::normalization::count); + + /// Histogram count with fixed edges + /// \return normalized values for each edge + MATPLOT_EXPORTS + std::vector + histcounts(const std::vector &data, + const std::vector &edges, + enum histogram::normalization normalization_alg = + histogram::normalization::count); + + /// Normalize the number of points in a bin + MATPLOT_EXPORTS + std::vector> + histnormalize2(const std::vector> &bin_count, + const std::vector &xbin_edges, + const std::vector &ybin_edges, size_t data_size, + enum histogram::normalization normalization_algorithm); + + /// Count number of points in each bin defined by the 2 dimensional edges + MATPLOT_EXPORTS + std::vector> histcounts2( + const std::vector &x_data, const std::vector &y_data, + const std::vector &x_edges, const std::vector &y_edges, + enum histogram::normalization normalization_algorithm = + histogram::normalization::count); +} // namespace matplot + +#endif // MATPLOTPLUSPLUS_HISTCOUNTS_H diff --git a/dependency/x86/third_party/matplotplusplus/1.2.0/include/matplot/freestanding/plot.h b/dependency/x86/third_party/matplotplusplus/1.2.0/include/matplot/freestanding/plot.h new file mode 100644 index 00000000..a7af0004 --- /dev/null +++ b/dependency/x86/third_party/matplotplusplus/1.2.0/include/matplot/freestanding/plot.h @@ -0,0 +1,989 @@ +// +// Created by Alan Freitas on 2020-07-08. +// + +#ifndef MATPLOTPLUSPLUS_PLOT_H +#define MATPLOTPLUSPLUS_PLOT_H + +#include +#include + +#include +#include + +#include +#include + +#include + +/** + * These are the freestanding plot functions + * These functions will call the corresponding functions in the axes handle + * If no axes handle is given, it will call the function in the current + * axes handle in the current figure. + * If there is no current axes handle, one is created in the current figure. + * If there is no current figure, one is created. + * + * They always forward the arguments as a parameter pack class ...Args. + * One problem with this is that the functions cannot infer what to do with + * initializer lists. So one needs to pass an explicit vector or array to + * the functions. In some cases, we explicitly define these shortcut + * functions without templates to make the use of initializer lists + * possible. + */ +namespace matplot { + template + auto plot(NotAxesHandle x, Args&&... args) { + return gca()->plot(x, std::forward(args)...); + } + + template auto plot(axes_handle ax, Args&&... args) { + return ax->plot(std::forward(args)...); + } + + inline line_handle plot(const std::vector &x, + const std::vector &y, + std::string_view line_spec = "") { + return gca()->plot(x, y, line_spec); + } + + inline line_handle plot(const std::vector &y, + std::string_view line_spec = "") { + return gca()->plot(y, line_spec); + } + + template + auto plot(const std::vector &x, const std::vector &y, + std::string_view line_spec, Args&&... args) { + return gca()->plot(x, y, line_spec, std::forward(args)...); + } + + template + auto plot(const std::vector &x, const std::vector &y, + const std::vector &x2, Args&&... args) { + return gca()->plot(x, y, x2, std::forward(args)...); + } + + template + auto plot(const std::vector &y, std::string_view line_spec, + Args&&... args) { + return gca()->plot(y, line_spec, std::forward(args)...); + } + + inline line_handle plot(axes_handle ax, const std::vector &x, + const std::vector &y, + std::string_view line_spec = "") { + return ax->plot(x, y, line_spec); + } + + inline line_handle plot(axes_handle ax, const std::vector &y, + std::string_view line_spec = "") { + return ax->plot(y, line_spec); + } + + template + auto plot(axes_handle ax, const std::vector &x, + const std::vector &y, std::string_view line_spec, + Args&&... args) { + return ax->plot(x, y, line_spec, std::forward(args)...); + } + + template + auto plot(axes_handle ax, const std::vector &x, + const std::vector &y, const std::vector &x2, + Args&&... args) { + return ax->plot(x, y, x2, std::forward(args)...); + } + + template + auto plot(axes_handle ax, const std::vector &y, + std::string_view line_spec, Args&&... args) { + return ax->plot(y, line_spec, std::forward(args)...); + } + + template + auto loglog(NotAxesHandle x, Args&&... args) { + return gca()->loglog(x, std::forward(args)...); + } + + template auto loglog(axes_handle ax, Args&&... args) { + return ax->loglog(std::forward(args)...); + } + + template + auto semilogx(NotAxesHandle x, Args&&... args) { + return gca()->semilogx(x, std::forward(args)...); + } + + template auto semilogx(axes_handle ax, Args&&... args) { + return ax->semilogx(std::forward(args)...); + } + + template + auto semilogy(NotAxesHandle x, Args&&... args) { + return gca()->semilogy(x, std::forward(args)...); + } + + template auto semilogy(axes_handle ax, Args&&... args) { + return ax->semilogy(std::forward(args)...); + } + + template + auto rgbplot(NotAxesHandle x, Args&&... args) { + return gca()->rgbplot(x, std::forward(args)...); + } + + template auto rgbplot(axes_handle ax, Args&&... args) { + return ax->rgbplot(std::forward(args)...); + } + + template + auto plot3(NotAxesHandle x, Args&&... args) { + return gca()->plot3(x, std::forward(args)...); + } + + template auto plot3(axes_handle ax, Args&&... args) { + return ax->plot3(std::forward(args)...); + } + + template + auto stairs(NotAxesHandle x, Args&&... args) { + return gca()->stairs(x, std::forward(args)...); + } + + template auto stairs(axes_handle ax, Args&&... args) { + return ax->stairs(std::forward(args)...); + } + + template + auto errorbar(NotAxesHandle x, Args&&... args) { + return gca()->errorbar(x, std::forward(args)...); + } + + template auto errorbar(axes_handle ax, Args&&... args) { + return ax->errorbar(std::forward(args)...); + } + + template + auto area(NotAxesHandle x, Args&&... args) { + return gca()->area(x, std::forward(args)...); + } + + template auto area(axes_handle ax, Args&&... args) { + return ax->area(std::forward(args)...); + } + + template + auto fplot(NotAxesHandle x, Args&&... args) { + return gca()->fplot(x, std::forward(args)...); + } + + template auto fplot(axes_handle ax, Args&&... args) { + return ax->fplot(std::forward(args)...); + } + + template + auto fimplicit(NotAxesHandle x, Args&&... args) { + return gca()->fimplicit(x, std::forward(args)...); + } + + template auto fimplicit(axes_handle ax, Args&&... args) { + return ax->fimplicit(std::forward(args)...); + } + + template + auto fplot3(NotAxesHandle x, Args&&... args) { + return gca()->fplot3(x, std::forward(args)...); + } + + template auto fplot3(axes_handle ax, Args&&... args) { + return ax->fplot3(std::forward(args)...); + } + + template + auto hist(NotAxesHandle x, Args&&... args) { + return gca()->hist(x, std::forward(args)...); + } + + template auto hist(axes_handle ax, Args&&... args) { + return ax->hist(std::forward(args)...); + } + + inline size_t morebins(histogram_handle h, double bin_increase = 0.1) { + return h->morebins(bin_increase); + } + + inline size_t fewerbins(histogram_handle h, double bin_decrease = 0.1) { + return h->fewerbins(bin_decrease); + } + + template + auto binscatter(NotAxesHandle x, Args&&... args) { + return gca()->binscatter(x, std::forward(args)...); + } + + template auto binscatter(axes_handle ax, Args&&... args) { + return ax->binscatter(std::forward(args)...); + } + + template + auto hist2(NotAxesHandle x, Args&&... args) { + return gca()->hist2(x, std::forward(args)...); + } + + template auto hist2(axes_handle ax, Args&&... args) { + return ax->hist2(std::forward(args)...); + } + + template + auto bar(NotAxesHandle x, Args&&... args) { + return gca()->bar(x, std::forward(args)...); + } + + template auto bar(axes_handle ax, Args&&... args) { + return ax->bar(std::forward(args)...); + } + + template + auto barstacked(NotAxesHandle x, Args&&... args) { + return gca()->barstacked(x, std::forward(args)...); + } + + template auto barstacked(axes_handle ax, Args&&... args) { + return ax->barstacked(std::forward(args)...); + } + + template + auto heatmap(NotAxesHandle x, Args&&... args) { + return gca()->heatmap(x, std::forward(args)...); + } + + template auto heatmap(axes_handle ax, Args&&... args) { + return ax->heatmap(std::forward(args)...); + } + + template + auto pcolor(NotAxesHandle x, Args&&... args) { + return gca()->pcolor(x, std::forward(args)...); + } + + template auto pcolor(axes_handle ax, Args&&... args) { + return ax->pcolor(std::forward(args)...); + } + + template + auto parallelplot(NotAxesHandle x, Args&&... args) { + return gca()->parallelplot(x, std::forward(args)...); + } + + template auto parallelplot(axes_handle ax, Args&&... args) { + return ax->parallelplot(std::forward(args)...); + } + + template + auto pie(NotAxesHandle x, Args&&... args) { + return gca()->pie(x, std::forward(args)...); + } + + template auto pie(axes_handle ax, Args&&... args) { + return ax->pie(std::forward(args)...); + } + + template + auto plotmatrix(NotFigureHandle x, Args&&... args) { + return gcf()->plotmatrix(x, std::forward(args)...); + } + + template auto plotmatrix(figure_handle f, Args&&... args) { + return f->plotmatrix(std::forward(args)...); + } + + template + auto scatter(NotAxesHandle x, Args&&... args) { + return gca()->scatter(x, std::forward(args)...); + } + + template auto scatter(axes_handle ax, Args&&... args) { + return ax->scatter(std::forward(args)...); + } + + template + auto scatter3(NotAxesHandle x, Args&&... args) { + return gca()->scatter3(x, std::forward(args)...); + } + + template auto scatter3(axes_handle ax, Args&&... args) { + return ax->scatter3(std::forward(args)...); + } + + template + auto wordcloud(NotAxesHandle x, Args&&... args) { + return gca()->wordcloud(x, std::forward(args)...); + } + + template auto wordcloud(axes_handle ax, Args&&... args) { + return ax->wordcloud(std::forward(args)...); + } + + template + auto pareto(NotAxesHandle x, Args&&... args) { + return gca()->pareto(x, std::forward(args)...); + } + + template auto pareto(axes_handle ax, Args&&... args) { + return ax->pareto(std::forward(args)...); + } + + template + auto stem(NotAxesHandle x, Args&&... args) { + return gca()->stem(x, std::forward(args)...); + } + + template auto stem(axes_handle ax, Args&&... args) { + return ax->stem(std::forward(args)...); + } + + template + auto stem3(NotAxesHandle x, Args&&... args) { + return gca()->stem3(x, std::forward(args)...); + } + + template auto stem3(axes_handle ax, Args&&... args) { + return ax->stem3(std::forward(args)...); + } + + template + auto geobubble(NotAxesHandle x, Args&&... args) { + return gca()->geobubble(x, std::forward(args)...); + } + + template auto geobubble(axes_handle ax, Args&&... args) { + return ax->geobubble(std::forward(args)...); + } + + template + auto geodensityplot(NotAxesHandle x, Args&&... args) { + return gca()->geodensityplot(x, std::forward(args)...); + } + + template auto geodensityplot(axes_handle ax, Args&&... args) { + return ax->geodensityplot(std::forward(args)...); + } + + template + auto geoplot(NotAxesHandle x, Args&&... args) { + return gca()->geoplot(x, std::forward(args)...); + } + + template auto geoplot(axes_handle ax, Args&&... args) { + return ax->geoplot(std::forward(args)...); + } + + inline auto geoplot() { return gca()->geoplot(); } + + template + void geolimits(NotAxesHandle x, Args&&... args) { + gca()->geolimits(x, std::forward(args)...); + } + + template void geolimits(axes_handle ax, Args&&... args) { + ax->geolimits(std::forward(args)...); + } + + inline void geolimits(const std::array &latitude, + const std::array &longitude) { + gca()->geolimits(latitude, longitude); + } + + inline void geolimits(axes_handle ax, const std::array &latitude, + const std::array &longitude) { + ax->geolimits(latitude, longitude); + } + + template + auto geoscatter(NotAxesHandle x, Args&&... args) { + return gca()->geoscatter(x, std::forward(args)...); + } + + template auto geoscatter(axes_handle ax, Args&&... args) { + return ax->geoscatter(std::forward(args)...); + } + + template + auto compass(NotAxesHandle x, Args&&... args) { + return gca()->compass(x, std::forward(args)...); + } + + template auto compass(axes_handle ax, Args&&... args) { + return ax->compass(std::forward(args)...); + } + + template + auto ezpolar(NotAxesHandle x, Args&&... args) { + return gca()->ezpolar(x, std::forward(args)...); + } + + template auto ezpolar(axes_handle ax, Args&&... args) { + return ax->ezpolar(std::forward(args)...); + } + + template + auto polarhistogram(NotAxesHandle x, Args&&... args) { + return gca()->polarhistogram(x, std::forward(args)...); + } + + template auto polarhistogram(axes_handle ax, Args&&... args) { + return ax->polarhistogram(std::forward(args)...); + } + + template + auto polarplot(NotAxesHandle x, Args&&... args) { + return gca()->polarplot(x, std::forward(args)...); + } + + template auto polarplot(axes_handle ax, Args&&... args) { + return ax->polarplot(std::forward(args)...); + } + + template + auto polarscatter(NotAxesHandle x, Args&&... args) { + return gca()->polarscatter(x, std::forward(args)...); + } + + template auto polarscatter(axes_handle ax, Args&&... args) { + return ax->polarscatter(std::forward(args)...); + } + + template auto contour(axes_handle ax, Args&&... args) { + return ax->contour(std::forward(args)...); + } + + template + auto contour(axes_handle ax, T1 v1, T2 v2, T3 v3, + const std::vector &il) { + return ax->contour(v1, v2, v3, il); + } + + template + auto contour(NotAxesHandle x, Args&&... args) { + return contour(gca(), x, std::forward(args)...); + } + + template auto contourf(axes_handle ax, Args&&... args) { + return ax->contourf(std::forward(args)...); + } + + template + auto contourf(axes_handle ax, T1 v1, T2 v2, T3 v3, + const std::vector &il) { + return ax->contourf(v1, v2, v3, il); + } + + template + auto contourf(T1 v1, T2 v2, T3 v3, const std::vector &il) { + return gca()->contourf(v1, v2, v3, il); + } + + template + auto contourf(NotAxesHandle x, Args&&... args) { + return contourf(gca(), x, std::forward(args)...); + } + + template auto fcontour(axes_handle ax, Args&&... args) { + return ax->fcontour(std::forward(args)...); + } + + template + auto fcontour(NotAxesHandle x, Args&&... args) { + return gca()->fcontour(x, std::forward(args)...); + } + + inline contours_handle fcontour(axes_type::fcontour_function_type fn, + const std::array &xy_range, + std::vector levels, + std::string_view line_spec = "") { + return gca()->fcontour(fn, xy_range, levels, line_spec); + } + + inline contours_handle fcontour(axes_type::fcontour_function_type fn, + std::string_view line_spec) { + return gca()->fcontour(fn, line_spec); + } + + inline contours_handle fcontour(axes_handle ax, + axes_type::fcontour_function_type fn, + const std::array &xy_range, + std::vector levels, + std::string_view line_spec = "") { + return ax->fcontour(fn, xy_range, levels, line_spec); + } + + inline contours_handle fcontour(axes_handle ax, + axes_type::fcontour_function_type fn, + std::string_view line_spec) { + return ax->fcontour(fn, line_spec); + } + + template + auto feather(NotAxesHandle x, Args&&... args) { + return gca()->feather(x, std::forward(args)...); + } + + template auto feather(axes_handle ax, Args&&... args) { + return ax->feather(std::forward(args)...); + } + + template + auto quiver(NotAxesHandle x, Args&&... args) { + return gca()->quiver(x, std::forward(args)...); + } + + template auto quiver(axes_handle ax, Args&&... args) { + return ax->quiver(std::forward(args)...); + } + + template + auto quiver3(NotAxesHandle x, Args&&... args) { + return gca()->quiver3(x, std::forward(args)...); + } + + template auto quiver3(axes_handle ax, Args&&... args) { + return ax->quiver3(std::forward(args)...); + } + + template + auto fence(NotAxesHandle x, Args&&... args) { + return gca()->fence(x, std::forward(args)...); + } + + template auto fence(axes_handle ax, Args&&... args) { + return ax->fence(std::forward(args)...); + } + + template + auto fmesh(NotAxesHandle x, Args&&... args) { + return gca()->fmesh(x, std::forward(args)...); + } + + template auto fmesh(axes_handle ax, Args&&... args) { + return ax->fmesh(std::forward(args)...); + } + + template + auto fsurf(NotAxesHandle x, Args&&... args) { + return gca()->fsurf(x, std::forward(args)...); + } + + template auto fsurf(axes_handle ax, Args&&... args) { + return ax->fsurf(std::forward(args)...); + } + + inline surface_handle fsurf(axes_type::fcontour_function_type fn, + const std::array &x_range, + const std::array &y_range, + std::string_view line_spec = "", + double mesh_density = 40) { + return gca()->fsurf(fn, x_range, y_range, line_spec, mesh_density); + } + + inline surface_handle fsurf(axes_type::fcontour_function_type funx, + axes_type::fcontour_function_type funy, + axes_type::fcontour_function_type funz, + const std::array &u_range, + const std::array &v_range, + std::string_view line_spec = "", + double mesh_density = 40) { + return gca()->fsurf(funx, funy, funz, u_range, v_range, line_spec, + mesh_density); + } + + /// Function surf + /// Grid / Both ranges in the same array size 4 + inline surface_handle fsurf(axes_type::fcontour_function_type fn, + const std::array &xy_range, + std::string_view line_spec = "", + double mesh_density = 40) { + return gca()->fsurf(fn, xy_range, line_spec, mesh_density); + } + + /// Function surf + /// Grid / Both ranges in the same array size 4 + inline surface_handle fsurf(axes_type::fcontour_function_type fn, + std::initializer_list xy_range, + std::string_view line_spec = "", + double mesh_density = 40) { + return gca()->fsurf(fn, xy_range, line_spec, mesh_density); + } + + /// Parametric / Both ranges in the same array size 4 + inline surface_handle fsurf(axes_type::fcontour_function_type funx, + axes_type::fcontour_function_type funy, + axes_type::fcontour_function_type funz, + const std::array &uv_range, + std::string_view line_spec = "", + double mesh_density = 40) { + return gca()->fsurf(funx, funy, funz, uv_range, line_spec, + mesh_density); + } + + /// Function surf + /// Grid / Both ranges in the same array size 2 + inline surface_handle + fsurf(axes_type::fcontour_function_type fn, + const std::array &xy_range = {-5, +5}, + std::string_view line_spec = "", double mesh_density = 40) { + return gca()->fsurf(fn, xy_range, line_spec, mesh_density); + } + + /// Function surf + /// Parametric / Both ranges in the same array size 2 + inline surface_handle + fsurf(axes_type::fcontour_function_type funx, + axes_type::fcontour_function_type funy, + axes_type::fcontour_function_type funz, + const std::array &uv_range = {-5, +5}, + std::string_view line_spec = "", double mesh_density = 40) { + return gca()->fsurf(funx, funy, funz, uv_range, line_spec, + mesh_density); + } + + inline surface_handle fsurf(axes_type::fcontour_function_type funx, + axes_type::fcontour_function_type funy, + axes_type::fcontour_function_type funz, + std::initializer_list &uv_range, + std::string_view line_spec = "", + double mesh_density = 40) { + return gca()->fsurf(funx, funy, funz, uv_range, line_spec, + mesh_density); + } + + /// Function surf - Core function + inline surface_handle fsurf(axes_handle ax, + axes_type::fcontour_function_type fn, + const std::array &x_range, + const std::array &y_range, + std::string_view line_spec = "", + double mesh_density = 40) { + return ax->fsurf(fn, x_range, y_range, line_spec, mesh_density); + } + + /// Function surf - Parametric + /// Core parametric function + inline surface_handle fsurf(axes_handle ax, + axes_type::fcontour_function_type funx, + axes_type::fcontour_function_type funy, + axes_type::fcontour_function_type funz, + const std::array &u_range, + const std::array &v_range, + std::string_view line_spec = "", + double mesh_density = 40) { + return ax->fsurf(funx, funy, funz, u_range, v_range, line_spec, + mesh_density); + } + + /// Function surf + /// Grid / Both ranges in the same array size 4 + inline surface_handle fsurf(axes_handle ax, + axes_type::fcontour_function_type fn, + const std::array &xy_range, + std::string_view line_spec = "", + double mesh_density = 40) { + return ax->fsurf(fn, xy_range, line_spec, mesh_density); + } + + /// Parametric / Both ranges in the same array size 4 + inline surface_handle fsurf(axes_handle ax, + axes_type::fcontour_function_type funx, + axes_type::fcontour_function_type funy, + axes_type::fcontour_function_type funz, + const std::array &uv_range, + std::string_view line_spec = "", + double mesh_density = 40) { + return ax->fsurf(funx, funy, funz, uv_range, line_spec, mesh_density); + } + + /// Function surf + /// Grid / Both ranges in the same array size 2 + inline surface_handle + fsurf(axes_handle ax, axes_type::fcontour_function_type fn, + const std::array &xy_range = {-5, +5}, + std::string_view line_spec = "", double mesh_density = 40) { + return ax->fsurf(fn, xy_range, line_spec, mesh_density); + } + + /// Function surf + /// Parametric / Both ranges in the same array size 2 + inline surface_handle + fsurf(axes_handle ax, axes_type::fcontour_function_type funx, + axes_type::fcontour_function_type funy, + axes_type::fcontour_function_type funz, + const std::array &uv_range = {-5, +5}, + std::string_view line_spec = "", double mesh_density = 40) { + return ax->fsurf(funx, funy, funz, uv_range, line_spec, mesh_density); + } + + inline surface_handle fsurf(axes_handle ax, + axes_type::fcontour_function_type funx, + axes_type::fcontour_function_type funy, + axes_type::fcontour_function_type funz, + std::initializer_list &uv_range, + std::string_view line_spec = "", + double mesh_density = 40) { + return ax->fsurf(funx, funy, funz, uv_range, line_spec, mesh_density); + } + + template + auto mesh(NotAxesHandle x, Args&&... args) { + return gca()->mesh(x, std::forward(args)...); + } + + template auto mesh(axes_handle ax, Args&&... args) { + return ax->mesh(std::forward(args)...); + } + + template + auto meshc(NotAxesHandle x, Args&&... args) { + return gca()->meshc(x, std::forward(args)...); + } + + template auto meshc(axes_handle ax, Args&&... args) { + return ax->meshc(std::forward(args)...); + } + + template + auto meshz(NotAxesHandle x, Args&&... args) { + return gca()->meshz(x, std::forward(args)...); + } + + template auto meshz(axes_handle ax, Args&&... args) { + return ax->meshz(std::forward(args)...); + } + + template + auto ribbon(NotAxesHandle x, Args&&... args) { + return gca()->ribbon(x, std::forward(args)...); + } + + template auto ribbon(axes_handle ax, Args&&... args) { + return ax->ribbon(std::forward(args)...); + } + + template + auto surf(NotAxesHandle x, Args&&... args) { + return gca()->surf(x, std::forward(args)...); + } + + template auto surf(axes_handle ax, Args&&... args) { + return ax->surf(std::forward(args)...); + } + + template + auto surfc(NotAxesHandle x, Args&&... args) { + return gca()->surfc(x, std::forward(args)...); + } + + template auto surfc(axes_handle ax, Args&&... args) { + return ax->surfc(std::forward(args)...); + } + + template + auto waterfall(NotAxesHandle x, Args&&... args) { + return gca()->waterfall(x, std::forward(args)...); + } + + template auto waterfall(axes_handle ax, Args&&... args) { + return ax->waterfall(std::forward(args)...); + } + + template + auto graph(NotAxesHandle x, Args&&... args) { + return gca()->graph(x, std::forward(args)...); + } + + template auto graph(axes_handle ax, Args&&... args) { + return ax->graph(std::forward(args)...); + } + + template + auto imshow(NotAxesHandle x, Args&&... args) { + return gca()->imshow(x, std::forward(args)...); + } + + template auto imshow(axes_handle ax, Args&&... args) { + return ax->imshow(std::forward(args)...); + } + + template + auto image(NotAxesHandle x, Args&&... args) { + return gca()->image(x, std::forward(args)...); + } + + template auto image(axes_handle ax, Args&&... args) { + return ax->image(std::forward(args)...); + } + + template + auto text(NotAxesHandle x, Args&&... args) { + return gca()->text(x, std::forward(args)...); + } + + template auto text(axes_handle ax, Args&&... args) { + return ax->text(std::forward(args)...); + } + + inline labels_handle text(const std::vector &x, + const std::vector &y, + const std::vector &texts) { + return gca()->text(x, y, texts); + } + + inline labels_handle text(const std::vector &x, + const std::vector &y, + std::string_view str) { + return gca()->text(x, y, str); + } + + inline labels_handle text(axes_handle ax, const std::vector &x, + const std::vector &y, + const std::vector &texts) { + return ax->text(x, y, texts); + } + + inline labels_handle text(axes_handle ax, const std::vector &x, + const std::vector &y, + std::string_view str) { + return ax->text(x, y, str); + } + + template + auto arrow(NotAxesHandle x, Args&&... args) { + return gca()->arrow(x, std::forward(args)...); + } + + template auto arrow(axes_handle ax, Args&&... args) { + return ax->arrow(std::forward(args)...); + } + + inline auto line(double x1, double y1, double x2, double y2) { + return gca()->line(x1, y1, x2, y2); + } + + inline auto line(axes_handle ax, double x1, double y1, double x2, + double y2) { + return ax->line(x1, y1, x2, y2); + } + + template + auto textarrow(NotAxesHandle x, Args&&... args) { + return gca()->textarrow(x, std::forward(args)...); + } + + template auto textarrow(axes_handle ax, Args&&... args) { + return ax->textarrow(std::forward(args)...); + } + + template + auto rectangle(NotAxesHandle x, Args&&... args) { + return gca()->rectangle(x, std::forward(args)...); + } + + template auto rectangle(axes_handle ax, Args&&... args) { + return ax->rectangle(std::forward(args)...); + } + + template + auto textbox(NotAxesHandle x, Args&&... args) { + return gca()->textbox(x, std::forward(args)...); + } + + template auto textbox(axes_handle ax, Args&&... args) { + return ax->textbox(std::forward(args)...); + } + + template + auto fill(NotAxesHandle x, Args&&... args) { + return gca()->fill(x, std::forward(args)...); + } + + template auto fill(axes_handle ax, Args&&... args) { + return ax->fill(std::forward(args)...); + } + + template + auto polygon(NotAxesHandle x, Args&&... args) { + return gca()->polygon(x, std::forward(args)...); + } + + template auto polygon(axes_handle ax, Args&&... args) { + return ax->polygon(std::forward(args)...); + } + + template + auto ellipse(NotAxesHandle x, Args&&... args) { + return gca()->ellipse(x, std::forward(args)...); + } + + template auto ellipse(axes_handle ax, Args&&... args) { + return ax->ellipse(std::forward(args)...); + } + + template + auto digraph(NotAxesHandle x, Args&&... args) { + return gca()->digraph(x, std::forward(args)...); + } + + template auto digraph(axes_handle ax, Args&&... args) { + return ax->digraph(std::forward(args)...); + } + + template + auto imagesc(NotAxesHandle x, Args&&... args) { + return gca()->imagesc(x, std::forward(args)...); + } + + template auto imagesc(axes_handle ax, Args&&... args) { + return ax->imagesc(std::forward(args)...); + } + + template + auto boxplot(NotAxesHandle x, Args&&... args) { + return gca()->boxplot(x, std::forward(args)...); + } + + template auto boxplot(axes_handle ax, Args&&... args) { + return ax->boxplot(std::forward(args)...); + } + + template + auto boxchart(NotAxesHandle x, Args&&... args) { + return gca()->boxchart(x, std::forward(args)...); + } + + template auto boxchart(axes_handle ax, Args&&... args) { + return ax->boxchart(std::forward(args)...); + } + + inline void show() { return gcf()->show(); } + + inline void show(figure_handle f) { f->show(); } + + inline bool save(const std::string &filename) { + return gcf()->save(filename); + } + + inline bool save(figure_handle f, const std::string &filename, + const std::string &format) { + return f->save(filename, format); + } + + inline bool save(const std::string &filename, const std::string &format) { + return gcf()->save(filename, format); + } + + inline bool save(figure_handle f, const std::string &filename) { + return f->save(filename); + } + +} // namespace matplot + +#endif // MATPLOTPLUSPLUS_PLOT_H diff --git a/dependency/x86/third_party/matplotplusplus/1.2.0/include/matplot/matplot.h b/dependency/x86/third_party/matplotplusplus/1.2.0/include/matplot/matplot.h new file mode 100644 index 00000000..f525a580 --- /dev/null +++ b/dependency/x86/third_party/matplotplusplus/1.2.0/include/matplot/matplot.h @@ -0,0 +1,51 @@ +// +// Created by Alan Freitas on 2020-07-03. +// + +#ifndef MATPLOTPLUSPLUS_MATPLOT_H +#define MATPLOTPLUSPLUS_MATPLOT_H + +// Common / util +#include +#include +#include +#include +#include + +// Backends +#include +#include +#include +// #include // Don't include opengl by default + +// Figure and axes +#include +#include +#include + +// Axes objects +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include + +// Free-standing functions +#include +#include +#include +#include + +#endif // MATPLOTPLUSPLUS_MATPLOT_H diff --git a/dependency/x86/third_party/matplotplusplus/1.2.0/include/matplot/util/colors.h b/dependency/x86/third_party/matplotplusplus/1.2.0/include/matplot/util/colors.h new file mode 100644 index 00000000..1b7515c5 --- /dev/null +++ b/dependency/x86/third_party/matplotplusplus/1.2.0/include/matplot/util/colors.h @@ -0,0 +1,242 @@ +// +// Created by Alan Freitas on 2020-07-04. +// + +#ifndef MATPLOTPLUSPLUS_COLORS_H +#define MATPLOTPLUSPLUS_COLORS_H + +#include +#include +#include +#include + +namespace matplot { + enum class color { + blue, + black, + red, + green, + yellow, + cyan, + magenta, + white, + none, + }; + + MATPLOT_EXPORTS + std::string to_string(matplot::color c); + + MATPLOT_EXPORTS + matplot::color string_to_color(std::string_view s); + + MATPLOT_EXPORTS + matplot::color char_to_color(char c); + + MATPLOT_EXPORTS + bool is_valid_color_char(char c); + + MATPLOT_EXPORTS + std::array to_array(matplot::color c); + + template std::array to_array(std::vector c) { + std::array r{0.f, 0.f, 0.f, 0.f}; + if (c.size() == 1) { + r[0] = 0.f; + r[1] = static_cast(c[0]); + r[2] = static_cast(c[0]); + r[3] = static_cast(c[0]); + } else if (c.size() == 3) { + r[0] = 0.f; + r[1] = static_cast(c[0]); + r[2] = static_cast(c[1]); + r[3] = static_cast(c[2]); + } else if (c.size() == 4) { + r[0] = static_cast(c[0]); + r[1] = static_cast(c[1]); + r[2] = static_cast(c[2]); + r[3] = static_cast(c[3]); + } + return r; + } + + MATPLOT_EXPORTS + std::array to_array(std::string_view str_color); + + MATPLOT_EXPORTS + std::string to_string(const std::array &c); + MATPLOT_EXPORTS + std::string to_string(const std::array &c); + + constexpr std::array default_color(size_t index) { + constexpr size_t num_default_colors = 7; + size_t color_index = index % num_default_colors; + switch (color_index) { + case 0: + return {0, 0, 0.447f, 0.741f}; + case 1: + return {0, 0.85f, 0.325f, 0.098f}; + case 2: + return {0, 0.929f, 0.694f, 0.125f}; + case 3: + return {0, 0.494f, 0.184f, 0.556f}; + case 4: + return {0, 0.466f, 0.674f, 0.188f}; + case 5: + return {0, 0.301f, 0.745f, 0.933f}; + case 6: + return {0, 0.635f, 0.078f, 0.184f}; + default: + return {}; + } + } + + namespace palette { + /* + * \see + * - https://doi.org/10.1179%2Fcaj.1996.33.2.79 + * - https://bids.github.io/colormap/ + * - https://dx.doi.org/10.1371/journal.pone.0199239 + * - https://dx.doi.org/10.5670/oceanog.2016.66 + * - https://dx.doi.org/10.1071/aseg2015ab107 + * - https://zenodo.org/record/4153113 + */ + MATPLOT_EXPORTS + std::vector> accent(size_t n = 8); + MATPLOT_EXPORTS + std::vector> blues(size_t n = 8); + MATPLOT_EXPORTS + std::vector> brbg(size_t n = 8); + MATPLOT_EXPORTS + std::vector> bugn(size_t n = 8); + MATPLOT_EXPORTS + std::vector> bupu(size_t n = 8); + MATPLOT_EXPORTS + std::vector> chromajs(size_t n = 9); + MATPLOT_EXPORTS + std::vector> dark2(size_t n = 8); + MATPLOT_EXPORTS + std::vector> gnbu(size_t n = 8); + MATPLOT_EXPORTS + std::vector> gnpu(size_t n = 10); + MATPLOT_EXPORTS + std::vector> greens(size_t n = 8); + MATPLOT_EXPORTS + std::vector> greys(size_t n = 8); + MATPLOT_EXPORTS + std::vector> inferno(size_t n = 256); + MATPLOT_EXPORTS + std::vector> jet(size_t n = 64); + MATPLOT_EXPORTS + std::vector> turbo(size_t n = 256); + MATPLOT_EXPORTS + std::vector> magma(size_t n = 256); + MATPLOT_EXPORTS + std::vector> oranges(size_t n = 8); + MATPLOT_EXPORTS + std::vector> orrd(size_t n = 8); + MATPLOT_EXPORTS + std::vector> paired(size_t n = 8); + MATPLOT_EXPORTS + std::vector> parula(size_t n = 64); + MATPLOT_EXPORTS + std::vector> pastel1(size_t n = 8); + MATPLOT_EXPORTS + std::vector> pastel2(size_t n = 8); + MATPLOT_EXPORTS + std::vector> piyg(size_t n = 8); + MATPLOT_EXPORTS + std::vector> plasma(size_t n = 256); + MATPLOT_EXPORTS + std::vector> prgn(size_t n = 8); + MATPLOT_EXPORTS + std::vector> pubu(size_t n = 8); + MATPLOT_EXPORTS + std::vector> pubugn(size_t n = 8); + MATPLOT_EXPORTS + std::vector> puor(size_t n = 8); + MATPLOT_EXPORTS + std::vector> purd(size_t n = 8); + MATPLOT_EXPORTS + std::vector> purples(size_t n = 8); + MATPLOT_EXPORTS + std::vector> rdbu(size_t n = 8); + MATPLOT_EXPORTS + std::vector> rdgy(size_t n = 8); + MATPLOT_EXPORTS + std::vector> rdpu(size_t n = 8); + MATPLOT_EXPORTS + std::vector> rdylbu(size_t n = 8); + MATPLOT_EXPORTS + std::vector> rdylgn(size_t n = 8); + MATPLOT_EXPORTS + std::vector> reds(size_t n = 8); + MATPLOT_EXPORTS + std::vector> sand(size_t n = 10); + MATPLOT_EXPORTS + std::vector> set1(size_t n = 8); + MATPLOT_EXPORTS + std::vector> set2(size_t n = 8); + MATPLOT_EXPORTS + std::vector> set3(size_t n = 8); + MATPLOT_EXPORTS + std::vector> spectral(size_t n = 8); + MATPLOT_EXPORTS + std::vector> viridis(size_t n = 256); + MATPLOT_EXPORTS + std::vector> whylrd(size_t n = 5); + MATPLOT_EXPORTS + std::vector> ylgn(size_t n = 8); + MATPLOT_EXPORTS + std::vector> ylgnbu(size_t n = 8); + MATPLOT_EXPORTS + std::vector> ylorbr(size_t n = 8); + MATPLOT_EXPORTS + std::vector> ylorrd(size_t n = 8); + MATPLOT_EXPORTS + std::vector> ylrd(size_t n = 4); + MATPLOT_EXPORTS + std::vector> hsv(size_t n = 64); + MATPLOT_EXPORTS + std::vector> hot(size_t n = 64); + MATPLOT_EXPORTS + std::vector> cool(size_t n = 64); + MATPLOT_EXPORTS + std::vector> spring(size_t n = 64); + MATPLOT_EXPORTS + std::vector> summer(size_t n = 64); + MATPLOT_EXPORTS + std::vector> autumn(size_t n = 64); + MATPLOT_EXPORTS + std::vector> winter(size_t n = 64); + MATPLOT_EXPORTS + std::vector> gray(size_t n = 64); + MATPLOT_EXPORTS + std::vector> bone(size_t n = 64); + MATPLOT_EXPORTS + std::vector> copper(size_t n = 64); + MATPLOT_EXPORTS + std::vector> pink(size_t n = 64); + MATPLOT_EXPORTS + std::vector> lines(size_t n = 64); + MATPLOT_EXPORTS + std::vector> colorcube(size_t n = 64); + MATPLOT_EXPORTS + std::vector> prism(size_t n = 64); + MATPLOT_EXPORTS + std::vector> flag(size_t n = 64); + MATPLOT_EXPORTS + std::vector> white(size_t n = 64); + MATPLOT_EXPORTS + std::vector> default_map(size_t n = 64); + MATPLOT_EXPORTS + std::vector> default_colors_map(size_t n = 7); + } // namespace palette + + MATPLOT_EXPORTS + std::array + colormap_interpolation(double value, double min, double max, + const std::vector> &cm); + +} // namespace matplot + +#endif // MATPLOTPLUSPLUS_COLORS_H diff --git a/dependency/x86/third_party/matplotplusplus/1.2.0/include/matplot/util/common.h b/dependency/x86/third_party/matplotplusplus/1.2.0/include/matplot/util/common.h new file mode 100644 index 00000000..fd762a4a --- /dev/null +++ b/dependency/x86/third_party/matplotplusplus/1.2.0/include/matplot/util/common.h @@ -0,0 +1,679 @@ +// +// Created by Alan Freitas on 2020-07-03. +// + +#ifndef MATPLOTPLUSPLUS_COMMON_H +#define MATPLOTPLUSPLUS_COMMON_H + +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include + +namespace matplot { + MATPLOT_EXPORTS + bool iequals(std::string_view str1, std::string_view str2); + MATPLOT_EXPORTS + bool is_true(std::string_view str); + MATPLOT_EXPORTS + bool is_false(std::string_view str); + MATPLOT_EXPORTS + std::string run_and_get_output(const std::string &command); + MATPLOT_EXPORTS + std::string escape(std::string_view label); + + inline void ltrim(std::string &s) { + s.erase(s.begin(), std::find_if(s.begin(), s.end(), [](int ch) { + return !std::isspace(ch); + })); + } + + inline void rtrim(std::string &s) { + s.erase(std::find_if(s.rbegin(), s.rend(), + [](int ch) { return !std::isspace(ch); }) + .base(), + s.end()); + } + + inline void rtrim(std::string &s, char d) { + s.erase( + std::find_if(s.rbegin(), s.rend(), [d](int ch) { return ch != d; }) + .base(), + s.end()); + } + + template std::string num2str(Arithmetic num) { + std::ostringstream ss; + ss.precision(10); + ss << std::fixed; + ss << num; + return ss.str(); + } + + template + std::string num2str(Arithmetic num, const std::string &format) { + constexpr int max_buffer_size = 100; + char buffer[max_buffer_size]; + int cx = snprintf(buffer, max_buffer_size, format.c_str(), num); + if (cx >= 0 && cx < max_buffer_size) { + return std::string(buffer); + } else { + return num2str(num); + } + } + + template T str2num(std::string_view text) { + std::istringstream ss((std::string(text))); + T result; + return ss >> result ? result : 0; + } + + using vector_1d = std::vector; + + using vector_2d = std::vector; + + MATPLOT_EXPORTS + std::vector linspace(double lower_bound, double upper_bound); + + MATPLOT_EXPORTS + std::vector linspace(double lower_bound, double upper_bound, + size_t n); + + MATPLOT_EXPORTS + std::vector logspace(double lower_bound, double upper_bound); + + MATPLOT_EXPORTS + std::vector logspace(double lower_bound, double upper_bound, + size_t n); + + MATPLOT_EXPORTS + std::vector iota(double lower_bound, double upper_bound); + + MATPLOT_EXPORTS + std::vector iota(double lower_bound, double step, + double upper_bound); + + MATPLOT_EXPORTS + vector_1d transform(const vector_1d &x, std::function fn); + MATPLOT_EXPORTS + vector_1d transform(const vector_1d &x, const vector_1d &y, + std::function fn); + MATPLOT_EXPORTS + vector_2d transform(const vector_2d &x, std::function fn); + MATPLOT_EXPORTS + vector_2d transform(const vector_2d &x, const vector_2d &y, + std::function fn); + + MATPLOT_EXPORTS + vector_1d flatten(const vector_2d &x); + + MATPLOT_EXPORTS + std::vector unique(const std::vector &x); + + MATPLOT_EXPORTS + double min(const std::vector &x); + MATPLOT_EXPORTS + double min(const std::vector> &x); + MATPLOT_EXPORTS + double max(const std::vector &x); + MATPLOT_EXPORTS + double max(const std::vector> &x); + MATPLOT_EXPORTS + std::pair minmax(const std::vector &x); + + template T min(T val1, T val2) { + return val1 < val2 ? val1 : val2; + } + + template T min(T val1, T val2, Ts &&...vs) { + return val1 < val2 ? min(val1, std::forward(vs)...) + : min(val2, std::forward(vs)...); + } + + template T max(T val1, T val2) { + return val1 > val2 ? val1 : val2; + } + + template T max(T val1, T val2, Ts &&...vs) { + return val1 > val2 ? max(val1, std::forward(vs)...) + : max(val2, std::forward(vs)...); + } + + MATPLOT_EXPORTS + double mean(const std::vector &x); + MATPLOT_EXPORTS + double stddev(const std::vector &x); + + MATPLOT_EXPORTS + void wait(); + + constexpr double pi = + 3.141592653589793238462643383279502884197169399375105820974944592307816406286; + constexpr double NaN = std::numeric_limits::quiet_NaN(); + + template std::vector vectorize(const std::vector &result) { + return result; + } + + template std::vector vectorize(const T &result) { + return std::vector({result}); + } + + template + inline std::array to_array(std::initializer_list il) { + std::array r{}; + auto r_it = r.begin(); + auto il_it = il.begin(); + while (r_it != r.end() && il_it != il.end()) { + *r_it = *il_it; + ++r_it; + ++il_it; + } + return r; + } + + template + inline std::array to_array(const std::vector &v) { + std::array r{}; + auto r_it = r.begin(); + auto v_it = v.begin(); + while (r_it != r.end() && v_it != v.end()) { + *r_it = *v_it; + ++r_it; + ++v_it; + } + return r; + } + + namespace detail { + template + using forward_or_copy = + std::conditional_t, const U &, U>; + } + + template + detail::forward_or_copy to_vector_1d(const T &v) { + if constexpr (std::is_same_v) { + return v; + } else { + using std::begin, std::end; + vector_1d r(v.size()); + std::transform(v.begin(), v.end(), r.begin(), [](const auto &x) { + return static_cast(x); + }); + return r; + } + } + + template + detail::forward_or_copy to_vector_2d(const T &v) { + if constexpr (std::is_same_v) { + return v; + } else { + using std::begin, std::end; + + vector_2d r(std::distance(begin(v), end(v))); + std::transform( + begin(v), end(v), r.begin(), + [](auto &&e) -> vector_1d { return to_vector_1d(e); }); + return r; + } + } + + template + detail::forward_or_copy> + to_vector_3d(const T &v) { + if constexpr (std::is_same_v>) { + return v; + } else { + using std::begin, std::end; + + std::vector r(std::distance(begin(v), end(v))); + std::transform( + begin(v), end(v), r.begin(), + [](auto &&e) -> vector_2d { return to_vector_2d(e); }); + return r; + } + } + + template inline T norm(const std::vector &v) { + T sum = 0.; + for (const auto &vk : v) { + sum += pow(vk, 2.); + } + return sqrt(sum); + } + + MATPLOT_EXPORTS + double randn(double mean, double stddev); + MATPLOT_EXPORTS + std::vector randn(size_t n, double mean, double stddev); + + /// Exponential distribution + MATPLOT_EXPORTS + double rande(double lambda, double multiplier = 1.0); + MATPLOT_EXPORTS + std::vector rande(size_t n, double lambda, double multiplier = 1.0); + + /// Pareto distribution + MATPLOT_EXPORTS + double randp(double scale, double shape = 1.0); + MATPLOT_EXPORTS + std::vector randp(size_t n, double scale, double shape = 1.0); + + MATPLOT_EXPORTS + int randi(int imin, int imax); + MATPLOT_EXPORTS + std::vector randi(size_t n, int imin, int imax); + + MATPLOT_EXPORTS + double rand(double lower_bound, double upper_bound); + MATPLOT_EXPORTS + vector_1d rand(size_t n, double lower_bound, double upper_bound); + MATPLOT_EXPORTS + vector_2d rand(size_t rows, size_t cols, double lower_bound, + double upper_bound); + + MATPLOT_EXPORTS + std::vector reshape(const std::vector> &X); + + MATPLOT_EXPORTS + std::vector concat(const std::vector &a, + const std::vector &b); + + template + std::vector concat(const std::vector &a, + const std::vector &b, Args &&...args) { + std::vector r = concat(a, b); + return concat(r, std::forward(args)...); + } + + MATPLOT_EXPORTS + double truncate(double x, double lower_bound, double upper_bound); + + template + void reorder_parameter_pack_in_tuple(TUPLE &t, Arg1 x) { + std::get(t) = x; + } + + template + void reorder_parameter_pack_in_tuple(TUPLE &t, Arg1 x, Args &&...args) { + std::get(t) = x; + reorder_parameter_pack_in_tuple(t, std::forward(args)...); + } + + MATPLOT_EXPORTS + std::string fileread(const std::string &filename); + + template > + void rank_elements(T first, T last, T2 rank_input, + FN comp = std::less()) { + using value_and_rank = + std::pair const *, + size_t>; + std::vector v; + size_t r = 0; + while (first != last) { + v.emplace_back(&(*first), r); + ++first; + ++r; + } + std::sort(v.begin(), v.end(), [comp](const auto &a, const auto &b) { + return comp(*a.first, *b.first); + }); + for (const auto &[ptr, ranking] : v) { + (void)ptr; + *rank_input = ranking; + ++rank_input; + } + } + + /// Cosine of argument in degreescollapse + MATPLOT_EXPORTS + double cosd(double degrees); + + /// Sine of argument in degreescollapse + MATPLOT_EXPORTS + double sind(double degrees); + + /// Sine of argument in degreescollapse + MATPLOT_EXPORTS + std::vector deg2rad(const std::vector °rees); + + MATPLOT_EXPORTS + double deg2rad(double rho); + + /// Round up the maximum polar value + MATPLOT_EXPORTS + double round_polar_max(double polar_max); + + MATPLOT_EXPORTS + double to_positive_radian(double radian); + + /// Calculate the radians rho of a vector (u,v) + MATPLOT_EXPORTS + double vector_radians(double u, double v); + + /// Calculate the magnitude theta of a vector (u,v) + MATPLOT_EXPORTS + double vector_magnitude(double u, double v); + + /// Calculate the radians rho of a complex number u + iv + MATPLOT_EXPORTS + double vector_radians(std::complex v); + + /// Calculate the magnitude theta of a complex number u + iv + MATPLOT_EXPORTS + double vector_magnitude(std::complex v); + + /// Calculate cartesian coordinates of vector in polar coordinates + MATPLOT_EXPORTS + std::pair pol2cart(double theta, double rho); + MATPLOT_EXPORTS + std::pair pol2cart(vector_1d theta, vector_1d rho); + MATPLOT_EXPORTS + std::pair pol2cart(vector_1d theta, double rho); + + MATPLOT_EXPORTS + std::pair elliptic2cart(double theta, double rho_w, + double rho_h); + MATPLOT_EXPORTS + std::pair elliptic2cart(vector_1d theta, double rho_w, + double rho_h); + MATPLOT_EXPORTS + std::pair + elliptic2cart(vector_1d theta, vector_1d rho_w, vector_1d rho_h); + + MATPLOT_EXPORTS + std::pair meshgrid(const vector_1d &x, + const vector_1d &y); + MATPLOT_EXPORTS + std::pair meshgrid(const vector_1d &x_and_y); + + MATPLOT_EXPORTS + vector_1d gradient(const vector_1d &z, double spacing = 1.0); + MATPLOT_EXPORTS + std::pair gradient(const vector_2d &z, + double spacing = 1.0); + MATPLOT_EXPORTS + std::pair + gradient(const vector_2d &z, double spacing_x, double spacing_y); + + MATPLOT_EXPORTS + double peaks(double x, double y); + MATPLOT_EXPORTS + vector_2d peaks(const vector_2d &X, const vector_2d &Y); + MATPLOT_EXPORTS + std::tuple peaks(size_t N = 49); + + template struct pair_hash { + std::size_t operator()(const std::pair &p) const { + std::size_t h1 = std::hash()(p.first); + std::size_t h2 = std::hash()(p.second); + return h1 ^ h2; + } + }; + + template std::pair size(const std::vector &v) { + if (v.empty()) { + return std::make_pair(0, 0); + } else { + return std::make_pair(v.size(), v[0].size()); + } + } + + MATPLOT_EXPORTS + vector_2d zeros(size_t rows, size_t cols); + MATPLOT_EXPORTS + vector_2d ones(size_t rows, size_t cols); + + using image_row_t = std::vector; + using image_channel_t = std::vector; + // The image might have 1 channel (B&W), 3 channels (RGB), or 4 channels + // (RGBA) + using image_channels_t = std::vector; + + /// Core imread function + /// Return grayscale image (vector::size() == 1), + /// rgb image (vector::size() == 3), + /// rgba image (vector::size() == 4), + /// empty image (vector::size() == 0) + MATPLOT_EXPORTS + image_channels_t imread(const std::string &filename); + + enum class image_interpolation { + raw, + additional_space, + nearest, + moving_average, + bilinear, + grid, + bicubic, + lanczos + }; + + MATPLOT_EXPORTS + image_channel_t rgb2gray(const image_channels_t &A); + MATPLOT_EXPORTS + image_channels_t gray2rgb(const image_channel_t &A, + const std::vector> &colormap); + MATPLOT_EXPORTS + image_channels_t gray2rgb(const image_channel_t &A); + MATPLOT_EXPORTS + image_channels_t gray2rgb(const image_channels_t &A, + const std::vector> &colormap); + MATPLOT_EXPORTS + image_channels_t gray2rgb(const image_channels_t &A); + + MATPLOT_EXPORTS + image_channels_t + imresize(const image_channels_t &A, double scale, + image_interpolation m = image_interpolation::bicubic); + + MATPLOT_EXPORTS + image_channels_t + imresize(const image_channels_t &A, size_t height, size_t width, + image_interpolation m = image_interpolation::bicubic); + + MATPLOT_EXPORTS + void imwrite(const image_channels_t &A, const std::string &filename); + + MATPLOT_EXPORTS + void imwrite(const image_channel_t &A, + const std::vector> &colormap, + const std::string &filename); + + MATPLOT_EXPORTS + void imwrite(const image_channels_t &A, const std::string &filename); + + MATPLOT_EXPORTS + image_channels_t imvignette(const image_channels_t &A, + double min_radius = 1., double exponent = 0.5); + + template std::vector> eye(size_t n) { + std::vector> r(n, std::vector(n, static_cast(0))); + for (size_t i = 0; i < n; ++i) { + r[i][i] = 1.; + } + return r; + } + + MATPLOT_EXPORTS + vector_2d transpose(const vector_2d &z); + + MATPLOT_EXPORTS + std::vector + tokenize(std::string_view text, + std::string_view delimiters = " ',\n\r\t\".!?:"); + + MATPLOT_EXPORTS + std::pair, std::vector> + wordcount(const std::vector &tokens, + const std::vector &black_list, + size_t max_cloud_size = 100); + + MATPLOT_EXPORTS + std::pair, std::vector> + wordcount(std::string_view text, const std::vector &black_list, + std::string_view delimiters = " ',\n\r\t\".!?:;", + size_t max_cloud_size = 100); + + // Distance from x to the next larger floating point number + template + std::enable_if_t || + std::is_same_v || + std::is_same_v, + FLOAT> + eps(FLOAT x = 1.) { + constexpr long double max_long_double = + std::numeric_limits::max(); + // std::nexttoward is more precise than std::nextafter + if constexpr (std::is_same_v) { + return std::nexttoward(x, max_long_double) - x; + } else if constexpr (std::is_same_v) { + return std::nexttowardf(x, max_long_double) - x; + } else if constexpr (std::is_same_v) { + return std::nexttowardl(x, max_long_double) - x; + } else { + throw std::logic_error( + "eps: FLOAT type needs to be float, double or long double"); + } + } + + template + std::vector repmat(const std::vector &a, size_t n) { + std::vector b(a.size() * n); + for (size_t i = 0; i < n; ++i) { + for (size_t j = 0; j < a.size(); ++j) { + b[i * a.size() + j] = a[j]; + } + } + return b; + } + + struct ticks_results { + std::vector ticks; + std::vector tickLabels; + std::string scaleStr; + std::vector minorTicks; + std::vector overhang; + }; + + /// \brief Find ticks at "nice" intervals for an axis + /// For now, we only use our own ticks when we need to take control + /// over the gnuplot ticks. Sometimes the gnuplot ticks does not + /// give us the behaviour we expect. For instance, this is the case + /// when plotting parallel coordinates. + /// We could easily adapt class axis to always use this function + /// instead of the automatic gnuplot ticks but there's no need + /// for that at the moment. + /// The algorithm in this function is inspired by this matplot script: + /// https://www.mathworks.com/matlabcentral/fileexchange/30671-calcticks + /// We don't implement the version for log scale because, by coincidence, + /// the library does not need it at this point. + /// \param limits_min Minimum value + /// \param limits_max Maximum value + /// \param horizontal True if axis is horizontal (this changes the room for + /// labels) \param text_size Size in height or width of a char \param log + /// True if scale is logarithmic (this will throw an error for now) \return + /// Nice ticks and their labels in a ticks_results struct \see + /// https://www.mathworks.com/matlabcentral/fileexchange/30671-calcticks + MATPLOT_EXPORTS + ticks_results calcticks(double limits_min = -5, double limits_max = +5, + bool horizontal = false, double text_size = 1.25, + bool separateExp = true, bool log = false); + + MATPLOT_EXPORTS + double distance(double x1, double y1, double x2, double y2); + + /// \brief Simple read-only 2d view for vector_2d. + /// It could iterates over all vector's elements and get value using + /// only one index (offset). + class MATPLOT_EXPORTS vector_2d_view { + using vector_2d = matplot::vector_2d; + const vector_2d &_vec; + const std::size_t _sz; + + /// \brief Helper method for determining the whole array size. + /// Required for caching inner vector's size. + std::size_t calculate_size(const vector_2d &vec) { + return std::accumulate(vec.begin(), vec.end(), (std::size_t)(0), + [](auto cnt, const auto &inner_vec) { + return cnt + inner_vec.size(); + }); + } + + public: + static const double &get_element_from_offset(const vector_2d &vec, + std::size_t offset) { + std::size_t row_size = vec[0].size(); + std::size_t cur_row = offset / row_size; + std::size_t cur_column = offset % row_size; + return vec[cur_row][cur_column]; + } + + static vector_2d_view from_vector_2d(const vector_2d &vec) { + return vector_2d_view(vec); + } + std::size_t size() const { return _sz; } + vector_2d_view(const vector_2d &vec) + : _vec(vec), _sz(calculate_size(vec)) {} + + double operator()(std::size_t i, std::size_t j) { + return _vec.at(i).at(j); + } + friend class iterator; + + class iterator { + vector_2d_view *const _vec; + std::size_t _row_offset; + std::size_t _col_offset; + + static bool is_empty_iterator(const iterator &it) { + return it._vec == nullptr; + } + static bool is_end_iterator(const iterator &it) { + return is_empty_iterator(it) || + it._row_offset * it._col_offset >= it._vec->size(); + } + + public: + iterator(vector_2d_view *const vec) + : _vec(vec), _row_offset(0), _col_offset(0) {} + + bool operator==(const iterator &it) const { + return is_end_iterator(it) + ? is_end_iterator(*this) + : it._vec == _vec && it._row_offset == _row_offset && + it._col_offset == _col_offset; + } + + auto operator*() const { return (*_vec)(_row_offset, _col_offset); } + + iterator &operator++() { + _col_offset++; + if (_col_offset >= _vec->_vec.at(_row_offset).size()) { + _col_offset = 0; + _row_offset++; + } + return *this; + } + + // iterator traits + using value_type = double; + }; + iterator begin() { return iterator{this}; } + iterator end() { return iterator{nullptr}; } + }; + +} // namespace matplot + +#endif // MATPLOTPLUSPLUS_COMMON_H diff --git a/dependency/x86/third_party/matplotplusplus/1.2.0/include/matplot/util/concepts.h b/dependency/x86/third_party/matplotplusplus/1.2.0/include/matplot/util/concepts.h new file mode 100644 index 00000000..b0659375 --- /dev/null +++ b/dependency/x86/third_party/matplotplusplus/1.2.0/include/matplot/util/concepts.h @@ -0,0 +1,134 @@ +// +// Created by Alan Freitas on 2020-07-03. +// + +#ifndef MATPLOTPLUSPLUS_CONCEPTS_H +#define MATPLOTPLUSPLUS_CONCEPTS_H + +#include +#include +#include + +namespace matplot { + // https://github.com/Neargye/yacppl/blob/master/include/concepts.hpp + // Fallback to type T if Enable is not void + template using type_concept = T; + + // type_concept where Enable is void if C is false + template + using TypeConcept = type_concept>; + + // TypeConcept where C is true only if T is RValue + template + using RValue = TypeConcept< + T, std::is_rvalue_reference::value && + !std::is_const::type>::value> + &&; + + // TypeConcept where C is true only if T is Const + template + using Const = TypeConcept< + T, std::is_const::type>::value>; + + // TypeConcept where C is true only if T is NotConst + template + using NotConst = TypeConcept< + T, !std::is_const::type>::value>; + + // TypeConcept where C is true only if T is Arithmetic + template + using Arithmetic = TypeConcept< + T, std::is_arithmetic::type>::value>; + + // TypeConcept where C is true only if T is Integral + template + using Integral = TypeConcept< + T, std::is_integral::type>::value>; + + // TypeConcept where C is true only if T is Pointer + template + using Pointer = TypeConcept< + T, std::is_pointer::type>::value>; + + // TypeConcept where C is true only if T is Trivial + template + using Trivial = TypeConcept< + T, std::is_trivial::type>::value>; + + // TypeConcept where C is true only if T is TriviallyCopyable + template + using TriviallyCopyable = + TypeConcept::type>::value>; + + // TypeConcept where C is true only if T is String + template + using String = TypeConcept, std::string>>; + + // TypeConcept where C is true only if T is NotString + template + using NotString = + TypeConcept, std::string>>; + + // TypeConcept where C is true only if T is NotString + template + using NotStringConvertible = + TypeConcept, std::string>>; + + class figure_type; + // TypeConcept where C is true only if T is FigureHandle + template + using FigureHandle = TypeConcept< + T, std::is_same_v, std::shared_ptr>>; + + // TypeConcept where C is true only if T is NotFigureHandle + template + using NotFigureHandle = + TypeConcept, + std::shared_ptr>>; + + // TypeConcept where C is true only if T is Iterable + template + using Iterable = TypeConcept>>; + + // TypeConcept where C is true only if T is IterableValues + template + using IterableValues = TypeConcept>>; + + // TypeConcept where C is true only if T is IterablePair + template + using IterablePairs = TypeConcept>>; + + // TypeConcept where C is true only if T is IterableIterables + template + using IterableIterables = + TypeConcept>>; + + // TypeConcept where C is true only if T is IterableValues + template + using NotAxesHandle = + TypeConcept, axes_handle>>; + + // TypeConcept where C is true only if T is an initializer list + template + using InitializerList = TypeConcept::value>; + + // TypeConcept where C is true only if T is not an initializer list + template + using NotInitializerList = TypeConcept::value>; + + // TypeConcept where C is true only if T is a vector + template using Vector = TypeConcept::value>; + + // TypeConcept where C is true only if T is not a vector + template using NotVector = TypeConcept::value>; + + // TypeConcept where C is true only if T is a pair + template using Pair = TypeConcept::value>; + + // TypeConcept where C is true only if T is not a pair + template using NotPair = TypeConcept::value>; + +} // namespace matplot + +#endif // MATPLOTPLUSPLUS_CONCEPTS_H diff --git a/dependency/x86/third_party/matplotplusplus/1.2.0/include/matplot/util/contourc.h b/dependency/x86/third_party/matplotplusplus/1.2.0/include/matplot/util/contourc.h new file mode 100644 index 00000000..5d660d97 --- /dev/null +++ b/dependency/x86/third_party/matplotplusplus/1.2.0/include/matplot/util/contourc.h @@ -0,0 +1,622 @@ +// +// Adapted from +// https://github.com/matplotlib/matplotlib/blob/master/src/_contour.h +// and +// https://github.com/matplotlib/matplotlib/blob/master/lib/matplotlib/contour.py +// + +#ifndef MATPLOTPLUSPLUS_CONTOURC_H +#define MATPLOTPLUSPLUS_CONTOURC_H + +/* + * QuadContourGenerator + * -------------------- + * A QuadContourGenerator generates contours for scalar fields defined on + * quadrilateral grids. A single QuadContourGenerator object can create both + * line contours (at single levels) and filled contours (between pairs of + * levels) for the same field. + * + * A field to be contoured has nx, ny points in the x- and y-directions + * respectively. The quad grid is defined by x and y arrays of shape(ny, nx), + * and the field itself is the z array also of shape(ny, nx). There is an + * optional boolean mask; if it exists then it also has shape(ny, nx). The + * mask applies to grid points rather than quads. + * + * How quads are masked based on the point mask is determined by the boolean + * 'corner_mask' flag. If false then any quad that has one or more of its four + * corner points masked is itself masked. If true the behaviour is the same + * except that any quad which has exactly one of its four corner points masked + * has only the triangular corner (half of the quad) adjacent to that point + * masked; the opposite triangular corner has three unmasked points and is not + * masked. + * + * By default the entire domain of nx*ny points is contoured together which can + * result in some very long polygons. The alternative is to break up the + * domain into subdomains or 'chunks' of smaller size, each of which is + * independently contoured. The size of these chunks is controlled by the + * 'nchunk' (or 'chunk_size') parameter. Chunking not only results in shorter + * polygons but also requires slightly less RAM. It can result in rendering + * artifacts though, depending on backend, antialiased flag and alpha value. + * + * Notation + * -------- + * i and j are array indices in the x- and y-directions respectively. Although + * a single element of an array z can be accessed using z[j][i] or z(j,i), it + * is often convenient to use the single quad index z[quad], where + * quad = i + j*nx + * and hence + * i = quad % nx + * j = quad / nx + * + * Rather than referring to x- and y-directions, compass directions are used + * instead such that W, E, S, N refer to the -x, +x, -y, +y directions + * respectively. To move one quad to the E you would therefore add 1 to the + * quad index, to move one quad to the N you would add nx to the quad index. + * + * Cache + * ----- + * Lots of information that is reused during contouring is stored as single + * bits in a mesh-sized cache, indexed by quad. Each quad's cache entry stores + * information about the quad itself such as if it is masked, and about the + * point at the SW corner of the quad, and about the W and S edges. Hence + * information about each point and each edge is only stored once in the cache. + * + * Cache information is divided into two types: that which is constant over the + * lifetime of the QuadContourGenerator, and that which changes for each + * contouring operation. The former is all grid-specific information such + * as quad and corner masks, and which edges are boundaries, either between + * masked and non-masked regions or between adjacent chunks. The latter + * includes whether points lie above or below the current contour levels, plus + * some flags to indicate how the contouring is progressing. + * + * Line Contours + * ------------- + * A line contour connects points with the same z-value. Each point of such a + * contour occurs on an edge of the grid, at a point linearly interpolated to + * the contour z-level from the z-values at the end points of the edge. The + * direction of a line contour is such that higher values are to the left of + * the contour, so any edge that the contour passes through will have a left- + * hand end point with z > contour level and a right-hand end point with + * z <= contour level. + * + * Line contours are of two types. Firstly there are open line strips that + * start on a boundary, traverse the interior of the domain and end on a + * boundary. Secondly there are closed line loops that occur completely within + * the interior of the domain and do not touch a boundary. + * + * The QuadContourGenerator makes two sweeps through the grid to generate line + * contours for a particular level. In the first sweep it looks only for start + * points that occur on boundaries, and when it finds one it follows the + * contour through the interior until it finishes on another boundary edge. + * Each quad that is visited by the algorithm has a 'visited' flag set in the + * cache to indicate that the quad does not need to be visited again. In the + * second sweep all non-visited quads are checked to see if they contain part + * of an interior closed loop, and again each time one is found it is followed + * through the domain interior until it returns back to its start quad and is + * therefore completed. + * + * The situation is complicated by saddle quads that have two opposite corners + * with z >= contour level and the other two corners with z < contour level. + * These therefore contain two segments of a line contour, and the visited + * flags take account of this by only being set on the second visit. On the + * first visit a number of saddle flags are set in the cache to indicate which + * one of the two segments has been completed so far. + * + * Filled Contours + * --------------- + * Filled contours are produced between two contour levels and are always + * closed polygons. They can occur completely within the interior of the + * domain without touching a boundary, following either the lower or upper + * contour levels. Those on the lower level are exactly like interior line + * contours with higher values on the left. Those on the upper level are + * reversed such that higher values are on the right. + * + * Filled contours can also involve a boundary in which case they consist of + * one or more sections along a boundary and one or more sections through the + * interior. Interior sections can be on either level, and again those on the + * upper level have higher values on the right. Boundary sections can remain + * on either contour level or switch between the two. + * + * Once the start of a filled contour is found, the algorithm is similar to + * that for line contours in that it follows the contour to its end, which + * because filled contours are always closed polygons will be by returning + * back to the start. However, because two levels must be considered, each + * level has its own set of saddle and visited flags and indeed some extra + * visited flags for boundary edges. + * + * The major complication for filled contours is that some polygons can be + * holes (with points ordered clockwise) within other polygons (with points + * ordered anticlockwise). When it comes to rendering filled contours each + * non-hole polygon must be rendered along with its zero or more contained + * holes or the rendering will not be correct. The filled contour finding + * algorithm could progress pretty much as the line contour algorithm does, + * taking each polygon as it is found, but then at the end there would have to + * be an extra step to identify the parent non-hole polygon for each hole. + * This is not a particularly onerous task but it does not scale well and can + * easily dominate the execution time of the contour finding for even modest + * problems. It is much better to identity each hole's parent non-hole during + * the sweep algorithm. + * + * This requirement dictates the order that filled contours are identified. As + * the algorithm sweeps up through the grid, every time a polygon passes + * through a quad a ParentCache object is updated with the new possible parent. + * When a new hole polygon is started, the ParentCache is used to find the + * first possible parent in the same quad or to the S of it. Great care is + * needed each time a new quad is checked to see if a new polygon should be + * started, as a single quad can have multiple polygon starts, e.g. a quad + * could be a saddle quad for both lower and upper contour levels, meaning it + * has four contour line segments passing through it which could all be from + * different polygons. The S-most polygon must be started first, then the next + * S-most and so on until the N-most polygon is started in that quad. + */ + +// #include "numpy_cpp.h" +// https://github.com/matplotlib/matplotlib/blob/master/src/numpy_cpp.h +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include + +namespace matplot { + + // Edge of a quad including diagonal edges of masked quads if _corner_mask + // true. + enum class Edge { + // Listing values here so easier to check for debug purposes. + Edge_None = -1, + Edge_E = 0, + Edge_N = 1, + Edge_W = 2, + Edge_S = 3, + // The following are only used if _corner_mask is true. + Edge_NE = 4, + Edge_NW = 5, + Edge_SW = 6, + Edge_SE = 7 + }; + + // Combination of a quad and an edge of that quad. + // An invalid quad edge has quad of -1. + struct MATPLOT_EXPORTS QuadEdge { + QuadEdge(); + + QuadEdge(long quad_, Edge edge_); + + bool operator<(const QuadEdge &other) const; + + bool operator==(const QuadEdge &other) const; + + bool operator!=(const QuadEdge &other) const; + + friend std::ostream &operator<<(std::ostream &os, + const QuadEdge &quad_edge); + + long quad; + Edge edge; + }; + + // 2D point with x,y coordinates. + struct MATPLOT_EXPORTS XY { + XY(); + + XY(const double &x_, const double &y_); + + bool operator==(const XY &other) const; + + bool operator!=(const XY &other) const; + + XY operator*(const double &multiplier) const; + + const XY &operator+=(const XY &other); + + const XY &operator-=(const XY &other); + + XY operator+(const XY &other) const; + + XY operator-(const XY &other) const; + + friend std::ostream &operator<<(std::ostream &os, const XY &xy); + + double x, y; + }; + + // A single line of a contour, which may be a closed line loop or an open + // line strip. Identical adjacent points are avoided using push_back(). A + // ContourLine is either a hole (points ordered clockwise) or it is not + // (points ordered anticlockwise). Each hole has a parent ContourLine that + // is not a hole; each non-hole contains zero or more child holes. A + // non-hole and its child holes must be rendered together to obtain the + // correct results. + class MATPLOT_EXPORTS ContourLine : public std::vector { + public: + typedef std::list Children; + + ContourLine(bool is_hole); + + void add_child(ContourLine *child); + + void clear_parent(); + + const Children &get_children() const; + + const ContourLine *get_parent() const; + + ContourLine *get_parent(); + + bool is_hole() const; + + void push_back(const XY &point); + + void set_parent(ContourLine *parent); + + void write() const; + + private: + bool _is_hole; + ContourLine *_parent; // Only set if is_hole, not owned. + Children _children; // Only set if !is_hole, not owned. + }; + + // A Contour is a collection of zero or more ContourLines. + class MATPLOT_EXPORTS Contour : public std::vector { + public: + Contour(); + + virtual ~Contour(); + + void delete_contour_lines(); + + void write() const; + }; + + // Single chunk of ContourLine parents, indexed by quad. As a chunk's + // filled contours are created, the ParentCache is updated each time a + // ContourLine passes through each quad. When a new ContourLine is created, + // if it is a hole its parent ContourLine is read from the ParentCache by + // looking at the start quad, then each quad to the S in turn until a + // non-zero ContourLine is found. + class MATPLOT_EXPORTS ParentCache { + public: + ParentCache() = default; + + ParentCache(long nx, long x_chunk_points, long y_chunk_points); + + ContourLine *get_parent(long quad); + + void set_chunk_starts(long istart, long jstart); + + void set_parent(long quad, ContourLine &contour_line); + + private: + long quad_to_index(long quad) const; + + long _nx; + long _x_chunk_points, _y_chunk_points; // Number of points not quads. + std::vector _lines; // Not owned. + long _istart, _jstart; + }; + + // See overview of algorithm at top of file. + class MATPLOT_EXPORTS QuadContourGenerator { + public: + // using CoordinateArray = numpy::array_view; + using CoordinateArray = vector_2d; + // using MaskArray = numpy::array_view; + using MaskArray = std::array; + + // This constructor is just a placeholder + // This object will obviously not work + QuadContourGenerator() = default; + + // Constructor with optional mask. + // x, y, z: double arrays of shape (ny,nx). + // mask: boolean array, ether empty (if no mask), or of shape (ny,nx). + // corner_mask: flag for different masking behaviour. + // chunk_size: 0 for no chunking, or +ve integer for size of chunks + // that + // the domain is subdivided into. + // https://github.com/matplotlib/matplotlib/blob/master/lib/matplotlib/contour.py + QuadContourGenerator(const vector_2d &x, const vector_2d &y, + const vector_2d &z, bool corner_mask, + long chunk_size); + + // Create and return polygons for a line (i.e. non-filled) contour at + // the specified level. + using vertices_list_type = std::pair; + vertices_list_type create_contour(const double &level); + + // Create and return polygons for a filled contour between the two + // specified levels. + using codes_list_type = std::vector; + std::pair + create_filled_contour(const double &lower_level, + const double &upper_level); + + private: + // Typedef for following either a boundary of the domain or the + // interior; clearer than using a boolean. + enum class BoundaryOrInterior { Boundary, Interior }; + + // Typedef for direction of movement from one quad to the next. + enum class Dir { Dir_Right = -1, Dir_Straight = 0, Dir_Left = +1 }; + + // Typedef for a polygon being a hole or not; clearer than using a + // boolean. + enum class HoleOrNot { NotHole, Hole }; + + // Append a C++ ContourLine to the end of a python list. Used for line + // contours where each ContourLine is converted to a separate numpy + // array of (x,y) points. Clears the ContourLine too. + void append_contour_line_to_vertices( + ContourLine &contour_line, vertices_list_type &vertices_list) const; + + // Append a C++ Contour to the end of two python lists. Used for filled + // contours where each non-hole ContourLine and its child holes are + // represented by a numpy array of (x,y) points and a second numpy array + // of 'kinds' or 'codes' that indicates where the points array is split + // into individual polygons. Clears the Contour too, freeing each + // ContourLine as soon as possible for minimum RAM usage. + void + append_contour_to_vertices_and_codes(Contour &contour, + vertices_list_type &vertices_list, + codes_list_type &codes_list) const; + + // Return number of chunks that fit in the specified point_count. + long calc_chunk_count(long point_count) const; + + // Return the point on the specified QuadEdge that intersects the + // specified level. + XY edge_interp(const QuadEdge &quad_edge, const double &level); + + // Follow a contour along a boundary, appending points to the + // ContourLine as it progresses. Only called for filled contours. Stops + // when the contour leaves the boundary to move into the interior of the + // domain, or when the start_quad_edge is reached in which case the + // ContourLine is a completed closed loop. Always adds the end point of + // each boundary edge to the ContourLine, regardless of whether moving + // to another boundary edge or leaving the boundary into the interior. + // Never adds the start point of the first boundary edge to the + // ContourLine. + // contour_line: ContourLine to append points to. + // quad_edge: on entry the QuadEdge to start from, on exit the + // QuadEdge + // that is stopped on. + // lower_level: lower contour z-value. + // upper_level: upper contour z-value. + // level_index: level index started on (1 = lower, 2 = upper level). + // start_quad_edge: QuadEdge that the ContourLine started from, which + // is + // used to check if the ContourLine is finished. + // Returns the end level_index. + unsigned int follow_boundary(ContourLine &contour_line, + QuadEdge &quad_edge, + const double &lower_level, + const double &upper_level, + unsigned int level_index, + const QuadEdge &start_quad_edge); + + // Follow a contour across the interior of the domain, appending points + // to the ContourLine as it progresses. Called for both line and filled + // contours. Stops when the contour reaches a boundary or, if the + // start_quad_edge is specified, when quad_edge == start_quad_edge and + // level_index == start_level_index. Always adds the end point of each + // quad traversed to the ContourLine; only adds the start point of the + // first quad if want_initial_point flag is true. + // contour_line: ContourLine to append points to. + // quad_edge: on entry the QuadEdge to start from, on exit the + // QuadEdge + // that is stopped on. + // level_index: level index started on (1 = lower, 2 = upper level). + // level: contour z-value. + // want_initial_point: whether want to append the initial point to the + // ContourLine or not. + // start_quad_edge: the QuadEdge that the ContourLine started from to + // check if the ContourLine is finished, or 0 if no check should + // occur. + // start_level_index: the level_index that the ContourLine started + // from. set_parents: whether should set ParentCache as it progresses + // or not. + // This is true for filled contours, false for line contours. + void follow_interior(ContourLine &contour_line, QuadEdge &quad_edge, + unsigned int level_index, const double &level, + bool want_initial_point, + const QuadEdge *start_quad_edge, + unsigned int start_level_index, bool set_parents); + + // Return the index limits of a particular chunk. + void get_chunk_limits(long ijchunk, long &ichunk, long &jchunk, + long &istart, long &iend, long &jstart, + long &jend); + + // Check if a contour starts within the specified corner quad on the + // specified level_index, and if so return the start edge. Otherwise + // return Edge_None. + Edge get_corner_start_edge(long quad, unsigned int level_index) const; + + // Return index of point at start or end of specified QuadEdge, assuming + // anticlockwise ordering around non-masked quads. + long get_edge_point_index(const QuadEdge &quad_edge, bool start) const; + + // Return the edge to exit a quad from, given the specified entry + // quad_edge and direction to move in. + Edge get_exit_edge(const QuadEdge &quad_edge, Dir dir) const; + + // Return the (x,y) coordinates of the specified point index. + XY get_point_xy(long point) const; + + // Return the z-value of the specified point index. + const double &get_point_z(long point) const; + + // Check if a contour starts within the specified non-corner quad on the + // specified level_index, and if so return the start edge. Otherwise + // return Edge_None. + Edge get_quad_start_edge(long quad, unsigned int level_index) const; + + // Check if a contour starts within the specified quad, whether it is a + // corner or a full quad, and if so return the start edge. Otherwise + // return Edge_None. + Edge get_start_edge(long quad, unsigned int level_index) const; + + // Initialise the cache to contain grid information that is constant + // across the lifetime of this object, i.e. does not vary between calls + // to create_contour() and create_filled_contour(). + void init_cache_grid(); + + // Initialise the cache with information that is specific to contouring + // the specified two levels. The levels are the same for contour lines, + // different for filled contours. + void init_cache_levels(const double &lower_level, + const double &upper_level); + + // Return the (x,y) point at which the level intersects the line + // connecting the two specified point indices. + XY interp(long point1, long point2, const double &level) const; + + // Return true if the specified QuadEdge is a boundary, i.e. is either + // an edge between a masked and non-masked quad/corner or is a chunk + // boundary. + bool is_edge_a_boundary(const QuadEdge &quad_edge) const; + + // Follow a boundary from one QuadEdge to the next in an anticlockwise + // manner around the non-masked region. + void move_to_next_boundary_edge(QuadEdge &quad_edge) const; + + // Move from the quad specified by quad_edge.quad to the neighbouring + // quad by crossing the edge specified by quad_edge.edge. + void move_to_next_quad(QuadEdge &quad_edge) const; + + // Check for filled contours starting within the specified quad and + // complete any that are found, appending them to the specified Contour. + void single_quad_filled(Contour &contour, long quad, + const double &lower_level, + const double &upper_level); + + // Start and complete a filled contour line. + // quad: index of quad to start ContourLine in. + // edge: edge of quad to start ContourLine from. + // start_level_index: the level_index that the ContourLine starts + // from. hole_or_not: whether the ContourLine is a hole or not. + // boundary_or_interior: whether the ContourLine starts on a boundary + // or + // the interior. + // lower_level: lower contour z-value. + // upper_level: upper contour z-value. + // Returns newly created ContourLine. + ContourLine *start_filled(long quad, Edge edge, + unsigned int start_level_index, + HoleOrNot hole_or_not, + BoundaryOrInterior boundary_or_interior, + const double &lower_level, + const double &upper_level); + + // Start and complete a line contour that both starts and end on a + // boundary, traversing the interior of the domain. + // vertices_list: Python list that the ContourLine should be appended + // to. quad: index of quad to start ContourLine in. edge: boundary + // edge to start ContourLine from. level: contour z-value. + // Returns true if the start quad does not need to be visited again, + // i.e. VISITED(quad,1). + bool start_line(vertices_list_type &vertices_list, long quad, Edge edge, + const double &level); + + // Debug function that writes the cache status to stdout. + void write_cache(bool grid_only = false) const; + + // Debug function that writes that cache status for a single quad to + // stdout. + void write_cache_quad(long quad, bool grid_only) const; + + // Note that mask is not stored as once it has been used to initialise + // the cache it is no longer needed. + CoordinateArray _x, _y, _z; + long _nx, _ny; // Number of points in each direction. + long _n; // Total number of points (and hence quads). + + bool _corner_mask; + long _chunk_size; // Number of quads per chunk (not points). + // Always > 0, unlike python nchunk which is 0 + // for no chunking. + + long _nxchunk, _nychunk; // Number of chunks in each direction. + long _chunk_count; // Total number of chunks. + + typedef uint32_t CacheItem; + std::vector _cache; + + ParentCache _parent_cache; // On W quad sides. + }; + + /// Segments are considered as including their end-points; i.e if the + // closest point on the path is a node in *xys* with index *i*, + // this + // returns ``(i-1, i)``. For the special case where *xys* is a + // single + // point, this returns ``(0, 0)``. + /// \param xys Coordinates of vertices + /// \param p Coordinates of point + /// \return Minimum square distance of *p* to *xys*. + /// \return Projection of *p* onto *xys*. + /// \return Consecutive indices of vertices of segment in *xys* where + /// *proj* is. + MATPLOT_EXPORTS + std::tuple, std::pair> + find_closest_point_on_path(const std::vector &xs, + const std::vector &ys, double px, + double py); + + /// \brief Compute contour lines + /// + /// This will use a square tracing algorithm to find the contour points + /// of a contour line. We look for level transitions on every + /// grid quadrant and determine the specific point with an interpolation + /// that considers how far the the points in the quadrant are for the + /// contour level. + /// + /// We compute these lines outside gnuplot because creating contour lines + /// in 2d plots (with the "plot" command) in gnuplot involves so many + /// work-arounds that it is just not worth it. + /// + /// \see + /// https://en.wikipedia.org/wiki/Boundary_tracing#Square_tracing_algorithm + /// \see + /// http://www.batesville.k12.in.us/physics/CalcNet/grapher/how_it_works.htm + /// \see http://dx.doi.org/10.1093/comjnl/33.5.402 + /// \see http://dx.doi.org/10.1016/0097-8493%2891%2990002-Y + /// \see http://ieeexplore.ieee.org/xpls/abs_all.jsp?arnumber=576861 + /// \see https://github.com/matplotlib/matplotlib/blob/master/src/_contour.h + using contour_line_type = std::pair; + + MATPLOT_EXPORTS + contour_line_type contour_line(const vector_2d &x, const vector_2d &y, + const vector_2d &z, double level); + + MATPLOT_EXPORTS + std::vector contourc(const vector_2d &x, + const vector_2d &y, + const vector_2d &z, + const vector_1d &levels); + + MATPLOT_EXPORTS + std::vector contourc(const vector_2d &x, + const vector_2d &y, + const vector_2d &z, + size_t n_levels = 7); + + MATPLOT_EXPORTS + std::vector contourc(const vector_2d &z, + const vector_1d &levels); + + MATPLOT_EXPORTS + std::vector contourc(const vector_2d &z, + size_t n_levels = 7); + +} // namespace matplot + +#endif // MATPLOTPLUSPLUS_CONTOURC_H diff --git a/dependency/x86/third_party/matplotplusplus/1.2.0/include/matplot/util/geodata.h b/dependency/x86/third_party/matplotplusplus/1.2.0/include/matplot/util/geodata.h new file mode 100644 index 00000000..9ddf822d --- /dev/null +++ b/dependency/x86/third_party/matplotplusplus/1.2.0/include/matplot/util/geodata.h @@ -0,0 +1,51 @@ +// +// Created by Alan Freitas on 20/07/20. +// + +#ifndef MATPLOTPLUSPLUS_GEODATA_H +#define MATPLOTPLUSPLUS_GEODATA_H + +#include +#include +#include + +namespace matplot { + MATPLOT_EXPORTS + std::pair, std::vector> &world_map_10m(); + MATPLOT_EXPORTS + std::pair, std::vector> &world_map_50m(); + MATPLOT_EXPORTS + std::pair, std::vector> &world_map_110m(); + + MATPLOT_EXPORTS + std::tuple, std::vector, + std::vector> & + world_cities(); + + MATPLOT_EXPORTS + std::tuple, std::vector, + std::vector> + world_cities(double min_x_distance_per_char, double min_y_distance); + + MATPLOT_EXPORTS + std::tuple, std::vector> + greedy_tsp(const std::vector &x, const std::vector &y, + size_t starting_city = 0); + + MATPLOT_EXPORTS + std::tuple, std::vector, std::vector> + greedy_tsp_with_idx(const std::vector &x, + const std::vector &y, size_t starting_city = 0); + + MATPLOT_EXPORTS + std::tuple, std::vector, + std::vector> + clear_overlapping_labels(const std::vector &x, + const std::vector &y, + const std::vector &names, + double min_x_distance_per_char, + double min_y_distance); + +} // namespace matplot + +#endif // MATPLOTPLUSPLUS_GEODATA_H diff --git a/dependency/x86/third_party/matplotplusplus/1.2.0/include/matplot/util/handle_types.h b/dependency/x86/third_party/matplotplusplus/1.2.0/include/matplot/util/handle_types.h new file mode 100644 index 00000000..29e75e40 --- /dev/null +++ b/dependency/x86/third_party/matplotplusplus/1.2.0/include/matplot/util/handle_types.h @@ -0,0 +1,93 @@ +// +// Created by Alan Freitas on 2020-07-06. +// + +#ifndef MATPLOTPLUSPLUS_HANDLE_TYPES_H +#define MATPLOTPLUSPLUS_HANDLE_TYPES_H + +#include +#include + +namespace matplot { + using color_array = std::array; + + class figure_type; + using figure_handle = std::shared_ptr; + + class axes_type; + using axes_handle = std::shared_ptr; + + class axes_object; + using axes_object_handle = std::shared_ptr; + + class legend; + using legend_handle = std::shared_ptr; + + class string_function; + using string_function_handle = std::shared_ptr; + + class line; + using line_handle = std::shared_ptr; + using scatter_handle = std::shared_ptr; + + class stair; + using stair_handle = std::shared_ptr; + + class error_bar; + using error_bar_handle = std::shared_ptr; + + class filled_area; + using filled_area_handle = std::shared_ptr; + + class function_line; + using function_line_handle = std::shared_ptr; + + class histogram; + using histogram_handle = std::shared_ptr; + + class box_chart; + using box_chart_handle = std::shared_ptr; + + class parallel_lines; + using parallel_lines_handle = std::shared_ptr; + + class circles; + using circles_handle = std::shared_ptr; + + class labels; + using labels_handle = std::shared_ptr; + + class matrix; + using matrix_handle = std::shared_ptr; + + class bars; + using bars_handle = std::shared_ptr; + + class vectors; + using vectors_handle = std::shared_ptr; + + class contours; + using contours_handle = std::shared_ptr; + + class surface; + using surface_handle = std::shared_ptr; + + class network; + using network_handle = std::shared_ptr; + + /// Bin scatter style + enum class bin_scatter_style { + automatic, // decide automatically depending on the data + point_size, // size proportional to values in the bin + point_alpha, // number of elements in bin represented by colormap where + // alpha varies with density + jitter, // create a number of points in the bin proportional to the bin + // value + point_colormap, // number of elements in bin represented by default + // colormap + heatmap // number of elements in each bin represented by a heatmap + }; + +} // namespace matplot + +#endif // MATPLOTPLUSPLUS_HANDLE_TYPES_H diff --git a/dependency/x86/third_party/matplotplusplus/1.2.0/include/matplot/util/keywords.h b/dependency/x86/third_party/matplotplusplus/1.2.0/include/matplot/util/keywords.h new file mode 100644 index 00000000..ea2ea47c --- /dev/null +++ b/dependency/x86/third_party/matplotplusplus/1.2.0/include/matplot/util/keywords.h @@ -0,0 +1,42 @@ +// +// Created by Alan Freitas on 2020-07-06. +// + +#ifndef MATPLOTPLUSPLUS_KEYWORDS_H +#define MATPLOTPLUSPLUS_KEYWORDS_H + +#include + +namespace matplot { + class keyword_automatic_type {}; + constexpr keyword_automatic_type automatic; + + class keyword_manual_type {}; + constexpr keyword_manual_type manual; + + class keyword_equal_type {}; + constexpr keyword_equal_type equal; + + class keyword_square_type {}; + constexpr keyword_square_type square; + + class keyword_tight_type {}; + constexpr keyword_tight_type tight; + + class keyword_ij_type {}; + constexpr keyword_ij_type ij; + + class keyword_minor_type {}; + constexpr keyword_minor_type minor; + + constexpr bool on = true; + constexpr bool off = false; + + constexpr bool left = false; + constexpr bool right = true; + + constexpr double inf = std::numeric_limits::infinity(); + +} // namespace matplot + +#endif // MATPLOTPLUSPLUS_KEYWORDS_H diff --git a/dependency/x86/third_party/matplotplusplus/1.2.0/include/matplot/util/popen.h b/dependency/x86/third_party/matplotplusplus/1.2.0/include/matplot/util/popen.h new file mode 100644 index 00000000..3318e783 --- /dev/null +++ b/dependency/x86/third_party/matplotplusplus/1.2.0/include/matplot/util/popen.h @@ -0,0 +1,95 @@ +// +// Created by Alan Freitas on 2020-07-06. +// + +#ifndef MATPLOTPLUSPLUS_POPEN_H +#define MATPLOTPLUSPLUS_POPEN_H + +#include +#include +#include // FILE + +#ifdef _WIN32 + +#include // HANDLE + +/// State of a child process pipe +class proc_pipe +{ +protected: + proc_pipe() = default; + HANDLE hProcess = 0; ///< WIN32 process handle + HANDLE hThread = 0; ///< WIN32 thread handle + FILE *file_ = nullptr; ///< C file handle for I/O (not both) +}; + +#elif defined(__linux) || defined(__APPLE__) + +#include // pid_t + +/// State of a child process pipe +class proc_pipe +{ +protected: + proc_pipe() = default; + pid_t pid = 0; ///< POSIX process identifier + FILE *file_ = nullptr; ///< C file handle for input or output (not both) +}; + +#else +#error "proc_pipe is not implemented for this platform" +#endif // platform specific code + +/// Common operations for a child process pipe +class common_pipe : public proc_pipe +{ +public: + FILE *file() const { return file_; } + int close(int *exit_code = nullptr); + bool opened() const { return file_ != nullptr; } + const std::string& error() const { return error_; } + bool exceptions() const { return exceptions_; } + void exceptions(bool exc) { exceptions_ = exc; } + +protected: + common_pipe() = default; + common_pipe(const common_pipe&) = delete; + common_pipe& operator=(const common_pipe&) = delete; + common_pipe(common_pipe&&) noexcept = default; + common_pipe& operator=(common_pipe&&) noexcept = default; + ~common_pipe() noexcept { + if (opened()) + close(); + } + bool exceptions_ = false; + std::string error_{}; + int report(int err, const std::string& what); + int open(const std::string &command, char mode); +}; + +/// Pipe to read from process output +class ipipe : public common_pipe +{ +public: + ipipe(); + int open(const std::string &cmd) { return common_pipe::open(cmd, 'r'); } + int read(std::string &data); +}; + +/// Pipe to write into process input +class opipe : public common_pipe +{ +public: + opipe(); + int open(const std::string &cmd) { return common_pipe::open(cmd, 'w'); } + int write(std::string_view data); + int flush(std::string_view data = {}); +}; + +/// Runs the shell command, writes data to its input and waits for completion, returns errno if failed +int shell_write(const std::string &command, std::string_view data = {}); + +/// Runs the shell command, reads data from its output and waits for completion, returns errno if failed +int shell_read(const std::string &command, std::string& data); + +#endif // MATPLOTPLUSPLUS_POPEN_H diff --git a/dependency/x86/third_party/matplotplusplus/1.2.0/include/matplot/util/type_traits.h b/dependency/x86/third_party/matplotplusplus/1.2.0/include/matplot/util/type_traits.h new file mode 100644 index 00000000..421a5adf --- /dev/null +++ b/dependency/x86/third_party/matplotplusplus/1.2.0/include/matplot/util/type_traits.h @@ -0,0 +1,150 @@ +// +// Created by Alan Freitas on 2020-07-05. +// + +#ifndef MATPLOTPLUSPLUS_TYPE_TRAITS_H +#define MATPLOTPLUSPLUS_TYPE_TRAITS_H + +#include +#include +#include + +namespace matplot { + template struct is_iterable { + typedef long false_type; + typedef char true_type; + + template static false_type check(...); + template + static true_type check(int, typename T::const_iterator = C().end()); + + enum { value = sizeof(check(0)) == sizeof(true_type) }; + }; + + template constexpr bool is_iterable_v = is_iterable::value; + + template struct has_value_type { + typedef long false_type; + typedef char true_type; + + template static false_type check(...); + template + static true_type check(int, typename T::value_type = *C().begin()); + + enum { value = sizeof(check(0)) == sizeof(true_type) }; + }; + + template + constexpr bool has_value_type_v = has_value_type::value; + + template struct has_iterable_value_type { + typedef long false_type; + typedef char true_type; + + template static false_type check(...); + template + static true_type + check(int, + typename T::value_type::value_type = *(C().begin()->begin())); + + enum { value = sizeof(check(0)) == sizeof(true_type) }; + }; + + template + constexpr bool has_iterable_value_type_v = + has_iterable_value_type::value; + + // Something like std::vector + template + struct is_iterable_value + : public std::integral_constant< + bool, is_iterable_v && !has_iterable_value_type_v> {}; + + template + constexpr bool is_iterable_value_v = is_iterable_value::value; + + // Something like std::vector> + template + struct is_iterable_iterable + : public std::integral_constant< + bool, is_iterable_v && has_iterable_value_type_v> {}; + + template + constexpr bool is_iterable_iterable_v = is_iterable_iterable::value; + + template + using is_string = + std::integral_constant, std::string> && + std::is_convertible_v>; + + template constexpr bool is_string_v = is_string::value; + + template struct is_pair : std::false_type {}; + + template + struct is_pair> : std::true_type {}; + + template constexpr bool is_pair_v = is_pair::value; + + template + struct is_iterable_pair + : public std::integral_constant< + bool, is_iterable_v && !has_iterable_value_type_v && + is_pair_v> {}; + + template + constexpr bool is_iterable_pair_v = is_iterable_pair::value; + + template struct is_vector : std::false_type {}; + + template + struct is_vector> : std::true_type {}; + + template struct is_initializer_list : std::false_type {}; + + template + struct is_initializer_list> : std::true_type {}; + + template struct first_type_if_pair { using type = T; }; + + template + struct first_type_if_pair> { + using type = T; + }; + + // also tried this, but it didn't help + template + struct first_type_if_pair> { + using type = T; + }; + + template struct second_type_if_pair { using type = T; }; + + template + struct second_type_if_pair> { + using type = U; + }; + + // also tried this, but it didn't help + template + struct second_type_if_pair> { + using type = U; + }; + + template struct iterable_traits { + using container_type = ITERABLE; + using iterator_type = decltype(std::declval().begin()); + using value_type = typename std::remove_reference().operator*())>::type; + static constexpr bool is_map = is_pair::value; + using key_type = + std::conditional_t; + using mapped_type = + std::conditional_t; + }; +} // namespace matplot + +#endif // MATPLOTPLUSPLUS_TYPE_TRAITS_H diff --git a/dependency/x86/third_party/matplotplusplus/1.2.0/lib/cmake/Matplot++/Matplot++Config.cmake b/dependency/x86/third_party/matplotplusplus/1.2.0/lib/cmake/Matplot++/Matplot++Config.cmake new file mode 100644 index 00000000..30be4824 --- /dev/null +++ b/dependency/x86/third_party/matplotplusplus/1.2.0/lib/cmake/Matplot++/Matplot++Config.cmake @@ -0,0 +1,52 @@ + +####### Expanded from @PACKAGE_INIT@ by configure_package_config_file() ####### +####### Any changes to this file will be overwritten by the next CMake run #### +####### The input file was Matplot++Config.cmake.in ######## + +get_filename_component(PACKAGE_PREFIX_DIR "${CMAKE_CURRENT_LIST_DIR}/../../../" ABSOLUTE) + +macro(set_and_check _var _file) + set(${_var} "${_file}") + if(NOT EXISTS "${_file}") + message(FATAL_ERROR "File or directory ${_file} referenced by variable ${_var} does not exist !") + endif() +endmacro() + +macro(check_required_components _NAME) + foreach(comp ${${_NAME}_FIND_COMPONENTS}) + if(NOT ${_NAME}_${comp}_FOUND) + if(${_NAME}_FIND_REQUIRED_${comp}) + set(${_NAME}_FOUND FALSE) + endif() + endif() + endforeach() +endmacro() + +#################################################################################### + +# How this Matplot++ installation was built +set(MATPLOT_BUILT_SHARED "ON") +set(MATPLOT_BUILT_CXX_COMPILER_ID "GNU") +set(MATPLOT_BUILT_CXX_COMPILER_VERSION "11.4.0") + +# Check if it matches the current toolchain +if (NOT CMAKE_CXX_COMPILER_ID STREQUAL MATPLOT_BUILT_CXX_COMPILER_ID) + message(WARNING "This installation of Matplot++ was built with ${MATPLOT_BUILT_CXX_COMPILER_ID}.") +endif() + +# Find dependencies +if(NOT ${MATPLOT_BUILT_SHARED}) + include(CMakeFindDependencyMacro) + list(APPEND CMAKE_MODULE_PATH ${MATPLOT_CONFIG_INSTALL_DIR}) + list(APPEND CMAKE_MODULE_PATH "${CMAKE_CURRENT_LIST_DIR}") + # OpenGL backend + if (OFF) + find_dependency(glad) + find_dependency(glfw3) + endif() + list(POP_BACK CMAKE_MODULE_PATH) +endif() + +# Create imported targets +include("${CMAKE_CURRENT_LIST_DIR}/Matplot++Targets.cmake") +check_required_components(Matplot++) diff --git a/dependency/x86/third_party/matplotplusplus/1.2.0/lib/cmake/Matplot++/Matplot++ConfigVersion.cmake b/dependency/x86/third_party/matplotplusplus/1.2.0/lib/cmake/Matplot++/Matplot++ConfigVersion.cmake new file mode 100644 index 00000000..bdbb251e --- /dev/null +++ b/dependency/x86/third_party/matplotplusplus/1.2.0/lib/cmake/Matplot++/Matplot++ConfigVersion.cmake @@ -0,0 +1,70 @@ +# This is a basic version file for the Config-mode of find_package(). +# It is used by write_basic_package_version_file() as input file for configure_file() +# to create a version-file which can be installed along a config.cmake file. +# +# The created file sets PACKAGE_VERSION_EXACT if the current version string and +# the requested version string are exactly the same and it sets +# PACKAGE_VERSION_COMPATIBLE if the current version is >= requested version, +# but only if the requested major version is the same as the current one. +# The variable CVF_VERSION must be set before calling configure_file(). + + +set(PACKAGE_VERSION "1.2.0") + +if(PACKAGE_VERSION VERSION_LESS PACKAGE_FIND_VERSION) + set(PACKAGE_VERSION_COMPATIBLE FALSE) +else() + + if("1.2.0" MATCHES "^([0-9]+)\\.") + set(CVF_VERSION_MAJOR "${CMAKE_MATCH_1}") + if(NOT CVF_VERSION_MAJOR VERSION_EQUAL 0) + string(REGEX REPLACE "^0+" "" CVF_VERSION_MAJOR "${CVF_VERSION_MAJOR}") + endif() + else() + set(CVF_VERSION_MAJOR "1.2.0") + endif() + + if(PACKAGE_FIND_VERSION_RANGE) + # both endpoints of the range must have the expected major version + math (EXPR CVF_VERSION_MAJOR_NEXT "${CVF_VERSION_MAJOR} + 1") + if (NOT PACKAGE_FIND_VERSION_MIN_MAJOR STREQUAL CVF_VERSION_MAJOR + OR ((PACKAGE_FIND_VERSION_RANGE_MAX STREQUAL "INCLUDE" AND NOT PACKAGE_FIND_VERSION_MAX_MAJOR STREQUAL CVF_VERSION_MAJOR) + OR (PACKAGE_FIND_VERSION_RANGE_MAX STREQUAL "EXCLUDE" AND NOT PACKAGE_FIND_VERSION_MAX VERSION_LESS_EQUAL CVF_VERSION_MAJOR_NEXT))) + set(PACKAGE_VERSION_COMPATIBLE FALSE) + elseif(PACKAGE_FIND_VERSION_MIN_MAJOR STREQUAL CVF_VERSION_MAJOR + AND ((PACKAGE_FIND_VERSION_RANGE_MAX STREQUAL "INCLUDE" AND PACKAGE_VERSION VERSION_LESS_EQUAL PACKAGE_FIND_VERSION_MAX) + OR (PACKAGE_FIND_VERSION_RANGE_MAX STREQUAL "EXCLUDE" AND PACKAGE_VERSION VERSION_LESS PACKAGE_FIND_VERSION_MAX))) + set(PACKAGE_VERSION_COMPATIBLE TRUE) + else() + set(PACKAGE_VERSION_COMPATIBLE FALSE) + endif() + else() + if(PACKAGE_FIND_VERSION_MAJOR STREQUAL CVF_VERSION_MAJOR) + set(PACKAGE_VERSION_COMPATIBLE TRUE) + else() + set(PACKAGE_VERSION_COMPATIBLE FALSE) + endif() + + if(PACKAGE_FIND_VERSION STREQUAL PACKAGE_VERSION) + set(PACKAGE_VERSION_EXACT TRUE) + endif() + endif() +endif() + + +# if the installed project requested no architecture check, don't perform the check +if("FALSE") + return() +endif() + +# if the installed or the using project don't have CMAKE_SIZEOF_VOID_P set, ignore it: +if("${CMAKE_SIZEOF_VOID_P}" STREQUAL "" OR "8" STREQUAL "") + return() +endif() + +# check that the installed version has the same 32/64bit-ness as the one which is currently searching: +if(NOT CMAKE_SIZEOF_VOID_P STREQUAL "8") + math(EXPR installedBits "8 * 8") + set(PACKAGE_VERSION "${PACKAGE_VERSION} (${installedBits}bit)") + set(PACKAGE_VERSION_UNSUITABLE TRUE) +endif() diff --git a/dependency/x86/third_party/matplotplusplus/1.2.0/lib/cmake/Matplot++/Matplot++Targets-release.cmake b/dependency/x86/third_party/matplotplusplus/1.2.0/lib/cmake/Matplot++/Matplot++Targets-release.cmake new file mode 100644 index 00000000..04d93efd --- /dev/null +++ b/dependency/x86/third_party/matplotplusplus/1.2.0/lib/cmake/Matplot++/Matplot++Targets-release.cmake @@ -0,0 +1,19 @@ +#---------------------------------------------------------------- +# Generated CMake target import file for configuration "Release". +#---------------------------------------------------------------- + +# Commands may need to know the format version. +set(CMAKE_IMPORT_FILE_VERSION 1) + +# Import target "Matplot++::matplot" for configuration "Release" +set_property(TARGET Matplot++::matplot APPEND PROPERTY IMPORTED_CONFIGURATIONS RELEASE) +set_target_properties(Matplot++::matplot PROPERTIES + IMPORTED_LOCATION_RELEASE "${_IMPORT_PREFIX}/lib/libmatplot.so.1.2.0" + IMPORTED_SONAME_RELEASE "libmatplot.so.1" + ) + +list(APPEND _IMPORT_CHECK_TARGETS Matplot++::matplot ) +list(APPEND _IMPORT_CHECK_FILES_FOR_Matplot++::matplot "${_IMPORT_PREFIX}/lib/libmatplot.so.1.2.0" ) + +# Commands beyond this point should not need to know the version. +set(CMAKE_IMPORT_FILE_VERSION) diff --git a/dependency/x86/third_party/matplotplusplus/1.2.0/lib/cmake/Matplot++/Matplot++Targets.cmake b/dependency/x86/third_party/matplotplusplus/1.2.0/lib/cmake/Matplot++/Matplot++Targets.cmake new file mode 100644 index 00000000..7f07b7c5 --- /dev/null +++ b/dependency/x86/third_party/matplotplusplus/1.2.0/lib/cmake/Matplot++/Matplot++Targets.cmake @@ -0,0 +1,96 @@ +# Generated by CMake + +if("${CMAKE_MAJOR_VERSION}.${CMAKE_MINOR_VERSION}" LESS 2.6) + message(FATAL_ERROR "CMake >= 2.6.0 required") +endif() +cmake_policy(PUSH) +cmake_policy(VERSION 2.6...3.20) +#---------------------------------------------------------------- +# Generated CMake target import file. +#---------------------------------------------------------------- + +# Commands may need to know the format version. +set(CMAKE_IMPORT_FILE_VERSION 1) + +# Protect against multiple inclusion, which would fail when already imported targets are added once more. +set(_targetsDefined) +set(_targetsNotDefined) +set(_expectedTargets) +foreach(_expectedTarget Matplot++::matplot) + list(APPEND _expectedTargets ${_expectedTarget}) + if(NOT TARGET ${_expectedTarget}) + list(APPEND _targetsNotDefined ${_expectedTarget}) + endif() + if(TARGET ${_expectedTarget}) + list(APPEND _targetsDefined ${_expectedTarget}) + endif() +endforeach() +if("${_targetsDefined}" STREQUAL "${_expectedTargets}") + unset(_targetsDefined) + unset(_targetsNotDefined) + unset(_expectedTargets) + set(CMAKE_IMPORT_FILE_VERSION) + cmake_policy(POP) + return() +endif() +if(NOT "${_targetsDefined}" STREQUAL "") + message(FATAL_ERROR "Some (but not all) targets in this export set were already defined.\nTargets Defined: ${_targetsDefined}\nTargets not yet defined: ${_targetsNotDefined}\n") +endif() +unset(_targetsDefined) +unset(_targetsNotDefined) +unset(_expectedTargets) + + +# Compute the installation prefix relative to this file. +get_filename_component(_IMPORT_PREFIX "${CMAKE_CURRENT_LIST_FILE}" PATH) +get_filename_component(_IMPORT_PREFIX "${_IMPORT_PREFIX}" PATH) +get_filename_component(_IMPORT_PREFIX "${_IMPORT_PREFIX}" PATH) +get_filename_component(_IMPORT_PREFIX "${_IMPORT_PREFIX}" PATH) +if(_IMPORT_PREFIX STREQUAL "/") + set(_IMPORT_PREFIX "") +endif() + +# Create imported target Matplot++::matplot +add_library(Matplot++::matplot SHARED IMPORTED) + +set_target_properties(Matplot++::matplot PROPERTIES + INTERFACE_COMPILE_DEFINITIONS "NOMINMAX;MATPLOT_BUILD_HIGH_RESOLUTION_WORLD_MAP" + INTERFACE_COMPILE_FEATURES "cxx_std_17" + INTERFACE_INCLUDE_DIRECTORIES "${_IMPORT_PREFIX}/include" +) + +# Load information for each installed configuration. +get_filename_component(_DIR "${CMAKE_CURRENT_LIST_FILE}" PATH) +file(GLOB CONFIG_FILES "${_DIR}/Matplot++Targets-*.cmake") +foreach(f ${CONFIG_FILES}) + include(${f}) +endforeach() + +# Cleanup temporary variables. +set(_IMPORT_PREFIX) + +# Loop over all imported files and verify that they actually exist +foreach(target ${_IMPORT_CHECK_TARGETS} ) + foreach(file ${_IMPORT_CHECK_FILES_FOR_${target}} ) + if(NOT EXISTS "${file}" ) + message(FATAL_ERROR "The imported target \"${target}\" references the file + \"${file}\" +but this file does not exist. Possible reasons include: +* The file was deleted, renamed, or moved to another location. +* An install or uninstall procedure did not complete successfully. +* The installation package was faulty and contained + \"${CMAKE_CURRENT_LIST_FILE}\" +but not all the files it references. +") + endif() + endforeach() + unset(_IMPORT_CHECK_FILES_FOR_${target}) +endforeach() +unset(_IMPORT_CHECK_TARGETS) + +# This file does not depend on other imported targets which have +# been exported from the same project but in a separate export set. + +# Commands beyond this point should not need to know the version. +set(CMAKE_IMPORT_FILE_VERSION) +cmake_policy(POP) diff --git a/dependency/x86/third_party/matplotplusplus/1.2.0/lib/libmatplot.so b/dependency/x86/third_party/matplotplusplus/1.2.0/lib/libmatplot.so new file mode 120000 index 00000000..4785a35f --- /dev/null +++ b/dependency/x86/third_party/matplotplusplus/1.2.0/lib/libmatplot.so @@ -0,0 +1 @@ +libmatplot.so.1 \ No newline at end of file diff --git a/dependency/x86/third_party/matplotplusplus/1.2.0/lib/libmatplot.so.1 b/dependency/x86/third_party/matplotplusplus/1.2.0/lib/libmatplot.so.1 new file mode 120000 index 00000000..b9476658 --- /dev/null +++ b/dependency/x86/third_party/matplotplusplus/1.2.0/lib/libmatplot.so.1 @@ -0,0 +1 @@ +libmatplot.so.1.2.0 \ No newline at end of file diff --git a/dependency/x86/third_party/matplotplusplus/1.2.0/lib/libmatplot.so.1.2.0 b/dependency/x86/third_party/matplotplusplus/1.2.0/lib/libmatplot.so.1.2.0 new file mode 100644 index 00000000..bfdc5e20 Binary files /dev/null and b/dependency/x86/third_party/matplotplusplus/1.2.0/lib/libmatplot.so.1.2.0 differ diff --git a/model/xiaoyan_description/dual_arm.xml b/model/xiaoyan_description/dual_arm.xml index 4460b2a1..754f0784 100644 --- a/model/xiaoyan_description/dual_arm.xml +++ b/model/xiaoyan_description/dual_arm.xml @@ -229,7 +229,6 @@ -